Remove some unnecessary purecopy's from find-dired.
[bpt/emacs.git] / lisp / ChangeLog
1 2011-04-02 Glenn Morris <rgm@gnu.org>
2
3 * find-dired.el (find-ls-option, find-ls-subdir-switches)
4 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
5 (find-name-arg): Remove purecopy.
6
7 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
8 (grep-compute-defaults): Check for `-exec COMMAND +' support.
9 Set grep-find-use-xargs, grep-find-command, and grep-find-template
10 accordingly. Don't add the null-device if not needed.
11
12 * files.el (save-some-buffers): Doc fix.
13
14 2011-04-02 Eli Zaretskii <eliz@gnu.org>
15
16 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
17
18 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
19
20 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
21 Use `dolist' rather than `mapcar'.
22
23 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
24
25 Add lexical binding.
26
27 * subr.el (apply-partially): Use new closures rather than CL.
28 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
29 (dolist, dotimes): Use slightly different expansion for lexical code.
30 (functionp): Move to C.
31 (letrec): New macro.
32 (with-wrapper-hook): Use it and apply-partially instead of CL.
33 (eval-after-load): Preserve lexical-binding.
34 (save-window-excursion, with-output-to-temp-buffer): Turn them
35 into macros.
36
37 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
38
39 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
40 than the arglist.
41 (help-add-fundoc-usage): Don't add `Not documented'.
42 (help-function-arglist): Handle closures, subroutines, and new
43 byte-code-functions.
44 (help-make-usage): Remove leading underscores.
45 (describe-function-1): Handle closures.
46 (describe-variable): Use special-variable-p for completion.
47
48 * files.el (lexical-binding): Declare safe.
49
50 * emacs-lisp/pcase.el: Don't use destructuring-bind.
51 (pcase--memoize): Rename from pcase-memoize. Change weakness.
52 (pcase): Add `let' pattern.
53 Change memoization so it actually works.
54 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
55 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
56 <let>: New case.
57
58 * emacs-lisp/macroexp.el: Use lexical binding.
59 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
60 Don't convert ' to #' without checking that it's indeed quoting
61 a lambda.
62
63 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
64 Use eval-sexp-add-defvars.
65 (eval-sexp-add-defvars): New fun.
66
67 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
68
69 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
70 Don't autoload.
71 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
72 than the internal `byte-compile-lambda'.
73 (defmethod): Don't hide code under quotes.
74 (eieio-defmethod): New `code' argument.
75
76 * emacs-lisp/eieio-comp.el: Remove.
77
78 * emacs-lisp/edebug.el (edebug-eval-defun)
79 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
80 (edebug-toggle): Avoid `eval'.
81
82 * emacs-lisp/disass.el (disassemble-internal): Handle new
83 `closure' objects.
84 (disassemble-1): Handle new byte codes.
85
86 * emacs-lisp/cl.el (pushnew): Silence warning.
87
88 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
89 (cl-byte-compile-throw): Remove.
90 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
91
92 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
93 closures.
94
95 * emacs-lisp/cconv.el: New file.
96
97 * emacs-lisp/bytecomp.el: Use lexical binding instead of
98 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
99 (byte-compile-initial-macro-environment):
100 Handle declare-function here.
101 (byte-compile--lexical-environment): New var.
102 (byte-stack-ref, byte-stack-set, byte-discardN)
103 (byte-discardN-preserve-tos): New lap codes.
104 (byte-interactive-p): Don't use any more.
105 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
106 New macros.
107 (byte-compile-lapcode): Use them and handle new lap codes.
108 (byte-compile-obsolete): Remove.
109 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
110 (byte-compile-arglist-warn): Check late def of inlinable funs.
111 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
112 since they should have been expanded by now.
113 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
114 (byte-compile-from-buffer): Remove unused second arg.
115 (byte-compile-preprocess): New function.
116 (byte-compile-toplevel-file-form): New function to distinguish
117 file-form calls from outside from file-form calls from hunk-handlers.
118 (byte-compile-file-form): Simplify.
119 (byte-compile-file-form-defsubst): Remove.
120 (byte-compile-file-form-defmumble): Simplify now that
121 byte-compile-lambda always returns a byte-code-function.
122 (byte-compile): Preprocess.
123 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
124 Remove, not used any more.
125 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
126 (byte-compile-make-args-desc): New funs.
127 (byte-compile-lambda): Handle lexical functions. Always return
128 a byte-code-function.
129 (byte-compile-reserved-constants): New var, to make up room for
130 closed-over variables.
131 (byte-compile-constants-vector): Obey it.
132 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
133 (byte-compile-macroexpand-declare-function): New function.
134 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
135 byte-code-functions.
136 (byte-compile-form): Check obsolescence here.
137 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
138 (byte-compile-variable-ref): Remove.
139 (byte-compile-dynamic-variable-op): New fun.
140 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
141 (byte-compile-variable-set): New funs.
142 (byte-compile-discard): Add 2 args.
143 (byte-compile-stack-ref, byte-compile-stack-set)
144 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
145 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
146 macroexpand-all instead.
147 (byte-compile-quote-form): Remove.
148 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
149 (byte-compile-bind, byte-compile-unbind): New funs.
150 (byte-compile-let): Handle let* and lexical binding.
151 (byte-compile-let*): Remove.
152 (byte-compile-catch, byte-compile-unwind-protect)
153 (byte-compile-track-mouse, byte-compile-condition-case):
154 Handle a new :fun-body form, used for lexical scoping.
155 (byte-compile-save-window-excursion)
156 (byte-compile-with-output-to-temp-buffer): Remove.
157 (byte-compile-defun): Simplify.
158 (byte-compile-stack-adjustment): New fun.
159 (byte-compile-out): Use it.
160 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
161
162 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
163 handler any more.
164
165 * emacs-lisp/byte-opt.el: Use lexical binding.
166 (byte-inline-lapcode): Remove (to bytecomp).
167 (byte-compile-inline-expand): Pay attention to inlining to/from
168 lexically bound code.
169 (byte-compile-unfold-lambda): Don't handle byte-code-functions
170 any more.
171 (byte-optimize-form-code-walker): Don't handle save-window-excursion
172 any more and don't call compiler-macros.
173 (byte-compile-splice-in-already-compiled-code): Remove.
174 (byte-code): Don't inline any more.
175 (disassemble-offset): Receive `bytes' as argument rather than via
176 dynamic scoping.
177 (byte-compile-tag-number): Declare before first use.
178 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
179 `return' even if make-spliceable.
180 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
181 obsolete interactive-p.
182 (byte-optimize-lapcode): Optimize new lap-codes.
183 Don't trip up on new form of `byte-constant' lap code.
184
185 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
186
187 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
188
189 * custom.el (custom-initialize-default, custom-declare-variable):
190 Use `defvar'.
191
192 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
193 New variables.
194 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
195 (COMPILE_FIRST): Add macroexp and cconv.
196 * makefile.w32-in: Mirror changes in Makefile.in.
197
198 * vc/cvs-status.el:
199 * vc/diff-mode.el:
200 * vc/log-edit.el:
201 * vc/log-view.el:
202 * vc/smerge-mode.el:
203 * textmodes/bibtex-style.el:
204 * textmodes/css.el:
205 * startup.el:
206 * uniquify.el:
207 * minibuffer.el:
208 * newcomment.el:
209 * reveal.el:
210 * server.el:
211 * mpc.el:
212 * emacs-lisp/smie.el:
213 * doc-view.el:
214 * dired.el:
215 * abbrev.el: Use lexical binding.
216
217 2011-04-01 Eli Zaretskii <eliz@gnu.org>
218
219 * info.el (info-display-manual): New function.
220
221 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
222
223 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
224
225 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
226
227 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
228 an entry for that server in rcirc-authinfo. (Bug#8385)
229
230 2011-03-31 Glenn Morris <rgm@gnu.org>
231
232 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
233
234 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
235
236 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
237
238 * progmodes/python.el (python-default-interpreter)
239 (python-python-command-args, python-jython-command-args)
240 (python-which-shell, python-which-args, python-which-bufname)
241 (python-file-queue, python-comint-output-filter-function)
242 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
243 variables and functions.
244
245 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
246
247 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
248 (completion-in-region-mode): New minor mode.
249 (completion-in-region): Use it.
250 (completion-in-region--data, completion-in-region-mode-map): New vars.
251 (completion-in-region--postch): New function.
252 (completion--capf-misbehave-funs, completion--capf-safe-funs):
253 New vars.
254 (completion--capf-wrapper): New function.
255 (completion-at-point): Use it to track well-behavedness of
256 hook functions.
257 (completion-help-at-point): New command.
258
259 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
260
261 * vc/add-log.el (add-change-log-entry): Don't use whitespace
262 syntax class to search for whitespace on a single line
263 (Message-ID: <4D938140.4030905@redhat.com>).
264
265 2011-03-30 Leo Liu <sdl.web@gmail.com>
266
267 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
268 New commands.
269 (edit-abbrevs-map): Bind them here.
270 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
271
272 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
273
274 * allout.el (allout-hide-by-annotation, allout-flag-region):
275 Reduce possibility of overlay leakage by making them volatile.
276
277 * allout-widgets.el (allout-widgets-tally): Define as nil so the
278 hash is not shared between buffers. Mode initialization is
279 responsible for giving it a useful starting value.
280 (allout-item-span): Reduce possibility of overlay leakage by
281 making them volatile.
282 (allout-widgets-count-buttons-in-region): Add diagnostic function
283 for tracking down button overlay leaks.
284
285 2011-03-29 Leo Liu <sdl.web@gmail.com>
286
287 * ido.el (ido-read-internal): Use the default history var
288 minibuffer-history if no HISTORY is specified.
289
290 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
291
292 * net/imap.el (imap-shell-open, imap-process-connection-type):
293 Use imap-process-connection-type for 'shell' streams as well as
294 Kerberos, SSL, other subprocesses.
295
296 2011-03-28 Leo Liu <sdl.web@gmail.com>
297
298 * abbrev.el (abbrev-table-empty-p): New function.
299 (prepare-abbrev-list-buffer): Place empty abbrev tables after
300 nonempty ones. (Bug#5937)
301
302 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
303
304 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
305
306 2011-03-27 Leo Liu <sdl.web@gmail.com>
307
308 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
309 for foreground and background colors.
310 (ansi-color-make-color-map): Adapt.
311
312 2011-03-25 Leo Liu <sdl.web@gmail.com>
313
314 * midnight.el (midnight-time-float): Remove. Note it calculates
315 the microsecond component incorrectly and seconds-to-time does the
316 same job.
317 Remove redundant (require 'timer).
318
319 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
320 (ido-completions): Remove unused arguments. (Bug#8329)
321
322 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
323
324 * minibuffer.el (completion--flush-all-sorted-completions):
325 Remove itself from hook.
326 (completion-at-point): Let the functions perform the completion
327 immediately and return nil or t.
328 * comint.el (comint-dynamic-complete-functions): Now identical to
329 completion-at-point-functions.
330 (comint-dynamic-list-input-ring): Remove unused var `index'.
331 (comint--match-partial-filename, comint--unquote&expand-filename):
332 New funs, split from comint-match-partial-filename.
333 (comint-dynamic-complete): Use completion-at-point.
334 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
335
336 2011-03-24 Drew Adams <drew.adams@oracle.com>
337
338 * thingatpt.el: Support `defun'.
339
340 2011-03-23 Leo Liu <sdl.web@gmail.com>
341
342 * abbrevlist.el: Move to obsolete/abbrevlist.el.
343
344 * help-mode.el (help-mode-finish): Tweak regexp.
345
346 2011-03-23 Glenn Morris <rgm@gnu.org>
347
348 * eshell/esh-opt.el (eshell-eval-using-options):
349 Do not bind unused local variable `eshell-option-stub'.
350
351 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
352
353 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
354
355 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
356 keymap variable in `with-no-warnings' to avoid a warning when the
357 keymap has been already `defconst'ed.
358
359 2011-03-22 Leo Liu <sdl.web@gmail.com>
360
361 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
362 encode all chars in abbrevs; otherwise use emacs-mule or
363 utf-8-emacs. (Bug#8308)
364
365 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
366
367 * simple.el (backward-delete-char-untabify):
368 Avoid warning about using `delete-backward-char'.
369
370 * image.el (image-type-file-name-regexps): Make it variable.
371 `imagemagick-register-types' modifies it, and the user may want
372 to add new extensions for known image types.
373 (imagemagick-register-types): Throw error if not using ImageMagick.
374
375 2011-03-22 Leo Liu <sdl.web@gmail.com>
376
377 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
378 located before rcirc-prompt-end-marker.
379 (rcirc-complete): Error if point is not after rcirc prompt.
380 Handle the case when table is nil.
381 (rcirc-user-authenticated): Define to fix compiler warning.
382
383 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
384
385 * custom.el (custom--inhibit-theme-enable): Make it affect only
386 custom-theme-set-variables and custom-theme-set-faces.
387 (provide-theme): Ignore custom--inhibit-theme-enable.
388 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
389 (custom-enabling-themes): Delete variable.
390 (enable-theme): Accept only loaded themes as arguments.
391 Ignore the special custom-enabled-themes variable.
392 (custom-enabled-themes): Forbid themes from setting this.
393 Eliminate use of custom-enabling-themes.
394 (custom-push-theme): Quote "changed" custom var entry.
395
396 2011-03-21 Leo Liu <sdl.web@gmail.com>
397
398 * ido.el (ido-read-internal): Add ido-selected to history instead
399 of user input.
400
401 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
402
403 * subr.el (deferred-action-list, deferred-action-function):
404 Mark obsolete.
405
406 2011-03-21 Leo Liu <sdl.web@gmail.com>
407
408 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
409 change on 2011-02-13 (bug#8309).
410
411 * minibuffer.el (read-file-name-function): Change default value.
412 (read-file-name--defaults): Rename from read-file-name-defaults.
413 (read-file-name-default): Rename from read-file-name.
414 (read-file-name): Call read-file-name-function.
415
416 2011-03-21 Glenn Morris <rgm@gnu.org>
417
418 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
419 Doc fixes.
420
421 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
422
423 * cus-theme.el: Add missing provide statement.
424 (customize-create-theme): Extract theme value correctly.
425 (custom-theme-visit-theme): Autoload.
426 (customize-create-theme): Prompt before inserting default faces.
427
428 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
429
430 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
431 units and musical notes.
432
433 2011-03-20 Leo <sdl.web@gmail.com>
434
435 * ido.el (ido-read-internal): Use completing-read-default.
436 (ido-completing-read): Fix compatibility with completing-read.
437
438 2011-03-20 Christian Ohler <ohler@gnu.org>
439
440 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
441 (ert-delete-all-tests): Use `called-interactively-p' rather than
442 `interactive-p'.
443 (ert--make-xrefs-region): Respect END.
444
445 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
446
447 * dired-aux.el (dired-create-directory): Signal an error if the
448 directory already exists (Bug#8246).
449
450 * facemenu.el (list-colors-display): Call list-faces-display
451 inside with-help-window.
452 (list-colors-print): Use display property to align the final
453 column, instead of checking window-width.
454
455 2011-03-19 Eli Zaretskii <eliz@gnu.org>
456
457 * emerge.el (emerge-metachars): Separate value for ms-dos and
458 windows-nt systems.
459 (emerge-protect-metachars): Quote correctly for ms-dos and
460 windows-nt systems.
461
462 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
463
464 * info.el (info-initialize): Replace all uses of `:' with
465 path-separator for compatibility with non-Unix systems.
466 Cache quoting of path-separator. (Bug#8258)
467
468 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
469
470 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
471 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
472 (mouse-avoidance-mode): Fix typos in docstrings.
473
474 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
475
476 * startup.el (package-subdirectory-regexp): Move from package.el.
477 Omit \\` and \\', and let callers add them.
478
479 * emacs-lisp/package.el (package-strip-version)
480 (package-load-all-descriptors): Add \\` and \\' to
481 package-subdirectory-regexp before using it.
482 (package-untar-buffer): New arg DIR; ensure that file untars only
483 into this expected directory. Remove superfluous delete-region.
484 (package-unpack): Caller changed.
485 (package-tar-file-info): Use package-subdirectory-regexp.
486
487 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
488
489 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
490 diff-mode-shared-map (bug#8284).
491 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
492
493 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
494
495 * calendar/time-date.el (format-seconds): Use assoc instead of
496 assoc-string, since assoc-string doesn't exist in XEmacs.
497
498 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
499
500 * custom.el (custom-known-themes): Reflow docstring.
501 (custom-theme-load-path): Fix typo in docstring.
502 (load-theme): Fix typo in error message.
503 (custom-available-themes, custom-variable-theme-value):
504 Use `let', not `let*'.
505
506 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
507
508 * calc/README: Mention inclusion of musical notes.
509
510 * calc/calc-units.el (calc-lu-quant): Rename from
511 `calc-logunits-quantity'.
512 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
513 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
514 (calc-db): Rename from `calc-dblevel'.
515 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
516 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
517 (calc-np): Rename from `calc-nplevel'.
518 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
519 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
520 (calc-lu-plus): Rename from `calc-logunits-add'.
521 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
522 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
523 (calc-lu-minus): Rename from `calc-logunits-sub'.
524 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
525 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
526 (calc-lu-times): Rename from `calc-logunits-mul'.
527 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
528 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
529 (calc-lu-divide): Rename from `calc-logunits-div'.
530 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
531 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
532
533 * calc/calc-ext.el (calc-init-extensions): Update the names of the
534 functions being autoloaded.
535
536 * calc/calc.el (calc-lu-power-reference): Rename from
537 `calc-logunits-power-reference'.
538 (calc-lu-field-reference): Rename from
539 `calc-logunits-field-reference'.
540
541 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
542
543 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
544
545 * minibuffer.el (completion-all-sorted-completions):
546 Use :completion-cycle-penalty text property if present.
547
548 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
549
550 * allout.el (allout-yank-processing): Adjust for new rebulleting
551 regime so bullet being yanked is used without prompting the user
552 for a choice.
553
554 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
555
556 * startup.el (command-line): Warn the user that _emacs is deprecated.
557
558 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
559
560 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
561 (delphi-verbose, delphi-comment-face, delphi-string-face)
562 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
563 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
564 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
565 (delphi-new-comment-line, delphi-font-lock-defaults)
566 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
567 Fix typos in docstrings.
568
569 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
570
571 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
572 Invert the roles of character and string values for INSTEAD, so a
573 string is used for the more common case of a defaulting prompt.
574
575 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
576
577 * progmodes/ruby-mode.el (ruby-backward-sexp):
578 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
579 * play/gamegrid.el (gamegrid-make-face):
580 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
581 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
582 * notifications.el (notifications-notify):
583 * net/xesam.el (xesam-search-engines):
584 * net/quickurl.el (quickurl-list-insert):
585 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
586
587 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
588
589 * startup.el (command-line): Update package subdirectory regexp.
590
591 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
592
593 * allout.el (allout-abbreviate-flattened-numbering)
594 (allout-mode-deactivate-hook): Fix up obsolescence "date".
595
596 * subr.el (read-char-choice): Only show the cursor after the prompt,
597 not after the answer.
598
599 2011-03-15 Kevin Ryde <user42@zip.com.au>
600
601 * help-fns.el (variable-at-point): Skip leading quotes, if any
602 (bug#8253).
603
604 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
605
606 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
607 warning message.
608
609 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
610
611 * shell.el (shell): When called interactively, offer to change the
612 shell file name on remote hosts.
613
614 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
615
616 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
617 integration for LDAP parameters. The host, base, user or binddn,
618 and secret tokens can be specified in a netrc file, for instance.
619 This is optional because an `auth-source' parameter must be
620 specified in the search attributes.
621
622 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
623
624 * help.el (describe-mode): Link to the mode's definition (bug#8185).
625
626 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
627
628 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
629 into declaration. Remove redundant and harmful binding.
630
631 2011-03-12 Eli Zaretskii <eliz@gnu.org>
632
633 * files.el (file-ownership-preserved-p): Pass `integer' as an
634 explicit 2nd argument to `file-attributes'. If the file's owner
635 is the Administrators group on Windows, and the current user is
636 Administrator, consider that a match.
637
638 * server.el (server-ensure-safe-dir): Consider server directory
639 safe on MS-Windows if its owner is the Administrators group while
640 the current Emacs user is Administrator. Use `=' to compare
641 numerical UIDs, since they could be integers or floats.
642
643 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
644
645 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
646
647 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
648
649 Sync with Tramp 2.2.1.
650
651 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
652
653 * net/trampver.el: Update release number.
654
655 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
656
657 * progmodes/compile.el (compilation--previous-directory): Fix up
658 various nil/dead-marker mismatches (bug#8014).
659 (compilation-directory-properties, compilation-error-properties):
660 Don't call it at a position past the one we're about to change.
661
662 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
663 Disable obsolescence warnings in the file that declares it.
664
665 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
666
667 * allout-widgets.el (allout-widgets-tally): Initialize
668 allout-widgets-tally as a hash table rather than nil to prevent
669 mode-line redisplay warnings.
670 Also, clarify the module description and fix a comment typo.
671
672 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
673
674 * help-fns.el (describe-variable): Don't complete keywords.
675 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
676
677 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
678
679 * emacs-lisp/package.el (package-version-join): Impose a standard
680 string representation for pre/alpha/beta version lists.
681 (package-unpack-single): Standardize the directory name by passing
682 it through package-version-join.
683 (package-strip-rcs-id): Accept any version string that does not
684 signal an error in version-to-list.
685
686 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
687
688 * simple.el (delete-trailing-whitespace): Return nil for the
689 benefit of `write-file-functions'.
690
691 2011-03-10 Glenn Morris <rgm@gnu.org>
692
693 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
694
695 * vc/vc-git.el (vc-git-program): New option.
696 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
697 (vc-git--call): Use it.
698
699 * eshell/esh-util.el (eshell-condition-case): Doc fix.
700
701 * cus-edit.el (Custom-newline): If no button at point, look
702 for a subgroup button at start-of-line. (Bug#2298)
703
704 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
705
706 2011-03-10 Julien Danjou <julien@danjou.info>
707
708 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
709 `cursor-type' is nil.
710
711 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
712
713 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
714
715 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
716
717 * allout.el Summary: Change so yank of distinctive-bullet items
718 preserves the existing header prefix, rebulleting it if necessary,
719 rather than replacing it. This is necessary for proper operation
720 of cooperative addons like allout-widgets.
721 (allout-make-topic-prefix, allout-rebullet-heading): Change
722 SOLICIT arg to INSTEAD, and interpret additionally a string value
723 as alternate bullet to be used, instead of prompting the user for
724 a bullet character.
725
726 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
727
728 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
729 Do not use `tramp-file-name-port', because this returns also
730 `tramp-default-port'.
731
732 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
733
734 * net/rcirc.el (rcirc-handler-001): Remove useless
735 with-rcirc-process-buffer.
736 (rcirc-check-auth-status): Swap arguments to string-match.
737
738 2011-03-09 Glenn Morris <rgm@gnu.org>
739
740 * shell.el (shell-mode):
741 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
742
743 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
744 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
745
746 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
747
748 * emacs-lisp/package.el (package-refresh-contents)
749 (package-menu-execute): Use condition-case-no-debug.
750
751 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
752
753 * simple.el (shell-command-to-string): Use `process-file'.
754
755 * emacs-lisp/package.el (package-tar-file-info): Handle also
756 remote files.
757
758 * emacs-lisp/package-x.el (package-upload-buffer-internal):
759 Use `equal' for upload base check.
760
761 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
762
763 * textmodes/texinfo.el (texinfo-environments):
764 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
765
766 2011-03-08 Glenn Morris <rgm@gnu.org>
767
768 * cus-start.el (cursor-in-non-selected-windows):
769 Fix :set quoting oddness. (Bug#8192)
770
771 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
772 in some setf expressions. (Bug#2159)
773
774 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
775
776 * custom.el (custom-available-themes): Return themes in
777 alphabetical order.
778
779 2011-03-07 Chong Yidong <cyd@stupidchicken.com>
780
781 * progmodes/cc-cmds.el (c-beginning-of-statement): Fix incorrect
782 application of patch from Alan Mackenzie (Bug#7595).
783
784 2011-03-07 Deniz Dogan <deniz.a.m.dogan@gmail.com>
785
786 * net/rcirc.el (rcirc-connect): Fix PASS bug.
787
788 2011-03-07 Glenn Morris <rgm@gnu.org>
789
790 * vc/vc.el (vc-next-action): Add missing space to y-or-n-p prompt.
791 Give an explicit error if failed to make writable. (Bug#6146)
792
793 2011-03-07 Ed Reingold <reingold@emr.cs.iit.edu>
794
795 * calendar/cal-hebrew.el (diary-hebrew-yahrzeit):
796 Add optional `after-sunset' argument. (Bug#8190)
797
798 2011-03-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
799
800 * play/morse.el (nato-alphabet, nato-region, denato-region):
801 New variable and functions. (Bug#2288)
802 (morse-region, unmorse-region): Barf if read-only.
803
804 2011-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
805
806 * progmodes/gud.el (gdb-script-syntax-propertize-function):
807 Don't change the syntax of a \n that closes a comment (bug#8169).
808
809 2011-03-06 Chong Yidong <cyd@stupidchicken.com>
810
811 * emacs-lisp/package-x.el (package-archive-upload-base): Make it a
812 defcustom.
813 (package--update-file): Doc fix. Accept relative file names.
814 (package--archive-contents-from-file): Remove the argument, since
815 it's necessarily always "archive-contents".
816 (package-maint-add-news-item): Pass relative file name args to
817 package--update-file.
818 (package-upload-buffer-internal): Prompt for a destination if
819 package-archive-upload-base is invalid. Create the directory if
820 it does not exist.
821 (package-upload-buffer, package-upload-file): Doc fix.
822
823 2011-03-06 Chong Yidong <cyd@stupidchicken.com>
824
825 * isearch.el (isearch-mode-map): Bind C-y to isearch-yank-kill,
826 and move isearch-yank-line to M-s C-e (Bug#8183).
827
828 2011-03-06 Alan Mackenzie <acm@muc.de>
829
830 * progmodes/cc-engine.el (c-guess-basic-syntax): Reindent.
831 (c-guess-basic-syntax): Move CASE 19 to a different place,
832 correctly to process template-args-cont lines.
833
834 2011-03-06 Jay Belanger <jay.p.belanger@gmail.com>
835
836 * calc/calc-ext.el (calc-init-extensions):
837 Rename calc-logunits-dblevel and calc-logunits-nplevel to calc-dblevel
838 and calc-nplevel, respectively. Add keybindings for calc-spn,
839 calc-midi and calc-freq. Add autoloads for calcFunc-spn,
840 calcFunc-midi, calcFunc-freq, calc-spn, calc-midi and calc-freq.
841
842 * calc/calc-units.el (calc-dblevel): Rename from
843 calc-logunits-dblevel.
844 (calc-nplevel): Rename from calc-logunits-nplevel.
845 (math-midi-round, math-freqp, math-midip, math-spnp)
846 (math-spn-to-midi, math-midi-to-spn, math-freq-to-spn)
847 (math-midi-to-freq, math-spn-to-freq, calcFunc-spn, calcFunc-midi)
848 (calcFunc-freq, calc-freq, calc-midi, calc-spn): New functions.
849 (math-notes): New variable.
850
851 * calc/calc.el (calc-note-threshold): New variable.
852
853 2011-03-06 Chong Yidong <cyd@stupidchicken.com>
854
855 * emacs-lisp/package.el (package-archives): Accept either ordinary
856 directory names, in addition to HTTP URLs.
857 (package--with-work-buffer): New macro. Handle normal directories.
858 (package-handle-response): Don't display the failing buffer.
859 (package-download-single, package-download-tar)
860 (package--download-one-archive): Use package--with-work-buffer.
861 (package-archive-base): Rename from package-archive-url.
862
863 2011-03-06 Glenn Morris <rgm@gnu.org>
864
865 * generic-x.el (generic-unix-modes): Add xmodmap-generic-mode.
866 (xmodmap-generic-mode): Respect generic-extras-enable-list.
867
868 2011-03-06 Daniel Clemente <dcl441-bugs@yahoo.com> (tiny change)
869
870 * generic-x.el (xmodmap-generic-mode): New. (Bug#2065)
871
872 2011-03-06 Juanma Barranquero <lekktu@gmail.com>
873
874 * allout.el (allout-init, allout-prefixed-keybindings)
875 (allout-unprefixed-keybindings):
876 * progmodes/prolog.el (prolog-find-term):
877 Fix typos in docstrings.
878
879 2011-03-06 Nikolaj Schumacher <me@nschum.de> (tiny change)
880
881 * emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746)
882
883 2011-03-06 Kevin Ryde <user42@zip.com.au>
884
885 * textmodes/sgml-mode.el (sgml-fill-nobreak): Give it a doc. (Bug#5326)
886
887 2011-03-06 Michael Shields <shields@msrl.com> (tiny change)
888
889 * window.el (one-window-p, walk-windows, display-buffer):
890 Doc fixes. (Bug#5567)
891
892 2011-03-06 Jay Belanger <jay.p.belanger@gmail.com>
893
894 * cus-edit.el (custom-prompt-variable): Use the `custom-get' property
895 of the variable if it exists.
896
897 2011-03-06 Juanma Barranquero <lekktu@gmail.com>
898
899 * bookmark.el:
900 * desktop.el:
901 * emacs-lock.el:
902 * ps-print.el:
903 * saveplace.el:
904 * net/tramp-cache.el:
905 * obsolete/fast-lock.el:
906 * textmodes/reftex.el:
907 Don't set `kill-emacs-hook' on noninteractive sessions (bug#8137).
908
909 2011-03-05 Antoine Levitt <antoine.levitt@gmail.com>
910
911 * files.el (delete-directory, copy-directory, list-directory):
912 Use read-directory-name.
913
914 * find-file.el (ff-find-the-other-file):
915 * net/ange-ftp.el (ange-ftp-make-directory):
916 * printing.el (pr-interactive-dir):
917 * progmodes/ada-prj.el (ada-prj-load-directory):
918 * progmodes/ebnf2ps.el (ebnf-print-directory)
919 (ebnf-spool-directory, ebnf-eps-directory)
920 (ebnf-syntax-directory):
921 * shell.el (shell):
922 * speedbar.el (speedbar-create-directory):
923 * vc/emerge.el (emerge-merge-directories):
924 * vc/vc-dir.el (vc-dir):
925 * vc/vc.el (vc-create-tag, vc-retrieve-tag): Likewise.
926
927 2011-03-05 Chong Yidong <cyd@stupidchicken.com>
928
929 * help-mode.el (help-buffer): If we are to return the current
930 buffer, signal an error if it's not in Help mode (Bug#8147).
931
932 2011-03-05 Reuben Thomas <rrt@sc3d.org>
933
934 * files.el (file-name-version-regexp): Handle backup files of the
935 form `foo.js.~HEAD~1~' (Bug#8159).
936
937 2011-03-05 Glenn Morris <rgm@gnu.org>
938
939 * eshell/esh-var.el: Don't require esh-test when compiling.
940 * eshell/em-banner.el, eshell/esh-cmd.el, eshell/esh-mode.el:
941 * eshell/esh-var.el, eshell/eshell.el: Move tests to esh-test.
942 * eshell/esh-test.el: Move to ../../test/eshell.el.
943
944 2011-03-05 David Engster <deng@randomsample.de>
945
946 * files.el (save-some-buffers): Report the names of buffers saved
947 automatically due to buffer-save-without-query (Bug#8134).
948
949 2011-03-05 Deniz Dogan <deniz.a.m.dogan@gmail.com>
950
951 * net/rcirc.el: Add QuakeNet authentication support.
952 (rcirc-authinfo, rcirc-check-auth-status)
953 (rcirc-authenticate): Support QuakeNet.
954
955 2011-03-05 Deniz Dogan <deniz.a.m.dogan@gmail.com>
956
957 * net/rcirc.el: Add functionality to authenticate before
958 autojoining channels.
959 (rcirc-authenticate-before-join): New option.
960 (rcirc-authenticated-hook): New variable.
961 (rcirc-connect): Make local variable rcirc-user-authenticated.
962 (rcirc-handler-001): Respect rcirc-authenticate-before-join.
963 (rcirc-check-auth-status, rcirc-join-channels-post-auth):
964 New functions.
965 (rcirc-handler-PRIVMSG, rcirc-handler-NOTICE):
966 Call rcirc-check-auth-status.
967
968 2011-03-05 Alex Harsanyi <AlexHarsanyi@gmail.com>
969
970 * net/soap-client.el (soap-namespace-put-link): Check if the target
971 name is fully qualified -- use only the name part.
972 (soap-parse-complex-type, soap-parse-sequence): Recognize xsd:all
973 types, treated the same as xsd:sequence. (Bug#8166)
974
975 2011-03-05 Eli Zaretskii <eliz@gnu.org>
976
977 * files.el (find-file-noselect): Don't ask about re-visiting
978 non-literally if the file is already visited in image-mode.
979 (Bug#8177)
980
981 2011-03-05 Glenn Morris <rgm@gnu.org>
982
983 * eshell/esh-mode.el (eshell-kill-buffer-function): New function.
984 (eshell-mode): Use eshell-kill-buffer-function.
985 Run the -initialize functions independently of the -load-hooks.
986 * eshell/esh-proc.el (eshell-kill-process-function): New function.
987 (eshell-gather-process-output, eshell-sentinel)
988 (eshell-interrupt-process, eshell-kill-process, eshell-quit-process):
989 Use eshell-kill-process-function.
990 * eshell/em-alias.el (eshell-alias-load-hook):
991 * eshell/em-banner.el (eshell-banner-load-hook):
992 * eshell/em-cmpl.el (eshell-cmpl-load-hook):
993 * eshell/em-dirs.el (eshell-dirs-load-hook):
994 * eshell/em-glob.el (eshell-glob-load-hook):
995 * eshell/em-hist.el (eshell-hist-load-hook):
996 * eshell/em-pred.el (eshell-pred-load-hook):
997 * eshell/em-prompt.el (eshell-prompt-load-hook):
998 * eshell/em-rebind.el (eshell-rebind-load-hook):
999 * eshell/em-script.el (eshell-script-load-hook):
1000 * eshell/em-smart.el (eshell-smart-load-hook):
1001 * eshell/em-term.el (eshell-term-load-hook):
1002 * eshell/em-unix.el (eshell-unix-load-hook):
1003 * eshell/esh-arg.el (eshell-arg-load-hook):
1004 * eshell/esh-cmd.el (eshell-cmd-load-hook):
1005 * eshell/esh-ext.el (eshell-ext-load-hook):
1006 * eshell/esh-io.el (eshell-io-load-hook):
1007 * eshell/esh-mode.el (eshell-exit-hook):
1008 * eshell/esh-proc.el (eshell-proc-load-hook, eshell-kill-hook):
1009 * eshell/esh-var.el (eshell-var-load-hook):
1010 Set default hook values to nil. (Bug#5375)
1011
1012 * eshell/esh-module.el (eshell-module-unload-hook)
1013 (eshell-modules-list): Remove leading * from defcustom docs.
1014
1015 * eshell/esh-util.el (eshell-for): Make it obsolete.
1016 * eshell/em-alias.el (eshell/alias, eshell-alias-completions):
1017 * eshell/em-dirs.el (eshell-save-some-last-dir):
1018 * eshell/em-hist.el (eshell-save-some-history)
1019 (eshell-hist-parse-modifier):
1020 * eshell/em-ls.el (eshell-ls-dir, eshell-ls-files)
1021 (eshell-ls-entries):
1022 * eshell/em-unix.el (eshell/cat, eshell/du, eshell/su):
1023 * eshell/esh-cmd.el (eshell-invoke-directly, eshell-do-eval)
1024 (eshell/which):
1025 * eshell/esh-ext.el (eshell-find-interpreter):
1026 * eshell/esh-mode.el (eshell-mode):
1027 * eshell/esh-module.el (eshell-unload-extension-modules):
1028 * eshell/esh-proc.el (eshell-process-interact):
1029 * eshell/esh-test.el (eshell-test):
1030 * eshell/esh-util.el (eshell-flatten-list, eshell-winnow-list):
1031 * eshell/esh-var.el (eshell/env, eshell-environment-variables)
1032 (eshell-variables-list):
1033 * eshell/eshell.el (eshell-unload-all-modules):
1034 Replace eshell-for with dolist.
1035
1036 2011-03-04 Glenn Morris <rgm@gnu.org>
1037
1038 * vc/vc-bzr.el (vc-bzr-after-dir-status): Handle bzr 2.3.0. (Bug#8170)
1039
1040 2011-03-04 Tom Tromey <tromey@redhat.com>
1041
1042 * progmodes/gud.el (gdb-script-mode): Derive from prog-mode.
1043
1044 2011-03-04 Glenn Morris <rgm@gnu.org>
1045
1046 * outline.el (outline-regexp): No longer allow nil.
1047 (outline-heading-end-regexp): Add safety predicate. (Bug#7619)
1048
1049 * net/browse-url.el (browse-url):
1050 Handle deleted default-directory. (Bug#6077)
1051
1052 * recentf.el (recentf-include-p): In case of a buggy predicate,
1053 err on the side of including, not excluding. (Bug#5843)
1054
1055 2011-03-04 Jay Belanger <jay.p.belanger@gmail.com>
1056
1057 * calc/calc-units.el (math-to-standard-rec): Don't treat subscripted
1058 variables as units.
1059
1060 2011-03-04 Bob Rogers <rogers@rgrjr.dyndns.org>
1061
1062 * emacs-lisp/ewoc.el (ewoc-goto-next): Give a more explicit error
1063 if there is no node. (Bug#3261)
1064
1065 2011-03-04 Leo <sdl.web@gmail.com>
1066
1067 * vc/diff-mode.el (diff-mode): Fix whitespace-style. (Bug#8139)
1068
1069 * time.el (display-time-world-list): Fix typo. (Bug#7571)
1070
1071 2011-03-04 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
1072
1073 * cus-edit.el (custom-buffer-create-internal):
1074 Split search string before passing it to `customize-apropos' (bug#8136).
1075
1076 2011-03-04 Drew Adams <drew.adams@oracle.com>
1077
1078 * image-dired.el (image-dired-cmd-read-exif-data-options):
1079 Fix typo in docstring (bug#8156).
1080
1081 2011-03-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1082
1083 * net/rcirc.el (rcirc-cmd-join): Accept comma-separated input.
1084
1085 2011-03-03 Christian Ohler <ohler@gnu.org>
1086
1087 * emacs-lisp/ert.el (ert--explain-equal): New function.
1088 (ert--explain-equal-rec): Rename from `ert--explain-not-equal'.
1089 All callers changed.
1090 (ert--explain-equal-including-properties): Rename from
1091 `ert--explain-not-equal-including-properties'. All callers
1092 changed.
1093
1094 2011-03-03 Christian Ohler <ohler@gnu.org>
1095
1096 * emacs-lisp/ert.el (ert--stats-set-test-and-result)
1097 (ert-char-for-test-result, ert-string-for-test-result)
1098 (ert-run-tests-batch, ert--print-test-for-ewoc):
1099 Handle `ert-test-quit'.
1100
1101 2011-03-03 David Abrahams <dave@boostpro.com> (tiny change)
1102
1103 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
1104 Move ediff-defvar-local calls after defcustoms. (Bug#1821)
1105
1106 2011-03-03 Glenn Morris <rgm@gnu.org>
1107
1108 * files.el (file-truename): Doc fix. (Bug#2341)
1109
1110 2011-03-03 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
1111
1112 * vc/vc-dir.el (vc-dir-mode-map): Bind vc-dir-find-file to e (Bug#7349).
1113
1114 2011-03-03 Vagn Johansen <gonz808@hotmail.com> (tiny change)
1115
1116 * vc/vc-svn.el (vc-svn-after-dir-status): Some MS Windows svn client
1117 programs output backslashes. (Bug#7663)
1118
1119 2011-03-03 Glenn Morris <rgm@gnu.org>
1120
1121 * mail/sendmail.el (mail-mode-map): Remove mail-sent-via.
1122 (mail-mode): Remove mail-sent-via from the doc.
1123 (mail-sent-via): Make it obsolete. (Bug#1776)
1124
1125 * progmodes/grep.el (grep-highlight-matches): Doc fix.
1126 (grep-process-setup): No highlighting without font-lock. (Bug#8084)
1127
1128 * vc/vc-bzr.el (vc-bzr-state-heuristic): Handle dirstate entries
1129 with no parents. (Bug#8025)
1130
1131 2011-03-02 Teodor Zlatanov <tzz@lifelogs.com>
1132
1133 * password-cache.el (password-in-cache-p): Add autoload.
1134
1135 2011-03-02 Glenn Morris <rgm@gnu.org>
1136
1137 * man.el (Man-support-local-filenames): Also handle Red Hat's man.
1138 * dired-x.el (Man-support-local-filenames): Autoload it.
1139 (dired-guess-shell-alist-default): Also handle Red Hat's man.
1140
1141 * dired-x.el (dired-default-directory-alist, dired-default-directory):
1142 Mark as obsolete.
1143 (dired-smart-shell-command): Just call dired-current-directory.
1144
1145 * dired-x.el (dired-jump-other-window): Add autoload.
1146 (dired-default-directory-alist, dired-default-directory): Doc fixes.
1147 (dired-default-directory-alist): Mark as risky.
1148
1149 * dired-x.el (dired-omit-here-always): Make it obsolete.
1150
1151 2011-03-02 Chong Yidong <cyd@stupidchicken.com>
1152
1153 * textmodes/artist.el (artist-curr-go): Default to pen-line.
1154 (artist-select-op-pen-line): New function.
1155 (artist-menu-map): New variable.
1156 (artist-mode-map): Add a menu to the menu-bar.
1157
1158 2011-03-02 Jay Belanger <jay.p.belanger@gmail.com>
1159
1160 * calc/calc-math.el (calcFunc-log10): Check for symbolic mode
1161 when evaluating.
1162
1163 * calc/calc-units.el (math-conditional-apply, math-conditional-pow):
1164 New function.
1165 (math-logunits-add, math-logunits-mul, math-logunits-divide):
1166 (math-logunits-quant, math-logunits-level):
1167 Use `math-conditional-apply' and `math-conditional-pow' to evaluate
1168 functions.
1169 (math-logunits-level): Extract units from ratio.
1170
1171 2011-03-01 Juanma Barranquero <lekktu@gmail.com>
1172
1173 * emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring.
1174
1175 2011-03-01 Glenn Morris <rgm@gnu.org>
1176
1177 * calendar/cal-hebrew.el (calendar-hebrew-birthday)
1178 (diary-hebrew-birthday): Rename and rework functions added
1179 in previous change.
1180
1181 2011-03-01 Ed Reingold <reingold@emr.cs.iit.edu>
1182
1183 * calendar/cal-hebrew.el (hebrew-calendar-birthday)
1184 (diary-hebrew-birthday): New functions.
1185
1186 2011-03-01 Glenn Morris <rgm@gnu.org>
1187
1188 * dired.el (dired-safe-switches-p): Beef it up.
1189 (dired-actual-switches): Use it for the safe-local prop. (Bug#3230)
1190
1191 2011-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
1192
1193 * dired.el (dired-safe-switches-p): New function.
1194
1195 2011-03-01 Glenn Morris <rgm@gnu.org>
1196
1197 * files.el (dir-locals-collect-variables):
1198 Add the ability to exclude subdirectories. (Bug#8100)
1199
1200 * dired-x.el (dired-omit-here-always): Add `(subdirs . nil)' to locals.
1201
1202 2011-02-28 Christoph Scholtes <cschol2112@googlemail.com>
1203
1204 * ido.el (ido-everywhere): Doc fix.
1205 (ido-mode): Doc fix.
1206
1207 2011-02-28 Glenn Morris <rgm@gnu.org>
1208
1209 * dired-x.el (dired-guess-shell-alist-default): Use \\', not $.
1210
1211 2011-02-28 Michael Albinus <michael.albinus@gmx.de>
1212
1213 * net/tramp-cmds.el (tramp-append-tramp-buffers): Dump load-path
1214 shadows.
1215
1216 2011-02-28 Antoine Levitt <antoine.levitt@gmail.com>
1217
1218 * dired-x.el (dired-guess-shell-alist-default): Add rar and 7z.
1219
1220 2011-02-28 Juanma Barranquero <lekktu@gmail.com>
1221
1222 * emacs-lisp/pcase.el (pcase, pcase--u1, pcase--q1):
1223 Fix typos in docstrings.
1224
1225 2011-02-28 Stephen Berman <stephen.berman@gmx.net>
1226
1227 * dired-aux.el (dired-update-file-line):
1228 Fix 2010-11-09 change. (Bug#8131)
1229
1230 2011-02-28 Eli Zaretskii <eliz@gnu.org>
1231
1232 * international/mule-cmds.el (set-default-coding-systems): Use the
1233 -unix variant of encoding in default-keyboard-coding-system.
1234 (Bug#8122)
1235
1236 2011-02-27 Chong Yidong <cyd@stupidchicken.com>
1237
1238 * facemenu.el (list-colors-display): Use with-help-window (Bug#8048).
1239
1240 2011-02-27 Prestoo Ten <prestooten@gmail.com> (tiny change)
1241
1242 * term/screen.el: New file (Bug#2650).
1243
1244 2011-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
1245
1246 * emacs-lisp/pcase.el (pcase--if): Try to invert test to reduce depth.
1247 (pcase-mutually-exclusive-predicates): New var.
1248 (pcase--split-consp, pcase--split-pred): Use it.
1249 (pcase--split-equal, pcase--split-member): When splitting against
1250 a pure predicate, run it to know the outcome.
1251 (pcase--u1): Mark vars that are actually used.
1252 (pcase--q1): Avoid introducing unused vars.
1253
1254 2011-02-27 Jay Belanger <jay.p.belanger@gmail.com>
1255
1256 * calc/calc-ext.el (calc-init-extensions):
1257 Autoload `calc-l-prefix-help' instead of `calc-ul-prefix-help'.
1258
1259 * calc/calc-math.el (calcFunc-log10): Don't signal an error in
1260 symbolic mode.
1261
1262 * calc/calc-vec.el (calcFunc-subscr): Return nil if the first
1263 argument is a variable.
1264
1265 2011-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
1266
1267 * emacs-lisp/assoc.el: Remove misleading `sort' (bug#8126).
1268 (aput, adelete, amake): Replace `eval' -> `symbol-value'.
1269 Suggested by Michael Heerdegen <michael_heerdegen@web.de>.
1270
1271 2011-02-25 Teodor Zlatanov <tzz@lifelogs.com>
1272
1273 * password-cache.el (password-in-cache-p): Convenience function to
1274 check if a key is in the cache, even if the value is nil.
1275
1276 2011-02-25 Jambunathan K <kjambunathan@gmail.com>
1277
1278 * emacs-lisp/package-x.el (package--archive-contents-from-url)
1279 (package--archive-contents-from-file): New functions.
1280 (package-update-news-on-upload): New var.
1281 (package-upload-buffer-internal): Extract archive-contents from
1282 package-archive-upload-base if it is not found at archive-url.
1283 Obey package-update-news-on-upload.
1284 (package-upload-buffer, package-upload-file): Doc fix.
1285
1286 2011-02-24 Glenn Morris <rgm@gnu.org>
1287
1288 * files-x.el (modify-dir-local-variable): Handle dir-locals from
1289 the cache, and from non-file sources.
1290
1291 * help-fns.el (describe-variable): Return consistent results when a
1292 dir-local from a file came from the cache or did not. (Bug#8095)
1293 If a dir-local has no associated file, say it came from a "directory".
1294
1295 * files.el (hack-dir-local-variables): Fix setting of `dir-name'.
1296 (hack-local-variables-confirm, hack-local-variables-filter): Doc fix.
1297
1298 * files.el (dir-locals-find-file): Doc fix.
1299 Fix the check for cache elements that have no associated file,
1300 and the mtime check for those that do. (Bug#8095)
1301
1302 * dired-x.el (dired-hack-local-variables):
1303 Handle interrupts during hacking local variables. (Bug#5216)
1304
1305 * emacs-lisp/autoload.el (autoload-save-buffers)
1306 (autoload-find-destination, update-directory-autoloads):
1307 Avoid prompts when updating autoloads.
1308
1309 2011-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
1310
1311 * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): Obsolete.
1312
1313 2011-02-23 Kenichi Handa <handa@m17n.org>
1314
1315 * mail/rmailmm.el (rmail-mime-process-multipart): Do not signal an
1316 error when a multipart boundary in the nested multipart is found.
1317
1318 * mail/rmail.el (rmail-start-mail): Decode "encoded-words" of
1319 header components.
1320
1321 2011-02-23 Glenn Morris <rgm@gnu.org>
1322
1323 * dired.el (dired-mode): Call hack-dir-local-variables-non-file-buffer.
1324 * dired-x.el (dired-omit-mode): Safe if boolean.
1325 (dired-enable-local-variables): Fix doc and custom type.
1326 (dired-enable-local-variables, dired-local-variables-file)
1327 (dired-hack-local-variables): Make obsolete.
1328 (dired-omit-here-always): Use dir-locals.el instead.
1329
1330 * files.el (safe-local-eval-forms): Add the write-file-hooks version.
1331
1332 2011-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
1333
1334 * help-fns.el (describe-function-1): Don't signal an error just because
1335 the DOC file disappeared.
1336
1337 2011-02-22 Seppo Sade <sepposade1@gmail.com> (tiny change)
1338
1339 * eshell/esh-ext.el (eshell-external-command): Do not restrict
1340 remote check to "ftp". (Bug#8089)
1341
1342 2011-02-21 Alan Mackenzie <acm@muc.de>
1343
1344 Fix bug #7930.
1345 * progmodes/cc-engine.el (c-state-literal-at): Prevent positions
1346 in macros finding their way into c-state-nonlit-pos-cache.
1347 Strengthen the comments.
1348 (c-state-dump): New commented out diagnostic routine.
1349
1350 2011-02-21 Michael Albinus <michael.albinus@gmx.de>
1351
1352 * net/tramp.el (tramp-rfn-eshadow-setup-minibuffer): Do not use
1353 `field' property of `rfn-eshadow-overlay'.
1354
1355 2011-02-21 Lars Ingebrigtsen <larsi@gnus.org>
1356
1357 * net/netrc.el (netrc-parse): Comment fix.
1358
1359 2011-02-21 Chong Yidong <cyd@stupidchicken.com>
1360
1361 * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
1362 Autoload. Add optional arg FRAME, and pass it to color-values.
1363 (color-complement): Caller changed. Doc fix.
1364 (color-gradient): Rewrite for better clarity and efficiency.
1365
1366 * faces.el (color-values): Use cond for clarity. Doc fix.
1367
1368 * facemenu.el (color-rgb-to-hsv): Delete; use the version in
1369 color.el instead.
1370 (list-colors-sort-key, list-colors-print):
1371 Use color-normalized-values.
1372
1373 2011-02-20 Drew Adams <drew.adams@oracle.com>
1374
1375 * color.el: First part of merge from hexrgb.el.
1376 (color-rgb-to-hex): Rename from color-rgb->hex.
1377 (color-rgb-to-hsv): Rename from color-rgb->hsv. Force hue and
1378 saturation to zero if the value is too small.
1379 (color-rgb-to-hsl): Rename from color-rgb->hsl.
1380 (color-srgb-to-xyz): Rename from color-srgb->xyz. Doc fix.
1381 (color-xyz-to-srgb): Rename from color-xyz->srgb. Doc fix.
1382 (color-xyz-to-lab): Rename from color-xyz->lab. Doc fix.
1383 (color-lab-to-xyz): Rename from color-lab->xyz. Doc fix.
1384 (color-lab-to-srgb): Rename from color-lab->srgb. Doc fix.
1385 (color-cie-de2000): Doc fix.
1386
1387 2011-02-20 Alan Mackenzie <acm@muc.de>
1388
1389 * progmodes/cc-cmds.el (c-beginning-of-statement): Avoid loop in
1390 locating the beginning of a macro. (Bug#7595)
1391
1392 2011-02-20 Glenn Morris <rgm@gnu.org>
1393
1394 * edmacro.el (edmacro-eight-bits): Make it a defcustom.
1395 Don't autoload it.
1396
1397 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
1398 (global-auto-revert-ignore-buffer): Remove leading "*" from docs.
1399
1400 2011-02-19 Dmitry Bolshakov <dmitry.bolshakov@bridge-quest.com>
1401 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
1402
1403 * progmodes/hideshow.el (hs-find-block-beginning)
1404 (hs-hide-level-recursive): Ignore comments when parsing braces
1405 (Bug#8036).
1406
1407 2011-02-19 Chong Yidong <cyd@stupidchicken.com>
1408
1409 * vc/vc-bzr.el (vc-bzr-bound-branch-p): New function.
1410 (vc-bzr-pull): Use it.
1411
1412 2011-02-19 Chong Yidong <cyd@stupidchicken.com>
1413
1414 * vc/vc-bzr.el (vc-bzr--branch-conf): Function deleted.
1415 (vc-bzr-branch-conf): New function, similar to vc-bzr--branch-conf
1416 but returning an alist. Ignore comments in bzr conffile.
1417 (vc-bzr-pull, vc-bzr-merge-branch): Use vc-bzr-branch-conf.
1418 (vc-bzr-error-regex-alist): New var.
1419 (vc-bzr-merge-branch): Use it to highlight the pull/merge buffer.
1420
1421 * vc/vc-dispatcher.el (vc-do-async-command):
1422 Bind inhibit-read-only to t.
1423
1424 * progmodes/compile.el (compilation--flush-directory-cache):
1425 Handle the case where cdr of compilation--flush-directory-cache
1426 points to no buffer, which can occur if we previously switched to
1427 compilation-mode in a pregenerated buffer.
1428
1429 2011-02-19 Kenichi Handa <handa@m17n.org>
1430
1431 * mail/rmailmm.el (rmail-mime-find-header-encoding): Be sure to
1432 get the header copy into the temporary buffer.
1433 (rmail-mime-insert-decoded-text): Ignore us-ascii.
1434 (rmail-show-mime): When rmail-mime-coding-system is nil, set
1435 buffer-file-coding-system to undecided.
1436
1437 2011-02-19 Eli Zaretskii <eliz@gnu.org>
1438
1439 * international/mule-cmds.el (read-char-by-name, ucs-insert):
1440 Document completion with asterisk and a substring.
1441
1442 2011-02-19 Glenn Morris <rgm@gnu.org>
1443
1444 * files.el (find-file-literally): Doc fix.
1445
1446 * simple.el (rfc822-goto-eoh): Give it a doc-string.
1447
1448 * log-edit.el (log-edit-insert-changelog):
1449 Fix `log-edit-strip-single-file-name' functionality. (Bug#8057)
1450
1451 2011-02-19 Glenn Morris <rgm@gnu.org>
1452
1453 * dired-x.el: Don't require dired-aux.
1454 (dired-do-create-files, dired-mark-read-regexp)
1455 (dired-do-create-files-regexp): Autoload from dired-aux.
1456
1457 * dired-x.el (dired-find-buffer-nocreate): Merge into dired.el.
1458 * dired.el (dired-find-buffer-nocreate): Merge dired-x version.
1459
1460 * dired-x.el (dired-read-shell-command): Merge into dired-aux's version.
1461 * dired-aux.el (dired-read-shell-command): Merge dired-x's version.
1462
1463 * dired-x.el (dired-clean-up-after-deletion): Merge into dired.el.
1464 * dired.el (dired-clean-up-after-deletion): Merge dired-x's version.
1465 (dired-clean-up-buffers-too): Declare.
1466
1467 * dired-x.el (dired-initial-position): Merge into dired.el's version.
1468 * dired.el (dired-initial-position): Merge dired-x's version here.
1469 (dired-find-subdir): Declare.
1470
1471 * dired-x.el (dired-omit-new-add-entry): Merge into dired-add-entry.
1472 * dired-aux.el (dired-add-entry): Give it a doc-string.
1473 Merge dired-x's dired-omit handling here.
1474 (dired-omit-mode, dired-omit-regexp, dired-omit-localp): Declare.
1475
1476 * international/mule-diag.el (list-input-methods-1):
1477 Indent all lines of multi-line doc-strings. (Bug#8066)
1478
1479 2011-02-18 Chong Yidong <cyd@stupidchicken.com>
1480
1481 Fix 2011-02-02 changes.
1482
1483 * apropos.el (apropos-print): Call apropos-mode before setting up
1484 buffer variables. Use inhibit-read-only.
1485
1486 * emacs-lisp/package.el (package--list-packages):
1487 Call package-menu-mode before setting up buffer variables.
1488
1489 * play/solitaire.el (solitaire): Call solitaire-mode before
1490 setting up buffer variables. Use inhibit-read-only.
1491
1492 2011-02-18 Lawrence Mitchell <wence@gmx.li>
1493
1494 * progmodes/sh-script.el (sh-syntax-propertize-here-doc): (bug#8053)
1495 Bind case-fold-search to nil when looking for end of here-doc.
1496
1497 2011-02-18 Eli Zaretskii <eliz@gnu.org>
1498
1499 * image-mode.el (image-toggle-display-image):
1500 Set find-file-literally non-nil in buffers visiting binary image
1501 files. (Bug#8047)
1502
1503 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1504
1505 * files.el (cd): Make completion obey cd-path (bug#7924).
1506
1507 2011-02-18 Glenn Morris <rgm@gnu.org>
1508
1509 * progmodes/prolog.el: Don't require compile when compiling.
1510 (compilation-shell-minor-mode, compilation-error-regexp-alist)
1511 (compilation-forget-errors, compilation-fake-loc)
1512 (compilation-parse-errors-function, compilation-error-list): Declare.
1513 (prolog-inferior-mode): Require 'compile.
1514
1515 * emulation/cua-base.el (pc-selection-mode): Declare.
1516
1517 * emacs-lisp/eieio-custom.el: Set generated-autoload-file.
1518 (customize-object): Add autoload cookie.
1519 * emacs-lisp/eieio-opt.el: Set generated-autoload-file.
1520 (eieio-browse, describe-class, eieio-describe-class)
1521 (eieio-describe-constructor, describe-generic, eieio-describe-generic)
1522 (eieio-help-mode-augmentation-maybee): Add autoload cookies.
1523 * emacs-lisp/eieio.el: Regenerate with automatic autoloads.
1524 * Makefile.in (autoloads): Make eieio.el writable.
1525
1526 * dired-x.el (dired-clean-up-after-deletion, dired-do-relsymlink)
1527 (dired-do-relsymlink-regexp, dired-find-buffer-nocreate): Use #'.
1528 (dired-hack-local-variables): Use inhibit-read-only.
1529 (dired-guess-default): Simplify.
1530 (dired-make-relative-symlink): Use dotimes.
1531 (dired-simultaneous-find-file): Use dolist.
1532 (dired-mark-sexp): Remove unneeded `if'. Use line-end-position.
1533 (dired-x-hands-off-my-keys): Doc fix.
1534 (dired-x-bind-find-file): Doc fix. Use remapping.
1535 (after-init-hook): No need to add dired-x-bind-find-file.
1536 (dired-x-find-file, dired-x-find-file-other-window): Doc fixes.
1537 No need to call expand-file-name.
1538 (dired-filename-at-point): Remove unused locals `end', `filename'.
1539
1540 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1541
1542 * emacs-lisp/pcase.el (pcase--u1): Understand non-linear patterns.
1543
1544 2011-02-18 Christian Ohler <ohler@gnu.org>
1545
1546 * emacs-lisp/ert.el (ert--setup-results-buffer)
1547 (ert-results-pop-to-backtrace-for-test-at-point)
1548 (ert-results-pop-to-messages-for-test-at-point)
1549 (ert-results-pop-to-should-forms-for-test-at-point)
1550 (ert-results-pop-to-timings): Revert parts of change 2011-02-02T17:59:44Z!sds@gnu.org that
1551 were incorrect and unnecessary. This should make `make check'
1552 pass again.
1553
1554 2011-02-17 Ken Manheimer <ken.manheimer@gmail.com>
1555
1556 * lisp/allout-widgets.el (allout-widgets-icons-light-subdir)
1557 (allout-widgets-icons-dark-subdir): Track relocations of icons.
1558 * lisp/allout.el: Remove commentary about remove encryption
1559 passphrase mnemonic support and verification.
1560 (allout-encrypt-string): Recognize epg failure to decrypt gpg2
1561 armored text using gpg1, and indicate that the gpg version *might*
1562 be the problem in the error message.
1563
1564 2011-02-17 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1565
1566 * net/rcirc.el (rcirc-float-time): New function.
1567 (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE)
1568 (rcirc-ctcp-sender-PING): Use it.
1569
1570 2011-02-17 Glenn Morris <rgm@gnu.org>
1571
1572 * speedbar.el (speedbar-ignored-modes, speedbar-file-unshown-regexp)
1573 (speedbar-update-flag, speedbar-fetch-etags-command)
1574 (speedbar-fetch-etags-arguments):
1575 * term.el (term-buffer-maximum-size, term-input-chunk-size)
1576 (term-completion-autolist, term-completion-addsuffix)
1577 (term-completion-recexact, term-completion-fignore):
1578 * term/sup-mouse.el (sup-mouse-fast-select-window):
1579 * term/x-win.el (x-select-request-type):
1580 Convert some defvars with "*" to defcustoms.
1581
1582 * shell.el (shell-delimiter-argument-list): Set it to nil. (Bug#8027)
1583
1584 * vc/vc.el (vc-default-previous-version):
1585 Remove alias that points nowhere. (Bug#4496)
1586
1587 * dired-x.el (dired-clean-up-after-deletion):
1588 kill-buffer does not need save-excursion.
1589 (dired-do-run-mail): Doc fix.
1590 (dired-filename-at-point): Doc fix.
1591 Use looking-at, and skip-chars rather than re search.
1592
1593 * dired-x.el (dired-filename-at-point): Fix 8-year old typo.
1594
1595 2011-02-16 Ken Manheimer <ken.manheimer@gmail.com>
1596
1597 * allout-widgets.el: New allout extension that shows allout
1598 outline structure with graphical widgets. 'allout-widgets'
1599 customize group is an 'allout' subgroup, for easy discovery.
1600
1601 * allout.el: Include PGP and GnuPG in Keywords, and other
1602 commentary refinements.
1603 (allout-abbreviate-flattened-numbering): Rename to
1604 allout-flattened-numbering-abbreviation, and
1605 define-obsolete-variable-alias the old name.
1606 (allout-flattened-numbering-abbreviation): Rename from
1607 allout-abbreviate-flattened-numbering.
1608 (allout-mode-p): Include among autoloads, for use by other modes
1609 with impunity.
1610 (allout-listify-exposed):
1611 Use allout-flattened-numbering-abbreviation.
1612 (allout-encrypt-string): Use set-buffer-multibyte directly.
1613 (allout-set-buffer-multibyte): Remove.
1614
1615 2011-02-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1616
1617 * simple.el (just-one-space): Remove useless `or' call.
1618
1619 2011-02-16 Alex Harsanyi <AlexHarsanyi@gmail.com>
1620
1621 * net/soap-client.el (soap-well-known-xmlns, soap-local-xmlns)
1622 (soap-default-xmlns, soap-target-xmlns, soap-multi-refs)
1623 (soap-decoded-multi-refs, soap-current-wsdl)
1624 (soap-encoded-namespaces): Rename CL-style *...* variables.
1625
1626 2011-02-16 Michael Albinus <michael.albinus@gmx.de>
1627
1628 * net/soap-client.el: Add "comm" and "hypermedia" to the
1629 keywords. Reflow too long lines.
1630
1631 * net/soap-inspect.el: Ditto. Require 'cl.
1632
1633 2011-02-16 Bastien Guerry <bzg@altern.org>
1634
1635 * play/doctor.el (doctor-mode): Bugfix: escape the "," character
1636 in a `doctor-type' argument.
1637
1638 2011-02-16 Alex Harsanyi <AlexHarsanyi@gmail.com>
1639
1640 * net/soap-client.el:
1641 * net/soap-inspect.el: New files.
1642
1643 2011-02-16 Leo <sdl.web@gmail.com>
1644
1645 * dired-x.el (dired-mode-map, dired-extra-startup):
1646 Remove dired-copy-filename-as-kill since it's already in dired.el.
1647
1648 2011-02-16 Glenn Morris <rgm@gnu.org>
1649
1650 * dired-x.el (dired-bind-jump, dired-bind-man, dired-bind-info):
1651 Doc fixes. Add :set property, replacing top-level calls.
1652 (dired-vm-read-only-folders, dired-vm): Doc fix (drop v. old VM 4).
1653 (dired-guess-shell-gnutar): Test tar version rather than system-type.
1654 (dired-extra-startup, dired-man, dired-info): Doc fixes.
1655 (dired-clean-up-after-deletion): Use when and dolist.
1656 (dired-jump): Use unless and when.
1657 (dired-virtual): Use line-end-position.
1658 (dired-default-directory-alist): Rename from default-directory-alist.
1659 (dired-default-directory): Update for above name change.
1660 (dired-vm): Drop VM < 5 and simplify.
1661 (dired-buffer-more-recently-used-p): Rewrite.
1662 (dired-filename-at-point): Use when and or.
1663 (dired-x-read-filename-at-point): Rename from read-filename-at-point.
1664 Update callers.
1665
1666 2011-02-15 Glenn Morris <rgm@gnu.org>
1667
1668 * dired-x.el: Use easymenu for menu items. Fix item capitalization.
1669
1670 2011-02-14 Chong Yidong <cyd@stupidchicken.com>
1671
1672 * vc/vc-git.el (vc-git-root-log-format): New option for
1673 customizing log format.
1674 (vc-git-print-log, vc-git-log-outgoing, vc-git-log-incoming)
1675 (vc-git-log-view-mode): Use it.
1676 (vc-git-expanded-log-entry): New function.
1677 (vc-git-log-view-mode): Use it. Truncate lines in root log.
1678
1679 * vc/vc-hg.el (vc-hg-root-log-template): New option for
1680 customizing log format.
1681 (vc-hg-print-log): Use it.
1682 (vc-hg-expanded-log-entry): New function.
1683 (vc-hg-log-view-mode): Use vc-hg-root-log-template and
1684 vc-hg-expanded-log-entry. Truncate lines in root log.
1685
1686 * vc/vc-bzr.el (vc-bzr-log-view-mode): Truncate lines in root log.
1687
1688 * vc/log-view.el (log-view-mode-menu):
1689 Add log-view-toggle-entry-display.
1690
1691 2011-02-14 Glenn Morris <rgm@gnu.org>
1692
1693 * dired-x.el: Don't require man when compiling.
1694 (dired-omit-extensions, dired-local-variables-file)
1695 (dired-x-hands-off-my-keys): Make them defcustoms.
1696 (Man-support-local-filenames, Man-getpage-in-background): Declare.
1697 (vm-visit-folder): Declare rather than defining.
1698 (dired-x-help-address, dired-x-variable-list): Remove.
1699 (dired-x-submit-report): Make it an obsolete alias.
1700
1701 2011-02-14 Juanma Barranquero <lekktu@gmail.com>
1702
1703 * makefile.w32-in (TRAMP_SRC): Remove tramp-imap.el.
1704
1705 2011-02-13 Teodor Zlatanov <tzz@lifelogs.com>
1706
1707 * net/imap.el: Bring it back.
1708
1709 2011-02-13 Alan Mackenzie <acm@muc.de>
1710
1711 * progmodes/cc-fonts.el (c-font-lock-declarations): Remove a
1712 narrow-to-region call that cuts context off the end (Bug#7722).
1713
1714 * progmodes/cc-engine.el (c-forward-<>-arglist-recur):
1715 Refactor nested if-forms with a simple cond.
1716 (c-forward-<>-arglist): Revert 2011-01-31 change.
1717
1718 2011-02-13 Chong Yidong <cyd@stupidchicken.com>
1719
1720 * vc/log-view.el: New command log-view-toggle-entry-display for
1721 toggling log entries between concise and detailed forms.
1722 (log-view-toggle-entry-display): New command.
1723 (log-view-mode-map): Bind RET to it.
1724 (log-view-expanded-log-entry-function): New variable.
1725 (log-view-current-entry, log-view-inside-comment-p)
1726 (log-view-current-tag): New functions.
1727 (log-view-toggle-mark-entry): Use log-view-current-entry and
1728 log-view-end-of-defun instead of searching directly with
1729 log-view-message-re.
1730 (log-view-end-of-defun): Likewise. Add optional ARG for
1731 compatibility with end-of-defun.
1732 (log-view-end-of-defun): Ignore comments and VC buttons.
1733
1734 * vc/vc-bzr.el (vc-bzr-expanded-log-entry): New function.
1735 (vc-bzr-log-view-mode): Use log-view-expanded-log-entry-function.
1736
1737 2011-02-13 Teodor Zlatanov <tzz@lifelogs.com>
1738
1739 * net/imap.el: Remove file. All the functionality is in nnimap.el.
1740
1741 * net/imap-hash.el: Remove file.
1742
1743 2011-02-13 Michael Albinus <michael.albinus@gmx.de>
1744
1745 * Makefile.in (TRAMP_SRC): Remove tramp-imap.el.
1746
1747 * net/tramp.el (tramp-read-passwd): Simplify `auth-source-search'
1748 call.
1749
1750 * net/tramp-imap.el: Remove file.
1751
1752 2011-02-13 Chong Yidong <cyd@stupidchicken.com>
1753
1754 * vc/vc.el (vc-print-log-setup-buttons): Instead of using the
1755 widget library for buttons, just use button.el.
1756
1757 * vc/log-view.el (log-view-mode-map): Don't inherit from
1758 widget-keymap.
1759
1760 2011-02-12 Glenn Morris <rgm@gnu.org>
1761
1762 * emacs-lisp/cl-seq.el (union, nunion, intersection)
1763 (nintersection, set-difference, nset-difference)
1764 (set-exclusive-or, nset-exclusive-or): Doc fix.
1765
1766 * ediff-ptch.el (ediff-fixup-patch-map): Doc fix.
1767
1768 * faces.el (face-attr-match-p): Handle the obsolete :bold and
1769 :italic props, so that frame-set-background-mode works. (Bug#7966)
1770
1771 * simple.el (next-error): Doc fix.
1772
1773 2011-02-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1774
1775 * dired-aux.el (dired-create-files): Adapt destination name to
1776 match the new behavior of copy-directory.
1777
1778 2011-02-12 Chong Yidong <cyd@stupidchicken.com>
1779
1780 * mail/mail-utils.el (mail-dont-reply-to-names): New variable,
1781 from rmail-dont-reply-to-names. Callers changed.
1782 (mail-dont-reply-to): Rename from mail-dont-reply-to.
1783 (rmail-dont-reply-to): Make it an obsolete alias.
1784
1785 * mail/rmail.el (rmail-default-dont-reply-to-names): Default to
1786 nil, and make obsolete (Bug#7888).
1787 (rmail-dont-reply-to-names): Alias to mail-dont-reply-to-names.
1788
1789 * mail/rmailsum.el (rmail-summary-sort-by-correspondent): Doc fix.
1790
1791 * mail/rmailsort.el (rmail-sort-by-correspondent)
1792 (rmail-select-correspondent): Doc fix. Use mail-dont-reply-to.
1793
1794 * mail/rmail.el (rmail-reply): Use mail-dont-reply-to.
1795
1796 2011-02-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1797
1798 * files.el (copy-directory): New argument COPY-CONTENTS for
1799 copying directory contents into another existing directory.
1800
1801 2011-02-12 Tassilo Horn <tassilo@member.fsf.org>
1802
1803 * minibuffer.el (completion-table-case-fold): New function for
1804 creating a case-insensitive completion table.
1805
1806 2011-02-12 Teodor Zlatanov <tzz@lifelogs.com>
1807
1808 * net/tramp.el (tramp-default-method): Also check if
1809 `auth-source-search' is bound.
1810 (tramp-read-passwd): Use `auth-source-search' instead of
1811 `auto-source-user-or-password'.
1812
1813 * net/tramp-imap.el: Autoload `auto-source-search' instead of
1814 `auto-source-user-or-password.
1815 (tramp-imap-passphrase-callback-function): Use it.
1816
1817 * net/imap-hash.el: Autoload `auto-source-search' instead of
1818 `auto-source-user-or-password.
1819 (imap-hash-open-connection): Use it.
1820
1821 * mail/smtpmail.el: Autoload `auto-source-search' instead of
1822 `auto-source-user-or-password.
1823 (smtpmail-try-auth-methods): Use it.
1824
1825 2011-02-12 Phil Hagelberg <phil@hagelb.org>
1826
1827 * emacs-lisp/package.el: Allow packages to be reinstalled.
1828 (package--write-file-no-coding): Remove EXCL arg.
1829 (package-unpack-single): Don't use it.
1830
1831 2011-02-12 Karl Pflästerer <k@rl.pflaesterer.de> (tiny change)
1832
1833 * vc/vc-svn.el: Adapt to Subversion change, with no .svn directory
1834 in each sub directory.
1835 (vc-svn-registered): Use vc-svn-root.
1836 (vc-svn-root): New function. Make vc-svn-responsible-p an alias.
1837 (vc-svn-repository-hostname): Use "svn info".
1838
1839 2011-02-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1840
1841 * simple.el (delete-trailing-whitespace): New optional buffer
1842 bound parameters.
1843
1844 2011-02-11 Bastien Guerry <bzg@altern.org>
1845
1846 * files.el (basic-save-buffer): save unmodified buffers when
1847 the file pointed by buffer-file-name doesn't exist.
1848
1849 2011-02-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1850
1851 * net/rcirc.el (rcirc-cmd-join): Accept multiple channels.
1852
1853 2011-02-11 Glenn Morris <rgm@gnu.org>
1854
1855 * emacs-lisp/cl-specs.el (multiple-value-bind): Fix debug spec.
1856
1857 2011-02-11 Juanma Barranquero <lekktu@gmail.com>
1858
1859 * net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
1860
1861 2011-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
1862
1863 * server.el (server-process-filter): Use pcase.
1864
1865 * emacs-lisp/smie.el (smie-blink-matching-open): Don't use `pos' in two
1866 conflicting ways.
1867 (smie-indent--parent): Extend to "parent of arg".
1868 (smie-indent-inside-string): New function.
1869 (smie-indent-functions): Use it.
1870
1871 * vc/vc-dir.el (vc-dir-refresh): Reorder operations to try and avoid
1872 bzr locking race condition.
1873
1874 * emacs-lisp/edebug.el (edebug-instrument-function): Check a marker is
1875 still valid before using it.
1876
1877 * progmodes/grep.el (grep-mode-font-lock-keywords): Adjust to
1878 `message' -> `compilation-message' rename (bug#8004).
1879
1880 Move keymap initialization into declaration.
1881 * textmodes/enriched.el (enriched-mode-map):
1882 * textmodes/bib-mode.el (bib-mode-map):
1883 * term/lk201.el (lk201-function-map):
1884 * tar-mode.el (tar-mode-map):
1885 * replace.el (occur-mode-map):
1886 * progmodes/idlwave.el (idlwave-rinfo-mouse-map, idlwave-rinfo-map):
1887 * progmodes/idlw-help.el (idlwave-help-mode-map):
1888 * progmodes/gdb-mi.el (gdb-memory-format-menu, gdb-memory-unit-menu):
1889 * play/solitaire.el (solitaire-mode-map):
1890 * play/snake.el (snake-mode-map, snake-null-map):
1891 * play/pong.el (pong-mode-map):
1892 * play/handwrite.el (menu-bar-handwrite-map):
1893 * play/gametree.el (gametree-mode-map):
1894 * net/rcirc.el (rcirc-mode-map, rcirc-browse-url-map)
1895 (rcirc-multiline-minor-mode-map, rcirc-track-minor-mode-map):
1896 * net/newst-plainview.el (newsticker-menu, newsticker-mode-map)
1897 (newsticker--url-keymap):
1898 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
1899 * menu-bar.el (menu-bar-file-menu, menu-bar-i-search-menu)
1900 (menu-bar-search-menu, menu-bar-replace-menu, menu-bar-goto-menu)
1901 (menu-bar-edit-menu, menu-bar-custom-menu)
1902 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
1903 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
1904 (menu-bar-line-wrapping-menu, menu-bar-options-menu)
1905 (menu-bar-games-menu, menu-bar-encryption-decryption-menu)
1906 (menu-bar-tools-menu, menu-bar-describe-menu)
1907 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
1908 (menu-bar-help-menu):
1909 * mail/rmailsum.el (rmail-summary-mode-map):
1910 * kmacro.el (kmacro-step-edit-map):
1911 * ibuffer.el (ibuffer-mode-groups-popup, ibuffer-mode-map)
1912 (ibuffer-mode-operate-map):
1913 * hi-lock.el (hi-lock-menu, hi-lock-map):
1914 * emulation/vip.el (vip-mode-map):
1915 * emacs-lisp/re-builder.el (reb-lisp-mode-map):
1916 * bookmark.el (bookmark-bmenu-mode-map):
1917 * help-mode.el (help-mode-map): Move initialization into declaration.
1918
1919 2011-02-10 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1920
1921 * net/rcirc.el: Add PRIVMSG and CTCP functions.
1922 (rcirc-send-privmsg, rcirc-send-ctcp): New functions.
1923 (rcirc-keepalive, rcirc-cmd-ctcp, rcirc-ctcp-sender-PING)
1924 (rcirc-cmd-me, rcirc-authenticate): Use them.
1925
1926 2011-02-10 Ken Manheimer <ken.manheimer@gmail.com>
1927
1928 * allout.el: Synopsis: Change allout user configuration so
1929 auto-activation is controlled solely by customization
1930 `allout-auto-activation'.
1931
1932 (allout-auto-activation-helper, allout-setup): New autoloads
1933 implement new custom set procedure for allout-auto-activation.
1934 Also, explicitly invoke (allout-setup) after allout-auto-activation
1935 is custom-defined, to affect the settings in emacs sessions besides
1936 the few where allout-auto-activation customization is done.
1937 (allout-auto-activation): Use allout-auto-activation-helper to
1938 :set. Revise the docstring.
1939 (allout-init): Reduce functionality to just customizing
1940 allout-auto-activation, and mark obsolete.
1941 (allout-mode): Respect string values for allout-auto-activation.
1942 Run allout-after-copy-or-kill-hook without any args.
1943 (allout-mode, allout-layout, allout-default-layout)
1944 (outlineify-sticky): Adjust docstring for new scheme.
1945 (allout-after-copy-or-kill-hook): No arguments - hook implementers
1946 should concentrate on the kill ring.
1947
1948 2011-02-09 Teodor Zlatanov <tzz@lifelogs.com>
1949
1950 * password-cache.el (password-cache-remove): Accept secrets that are
1951 not strings.
1952
1953 2011-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
1954
1955 * progmodes/sh-script.el (sh-font-lock-open-heredoc): Fix case
1956 of here-doc that immediately follows a comment.
1957
1958 2011-02-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1959
1960 * net/rcirc.el (rcirc-ctcp-sender-PING): Simplifying.
1961
1962 * net/rcirc.el (rcirc-cmd-ctcp): Use dedicated function when
1963 available.
1964 (rcirc-ctcp-sender-PING): New function.
1965
1966 2011-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1967
1968 * obsolete/pc-select.el: Rename from emulation/pc-select.el (bug#7940).
1969 Remove the mark/nomark handling, and activate shift-select-mode instead.
1970
1971 * obsolete/pc-mode.el: Rename from emulation/pc-mode.el.
1972
1973 2011-02-07 Jay Belanger <jay.p.belanger@gmail.com>
1974
1975 * calc/calc-units.el (math-logunits-quant): Add support for
1976 non-logarithmic units.
1977
1978 2011-02-07 Ken Manheimer <ken.manheimer@gmail.com>
1979
1980 * allout.el (allout-after-copy-or-kill-hook): New hook for
1981 extension-specific processing of killed text.
1982 (allout-mode): Include new allout-after-copy-or-kill-hook among
1983 mentioned hooks.
1984 (allout-kill-line, allout-kill-topic): Ensure that processing
1985 after kill happens even if barf-if-buffer-read-only is raised.
1986 Include new allout-after-copy-or-kill-hook among that subsequent
1987 processing.
1988 (allout-deannotate-hidden): Actually remove the annotation text
1989 properties.
1990
1991 * allout.el (allout-listify-exposed): Copy text sans text properties.
1992
1993 2011-02-07 Michael Albinus <michael.albinus@gmx.de>
1994
1995 * net/dbus.el (dbus-list-activatable-names): Add optional argument BUS.
1996
1997 2011-02-07 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1998
1999 * net/rcirc.el (rcirc-handler-317): New function (Bug#6507).
2000
2001 2011-02-06 Jay Belanger <jay.p.belanger@gmail.com>
2002
2003 * calc/calc.el (calc-logunits-field-reference): Rename from
2004 `calc-default-field-reference-level'.
2005 (calc-logunits-power-reference): Rename from
2006 `calc-default-power-reference-level'.
2007
2008 * calc/calc-units.el (math-logunits-quant): Rename from
2009 `math-logunits-level'
2010 (math-logunits-plus): Rename from math-logcombine.
2011 (calcFunc-luplus, calcFunc-luminus calc-luplus, calc-luminus): Remove.
2012 (calcFunc-lufieldadd, calcFunc-lupoweradd, calcFunc-lufieldsub)
2013 (calcFunc-lufieldsub, calc-logunits-add, calc-logunits-sub):
2014 New functions.
2015 (calcFunc-fieldquant): Rename from `calcFunc-fieldlevel'.
2016 (calcFunc-powerquant): Rename from `calcFunc-powerlevel'.
2017 (calc-logunits-quantity): Rename from `calc-level'.
2018 (calcFunc-dbfieldlevel, calcFunc-dbpowerlevel, calcFunc-npfieldlevel)
2019 (calcFunc-nppowerlevel, calc-logunits-dblevel, calc-logunits-nplevel)
2020 (math-logunits-mul, calcFunc-lufieldmul, calcFunc-lupowermul)
2021 (calc-logunits-mul, math-logunits-divide, calcFunc-lufielddiv)
2022 (calcFunc-lupowerdiv, calc-logunits-divide, math-logunits-level):
2023 New functions.
2024
2025 * calc/calc-help.el (calc-u-prefix-help): Remove "L" reference.
2026 (calc-ul-prefix-help): Remove.
2027 (calc-l-prefix-help): New function.
2028 (calc-full-help): Add reference to `calc-l-prefix-help'.
2029
2030 * calc/calc-ext.el (calc-init-extensions): Update autoloads.
2031
2032 * calc/README: Mention logarithmic units.
2033
2034 2011-02-06 Chong Yidong <cyd@stupidchicken.com>
2035
2036 * mail/emacsbug.el (report-emacs-bug-hook): Remove the check for
2037 non-ASCII characters (Bug#7925).
2038
2039 2011-02-05 Glenn Morris <rgm@gnu.org>
2040
2041 * emacs-lisp/cl-macs.el (return-from): Fix doc typo.
2042
2043 * calendar/diary-lib.el (diary-font-lock-keywords):
2044 Tweak diary-time-regexp match. (Bug#7891)
2045
2046 * progmodes/f90.el (f90-find-tag-default): New function. (Bug#7919)
2047 (f90-mode): Use it for mode's `find-tag-default-function' property.
2048
2049 * ibuf-ext.el (ibuffer-filter-disable): Make it work. (Bug#7969)
2050
2051 * faces.el (set-face-attribute): Doc fix. (Bug#2659)
2052
2053 2011-02-05 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2054
2055 * net/rcirc.el (rcirc-handler-JOIN): Reset mode-line-process
2056 (Bug#6386).
2057
2058 2011-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
2059
2060 * progmodes/sh-script.el (sh-here-doc-open-re): Don't rely on the
2061 font-lock-syntax-table remappings.
2062 (sh-here-doc-markers, sh-here-doc-re): Remove.
2063 (sh-font-lock-close-heredoc): Remove.
2064 (sh-syntax-propertize-here-doc): New function.
2065 (sh-font-lock-open-heredoc): Set the sh-here-doc-marker property
2066 instead of the sh-here-doc-re.
2067 (sh-font-lock-paren): Don't do anything in comments or strings.
2068 Handle line continuations. Accept a few more chars.
2069 Don't rely on the font-lock-syntax-table remappings.
2070 `esac' is not a valid pattern.
2071 (sh-syntax-propertize-function): Handle here-docs differently, so we
2072 don't bother syntax-propertizing the insides.
2073
2074 * progmodes/sh-script.el (sh-font-lock-paren, sh-kw, sh-prev-thing):
2075 Handle new bashisms ";&" and ";;&" (bug#7947).
2076
2077 2011-02-05 Michael Albinus <michael.albinus@gmx.de>
2078
2079 * net/tramp-smb.el (tramp-smb-errors): Use `regexp-opt'.
2080 Add "NT_STATUS_IO_TIMEOUT" and "NT_STATUS_NO_SUCH_USER".
2081
2082 2011-02-05 Era Eriksson <era+tramp@iki.fi> (tiny change)
2083
2084 * net/tramp.el (tramp-postfix-method-format)
2085 (tramp-postfix-method-regexp, tramp-prefix-domain-format)
2086 (tramp-prefix-domain-regexp, tramp-postfix-user-format)
2087 (tramp-postfix-user-regexp, tramp-prefix-port-format)
2088 (tramp-prefix-port-regexp, tramp-postfix-host-format)
2089 (tramp-postfix-host-regexp, tramp-handle-substitute-in-file-name):
2090 Doc fix.
2091
2092 2011-02-04 Sam Steingold <sds@gnu.org>
2093
2094 * mouse.el (mouse-buffer-menu-mode-groups): Add a "GDB" group.
2095
2096 2011-02-04 Andreas Schwab <schwab@linux-m68k.org>
2097
2098 * international/mule-util.el (with-coding-priority): Doc fix.
2099
2100 2011-02-04 Eli Zaretskii <eliz@gnu.org>
2101
2102 * arc-mode.el (archive-mode-map): Fix a typo in last change.
2103
2104 2011-02-03 Sam Steingold <sds@gnu.org>
2105
2106 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
2107 Do not error out when `func' is nil.
2108
2109 2011-02-03 Michael Albinus <michael.albinus@gmx.de>
2110
2111 * net/tramp-sh.el (tramp-remote-path): Add default settings for
2112 `tramp-default-remote-path' to the docstring.
2113 (tramp-get-remote-path): Suppress error message when `getconf
2114 PATH' fails.
2115
2116 * net/tramp-smb.el (tramp-smb-errors): Add "NT_STATUS_UNSUCCESSFUL".
2117
2118 2011-02-03 Glenn Morris <rgm@gnu.org>
2119
2120 * vc/vc-hg.el (vc-hg-command): Doc fix.
2121
2122 * term/w32-win.el (libpng-version): Declare for compiler.
2123
2124 * msb.el: No need to load dired while compiling.
2125
2126 * emacs-lisp/elint.el (elint-standard-variables):
2127 Remove a couple of built-ins that now have doc-strings.
2128
2129 * hi-lock.el, ps-bdf.el, ps-mule.el, ps-print.el, ps-samp.el:
2130 `require' is automatically `eval-and-compile'd.
2131
2132 * net/rcirc.el (rcirc-nick-completion-format): Add :version tag.
2133 (rcirc-log-directory, rcirc-log-flag): Move definitions before use.
2134
2135 * strokes.el (strokes-fill-current-buffer-with-whitespace):
2136 Move definition before use.
2137 (strokes-report-bug): Make it obsolete.
2138
2139 2011-02-02 Sam Steingold <sds@gnu.org>
2140
2141 * apropos.el (apropos-print): Now that `apropos-mode' inherits
2142 from `special-mode', entering it makes the buffer read-only, so
2143 call it only when everything has been already inserted.
2144 * emacs-lisp/ert.el (ert--setup-results-buffer)
2145 (ert-results-pop-to-backtrace-for-test-at-point)
2146 (ert-results-pop-to-messages-for-test-at-point)
2147 (ert-results-pop-to-timings): Ditto.
2148 * emacs-lisp/package.el (package--list-packages): Ditto.
2149 * play/solitaire.el (solitaire): Ditto.
2150
2151 2011-02-02 Chong Yidong <cyd@stupidchicken.com>
2152
2153 * progmodes/compile.el: Make all faces inherit.
2154 (compilation-warning): Inherit from font-lock-variable-name-face.
2155 (compilation-info): Inherit from font-lock-type-face.
2156 (compilation-line-number): Reassign to font-lock-keyword-face.
2157 (compilation-column-number): Reassign to font-lock-doc-face.
2158 (compilation-leave-directory-face): Reassign to
2159 font-lock-builtin-face.
2160
2161 2011-02-02 Eli Zaretskii <eliz@gnu.org>
2162
2163 * dired.el (dired-insert-directory): Don't invoke `ls' when
2164 ls-lisp.el is used to emulate it.
2165
2166 2011-02-01 Julien Danjou <julien@danjou.info>
2167
2168 * color.el (color-gradient): Add a color-gradient function.
2169
2170 2011-02-01 Sam Steingold <sds@gnu.org>
2171
2172 * simple.el (special-mode-map): Bind "h" to `describe-mode';
2173 bind "z" to `kill-this-buffer'.
2174 (completion-list-mode-map): Bind "z" to `kill-this-buffer'.
2175 * apropos.el (apropos-mode-map): Inherit from `special-mode-map'.
2176 (apropos-mode): Inherit from `special-mode'.
2177 * arc-mode.el (archive-mode-map): Inherit from `special-mode-map'.
2178 * bookmark.el (bookmark-bmenu-mode): Define using
2179 `define-derived-mode' inheriting from `special-mode'.
2180 * dired.el (dired-mode-map): Inherit from `special-mode-map'.
2181 * image-mode.el (image-mode-map): Ditto.
2182 * replace.el (occur-mode): Define using
2183 `define-derived-mode' inheriting from `special-mode'.
2184 * tar-mode.el (tar-mode): Inherit from `special-mode'.
2185 * calendar/diary-lib.el (diary-fancy-display-mode):
2186 Inherit from `special-mode-map'.
2187 * emacs-lisp/ert.el (ert-simple-view-mode, ert-results-mode):
2188 Inherit from `special-mode'.
2189 * emacs-lisp/package.el (package-menu-mode-map): Copy from
2190 `special-mode-map'.
2191 (package-menu-mode): Define using `define-derived-mode'
2192 inheriting from `special-mode'.
2193 * erc/erc-list.el (erc-list-menu-mode): Inherit from `special-mode'.
2194 * net/xesam.el (xesam-mode): Inherit from `special-mode'.
2195 (xesam-mode-map): Define separately.
2196 * play/solitaire.el (solitaire-mode): Inherit from `special-mode'.
2197 * progmodes/compile.el (compilation-minor-mode-map)
2198 (compilation-mode-map): Inherit from `special-mode-map'.
2199 * vc/diff-mode.el (diff-mode-shared-map):
2200 Inherit from `special-mode-map'.
2201 * vc/log-view.el (log-view-mode-map): Add a comment.
2202
2203 2011-02-01 Chong Yidong <cyd@stupidchicken.com>
2204
2205 * custom.el (load-theme): Define return value. Drop use of
2206 unsafep; call custom-theme-load-confirm for non-known-safe themes.
2207 (custom-theme-load-confirm): Scroll in the correct window.
2208 (custom-enabled-themes): Add custom-safe-themes to :set-after.
2209
2210 * cus-theme.el (custom-theme-checkbox-toggle): Don't activate the
2211 checkbox if load-theme fails.
2212
2213 2011-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
2214
2215 * progmodes/compile.el (compilation-next-error): Check there's
2216 a message before using it (bug#7941).
2217
2218 2011-02-01 Jay Belanger <jay.p.belanger@gmail.com>
2219
2220 * calc/calc-mtx.el (math-lud-pivot-check): New function.
2221 (math-do-matrix-lud): Use `math-lud-pivot-check' to check the size
2222 of potential pivots.
2223
2224 2011-01-31 Alan Mackenzie <acm@muc.de>
2225
2226 * progmodes/cc-cmds.el (c-forward-over-illiterals):
2227 Continue parsing if we encounter a naked # (Bug#7595).
2228 (c-beginning-of-statement): Avoid loop in locating the beginning
2229 of a macro. (Not actually committed until 2011-02-20, see above).
2230
2231 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
2232
2233 * files.el (copy-directory): Fix arguments to recursive call.
2234
2235 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
2236
2237 * files.el (copy-directory): If destination is an existing
2238 directory, copy into a subdirectory there.
2239
2240 2011-01-31 Andreas Schwab <schwab@linux-m68k.org>
2241
2242 * emacs-lisp/shadow.el (load-path-shadows-find): Ignore leim-list
2243 files.
2244
2245 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
2246
2247 * image-dired.el (image-dired-mouse-display-image): No-op if no
2248 file is found (Bug#7817).
2249
2250 * mouse.el (mouse-menu-non-singleton): Doc fix (Bug#7801).
2251
2252 2011-01-31 Kenichi Handa <handa@m17n.org>
2253
2254 * international/quail.el (quail-keyboard-layout-alist):
2255 Remove superfluous SPC for "pc105-uk" (bug#7927).
2256
2257 2011-01-31 Glenn Morris <rgm@gnu.org>
2258
2259 * msb.el (msb-menu-bar-update-buffers): Update for changed
2260 argument handling of menu-bar-select-frame. (Bug#7902)
2261
2262 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
2263
2264 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Set a limit
2265 to the recursion depth (Bug#7722).
2266
2267 2011-01-31 Roy Liu <carsomyr@gmail.com> (tiny change)
2268
2269 * term/ns-win.el (ns-find-file): Expand ns-input-file with
2270 command-line-default-directory (Bug#7872).
2271
2272 2011-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
2273
2274 * progmodes/compile.el (compilation--flush-directory-cache):
2275 New function, extracted from compilation--remove-properties.
2276 (compilation--remove-properties, compilation--parse-region): Use it.
2277 (compilation--previous-directory): Handle one more case.
2278 (compilation-enable-debug-messages): Remove.
2279 (compilation-parse-errors, compilation--flush-parse): Just remove the
2280 left over debug messages.
2281
2282 2011-01-31 Sam Steingold <sds@gnu.org>
2283
2284 * progmodes/compile.el (compilation-enable-debug-messages):
2285 Add a variable to make the parsing messages introduced in
2286 2011-01-28T22:12:05Z!monnier@iro.umontreal.ca optional.
2287 (compilation-parse-errors, compilation--flush-parse): Use it.
2288
2289 2011-01-31 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2290
2291 * net/rcirc.el: New customizable nick completion format. (Bug#6314)
2292 (rcirc-nick-completion-format): New defcustom.
2293 (rcirc-complete): Use it.
2294
2295 2011-01-31 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2296
2297 * net/rcirc.el: Clean log filenames (Bug#7933).
2298 (rcirc-log-write): Use convert-standard-filename.
2299 (rcirc-log-filename-function): Documentation updates.
2300
2301 2011-01-30 Jan Djärv <jan.h.d@swipnet.se>
2302
2303 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer):
2304 Check report-emacs-bug-can-use-osx-open and use that if t.
2305 (report-emacs-bug-can-use-osx-open): New function.
2306 (report-emacs-bug): Rename can-xdg-email to can-insert-mail.
2307 Check report-emacs-bug-can-use-osx-open also for can-insert-mail.
2308
2309 2011-01-29 Chong Yidong <cyd@stupidchicken.com>
2310
2311 * vc/vc-dispatcher.el (vc-set-async-update): New function for
2312 updating Dired or VC-dir buffers after async command completes.
2313
2314 * vc/vc-bzr.el (vc-bzr-async-command): Return the process buffer.
2315 (vc-bzr-pull, vc-bzr-merge-branch): Use vc-set-async-update.
2316
2317 * vc/vc-git.el (vc-git-merge-branch): Add FETCH_HEAD to branch
2318 completions if it exists. Use vc-set-async-update.
2319 (vc-git-pull): Use vc-set-async-update.
2320
2321 * vc/vc-hg.el (vc-hg-pull): Fix default-contents arg to
2322 read-shell-command. Use vc-set-async-update.
2323 (vc-hg-merge-branch): Use vc-set-async-update.
2324
2325 2011-01-29 Daiki Ueno <ueno@unixuser.org>
2326
2327 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED):
2328 Don't presume KEYEXPIRED and KEYREVOKED to be a fatal error status
2329 (Bug#7931).
2330
2331 2011-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
2332
2333 * progmodes/compile.el: Avoid an N² behavior in grep.
2334 (compilation--previous-directory): New fun.
2335 (compilation--previous-directory-cache): New var.
2336 (compilation--remove-properties): Flush it.
2337 (compilation-directory-properties, compilation-error-properties):
2338 Use the new fun to speed up looking for the current directory.
2339
2340 2011-01-29 Chong Yidong <cyd@stupidchicken.com>
2341
2342 * vc/vc-hg.el (vc-hg-history): New var.
2343 (vc-hg-pull): Perform default pull if called via Lisp by vc-pull.
2344 (vc-hg-merge-branch): New function.
2345
2346 * vc/vc.el (vc-pull): Make vc-update an alias for this, instead of
2347 the other way around.
2348
2349 * vc/vc-git.el (vc-git-branches, vc-git-pull)
2350 (vc-git-merge-branch): New functions.
2351 (vc-git-history): New var.
2352
2353 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
2354
2355 * vc/vc-dispatcher.el (vc-do-async-command): New function.
2356
2357 * vc/vc-bzr.el (vc-bzr-async-command): Convert into a wrapper for
2358 vc-do-async-command.
2359
2360 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch):
2361 Callers changed.
2362
2363 2011-01-28 Leo <sdl.web@gmail.com>
2364
2365 * emacs-lisp/advice.el (ad-make-advised-docstring): Don't apply
2366 highlighting to the "this function is advised" message.
2367
2368 * help-mode.el (help-mode-finish): Apply highlighting here, to
2369 avoid clobbering by substitute-command-keys (Bug#6304).
2370
2371 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
2372
2373 * woman.el (woman0-roff-buffer): Process roff escape sequences
2374 occurring prior to the first request (Bug#7843).
2375
2376 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2377
2378 * progmodes/compile.el: Don't use font-lock any more.
2379 (compilation-error-regexp-alist-alist): Change handling of makepp
2380 so it preserves the warning/error distinction on subsequent files.
2381 Simplify various rules.
2382 (compilation-directory-properties): Use font-lock-face.
2383 Add a compilation-message property.
2384 (compilation-internal-error-properties): Use font-lock-face.
2385 Don't set the compilation-debug property here.
2386 (compilation--put-prop, compilation--remove-properties)
2387 (compilation--parse-region, compilation--ensure-parse)
2388 (compilation--ensure-parse): New functions.
2389 (compilation-parse-errors): New function, largely inspired of
2390 compilation-mode-font-lock-keywords. Set compilation-debug here.
2391 (compilation--parsed): New var.
2392 (compilation--flush-parse): Use compilation--ensure-parse.
2393 (compilation-start): Don't call font-lock.
2394 (compilation-turn-on-font-lock): Remove.
2395 (compilation-setup): Don't set font-lock-extra-managed-props not change
2396 other font-lock settings, other than keywords.
2397 Don't activate font-lock-mode.
2398 Set change-major-mode-hook and before-change-functions.
2399 (compilation--unsetup): Remove properties and hooks.
2400 (compilation-next-single-property-change): New function.
2401 (compilation-next-error): Use it to parse when needed.
2402 (compile-goto-error): Parse buffer as needed.
2403 (compilation--compat-error-properties): Don't need a dummy `face'
2404 property any more.
2405
2406 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2407
2408 * progmodes/compile.el: Use accessors for clarity and fix omake hack.
2409 (compilation-process-setup-function): Fix docstring's false promises.
2410 (compilation-error-regexp-alist-alist): Catch omake's continuous
2411 recompilation message and avoid reuse of old markers.
2412 (compilation-parse-errors-function): Declare obsolete.
2413 (compilation-buffer-modtime): Remove.
2414 (compilation--make-cdrloc, compilation--loc->col)
2415 (compilation--loc->line, compilation--loc->file-struct)
2416 (compilation--loc->marker, compilation--loc->visited)
2417 (compilation--make-file-struct, compilation--file-struct->file-spec)
2418 (compilation--file-struct->formats)
2419 (compilation--file-struct->loc-tree): New macros. Use them.
2420 (compilation--message): New defstruct. Use them.
2421 (compilation-next-error-function): Don't mess with timestamps to try
2422 and guess when to reparse.
2423
2424 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2425
2426 * textmodes/tex-mode.el: Get rid of compilation-parse-errors-function
2427 (tex-old-error-file-name): New function,
2428 extracted from tex-compilation-parse-errors.
2429 (tex-compilation-parse-errors): Remove.
2430 (tex-error-regexp-alist): New var.
2431 (tex-shell): Use it to avoid compilation-parse-errors-function.
2432
2433 * progmodes/grep.el (grep-regexp-alist): Tighten regexp.
2434 (grep-mode-font-lock-keywords): Remove regexp that seems like
2435 a left-over from before we used compile.el.
2436 (grep-mode-font-lock-keywords): Call syntax-ppss-flush-cache when
2437 modifying the buffer within with-silent-modifications.
2438
2439 * progmodes/compile.el: Cleanup text-properties namespace by using
2440 `compilation-message' instead of `message', `compilation-directory'
2441 instead of `directory', and `compilation-debug' instead of `debug'.
2442 (compilation-last-buffer, compilation-parsing-end)
2443 (compilation-error-list, compilation-old-error-list): Move to the
2444 compatibility part of the code.
2445 (compilation-error-properties): If `file' is a function, let it return
2446 a file name.
2447 (compilation-mode-font-lock-keywords): Be more conservative with the
2448 omake "^ *" pattern prefix, to try and minimize the risk of
2449 pathologically slow regexp matching.
2450 (compilation-start): Use inhibit-read-only.
2451 (compilation--unsetup): New function.
2452 (compilation-shell-minor-mode, compilation-minor-mode): Use it.
2453 (compilation-filter): Minor tweaks.
2454 (compilation-next-error-function): Try and avoid abusing variables.
2455 (compilation--flush-file-structure): New fun.
2456 (compilation-fake-loc): Use it to improve behavior when file is reused.
2457 (debug-ignored-errors): Add "Moved past last ...".
2458 (compilation--compat-error-properties)
2459 (compilation--compat-parse-errors): Rename by doubling the "-".
2460
2461 Port features from the previous prolog.el to the new one.
2462 * progmodes/prolog.el (prolog-system): Add GNU and ECLiPSe options.
2463 (prolog-program-name, prolog-program-switches, prolog-consult-string)
2464 (prolog-compile-string, prolog-prompt-regexp): Get rid of the <foo>-i
2465 variable and use a function to compute the value dynamically.
2466 (prolog-prompt-regexp): Add regexp for GNU Prolog.
2467 (prolog-continued-prompt-regexp): Remove, unused.
2468 (prolog-find-value-by-system): Try and use the value of prolog-system
2469 in the *prolog* buffer if it helps.
2470 (prolog-mode-keybindings-common): Bind C-c C-z unconditionally...
2471 (prolog-zip-on): ..and check prolog-system and version here instead.
2472 (prolog-inferior-self-insert-command): New command.
2473 (prolog-inferior-mode-map): Use it.
2474 (prolog-inferior-error-regexp-alist): New var.
2475 (prolog-inferior-mode): Use it, with compilation-shell-minor-mode.
2476 (prolog-input-filter): Use derived-mode-p.
2477 (prolog-inferior-guess-flavor): New function.
2478 (prolog-ensure-process): Use it. Use make-comint-in-buffer rather than
2479 make-comint to avoid running comint-mode twice.
2480 (prolog-inferior-buffer): New fun.
2481 (prolog-old-process-region, prolog-old-process-file):
2482 Don't call prolog-bsts here...
2483 (prolog-build-prolog-command): ...do it here instead.
2484 (prolog-old-process-region, prolog-old-process-file):
2485 Use compilation-fake-loc and compilation-forget-errors.
2486 (prolog-consult-compile-region): Use bolp.
2487
2488 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
2489
2490 * image-mode.el (image-display-size): Doc fix (Bug#7820).
2491
2492 2011-01-27 Sam Steingold <sds@gnu.org>
2493
2494 * midnight.el (clean-buffer-list-kill-never-buffer-names):
2495 Remove "*server*" which is never created by emacs server.
2496
2497 2011-01-27 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2498
2499 * vc/vc-bzr.el (vc-bzr-diff): Don't pass --diff-options unless
2500 there are some diff switches.
2501
2502 2011-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
2503
2504 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
2505 Copy change made to ruby-font-lock-syntactic-keywords.
2506
2507 * htmlfontify.el: Make it obey the font-lock-face text property.
2508 Miscellaneous cleanup such as:
2509 - Don't hide expressions after a closing paren.
2510 - Move initial setq into let.
2511 - Hoist common parts out of ifs.
2512 (hfy-p-to-face, hfy-p-to-face-lennart): Remove.
2513 (hfy-face-at): Use get-text-property instead.
2514 (hfy-prop-invisible-p): Use invisible-p if available.
2515 (htmlfontify-manual): Use \\[...].
2516 (hfy-html-quote-regex): Use [...].
2517 (hfy-combined-face-spec): Simplify.
2518 (hfy-compile-face-map): Don't presume point-min==1.
2519 (hfy-css-name, hfy-buffer, htmlfontify-buffer): Use \' rather than $ to
2520 match end of string.
2521 (hfy-text-p): η-reduce.
2522 (hfy-tags-for-file): Receive cache-hash directly.
2523 (hfy-mark-tag-names): Adjust call.
2524
2525 2011-01-27 Glenn Morris <rgm@gnu.org>
2526
2527 * msb.el (msb-after-load-hooks): Make it an obsolete alias.
2528 (msb-after-load-hook): Remove eval-after-load wackiness.
2529
2530 2011-01-25 Sam Steingold <sds@gnu.org>
2531
2532 * vc/vc-svn.el (vc-svn-diff): Use `diff-command' instead of the
2533 literal "diff" (important for windows-nt).
2534
2535 2011-01-25 Glenn Morris <rgm@gnu.org>
2536
2537 * emacs-lisp/copyright.el (copyright-at-end-flag)
2538 (copyright-names-regexp): Add safety properties.
2539 (copyright-year-ranges): New option.
2540 (copyright-find-end): New function, split from copyright-update-year.
2541 (copyright-update-year): Use copyright-find-end.
2542 (copyright-fix-years): Optionally, convert years to ranges.
2543 Handle years continued over comment lines.
2544 Do not mess with the fill-prefix.
2545 Do not call copyright-update.
2546 (copyright-update-directory): Optionally, fix years rather than update.
2547 Skip directories. Find files with only safe local vars.
2548
2549 2011-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
2550
2551 * files.el (file-name-non-special): Only change buffer-file-name after
2552 insert-file-contents if it's `visit'ing the file (bug#7854).
2553
2554 2011-01-25 Chong Yidong <cyd@stupidchicken.com>
2555
2556 * dired.el (dired-revert): Doc fix (Bug#7758).
2557
2558 * simple.el (line-move-visual): Doc fix (Bug#7594).
2559
2560 2011-01-25 Nobuyoshi Nakada <nobu@ruby-lang.org>
2561
2562 * progmodes/ruby-mode.el (ruby-here-doc-beg-match): Fix for
2563 here-doc which ends with an underscore.
2564 (ruby-mode-set-encoding): Skip shebang line always.
2565 (ruby-mode-map): Bind C-c C-c to comment-region.
2566 (ruby-font-lock-keywords): Highlight literal hash key labels as symbols.
2567 (ruby-forward-sexp): Stop after literal hash key labels.
2568 (ruby-font-lock-syntactic-keywords): Highlight regexp after open
2569 bracket.
2570
2571 2011-01-25 Keitaro Miyazaki <keitaro.miyazaki@gmail.com> (tiny change)
2572
2573 * emacs-lisp/re-builder.el (reb-mode-map): Set case-fold-search in
2574 the correct buffer (Bug#7650).
2575
2576 2011-01-25 Glenn Morris <rgm@gnu.org>
2577
2578 * comint.el (comint-mode): Doc fix. (Bug#7897)
2579
2580 * simple.el (do-auto-fill): Give it a doc string.
2581
2582 * button.el (make-text-button): Doc fix. (See bug#7881)
2583
2584 2011-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
2585
2586 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
2587 Don't move backward, so as not to fall in an inf-loop (bug#7736).
2588
2589 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): (bug#7735)
2590 Handle ?" and friends differently (e.g. don't use backrefs).
2591
2592 2011-01-24 Jay Belanger <jay.p.belanger@gmail.com>
2593
2594 * calc/calc.el (calc-default-power-reference-level)
2595 (calc-default-field-reference-level): New variables.
2596 * calc/calc-units.el (math-standard-units): Add dB and Np.
2597 (math-logunits): New variable.
2598 (math-extract-logunits, math-logcombine, calcFunc-luplus)
2599 (calcFunc-luminus, calc-luplus, calc-luminus, math-logunit-level)
2600 (calcFunc-fieldlevel, calcFunc-powerlevel, calc-level):
2601 New functions.
2602 (math-find-base-units-rec): Add entry for ln(10).
2603 * calc/calc-help.el (calc-u-prefix-help): Add logarithmic help.
2604 (calc-ul-prefix-help): New function.
2605 * calc/calc-ext.el (calc-init-extensions): Autoload new units
2606 functions. Add keybindings for new units functions.
2607
2608 2011-01-22 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
2609
2610 * net/rcirc.el (rcirc-kill-buffer-hook): Flush logs when killing
2611 rcirc buffers. (Bug#4940)
2612
2613 2011-01-22 Glenn Morris <rgm@gnu.org>
2614
2615 * emacs-lisp/copyright.el (copyright-find-copyright): New function,
2616 split out from copyright-update-year.
2617 (copyright-update): Don't mess with the GPL version if we don't own the
2618 copyright. Update license regexp, and remove no longer needed
2619 Esperanto stuff.
2620 (copyright-fix-years): Use copyright-find-copyright.
2621
2622 2011-01-22 Chong Yidong <cyd@stupidchicken.com>
2623
2624 * vc/diff.el (diff-sentinel): Doc fix (Bug#7682).
2625
2626 2011-01-22 Jari Aalto <jari.aalto@cante.net>
2627
2628 * play/landmark.el: Change `lm-' prefix to `landmark-' (Bug#7672).
2629 (lm): Rename to landmark.
2630 (lm-test-run): Rename to landmark-test-run.
2631
2632 2011-01-22 Chong Yidong <cyd@stupidchicken.com>
2633
2634 * emacs-lisp/re-builder.el (reb-mode-map): Fix logic error in
2635 "Case sensitive" menu item.
2636
2637 2011-01-22 Roland McGrath <roland@frob.com>
2638
2639 * comint.el (comint-replace-by-expanded-history-before-point): Fix
2640 expansion of !$ and !!:N syntax to pick the indicated word (bug#7883).
2641
2642 2011-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
2643
2644 * progmodes/js.el (js--regexp-literal): Count backslashes (bug#7882).
2645
2646 2011-01-22 Jari Aalto <jari.aalto@cante.net>
2647
2648 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2649 Assume foo(bar) is a manpage reference rather than some unquoted
2650 symbol (bug#7705).
2651
2652 2011-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
2653
2654 * subr.el (shell-quote-argument): Properly quote \n (bug#7687).
2655 Suggested by Flo <sensorflo@gmail.com>.
2656
2657 2011-01-22 Glenn Morris <rgm@gnu.org>
2658
2659 * progmodes/compile.el (compilation-error-regexp-alist):
2660 Fix custom type. (Bug#7812)
2661
2662 2011-01-22 Ken Manheimer <ken.manheimer@gmail.com>
2663
2664 * allout.el (allout-prefixed-keybindings): Bind (prefixed) '#' to
2665 allout-number-siblings, in keeping with what obtained due to
2666 (now-defunct) allout-keybindings-list. Ditch repeat binding to
2667 (prefixed) ?i.
2668 (allout-before-change-handler): Better expose spots affected by
2669 undo.
2670
2671 2011-01-22 Chong Yidong <cyd@stupidchicken.com>
2672
2673 * man.el (Man-highlight-references0): Use make-button (Bug#7881).
2674
2675 2011-01-22 Phil Hagelberg <phil@evri.com>
2676
2677 * pcmpl-unix.el (pcmpl-ssh-config-file): New option.
2678 (pcmpl-ssh-known-hosts): Rename from pcmpl-ssh-hosts.
2679 (pcmpl-ssh-config-hosts): New function.
2680 (pcmpl-ssh-hosts): Use pcmpl-ssh-config-hosts in addition to
2681 pcmpl-ssh-known-hosts.
2682
2683 2011-01-21 Jay Belanger <jay.p.belanger@gmail.com>
2684
2685 * calc/calc-undo.el (calc-undo): Autoload it.
2686 * calc/calc-ext.el (calc-init-extensions): Remove keybindings
2687 and autoload for `calc-undo'.
2688 * calc/calc.el (calc-mode-map): Add keybindings for `calc-undo'.
2689 * calc/calc-prog.el:
2690 * calc/calc-graph.el:
2691 * calc/calc-map.el: Change `arglist' to `math-arglist' throughout.
2692
2693 2011-01-21 Štěpán Němec <stepnem@gmail.com> (tiny change)
2694
2695 * calc/calc-ext.el (calc-init-extensions): Map all `undo'
2696 keybindings to `calc-undo'.
2697
2698 2011-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
2699
2700 Don't mess with *temp*.
2701 * obsolete/spell.el: Move from textmodes/spell.el.
2702 (spell-string):
2703 * term.el (term-read-input-ring):
2704 * startup.el (display-startup-echo-area-message):
2705 * progmodes/antlr-mode.el (antlr-directory-dependencies):
2706 * comint.el (comint-read-input-ring): Use with-temp-buffer.
2707 * international/mule.el (ctext-pre-write-conversion): Don't hardcode
2708 point-min==1.
2709
2710 2011-01-20 Ken Manheimer <ken.manheimer@gmail.com>
2711
2712 * allout.el (allout-institute-keymap): Use fset instead of
2713 reapplying defalias.
2714
2715 (allout-hotspot-key-handler): Check for non-control-modified
2716 bindings for hotspot characters if there are no control-modified
2717 versions.
2718
2719 * allout.el: Summary - migrate to defining allout mode using
2720 define-minor-mode instead of defun. Significantly clean-up
2721 internal keymap provisions, refactoring and, in the process,
2722 removing a lot of accumulated cruft.
2723
2724 allout-mode-map is now a keymap by virtue of being a defalias to
2725 allout-mode-map-value, which contains the actual keymap structure.
2726
2727 (allout-mode): Use define-minor-mode rather than defun.
2728 Remove now-unnecessary minor-mode setup activities from the body.
2729 Specify :keymap as allout-mode-map so the minor-mode-map-alist
2730 entry will be '(allout-mode . allout-mode-map) - see
2731 allout-mode-map-value, below. Adjust docstring to track changes.
2732 (allout-minor-mode): Remove this defalias, now that we're using
2733 define-minor-mode.
2734 (allout-mode-map): Set value to be 'allout-mode-map. The actual
2735 keymap is allout-mode-map-value, via defalias.
2736 (allout-mode-map-value): The variable holding the actual mode
2737 keymap structure, by virtue of defalias from allout-mode-map.
2738 (allout-compose-and-institute-keymap): Rename from
2739 allout-bind-keys, and including the binding-composition
2740 functionality of the former produce-allout-mode-map and
2741 allout-setup-mode-map.
2742 (allout-institute-keymap): Take over the "setup" part of the former
2743 allout-setup-mode-map. Reassign allout-mode-map-value value and
2744 update the defalias.
2745 (allout-command-prefix, allout-prefixed-keybindings)
2746 (allout-unprefixed-keybindings):
2747 Use allout-compose-and-institute-keymap to process the bindings.
2748 (allout-unprefixed-keybindings): Remove extraneous '?' question marks.
2749 (allout-prefixed-keybindings): Elide binding to (prefixed) \C-h -
2750 user can customize if they want to use that binding.
2751 Bind allout-copy-topic-as-kill to (prefixed) \M-k.
2752 Bind allout-up-current-level to (prefixed) \C-u. (I think i mistakenly
2753 elided that, previously, instead of the one for \C-h.)
2754 (allout-hotspot-key-handler): Remove attempt to resolve the key
2755 through the literal key-string lookup on allout-keybindings-list.
2756 That probably hasn't worked for a Long Time, and removal of
2757 allout-keybindings-list further simplifies the keybindings situation.
2758 (allout-pre-command-business): Use allout-mode-map-value instead
2759 of allout-mode-map.
2760 (allout-preempt-trailing-ctrl-h): Remove. The user can customize
2761 the bindings if they want to use a keybinding having a trailing
2762 \C-h. No deprecation needed since this feature was never in a release.
2763 (allout-keybindings-list): Remove. It's not been useful for a
2764 while. (See allout-hotspot-key-handler changes, above.)
2765 (produce-allout-mode-map): Remove. Consolidate into
2766 allout-compose-and-institute-keymap.
2767 (allout-mode-map-adjustments): Remove. No longer necessary with
2768 removal of allout-preempt-trailing-ctrl-h.
2769 (allout-setup-mode-map): Remove. Consolidate into
2770 allout-compose-and-institute-keymap and allout-institute-keymap.
2771
2772 2011-01-20 Glenn Morris <rgm@gnu.org>
2773
2774 * vc/vc-svn.el (vc-svn-after-dir-status): Tweak previous change.
2775
2776 * simple.el (read-expression-history): Remove, it's in minibuf.c.
2777
2778 2011-01-20 Chong Yidong <cyd@stupidchicken.com>
2779
2780 * subr.el (y-or-n-p): Revert 2011-01-07 change, removing ARGS.
2781
2782 * files.el (find-alternate-file, basic-save-buffer)
2783 (basic-save-buffer-2, revert-buffer, recover-file)
2784 (kill-buffer-ask, abort-if-file-too-large)
2785 (set-visited-file-name, write-file, backup-buffer)
2786 (basic-save-buffer, save-some-buffers):
2787 * dired-aux.el (dired-compress-file): Callers changed.
2788
2789 2011-01-19 Glenn Morris <rgm@gnu.org>
2790
2791 * vc/vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
2792 Also check the property status. (Bug#7861)
2793
2794 2011-01-18 Michael Albinus <michael.albinus@gmx.de>
2795
2796 * net/tramp.el (tramp-debug-message): Extend function exclude
2797 list. Use `regexp-opt'.
2798
2799 2011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
2800
2801 * textmodes/tex-mode.el (tex-font-lock-verb): Make sure \verb
2802 highlighting doesn't spill over subsequent lines.
2803
2804 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't re-evaluate the
2805 keymap expression. Improve docstring.
2806
2807 * electric.el (electric-indent-post-self-insert-function):
2808 Don't auto-indent for indent-to-left-margin, it's too often
2809 counter-productive.
2810
2811 2011-01-16 Tassilo Horn <tassilo@member.fsf.org>
2812
2813 * strokes.el (strokes-read-stroke): Re-fill strokes buffer with
2814 spaces if the frame was resized, so that the full visible buffer
2815 serves as canvas for strokes.
2816
2817 2011-01-16 Glenn Morris <rgm@gnu.org>
2818
2819 * info-xref.el (info-xref-docstrings): Replace cl function.
2820 Also skip directories.
2821
2822 2011-01-16 Kevin Ryde <user42@zip.com.au>
2823
2824 * info-xref.el: Version 3.
2825 (info-xref-check, info-xref-check-all): Move commentary details
2826 into docstrings for better visibility.
2827 Use compilation-mode for the results buffer.
2828 (info-xref-output, info-xref-output-error, info-xref-with-output)
2829 (info-xref-filename, info-xref-in-progress):
2830 New internals for this.
2831 (info-xref-check-list, info-xref-check-buffer)
2832 (info-xref-check-all-custom): Use those.
2833 (info-xref-output-buffer): Rename from info-xref-results-buffer.
2834 (info-xref-output-heading): Rename from info-xref-filename-heading.
2835 (info-xref-good, info-xref-bad, info-xref-xfile-alist)
2836 (info-xref-filename-heading): Move to output managing section.
2837 (info-xref-docstrings): New command checking "Info node `(foo)Bar'"
2838 (info-xref-lock-file-p, info-xref-with-file): New helpers for it.
2839 (info-xref-subfile-p): Move to generic section with those two.
2840 (info-xref-check-node): New function split from
2841 info-xref-check-buffer, shared by info-xref-docstrings.
2842 (info-xref-goto-node-p): Move to a checking section with that func.
2843 (info-xref-unavail): New counter.
2844 (info-xref-check-node): Use it.
2845 (info-xref-with-output): Show count of unavailables at end of output.
2846 (info-xref-all-info-files): Exclude ".*" dotfiles. Ignore broken
2847 symlinks. Exclude .texi files. Exclude Emacs backup files.
2848 (info-xref-check-all-custom): Fix quietening viper-mode and
2849 gnus-registry-install -- use setq not let so as not to unbind
2850 after load.
2851
2852 2011-01-16 Juri Linkov <juri@jurta.org>
2853
2854 * isearch.el (isearch-abort): Don't quit if search has
2855 an incomplete regexp (isearch-error is non-nil). (Bug#7534)
2856
2857 2011-01-15 Mark Diekhans <markd@soe.ucsc.edu>
2858
2859 * files.el (backup-buffer): Make last-resort backup file in
2860 .emacs.d (Bug#6953).
2861
2862 * subr.el (locate-user-emacs-file): If .emacs.d does not exist,
2863 make it with permission 700.
2864
2865 2011-01-15 Kenichi Handa <handa@m17n.org>
2866
2867 * mail/rmailmm.el (rmail-mime-insert-header):
2868 Set rmail-mime-coding-system to a cons whose car is the last coding
2869 system used to decode the header.
2870 (rmail-mime-find-header-encoding): New function.
2871 (rmail-mime-insert-decoded-text):
2872 Override rmail-mime-coding-system if it is a cons.
2873 (rmail-show-mime): If only a header part was decoded, find the
2874 coding system while ignoring mm-charset-override-alist.
2875
2876 2011-01-15 Chong Yidong <cyd@stupidchicken.com>
2877
2878 * subr.el (event-start, event-end): Doc fix (Bug#7826).
2879
2880 2011-01-15 Kenichi Handa <handa@m17n.org>
2881
2882 * mail/rmailmm.el (rmail-mime-next-item)
2883 (rmail-mime-previous-item): Delete them.
2884 (rmail-mime-shown-mode): Recursively call for children.
2885 (rmail-mime-hidden-mode): Delete the 2nd arg TOP.
2886 Callers changed.
2887 (rmail-mime-raw-mode): Recursively call for children.
2888 (rmail-mode-map): Change mapping of tab and backtab to
2889 forward-button and backward-button respectively.
2890 (rmail-mime-insert-tagline): Always insert "Hide" or "Show"
2891 button.
2892 (rmail-mime-update-tagline): New function.
2893 (rmail-mime-insert-text): Call rmail-mime-update-tagline if the
2894 body display is changed.
2895 (rmail-mime-toggle-button): Rename from rmail-mime-image.
2896 (rmail-mime-image): Delete this button type.
2897 (rmail-mime-toggle): New button type.
2898 (rmail-mime-insert-bulk): Call rmail-mime-update-tagline if the
2899 body display is changed. Change the save button label to "Save".
2900 Don't process show/hide button here.
2901 (rmail-mime-insert-multipart): Call rmail-mime-update-tagline if
2902 the body display is changed. Unconditionally call
2903 rmail-mime-insert for children.
2904 (rmail-mime-handle): Update `display' vector of the just inserted
2905 entity.
2906 (rmail-mime-process): If mail-header-parse-content-type returns
2907 nil, use "text/plain" as the fallback type.
2908 (rmail-mime-insert): For raw-mode, recursively call
2909 rmail-mim-insert for children.
2910 (rmail-mime): Handle the case that the current buffer is not rmail
2911 buffer (e.g. in summary buffer).
2912
2913 2011-01-15 Kenichi Handa <handa@m17n.org>
2914
2915 * mail/rmailmm.el (rmail-mime-next-item)
2916 (rmail-mime-previous-item): Skip the body of a non-multipart
2917 entity if a tagline is shown.
2918
2919 2011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
2920
2921 * tmm.el (tmm-get-keymap): Skip bindings without labels (bug#7721).
2922 (tmm-prompt): Simplify.
2923 (tmm-add-prompt): Remove unused var `win'.
2924
2925 * whitespace.el (global-whitespace-newline-mode): Fix call (bug#7810)
2926 to minor mode which used nil accidentally to mean "turn off".
2927
2928 2011-01-15 Michael Albinus <michael.albinus@gmx.de>
2929
2930 * net/tramp-sh.el (tramp-find-inline-compress)
2931 (tramp-get-inline-coding): Quote command after pipe symbol for
2932 local calls under W32. (Bug#6784)
2933
2934 2011-01-15 Michael Albinus <michael.albinus@gmx.de>
2935
2936 * net/tramp.el (tramp-default-method): Initialize with pscp/plink
2937 only when running under W32.
2938
2939 2011-01-15 Eli Zaretskii <eliz@gnu.org>
2940
2941 * progmodes/grep.el (grep-compute-defaults): Quote the program
2942 file name after the pipe symbol in Grep templates. (Bug#6784)
2943 * jka-compr.el (jka-compr-partial-uncompress): Likewise.
2944
2945 2011-01-15 Lennart Borgman <lennart.borgman@gmail.com>
2946
2947 * buff-menu.el (Buffer-menu-buffer-list): New var.
2948 (Buffer-menu-revert-function, list-buffers-noselect): Use it, so a
2949 restricted buffer list is not lost on revert (Bug#7749).
2950
2951 2011-01-15 Eric Hanchrow <eric.hanchrow@gmail.com>
2952
2953 * net/ldap.el (ldap-search-internal): Discard stderr output.
2954
2955 2011-01-15 Eli Zaretskii <eliz@gnu.org>
2956
2957 * files.el (directory-abbrev-alist): Doc fix. (Bug#7777)
2958
2959 2011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
2960
2961 * vc-bzr.el (vc-bzr-annotate-time): Tweak previous change.
2962
2963 2011-01-15 Kenichi Handa <handa@m17n.org>
2964
2965 * mail/rmailmm.el (rmail-mime-insert-bulk): Display an unknown
2966 part as a plain text.
2967 (rmail-mime-process-multipart): Set the default content-type to
2968 nil for unknown multipart subtypes (bug#7651).
2969
2970 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2971
2972 * hexl.el (hexl-mode-old-*): Remove.
2973 (hexl-mode--old-var-vals): New var to replace them.
2974 (hexl-mode--minor-mode-p, hexl-mode--setq-local): New funs.
2975 (hexl-mode, hexl-follow-line, hexl-activate-ruler):
2976 Use them to set local vars (bug#7846).
2977 (hexl-mode-exit): Use hexl-mode--old-var-vals to restore state.
2978 (hexl-backward-short, hexl-backward-word, hexl-scroll-down)
2979 (hexl-scroll-up, hexl-end-of-1k-page, hexl-end-of-512b-page): Simplify.
2980
2981 * vc/smerge-mode.el: Resolve comment conflicts more aggressively.
2982 (smerge-resolve--normalize-re): New var.
2983 (smerge-resolve--extract-comment, smerge-resolve--normalize): New funs.
2984 (smerge-resolve): Use them.
2985 * newcomment.el (comment-only-p): New function.
2986 (comment-or-uncomment-region): Use it.
2987
2988 2011-01-14 Brent Goodrick <bgoodr@gmail.com> (tiny change)
2989
2990 * abbrev.el (prepare-abbrev-list-buffer): If listing local abbrev
2991 table, get the value before switching to the output buffer. (Bug#7733)
2992
2993 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2994
2995 * progmodes/python.el (python-mode): Don't impose font-lock (bug#3628).
2996
2997 2011-01-14 Kim F. Storm <storm@cua.dk>
2998
2999 * emulation/cua-base.el (cua--init-keymaps):
3000 Remap exchange-point-and-mark in cua-global-keymap.
3001
3002 2011-01-14 Tassilo Horn <tassilo@member.fsf.org>
3003
3004 * progmodes/sh-script.el (sh-other-keywords): Add ZSH's foreach
3005 loop keyword.
3006
3007 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
3008
3009 * emacs-lisp/easymenu.el: Add :enable (bug#7754), and obey :label.
3010 Require CL.
3011 (easy-menu-create-menu, easy-menu-convert-item-1):
3012 Use :label rather than nil for labels. Use `case'.
3013 Add :enable as alias for :active.
3014 (easy-menu-binding): Obey :label.
3015
3016 2011-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
3017
3018 Use run-mode-hooks for major mode hooks (bug#513).
3019 * textmodes/reftex-toc.el (reftex-toc-mode-map):
3020 Rename from reftex-toc-map.
3021 (reftex-toc-mode): Use define-derived-mode.
3022 * textmodes/reftex-sel.el (reftex-select-shared-map): New map.
3023 (reftex-select-label-mode-map, reftex-select-bib-mode-map):
3024 Rename from reftex-select-(label|bib)-map. Move init into declaration.
3025 (reftex-select-label-mode, reftex-select-bib-mode):
3026 Use define-derived-mode.
3027 * textmodes/reftex-index.el (reftex-index-phrases-mode-map)
3028 (reftex-index-mode-map): Rename from reftex-index(-phrases)-map.
3029 Move init into delcaration.
3030 (reftex-index-mode, reftex-index-phrases-mode):
3031 Use define-derived-mode.
3032 * speedbar.el (speedbar-mode-syntax-table): Renaqme from
3033 speedbar-syntax-table. Move init into declaration.
3034 (speedbar-mode-map): Rename from speedbar-key-map.
3035 Move init into declaration.
3036 (speedbar-file-key-map): Move init into declaration.
3037 (speedbar-mode): Use define-derived-mode.
3038 * recentf.el (recentf-mode): Don't run hook (or message) redundantly.
3039 * net/rcirc.el (rcirc-mode): Use run-mode-hooks.
3040 * emacs-lisp/chart.el (chart-mode-map): Rename from chart-map.
3041 (chart-face-list): Move initialization into declaration.
3042 (chart-mode): Use define-derived-mode.
3043 * calculator.el (calculator-mode-map): Move init into declaration.
3044 (calculator-mode): Use define-derived-mode.
3045
3046 * mail/mail-utils.el (mail-strip-quoted-names): Make the regexp code
3047 work for nested comments.
3048
3049 * progmodes/prolog.el: Use syntax-propertize. Further code cleanup.
3050 (prolog-use-prolog-tokenizer-flag): Change default when
3051 syntax-propertize can be used.
3052 (prolog-syntax-propertize-function): New var.
3053 (prolog-mode-variables): Move make-local-variable into `set'.
3054 Don't make comment-column local since we don't set it.
3055 Set comment-add (as it was in previous prolog.el). Use dolist.
3056 Set syntax-propertize-function.
3057 (prolog-mode, prolog-inferior-mode):
3058 Call prolog(-inferior)-menu directly, not through the mode-hook.
3059 (prolog-buffer-module, prolog-indent-level)
3060 (prolog-paren-is-the-first-on-line-p, prolog-paren-balance)
3061 (prolog-comment-limits, prolog-goto-comment-column):
3062 Use line-(end|beginning)-position.
3063 (prolog-build-prolog-command): Tighten up regexp.
3064 (prolog-consult-compile): Move make-local-variable into `set'.
3065 (prolog-consult-compile-filter, prolog-goto-next-paren)
3066 (prolog-help-on-predicate, prolog-clause-info)
3067 (prolog-mark-predicate): Don't let+setq.
3068 (prolog-indent-line): Use indent-line-to.
3069 Only call prolog-goto-comment-column if necessary.
3070 (prolog-indent-level): Use bobp.
3071 (prolog-first-pos-on-line): Remove, not used any more.
3072 (prolog-in-string-or-comment): Use syntax-ppss if available.
3073 (prolog-help-on-predicate): Use read-string.
3074 (prolog-goto-predicate-info): Simplify.
3075 (prolog-read-predicate): Use `default' rather than `initial'.
3076 (prolog-temporary-file): Use make-temp-file to close a security hole.
3077 (prolog-toggle-sicstus-sd): New command.
3078 (prolog-electric-underscore, prolog-variables-to-anonymous):
3079 Use dynamic-scoping as it was meant.
3080 (prolog-menu): Move menu definitions to top-level.
3081 Use a toggle-button for Sicstus's source debugger.
3082 Change "Code" to the more usual "Prolog", and hence change "Prolog"
3083 to "System".
3084 (prolog-inferior-menu): Reuse prolog-menu's help menu.
3085 Move other menu definition to top-level.
3086
3087 2011-01-13 Tassilo Horn <tassilo@member.fsf.org>
3088
3089 * doc-view.el (doc-view-open-text): Use meaningful text buffer
3090 name. Keep original document's directory as default-directory
3091 (bug#6446).
3092 (doc-view-initiate-display): Fall back to normal mode when
3093 doc-view-mode cannot be enabled, also when extracting the document
3094 text into a separate buffer (bug#6446).
3095
3096 * simple.el (shell-command): Don't error out if shell command
3097 buffer contains text with non-nil read-only property when erasing
3098 the buffer.
3099
3100 2011-01-13 Kim F. Storm <storm@cua.dk>
3101
3102 * ido.el (ido-may-cache-directory): Move "too-big" check later.
3103 (ido-next-match, ido-prev-match): Fix stray reordering of matching
3104 items when cycling through the matches.
3105
3106 2011-01-13 Tassilo Horn <tassilo@member.fsf.org>
3107
3108 * dired-x.el (dired-omit-verbose): New defcustom that allows
3109 disabling the omit messages.
3110 (dired-omit-expunge): Use it.
3111
3112 2011-01-13 Christian Ohler <ohler@gnu.org>
3113
3114 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: New files.
3115
3116 2011-01-13 Chong Yidong <cyd@stupidchicken.com>
3117
3118 * font-lock.el (font-lock-verbose): Default to nil.
3119
3120 2011-01-13 Chong Yidong <cyd@stupidchicken.com>
3121
3122 * simple.el (sendmail-user-agent-compose): Move to sendmail.el.
3123 (compose-mail): New arg RETURN-ACTION.
3124 (compose-mail-other-window, compose-mail-other-frame): Likewise.
3125
3126 * mail/sendmail.el (mail-return-action): New var.
3127 (mail-mode): Make it buffer-local.
3128 (mail-bury): Obey it. Move special Rmail window handling to
3129 rmail-mail-return.
3130 (mail, mail-setup): New arg RETURN-ACTION.
3131 (sendmail-user-agent-compose): Move from simple.el.
3132
3133 * mail/rmail.el (rmail-mail-return): New function.
3134 (rmail-start-mail): Pass it to compose-mail.
3135
3136 2011-01-12 Chong Yidong <cyd@stupidchicken.com>
3137
3138 * menu-bar.el (menu-bar-custom-menu): Tweak Mule and Customize
3139 menus. Add menu item for customize-themes.
3140
3141 * cus-theme.el (customize-themes):
3142 * emacs-lisp/package.el (package--list-packages):
3143 Use switch-to-buffer.
3144
3145 2011-01-11 Johan Bockgård <bojohan@gnu.org>
3146
3147 * emacs-lisp/unsafep.el (unsafep): Handle backquoted forms.
3148
3149 2011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
3150
3151 * progmodes/prolog.el: Fix up coding convention and such.
3152 (prolog-indent-width): Use the same default as in
3153 previous prolog.el rather than tab-width which depends on which buffer
3154 is current when the file is loaded.
3155 (prolog-electric-newline-flag): Only enable if electric-indent-mode
3156 is not available.
3157 (prolog-emacs): Remove. Use (featurep 'xemacs) instead.
3158 (prolog-known-systems): Remove.
3159 (prolog-mode-syntax-table, prolog-inferior-mode-map):
3160 Move initialization into declaration.
3161 (prolog-mode-map): Move initialization into declaration.
3162 Remove system-specific mode-map vars, since they referred to the same
3163 keymap anyway.
3164 (prolog-mode-variables): Obey the user's preference w.r.t
3165 adaptive-fill-mode. Prefer symbol-value to `eval'.
3166 (prolog-mode-keybindings-edit): Add compatibility bindings.
3167 (prolog-mode): Use define-derived-mode. Don't handle mercury here.
3168 (mercury-mode-map): New var.
3169 (mercury-mode, prolog-inferior-mode): Use define-derived-mode.
3170 (prolog-ensure-process, prolog-process-insert-string)
3171 (prolog-consult-compile): Use with-current-buffer.
3172 (prolog-guess-fill-prefix): Simplify data flow.
3173 (prolog-replace-in-string): New function to use instead of
3174 replace-in-string.
3175 (prolog-enable-sicstus-sd): Don't abuse `eval'.
3176 (prolog-uncomment-region): Use `uncomment-region' when available.
3177 (prolog-electric-colon, prolog-electric-dash): Use `eolp'.
3178 (prolog-int-to-char, prolog-char-to-int): New functions to use instead
3179 of int-to-char and char-to-int.
3180 (prolog-mode-hook, prolog-inferior-mode-hook): Don't force font-lock.
3181
3182 2011-01-11 Stefan Bruda <stefan@bruda.ca>
3183
3184 * progmodes/prolog.el: Replace by a whole new file.
3185
3186 2011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
3187
3188 * subr.el (eval-after-load): Fix timing for features (bug#7769).
3189 (declare-function, undefined, insert-for-yank)
3190 (replace-regexp-in-string): Follow checkdoc's recommendations.
3191
3192 2011-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
3193
3194 * calendar/diary-lib.el (diary-mode): Refresh *Calendar* after
3195 refreshing the diary buffer.
3196
3197 2011-01-10 Ken Manheimer <ken.manheimer@gmail.com>
3198
3199 * allout.el: Add 2011 to the file copyright.
3200 (allout-encrypt-string): Prevent encryption from adding an extra
3201 newline at the end of the topic body.
3202 (allout-version): Increment to 2.3.
3203
3204 2011-01-10 Michael Albinus <michael.albinus@gmx.de>
3205
3206 * net/dbus.el (dbus-unregister-service): Complete doc.
3207 Fix call of dbus-error signal.
3208 (dbus-register-property): Use `dont-register' keyword.
3209
3210 2011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
3211
3212 * net/dbus.el (dbus-unregister-service): Translate returned
3213 integer into a symbol.
3214 (dbus-register-property): Use `dbus-register-service' to do the
3215 name registration.
3216
3217 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
3218
3219 * progmodes/idlw-help.el (idlwave-help-link): Inherit from link face.
3220 Suggested by Joakim Verona.
3221
3222 * comint.el (comint-highlight-prompt): Inherit minibuffer-prompt.
3223
3224 * wid-edit.el (visibility): Replace :on-image and :off-image
3225 widget properties with :on-glyph and :off-glyph, for consistency
3226 with the `visibility' widget.
3227 (widget-toggle-value-create, widget-visibility-value-create):
3228 Merge into a single function `widget-toggle-value-create'.
3229
3230 * cus-edit.el (custom-variable-value-create, custom-visibility)
3231 (custom-face-edit-value-create, custom-face-value-create):
3232 Replace :on-image and :off-image widget properties with :on-glyph and
3233 :off-glyph, for consistency with the `visibility' widget.
3234
3235 2011-01-09 Andreas Schwab <schwab@linux-m68k.org>
3236
3237 * net/ldap.el (ldap-search-internal): Don't use eval.
3238
3239 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
3240
3241 * subr.el (read-char-choice): Use read-key.
3242
3243 * custom.el (custom-safe-themes): Rename from
3244 custom-safe-theme-files. Add :risky tag.
3245 (load-theme, custom-theme-load-confirm): Save sha1 hashes to
3246 custom-safe-themes, not filenames. Suggested by Stefan Monnier.
3247
3248 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
3249
3250 * tool-bar.el (tool-bar-setup): Remove Help button. Remove label
3251 from Search and add a label to Undo.
3252
3253 * vc/vc-dir.el (vc-dir-tool-bar-map): Rearrange, removing
3254 inappropriate buttons and adding :vert-only tags.
3255
3256 * progmodes/compile.el (compilation-mode-tool-bar-map): Adjust to
3257 removal of Help tool-bar button. Remove Undo button for space.
3258
3259 * info.el (info-tool-bar-map): Add :vert-only tags.
3260
3261 2011-01-08 Tassilo Horn <tassilo@member.fsf.org>
3262
3263 * doc-view.el (doc-view-mode-p): Check for png or imagemagick
3264 image backend support. Either of them is fine.
3265
3266 2011-01-08 Chong Yidong <cyd@stupidchicken.com>
3267
3268 * subr.el (y-or-n-p): Doc fix.
3269
3270 * custom.el (custom-safe-theme-files): New defcustom.
3271 (custom-theme-load-confirm): New function.
3272 (load-theme): Load theme using `load', confirming with
3273 custom-theme-load-confirm if necessary.
3274
3275 * subr.el (read-char-choice): New function, factored out from
3276 dired-query and hack-local-variables-confirm.
3277
3278 * dired-aux.el (dired-query):
3279 * files.el (hack-local-variables-confirm): Use it.
3280
3281 * dired-aux.el (dired-compress-file):
3282 * files.el (abort-if-file-too-large, find-alternate-file)
3283 (set-visited-file-name, write-file, backup-buffer)
3284 (basic-save-buffer, basic-save-buffer-2, save-some-buffers)
3285 (delete-directory, revert-buffer, recover-file, kill-buffer-ask):
3286 Use new format string args for y-or-n-p and yes-or-no-p.
3287
3288 2011-01-08 Andreas Schwab <schwab@linux-m68k.org>
3289
3290 * progmodes/compile.el (compilation-error-regexp-alist-alist)
3291 [gcc-include]: Tighten file name match, add match for column
3292 number. (Bug#7806)
3293 [gnu]: Remove unused group.
3294
3295 2011-01-08 Glenn Morris <rgm@gnu.org>
3296
3297 * makefile.w32-in (EMACSOPT): Add --no-site-lisp.
3298
3299 * makefile.w32-in (EMACSOPT): -batch implies --no-init-file.
3300
3301 2011-01-07 Sam Steingold <sds@gnu.org>
3302
3303 * w32-fns.el (w32-shell-name): Use `shell-file-name' instead of
3304 the `explicit-shell-file-name' because that is the
3305 non-interactive shell.
3306
3307 2011-01-07 Chong Yidong <cyd@stupidchicken.com>
3308
3309 * subr.el (y-or-n-p): Accept format string args.
3310
3311 2011-01-07 Glenn Morris <rgm@gnu.org>
3312
3313 * Makefile.in (EMACSOPT): Add --no-site-lisp.
3314
3315 2011-01-06 Ken Manheimer <ken.manheimer@gmail.com>
3316
3317 * allout.el (allout-back-to-current-heading): Ensure return to
3318 the visible containing topic, rather than a collapsed one.
3319 (allout-view-change-hook): Remove hook that was deprecated long ago.
3320 (allout-exposure-change-hook): Remove documentation remarks
3321 concerning removed allout-view-change-hook.
3322 (allout-flag-region): Remove invocation of and documentation
3323 remarks concerning allout-view-change-hook.
3324
3325 2011-01-06 Glenn Morris <rgm@gnu.org>
3326
3327 * vc/vc-bzr.el (vc-bzr-annotate-command, vc-bzr-annotate-time)
3328 (vc-bzr-annotate-extract-revision-at-line):
3329 Handle authors with embedded spaces. (Bug#7792)
3330
3331 2011-01-05 Tassilo Horn <tassilo@member.fsf.org>
3332
3333 * doc-view.el (doc-view-image-width): New variable.
3334 (doc-view-enlarge, doc-view-insert-image): Prefer imagemagick
3335 backend for PNG images, and do dynamic rescaling instead of
3336 reconverting the whole doc.
3337
3338 2011-01-05 Glenn Morris <rgm@gnu.org>
3339
3340 * emacs-lisp/rx.el (rx-repeat): Replace CL function.
3341
3342 2011-01-04 Ken Manheimer <ken.manheimer@gmail.com>
3343
3344 * allout.el: Reconcile with changes in line movement behavior for
3345 long text lines that cross more than a single physical window
3346 line, ie when truncate-lines is nil.
3347 (allout-next-visible-heading): Provide for change in line-move
3348 behavior on long lines when truncate-lines is nil. In that case,
3349 line-move can wind up on the same textual line when it moves to
3350 the next window line, and moving to the bullet position after the
3351 move yields zero advancement. Add logic to detect and compensate
3352 for the lack of progress.
3353 (allout-current-topic-collapsed-p): move-end-of-line respect for
3354 field boundaries is different when operating with body lines
3355 shorter than window width versus ones greater than window width,
3356 which can yield false negatives in this function. Avoid
3357 difference by applying move-end-of-line while field-text-motion is
3358 inhibited.
3359
3360 2011-01-04 Glenn Morris <rgm@gnu.org>
3361
3362 * textmodes/rst.el (rst-compile-toolsets):
3363 Add pdf and s5 to option alist.
3364
3365 2011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
3366
3367 * net/dbus.el (dbus-register-property): Add optional parameter
3368 dont-register-service. Updated docstring accordingly.
3369
3370 2011-01-04 Andreas Schwab <schwab@linux-m68k.org>
3371
3372 * textmodes/rst.el (rst-compile-pdf-preview)
3373 (rst-compile-slides-preview): Remove extra line.
3374
3375 2011-01-04 Glenn Morris <rgm@gnu.org>
3376
3377 * textmodes/rst.el (rst-compile-toolsets): Make it a defcustom.
3378 Add `pdf' and `s5' entries. Use `prog.py' if found, otherwise
3379 default to `prog' without a .py extension.
3380 (rst-compile-pdf-preview, rst-compile-slides-preview):
3381 Use program names from rst-compile-toolsets, rather than hard-coding.
3382 (rst-portable-mark-active-p): Fix presumed typo.
3383
3384 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3385
3386 * term/w32-win.el (dynamic-library-alist): Set up correctly for
3387 libpng versions both before and after 1.4.0. (Bug#7716)
3388
3389 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3390
3391 * time.el (display-time-mode): Mention display-time-interval in
3392 the doc string. (Bug#7713)
3393
3394 2011-01-02 Kenichi Handa <handa@m17n.org>
3395
3396 * mail/rmailmm.el (rmail-mime-parse): Perform parsing in
3397 condition-case and return an error message string if something
3398 goes wrong.
3399 (rmail-show-mime): Adjust for the above change. Insert the
3400 header by rmail-mime-insert-header.
3401
3402 2011-01-02 Kenichi Handa <handa@m17n.org>
3403
3404 * mail/rmailmm.el: New key bindings for rmail-mime-next-item,
3405 rmail-mime-previous-item, and rmail-mime-toggle-hidden.
3406 (rmail-mime-mbox-buffer)
3407 (rmail-mime-view-buffer, rmail-mime-coding-system): New variables.
3408 (rmail-mime-entity): Argument changed. All codes handling an
3409 entity object are changed.
3410 (rmail-mime-entity-header, rmail-mime-entity-body): Adjust for
3411 the above change.
3412 (rmail-mime-entity-children, rmail-mime-entity-handler)
3413 (rmail-mime-entity-tagline): New functions.
3414 (rmail-mime-message-p): New function.
3415 (rmail-mime-save): Bind rmail-mime-mbox-buffer.
3416 (rmail-mime-entity-segment, rmail-mime-next-item)
3417 (rmail-mime-previous-item, rmail-mime-shown-mode)
3418 (rmail-mime-hidden-mode, rmail-mime-raw-mode)
3419 (rmail-mime-toggle-raw, rmail-mime-toggle-hidden)
3420 (rmail-mime-insert-tagline, rmail-mime-insert-header):
3421 New functions.
3422 (rmail-mime-text-handler): Call rmail-mime-insert-text.
3423 (rmail-mime-insert-decoded-text): New function.
3424 (rmail-mime-insert-text): Call rmail-mime-insert-decoded-text.
3425 (rmail-mime-insert-image): Argument changed. Caller changed.
3426 (rmail-mime-image): Call rmail-mime-toggle-hidden.
3427 (rmail-mime-set-bulk-data): New function.
3428 (rmail-mime-insert-bulk): Argument changed.
3429 (rmail-mime-multipart-handler): Return t.
3430 (rmail-mime-process-multipart): Argument changed.
3431 Handle "multipart/alternative" here.
3432 (rmail-mime-process): Argument changed.
3433 (rmail-mime-parse): Bind rmail-mime-mbox-buffer.
3434 (rmail-mime-insert): Argument changed. Handle raw display mode.
3435 (rmail-mime): Argument changed. Handle toggling of raw display
3436 mode.
3437 (rmail-show-mime): Bind rmail-mime-mbox-buffer and
3438 rmail-mime-view-buffer.
3439 (rmail-insert-mime-forwarded-message): Likewise.
3440 (rmail-search-mime-message): Likewise. Don't bind rmail-buffer.
3441
3442 * mail/rmail.el (rmail-show-message-1): If rmail-enable-mime is
3443 non-nil, handle the header in rmail-show-mime-function.
3444
3445 2011-01-02 Leo <sdl.web@gmail.com>
3446
3447 * help-fns.el (describe-variable): Fix previous change.
3448
3449 2011-01-02 Juri Linkov <juri@jurta.org>
3450
3451 * isearch.el (isearch-lazy-highlight-error): New variable.
3452 (isearch-lazy-highlight-new-loop): Compare `isearch-error' and
3453 `isearch-lazy-highlight-error'. Set `isearch-lazy-highlight-error'
3454 to the current value of `isearch-error' (Bug#7468).
3455
3456 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
3457
3458 * help-fns.el (describe-variable): Don't emit trailing whitespace
3459 (Bug#7511).
3460
3461 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
3462
3463 * textmodes/rst.el (rst-compile-pdf-preview)
3464 (rst-compile-slides-preview): Use make-temp-file (Bug#7646).
3465
3466 2011-01-02 Kevin Gallagher <Kevin.Gallagher@boeing.com>
3467
3468 * emulation/edt-mapper.el: Override mapping of function keys so
3469 that the later call to read-key-sequence works.
3470
3471 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3472
3473 * mail/smtpmail.el (smtpmail-send-it): Write queued mail body with
3474 Unix EOLs. (Bug#7589)
3475
3476 2011-01-02 Leo <sdl.web@gmail.com>
3477
3478 * eshell/em-hist.el (eshell-previous-matching-input): Signal error
3479 if point is not behind eshell-last-output-end (Bug#7585).
3480
3481 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
3482
3483 * files.el (file-local-variables-alist):
3484 Make permanent-local (bug#7767).
3485
3486 2011-01-02 Glenn Morris <rgm@gnu.org>
3487
3488 * version.el (emacs-copyright): Set short copyright year to 2011.
3489
3490 2011-01-02 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
3491
3492 * mail/mail-utils.el (mail-strip-quoted-names): Avoid clobbering
3493 an existing temp buffer. (Bug#7746)
3494
3495 2011-01-02 Glenn Morris <rgm@gnu.org>
3496
3497 * mail/mail-utils.el (mail-mbox-from): Handle From: headers with
3498 multiple addresses. (Bug#7760)
3499
3500 2011-01-01 Ken Manheimer <ken.manheimer@gmail.com>
3501
3502 * allout.el (allout-auto-fill): Do not infinitely recurse - use
3503 do-auto-fill if everything points back to allout-auto-fill.
3504 (allout-mode-deactivate-hook): Declare obsolete, in favor of
3505 standard-formed minor-mode deactivate hook, allout-mode-off-hook.
3506
3507 2010-12-31 Michael Albinus <michael.albinus@gmx.de>
3508
3509 * net/tramp-sh.el (tramp-methods): Add recursive options to "scpc"
3510 and "scpx".
3511
3512 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3513
3514 * doc-view.el (doc-view-set-doc-type): New function refactored
3515 from doc-view-mode.
3516 (doc-view-fallback-mode): New function.
3517 (doc-view-mode): Use it.
3518 (doc-view-mode-maybe): New function that checks if doc-view-mode
3519 can be used and falls back to the next best mode otherwise.
3520
3521 * files.el (auto-mode-alist): Use doc-view-mode-maybe for PDF,
3522 DVI, OpenDocument, and MS Office files.
3523
3524 2010-12-30 Andreas Schwab <schwab@linux-m68k.org>
3525
3526 * emacs-lisp/rx.el (rx-syntax): Fix typo.
3527
3528 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3529
3530 * doc-view.el (doc-view-toggle-display): Perform rassq-delete-all
3531 on a copy of auto-mode-alist, because that deletes with side
3532 effects.
3533
3534 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3535
3536 * doc-view.el (doc-view-mode, doc-view-toggle-display):
3537 Use normal-mode without doc-view-mode bindings in auto-mode-alist as
3538 fallback instead of hard coding fundamental mode.
3539
3540 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3541
3542 * doc-view.el (doc-view-doc->txt): Handle OpenDocument (or MS
3543 Office) files also for searching.
3544
3545 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3546
3547 * doc-view.el: Implement viewing of OpenDocument (and Microsoft
3548 Office) files. Not yet enabled via auto-mode-list.
3549 (doc-view-unoconv-program): New custom variable.
3550 (doc-view-mode-p): Handle new odf document type.
3551 (doc-view-odf->pdf): New conversion function.
3552 (doc-view-convert-current-doc): Call it for odf files.
3553 (doc-view-mode): Recognize newly supported file extensions.
3554
3555 2010-12-30 Michael Albinus <michael.albinus@gmx.de>
3556
3557 * net/tramp.el (tramp-default-method-alist)
3558 (tramp-default-user-alist)
3559 (tramp-local-host-regexp, tramp-prefix-domain-format)
3560 (tramp-prefix-domain-regexp): Set tramp-autoload cookie.
3561
3562 * net/tramp-ftp.el:
3563 * net/tramp-gvfs.el:
3564 * net/tramp-gw.el:
3565 * net/tramp-imap.el:
3566 * net/tramp-sh.el:
3567 * net/tramp-smb.el: Add tramp-autoload cookie for initialisation
3568 code of `tramp-default-method-alist' and `tramp-default-user-alist'.
3569
3570 2010-12-29 Karl Fogel <kfogel@red-bean.com>
3571
3572 * saveplace.el (save-place-alist-to-file): Save list sorted and
3573 pretty-printed, so that it is mergeable by line-based text merging,
3574 as suggested by Iain Dalton <iain.dalton {_AT_} gmail.com>.
3575
3576 2010-12-28 Ken Manheimer <ken.manheimer@gmail.com>
3577
3578 * allout.el (allout-v18/19-file-var-hack): Obsolete, remove.
3579 (allout-mode): Argument "toggle" => "force".
3580 Refine the docstring.
3581 Remove special provisions for reactivation, besides the 'force'
3582 argument.
3583 Consolidate layout provisions coce directly into the activation
3584 condition branch, now that we've removed those provisions.
3585 (allout-unload-function): Explicitly activate the mode before
3586 deactivating, if it's initially deactivated.
3587 (allout-set-buffer-multibyte): Properly prevent byte-compiler
3588 warnings for version of function used only where
3589 set-buffer-multibyte is unavailable.
3590
3591 2010-12-28 Chong Yidong <cyd@stupidchicken.com>
3592
3593 * tool-bar.el (tool-bar-setup): Remove :enable conditions, which
3594 are handled by the menu-bar entries. As before, don't use
3595 :visibile to avoid changing the tool-bar.
3596
3597 2010-12-27 Michael Albinus <michael.albinus@gmx.de>
3598
3599 * net/secrets.el (secrets-delete-alias): New defun.
3600
3601 2010-12-27 Michael Albinus <michael.albinus@gmx.de>
3602
3603 * net/tramp.el (tramp-default-user-alist): Do not add "ssh" based
3604 methods, otherwise ~/.ssh/config would be ignored.
3605
3606 2010-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
3607
3608 * emacs-lisp/rx.el: Make it a superset of sregex.
3609 (rx-constituents): Add `any => "."', mark `repeat' as taking any number
3610 of args, add `regex' alias.
3611 (rx-info): Add arg to distinguish head and standalone forms.
3612 (rx-check, rx-form): Pass the corresponding arg.
3613 (rx-**): Simplify.
3614 (rx-repeat): Make it work for any number of args.
3615 (rx-syntax): Make it accept syntax chars as is.
3616 * obsolete/sregex.el: Move from emacs-lisp/.
3617 * emacs-lisp/re-builder.el: Remove sregex support.
3618 * emacs-lisp/edebug.el (sregexq, rx): Remove redundant defs.
3619
3620 2010-12-25 Eli Zaretskii <eliz@gnu.org>
3621
3622 * mouse.el (mouse-yank-primary): On MS-Windows, try the (emulated)
3623 PRIMARY first, then the clipboard. (Bug#7699)
3624
3625 2010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
3626
3627 * emacs-lisp/bytecomp.el (byte-compile-output-docform): Fix up use of
3628 print-number-table.
3629
3630 2010-12-21 Chong Yidong <cyd@stupidchicken.com>
3631
3632 * help-fns.el (find-lisp-object-file-name): Locate .emacs from
3633 .emacs.elc (Bug#7530).
3634
3635 * wid-edit.el (widget-image-find): Remove bogus :ascent spec from
3636 image spec (Bug#7480).
3637
3638 2010-12-21 Daiki Ueno <ueno@unixuser.org>
3639
3640 * obsolete/pgg-parse.el, obsolete/pgg-pgp5.el, obsolete/pgg-pgp.el,
3641 * obsolete/pgg-gpg.el, obsolete/pgg-def.el, obsolete/pgg.el:
3642 Move from lisp/.
3643
3644 2010-12-20 Leo <sdl.web@gmail.com>
3645
3646 * dnd.el (dnd-get-local-file-name): Unhex of file name shall
3647 always be performed (Bug#7680).
3648
3649 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
3650
3651 * menu-bar.el (menu-bar-kill-ring-save): Make obsolete.
3652 (menu-bar-edit-menu): Bind "Copy" to kill-ring-save. Don't use
3653 mouse-region-match.
3654
3655 * color.el: Move from gnus/.
3656
3657 * vc/diff.el (diff-better-file-name): Function deleted.
3658 abbreviating file names causes problems with shell-quote-argument.
3659 (diff-no-select): Just use expand-file-name.
3660
3661 * tool-bar.el (tool-bar--image-expression): New function.
3662 (tool-bar-local-item, tool-bar--image-exp): Use it.
3663 (tool-bar-setup): Initialize tool-bar-separator-image-expression.
3664 Use :enable instead of :visible to avoid changing the tool-bar
3665 configuration unnecessarily.
3666
3667 * info.el (info-tool-bar-map): Add separators.
3668
3669 2010-12-17 Ken Brown <kbrown@cornell.edu>
3670
3671 * loadup.el: Use version numbers in Cygwin build.
3672
3673 2010-12-17 Ryan Twitchell <metatheorem@gmail.com> (tiny change)
3674
3675 * ido.el (ido-file-internal): Ask for confirmation before
3676 overwriting an existing file (Bug#1238).
3677
3678 2010-12-16 Chong Yidong <cyd@stupidchicken.com>
3679
3680 * tool-bar.el (tool-bar-setup): Add separators.
3681
3682 * menu-bar.el (featurep): Use menu-bar-separator.
3683
3684 2010-12-16 Ken Manheimer <ken.manheimer@gmail.com>
3685
3686 Migrate allout encryption provisions from pgg to epg.
3687
3688 * allout.el (allout-toggle-current-subtree-encryption)
3689 (allout-toggle-subtree-encryption): Adjust docstrings to reflect
3690 defaulting policy and other changes. Change fetch-pass to keymode-cue,
3691 for simpler universal argument interpretation.
3692 (allout-toggle-subtree-encryption): Adjust docstring to describe
3693 changed encryption provisions. Change fetch-pass to keymode-cue, for
3694 simpler universal argument interpretation. Remove provisions for
3695 handling key type and identity - they'll all be within
3696 allout-encrypt-string or epg/epg or even contained all the way in gpg.
3697 (allout-encrypt-string): Include keymode-cue, for optionally prompting
3698 for keypair recipients (universal argument > 1) and, in addition,
3699 associating the specified recipients with the outline (universal
3700 argument > 4) using a file local variable setting for
3701 'epa-file-encrypt-to'.
3702 Require epa, for recipients handling.
3703 Change how regexp filtering elements are named.
3704 Describe the problem with caching of incorrect symmetric-decryption
3705 keys.
3706 Use the epa-passphrase-callback-function, in case the user is using
3707 GnuPG v1.
3708 Support saving of the selected keypair recipients when invoked with a
3709 keymode-cue > 4.
3710 Remove obsolete arguments 'fetch-pass', 'target-cache-id', 'retried'.
3711 Require 'epa.
3712 Establish epg-context with armoring and default epg-protocol.
3713 Remove all passphrase cache, verification, and hinting code.
3714 (allout-passphrase-verifier-handling, allout-passphrase-hint-handling):
3715 No longer used, delete.
3716 (allout-mode): Adjust docstring to describe changed encryption
3717 provisions. Describe the problem with caching of incorrect
3718 symmetric-decryption keys.
3719 (allout-obtain-passphrase, allout-epg-passphrase-callback-function)
3720 (allout-make-passphrase-state, allout-passphrase-state-passphrase)
3721 (allout-encrypted-key-info, allout-update-passphrase-mnemonic-aids)
3722 (allout-get-encryption-passphrase-verifier, allout-verify-passphrase):
3723 Obsolete, remove.
3724
3725 2010-12-16 Daiki Ueno <ueno@unixuser.org>
3726
3727 * epa-file.el (epa-file-select-keys): Accept 'silent to inhibit
3728 key selection prompt; make 'silent as default (Bug#7487).
3729
3730 2010-12-16 Leo <sdl.web@gmail.com>
3731
3732 * eshell/eshell.el (eshell-directory-name):
3733 Use locate-user-emacs-file (Bug#7578).
3734
3735 2010-12-15 Glenn Morris <rgm@gnu.org>
3736
3737 * loadup.el (symbol-file-load-history-loaded): Remove; unused.
3738
3739 2010-12-15 Jari Aalto <jari.aalto@cante.net>
3740 Scott Evans <gse@antisleep.com>
3741
3742 * rect.el (rectange--default-line-number-format)
3743 (rectangle-number-line-callback): New functions.
3744 (rectangle-number-lines): New command, bound to C-x r N (Bug#4382).
3745
3746 2010-12-15 Chong Yidong <cyd@stupidchicken.com>
3747
3748 * rect.el (operate-on-rectangle-lines, string-rectangle-string):
3749 Delete unused variables.
3750 (move-to-column-force): Remove function obsolete since 21.2.
3751
3752 2010-12-14 Michael Albinus <michael.albinus@gmx.de>
3753
3754 * net/tramp.el (tramp-temp-buffer-file-name): Make it permanent-local.
3755 (tramp-handle-insert-file-contents): Do not set permanent-local
3756 property.
3757
3758 * net/tramp-cache.el (tramp-persistency-file-name):
3759 Use `locate-user-emacs-file' if fboundp.
3760
3761 * net/tramp-sh.el (tramp-methods): Add "ksu".
3762 (tramp-default-user-alist): Add "ksu". Use `regexp-opt' for
3763 method list.
3764
3765 2010-12-14 Glenn Morris <rgm@gnu.org>
3766
3767 * progmodes/js.el: Doc't require font-lock, etags, or easymenu.
3768 (find-tag-marker-ring): Declare.
3769 (js-find-symbol): Require etags.
3770
3771 * mail/sendmail.el: Don't require rmail or mailalias when compiling.
3772 Require mail-utils.
3773 (mail-alias-file): Don't autoload. Doc fix.
3774 (mail-bury-selects-summary, mail-send-nonascii): Don't autoload.
3775 (mail-mailer-swallows-blank-line): Default to nil. Doc fix.
3776 Mark as obsolete, and risky.
3777 (mail-setup): Simplify.
3778
3779 * mail/mailalias.el (build-mail-aliases): Make it interactive.
3780 * mail/sendmail.el (build-mail-aliases): Update autoload.
3781
3782 * dired.el (dired-trivial-filenames, dired-chown-program)
3783 (dired-auto-revert-buffer): Remove autoload cookies.
3784 * mail/sendmail.el (mail-recover-1): Require 'dired.
3785
3786 * dired.el (dired-subdir-switches, dired-chown-program)
3787 (dired-use-ls-dired, dired-chmod-program, dired-touch-program):
3788 Make into defcustoms.
3789 (dired-chown-program): Simplify initialization.
3790
3791 * mail/mail-utils.el: No need to require lisp-mode, it's in loadup.
3792
3793 2010-12-13 Romain Francoise <romain@orebokech.com>
3794
3795 * net/gnutls.el (gnutls-negotiate): Fix setting of default trustfiles.
3796
3797 2010-12-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3798
3799 * net/netrc.el (netrc-point-at-eol): Remove the unused
3800 netrc-point-at-old and netrc-bound-and-true-p bindings.
3801 (netrc-parse): Cache the netrc contents.
3802
3803 2010-12-13 Eli Zaretskii <eliz@gnu.org>
3804
3805 * subr.el (posn-col-row): Evaluate header-line-format in the
3806 context of the POSITION window's buffer.
3807
3808 2010-12-13 Glenn Morris <rgm@gnu.org>
3809
3810 * subr.el (member-ignore-case, run-mode-hooks, insert-for-yank-1)
3811 (with-silent-modifications): Doc fixes.
3812
3813 2010-12-13 Michael Albinus <michael.albinus@gmx.de>
3814
3815 * net/tramp.el (tramp-action-password, tramp-process-actions):
3816 Revert previous from. Use `save-restriction'.
3817
3818 2010-12-13 Stephen Berman <stephen.berman@gmx.net>
3819
3820 * calendar/diary-lib.el (diary-list-sexp-entries):
3821 Handle case of no newline at end of file. (Bug#7536)
3822
3823 2010-12-13 Glenn Morris <rgm@gnu.org>
3824
3825 * mail/smtpmail.el (smtpmail-send-it): Revert previous change.
3826
3827 2010-12-13 Michael Albinus <michael.albinus@gmx.de>
3828
3829 * net/tramp.el (tramp-action-password): Delete region, do not narrow.
3830 (tramp-process-actions): Do not widen.
3831
3832 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3833 Protect buffer-modified value. (Bug#7557)
3834
3835 2010-12-13 Jan Moringen <jmoringe@techfak.uni-bielefeld.de>
3836
3837 * log-edit.el (log-edit-changelog-entries):
3838 Regexp quote filename. (Bug#7505)
3839
3840 2010-12-13 Tom Breton <tehom@panix.com>
3841
3842 * cus-edit.el (custom-save-all):
3843 Bind print-length and print-level to nil. (Bug#7581)
3844
3845 2010-12-13 Glenn Morris <rgm@gnu.org>
3846
3847 * mouse.el (mouse-menu-major-mode-map, mouse-menu-bar-map):
3848 Run hooks to update menu contents. (Bug#7586)
3849
3850 * mail/smtpmail.el (smtpmail-send-it): Avoid colons in the queued
3851 file names, for the sake of MS Windows. (Bug#7588)
3852
3853 2010-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
3854
3855 * diff-mode.el (diff-refine-hunk): Make it work when the hunk contains
3856 empty lines without a leading space.
3857
3858 2010-12-13 Leo <sdl.web@gmail.com>
3859
3860 * dired-aux.el (dired-do-redisplay): Postpone dired-after-readin-hook
3861 while mapping over marks (Bug#6810).
3862
3863 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3864
3865 * image-dired.el (image-dired-db-file)
3866 (image-dired-temp-image-file, image-dired-gallery-dir)
3867 (image-dired-temp-rotate-image-file): Set default values relative
3868 to image-dired-dir (Bug#7518).
3869
3870 2010-12-13 Lawrence Mitchell <wence@gmx.li>
3871
3872 * format.el (format-decode-run-method): Pass args FROM and TO, not
3873 point-min and point-max, to shell-command-on-region (Bug#7488).
3874
3875 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
3876
3877 * frame.el (blink-cursor-mode): Make default t for ns.
3878
3879 2010-12-13 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
3880
3881 * vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
3882
3883 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3884
3885 * comint.el (comint-dynamic-list-input-ring)
3886 (comint-dynamic-complete-filename)
3887 (comint-replace-by-expanded-filename)
3888 (comint-dynamic-simple-complete)
3889 (comint-dynamic-list-filename-completions)
3890 (comint-dynamic-list-completions): Doc fix (Bug#7499).
3891
3892 * subr.el (posn-x-y, posn-object-x-y, posn-object-width-height):
3893 Doc fix (Bug#7471).
3894
3895 2010-12-13 Martin Rudalics <rudalics@gmx.at>
3896
3897 * dired.el (dired-pop-to-buffer): Bind pop-up-frames to nil
3898 (Bug#7533).
3899
3900 2010-12-13 W. Martin Borgert <debacle@debian.org> (tiny change)
3901
3902 * files.el (auto-mode-alist): Handle .dbk (DocBook) with xml-mode.
3903 (Bug#7491).
3904
3905 2010-12-13 Eli Zaretskii <eliz@gnu.org>
3906
3907 * files.el (file-relative-name): Handle UNC file names on
3908 DOS/Windows. (Bug#4674)
3909
3910 2010-12-13 Daiki Ueno <ueno@unixuser.org>
3911
3912 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
3913 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
3914 (epg-context-set-passphrase-callback): Mention that the callback
3915 is not called when used with GnuPG 2.x.
3916
3917 2010-12-13 Glenn Morris <rgm@gnu.org>
3918
3919 * ps-print.el (ps-line-lengths-internal, ps-nb-pages):
3920 Ensure ps-footer-font-size-internal is initialized.
3921 Call ps-get-page-dimensions before trying to use ps-font-for-text.
3922
3923 2010-12-13 Kenichi Handa <handa@m17n.org>
3924
3925 * mail/rmailmm.el (rmail-mime-parse): Call rmail-mime-process
3926 within condition-case.
3927 (rmail-show-mime): Don't use condition-case.
3928 (rmail-search-mime-message): New function.
3929 (rmail-search-mime-message-function): Set to
3930 rmail-search-mime-message.
3931
3932 2010-12-13 Leo <sdl.web@gmail.com>
3933
3934 * ido.el (ido-common-initialization): New function. (bug#3274)
3935 (ido-mode): Use it.
3936 (ido-completing-read): Call it.
3937
3938 2010-12-12 Karl Fogel <kfogel@red-bean.com>
3939
3940 * bookmark.el (bookmark-name-from-full-record): Rename back to
3941 this original name from `bookmark-name-from-record' reverting part
3942 of 2010-12-08T08:09:27Z!kfogel@red-bean.com / kfogel@red-bean.com-20101208080927-5j9jqnb2xvcw4ogm.
3943 As Drew Adams pointed out, there was no reason to cause churn for
3944 third-party callers. (Bug#7609)
3945
3946 2010-12-12 Alan Mackenzie <acm@muc.de>
3947
3948 * progmodes/cc-engine.el (c-forward-type): Before scanning a
3949 template arglist, check that the current language supports this.
3950
3951 2010-12-11 Glenn Morris <rgm@gnu.org>
3952
3953 * vc/vc-bzr.el (vc-bzr-state-heuristic): Also check that the executable
3954 state of the file matches. (Bug#7544)
3955 (vc-bzr-register, vc-bzr-checkin)
3956 (vc-bzr-annotate-extract-revision-at-line): Doc fixes.
3957 (vc-directory-exclusion-list): Remove unnecessary eval-after-load.
3958
3959 * textmodes/sgml-mode.el (sgml-xml-guess): Add .xhtml extension.
3960
3961 2010-12-11 Karel Klíč <kklic@redhat.com>
3962
3963 * files.el (auto-mode-alist): Use html-mode for *.xhtml. (Bug#7606)
3964
3965 2010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3966
3967 Derive from prog-mode, use derived-mode-p, and fix up various
3968 minor style issues in lisp/progmodes.
3969
3970 * progmodes/vhdl-mode.el (vhdl-mode):
3971 * progmodes/verilog-mode.el (verilog-mode):
3972 * progmodes/vera-mode.el (vera-mode):
3973 * progmodes/sql.el (sql-mode):
3974 * progmodes/scheme.el (scheme-mode):
3975 * progmodes/perl-mode.el (perl-mode):
3976 * progmodes/octave-inf.el (inferior-octave-mode):
3977 * progmodes/autoconf.el (autoconf-mode):
3978 * progmodes/m4-mode.el (m4-mode):
3979 * progmodes/inf-lisp.el (inferior-lisp-mode):
3980 * progmodes/idlwave.el (idlwave-mode):
3981 * progmodes/icon.el (icon-mode):
3982 * progmodes/idlw-help.el (idlwave-help-mode):
3983 * progmodes/dcl-mode.el (dcl-mode):
3984 * progmodes/idlw-shell.el (idlwave-shell-mode):
3985 * progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-electric-list-mode)
3986 (ebrowse-member-mode, ebrowse-electric-position-mode):
3987 Use define-derived-mode.
3988
3989 * progmodes/xscheme.el (exit-scheme-interaction-mode)
3990 (xscheme-enter-interaction-mode, xscheme-enter-debugger-mode)
3991 (xscheme-debugger-mode-p, xscheme-send-string-1):
3992 * progmodes/tcl.el (inferior-tcl-proc, tcl-current-word)
3993 (tcl-load-file, tcl-restart-with-file):
3994 * progmodes/ps-mode.el (ps-run-running):
3995 * progmodes/gdb-mi.el (gud-watch, gdb-mouse-set-clear-breakpoint):
3996 * progmodes/js.el (js--get-all-known-symbols):
3997 * progmodes/inf-lisp.el (inferior-lisp-proc):
3998 * progmodes/idlwave.el (idlwave-beginning-of-statement)
3999 (idlwave-template, idlwave-update-buffer-routine-info)
4000 (idlwave-update-current-buffer-info)
4001 (idlwave-get-routine-info-from-buffers, idlwave-choose)
4002 (idlwave-scan-class-info, idlwave-fix-keywords)
4003 (idlwave-list-buffer-load-path-shadows):
4004 * progmodes/idlw-toolbar.el (idlwave-toolbar, idlwave-toolbar-add)
4005 (idlwave-toolbar-remove):
4006 * progmodes/idlw-shell.el (idlwave-shell-save-and-action)
4007 (idlwave-shell-file-name, idlwave-shell-electric-debug-all-off)
4008 (idlwave-shell-menu-def):
4009 * progmodes/idlw-complete-structtag.el
4010 (idlwave-prepare-structure-tag-completion):
4011 * progmodes/gud.el (gud-set-buffer):
4012 * progmodes/f90.el (f90-backslash-not-special):
4013 * progmodes/delphi.el (delphi-find-unit): Use derived-mode-p.
4014
4015 * progmodes/xscheme.el (xscheme-start)
4016 (local-set-scheme-interaction-buffer, scheme-interaction-mode):
4017 * progmodes/which-func.el (which-function):
4018 * progmodes/vhdl-mode.el (vhdl-set-style):
4019 * progmodes/verilog-mode.el (verilog-set-compile-command)
4020 (verilog-modify-compile-command, verilog-error-regexp-add-xemacs)
4021 (verilog-set-define, verilog-auto-reeval-locals):
4022 * progmodes/sql.el (sql-product-font-lock, sql-interactive-mode):
4023 * progmodes/simula.el (simula-mode):
4024 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
4025 * progmodes/python.el (python-check, python-mode):
4026 * progmodes/prolog.el (prolog-mode-variables):
4027 * progmodes/gud.el (gud-tooltip-activate-mouse-motions):
4028 * progmodes/ebrowse.el (ebrowse-view-file-other-frame):
4029 * progmodes/delphi.el (delphi-mode):
4030 * progmodes/cc-styles.el (c-setup-paragraph-variables):
4031 * progmodes/cc-mode.el (c-basic-common-init, c-common-init)
4032 (c-font-lock-init): Move make-local-variable to their setq.
4033
4034 * progmodes/vhdl-mode.el (vhdl-write-file-hooks-init)
4035 (vhdl-hs-minor-mode, vhdl-ps-print-init): Fix make-local-variable ->
4036 make-local-hook.
4037 * progmodes/sh-script.el (sh-require-final-newline): Remove.
4038 (sh-set-shell): Don't set require-final-newline since it's already done
4039 by prog-mode.
4040 * progmodes/modula2.el (m2-mode): Don't make m2-end-comment-column
4041 since we never set it.
4042 * progmodes/ebrowse.el (ebrowse-set-tree-indentation):
4043 Use read-string and standard prompt.
4044 * progmodes/dcl-mode.el (dcl-mode-map): Move init into declaration.
4045 * progmodes/meta-mode.el (meta-mode-abbrev-table): Merge init and decl.
4046 (meta-common-mode-syntax-table): Rename from meta-mode-syntax-table.
4047 (meta-common-mode-map): Rename from meta-mode-map.
4048 Remove C-m binding, which is a user preference, not mode specific.
4049 (meta-common-mode): New major mode; replace meta-common-initialization.
4050 * progmodes/js.el (js-mode): Call syntax-propertize rather than messing
4051 around with font-lock.
4052 * progmodes/etags.el (select-tags-table-mode):
4053 Derive from special-mode.
4054 * progmodes/octave-mod.el (octave-mode):
4055 * progmodes/gdb-mi.el (gdb-inferior-io-mode, gdb-threads-mode)
4056 (gdb-memory-mode, gdb-disassembly-mode, gdb-breakpoints-mode)
4057 (gdb-frames-mode, gdb-locals-mode, gdb-registers-mode):
4058 Let define-derived-mode do its job.
4059 * progmodes/cpp.el (cpp-edit-mode-map):
4060 Move initialization into declaration.
4061 (cpp-edit-mode): Use define-derived-mode.
4062 (cpp-edit-load): Use derived-mode-p.
4063 * progmodes/mixal-mode.el (mixal-mode):
4064 * progmodes/f90.el (f90-mode):
4065 * progmodes/cfengine.el (cfengine-mode): Don't bother setting
4066 require-final-newline since prog-mode does it already.
4067 * progmodes/cc-cmds.el (c-update-modeline): Use match-string.
4068 * progmodes/asm-mode.el (asm-mode-map): Fix menu setup.
4069 * progmodes/antlr-mode.el: Require cc-mode upfront.
4070 (antlr-mode-syntax-table, antlr-action-syntax-table): Initialize in
4071 the declaration.
4072 (antlr-directory-dependencies, antlr-show-makefile-rules):
4073 Use derived-mode-p.
4074 (antlr-language-option): Don't assume point-min==1.
4075 (antlr-mode): Use define-derived-mode.
4076 * progmodes/ada-mode.el: Use derived-mode-p.
4077 (ada-mode): Use define-derived-mode.
4078 Use hack-local-variables-hook.
4079
4080 2010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
4081
4082 * textmodes/texinfo.el (texinfo-mode-map): Bind texinfo-insert-@end.
4083 (texinfo-mode): Don't disable adaptive-fill-mode.
4084 (texinfo-insert-block): Adjust cursor placement for blocks with arg.
4085 (texinfo-insert-@end, texinfo-insert-braces, texinfo-insert-@code)
4086 (texinfo-insert-@dfn, texinfo-insert-@email, texinfo-insert-@emph)
4087 (texinfo-insert-@example, texinfo-insert-@file, texinfo-insert-@item)
4088 (texinfo-insert-@kbd, texinfo-insert-@node, texinfo-insert-@noindent)
4089 (texinfo-insert-@quotation, texinfo-insert-@samp)
4090 (texinfo-insert-@strong, texinfo-insert-@table, texinfo-insert-@var)
4091 (texinfo-insert-@uref): Use define-skeleton.
4092 (texinfo-insert-@-with-arg): Delete.
4093
4094 2010-12-10 Eli Zaretskii <eliz@gnu.org>
4095
4096 * arc-mode.el (archive-zip-extract): If w32-quote-process-args is
4097 nil, do quote archive member names. (Bug#6144)
4098
4099 2010-12-10 Glenn Morris <rgm@gnu.org>
4100
4101 * files.el (diff-no-select): Declare.
4102
4103 * mail/emacsbug.el (report-emacs-bug): Use mail-user-agent properties.
4104 (report-emacs-bug-create-existing-bugs-buffer): Avoid free variables.
4105
4106 * comint.el (comint-input-ring-file-name): Doc fix.
4107
4108 2010-12-09 Eli Zaretskii <eliz@gnu.org>
4109
4110 * menu-bar.el (menu-bar-frame-for-menubar, menu-bar-positive-p):
4111 New functions.
4112 (menu-bar-showhide-menu) <menu-bar-mode, showhide-tool-bar>:
4113 Use them instead of `nil' and `>', respectively.
4114 (menu-bar-showhide-tool-bar-menu): Use menu-bar-frame-for-menubar
4115 instead of `nil'.
4116 (toggle-menu-bar-mode-from-frame): Use menu-bar-frame-for-menubar
4117 and menu-bar-positive-p instead of `nil' and `>', respectively.
4118 (Bug#1077)
4119
4120 2010-12-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4121
4122 * whitespace.el (whitespace-newline-mode): Code fix.
4123
4124 2010-12-09 Glenn Morris <rgm@gnu.org>
4125
4126 * play/landmark.el (lm-print-y,s,noise-int, lm-print-y,s,noise):
4127 Rename functions without commas, update callers.
4128
4129 2010-12-08 Jeff Dairiki <dairiki@dairiki.org> (tiny change)
4130
4131 * whitespace.el (whitespace-cleanup-region):
4132 Clean up spaces before tabs. (Bug#7582)
4133
4134 2010-12-08 Karl Fogel <kfogel@red-bean.com>
4135
4136 * bookmark.el: Adjust parameter names and doc strings to resolve
4137 confusion over whether "bookmark" meant a bookmark name or a
4138 bookmark record. Along the way, shorten one function's name for
4139 similar reasons. (Issue #7548)
4140 (bookmark-name-from-record): New name for
4141 `bookmark-name-from-full-record'. All callers changed.
4142 (bookmark-get-bookmark, bookmark-get-bookmark-record)
4143 (bookmark-default-annotation-text, bookmark-prop-get, bookmark-prop-set)
4144 (bookmark-get-annotation, bookmark-set-annotation)
4145 (bookmark-get-filename, bookmark-set-filename)
4146 (bookmark-get-position, bookmark-set-position)
4147 (bookmark-get-front-context-string, bookmark-set-front-context-string)
4148 (bookmark-get-rear-context-string, bookmark-set-rear-context-string)
4149 (bookmark-get-handler, bookmark-edit-annotation, bookmark--jump-via)
4150 (bookmark-handle-bookmark, bookmark-location, bookmark-show-annotation):
4151 Rename `bookmark' parameter to `bookmark-name-or-record', to
4152 clearly show its role, and shorten or adjust doc strings accordingly.
4153 (bookmark-set-name): Same, and pass the parameter directly to
4154 `bookmark-get-bookmark' instead of redundantly doing the callee's work.
4155 (bookmark-default-annotation-text, bookmark-send-edited-annotation)
4156 (bookmark-relocate, bookmark-insert-location, bookmark-insert)
4157 (bookmark-delete): Rename `bookmark' parameter to `bookmark-name',
4158 and in some cases shorten doc string accordingly.
4159 (bookmark-rename): Change `old' and `new' parameters to `old-name'
4160 and `new-name', and adjust an internal variable to avoid confusion.
4161 (bookmark-jump, bookmark-jump-noselect): Clarify `bookmark'
4162 parameter in doc string.
4163
4164 2010-12-08 Glenn Morris <rgm@gnu.org>
4165
4166 * progmodes/gdb-mi.el (gdb): Try to initialize comint input history
4167 from gdb's history file. (Bug#7575)
4168
4169 * mail/emacsbug.el (report-emacs-bug):
4170 Try to handle some other mail clients.
4171
4172 2010-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
4173
4174 * files.el (dir-locals-collect-variables): Don't let errors stop us.
4175 Use string-prefix-p.
4176 (file-name-version-regexp): New var.
4177 (file-name-sans-versions):
4178 * jka-cmpr-hook.el (jka-compr-build-file-regexp): Use it,
4179 (jka-compr-get-compression-info): Use dolist.
4180 (jka-compr-compression-info-list): Don't bother specifying
4181 version/backup regexps.
4182
4183 2010-12-07 Tassilo Horn <tassilo@member.fsf.org>
4184
4185 * simple.el (just-one-space): Make argument n default to 1 if
4186 omitted.
4187
4188 2010-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
4189
4190 * electric.el (electric-indent-post-self-insert-function):
4191 Delete trailing newlines even if we don't reindent.
4192
4193 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
4194
4195 * minibuffer.el (completion-at-point): Remove the `arg'.
4196 * bindings.el (complete-symbol): Move back from minibuffer.el.
4197
4198 2010-12-06 Deniz Dogan <deniz.a.m.dogan@gmail.com>
4199
4200 * simple.el (just-one-space): Delete newlines for negative arg.
4201
4202 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
4203
4204 * ansi-color.el (ansi-color-unfontify-region): Replace by trivial def.
4205 (ansi-color-filter-apply): Simplify.
4206 (ansi-color-apply): Use `font-lock-face' rather than `face'.
4207
4208 2010-12-05 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
4209
4210 * vc/vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
4211
4212 2010-12-04 Chong Yidong <cyd@stupidchicken.com>
4213
4214 * dired.el (dired-use-ls-dired): Set default to a special
4215 "unspecified" value.
4216 (dired-insert-directory): When called the first time, check
4217 whether "ls --dired" succeeds and set dired-use-ls-dired (Bug#7546).
4218
4219 2010-12-04 Tak Ota <Takaaki.Ota@am.sony.com>
4220
4221 * replace.el: Add "collect" feature to occur.
4222 (occur-collect-regexp-history): New var.
4223 (occur-read-primary-args): Return a replace string for nlines,
4224 if needed.
4225 (occur): Extend the meaning of nlines.
4226
4227 2010-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
4228
4229 * progmodes/which-func.el (which-func-ff-hook): Log the error message.
4230 (which-func-update-1): Distinguish symbols from strings.
4231 (which-function): Stay within 80 columns.
4232
4233 2010-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4234
4235 * subr.el (with-demoted-errors): Distinguish symbols from strings.
4236
4237 * newcomment.el (comment-styles): Add docs to each style (bug#7509).
4238 Improve docstring.
4239 (comment-style): Use comment-styles's docs to describe values.
4240
4241 2010-12-03 Jan Djärv <jan.h.d@swipnet.se>
4242
4243 * term/common-win.el (x-setup-function-keys): Restore ns-new-frame
4244 and ns-show-prefs (Bug#7535).
4245
4246 * term/ns-win.el (global-map): Restore ns-new-frame and ns-show-prefs
4247 bindings (Bug#7535).
4248
4249 2010-12-03 Glenn Morris <rgm@gnu.org>
4250
4251 * nxml/nxml-mode.el: Require rng-nxml.
4252 (rng-nxml-mode-init, nxml-enable-unicode-char-name-sets):
4253 Remove declarations.
4254
4255 * nxml/nxml-mode.el, nxml/nxml-outln.el, nxml/rng-loc.el:
4256 * nxml/rng-nxml.el, nxml/rng-valid.el:
4257 Remove leading `*' from defcustom docs.
4258
4259 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
4260 (normal-top-level-add-to-load-path, tty-handle-args):
4261 Convert comments to basic doc-strings.
4262
4263 * net/browse-url.el (browse-url-url-at-point)
4264 (browse-url-default-browser): Remove autoload cookies.
4265
4266 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
4267 Remove more undefined cl functions.
4268
4269 * vc/diff.el (diff-sentinel): Make new arguments optional.
4270 * ibuf-ext.el (diff-sentinel): Update declaration.
4271
4272 2010-12-03 Daiki Ueno <ueno@unixuser.org>
4273
4274 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
4275 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
4276 (epg-context-set-passphrase-callback): Mention that the callback
4277 is not called when used with GnuPG 2.x.
4278
4279 2010-12-02 Michael Albinus <michael.albinus@gmx.de>
4280
4281 * net/tramp.el (tramp-local-host-regexp): Add "localhost6".
4282 (tramp-file-name-port): Check also for `tramp-default-port'.
4283 (tramp-get-connection-name): New defun.
4284 (tramp-get-connection-process): Use it.
4285 (tramp-debug-message): Extend function exclude list.
4286 (tramp-drop-volume-letter): Fix doc string.
4287
4288 * net/tramp-cmds.el: Remove solved todo item.
4289
4290 * net/tramp-ftp.el:
4291 * net/tramp-gvfs.el:
4292 * net/tramp-gw.el:
4293 * net/tramp-imap.el:
4294 * net/tramp-smb.el: Fix regexps added to `tramp-default-method-alist'
4295 and `tramp-default-user-alist', respectively.
4296
4297 * net/tramp-gw.el (tramp-gw-open-connection):
4298 Use `tramp-get-connection-name' and `tramp-get-connection-buffer'.
4299
4300 * net/tramp-imap.el (tramp-imap-make-iht): Use just
4301 `tramp-file-name-port'.
4302
4303 * net/tramp-sh.el (tramp-methods): Add recursive options to "pscp"
4304 and "psftp". Exchange "%k" marker with options.
4305 (tramp-do-copy-or-rename-file, tramp-sh-handle-file-local-copy):
4306 Compute size of link target.
4307 (tramp-do-copy-or-rename-file-out-of-band): Move setting of
4308 `tramp-current-*' up due to gateway methods. Optimize computing of
4309 copy arguments. Use `tramp-get-connection-name' and
4310 `tramp-get-connection-buffer'. Improve debug messages.
4311 (tramp-compute-multi-hops): Remove port determination.
4312 (tramp-maybe-open-connection): Use `tramp-get-connection-name'.
4313
4314 * net/trampver.el: Update release number.
4315
4316 2010-12-02 Glenn Morris <rgm@gnu.org>
4317
4318 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
4319 Avoid infinite loop over windows. (Bug#7492)
4320
4321 * progmodes/flymake.el (flymake-check-file-limit):
4322 Allow nil to mean "no limit".
4323 (flymake-check-patch-master-file-buffer): Update for above change.
4324 Allow a .tex file-name extension to be optional.
4325 (flymake-master-tex-init): Also match \include statements.
4326
4327 2010-11-30 Sam Steingold <sds@gnu.org>
4328
4329 * nxml/nxml-mode.el (nxml-parent-document): Add a variable.
4330 (nxml-parent-document-set): A function to set `nxml-parent-document'.
4331 (nxml-mode): Define using `define-derived-mode' instead of `defun'.
4332 (nxml-mode-hook): Remove `defcustom' (auto-defined by
4333 define-derived-mode').
4334 * nxml/rng-valid.el (rng-dtd-trivial-p): Add a helper function for
4335 users who want to call `nxml-parent-document-set'.
4336
4337 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
4338
4339 * log-edit.el (log-edit-font-lock-keywords): Don't try matching
4340 stand-alone lines, since that is handled by log-edit-match-to-eoh
4341 (Bug#6465).
4342
4343 2010-11-27 Eduard Wiebe <usenet@pusto.de>
4344
4345 * dired.el (dired-get-filename): Replace backslashes with slashes
4346 in file names on MS-Windows, needed by `locate'. (Bug#7308)
4347 * locate.el (locate-default-make-command-line): Don't consider
4348 drive letter and root directory part of
4349 `directory-listing-before-filename-regexp'. (Bug#7308)
4350 (locate-post-command-hook, locate-post-command-hook): New defcustoms.
4351
4352 2010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4353
4354 * emacs-lisp/smie.el (smie-prec2->grammar): Simplify handling
4355 of :smie-open/close-alist.
4356 (smie-next-sexp): Make it accept a "start token" as argument.
4357 (smie-indent-keyword): Be careful not to misidentify tokens that span
4358 more than one line, as empty lines. Add argument `token'.
4359
4360 2010-11-27 Kenichi Handa <handa@m17n.org>
4361
4362 * mail/rmailmm.el (rmail-mime-insert-multipart): For unsupported
4363 multipart subtypes, insert all as usual.
4364
4365 * mail/rmail.el: Require rfc2047.
4366
4367 2010-11-27 Kenichi Handa <handa@m17n.org>
4368
4369 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-type)
4370 (rmail-mime-entity-disposition)
4371 (rmail-mime-entity-transfer-encoding, rmail-mime-entity-header)
4372 (rmail-mime-entity-body, rmail-mime-entity-children): New functions.
4373 (rmail-mime-save): Handle the case that the button's `data' is a
4374 MIME entity.
4375 (rmail-mime-insert-text): New function.
4376 (rmail-mime-insert-image): Handle the case that DATA is a MIME entity.
4377 (rmail-mime-bulk-handler): Just call rmail-mime-insert-bulk.
4378 (rmail-mime-insert-bulk): New function mostly copied from the old
4379 rmail-mime-bulk-handler.
4380 (rmail-mime-multipart-handler): Just call rmail-mime-process-multipart.
4381 (rmail-mime-process-multipart): New function mostly copied from
4382 the old rmail-mime-multipart-handler.
4383 (rmail-mime-show): Just call rmail-mime-process.
4384 (rmail-mime-process): New function mostly copied from the old
4385 rmail-mime-show.
4386 (rmail-mime-insert-multipart, rmail-mime-parse)
4387 (rmail-mime-insert, rmail-show-mime)
4388 (rmail-insert-mime-forwarded-message)
4389 (rmail-insert-mime-resent-message): New functions.
4390 (rmail-insert-mime-forwarded-message-function): Set to
4391 rmail-insert-mime-forwarded-message.
4392 (rmail-insert-mime-resent-message-function): Set to
4393 rmail-insert-mime-resent-message.
4394
4395 * mail/rmailsum.el: Require rfc2047.
4396 (rmail-header-summary): Handle multiline Subject: field.
4397 (rmail-summary-line-decoder): Change the default to
4398 rfc2047-decode-string.
4399
4400 * mail/rmail.el (rmail-enable-mime): Change the default to t.
4401 (rmail-mime-feature): Change the default to `rmailmm'.
4402 (rmail-quit): Delete the specifal code for rmail-enable-mime.
4403 (rmail-display-labels): Likewise.
4404 (rmail-show-message-1): Check rmail-enable-mime, and use
4405 rmail-show-mime-function for a MIME message. Decode the headers
4406 according to RFC2047.
4407
4408 2010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4409
4410 * progmodes/which-func.el (which-func-imenu-joiner-function):
4411 Return a string, as expected.
4412 (which-function-mode): Make sure we stop any previous timer before
4413 starting a new one.
4414
4415 2010-11-27 Michael Albinus <michael.albinus@gmx.de>
4416
4417 * net/tramp.el (tramp-default-method-alist)
4418 (tramp-default-user-alist, tramp-default-proxies-alist):
4419 Adapt custom options type. (Bug#7445)
4420
4421 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
4422
4423 * progmodes/python.el: Add Ipython support (Bug#5390).
4424 (python-shell-prompt-alist)
4425 (python-shell-continuation-prompt-alist): New options.
4426 (python--set-prompt-regexp): New function.
4427 (inferior-python-mode, run-python, python-shell):
4428 Require ansi-color. Use python--set-prompt-regexp to set the comint
4429 prompt based on the Python interpreter.
4430 (python--prompt-regexp): New var.
4431 (python-check-comint-prompt)
4432 (python-comint-output-filter-function): Use it.
4433 (run-python): Use a pipe (Bug#5694).
4434
4435 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
4436
4437 * progmodes/python.el (run-python): Doc fix.
4438 (python-keep-current-directory-in-path): New var (Bug#7454).
4439
4440 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
4441
4442 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
4443 Prompt user before actually printing.
4444
4445 2010-11-27 Glenn Morris <rgm@gnu.org>
4446
4447 * startup.el (package-enable-at-startup, package-initialize):
4448 Remove unnecessary declarations.
4449
4450 2010-11-27 Eli Zaretskii <eliz@gnu.org>
4451
4452 * international/characters.el (glyphless-char-display-control):
4453 Exclude newline and TAB from the c0-control group.
4454
4455 2010-11-27 Glenn Morris <rgm@gnu.org>
4456
4457 * mail/sendmail.el (build-mail-aliases): Doc fix for autoload.
4458 (expand-mail-aliases): Remove unnecessary autoload.
4459
4460 * allout.el (allout-command-prefix, allout-mode-map): Declare.
4461
4462 * shell.el (shell-dir-cookie-re): Move definition before use.
4463
4464 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
4465 Replace undefined CL functions.
4466
4467 2010-11-26 Eli Zaretskii <eliz@gnu.org>
4468
4469 * simple.el (prog-mode): Set bidi-paragraph-direction to
4470 left-to-right.
4471
4472 * term/pc-win.el (x-get-selection-internal): Emulation for MS-DOS.
4473
4474 2010-11-26 Glenn Morris <rgm@gnu.org>
4475
4476 * calendar/diary-lib.el (diary-outlook-format-1): New function, so that
4477 diary-outlook-formats can be sensitive to calendar-date-style.
4478 (diary-outlook-formats): Simplify the default setting.
4479 (diary-from-outlook-internal): Pass subject and body as arguments.
4480 Use dolist rather than dotimes. Don't save the diary buffer.
4481 (diary-from-outlook-gnus, diary-from-outlook-rmail):
4482 Pass subject and body as explicit arguments to the -internal function.
4483
4484 2010-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4485
4486 * mail/rfc2368.el (rfc2368-parse-mailto-url): Unfold URLs before
4487 parsing them. This makes mailto:...?subject=foo\nbar work.
4488
4489 2010-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4490
4491 * vc/diff.el (diff): Fix last change.
4492
4493 2010-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4494
4495 * emacs-lisp/pcase.el: Improve pcase-let. Use "pcase--" prefix.
4496 (pcase--dontcare-upats): New var.
4497 (pcase-let, pcase-let*): Generate better code.
4498 Accept the same bodies as `let'.
4499 (pcase-dolist): New macro.
4500 (pcase--trivial-upat-p): New helper function.
4501 (pcase--expand): Strip leading "(let nil" if any.
4502
4503 2010-11-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4504
4505 * mail/mailclient.el (browse-url): Require.
4506 (mailclient-send-it): Bind `browse-url-mailto-function' to nil to
4507 use the external browser function to send the mail (bug#7469).
4508
4509 * net/browse-url.el (browse-url-browser-function): Revert the
4510 default back to the previous value, since the new value broke
4511 mailclient.el.
4512 (browse-url-mailto-function): New variable for mailto: URLs.
4513 (browse-url): Use the new variable for mailto: URLs.
4514
4515 2010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4516
4517 * eshell/esh-cmd.el (eshell-parse-command):
4518 * eshell/esh-arg.el (eshell-parse-arguments):
4519 * eshell/em-script.el (eshell-source-file):
4520 Use with-silent-modifications.
4521
4522 2010-11-23 Chong Yidong <cyd@stupidchicken.com>
4523
4524 * vc/vc.el (vc-merge): Remove optional arg PROMPT. Always prompt
4525 for a merge location.
4526
4527 * vc/vc-bzr.el (vc-bzr-pull): Remove unused var.
4528 (vc-bzr-merge-branch): Always prompt.
4529 (vc-bzr-async-command): Use the full branch filename.
4530
4531 2010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4532
4533 * shell.el (shell): Use current-buffer by default if it's already
4534 a shell mode buffer and its process is dead.
4535 Suggested by Jose E. Marchesi <jemarch@gnu.org>.
4536
4537 2010-11-23 Tassilo Horn <tassilo@member.fsf.org>
4538
4539 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
4540 Mention that the keywords should be comma separated.
4541
4542 2010-11-23 Chong Yidong <cyd@stupidchicken.com>
4543
4544 * vc/vc.el (vc-merge): Use vc-BACKEND-merge-branch if available.
4545 Accept optional prefix arg meaning to prompt for a command.
4546 (vc-update): Use vc-BACKEND-pull if available. Accept optional
4547 prefix arg meaning to prompt for a command.
4548 (vc-pull): Alias for vc-update.
4549
4550 * vc/vc-bzr.el (vc-bzr-admin-branchconf, vc-bzr-history): New vars.
4551 (vc-bzr--branch-conf, vc-bzr-async-command, vc-bzr-pull)
4552 (vc-bzr-merge-branch): New functions, implementing merge-branch
4553 and pull operations.
4554
4555 2010-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
4556
4557 * Makefile.in: Fix up last merge.
4558
4559 * vc/diff.el (diff-old-temp-file, diff-new-temp-file): Remove.
4560 (diff-sentinel): Get them as arguments instead.
4561 (diff-old-file, diff-new-file, diff-extra-args): Remove.
4562 (diff-file-local-copy, diff-better-file-name): New funs.
4563 (diff-no-select): Rename from diff-into-buffer.
4564 Support buffers additionally to files. Move `buf' arg. Don't display buf.
4565 Prefer closures to buffer-local variables.
4566 (diff): Adjust accordingly.
4567 (diff-buffer-with-file): Move from files.el.
4568 * files.el (diff-buffer-with-file): Move to vc/diff.el.
4569 (diff-buffer-internal): Remove.
4570 (diff-buffer-buffer): Remove.
4571 (save-some-buffers-action-alist): Use diff-no-select so as not to guess
4572 the buffer name used, and so as not to mess up windows and frames.
4573
4574 2010-11-22 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
4575
4576 * files.el: Make revert work with diff-buffer-with-file (bug#7277).
4577 (diff-buffer-internal): New function extracted from diff-buffer-with-file
4578 (diff-buffer-with-file): Use it.
4579 * vc/diff.el (diff-into-buffer): New fun, extracted from diff.
4580 (diff): Use it.
4581
4582 2010-11-22 Tassilo Horn <tassilo@member.fsf.org>
4583
4584 * textmodes/reftex-ref.el (reftex-goto-label): Use the current
4585 \ref's or \pageref's value as default instead of initial input.
4586
4587 2010-11-21 Michael Albinus <michael.albinus@gmx.de>
4588
4589 * files.el (backup-by-copying-when-mismatch): The default value is
4590 now t.
4591
4592 * startup.el (normal-top-level):
4593 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
4594 `backup-by-copying-when-mismatch'.
4595
4596 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
4597
4598 * tool-bar.el (tool-bar-setup): Remove save as, print and customize.
4599
4600 2010-11-21 Deniz Dogan <deniz.a.m.dogan@gmail.com>
4601
4602 * progmodes/python.el (python-font-lock-keywords):
4603 Highlight top-level augmented assignments (Bug#6445).
4604
4605 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
4606
4607 * term/ns-win.el (ns-right-control-modifier)
4608 (ns-right-command-modifier): Defvar them.
4609
4610 * cus-start.el (all): Add ns-right-control-modifier and
4611 ns-right-command-modifier (Bug#7458).
4612
4613 2010-11-20 Glenn Morris <rgm@gnu.org>
4614
4615 * emacs-lisp/authors.el (authors-ignored-files)
4616 (authors-valid-file-names, authors-renamed-files-alist): Add entries.
4617
4618 2010-11-20 Tassilo Horn <tassilo@member.fsf.org>
4619
4620 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs)
4621 (report-emacs-bug-parse-query-results)
4622 (report-emacs-bug-create-existing-bugs-buffer): Pass through
4623 keywords used for querying the bug database to show them in the
4624 existing bugs buffer.
4625
4626 2010-11-20 Jan Djärv <jan.h.d@swipnet.se>
4627
4628 * tool-bar.el (tool-bar-setup): Add some :vert-only keywords.
4629
4630 * info.el (info-tool-bar-map): Add some :vert-only keywords.
4631
4632 2010-11-20 Eli Zaretskii <eliz@gnu.org>
4633
4634 * international/characters.el (glyphless-char-display-control):
4635 Make it a defcustom, with update-glyphless-char-display as its
4636 :set attribute.
4637 (top level): Don't call update-glyphless-char-display.
4638
4639 2010-11-20 Michael Albinus <michael.albinus@gmx.de>
4640
4641 Sync with Tramp 2.2.0.
4642
4643 * net/tramp.el (tramp-handle-insert-file-contents): Don't use
4644 `file-remote-p' (due to compatibility).
4645
4646 * net/tramp-sh.el (tramp-do-copy-or-rename-file-directly)
4647 (tramp-do-copy-or-rename-file-out-of-band): Use `ignore-errors'.
4648
4649 * net/trampver.el: Update release number.
4650
4651 2010-11-20 Eli Zaretskii <eliz@gnu.org>
4652
4653 * faces.el (glyphless-char): Define value for `pc'.
4654
4655 2010-11-20 Tassilo Horn <tassilo@member.fsf.org>
4656
4657 Implemented a bug querying mechanism.
4658 * mail/emacsbug.el (report-emacs-bug-tracker-url): New variable.
4659 (report-emacs-bug-create-existing-bugs-buffer)
4660 (report-emacs-bug-parse-query-results)
4661 (report-emacs-bug-query-existing-bugs): New functions.
4662
4663 2010-11-19 Tassilo Horn <tassilo@member.fsf.org>
4664
4665 * textmodes/reftex-ref.el (reftex-goto-label): If point is inside
4666 a \ref{} or \pageref{} macro, then use its value as initial input.
4667
4668 2010-11-19 Jay Belanger <jay.p.belanger@gmail.com>
4669
4670 * calc/calc-units.el (math-build-units-table-buffer):
4671 calc/README: Mention that the TeX specific units won't use the
4672 `tex' prefix in TeX mode.
4673 calc/calc-lang.el (math-variable-table): Don't use the `tex'
4674 prefix for units in TeX mode.
4675
4676 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4677
4678 * simple.el (kill-new, kill-append, kill-region):
4679 * comint.el (comint-kill-region): Make the yank-handler argument
4680 obsolete.
4681
4682 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4683
4684 * emacs-lisp/smie.el (smie-bnf-classify): Signal errors for tokens
4685 that are both openers (resp. closers) and something else.
4686 (smie-grammar): Loosen definition of valid values.
4687 (smie-next-sexp, smie-down-list, smie-blink-matching-open)
4688 (smie-indent--parent, smie-rule-parent, smie-indent-keyword)
4689 (smie-indent-after-keyword): Adjust users.
4690 (smie-indent-keyword): Don't indent empty lines.
4691
4692 * vc-hg.el (vc-hg-program): New var.
4693 Suggested by Norman Gray <norman@astro.gla.ac.uk>.
4694 (vc-hg-state, vc-hg-working-revision, vc-hg-command): Use it.
4695
4696 2010-11-18 Glenn Morris <rgm@gnu.org>
4697
4698 * emacs-lisp/autoload.el (autoload-find-destination): The function
4699 coding-system-eol-type may return non-numeric values. (Bug#7414)
4700
4701 2010-11-18 Ulrich Mueller <ulm@gentoo.org>
4702
4703 * server.el (server-force-stop): Ensure the server is stopped (Bug#7409).
4704
4705 2010-11-18 Eli Zaretskii <eliz@gnu.org>
4706
4707 * subr.el (posn-col-row): Pay attention to header line. (Bug#7390)
4708
4709 2010-11-18 Chong Yidong <cyd@stupidchicken.com>
4710
4711 * textmodes/picture.el (picture-mouse-set-point): Don't use
4712 posn-col-row; explicitly compute the motion based on the posn at
4713 the window-start (Bug#7390).
4714
4715 2010-11-18 Glenn Morris <rgm@gnu.org>
4716
4717 * novice.el (disabled-command-function):
4718 Fix 2009-11-15 change. (Bug#7384)
4719
4720 2010-11-18 Glenn Morris <rgm@gnu.org>
4721
4722 * calendar/calendar.el (diary-iso-date-forms): Make elements
4723 mutually exclusive. (Bug#7377)
4724
4725 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4726
4727 * emacs-lisp/smie.el (smie-prec2->grammar): Obey equality constraints
4728 when filling the remaining "unconstrained" values.
4729
4730 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4731
4732 * emacs-lisp/bytecomp.el (byte-compile-warnings): Simplify the
4733 safety predicate.
4734
4735 * files.el (safe-local-variable-p): Gracefully handle errors.
4736
4737 * emacs-lisp/smie.el (smie-rule-parent, smie-indent--rule):
4738 Use smie-indent-virtual when indenting relative to an opener.
4739 (smie-rule-separator): Use smie-rule-parent.
4740 (smie-indent-keyword): Consult rules, even for openers at bol.
4741 (smie-indent-comment-close): Try to align closer's content.
4742
4743 2010-11-18 Glenn Morris <rgm@gnu.org>
4744
4745 * ls-lisp.el (ls-lisp-dired-ignore-case): Make it an obsolete alias.
4746
4747 2010-11-18 Glenn Morris <rgm@gnu.org>
4748
4749 * printing.el (pr-menu-bind): Doc fix.
4750
4751 * speedbar.el (speedbar-toggle-images): Doc fix.
4752
4753 * progmodes/python.el (python-shell): Doc fix.
4754
4755 * wid-edit.el (widget-field-use-before-change)
4756 (widget-use-overlay-change): Doc fixes.
4757
4758 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4759
4760 Minor cleanup to improve style.
4761 * textmodes/rst.el (rst-update-section): Use point-marker.
4762 (rst-get-decoration): Eliminate unneeded assignment.
4763 (rst-promote-region, rst-straighten-decorations)
4764 (rst-section-tree, rst-adjust): Use point-marker.
4765 (rst-toc-mode-mouse-goto): Avoid setq.
4766 (rst-shift-region-guts, rst-shift-region-left)
4767 (rst-iterate-leftmost-paragraphs, rst-iterate-leftmost-paragraphs-2)
4768 (rst-convert-bullets-to-enumeration): Use copy-marker.
4769
4770 * minibuffer.el (completion-fail-discreetly): New var.
4771 (completion--do-completion): Use it.
4772
4773 * electric.el (electric-pair-pairs): New var.
4774 (electric-pair-post-self-insert-function): Use it.
4775 (electric-layout-post-self-insert-function): Don't insert a before
4776 newline unless it's actually needed.
4777
4778 2010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
4779
4780 * progmodes/python.el (run-python): Explain why we remove the current
4781 directory from sys.path. Suggested by Eric Hanchrow <erich@cozi.com>.
4782
4783 * progmodes/grep.el (grep-regexp-alist): Tighten the regexp (bug#7378).
4784
4785 2010-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4786
4787 * progmodes/octave-mod.el: Rely on elecric-*-modes.
4788 (octave-mode-map): Don't bind ;, SPC, and LF.
4789 (octave-auto-indent, octave-auto-newline): Remove.
4790 (electric-layout-rules): Declare.
4791 (octave-mode): Set electric-layout-rules.
4792 (octave-indent-new-comment-line): Use reindent-then-newline-and-indent.
4793 (octave-reindent-then-newline-and-indent, octave-electric-semi)
4794 (octave-electric-space): Remove.
4795
4796 * electric.el (electric-layout-mode): New minor mode.
4797 (electric--after-char-pos): New function.
4798 (electric-indent-post-self-insert-function): Use it.
4799 (electric-layout-rules): New var.
4800 (electric-layout-post-self-insert-function): New function.
4801 (electric-indent-mode): Make them interact better.
4802
4803 2010-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4804
4805 * emacs-lisp/checkdoc.el (checkdoc-syntax-table): Fix last change.
4806 (checkdoc-sentencespace-region-engine, checkdoc-this-string-valid)
4807 (checkdoc-proper-noun-region-engine): Use with-syntax-table.
4808
4809 2010-11-15 Agustín Martín <agustin.martin@hispalinux.es>
4810
4811 * textmodes/flyspell.el (flyspell-generic-progmode-verify):
4812 Make sure to check inside the word (Bug#6761).
4813
4814 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
4815
4816 * startup.el (command-line): If the cursorColor resource is set,
4817 change the cursor face-spec (Bug#7392).
4818
4819 2010-11-13 Ken Manheimer <ken.manheimer@gmail.com>
4820
4821 The main features of the following allout.el changes are:
4822 - implement user customization for the allout key bindings
4823 - add a customization control by which the user can inhibit use of
4824 a trailing Ctrl-H, so by default it's reserved for use with
4825 describe-prefix-bindings
4826 - adapt to new version of called-interactively-p, while
4827 maintaining backwards compatibility with old version
4828 - fix hotspot navigation so i works properly with meta-modified keys.
4829
4830 * allout.el (allout-keybindings, allout-bind-keys)
4831 (allout-keybindings-binding, allout-prefixed-keybindings)
4832 (allout-unprefixed-keybindings, allout-preempt-trailing-ctrl-h)
4833 (allout-keybindings-list, allout-mode-map-adjustments)
4834 (allout-setup-mode-map): Establish allout-mode keymaps as user
4835 customizable settings, and also establish a customizable setting which
4836 regulates whether or not a trailing control-h is reserved for use with
4837 describe-prefix-bindings - and inhibit it by default, so that control-h
4838 *is* reserved for describe-prefix-bindings unless the user changes it.
4839
4840 * allout.el (allout-hotspot-key-handler): Distinguish more explicitly
4841 and accurately between modified and unmodified events, and handle
4842 modified events more comprehensively.
4843
4844 * allout.el (allout-substring-no-properties):
4845 Alias to use or provide version of `substring-no-properties'.
4846 (allout-solicit-alternate-bullet): Use `allout-substring-no-properties'.
4847
4848 * allout.el (allout-next-single-char-property-change):
4849 Alias to use or provide version of `next-single-char-property-change'.
4850 (allout-annotate-hidden, allout-hide-by-annotation):
4851 Use `allout-next-single-char-property-change'.
4852
4853 * allout.el (allout-select-safe-coding-system):
4854 Alias to use or provide version of `select-safe-coding-system'.
4855 (allout-toggle-subtree-encryption):
4856 Use `allout-select-safe-coding-system'.
4857
4858 * allout.el (allout-set-buffer-multibyte):
4859 Alias to use or provide version of `set-buffer-multibyte'.
4860 (allout-encrypt-string): Use `allout-set-buffer-multibyte'.
4861
4862 * allout.el (allout-called-interactively-p): Macro for using the
4863 different versions of called-interactively-p identically, depending on
4864 the subroutine's argument signature.
4865 (allout-back-to-current-heading, allout-beginning-of-current-entry):
4866 Use `(interactive "p")' instead of `(called-interactively-p)'.
4867
4868 * allout.el (allout-init, allout-ascend, allout-end-of-level)
4869 (allout-previous-visible-heading, allout-forward-current-level)
4870 (allout-backward-current-level, allout-show-children):
4871 Use `allout-called-interactively-p' instead of `called-interactively-p'.
4872
4873 * allout.el (allout-before-change-handler):
4874 Exempt edits to the (overlaid) character after the allout outline
4875 bullet from edit confirmation prompt.
4876
4877 * allout.el (allout-add-resumptions):
4878 Ensure that it respects correct buffer for keybindings.
4879
4880 * allout.el (allout-beginning-of-line):
4881 Use `allout-previous-single-char-property-change' alias for the sake of
4882 diverse compatibility.
4883
4884 * allout.el (allout-end-of-line):
4885 Use `allout-mark-active-p' to encapsulate respect for mark activity.
4886
4887 2010-11-13 Chong Yidong <cyd@stupidchicken.com>
4888
4889 * frame.el (frame-notice-user-settings): Don't clobber other
4890 user-set parameters when calling face-set-after-frame-default in
4891 response to background-color parameter (Bug#7373).
4892
4893 2010-11-13 Eli Zaretskii <eliz@gnu.org>
4894
4895 * international/characters.el (glyphless-char-display-control):
4896 Rename from glyphless-char-control; all users changed. Doc fix.
4897 Signal an error if display method is not one of the recognized
4898 symbols.
4899
4900 2010-11-13 Michael Albinus <michael.albinus@gmx.de>
4901
4902 * net/tramp-compat.el (tramp-compat-line-beginning-position)
4903 (tramp-compat-line-end-position): Remove them.
4904
4905 * net/tramp.el (tramp-parse-rhosts-group)
4906 (tramp-parse-shosts-group, tramp-parse-sconfig-group)
4907 (tramp-parse-hosts-group, tramp-parse-passwd-group)
4908 (tramp-parse-netrc-group, tramp-parse-putty-group)
4909 * net/tramp-cmds.el (tramp-append-tramp-buffers)
4910 * net/tramp-sh.el (tramp-do-file-attributes-with-ls)
4911 (tramp-sh-handle-file-selinux-context)
4912 (tramp-sh-handle-file-name-all-completions)
4913 (tramp-sh-handle-insert-directory)
4914 (tramp-sh-handle-expand-file-name, tramp-find-executable)
4915 (tramp-wait-for-output, tramp-send-command-and-read)
4916 * net/tramp-smb.el (tramp-smb-read-file-entry)
4917 (tramp-smb-get-cifs-capabilities): Use `point-at-eol'.
4918
4919 * net/tramp-sh.el (tramp-sh-handle-insert-directory) Use
4920 `point-at-bol'.
4921 (tramp-remote-coding-commands): Add an alternative using "base64
4922 -d -i". This is needed for older base64 versions from GNU
4923 coreutils. Reported by Klaus Reichl
4924 <Klaus.Reichl@thalesgroup.com>.
4925
4926 2010-11-13 Hrvoje Niksic <hniksic@xemacs.org>
4927
4928 * simple.el (count-words-region): New function.
4929
4930 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4931
4932 * shell.el (shell-dir-cookie-re): New custom variable.
4933 (shell-dir-cookie-watcher): New function.
4934
4935 * vc/vc.el (vc-deduce-backend): Use default-directory in shell-mode
4936 and compilation-mode (bug#7350).
4937
4938 * vc/smerge-mode.el (smerge-refine): Choose better default part to
4939 highlight when one of them is empty.
4940
4941 * skeleton.el (skeleton-read): Don't use `newline' since it may strip
4942 trailing space.
4943 (skeleton-newline): New function.
4944 (skeleton-internal-1): Use it.
4945
4946 * simple.el (open-line): `newline' may strip trailing space.
4947
4948 2010-11-12 Kevin Ryde <user42@zip.com.au>
4949
4950 * international/mule-cmds.el (princ-list): Use mapc.
4951
4952 2010-11-12 Glenn Morris <rgm@gnu.org>
4953
4954 * emacs-lisp/bytecomp.el (byte-compile-log-buffer): New constant.
4955 Use it to replace all instances of "*Compile-Log*".
4956
4957 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4958
4959 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Add debug and
4960 indentation specs.
4961
4962 2010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4963
4964 * progmodes/modula2.el: Use SMIE and skeleton.
4965 (m2-mode-syntax-table): (*..*) can be nested.
4966 Add //...\n. Fix paren syntax.
4967 (m2-mode-map): Remove LF and TAB bindings.
4968 (m2-indent): Add safety property.
4969 (m2-smie-grammar): New var.
4970 (m2-smie-refine-colon, m2-smie-refine-of, m2-smie-backward-token)
4971 (m2-smie-forward-token, m2-smie-refine-semi, m2-smie-rules): New funs.
4972 (m2-mode): Use define-derived-mode.
4973 (m2-newline, m2-tab): Remove.
4974 (m2-begin, m2-case, m2-definition, m2-else, m2-for, m2-header)
4975 (m2-if, m2-loop, m2-module, m2-or, m2-procedure, m2-with, m2-record)
4976 (m2-stdio, m2-type, m2-until, m2-var, m2-while, m2-export)
4977 (m2-import): Use define-skeleton.
4978
4979 2010-11-11 Glenn Morris <rgm@gnu.org>
4980
4981 * obsolete/lucid.el: Don't warn about any CL functions in this file.
4982
4983 * ls-lisp.el (ls-lisp-ignore-case, ls-lisp-dirs-first)
4984 (ls-lisp-verbosity): Add custom :set-after property.
4985 (ls-lisp-verbosity, ls-lisp-use-localized-time-format): Doc fixes.
4986 (ls-lisp-format, ls-lisp-format-time): Don't take `now' as an argument.
4987 (ls-lisp-insert-directory): Update caller.
4988 (ls-lisp-set-options): New function.
4989 (ls-lisp-emulation): Use ls-lisp-set-options for custom :set.
4990 Doc fix.
4991
4992 * play/landmark.el (lm-prompt-for-move):
4993 * play/gomoku.el (gomoku-prompt-for-move): Remove nonsensical code.
4994
4995 * progmodes/idlw-complete-structtag.el: Remove unused dec `name'.
4996
4997 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins)
4998 (idlwave-study-twins): Prefix dynamic local variable `name'.
4999 (idlwave-routine-twin-compare): Update for above change.
5000
5001 * progmodes/idlw-help.el (idlwave-do-mouse-completion-help):
5002 Prefix dynamic local variables `name', `kwd', and `link'.
5003 * progmodes/idlw-shell.el (idlwave-shell-complete-execcomm-help):
5004 * progmodes/idlw-complete-structtag.el
5005 (idlwave-complete-structure-tag-help):
5006 * progmodes/idlwave.el (idlwave-complete-sysvar-help)
5007 (idlwave-complete-sysvar-tag-help)
5008 (idlwave-complete-class-structure-tag-help):
5009 Update for above name changes.
5010
5011 2010-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
5012
5013 * net/browse-url.el (browse-url-browser-function): Change the
5014 default to use `browse-url-mail' on mailto: URLs.
5015
5016 2010-11-10 Chong Yidong <cyd@stupidchicken.com>
5017
5018 * emacs-lisp/package.el (package-read-all-archive-contents):
5019 Reset package-archive-contents to nil before re-reading.
5020
5021 2010-11-10 Brandon Craig Rhodes <brandon@rhodesmill.org> (tiny change)
5022
5023 * textmodes/flyspell.el (flyspell-word): Do not re-check words
5024 already found as misspellings by (flyspell-large-region), just
5025 do highlighting (bug#7322).
5026
5027 2010-11-10 Glenn Morris <rgm@gnu.org>
5028
5029 * progmodes/octave-mod.el (octave-mark-block): Update for smie change.
5030
5031 * emulation/edt.el (edt-with-position): New macro.
5032 (edt-find-forward, edt-find-backward, edt-find-next-forward)
5033 (edt-find-next-backward, edt-sentence-forward, edt-sentence-backward)
5034 (edt-paragraph-forward, edt-paragraph-backward): Use it.
5035
5036 * emulation/tpu-extras.el (tpu-with-position): New macro.
5037 (tpu-paragraph, tpu-page, tpu-search-internal): Use it.
5038
5039 * textmodes/texnfo-upd.el (texinfo-pointer-name): Fix typo.
5040
5041 * textmodes/texnfo-upd.el (texinfo-all-menus-update)
5042 (texinfo-menu-copy-old-description, texinfo-start-menu-description)
5043 (texinfo-master-menu, texinfo-insert-node-lines)
5044 (texinfo-multiple-files-update):
5045 * textmodes/texinfmt.el (texinfo-append-refill, texinfo-copying):
5046 Use line-beginning-position.
5047
5048 * progmodes/cperl-mode.el (cperl-find-pods-heres, cperl-write-tags):
5049 No recent Emacs supports system-type `emx'.
5050
5051 * progmodes/ada-xref.el (is-windows): Rename to ada-on-ms-windows.
5052 (ada-command-separator, ada-default-prj-properties)
5053 (ada-find-any-references): Update for above name change.
5054
5055 * dirtrack.el (dirtrack-directory-function)
5056 (dirtrack-canonicalize-function):
5057 * filecache.el (file-cache-completion-ignore-case)
5058 (file-cache-case-fold-search, file-cache-ignore-case):
5059 * term.el (serial-port-is-file-p): Cosmetic change.
5060
5061 * emulation/viper-init.el (viper-ms-style-os-p): Doc fix.
5062 Remove non-existent `windows-95' system-type.
5063 * dired.el (dired-chown-program): Remove non-existent `linux'
5064 system-type.
5065
5066 * net/net-utils.el (net-utils-remove-ctl-m): Use memq for system-types.
5067 (ping-program-options): Remove non-existent `linux' system-type.
5068
5069 * startup.el (package-initialize): Update declaration.
5070
5071 * ls-lisp.el (ls-lisp-time-lessp, ls-lisp-time-to-seconds): Remove.
5072 (ls-lisp-handle-switches): Use time-less-p.
5073 (ls-lisp-format-time): Use float-time.
5074
5075 * textmodes/remember.el (remember-time-to-seconds): Remove.
5076 (remember-store-in-mailbox): Use float-time.
5077
5078 * calendar/timeclock.el (timeclock-time-to-seconds): Make it an alias.
5079
5080 * calendar/time-date.el (time-to-seconds): Always an alias on Emacs,
5081 never a real function.
5082 (with-no-warnings): Remove compat stub, now unused.
5083 (time-less-p): Doc fix.
5084 (time-to-number-of-days): Simplify.
5085
5086 * eshell/esh-util.el (eshell-time-less-p, eshell-time-to-seconds):
5087 Remove.
5088 (eshell-read-passwd, eshell-read-hosts): Use time-less-p.
5089 * eshell/esh-test.el (eshell-test, eshell-show-usage-metrics):
5090 * eshell/em-unix.el (eshell-show-elapsed-time, eshell/time):
5091 * eshell/em-pred.el (eshell-pred-file-time): Use float-time.
5092 * eshell/em-ls.el (eshell-ls-sort-entries): Use time-less-p.
5093
5094 * eshell/em-unix.el (eshell-remove-entries, eshell/rm)
5095 (eshell-shuffle-files, eshell-shorthand-tar-command)
5096 (eshell-mvcpln-template, eshell/mv, eshell/cp, eshell/ln):
5097 Prefix dynamic locals `interactive', `preview', `recursive', `verbose'.
5098 * eshell/em-glob.el (eshell-extended-glob, eshell-glob-entries):
5099 Prefix dynamic local variable `matches'.
5100
5101 * skeleton.el (skeleton-internal-list, skeleton-internal-1):
5102 Prefix dynamic local variable `skeleton'.
5103
5104 2010-11-10 Katsumi Yamaoka <yamaoka@jpl.org>
5105
5106 * net/browse-url.el (browse-url-mail): Insert body part of mailto url
5107 in mail buffer; make yank-action always a command that yanks original
5108 buffer.
5109
5110 2010-11-09 Glenn Morris <rgm@gnu.org>
5111
5112 * progmodes/tcl.el (tcl-hairy-scan-for-comment): Doc fix.
5113
5114 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
5115
5116 * minibuffer.el (minibuffer-completion-help): Specify the end of the
5117 completion field (bug#7211).
5118
5119 * progmodes/python.el (python-font-lock-syntactic-keywords): (bug#7322)
5120 Fix handling of backslash escapes.
5121 (python-quote-syntax): Adjust accordingly.
5122
5123 2010-11-09 Richard Levitte <richard@levitte.org> (tiny change)
5124
5125 * vc-mtn.el (vc-mtn-working-revision, vc-mtn-after-dir-status)
5126 (vc-mtn-workfile-branch): Adjust to new output format.
5127
5128 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
5129
5130 * international/mule-cmds.el (princ-list): Mark as obsolete.
5131
5132 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
5133
5134 * emacs-lisp/smie.el: New package.
5135
5136 2010-11-09 Michael Albinus <michael.albinus@gmx.de>
5137
5138 * files.el (backup-by-copying-when-mismatch):
5139 Set `permanent-local' property.
5140
5141 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
5142 `permanent-local' property for `backup-by-copying-when-mismatch'.
5143
5144 2010-11-09 Eli Zaretskii <eliz@gnu.org>
5145
5146 * ls-lisp.el (insert-directory): Doc fix. (bug#7285)
5147
5148 2010-11-09 Wilson Snyder <wsnyder@wsnyder.org>
5149
5150 * progmodes/verilog-mode.el (verilog-insert-one-definition)
5151 (verilog-read-decls, verilog-read-sub-decls-sig): Fix AUTOWIRE and
5152 AUTOINOUT for SV style multidimensional arrays, bug294.
5153 Reported by Eric Mastromarchi.
5154 (verilog-preprocess): Use with-current-buffer and
5155 font-lock-fontify-buffer to cleanup style issues.
5156
5157 2010-11-09 Glenn Morris <rgm@gnu.org>
5158
5159 * locate.el (locate, locate-mode): Doc fixes.
5160
5161 2010-11-09 Chong Yidong <cyd@stupidchicken.com>
5162
5163 * server.el (server-start): New arg INHIBIT-PROMPT prevents asking
5164 user for confirmation.
5165 (server-force-stop): Use it.
5166 (server-start): Use server-force-stop for kill-emacs-hook, to
5167 avoid user interaction while killing Emacs.
5168
5169 2010-11-09 Glenn Morris <rgm@gnu.org>
5170
5171 * progmodes/meta-mode.el: Remove leading `*' from defcustom docs.
5172 (meta-indent-line): Simplify.
5173
5174 * vc/emerge.el (emerge-line-number-in-buf):
5175 * textmodes/ispell.el (ispell-region):
5176 * textmodes/fill.el (current-fill-column):
5177 * progmodes/xscheme.el (xscheme-send-current-line):
5178 * progmodes/vhdl-mode.el (vhdl-current-line, vhdl-line-copy):
5179 * progmodes/tcl.el (tcl-hairy-scan-for-comment):
5180 * progmodes/sh-script.el (sh-handle-prev-do):
5181 * progmodes/meta-mode.el (meta-indent-line):
5182 * progmodes/idlwave.el (idlwave-goto-comment, idlwave-fill-paragraph)
5183 (idlwave-in-quote):
5184 * progmodes/idlw-shell.el (idlwave-shell-current-frame)
5185 (idlwave-shell-update-bp-overlays, idlwave-shell-sources-filter):
5186 * progmodes/fortran.el (fortran-looking-at-if-then):
5187 * progmodes/etags.el (find-tag-in-order, etags-snarf-tag):
5188 * progmodes/cperl-mode.el (cperl-sniff-for-indent)
5189 (cperl-find-pods-heres):
5190 * progmodes/ada-mode.el (ada-get-current-indent, ada-narrow-to-defun):
5191 * net/quickurl.el (quickurl-list-insert):
5192 * net/ldap.el (ldap-search-internal):
5193 * net/eudc.el (eudc-expand-inline):
5194 * mail/sendmail.el (sendmail-send-it):
5195 * mail/mspools.el (mspools-visit-spool, mspools-get-spool-name):
5196 * emulation/viper-cmd.el (viper-paren-match, viper-backward-indent)
5197 (viper-brac-function):
5198 * calc/calc-yank.el (calc-do-grab-region):
5199 * calc/calc-keypd.el (calc-keypad-press):
5200 * term.el (term-move-columns, term-insert-spaces):
5201 * speedbar.el (speedbar-highlight-one-tag-line):
5202 * simple.el (current-word):
5203 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
5204 * info.el (Info-find-node-in-buffer-1, Info-follow-reference)
5205 (Info-scroll-down):
5206 * hippie-exp.el (he-line-beg):
5207 * epa.el (epa--marked-keys):
5208 * dired-aux.el (dired-kill-line, dired-do-kill-lines)
5209 (dired-update-file-line, dired-add-entry, dired-remove-entry)
5210 (dired-relist-entry):
5211 * buff-menu.el (Buffer-menu-buffer):
5212 * array.el (current-line):
5213 * allout.el (allout-resolve-xref)
5214 (allout-latex-verbatim-quote-curr-line):
5215 Replace yet more uses of end-of-line etc with line-end-position, etc.
5216
5217 2010-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
5218
5219 * emacs-lisp/checkdoc.el (checkdoc-display-status-buffer)
5220 (checkdoc-interactive-loop, checkdoc-recursive-edit): Avoid princ-list.
5221 (checkdoc-syntax-table): Initialize in the declaration.
5222 (emacs-lisp-mode-hook): Use just checkdoc-minor-mode now that it turns
5223 the mode on unconditionally.
5224
5225 * emacs-lisp/cl-macs.el (extent-data, extent-face, extent-priority)
5226 (extent-end-position, extent-start-position): Remove setf method for
5227 non-existing functions (bug#7319).
5228
5229 2010-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
5230
5231 * emacs-lisp/smie.el: Simplify the smie-rules-function return values.
5232 (smie-precs->prec2): Rename from smie-precs-precedence-table.
5233 (smie-bnf->prec2): Rename from smie-bnf-precedence-table.
5234 (smie-prec2->grammar): Rename from smie-prec2-levels.
5235 (smie-grammar): Rename from smie-op-levels.
5236 (smie-indent--hanging-p): Rename from smie-hanging-p.
5237 (smie-rule-hanging-p): New alias.
5238 (smie-indent--bolp): Rename from smie-bolp.
5239 (smie-indent--hanging-p): New alias.
5240 (smie--token): New dynamically bound variable.
5241 (smie-indent--parent): New function.
5242 (smie-rule-parent-p): Use it; rename from smie-parent-p.
5243 (smie-rule-next-p): Rename from smie-next-p.
5244 (smie-rule-prev-p): Rename from smie-prev-p.
5245 (smie-rule-sibling-p, smie-rule-parent)
5246 (smie-indent--separator-outdent, smie-rule-separator): New functions.
5247 (smie-rule-separator-outdent): New var.
5248 (smie-indent--rule): Merge with smie-indent--column.
5249 (smie-indent-forward-token, smie-indent-backward-token):
5250 Also recognize close parens.
5251 (smie-indent-keyword): Don't use smie-indent--column any more.
5252 (smie-indent-after-keyword): Ignore closers by default.
5253 (smie-indent-line): Use with-demoted-errors.
5254 * progmodes/octave-mod.el (octave-smie-grammar):
5255 Rename from octave-smie-op-levels.
5256 (octave-smie-rules): Adjust to new behavior.
5257 * progmodes/prolog.el (prolog-smie-grammar):
5258 Rename from prolog-smie-op-levels.
5259
5260 2010-11-07 Glenn Morris <rgm@gnu.org>
5261
5262 * eshell/esh-util.el (subst-char-in-string)
5263 (directory-files-and-attributes): These compatibility definitions are
5264 not needed on any version of Emacs since at least 21.4.
5265
5266 * progmodes/verilog-mode.el (verilog-get-beg-of-line)
5267 (verilog-get-end-of-line): Remove.
5268 (verilog-within-string, verilog-re-search-forward-substr)
5269 (verilog-re-search-backward-substr, verilog-set-auto-endcomments)
5270 (verilog-surelint-off, verilog-getopt-file, verilog-highlight-region):
5271 Use point-at-bol, point-at-eol.
5272 * progmodes/pascal.el (pascal-get-beg-of-line, pascal-get-end-of-line):
5273 Remove.
5274 (pascal-declaration-end, pascal-declaration-beg, pascal-within-string)
5275 (electric-pascal-terminate-line, pascal-set-auto-comments)
5276 (pascal-indent-paramlist, pascal-indent-declaration)
5277 (pascal-get-lineup-indent, pascal-func-completion)
5278 (pascal-get-completion-decl, pascal-var-completion, pascal-completion):
5279 Use point-at-bol, point-at-eol.
5280 * progmodes/flymake.el (flymake-line-beginning-position)
5281 (flymake-line-end-position): Remove.
5282 (flymake-highlight-line): Use point-at-bol, point-at-eol.
5283 * eshell/esh-util.el (line-end-position, line-beginning-position):
5284 Remove compat definitions.
5285
5286 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
5287 Use end-of-line N.
5288 (checkdoc-this-string-valid-engine, checkdoc-file-comments-engine):
5289 Use line-end-position.
5290
5291 * emacs-lisp/chart.el (chart-zap-chars):
5292 * play/decipher.el (decipher-set-map):
5293 * progmodes/ada-mode.el (ada-get-current-indent)
5294 (ada-search-ignore-string-comment, ada-tab-hard, ada-untab-hard):
5295 * progmodes/ada-prj.el (ada-prj-load-from-file, ada-prj-display-help):
5296 * progmodes/ada-xref.el (ada-initialize-runtime-library)
5297 (ada-get-all-references):
5298 * progmodes/cperl-mode.el (cperl-electric-paren)
5299 (cperl-electric-rparen, cperl-electric-keyword, cperl-electric-else)
5300 (cperl-linefeed, cperl-sniff-for-indent, cperl-to-comment-or-eol)
5301 (cperl-find-pods-heres, cperl-indent-exp, cperl-fix-line-spacing)
5302 (cperl-word-at-point-hard):
5303 * progmodes/idlw-shell.el (idlwave-shell-move-or-history)
5304 (idlwave-shell-filename-string, idlwave-shell-batch-command)
5305 (idlwave-shell-display-line):
5306 * progmodes/idlwave.el (idlwave-show-begin, idlwave-fill-paragraph)
5307 (idlwave-calc-hanging-indent, idlwave-auto-fill, idlwave-template):
5308 * progmodes/js.el (js--re-search-forward-inner)
5309 (js--re-search-backward-inner):
5310 * progmodes/vhdl-mode.el (vhdl-align-region-1, vhdl-align-region-2)
5311 (vhdl-fix-clause, vhdl-compose-configuration-architecture):
5312 * progmodes/ruby-mode.el (ruby-parse-partial, eval-when-compile):
5313 * textmodes/flyspell.el (flyspell-process-localwords):
5314 * textmodes/ispell.el (ispell-buffer-local-parsing)
5315 (ispell-buffer-local-dict, ispell-buffer-local-words):
5316 Use point-at-bol and point-at-eol.
5317
5318 * speedbar.el (speedbar-generic-item-info)
5319 (speedbar-item-info-tag-helper, speedbar-change-expand-button-char)
5320 (speedbar-add-indicator, speedbar-check-vc-this-line)
5321 (speedbar-check-obj-this-line, speedbar-extract-one-symbol)
5322 (speedbar-buffers-line-directory, speedbar-buffer-revert-buffer):
5323 Replace more uses of end-of-line etc with line-end-position.
5324
5325 2010-11-06 Glenn Morris <rgm@gnu.org>
5326
5327 * textmodes/texnfo-upd.el (texinfo-start-menu-description)
5328 (texinfo-update-menu-region-beginning, texinfo-menu-first-node)
5329 (texinfo-delete-existing-pointers, texinfo-find-pointer)
5330 (texinfo-clean-up-node-line, texinfo-insert-node-lines)
5331 (texinfo-multiple-files-update):
5332 * textmodes/table.el (table--probe-cell-left-up)
5333 (table--probe-cell-right-bottom):
5334 * textmodes/picture.el (picture-tab-search):
5335 * textmodes/page-ext.el (pages-copy-header-and-position)
5336 (pages-directory-for-addresses):
5337 * progmodes/vera-mode.el (vera-get-offset):
5338 * progmodes/simula.el (simula-calculate-indent):
5339 * progmodes/python.el (python-pdbtrack-overlay-arrow):
5340 * progmodes/prolog.el (end-of-prolog-clause):
5341 * progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
5342 * progmodes/icon.el (indent-icon-exp):
5343 * progmodes/etags.el (tag-re-match-p):
5344 * progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
5345 * progmodes/ebnf2ps.el (ebnf-begin-file):
5346 * progmodes/dcl-mode.el (dcl-back-to-indentation-1)
5347 (dcl-save-local-variable):
5348 * play/life.el (life-setup):
5349 * play/gametree.el (gametree-looking-at-ply):
5350 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
5351 * mail/sendmail.el (mail-mode-auto-fill):
5352 * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
5353 * emacs-lisp/edebug.el (edebug-overlay-arrow):
5354 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
5355 * woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
5356 (woman-tab-to-tab-stop, WoMan-warn-ignored):
5357 * type-break.el (type-break-file-keystroke-count):
5358 * term.el (term-replace-by-expanded-history-before-point)
5359 (term-skip-prompt, term-extract-string):
5360 * speedbar.el (speedbar-edit-line, speedbar-expand-line)
5361 (speedbar-contract-line, speedbar-toggle-line-expansion)
5362 (speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
5363 (speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
5364 * sort.el (sort-skip-fields):
5365 * skeleton.el (skeleton-internal-list):
5366 * simple.el (line-move-finish, line-move-to-column):
5367 * shell.el (shell-forward-command):
5368 * misc.el (copy-from-above-command):
5369 * makesum.el (double-column):
5370 * ebuff-menu.el (electric-buffer-update-highlight):
5371 * dired.el (dired-move-to-end-of-filename):
5372 * dframe.el (dframe-popup-kludge):
5373 * bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
5374 * arc-mode.el (archive-get-lineno):
5375 Use line-end-position and line-beginning-position.
5376
5377 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins):
5378 (idlwave-study-twins): Prefix dynamic local `class'.
5379 (idlwave-routine-twin-compare): Update for above name change.
5380
5381 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod):
5382 Use boundp tests to silence compiler. Update for changed name of
5383 bytecomp-filename variable.
5384
5385 * emulation/viper-cmd.el (viper-read-string-with-history):
5386 Prefix dynamic local `initial'.
5387 (viper-minibuffer-standard-hook): Update for above name change.
5388
5389 * emacs-lisp/elint.el (elint-init-env): Prefix dynamic local `env'.
5390 (elint-init-form): Update for above name change.
5391
5392 * mail/mail-extr.el (mail-extract-address-components): Give dynamic
5393 local variables `cbeg' and `cend' a prefix.
5394 (mail-extr-voodoo): Update for above name change.
5395
5396 * textmodes/reftex-toc.el (reftex-toc-do-promote)
5397 (reftex-toc-promote-prepare): Pass `delta' as an explicit argument.
5398 (reftex-toc-promote-action): Doc fix.
5399
5400 * textmodes/reftex-sel.el (reftex-select-item): Give local variables
5401 `prompt', `data' a prefix.
5402 (reftex-select-post-command-hook, reftex-select-callback)
5403 (reftex-select-mouse-accept, reftex-select-read-cite):
5404 Update for above name changes.
5405
5406 * textmodes/reftex-ref.el (reftex-reference): Rename local variable
5407 `refstyle' to reftex-refstyle.
5408 (reftex-offer-label-menu): Update for above name change.
5409 * textmodes/reftex-sel.el (reftex-select-toggle-varioref): Update for
5410 `refstyle' name change.
5411
5412 * vc/emerge.el (emerge-eval-in-buffer): Remove, and replace all uses
5413 with with-current-buffer.
5414 (diff, template): Give dynamic local variables a prefix.
5415 (emerge-line-numbers): Rename local `diff' to emerge-line-diff.
5416 (emerge-line-number-in-buf): Update for above name change.
5417 (emerge-combine-versions-internal): Rename local `template' to
5418 emerge-combine-template.
5419 (emerge-combine-versions-edit): Update for above name change.
5420
5421 2010-11-06 Ralf Angeli <angeli@caeruleus.net>
5422
5423 * textmodes/reftex-cite.el
5424 (reftex-extract-bib-entries-from-thebibliography): Match bibitem
5425 entries with whitespace after \bibitem.
5426 (reftex-create-bibtex-file): Match entries containing numbers and
5427 symbol constituents. Make sure that entries with whitespace at
5428 various places are found.
5429
5430 2010-11-05 Christian Millour <cm@abtela.com> (tiny change)
5431
5432 * shell.el (shell-process-popd): Made aware of comint-file-name-prefix.
5433
5434 2010-11-05 Jan Djärv <jan.h.d@swipnet.se>
5435
5436 * mouse.el (mouse-yank-primary): Update comment (Bug#6802).
5437
5438 2010-11-05 Glenn Morris <rgm@gnu.org>
5439
5440 * woman.el (woman0-roff-buffer, woman1-roff-buffer)
5441 (woman2-roff-buffer): Give local variable `request' a prefix.
5442 (woman0-macro): Rename argument `request' in the same way.
5443 (woman-request): New name for `request' dynamic variable.
5444 (woman-unquote, woman-forward-arg): Update for above name change.
5445 (woman1-roff-buffer): Give local variable `unquote' a prefix.
5446 (woman1-unquote): New name for `unquote' dynamic variable.
5447 (woman1-B-or-I, woman1-alt-fonts): Update for above name change.
5448 (woman-translations): Rename from `translations'. No longer global.
5449 (woman2-tr, woman-translate): Update for above name change.
5450 (woman-translate): Check for bound variable.
5451 (woman2-roff-buffer): Give local variable `translations' a prefix.
5452
5453 * play/doctor.el: Give all local variables a prefix. Update callers.
5454 (doc$, doctor-put-meaning): Use backquote.
5455
5456 * emacs-lisp/cl-macs.el (loop): Give local variable args a prefix.
5457 (cl-parse-loop-clause, cl-loop-handle-accum): Update for above change.
5458
5459 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Give local
5460 variables bytes, ptr, op a prefix.
5461 (disassemble-offset): Update for above change.
5462
5463 2010-11-03 Chong Yidong <cyd@stupidchicken.com>
5464
5465 * emacs-lisp/package.el (package-unpack): Remove no-op.
5466 (package--builtins, package--dir): Doc fix.
5467 (package-activate-1, package-activate, package-install)
5468 (package-compute-transaction): Fix error message.
5469 (package-delete): Use delete-directory. Omit system packages.
5470 (package-initialize): Set package-alist to nil first.
5471 (package-menu-mark-delete, package-menu-mark-install): Don't add
5472 symbols that are inconsistent with the package state.
5473 (package-menu-execute): Perform deletions and installations as
5474 single batch operations.
5475
5476 2010-11-03 Glenn Morris <rgm@gnu.org>
5477
5478 * progmodes/idlwave.el (idlwave-pset): Only used on XEmacs.
5479 (props): Remove unnecessary declaration.
5480
5481 * textmodes/ispell.el (ispell-init-process): On Emacs, always use
5482 set-process-query-on-exit-flag.
5483
5484 * textmodes/reftex-toc.el (name1, dummy, dummy2): Remove unused decs.
5485 (reftex-toc-do-promote): Remove unused local `mpos'.
5486 (reftex-toc-restore-region): Make `mpos' local to this function.
5487
5488 * net/dbus.el (dbus-name-owner-changed-handler): Doc fix.
5489
5490 * play/landmark.el (lm-losing-threshold): Correct spelling.
5491 (lm-human-plays): Use new name.
5492
5493 * play/gomoku.el (gomoku-loosing-threshold): Correct spelling.
5494 (gomoku-human-plays): Use new name.
5495
5496 * play/gomoku.el (nil-score, Xscore, XXscore, XXXscore, XXXXscore)
5497 (Oscore, OOscore, OOOscore, OOOOscore): Rename with gomoku- prefix.
5498 (gomoku-score-trans-table, gomoku-winning-threshold)
5499 (gomoku-loosing-threshold, gomoku-init-score-table): Use new names.
5500
5501 2010-11-03 Chong Yidong <cyd@stupidchicken.com>
5502
5503 * emacs-lisp/package.el: Don't put built-in packages in
5504 package-alist, to avoid loading inefficiencies.
5505 (package-built-in-p): Make VERSION optional, and treat it as a
5506 minimum acceptable version.
5507 (package-activate): Search separately for built-in packages.
5508 Emit a warning if a dependency fails.
5509 (define-package): Handle most common case, where there is no
5510 obsolete package, first.
5511 (package-compute-transaction): Print required version in error.
5512 (package--initialized): New variable.
5513 (list-packages): Use it.
5514 (package-initialize): Optional arg NO-ACTIVATE. Don't put
5515 built-in packages in packages-alist; keep it separate.
5516 Set package--initialized.
5517 (describe-package): Avoid activating packages as a side-effect.
5518 Search separately for built-in packages.
5519 (describe-package-1): Handle the case where an elpa package is
5520 simultaneously built-in and available/installed.
5521 (package-installed-p, package--generate-package-list):
5522 Search separately for built-in packages.
5523 (package-load-descriptor): Doc fix.
5524
5525 2010-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
5526
5527 * progmodes/perl-mode.el (perl-syntax-propertize-function):
5528 Handle __DATA__ and __END__.
5529
5530 2010-11-02 Noah Friedman <friedman@splode.com>
5531
5532 * emacs-lisp/bytecomp.el (byte-recompile-file): If bytecomp-arg is
5533 nil, do not ask to recompile files that are not already compiled,
5534 and do not recompile them.
5535
5536 2010-11-02 Chong Yidong <cyd@stupidchicken.com>
5537
5538 * emacs-lisp/package.el (package-initialize): Ensure that
5539 obsoleted built-in packages are not in package-activated-list
5540 during activation.
5541 (describe-package-1): Make the "installed" status override
5542 "built-in".
5543
5544 2010-11-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5545
5546 * subr.el (version-separator, version-regexp-alist): Remove '*'
5547 from docstring.
5548 (version-list-<=, version<=, version=): Doc fix.
5549
5550 2010-11-01 Kenichi Handa <handa@m17n.org>
5551
5552 * faces.el (glyphless-char): Inherit underline for tty.
5553
5554 2010-11-01 Kenichi Handa <handa@m17n.org>
5555
5556 Implement various display methods for glyphless characters.
5557
5558 * international/characters.el (char-acronym-table): New variable.
5559 (glyphless-char-control): New variable.
5560 (update-glyphless-char-display): New function.
5561
5562 * faces.el (glyphless-char): New face.
5563
5564 2010-11-01 Glenn Morris <rgm@gnu.org>
5565
5566 * calendar/holidays.el (general-holidays, oriental-holidays)
5567 (local-holidays, other-holidays, hebrew-holidays, christian-holidays)
5568 (islamic-holidays, bahai-holidays, solar-holidays): Move aliases before
5569 the definitions of their targets.
5570
5571 * emacs-lisp/smie.el (smie): New custom group.
5572 (smie-blink-matching-inners, smie-indent-basic): Add :group.
5573
5574 * faces.el (xw-defined-colors, x-setup-function-keys):
5575 * mouse-sel.el (x-select-text):
5576 * term/w32console.el (x-setup-function-keys): Update declarations.
5577
5578 * progmodes/ruby-mode.el (ruby-syntax-propertize-heredoc): Declare.
5579
5580 * textmodes/ispell.el (comment-add): Declare.
5581
5582 * net/gnutls.el (gnutls-boot, gnutls-errorp, gnutls-error-string):
5583 Declare.
5584
5585 * info.el (finder-keywords-hash, package-alist): Declare.
5586
5587 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
5588
5589 * finder.el (finder-compile-keywords): Don't use intern-soft,
5590 since package names may not yet exist in the obarray.
5591
5592 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
5593
5594 * vc/vc-arch.el (vc-arch-checkin):
5595 * vc/vc-cvs.el (vc-cvs-checkin):
5596 * vc/vc-mtn.el (vc-mtn-checkin):
5597 * vc/vc-rcs.el (vc-rcs-checkin):
5598 * vc/vc-sccs.el (vc-sccs-checkin):
5599 * vc/vc-svn.el (vc-svn-checkin): Remove optional extra arg, unused
5600 since 2010-04-21 commit by Stefan Monnier.
5601
5602 2010-11-01 Glenn Morris <rgm@gnu.org>
5603
5604 * emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change.
5605
5606 * startup.el (package-enable-at-startup, package-initialize):
5607 Silence compiler.
5608
5609 * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
5610 Silence compiler.
5611
5612 2010-10-31 Julien Danjou <julien@danjou.info>
5613
5614 * emacs-lisp/bytecomp.el (byte-recompile-file): New fun (bug#7297).
5615 (byte-recompile-directory):
5616 * emacs-lisp/lisp-mode.el (emacs-lisp-byte-compile-and-load):
5617 Use `byte-recompile-file'.
5618
5619 2010-10-31 Glenn Morris <rgm@gnu.org>
5620
5621 * cus-start.el: Handle standard values via a keyword.
5622 Only set version property if specified.
5623 (cursor-in-non-selected-windows, menu-bar-mode)
5624 (tool-bar-mode, show-trailing-whitespace):
5625 Do not specify standard values.
5626 (transient-mark-mode, temporary-file-directory): Use :standard.
5627
5628 2010-10-31 Jan Djärv <jan.h.d@swipnet.se>
5629
5630 * term/x-win.el (x-get-selection-value): New function that gets
5631 PRIMARY with type as specified in x-select-request-type. (Bug#6802)
5632
5633 2010-10-31 Michael Albinus <michael.albinus@gmx.de>
5634
5635 * net/tramp.el (tramp-handle-insert-file-contents): For root,
5636 preserve owner and group when editing files. (Bug#7289)
5637
5638 2010-10-31 Glenn Morris <rgm@gnu.org>
5639
5640 * speedbar.el (speedbar-mode):
5641 * play/fortune.el (fortune-in-buffer, fortune):
5642 * play/gomoku.el (gomoku-mode):
5643 * play/landmark.el (lm-mode):
5644 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
5645 Replace inappropriate uses of toggle-read-only. (Bug#7292)
5646
5647 * select.el (x-selection): Mark it as an obsolete alias.
5648
5649 2010-10-31 Aaron S. Hawley <aaron.s.hawley@gmail.com>
5650
5651 * vc/add-log.el (find-change-log): Use derived-mode-p rather than
5652 major-mode (bug#7284).
5653
5654 2010-10-31 Glenn Morris <rgm@gnu.org>
5655
5656 * menu-bar.el (menu-bar-files-menu): Make it into an actual alias,
5657 rather than just an unused variable that inherits from the real one.
5658
5659 2010-10-31 Alan Mackenzie <acm@muc.de>
5660
5661 * progmodes/cc-cmds.el (c-mask-paragraph): Fix an off-by-1 error.
5662 This fixes bug #7185.
5663
5664 2010-10-30 Chong Yidong <cyd@stupidchicken.com>
5665
5666 * startup.el (command-line): Search for package directories, and
5667 don't load package.el if none are found.
5668
5669 * emacs-lisp/package.el (describe-package, list-packages):
5670 Call package-initialize if it has not been called yet.
5671
5672 2010-10-30 Alan Mackenzie <acm@muc.de>
5673
5674 * progmodes/cc-fonts.el (c-font-lock-enum-tail): New function
5675 which fontifies the tail of an enum.
5676 (c-basic-matchers-after): Insert a call to the above new function.
5677 This fixes bug #7264.
5678
5679 2010-10-30 Glenn Morris <rgm@gnu.org>
5680
5681 * cus-start.el: Add :set properties for minor modes menu-bar-mode,
5682 tool-bar-mode, transient-mark-mode. (Bug#7306)
5683 Include the :set property in the dumped Emacs.
5684
5685 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5686
5687 SMIE: change indent rules format, improve smie-setup.
5688 * emacs-lisp/smie.el (smie-precs-precedence-table)
5689 (smie-merge-prec2s, smie-bnf-precedence-table, smie-prec2-levels):
5690 Mark them pure so the tables gets built at compile time.
5691 (smie-bnf-precedence-table): Store the closer-alist in the table.
5692 (smie-prec2-levels): Preserve the closer-alist.
5693 (smie-blink-matching-open): Be more forgiving in case of indentation.
5694 (smie-hanging-p): Rename from smie-indent--hanging-p.
5695 (smie-bolp): Rename from smie-indent--bolp.
5696 (smie--parent, smie--after): New dynamic vars.
5697 (smie-parent-p, smie-next-p, smie-prev-p): New funs.
5698 (smie-indent-rules): Remove.
5699 (smie-indent--offset-rule): Remove fun.
5700 (smie-rules-function): New var.
5701 (smie-indent--rule): New fun.
5702 (smie-indent--offset, smie-indent-keyword, smie-indent-after-keyword)
5703 (smie-indent-exps): Use it.
5704 (smie-setup): Setup paren blinking; add keyword args for token
5705 functions; extract closer-alist from op-levels.
5706 (smie-indent-debug-log): Remove var.
5707 (smie-indent-debug): Remove fun.
5708 * progmodes/prolog.el (prolog-smie-indent-rules): Remove.
5709 (prolog-smie-rules): New fun to replace it.
5710 (prolog-mode-variables): Simplify.
5711 * progmodes/octave-mod.el (octave-smie-closer-alist): Remove, now that
5712 it's setup automatically.
5713 (octave-smie-indent-rules): Remove.
5714 (octave-smie-rules): New fun to replace it.
5715 (octave-mode): Simplify.
5716
5717 2010-10-29 Glenn Morris <rgm@gnu.org>
5718
5719 * files.el (temporary-file-directory): Remove (already defined in C).
5720 * cus-start.el: Add temporary-file-directory.
5721
5722 * abbrev.el (abbrev-mode):
5723 * composite.el (auto-composition-mode):
5724 * menu-bar.el (menu-bar-mode):
5725 * simple.el (transient-mark-mode):
5726 * tool-bar.el (tool-bar-mode): Adjust the define-minor-mode calls so
5727 that they do not define the associated variables twice.
5728 * simple.el (transient-mark-mode): Remove defvar.
5729 * composite.el (auto-composition-mode): Make variable auto-buffer-local.
5730 * cus-start.el: Add transient-mark-mode, menu-bar-mode, tool-bar-mode.
5731 Handle multiple groups, and also custom-delayed-init-variables.
5732 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
5733
5734 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5735
5736 * emacs-lisp/pcase.el (pcase): New `string' and `guard' patterns.
5737 (pcase-if): Add one minor optimization.
5738 (pcase-split-equal): Rename from pcase-split-eq.
5739 (pcase-split-member): Rename from pcase-split-memq.
5740 (pcase-u1): Add strings to the member optimization.
5741 Add `guard' variant of predicates.
5742 (pcase-q1): Add string patterns.
5743
5744 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5745
5746 * vc/log-edit.el (log-edit-rewrite-fixes): State its safety pred.
5747
5748 2010-10-28 Glenn Morris <rgm@gnu.org>
5749
5750 * term/ns-win.el (global-map, menu-bar-final-items, menu-bar-help-menu):
5751 Move menu-bar related settings to ../menu-bar.el.
5752 * menu-bar.el (global-map, menu-bar-final-items, menu-bar-help-menu):
5753 Move ns-specific settings here from term/ns-win.el.
5754
5755 * simple.el (x-selection-owner-p): Remove unused declaration.
5756
5757 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5758
5759 * minibuffer.el (completion-cycling): New var (bug#7266).
5760 (minibuffer-complete, completion--do-completion):
5761 Use completion--flush-all-sorted-completions.
5762 (minibuffer-complete): Only cycle if completion-cycling is set.
5763 (completion--flush-all-sorted-completions): Unset completion-cycling.
5764 (minibuffer-force-complete): Set completion-cycling.
5765 (completion-all-sorted-completions): Move declaration before first use.
5766
5767 2010-10-28 Leo <sdl.web@gmail.com>
5768
5769 * iswitchb.el (iswitchb-kill-buffer): Avoid `iswitchb-make-buflist'
5770 which changes the order of matches seen by users (bug#7231).
5771
5772 2010-10-28 Jes Bodi Klinke <jes@bodi-klinke.dk> (tiny change)
5773
5774 * progmodes/compile.el (compilation-mode-font-lock-keywords):
5775 Don't confuse -omega as "-o mega".
5776
5777 2010-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
5778
5779 * vc/log-edit.el (log-edit-rewrite-fixes): New var.
5780 (log-edit-author): New dynamic var.
5781 (log-edit-changelog-ours-p, log-edit-insert-changelog-entries): Use it
5782 to return the author if different from committer.
5783 (log-edit-insert-changelog): Use them to add Author: and Fixes headers.
5784
5785 * play/landmark.el: Adjust commenting convention.
5786 (lm-nil-score): Rename from nil-score.
5787 (Xscore, XXscore, XXXscore, XXXXscore, Oscore, OOscore, OOOscore)
5788 (OOOOscore): Move into a let in lm-score-trans-table.
5789 (lm-winning-threshold, lm-loosing-threshold): Use lm-score-trans-table.
5790
5791 * electric.el (electric-indent-chars): Autoload.
5792 * progmodes/octave-mod.el (octave-mode):
5793 * progmodes/ruby-mode.el (ruby-mode): Take advantage of it.
5794 (ruby-mode-abbrev-table): Merge initialization and declaration.
5795
5796 2010-10-27 Glenn Morris <rgm@gnu.org>
5797
5798 * abbrev.el (abbrev-mode): Remove one of the three definitions of this
5799 variable.
5800
5801 * server.el (server-host, server-port, server-auth-dir): Autoload risky.
5802
5803 * term/ns-win.el: Restore require of cl when compiling.
5804 (menu-bar-final-items): Remove non-existent `windows' menu.
5805 (ns-handle-nxopen): Optionally handle the temp-case.
5806 (ns-handle-nxopentemp): Just call ns-handle-nxopen.
5807 (ns-insert-file, ns-find-file): Use `pop'.
5808
5809 2010-10-26 Glenn Morris <rgm@gnu.org>
5810
5811 * term/common-win.el (xw-defined-colors): Simplify the 'ns case.
5812
5813 2010-10-26 Adrian Robert <Adrian.B.Robert@gmail.com>
5814
5815 * term/ns-win.el (ns-new-frame, ns-show-prefs): Don't add to
5816 global map.
5817 * term/common-win.el (x-setup-function-keys): Remove most of the
5818 keymappings. Comment on the remaining ones.
5819
5820 2010-10-26 Peter Oliver <p.d.oliver@mavit.org.uk> (tiny change)
5821
5822 * server.el (server-port): New option. (Bug#854)
5823 (server-start): Use server-port.
5824
5825 2010-10-26 Glenn Morris <rgm@gnu.org>
5826
5827 * term/ns-win.el (ns-version-string): Remove unused declaration.
5828 (ns-invocation-args): Change to x-invocation-args.
5829 (ns-handle-switch, ns-handle-numeric-switch, ns-handle-iconic)
5830 (ns-handle-name-switch, ns-ignore-2-arg): Remove.
5831 (ns-handle-nxopen, ns-handle-nxopentemp, ns-ignore-1-arg):
5832 Use x-invocation-args instead of ns-invocation-args.
5833 (ns-initialize-window-system, handle-args-function-alist):
5834 Use x-handle-args instead of ns-handle-args.
5835 * term/common-win.el (x-handle-args): Also handle nextstep arguments.
5836 * startup.el (command-line-ns-option-alist): Replace
5837 ns-handle-name-switch, ns-handle-switch, ns-handle-numeric-switch,
5838 ns-handle-iconic with the x- equivalents.
5839
5840 * term/common-win.el (x-select-enable-clipboard):
5841 * term/pc-win.el (x-select-enable-clipboard): Doc fix.
5842
5843 * term/ns-win.el: No need to require cl when compiling.
5844 (x-display-name, x-setup-function-keys, x-select-text, x-colors)
5845 (xw-defined-colors): Use the common-win definitions.
5846 (ns-alternatives-map): Make it an obsolete alias for x-alternatives-map.
5847 (ns-handle-iconic): Make it an alias for x-handle-iconic.
5848 * term/common-win.el (x-select-text, x-alternatives-map)
5849 (x-setup-function-keys, x-colors, xw-defined-colors): Handle 'ns case.
5850 * loadup.el [ns]: Load common-win.
5851
5852 2010-10-26 Daiki Ueno <ueno@unixuser.org>
5853
5854 * epa-mail.el (epa-mail-encrypt): Handle local-part only
5855 recipients; expand mail aliases (Bug#7280).
5856
5857 2010-10-25 Glenn Morris <rgm@gnu.org>
5858
5859 * term/common-win.el (x-handle-switch): Simplify with pop.
5860 Optionally handle numeric switches.
5861 (x-handle-numeric-switch): Just call x-handle-switch.
5862 (x-handle-initial-switch, x-handle-xrm-switch, x-handle-geometry)
5863 (x-handle-name-switch, x-handle-display, x-handle-args):
5864 Simplify with pop.
5865
5866 * term/ns-win.el: Do not require easymenu.
5867 (menu-bar-edit-menu) <copy, paste, paste-from-menu, separator-undo>:
5868 <spell>: Move adjustments to menu-bar.el.
5869 * menu-bar.el (menu-bar-edit-menu) <copy, paste, paste-from-menu>:
5870 <separator-undo, spell>: Move ns-win's adjustments here.
5871 * loadup.el [ns]: Do not load easymenu.
5872
5873 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
5874
5875 * image.el (image-checkbox-checked, image-checkbox-unchecked):
5876 Delete (Bug#7222).
5877
5878 * startup.el (fancy-startup-tail): Instead of using inline images,
5879 refer to image files from etc/.
5880
5881 * wid-edit.el (checkbox): Likewise.
5882 (widget-image-find): Center image specs.
5883
5884 2010-10-24 Glenn Morris <rgm@gnu.org>
5885
5886 * term/ns-win.el (x-select-text): Doc fix.
5887 * w32-fns.el (x-alternatives-map, x-setup-function-keys)
5888 (x-select-text): Move to term/common-win.
5889 * term/w32-win.el (xw-defined-colors): Move to common-win.
5890 * term/x-win.el (xw-defined-colors, x-alternatives-map)
5891 (x-setup-function-keys, x-select-text): Move to common-win.
5892 * term/common-win.el (x-select-text, x-alternatives-map)
5893 (x-setup-function-keys, xw-defined-colors): Merge x- and w32-
5894 definitions here.
5895
5896 2010-10-24 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
5897
5898 * net/mairix.el (mairix-searches-mode-map):
5899 * mail/mspools.el (mspools-mode-map): Fix 2010-10-10 change.
5900
5901 2010-10-24 Michael McNamara <mac@mail.brushroad.com>
5902
5903 * progmodes/verilog-mode.el (verilog-directive-re): Make this variable
5904 auto-built for efficiency of execution and updating.
5905 (verilog-extended-complete-re): Support 'pure' fucntion & task
5906 declarations (these have no bodies).
5907 (verilog-beg-of-statement): General cleanup to enable support of
5908 'pure' fucntion & task declarations (these have no bodies).
5909 These efforts together fix Verilog bug210 from veripool; which was also
5910 noticed by Steve Pearlmutter.
5911 (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
5912 (verilog-directive-nest-re, verilog-set-auto-endcomments):
5913 Support `elsif. Reported by Shankar Giri.
5914 (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
5915 attribute handling for lining up declarations and assignments.
5916 (verilog-beg-of-statement-1): Fix issue where continued declaration
5917 is indented differently if it is after a begin..end clock.
5918 (verilog-in-attribute-p, verilog-skip-backward-comments)
5919 (verilog-skip-forward-comment-p): Support proper treatment of
5920 attributes by indent code. Reported by Jeff Steele.
5921 (verilog-in-directive-p): Fix comment to correctly describe function.
5922 (verilog-backward-up-list, verilog-in-struct-region-p)
5923 (verilog-backward-token, verilog-in-struct-p)
5924 (verilog-in-coverage-p, verilog-do-indent)
5925 (verilog-pretty-declarations): Use verilog-backward-up-list as
5926 wrapper around backward-up-list inorder to properly skip comments.
5927 Reported by David Rogoff.
5928 (verilog-property-re, verilog-endcomment-reason-re)
5929 (verilog-beg-of-statement, verilog-set-auto-endcomments)
5930 (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
5931 of if). Reported by Max Bjurling and
5932 (verilog-calc-1): Fix for clocking block in modport
5933 declaration. Reported by Brian Hunter.
5934
5935 2010-10-24 Wilson Snyder <wsnyder@wsnyder.org>
5936
5937 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
5938 (verilog-gate-keywords, verilog-read-sub-decls)
5939 (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
5940 (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
5941 AUTOINST for gate primitives, bug284. Reported by Mark Johnson.
5942 (verilog-read-decls): Fix spaces in V2K module parameters causing
5943 mis-identification as interfaces, bug287.
5944 (verilog-read-decls): Fix not treating "parameter string" as a
5945 parameter in AUTOINSTPARAM.
5946 (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
5947 treating `elsif similar to `endif inside AUTOSENSE.
5948 (verilog-do-indent): Implement correct automatic or static task or
5949 function end comment highlight. Reported by Steve Pearlmutter.
5950 (verilog-font-lock-keywords-2): Fix highlighting of single
5951 character pins, bug264. Reported by Michael Laajanen.
5952 (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
5953 (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
5954 (verilog-subdecls-get-interfaced, verilog-subdecls-new):
5955 Support interfaces with AUTOINST, bug270. Reported by Luis Gutierrez.
5956 (verilog-pretty-expr): Fix interactive arguments, bug272.
5957 Reported by Mark Johnson.
5958 (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp):
5959 Add 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
5960 bug269. Suggested by Gary Delp.
5961 (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
5962 (verilog-preprocessor, verilog-set-compile-command):
5963 Create verilog-preprocess and verilog-preprocessor to show
5964 preprocessed output.
5965 (verilog-get-beg-of-line, verilog-get-end-of-line)
5966 (verilog-modi-file-or-buffer, verilog-modi-name)
5967 (verilog-modi-point, verilog-within-string): Move defmacro's
5968 before first use to avoid warning. Reported by Steve Pearlmutter.
5969 (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
5970 (verilog-colorize-region, verilog-highlight-buffer)
5971 (verilog-highlight-includes, verilog-highlight-modules)
5972 (verilog-highlight-region, verilog-mode): Rename colorize to
5973 highlight to match other packages. Disable module highlighting,
5974 as received speed complaints, reenable for experimentation only
5975 using new verilog-highlight-modules.
5976 (verilog-read-decls): Fix regexp stack overflow in very large
5977 AUTO_TEMPLATEs, bug250.
5978 (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
5979 (verilog-scan): Create verilog-save-buffer-state to standardize
5980 making insignificant changes that shouldn't call hooks.
5981 (verilog-save-no-change-functions, verilog-save-scan-cache)
5982 (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
5983 Create verilog-save-no-change-functions to wrap verilog-scan
5984 preservation, and fix to work with nested preserved calls.
5985 (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
5986 port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
5987 generate .name with AUTOINST, bug245. Suggested by David Rogoff.
5988 (verilog-submit-bug-report): Update variable list to be complete.
5989 (verilog-auto, verilog-colorize-region): Fix AUTO expansion
5990 breaking on-the-fly font-locking.
5991 (verilog-colorize-buffer, verilog-colorize-include-files)
5992 (verilog-colorize-include-files-buffer, verilog-colorize-region)
5993 (verilog-load-file-at-mouse, verilog-load-file-at-point)
5994 (verilog-mode, verilog-read-inst-module-matcher): With point on a
5995 AUTOINST cell instance name, middle mouse button now finds-file on
5996 it. Suggested by Brad Dobbie.
5997 (verilog-alw-get-temps, verilog-auto-reset)
5998 (verilog-auto-sense-sigs, verilog-read-always-signals)
5999 (verilog-read-always-signals-recurse): Fix loop indexes being
6000 AUTORESET. AUTORESET now assumes any variables in the
6001 initialization section of a for() should be ignored.
6002 Reported by Dan Dever.
6003 (verilog-error-font-lock-keywords)
6004 (verilog-error-regexp-emacs-alist)
6005 (verilog-error-regexp-xemacs-alist): Fix error detection of
6006 Cadence HAL, reported by David Asher. Repair drift between the
6007 three similar error variables.
6008 (verilog-modi-lookup, verilog-modi-lookup-cache)
6009 (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
6010 (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
6011 Fix slow verilog-auto expansion on very large files.
6012 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line):
6013 Fix AUTOOUTPUT treating "1*2" as a signal name in submodule connection
6014 "{1*2{...". Broke in last revision.
6015 (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
6016 submodule connections with replications "{#{a},#{b}}".
6017
6018 2010-10-24 Juanma Barranquero <lekktu@gmail.com>
6019
6020 * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
6021 Fix typo in docstring.
6022
6023 2010-10-24 Kenichi Handa <handa@m17n.org>
6024
6025 * face-remap.el (text-scale-adjust): Call read-event with a proper
6026 prompt.
6027
6028 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
6029
6030 * emacs-lisp/unsafep.el: Don't mark functions that display
6031 messages as safe. Suggested by Johan Bockgård.
6032
6033 2010-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
6034
6035 * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
6036 Turn comments into docstrings.
6037
6038 * minibuffer.el (completion--replace): Move point where it belongs
6039 when there's a common suffix (bug#7215).
6040
6041 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
6042
6043 Merge read-color and facemenu-read-color (Bug#7242).
6044
6045 * faces.el (read-color): Use the completion code from
6046 facemenu-read-color. Require match in completion. Doc fix.
6047
6048 * facemenu.el (facemenu-read-color): Alias for read-color.
6049 (facemenu-set-foreground, facemenu-set-background):
6050 Use read-color.
6051
6052 * frame.el (set-background-color, set-foreground-color)
6053 (set-cursor-color, set-mouse-color, set-border-color):
6054 Use read-color.
6055
6056 2010-10-24 Leo <sdl.web@gmail.com>
6057
6058 * eshell/em-unix.el (eshell-remove-entries): Use the TRASH
6059 argument of delete-file and delete-directory (Bug#7011).
6060
6061 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
6062
6063 * emacs-lisp/package.el (package-menu-mode-map): Inherit from
6064 button-buffer-map.
6065
6066 2010-10-24 Ralf Angeli <angeli@caeruleus.net>
6067
6068 * emacs-lisp/package.el (package--generate-package-list): Make the
6069 *Packages* buffer read-only.
6070
6071 2010-10-24 Alan Mackenzie <acm@muc.de>
6072
6073 * progmodes/cc-fonts.el (c-font-lock-declarations): Cache the
6074 result of `c-beginning-of-decl-1' between invocations of a lambda
6075 function (Bug #7265).
6076
6077 2010-10-24 Daiki Ueno <ueno@unixuser.org>
6078
6079 * epg-config.el (epg-gpg-program): Try to use "gpg2" if "gpg"
6080 executable is not available on the system (Bug#7268).
6081
6082 2010-10-24 Glenn Morris <rgm@gnu.org>
6083
6084 * select.el (selection-coding-system, next-selection-coding-system):
6085 Sync doc with C versions.
6086
6087 * w32-vars.el (x-select-enable-clipboard):
6088 * term/x-win.el (x-select-enable-clipboard): Move to common-win.
6089 * term/common-win.el (x-select-enable-clipboard): Move here.
6090
6091 * term/tty-colors.el (tty-defined-color-alist): Remove duplicate
6092 definition of C variable.
6093
6094 * frame.el (show-trailing-whitespace, auto-hscroll-mode)
6095 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
6096 Don't redefine things that are defined in C.
6097 * cus-start.el: Also handle :risky, :safe, :set, and :tag.
6098 (show-trailing-whitespace, auto-hscroll-mode)
6099 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
6100 Set up the appropriate custom properties.
6101
6102 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
6103
6104 Bind "C-c ]" to ...
6105 * progmodes/f90.el (f90-mode-map): ... f90-insert-end.
6106 * nxml/nxml-mode.el (nxml-mode-map): ... nxml-finish-element.
6107 * textmodes/tex-mode.el (tex-mode-map): ... latex-close-block.
6108 * textmodes/sgml-mode.el (sgml-mode-map): ... sgml-close-tag.
6109
6110 2010-10-23 Glenn Morris <rgm@gnu.org>
6111
6112 * textmodes/flyspell.el (flyspell-mode): If there was an error,
6113 say what it was.
6114
6115 * frame.el (auto-hscroll-mode, cursor-in-non-selected-windows):
6116 Sync docs with C version.
6117
6118 * term/ns-win.el (xw-defined-colors):
6119 * term/x-win.el (xw-defined-colors): Make docs identical to w32-win.
6120
6121 * term/pc-win.el (x-select-enable-clipboard):
6122 * term/x-win.el (x-select-enable-clipboard):
6123 * w32-vars.el (x-select-enable-clipboard): Make doc-strings identical.
6124
6125 * comint.el (comint-password-prompt-regexp): Make it less vague.
6126 Bump version.
6127
6128 * help-fns.el (doc-file-to-man, doc-file-to-info): New commands.
6129
6130 * help.el (finder-by-keyword): Remove unnecessary autoload.
6131
6132 2010-10-22 Glenn Morris <rgm@gnu.org>
6133
6134 * loadup.el: Unconditionally load float-sup.
6135 * paren.el (show-paren-delay):
6136 * emacs-lisp/float-sup.el:
6137 * emulation/cua-base.el (cua-prefix-override-inhibit-delay):
6138 * obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice)
6139 (lazy-lock-stealth-verbose): Assume float support.
6140 * ps-print.el: Assume float support on Emacs.
6141 * emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
6142 Remove non-float branch.
6143
6144 * emacs-lisp/autoload.el (batch-update-autoloads): Update for
6145 src/Makefile no longer being pre-processed.
6146
6147 2010-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
6148
6149 * emacs-lisp/find-func.el (find-library): Use test-completion.
6150
6151 2010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
6152
6153 * newcomment.el (comment-dwim): Fix the intentation in the doc string.
6154
6155 2010-10-21 Michael Albinus <michael.albinus@gmx.de>
6156
6157 * net/tramp-sh.el (tramp-do-file-attributes-with-stat): Do not use
6158 space in stat format string.
6159 (tramp-send-command): Unset $PS1 when using here documents, in
6160 order not to get several prompts.
6161 (tramp-get-inline-coding): Return `nil' in case of errors.
6162
6163 2010-10-21 Daiki Ueno <ueno@unixuser.org>
6164
6165 * hexl.el (hexl-mode, hexl-mode-exit):
6166 Tweak revert-buffer-function to inhibit auto-mode-alist (Bug#7252).
6167 (hexl-revert-buffer-function): New function.
6168 (hexl-before-revert-hook, hexl-after-revert-hook): Abolish.
6169
6170 2010-10-19 Alan Mackenzie <acm@muc.de>
6171
6172 * progmodes/cc-langs.el (c-type-decl-prefix-key): C++ bit:
6173 Move "\(const\|throw\|volatile\)\>" nearer the start of the regexp, so
6174 that these keywords aren't wrongly matched as identifiers.
6175
6176 * progmodes/cc-mode.el (c-before-change, c-after-change): Move the
6177 setting of c-new-BEG and c-new-END from c-before-change to
6178 c-after-change. (Bug#7181)
6179
6180 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
6181
6182 * cus-face.el (custom-theme-set-faces): Revert 2010-10-18 change.
6183 Don't mark as safe.
6184
6185 * custom.el (custom-theme-set-variables): Likewise.
6186 (load-theme): Add custom-theme-set-faces and
6187 custom-theme-set-variables to safe-functions while loading.
6188 (custom-enabled-themes): Mark as risky.
6189
6190 2010-10-18 Julien Danjou <julien@danjou.info>
6191
6192 * bindings.el: Remove end dashes in default mode-line-format.
6193
6194 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
6195
6196 * bindings.el (global-map): Bind C-d to delete-char and deletechar
6197 to delete-forward-char.
6198
6199 * simple.el (normal-erase-is-backspace-mode): Remap delete to
6200 deletechar, and hence delete-forward-char.
6201
6202 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
6203
6204 * repeat.el (repeat): Use read-key (bug#6256).
6205
6206 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
6207
6208 * emacs-lisp/unsafep.el: Don't mark functions that display
6209 messages as safe. Suggested by Johan Bockgård.
6210
6211 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
6212
6213 * minibuffer.el (completion--replace): Move point where it belongs
6214 when there's a common suffix (bug#7215).
6215
6216 2010-10-19 Kenichi Handa <handa@m17n.org>
6217
6218 * international/characters.el: Add category '|' (word breakable)
6219 to fullwidth characters.
6220
6221 2010-10-19 Michael Albinus <michael.albinus@gmx.de>
6222
6223 * net/tramp-sh.el (tramp-do-file-attributes-with-stat)
6224 (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
6225 order to make stat results a float. Patch by Andreas Schwab
6226 <schwab@linux-m68k.org>.
6227
6228 2010-10-18 Julien Danjou <julien@danjou.info>
6229
6230 * avoid.el (mouse-avoidance-ignore-p): Ignore mouse when it is
6231 hidden by `make-pointer-invisible'.
6232
6233 2010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
6234
6235 * files.el (locate-file-completion-table): Strip non-matching elements
6236 before checking length of list (bug#7238).
6237
6238 2010-10-18 Chong Yidong <cyd@stupidchicken.com>
6239
6240 * custom.el (custom-theme-set-variables): Mark as a safe function.
6241 (load-theme): Check forms using unsafep.
6242
6243 * cus-face.el (custom-theme-set-faces): Mark as a safe function.
6244
6245 2010-10-17 Agustín Martín <agustin.martin@hispalinux.es>
6246
6247 * textmodes/ispell.el (ispell-aspell-find-dictionary):
6248 Fix aspell data file searching (bug#7230).
6249
6250 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
6251
6252 * cus-theme.el (custom-theme--migrate-settings): New var.
6253 (customize-create-theme): Allow editing the `user' theme.
6254 (custom-theme-add-variable, custom-theme-add-var-1)
6255 (custom-theme-add-face, custom-theme-add-face-1): Add a checkbox
6256 to the front of each variable or face widget.
6257 (custom-theme-write): Save theme settings in the correct order.
6258 Optionally, remove saved settings from user customizations.
6259 (custom-theme-write-variables, custom-theme-write-faces):
6260 Save only the checked widgets.
6261 (customize-themes): Add a link for migrating custom settings.
6262
6263 * custom.el (custom-declare-theme, provide-theme):
6264 Use custom-theme-name-valid-p.
6265 (custom-theme-name-valid-p): Remove checks that are now
6266 unnecessary since themes no longer obey load-path.
6267
6268 * cus-edit.el (custom-variable-value-create): For the simple
6269 style, hide documentation string when hidden.
6270
6271 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
6272
6273 * cus-edit.el (custom-variable, custom-face): Combine the
6274 :inhibit-magic and :display-style properties into a single
6275 :custom-style property.
6276 (custom-toggle-hide-variable, custom-toggle-hide-face):
6277 New functions. If hiding an edited value, save it to :shown-value.
6278 (custom-variable-value-create, custom-face-value-create): Use them.
6279 (custom-magic-reset): Allow magic property to be unset.
6280
6281 * custom.el: Custom themes no longer use load-path.
6282 (custom-theme-load-path): New option. Change built-in theme
6283 directory to etc/.
6284 (custom-enabled-themes): Add custom-theme-load-path dependency.
6285 (custom-theme--load-path): New function.
6286 (load-theme, custom-available-themes): Use it.
6287
6288 * cus-theme.el (describe-theme-1): Use custom-theme--load-path.
6289 (customize-themes): Link to custom-theme-load-path variable.
6290 (custom-theme-add-var-1, custom-theme-add-face-1): Use the
6291 :custom-style property.
6292
6293 * themes/*.el: Moved to etc/.
6294
6295 2010-10-16 Ralf Angeli <angeli@caeruleus.net>
6296
6297 * textmodes/reftex-cite.el
6298 (reftex-extract-bib-entries-from-thebibliography): Do not move
6299 point when searching for \bibitem entries. Match entries with
6300 spaces or tabs in front of arguments.
6301
6302 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
6303
6304 * cus-theme.el (customize-create-theme): Delete overlays after
6305 erasing. If given a THEME arg, display only the faces of that arg
6306 instead of custom-theme--listed-faces.
6307 (custom-theme-variable-menu, custom-theme-variable-action)
6308 (custom-variable-reset-theme, custom-theme-delete-variable): Delete.
6309 (custom-theme-add-variable, custom-theme-add-face): Apply value
6310 from the theme settings, instead of the current value.
6311 (custom-theme-add-var-1, custom-theme-add-face-1): New functions.
6312 (custom-theme-visit-theme): Allow calling outside theme buffers.
6313 (custom-theme-merge-theme): Don't enable the theme when merging.
6314 (custom-theme-write-variables, custom-theme-write-faces): Use the
6315 :shown-value properties to save buffer values, not global ones.
6316 (customize-themes): Display a warning about user customizations.
6317
6318 * cus-edit.el (custom-variable-value-create)
6319 (custom-face-value-create): Obey new special properties
6320 :shown-value and :inhibit-magic.
6321
6322 2010-10-15 Michael Albinus <michael.albinus@gmx.de>
6323
6324 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
6325 Suppress expansion of tabs to spaces. Reported by Dale Sedivec
6326 <dale@codefu.org>.
6327
6328 2010-10-14 Kenichi Handa <handa@m17n.org>
6329
6330 * mail/rmail.el (rmail-show-message-1): Catch an error of
6331 base64-decode-region and just show an error message (bug#7165).
6332
6333 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used anymore.
6334 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
6335 a font-spec (bug#7197).
6336
6337 2010-10-14 Glenn Morris <rgm@gnu.org>
6338
6339 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
6340
6341 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
6342
6343 * international/mule.el (define-coding-system):
6344 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
6345 * composite.el (compose-region): Fix typo in docstring.
6346
6347 2010-10-14 Chong Yidong <cyd@stupidchicken.com>
6348
6349 * cus-face.el (custom-theme-set-faces): Call custom-push-theme
6350 only after checking the theme-face property.
6351
6352 * faces.el (face-spec-reset-face): Reset all attributes in one
6353 single call to set-face-attribute.
6354 (face-spec-match-p): Make it a defsubst.
6355 (frame-set-background-mode): New arg KEEP-FACE-SPECS.
6356 (x-create-frame-with-faces, tty-create-frame-with-faces)
6357 (tty-set-up-initial-frame-faces): Don't recompute face specs in
6358 frame-set-background-mode, since they are recomputed immediately
6359 afterwards in face-set-after-frame-default.
6360 (face-set-after-frame-default): Minor optimization.
6361 (cursor): Provide non-trivial defface spec.
6362
6363 * custom.el (custom-theme-recalc-face): Simplify.
6364
6365 2010-10-14 Jay Belanger <jay.p.belanger@gmail.com>
6366
6367 * calc/calc-alg.el (math-var): Rename from `var'.
6368 (math-is-polynomial, math-is-poly-rec): Replace `var'
6369 with `math-var'.
6370
6371 * calc/calcalg2.el (math-var): Rename from `var'.
6372 (calcFunc-table, math-scan-for-limits): Replace `var'
6373 with `math-var'.
6374
6375 2010-10-13 Glenn Morris <rgm@gnu.org>
6376
6377 * subr.el (last): Deal with dotted lists (reported in bug#7174).
6378
6379 2010-10-13 Stephen Berman <stephen.berman@gmx.net>
6380
6381 * subr.el (last): Use `safe-length' instead of `length' (bug#7206).
6382
6383 2010-10-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
6384
6385 * net/tls.el (tls-program): Remove spurious %s from openssl.
6386 (tls-starttls-switches): Remove starttls hack.
6387 (open-tls-stream): Ditto.
6388 (tls-find-starttls-argument): Ditto.
6389
6390 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
6391
6392 * image.el (image-library-alist): Declare as obsolete alias.
6393 (image-type-available-p): Use `dynamic-library-alist'.
6394
6395 * term/w32-win.el (dynamic-library-alist):
6396 Use instead of `image-library-alist'.
6397
6398 2010-10-13 IRIE Shinsuke <irieshinsuke@yahoo.co.jp> (tiny change)
6399
6400 * subr.el (last): Make it faster. (Bug#7174)
6401
6402 2010-10-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
6403
6404 * Makefile.in (compile-clean): Use `` instead of $(). (Bug#7178)
6405
6406 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
6407
6408 * cus-theme.el (custom-theme--listed-faces): Add cursor face.
6409 (describe-theme-1): Extract doc from unloaded themes.
6410
6411 * custom.el (custom-theme-name-valid-p): Don't list color-themes.
6412
6413 * themes/tango-theme.el:
6414 * themes/tango-dark-theme.el:
6415 * themes/wheatgrass-theme.el: New files.
6416
6417 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
6418
6419 * cus-theme.el (describe-theme, customize-themes)
6420 (custom-theme-save): New commands.
6421 (custom-new-theme-mode-map): Bind C-x C-s.
6422 (custom-new-theme-mode): Use custom--initialize-widget-variables.
6423 (customize-create-theme): New optional arg THEME.
6424 (custom-theme-revert): Use it.
6425 (custom-theme-visit-theme): Remove dead code.
6426 (custom-theme-merge-theme): Use custom-available-themes.
6427 (custom-theme-write): Make interactive.
6428 (custom-theme-write): Use custom-theme-name-valid-p.
6429 (describe-theme-1, custom-theme-choose-revert)
6430 (custom-theme-checkbox-toggle, custom-theme-selections-toggle):
6431 New funs.
6432 (custom-theme-allow-multiple-selections): New option.
6433 (custom-theme-choose-mode): New major mode.
6434
6435 * custom.el (custom-theme-set-variables): Remove dead code.
6436 Obey custom--inhibit-theme-enable.
6437 (custom--inhibit-theme-enable): New var.
6438 (provide-theme): Obey it.
6439 (load-theme): Replace load with manual read/eval, in order to
6440 check for correctness. Use custom-theme-name-valid-p.
6441 (custom-theme-name-valid-p): New function.
6442 (custom-available-themes): Use it.
6443
6444 * cus-edit.el (custom--initialize-widget-variables): New function.
6445 (Custom-mode): Use it.
6446
6447 * cus-face.el (custom-theme-set-faces): Remove dead code.
6448 Obey custom--inhibit-theme-enable.
6449
6450 * help-mode.el (help-theme-def, help-theme-edit): New buttons.
6451
6452 2010-10-12 Juanma Barranquero <lekktu@gmail.com>
6453
6454 * net/telnet.el (telnet-mode-map): Fix previous change (bug#7193).
6455
6456 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
6457
6458 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
6459 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
6460 (mac-right-option-modifier): New alias for ns-right-option-modifier.
6461
6462 * cus-start.el (all): ns-right-alternate-modifier is new.
6463
6464 2010-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
6465
6466 * emacs-lisp/lisp.el (lisp-completion-at-point):
6467 Use emacs-lisp-mode-syntax-table for the whole function.
6468
6469 2010-10-12 David Koppelman <koppel@ece.lsu.edu>
6470
6471 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
6472 instead of font-lock-mode before adding keywords.
6473 Remove hi-lock-mode off code. Remove inhibit hack.
6474 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
6475 non-nil; removed hook inhibit hack.
6476
6477 2010-10-12 Glenn Morris <rgm@gnu.org>
6478
6479 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
6480 (load-path-shadows-find): ... to this.
6481 (list-load-path-shadows): Update for above change.
6482
6483 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
6484
6485 2010-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
6486
6487 * mail/hashcash.el, net/imap.el, pgg-parse.el, pgg.el:
6488 Fix comment for declare-function.
6489
6490 2010-10-11 Chong Yidong <cyd@stupidchicken.com>
6491
6492 * custom.el (custom-fix-face-spec): New function; code moved from
6493 custom-face-edit-fix-value.
6494 (custom-push-theme): Use it when checking if a face has been
6495 changed outside customize.
6496 (custom-available-themes): New function.
6497 (load-theme): Use it.
6498
6499 * cus-edit.el (custom-face-edit-fix-value): Use custom-fix-face-spec.
6500
6501 * custom.el (custom-push-theme): Cleanup (use cond).
6502 (disable-theme): Recompute the saved-face property.
6503 (custom-theme-recalc-face): Follow face alias before setting prop.
6504
6505 * image.el (image-checkbox-checked, image-checkbox-unchecked):
6506 New variables, containing checkbox images.
6507
6508 * startup.el (fancy-startup-tail):
6509 * wid-edit.el (checkbox): Use them.
6510
6511 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
6512
6513 * shell.el (shell-mode-map):
6514 * progmodes/modula2.el (m2-mode-map):
6515 * progmodes/inf-lisp.el (inferior-lisp-mode-map):
6516 * play/mpuz.el (mpuz-mode-map):
6517 * play/landmark.el (lm-mode-map):
6518 * play/decipher.el (decipher-mode-map):
6519 * play/5x5.el (5x5-mode-map):
6520 * net/telnet.el (telnet-mode-map):
6521 * net/quickurl.el (quickurl-list-mode-map):
6522 * net/mairix.el (mairix-searches-mode-map):
6523 * net/eudc-hotlist.el (eudc-hotlist-mode-map):
6524 * net/dig.el (dig-mode-map):
6525 * mail/mspools.el (mspools-mode-map):
6526 * hexl.el (hexl-mode-map):
6527 * emulation/ws-mode.el (wordstar-C-k-map, wordstar-mode-map)
6528 (wordstar-C-o-map, wordstar-C-q-map):
6529 * emacs-lisp/edebug.el (edebug-eval-mode-map):
6530 * emacs-lisp/chart.el (chart-map):
6531 * edmacro.el (edmacro-mode-map):
6532 * erc/erc-list.el (erc-list-menu-mode-map):
6533 * array.el (array-mode-map): Declare and define in one step.
6534
6535 * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
6536
6537 2010-10-10 Daiki Ueno <ueno@unixuser.org>
6538
6539 * epa.el (epa-passphrase-callback-function): Display filename
6540 passed as the 3rd arg.
6541 * epa-file.el (epa-file-passphrase-callback-function):
6542 Pass filename to epa-passphrase-callback-function.
6543
6544 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
6545
6546 * cus-edit.el (custom-face-widget-to-spec)
6547 (custom-face-get-current-spec, custom-face-state): New functions.
6548 (custom-face-set, custom-face-mark-to-save)
6549 (custom-face-value-create, custom-face-state-set): Use them.
6550
6551 * cus-theme.el (custom-theme--listed-faces): New var.
6552 (customize-create-theme): Use *Custom Theme* as the buffer name.
6553 Set revert-buffer-function. Optional arg BUFFER. Insert all
6554 faces listed in custom-theme--listed-faces.
6555 (custom-theme-revert): New function.
6556 (custom-theme-add-variable, custom-theme-add-face): Insert at the
6557 bottom of the list.
6558 (custom-theme-write): Prompt for theme name if empty.
6559 (custom-theme-write-variables): Use dolist.
6560 (custom-theme-write-faces): Handle hidden (collapsed) widgets.
6561
6562 2010-10-09 Alan Mackenzie <acm@muc.de>
6563
6564 Enhance fontification of declarators to take account of the
6565 presence/absence of "typedef".
6566
6567 * cc-engine.el (c-forward-type): New &optional param
6568 "brace-block-too".
6569 (c-forward-decl-or-cast-1): cdr of return value now indicates the
6570 presence of either or both of a "struct"-like keyword and "typedef".
6571
6572 * cc-fonts.el (c-complex-decl-matchers): Remove the heuristic
6573 fontification of declarators which follow a "}".
6574 (c-font-lock-declarations): Fontify declarators according to the
6575 presence/absence of "typedef".
6576
6577 * cc-langs.el (c-typedef-kwds c-typedef-key): New lang variable
6578 for "typedef".
6579 (c-typedef-decl-key): New lang variable built from
6580 c-typedef-decl-kwds.
6581
6582 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
6583
6584 * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
6585 since that's too annoying. Move the filter groups commands to
6586 TAB/backtab.
6587
6588 * epa.el (epa-passphrase-callback-function): Say what we're
6589 querying the password for.
6590
6591 * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
6592 behaviour, don't bury the ibuffer buffer when visiting other buffers.
6593
6594 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
6595
6596 * cus-edit.el (custom-commands, custom-buffer-create-internal)
6597 (custom-magic-value-create): Pad button tags with spaces.
6598 (custom-face-edit): New variable.
6599 (custom-face-value-create): Determine whether to use the usual
6600 face editor here, instead of using custom-face-selected.
6601 Pass face defaults to custom-face-edit widget.
6602 (custom-face-selected, custom-display-unselected): Delete widgets.
6603 (custom-display-unselected-match): Function removed.
6604 (custom-face-set, custom-face-mark-to-save):
6605 Accept custom-face-edit widgets as the direct widget child.
6606
6607 * wid-edit.el (widget--completing-widget): New var.
6608 (widget-default-complete): Bind it when doing completion.
6609 (widget-string-complete, widget-file-complete): Use it.
6610
6611 2010-10-09 Glenn Morris <rgm@gnu.org>
6612
6613 * calendar/cal-hebrew.el (holiday-hebrew-rosh-hashanah)
6614 (holiday-hebrew-passover, holiday-hebrew-tisha-b-av)
6615 (holiday-hebrew-misc): Small simplifications.
6616
6617 * emacs-lisp/authors.el (authors-valid-file-names): Add b2m.c.
6618
6619 * net/browse-url.el: Don't require thingatpt, term, dired,
6620 executable, or w3-auto when compiling.
6621 (dired-get-filename, term-char-mode, term-send-down, term-send-string):
6622 Declare.
6623 (browse-url-text-emacs): Require term.
6624
6625 2010-10-08 Andreas Schwab <schwab@linux-m68k.org>
6626
6627 * net/browse-url.el (browse-url-xdg-open): Remove use of /bin/sh.
6628
6629 2010-10-08 Glenn Morris <rgm@gnu.org>
6630
6631 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
6632
6633 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
6634 (shadows-compare-text-p): Make it an obsolete alias for...
6635 (load-path-shadows-compare-text): ... new name.
6636 (find-emacs-lisp-shadows): Update for above name change.
6637 (load-path-shadows-same-file-or-nonexistent): New name for the old
6638 shadow-same-file-or-nonexistent.
6639
6640 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
6641
6642 * minibuffer.el (completion--some, completion--do-completion)
6643 (minibuffer-complete-and-exit, minibuffer-completion-help)
6644 (completion-basic-try-completion)
6645 (completion-basic-all-completions)
6646 (completion-pcm--find-all-completions): Use lexical-let to
6647 avoid some false matches in variable completion (Bug#7056)
6648
6649 2010-10-08 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
6650
6651 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
6652
6653 2010-10-08 Leo <sdl.web@gmail.com>
6654
6655 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
6656 return non-nil if the file exists (Bug#7090).
6657
6658 2010-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
6659
6660 * minibuffer.el (completion--replace):
6661 Better preserve markers (bug#7138).
6662
6663 2010-10-08 Juanma Barranquero <lekktu@gmail.com>
6664
6665 * server.el (server-process-filter): Doc fix.
6666
6667 2010-10-08 Drew Adams <drew.adams@oracle.com>
6668
6669 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
6670
6671 2010-10-08 Glenn Morris <rgm@gnu.org>
6672
6673 * vc/ediff-wind.el (ediff-setup-control-frame):
6674 * vc/ediff-ptch.el (ediff-default-backup-extension):
6675 * vc/ediff-diff.el (ediff-shell, ediff-diff-options)
6676 (ediff-exec-process): Remove system-types emx, windows-95.
6677
6678 * net/browse-url.el (browse-url-xdg-open): Shell-quote url. (Bug#7166)
6679
6680 2010-10-07 Chong Yidong <cyd@stupidchicken.com>
6681
6682 * cus-edit.el (custom-variable, custom-face): Doc fix.
6683 (custom-face-edit): Add value-create attribute.
6684 (custom-face-edit-value-create)
6685 (custom-face-edit-value-visibility-action): New functions.
6686 Hide unused face attributes by default, and add a visibility toggle.
6687 (custom-face-edit-deactivate): Show empty values with shadow face.
6688 (custom-face-selected): Only use this for face specs with default
6689 attributes.
6690 (custom-face-value-create): Cleanup.
6691
6692 * wid-edit.el (widget-checklist-value-create): Use dolist.
6693 (widget-checklist-match-find): Make second arg optional.
6694
6695 2010-10-07 Glenn Morris <rgm@gnu.org>
6696
6697 * hilit-chg.el (hilit-chg-get-diff-info, hilit-chg-get-diff-list-hk):
6698 Prefix things.
6699
6700 * emacs-lisp/shadow.el (shadow-font-lock-keywords)
6701 (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to
6702 load-path-shadows-mode, update references.
6703 (load-path-shadows-font-lock-keywords, load-path-shadows-find-file):
6704 Rename variable and button.
6705 (list-load-path-shadows): Update button caller.
6706
6707 2010-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
6708
6709 * emacs-lisp/smie.el (smie-bnf-classify): New function.
6710 (smie-bnf-precedence-table): Use it to remember the closers/openers.
6711 (smie-merge-prec2s): Handle those new entries.
6712 (smie-prec2-levels): Only set precedence to nil for actual
6713 openers/closers.
6714 * progmodes/octave-mod.el (octave-smie-op-levels): Remove dummy entry
6715 that is now unnecessary.
6716
6717 2010-10-07 Miles Bader <miles@gnu.org>
6718
6719 * emacs-lisp/regexp-opt.el (regexp-opt): Add `symbols' mode.
6720
6721 2010-10-07 Glenn Morris <rgm@gnu.org>
6722
6723 * mail/rmail.el (mail-sendmail-delimit-header, mail-header-end)
6724 (mail-position-on-field): Remove declarations.
6725 (mail-position-on-field): Autoload it.
6726 (rmail-retry-failure): Replace use of mail-sendmail-delimit-header
6727 and mail-header-end. Don't require sendmail.
6728
6729 * emacs-lisp/shadow.el (shadow-font-lock-keywords): New variable.
6730 (shadow-mode): New mode.
6731 (shadow-find-file): New button.
6732 (list-load-path-shadows): Use shadow-mode and buttons.
6733
6734 * iimage.el (iimage-version): Remove.
6735 (iimage-mode-image-search-path, iimage-mode-image-regex-alist):
6736 Turn into defcustoms.
6737 (iimage-mode-map): Give it a doc string.
6738
6739 * calendar/appt.el (appt-activate): Give a warning rather than an error
6740 if there is no diary-file.
6741
6742 2010-10-06 Michael Albinus <michael.albinus@gmx.de>
6743
6744 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
6745 Use `tramp-handle-find-backup-file-name'.
6746
6747 2010-10-06 Glenn Morris <rgm@gnu.org>
6748
6749 * font-core.el (font-lock-defaults-alist): Remove variable.
6750 (font-lock-mode): Doc fix.
6751 (font-lock-default-function): Do not consult font-lock-defaults-alist.
6752 * font-lock.el (font-lock-refresh-defaults): Doc fix.
6753 (font-lock-set-defaults): Doc fix.
6754 Do not consult font-lock-defaults-alist.
6755
6756 * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
6757
6758 * emacs-lisp/cl.el: No longer provide cl-19.
6759
6760 2010-10-05 Michael Albinus <michael.albinus@gmx.de>
6761
6762 * net/tramp.el (tramp-handle-directory-files-and-attributes)
6763 (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p):
6764 New defuns, taken from tramp-smb.el.
6765 (tramp-coding-system-change-eol-conversion)
6766 (tramp-set-process-query-on-exit-flag): Remove.
6767
6768 * net/tramp-compat.el (top): Do not check for byte-compiler objects.
6769 (tramp-compat-coding-system-change-eol-conversion)
6770 (tramp-compat-set-process-query-on-exit-flag): New defuns, taken
6771 from tramp.el.
6772
6773 * net/tramp-gvfs.el:
6774 * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag'
6775 by `tramp-compat-set-process-query-on-exit-flag'.
6776
6777 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
6778 Use `tramp-handle-directory-files-and-attributes',
6779 `tramp-handle-file-exists-p' and
6780 `tramp-handle-file-newer-than-file-p'.
6781 (tramp-imap-handle-file-exists-p)
6782 (tramp-imap-handle-file-executable-p)
6783 (tramp-imap-handle-file-readable-p)
6784 (tramp-imap-handle-directory-files-and-attributes)
6785 (tramp-imap-handle-file-newer-than-file-p): Remove.
6786
6787 * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag'
6788 by `tramp-compat-set-process-query-on-exit-flag' and
6789 `tramp-coding-system-change-eol-conversion' by
6790 `tramp-compat-coding-system-change-eol-conversion'.
6791
6792 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
6793 Use `tramp-handle-directory-files-and-attributes',
6794 `tramp-handle-file-exists-p' and
6795 `tramp-handle-file-newer-than-file-p'.
6796 (tramp-smb-handle-directory-files-and-attributes)
6797 (tramp-smb-handle-file-exists-p)
6798 (tramp-smb-handle-file-newer-than-file-p): Remove.
6799 (tramp-smb-maybe-open-connection):
6800 Replace `tramp-set-process-query-on-exit-flag' by
6801 `tramp-compat-set-process-query-on-exit-flag'.
6802
6803 2010-10-05 Glenn Morris <rgm@gnu.org>
6804
6805 * obsolete/rnews.el, obsolete/rnewspost.el: Remove files.
6806
6807 2010-10-04 Michael Albinus <michael.albinus@gmx.de>
6808
6809 Continue reorganization of load dependencies. (Bug#7156)
6810
6811 * net/tramp.el (tramp-handle-file-local-copy-hook)
6812 (tramp-delete-temp-file-function): Move down.
6813 (tramp-exists-file-name-handler): Move up.
6814 (tramp-register-file-name-handlers): Simplify autoload.
6815 (tramp-handle-write-region-hook, tramp-handle-directory-file-name)
6816 (tramp-handle-directory-files, tramp-handle-dired-uncache)
6817 (tramp-handle-file-modes, tramp-handle-file-name-as-directory)
6818 (tramp-handle-file-name-completion)
6819 (tramp-handle-file-name-directory)
6820 (tramp-handle-file-name-nondirectory, tramp-handle-file-regular-p)
6821 (tramp-handle-file-remote-p, tramp-handle-file-symlink-p)
6822 (tramp-handle-find-backup-file-name)
6823 (tramp-handle-insert-file-contents, tramp-handle-load)
6824 (tramp-handle-substitute-in-file-name)
6825 (tramp-handle-unhandled-file-name-directory)
6826 (tramp-mode-string-to-int, tramp-local-host-p)
6827 (tramp-make-tramp-temp-file): Move from tramp-sh.el.
6828
6829 * net/tramp-gvfs.el (top):
6830 * net/tramp-smb.el (top): Do not require 'tramp-sh.
6831
6832 * net/tramp-sh.el (all): Move several objects to tramp.el, see
6833 there. Rename `tramp-handle-*' to `tramp-sh-handle-*'.
6834
6835 2010-10-04 Glenn Morris <rgm@gnu.org>
6836
6837 * calendar/appt.el (appt-add): Ensure reminders are enabled.
6838 (appt-activate): Give status messages.
6839
6840 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
6841
6842 * net/gnutls.el: Improve docs. Remove starttls and ssl emulation.
6843 Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
6844 `gnutls-negotiate' (formerly `starttls-negotiate').
6845 Remove trivial wrapper `starttls-open-stream'.
6846
6847 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
6848
6849 Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
6850 log-outgoing commands.
6851 * vc/vc.el (vc-log-internal-common): Add a new argument and use it
6852 to create a buffer local revert-buffer-function variable.
6853 (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
6854 revert-buffer-function lambda.
6855
6856 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
6857
6858 * net/gnutls.el (starttls-negotiate): Use the plist interface to
6859 `gnutls-boot'. Make TYPE the only required parameter.
6860 Allow TRUSTFILES and KEYFILES to be lists.
6861 (open-ssl-stream): Use it.
6862
6863 2010-10-03 Glenn Morris <rgm@gnu.org>
6864
6865 * subr.el (directory-sep-char): Remove obsolete variable.
6866 * net/tramp-compat.el: Don't mess about with the byte-compiler unless
6867 it is "necessary".
6868
6869 * vc/vc-hooks.el (vc-header-alist): Remove obsolete variable.
6870 * vc/vc.el (vc-static-header-alist): Doc fix.
6871 * vc/vc-cvs.el (vc-cvs-header):
6872 * vc/vc-rcs.el (vc-rcs-header):
6873 * vc/vc-sccs.el (vc-sccs-header):
6874 * vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist.
6875 * obsolete/vc-mcvs.el (vc-mcvs-header):
6876 * progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist
6877 on XEmacs.
6878
6879 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
6880
6881 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
6882 Remove obsolete use of binary-overwrite-mode (Bug#7001).
6883
6884 2010-10-03 Glenn Morris <rgm@gnu.org>
6885
6886 * obsolete/x-menu.el: Remove file, obsolete since 21.1.
6887
6888 * textmodes/rst.el (rst-font-lock-keywords-function):
6889 Drop Emacs 20 code.
6890
6891 * textmodes/artist.el (artist-replace-char): Drop Emacs 20 code.
6892
6893 * printing.el: Drop Emacs 20 code.
6894
6895 * calendar/appt.el (appt-delete): Don't autoload it (you can't use it
6896 without having used appt.el already).
6897
6898 * subr.el (make-local-hook): Remove function obsolete since 21.1.
6899 * progmodes/cc-mode.el (make-local-hook): Don't do cc-bytecomp stuff.
6900 (c-basic-common-init, c-font-lock-init): Only call make-local-hook on
6901 XEmacs.
6902 * progmodes/cc-styles.el (make-local-hook): Don't do cc-bytecomp stuff.
6903 (c-make-styles-buffer-local): Only call make-local-hook on XEmacs.
6904
6905 * ps-def.el (leading-code-private-22, charset-bytes, charset-id)
6906 (charset-width, find-charset-region, chars-in-region, forward-point)
6907 (encode-coding-string, coding-system-p, ccl-execute-on-string)
6908 (define-ccl-program, multibyte-string-p, string-make-multibyte):
6909 Remove compatibility cruft (none of these are used by ps*.el).
6910
6911 2010-10-03 Kevin Rodgers <kevin.d.rodgers@gmail.com>
6912
6913 * subr.el (booleanp): Return t instead of a list (Bug#7086).
6914
6915 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
6916
6917 * server.el (server-process-filter, server-return-error):
6918 Give emacsclient time to shut down after receiving an error string.
6919
6920 2010-10-02 Michael Albinus <michael.albinus@gmx.de>
6921
6922 * files.el (remote-file-name-inhibit-cache): New defcustom.
6923
6924 * time.el (display-time-file-nonempty-p):
6925 Use `remote-file-name-inhibit-cache'.
6926
6927 * net/tramp.el (tramp-completion-reread-directory-timeout):
6928 Fix docstring.
6929
6930 * net/tramp-cache.el (tramp-cache-inhibit-cache): Remove.
6931 (tramp-get-file-property): Replace `tramp-cache-inhibit-cache' by
6932 `remote-file-name-inhibit-cache'. Check also for an integer
6933 value. Add/increase counter when `tramp-verbose' >= 10.
6934 (tramp-set-file-property): Add/increase counter when
6935 `tramp-verbose' >= 10.
6936
6937 * net/tramp-cmds.el (tramp-cleanup-all-connections)
6938 (tramp-cleanup-all-buffers): Set tramp-autoload cookie.
6939 (tramp-bug): Set tramp-autoload cookie. Report all interned
6940 tramp-* variables. Report also `remote-file-name-inhibit-cache'.
6941 (tramp-reporter-dump-variable): Fix docstring. Mask non-7bit
6942 characters only in strings.
6943
6944 * net/tramp-compat.el (remote-file-name-inhibit-cache): Define due
6945 to backward compatibility.
6946
6947 * net/tramp-sh.el (tramp-handle-verify-visited-file-modtime)
6948 (tramp-handle-file-name-all-completions)
6949 (tramp-handle-vc-registered): Use `remote-file-name-inhibit-cache'.
6950 (tramp-open-connection-setup-interactive-shell):
6951 Call `tramp-cleanup-connection' directly.
6952
6953 2010-10-02 Glenn Morris <rgm@gnu.org>
6954
6955 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
6956
6957 * subr.el (char-bytes): Remove obsolete function.
6958
6959 * isearch.el (isearch-return-char): Remove obsolete function.
6960
6961 * mouse.el: No longer provide mldrag.
6962 (mldrag-drag-mode-line, mldrag-drag-vertical-line):
6963 Remove obsolete aliases.
6964
6965 * comint.el (comint-kill-output): Remove obsolete alias.
6966
6967 * composite.el (decompose-composite-char): Remove obsolete function.
6968 * ps-def.el (decompose-composite-char): Remove unused function.
6969
6970 * iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
6971
6972 * outline.el (outline-visible): Remove obsolete function.
6973
6974 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
6975 * faces.el (internal-find-face, internal-get-face)
6976 (frame-update-faces, frame-update-face-colors)
6977 (x-frob-font-weight, x-frob-font-slant)
6978 (internal-frob-font-weight, internal-frob-font-slant)
6979 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
6980 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
6981 (x-make-font-bold-italic): Remove functions and aliases, obsolete
6982 since Emacs 21.1.
6983 * emulation/viper-util.el (viper-get-face):
6984 * obsolete/lucid.el (find-face, get-face): Use facep.
6985 * vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
6986 Remove unused functions.
6987 * vc/ediff-util.el (ediff-submit-report): Doc fix.
6988
6989 * emacs-lisp/bytecomp.el (byte-compile-file): Use kill-emacs-hook to
6990 delete tempfile if interrupted during compilation.
6991
6992 2010-10-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6993
6994 * net/tls.el (tls-starttls-switches): Give up on using starttls with
6995 gnutls-cli.
6996 (tls-program): Add --insecure to be consistent with the defaults from
6997 openssl s_client. Now all three commands are insecure.
6998
6999 2010-10-01 Eli Zaretskii <eliz@gnu.org>
7000
7001 * makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
7002 (TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
7003 (TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
7004
7005 2010-10-01 Glenn Morris <rgm@gnu.org>
7006
7007 * obsolete/sc.el: Remove file.
7008
7009 * files.el (temporary-file-directory): On darwin, also try
7010 DARWIN_USER_TEMP_DIR (see discussion in bug#7135).
7011
7012 2010-10-01 Juanma Barranquero <lekktu@gmail.com>
7013
7014 * server.el (server-start): Revert part of 2010-09-30T02:53:26Z!lekktu@gmail.com.
7015 Let's not break compatibility gratuitously, shall we?
7016
7017 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
7018
7019 * net/tls.el (tls-starttls-switches): New variable.
7020 (tls-find-starttls-argument): Use it.
7021 (open-tls-stream): Ditto.
7022
7023 * net/netrc.el (netrc-credentials): Return the value of the "default"
7024 entry.
7025 (netrc-machine): Ditto.
7026
7027 2010-09-30 Eli Zaretskii <eliz@gnu.org>
7028
7029 * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
7030
7031 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
7032
7033 * server.el (server-start): Don't write pid to the authentication file.
7034 (server-create-tty-frame): Don't send pid.
7035 (server-process-filter): Send pid at the start of every connection.
7036
7037 2010-09-30 Glenn Morris <rgm@gnu.org>
7038
7039 * calendar/diary-lib.el (view-diary-entries, list-diary-entries)
7040 (show-all-diary-entries): Remove obsolete function aliases.
7041
7042 * calendar/appt.el (appt-issue-message, appt-visible, appt-msg-window):
7043 Remove options, obsolete since 22.1.
7044 (appt-display-format, appt-display-message):
7045 Remove backwards-compatibility code.
7046 (appt-check): No longer check appt-issue-message.
7047 (appt-make-list): No longer autoload it. Doc fix. No longer
7048 activate the package.
7049
7050 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
7051
7052 * net/gnutls.el (starttls-negotiate): Loop a lot longer.
7053 (starttls-negotiate): Just call boot, and let the handshake be
7054 triggered from the read loop.
7055
7056 2010-09-29 Glenn Morris <rgm@gnu.org>
7057
7058 * calendar/diary-lib.el (diary-list-entries): Use temp buffers when
7059 not displaying the diary.
7060 (diary-add-to-list): If no buffer-file-name, fall back to diary-file.
7061 * calendar/appt.el (appt-check): No longer need to kill diary.
7062
7063 * calendar/diary-lib.el (diary-list-entries): Move the
7064 "Preparing..." message entirely here.
7065 (diary-simple-display, diary-fancy-display): Move "Preparing..."
7066 messages to diary-list-entries.
7067 (diary-include-other-diary-files): Use LIST-ONLY rather than setting
7068 diary-display-function.
7069
7070 * calendar/diary-lib.el (diary-include-other-diary-files):
7071 Trap some recursive includes.
7072
7073 * calendar/appt.el (appt-activate): Check diary file.
7074
7075 2010-09-29 Katsumi Yamaoka <yamaoka@jpl.org>
7076
7077 * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
7078 construction.
7079
7080 * calendar/time-date.el: No need to require cl for Emacs 21.
7081
7082 2010-09-28 Glenn Morris <rgm@gnu.org>
7083
7084 * calendar/appt.el (appt-check): Minor simplification.
7085
7086 2010-09-28 Katsumi Yamaoka <yamaoka@jpl.org>
7087
7088 * mail/sendmail.el (mail-citation-prefix-regexp): Remove "}" from
7089 citation prefix.
7090
7091 2010-09-27 Andreas Schwab <schwab@linux-m68k.org>
7092
7093 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
7094 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
7095
7096 2010-09-27 Kenichi Handa <handa@m17n.org>
7097
7098 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
7099 "ustar" format.
7100
7101 2010-09-27 Kenichi Handa <handa@m17n.org>
7102
7103 * international/mule.el (define-coding-system): Docstring fixed.
7104
7105 * international/mule-diag.el (describe-character-set): Use princ
7106 with proper print-length and print-level instead of insert.
7107
7108 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
7109
7110 * window.el (walk-windows): Doc fix (bug#7105).
7111
7112 2010-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
7113
7114 * emacs-lisp/float-sup.el (e): Remove.
7115
7116 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
7117
7118 * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom
7119 variable.
7120 (starttls-negotiate): Use it.
7121
7122 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
7123
7124 * net/gnutls.el (starttls-negotiate): Stop looping when we get a t
7125 back.
7126
7127 2010-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
7128
7129 * emacs-lisp/pcase.el (pcase-let*, pcase-let): plet -> pcase-let.
7130
7131 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
7132
7133 * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function.
7134
7135 * net/netrc.el (netrc-store-data): New function.
7136
7137 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
7138
7139 * net/gnutls.el: GnuTLS glue code to set up a connection.
7140
7141 2010-09-25 Julien Danjou <julien@danjou.info>
7142
7143 * notifications.el: Call dbus-register-signal only if it is bound.
7144
7145 2010-09-25 Glenn Morris <rgm@gnu.org>
7146
7147 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
7148 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
7149 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
7150 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
7151 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
7152 * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
7153 * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
7154 * eshell/esh-util.el, eshell/esh-var.el:
7155 Remove leading `*' from docs of faces and defcustoms.
7156
7157 2010-09-25 Ulrich Mueller <ulm@gentoo.org>
7158
7159 * eshell/em-ls.el (eshell-ls-archive-regexp):
7160 * eshell/esh-util.el (eshell-tar-regexp):
7161 * ibuffer.el (ibuffer-compressed-file-name-regexp):
7162 * info.el (Info-suffix-list):
7163 * international/mule.el (auto-coding-alist):
7164 * woman.el (woman-file-regexp, woman-file-compression-regexp):
7165 * progmodes/etags.el (tags-compression-info-list):
7166 Support xz compression.
7167
7168 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
7169
7170 * files.el (get-free-disk-space): Don't assume the "df" output
7171 columns line up (Bug#6995).
7172
7173 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
7174
7175 * finder.el (finder-unknown-keywords):
7176 * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
7177 * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
7178
7179 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
7180
7181 * server.el (server-start): Revert part of 2010-08-08 change. Using
7182 address 127.0.0.1 for local host is now done in Fmake_network_process.
7183
7184 2010-09-24 Glenn Morris <rgm@gnu.org>
7185
7186 * image-mode.el, progmodes/compile.el, progmodes/gud.el:
7187 * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
7188 * textmodes/css-mode.el, textmodes/dns-mode.el:
7189 Move autoloaded auto-mode-alist entries to files.el.
7190 * files.el (auto-mode-alist): Move entries here.
7191
7192 2010-09-23 Glenn Morris <rgm@gnu.org>
7193
7194 * isearch.el (isearch-lazy-highlight-cleanup)
7195 (isearch-lazy-highlight-initial-delay)
7196 (isearch-lazy-highlight-interval)
7197 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
7198 * net/net-utils.el (ipconfig-program-options):
7199 Move aliases to options before the associated definitions.
7200
7201 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
7202
7203 * newcomment.el (comment-normalize-vars): Better test validity of
7204 comment-end-skip.
7205
7206 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
7207
7208 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
7209 (float-e): New name for `e'.
7210 (degrees-to-radians, radians-to-degrees):
7211 * calendar/solar.el (solar-longitude):
7212 * calculator.el (calculator-registers, calculator-funcall):
7213 * textmodes/artist.el (artist-spray-random-points):
7214 * play/bubbles.el (bubbles--initialize-images): Use new names.
7215
7216 2010-09-23 Eric M. Ludlam <zappo@gnu.org>
7217
7218 Update to CEDET 1.0's version of EIEIO.
7219
7220 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
7221 New function.
7222 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
7223 (eieio-default-eval-maybe): Eval val instead of unquoting only.
7224 (class-precedence-list): If class is nil, return nil.
7225 (eieio-generic-call): If class of first input arg is nil, don't
7226 look up static methods, and do check for primary methods.
7227 (initialize-instance): See if the default needs to be evaluated
7228 during the constructor.
7229 (eieio-perform-slot-validation-for-default): Don't do the check
7230 for values that will eventually be evaluated.
7231 (eieio-eval-default-p): New function.
7232 (eieio-default-eval-maybe): Use it.
7233
7234 2010-09-23 Jan Moringen <jan.moringen@uni-bielefeld.de>
7235
7236 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
7237 method-invocation-order.
7238 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
7239 (eieio-class-precedence-dfs): Compute class precedence list using
7240 dfs algorithm.
7241 (eieio-class-precedence-bfs): Compute class precedence list using
7242 bfs algorithm.
7243 (eieio-class-precedence-c3): Compute class precedence list using
7244 c3 algorithm.
7245 (class-precedence-list): New function.
7246 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
7247 (inconsistent-class-hierarchy): New error symbol.
7248 (call-next-method): Stow the replacement argument list for future
7249 call-next-method invocations.
7250
7251 2010-09-23 Glenn Morris <rgm@gnu.org>
7252
7253 * calendar/appt.el (appt-check): If not displaying the diary,
7254 use (diary 1) to only get the entries we need.
7255 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
7256 that it is in day order. (Bug#7019)
7257
7258 * calendar/appt.el (appt-check): Rather than showing the diary,
7259 just turn off invisible display, and only if needed.
7260
7261 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
7262
7263 2010-09-23 Glenn Morris <rgm@gnu.org>
7264
7265 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
7266 (byte-compile-defvar, byte-compile-cl-warn):
7267 Start warnings with lower-case, like the majority.
7268
7269 * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
7270
7271 * files.el (auto-mode-alist): Prefer C-mode for .xs. (Bug#7071)
7272
7273 * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
7274 * files.el (auto-mode-alist): Move ld-script entries here, further down
7275 the list.
7276
7277 * vc/add-log.el: Don't require timezone when compiling.
7278 (timezone-make-date-sortable): Autoload it.
7279 (change-log-sortable-date-at): Don't require timezone.
7280 Use `ignore-errors'.
7281
7282 * comint.el (comint-use-prompt-regexp-instead-of-fields):
7283 Move alias before definition, so it does not need autoloading.
7284
7285 * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
7286 * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
7287 * international/kkc.el, international/ogonek.el, mail/feedmail.el:
7288 * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
7289 * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
7290 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
7291 * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
7292 * textmodes/tex-mode.el, textmodes/two-column.el:
7293 Remove leading `*' from docs of defcustoms etc.
7294
7295 2010-09-23 Teodor Zlatanov <tzz@lifelogs.com>
7296
7297 * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
7298
7299 2010-09-22 Dan Christensen <jdc@uwo.ca>
7300
7301 * calendar/time-date.el (date-to-time): Try using parse-time-string
7302 first before using the slower timezone-make-date-arpa-standard.
7303
7304 2010-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
7305
7306 * calendar/time-date.el (format-seconds): Comment fix.
7307
7308 2010-09-22 Glenn Morris <rgm@gnu.org>
7309
7310 * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
7311 is not automatically buffer-local.
7312
7313 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
7314
7315 * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
7316 (smie-indent-comment): Be more careful with comment-start-skip.
7317 (smie-indent-comment-close, smie-indent-comment-inside): New funs.
7318 (smie-indent-functions): Use them.
7319
7320 2010-09-21 Michael Albinus <michael.albinus@gmx.de>
7321
7322 * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
7323
7324 2010-09-21 Jan Djärv <jan.h.d@swipnet.se>
7325
7326 * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
7327 tool-bar-position. Don't modify frame parameters here.
7328 (menu-bar-options-save): Add tool-bar-position.
7329
7330 * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
7331
7332 2010-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
7333
7334 * textmodes/reftex-parse.el (reftex-what-macro)
7335 (reftex-context-substring): Let-bind forward-sexp-function to nil
7336 since we don't need/want to treat \begin...\end as a block (bug#7053).
7337
7338 * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
7339
7340 * simple.el (blink-matching-open): Use syntax-class.
7341
7342 * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
7343 Set invisibility spec for pascal's outline mode.
7344 (pascal-outline-change): Clean up calling convention.
7345 (pascal-show-all, pascal-hide-other-defuns): Update callers.
7346
7347 * progmodes/prolog.el (prolog-smie-forward-token)
7348 (prolog-smie-backward-token): New functions.
7349 (prolog-mode-variables): Use them to parse "!," correctly.
7350 Set up smie-blink-matching for ".".
7351
7352 * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
7353 and `end'.
7354 (ispell-region, ispell-process-line): Update users.
7355
7356 * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
7357 point-min==1.
7358
7359 * textmodes/ispell.el: Fix commenting convention.
7360 (ispell-parse-output): Simplify, use push.
7361 (ispell-region): Use match-string-no-properties.
7362 (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
7363 (ispell-minor-mode): Use define-minor-mode.
7364 (ispell-message): Remove unused var `skip-regexp'.
7365 (ispell-add-per-file-word-list): Use dynamic let-binding.
7366 Try and use the proper comment marker.
7367
7368 * mail/sendmail.el: Fix commenting convention.
7369 (sendmail-send-it): Use line-beginning-position.
7370
7371 * help-fns.el (describe-variable): Add original value, if applicable.
7372
7373 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
7374
7375 * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
7376
7377 * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
7378
7379 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7380
7381 * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
7382 (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
7383 (smie-prec2-levels): Use them to better diagnose precedence cycles.
7384 (smie-blink-matching-check): Don't signal a mismatch if car is t.
7385 (smie-blink-matching-open): Rewrite to remove assumptions, so that
7386 something like "." can also be a closer.
7387 (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
7388 (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
7389 Rename internal functions to use "--". Update callers.
7390
7391 * frame.el (make-frame-names-alist): Don't list frames on other displays.
7392
7393 * fringe.el (fringe-styles): New var.
7394 (fringe-mode, fringe-query-style): Use it.
7395
7396 2010-09-18 Michael R. Mauger <mmaug@yahoo.com>
7397
7398 * progmodes/sql.el: Version 2.8
7399 (sql-login-params): Update widget structure; changes still needed.
7400 (sql-product-alist): Add :list-all and :list-table features for
7401 SQLite, Postgres and MySQL products.
7402 (sql-redirect): Handle default value.
7403 (sql-execute, sql-execute-feature): New functions.
7404 (sql-read-table-name): New function.
7405 (sql-list-all, sql-list-table): New functions. User API.
7406 (sql-mode-map, sql-interactive-mode-map): Add key definitions
7407 for above functions.
7408 (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
7409 for above functions.
7410 (sql-postgres-login-params): Add user and database defaults.
7411 (sql-buffer-live-p): Bug fix.
7412 (sql-product-history): New variable.
7413 (sql-read-product): New function. Use it.
7414 (sql-set-product, sql-product-interactive): Use it.
7415 (sql-connection-history): New variable.
7416 (sql-read-connection): New function. Use it.
7417 (sql-connect): New function.
7418 (sql-for-each-login): Redesign function interface.
7419 (sql-make-alternate-buffer-name, sql-save-connection): Use it.
7420 (sql-get-login-ext, sql-get-login): Use it. Handle default values.
7421 (sql-comint): Check for program. Existing live buffer.
7422 (sql-comint-postgres): Add port parameter.
7423
7424 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7425
7426 * emacs-lisp/warnings.el: Fix commenting convention.
7427 (display-warning): Use special mode and make the buffer read-only.
7428
7429 2010-09-18 Jay Belanger <jay.p.belanger@gmail.com>
7430
7431 * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
7432 empty string when it follows a repeated or optional pattern.
7433
7434 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
7435
7436 * indent.el (indent-according-to-mode): Apply syntax-propertize.
7437 (indent-region): Use indent-according-to-mode.
7438
7439 2010-09-18 Eli Zaretskii <eliz@gnu.org>
7440
7441 * fringe.el (fringe-mode): Doc fix.
7442
7443 2010-09-14 Kan-Ru Chen <kanru@kanru.info> (tiny change)
7444
7445 * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
7446 refreshing the preview buffer.
7447
7448 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
7449
7450 * textmodes/tex-mode.el (tex-syntax-propertize-rules)
7451 (latex-syntax-propertize-rules): New consts; replace
7452 tex-font-lock-syntactic-keywords.
7453 (tex-env-mark, latex-env-before-change): New functions.
7454 (latex-electric-env-pair-mode): New minor mode.
7455 (tex-font-lock-verb): Change arguments; do move point.
7456 (tex-font-lock-syntactic-face-function): Adjust to new verbatim
7457 representation as a form of comment.
7458 (tex-font-lock-keywords-1): Remove workaround, now unneeded.
7459 (doctex-syntax-propertize-rules): New const; replaces
7460 doctex-font-lock-syntactic-keywords.
7461 (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
7462
7463 * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
7464 (fortran-make-syntax-propertize-function): New function; replaces
7465 fortran-font-lock-syntactic-keywords.
7466 (fortran-mode): Use it.
7467 (fortran-line-length): Use it. Improve interactive spec.
7468
7469 * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
7470 (syntax-propertize-rules): Add var-ref case. Fix offset computation
7471 when adding surrounding \(..\).
7472
7473 * progmodes/js.el (js-mode): Fix last change (bug#7054).
7474
7475 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7476
7477 * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
7478 Use with-current-buffer.
7479
7480 * isearch.el (isearch-face): Rename from `isearch'.
7481 (isearch-highlight): Use new name.
7482
7483 2010-09-17 Eli Zaretskii <eliz@gnu.org>
7484
7485 * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
7486 5, for `half' width fringes. (Bug#6933)
7487
7488 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7489
7490 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
7491 (byte-compile-defvar): "foo/bar" does not lack a prefix.
7492
7493 * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
7494
7495 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
7496
7497 * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
7498 in calculating new frame position. Add more space between new and
7499 parent on the left (Bug#7048).
7500
7501 2010-09-17 Michael Albinus <michael.albinus@gmx.de>
7502
7503 * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
7504 defmacro.
7505
7506 2010-09-16 Chong Yidong <cyd@stupidchicken.com>
7507
7508 * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
7509
7510 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
7511 obsolete alias for x-selection-value.
7512
7513 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
7514
7515 2010-09-16 Michael Albinus <michael.albinus@gmx.de>
7516
7517 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
7518 cookie.
7519
7520 2010-09-15 Michael Albinus <michael.albinus@gmx.de>
7521
7522 * net/tramp-compat.el (tramp-compat-with-temp-message)
7523 (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
7524 (tramp-compat-process-put): New defuns.
7525
7526 * net/tramp.el (top):
7527 * net/tramp-gvfs.el (top):
7528 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
7529
7530 * net/tramp.el (tramp-progress-reporter-update):
7531 Use `tramp-compat-funcall'.
7532
7533 * net/tramp.el (tramp-process-actions):
7534 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion):
7535 * net/tramp-sh.el (tramp-handle-vc-registered)
7536 (tramp-get-remote-stat, tramp-get-remote-readlink):
7537 Use `tramp-compat-with-temp-message'.
7538
7539 * net/tramp-sh.el (top): Require 'cl.
7540 (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
7541 (tramp-open-connection-setup-interactive-shell):
7542 Use `tramp-compat-process-put'.
7543
7544 2010-09-15 Alan Mackenzie <acm@muc.de>
7545
7546 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
7547 indentation.
7548 (c-forward-<>-arglist-recur): Fix an infinite recursion.
7549
7550 2010-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
7551
7552 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
7553 `lexical' for warnings related to lexical scoping.
7554 (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
7555 global vars which don't have a prefix and could hence affect lexical
7556 scoping in unrelated files.
7557
7558 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
7559
7560 * net/imap.el: Revert back to version
7561 cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
7562 seem problematic.
7563
7564 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
7565
7566 * obsolete/old-whitespace.el (whitespace-unload-function):
7567 Explicitly pass `obarray' to `unintern' to avoid a warning.
7568
7569 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7570
7571 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
7572 Add `when' argument. Update callers.
7573
7574 * subr.el (unintern): Declare the obarray arg mandatory.
7575
7576 2010-09-14 Glenn Morris <rgm@gnu.org>
7577
7578 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
7579 Doc fixes.
7580
7581 * calendar/diary-lib.el (diary-included-files): New variable.
7582 (diary-list-entries): Maybe initialize diary-included-files.
7583 (diary-include-other-diary-files): Append to diary-included-files.
7584 * calendar/appt.el (appt-update-list): Also check the members of
7585 diary-included-files. (Bug#6999)
7586 (appt-check): Doc fix.
7587
7588 2010-09-14 David Reitter <david.reitter@gmail.com>
7589
7590 * simple.el (line-move-visual): Do not truncate goal column to
7591 integer size. (Bug#7020)
7592
7593 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7594
7595 * repeat.el (repeat): Allow repeating when the last event is a click.
7596 Suggested by Drew Adams (bug#6256).
7597
7598 2010-09-14 Sascha Wilde <wilde@sha-bang.de>
7599
7600 * vc/vc-hg.el (vc-hg-state, vc-hg-working-revision):
7601 Replace setting HGRCPATH to "" by some less invasive --config options.
7602
7603 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7604
7605 * font-lock.el (font-lock-beginning-of-syntax-function):
7606 Mark as obsolete.
7607
7608 2010-09-14 Glenn Morris <rgm@gnu.org>
7609
7610 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
7611 and tool-bar modes. (Bug#6211)
7612 (menu-bar-mode): Move setting of standard-value after the
7613 minor-mode definition, otherwise it seems to have no effect.
7614
7615 2010-09-14 Masatake YAMATO <yamato@redhat.com>
7616
7617 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
7618 Fix typo. (Bug#6976)
7619
7620 2010-09-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7621
7622 * whitespace.el: Allow cleaning up blanks without blank
7623 visualization (Bug#6651). Adjust help window for
7624 whitespace-toggle-options (Bug#6479). Allow to use fill-column
7625 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
7626 (whitespace-style): Add new value 'face. Adjust docstring.
7627 (whitespace-space, whitespace-hspace, whitespace-tab):
7628 Adjust foreground property face.
7629 (whitespace-line-column): Adjust docstring and type declaration.
7630 (whitespace-style-value-list, whitespace-toggle-option-alist)
7631 (whitespace-help-text): Adjust const initialization.
7632 (whitespace-toggle-options, global-whitespace-toggle-options):
7633 Adjust docstring.
7634 (whitespace-display-window, whitespace-interactive-char)
7635 (whitespace-style-face-p, whitespace-color-on): Adjust code.
7636 (whitespace-help-scroll): New fun.
7637
7638 2010-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
7639
7640 * calendar/time-date.el (format-seconds): Comment fix.
7641
7642 2010-09-13 Michael R. Mauger <mmaug@yahoo.com>
7643
7644 * progmodes/sql.el: Version 2.7.
7645 (sql-buffer-live-p): Improve detection.
7646 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
7647 (sql-set-sqli-buffer): Use it.
7648 (sql-product-interactive): Run `sql-set-sqli-hook'.
7649 (sql-rename-buffer): Code cleanup.
7650 (sql-redirect, sql-redirect-value): New functions. More to come.
7651
7652 2010-09-13 Juanma Barranquero <lekktu@gmail.com>
7653
7654 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.
7655 * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
7656 (TRAMP_SRC): New macro.
7657 ($(lisp)/net/tramp-loaddefs.el): New target.
7658
7659 2010-09-13 Michael Albinus <michael.albinus@gmx.de>
7660
7661 Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el.
7662
7663 * Makefile.in (TRAMP_SRC): Remove tramp-fish.el. Add tramp-sh.el.
7664
7665 * net/tramp.el (top): Don't show loading message. Require just
7666 'tramp-compat, everything else is required there.
7667 Use `ignore-errors' where appropriate.
7668 (tramp-inline-compress-start-size, tramp-copy-size-limit)
7669 (tramp-terminal-type, tramp-end-of-output)
7670 (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
7671 (tramp-completion-function-alist-ssh)
7672 (tramp-completion-function-alist-telnet)
7673 (tramp-completion-function-alist-su)
7674 (tramp-completion-function-alist-putty, tramp-remote-path)
7675 (tramp-remote-process-environment, tramp-sh-extra-args)
7676 (tramp-actions-before-shell, tramp-uudecode)
7677 (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
7678 (tramp-perl-file-attributes)
7679 (tramp-perl-directory-files-and-attributes)
7680 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
7681 (tramp-perl-encode, tramp-perl-decode)
7682 (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
7683 (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
7684 (tramp-handle-make-symbolic-link, tramp-handle-load)
7685 (tramp-handle-file-name-as-directory)
7686 (tramp-handle-file-name-directory)
7687 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
7688 (tramp-handle-file-exists-p, tramp-handle-file-attributes)
7689 (tramp-do-file-attributes-with-ls)
7690 (tramp-do-file-attributes-with-perl)
7691 (tramp-do-file-attributes-with-stat)
7692 (tramp-handle-set-visited-file-modtime)
7693 (tramp-handle-verify-visited-file-modtime)
7694 (tramp-handle-set-file-modes, tramp-handle-set-file-times)
7695 (tramp-set-file-uid-gid, tramp-remote-selinux-p)
7696 (tramp-handle-file-selinux-context)
7697 (tramp-handle-set-file-selinux-context)
7698 (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
7699 (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
7700 (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
7701 (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
7702 (tramp-handle-file-ownership-preserved-p)
7703 (tramp-handle-directory-file-name, tramp-handle-directory-files)
7704 (tramp-handle-directory-files-and-attributes)
7705 (tramp-do-directory-files-and-attributes-with-perl)
7706 (tramp-do-directory-files-and-attributes-with-stat)
7707 (tramp-handle-file-name-all-completions)
7708 (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
7709 (tramp-handle-copy-file, tramp-handle-copy-directory)
7710 (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
7711 (tramp-do-copy-or-rename-file-via-buffer)
7712 (tramp-do-copy-or-rename-file-directly)
7713 (tramp-do-copy-or-rename-file-out-of-band)
7714 (tramp-handle-make-directory, tramp-handle-delete-directory)
7715 (tramp-handle-delete-file)
7716 (tramp-handle-dired-recursive-delete-directory)
7717 (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
7718 (tramp-handle-insert-directory)
7719 (tramp-handle-unhandled-file-name-directory)
7720 (tramp-handle-expand-file-name)
7721 (tramp-handle-substitute-in-file-name)
7722 (tramp-handle-executable-find, tramp-process-sentinel)
7723 (tramp-handle-start-file-process, tramp-handle-process-file)
7724 (tramp-handle-call-process-region, tramp-handle-shell-command)
7725 (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
7726 (tramp-handle-insert-file-contents)
7727 (tramp-handle-insert-file-contents-literally)
7728 (tramp-handle-find-backup-file-name)
7729 (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
7730 (tramp-vc-registered-file-names, tramp-handle-vc-registered)
7731 (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
7732 (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
7733 (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
7734 (tramp-find-file-exists-command, tramp-open-shell)
7735 (tramp-find-shell, tramp-barf-if-no-shell-prompt)
7736 (tramp-open-connection-setup-interactive-shell)
7737 (tramp-local-coding-commands, tramp-remote-coding-commands)
7738 (tramp-find-inline-encoding, tramp-call-local-coding-command)
7739 (tramp-inline-compress-commands, tramp-find-inline-compress)
7740 (tramp-compute-multi-hops, tramp-maybe-open-connection)
7741 (tramp-send-command, tramp-wait-for-output)
7742 (tramp-send-command-and-check, tramp-barf-unless-okay)
7743 (tramp-send-command-and-read, tramp-mode-string-to-int)
7744 (tramp-convert-file-attributes, tramp-check-cached-permissions)
7745 (tramp-file-mode-from-int, tramp-file-mode-permissions)
7746 (tramp-shell-case-fold, tramp-make-copy-program-file-name)
7747 (tramp-method-out-of-band-p, tramp-local-host-p)
7748 (tramp-get-remote-path, tramp-get-remote-tmpdir)
7749 (tramp-get-ls-command, tramp-get-ls-command-with-dired)
7750 (tramp-get-test-command, tramp-get-test-nt-command)
7751 (tramp-get-file-exists-command, tramp-get-remote-ln)
7752 (tramp-get-remote-perl, tramp-get-remote-stat)
7753 (tramp-get-remote-readlink, tramp-get-remote-trash)
7754 (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
7755 (tramp-get-local-uid, tramp-get-local-gid)
7756 (tramp-get-inline-compress, tramp-get-inline-coding): Move to
7757 tramp-sh.el.
7758 (tramp-methods, tramp-default-method-alist)
7759 (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
7760 Move initialization to tramp-sh.el.
7761 (tramp-temp-name-prefix): Make it a defconst.
7762 (tramp-dissect-file-name): Don't check anymore for multi-hop
7763 methods.
7764 (tramp-debug-outline-regexp): Add a docstring.
7765 (tramp-debug-outline-level): Rename from `tramp-outline-level'.
7766 (tramp-get-debug-buffer): Use it.
7767
7768 * net/tramp-cache.el (top): Set tramp-autoload cookie for
7769 initialization forms.
7770 (tramp-set-connection-property): Don't protect `tramp-message'
7771 call, it isn't necessary any longer.
7772 (tramp-dump-connection-properties): Use `ignore-errors'.
7773
7774 * net/tramp-compat.el (top): Require 'advice, 'format-spec,
7775 'password-cache and 'auth-source.
7776
7777 * net/tramp-gvfs.el (top):
7778 * net/tramp-smb.el (top): Require 'tramp-sh.
7779
7780 * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
7781
7782 * net/tramp-sh.el: New file, derived from tramp.el.
7783 (top): Initialize `tramp-methods', `tramp-default-method-alist',
7784 `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
7785 Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
7786 Use `ignore-errors' where appropriate.
7787 (tramp-sh-file-name-handler-alist): Rename from
7788 `tramp-file-name-handler-alist'.
7789 (tramp-send-command-and-check): Return t or nil. Remove all
7790 `zerop' checks, where called.
7791 (tramp-handle-set-file-modes)
7792 (tramp-do-copy-or-rename-file-directly)
7793 (tramp-handle-delete-directory, tramp-handle-delete-file)
7794 (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
7795 (tramp-sh-file-name-handler, tramp-send-command-and-check)
7796 (tramp-get-remote-ln): Set tramp-autoload cookie.
7797
7798 * net/tramp-fish.el: Remove file.
7799
7800 2010-09-13 Daiki Ueno <ueno@unixuser.org>
7801
7802 * epa-file.el (epa-file-insert-file-contents): If visiting, bind
7803 buffer-file-name to avoid file-locking. (Bug#7026)
7804
7805 2010-09-13 Julien Danjou <julien@danjou.info>
7806
7807 * notifications.el (notifications-notify): Add support for
7808 image-path and sound-name.
7809 (notifications-specification-version): Add this variable.
7810
7811 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7812
7813 * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
7814
7815 2010-09-12 Leo <sdl.web@gmail.com>
7816
7817 * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
7818 (rcirc-completion-start): New variables.
7819 (rcirc-nick-completions): Rename to rcirc-completions.
7820 (rcirc-nick-completion-start-offset): Delete.
7821 (rcirc-completion-at-point): New function for constructing
7822 completion data for both nicks and irc commands. Add to
7823 completion-at-point-functions in rcirc mode.
7824 (rcirc-complete): Rename from rcirc-nick-complete; use
7825 rcirc-completion-at-point.
7826 (defun-rcirc-command): Update rcirc-client-commands.
7827
7828 2010-09-11 Glenn Morris <rgm@gnu.org>
7829
7830 * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
7831 atomically, to avoid parallel build errors. (Bug#4196)
7832
7833 2010-09-11 Michael R. Mauger <mmaug@yahoo.com>
7834
7835 * progmodes/sql.el: Version 2.6
7836 (sql-dialect): Synonym for "sql-product".
7837 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
7838 (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
7839 Set "sql-buffer" to buffer name not buffer object so multiple sql
7840 interactive buffers work properly. Reverts misguided changes in
7841 earlier work.
7842 (sql-comint): Make sure different buffer name is used if "*SQL*"
7843 buffer is for a different product.
7844 (sql-make-alternate-buffer-name): Fix bug with "sql-database"
7845 login param.
7846 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
7847 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
7848 (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
7849 Accept new buffer name or prompt for one.
7850 (sql-port): Default to zero.
7851 (sql-comint-mysql): Handle "sql-port" as a numeric.
7852 (sql-port-history): Delete unused variable.
7853 (sql-get-login): Default "sql-port" to a number.
7854 (sql-product-alist): Correct Postgres prompt and terminator regexp.
7855 (sql-sqlite-program): Dynamically detect presence of "sqlite" or
7856 "sqlite3" executables.
7857 (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
7858 (sql-buffer-live-p): New function.
7859 (sql-mode-menu, sql-send-string): Use it.
7860 (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
7861 syntax pattern.
7862 (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
7863 (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
7864
7865 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
7866
7867 * net/netrc.el (netrc-credentials): New convenience function.
7868
7869 2010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
7870
7871 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
7872 to replace texinfo-font-lock-syntactic-keywords.
7873 (texinfo-mode): Use it.
7874
7875 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
7876 Use syntax-propertize-function.
7877
7878 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
7879 replace sgml-font-lock-syntactic-keywords.
7880 (sgml-mode): Use it.
7881
7882 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
7883 since we don't use it.
7884
7885 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
7886
7887 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
7888 if available.
7889 (vhdl-fontify-buffer): Adjust.
7890
7891 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
7892 replace tcl-font-lock-syntactic-keywords.
7893 (tcl-mode): Use it.
7894
7895 * progmodes/simula.el (simula-syntax-propertize-function): New var to
7896 replace simula-font-lock-syntactic-keywords.
7897 (simula-mode): Use it.
7898
7899 * progmodes/sh-script.el (sh-st-symbol): Remove.
7900 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
7901 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
7902 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
7903 (sh-font-lock-paren): Set syntax-multiline.
7904 (sh-font-lock-syntactic-keywords): Remove.
7905 (sh-syntax-propertize-function): New function to replace it.
7906 (sh-mode): Use it.
7907
7908 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
7909 Define while compiling.
7910 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
7911 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
7912 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
7913 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
7914 (ruby-here-doc-end-syntax): Only define when
7915 syntax-propertize is not available.
7916 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
7917 New functions.
7918 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
7919 (electric-indent-chars): Silence bytecompiler.
7920 (ruby-mode): Use prog-mode, syntax-propertize-function, and
7921 electric-indent-chars.
7922
7923 * progmodes/python.el (python-syntax-propertize-function): New var to
7924 replace python-font-lock-syntactic-keywords.
7925 (python-mode): Use it.
7926 (python-quote-syntax): Simplify and adjust to new use.
7927
7928 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
7929 replace perl-font-lock-syntactic-keywords.
7930 (perl-syntax-propertize-special-constructs): New fun to replace
7931 perl-font-lock-special-syntactic-constructs.
7932 (perl-font-lock-syntactic-face-function): New fun.
7933 (perl-mode): Use it.
7934
7935 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
7936 to replace octave-font-lock-close-quotes.
7937 (octave-syntax-propertize-function): New function to replace
7938 octave-font-lock-syntactic-keywords.
7939 (octave-mode): Use it.
7940
7941 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
7942 replaces mixal-font-lock-syntactic-keywords.
7943 (mixal-mode): Use it.
7944
7945 * progmodes/make-mode.el (makefile-syntax-propertize-function):
7946 New var; replaces makefile-font-lock-syntactic-keywords.
7947 (makefile-mode): Use it.
7948 (makefile-imake-mode): Adjust.
7949
7950 * progmodes/js.el (js--regexp-literal): Define while compiling.
7951 (js-syntax-propertize-function): New var; replaces
7952 js-font-lock-syntactic-keywords.
7953 (js-mode): Use it.
7954
7955 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
7956 replaces gdb-script-font-lock-syntactic-keywords.
7957 (gdb-script-mode): Use it.
7958
7959 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
7960 (fortran--font-lock-syntactic-keywords): New var.
7961 (fortran-line-length): Update syntax-propertize-function and
7962 fortran--font-lock-syntactic-keywords.
7963
7964 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
7965
7966 * progmodes/cfengine.el (cfengine-mode):
7967 Use syntax-propertize-function.
7968 (cfengine-font-lock-syntactic-keywords): Remove.
7969
7970 * progmodes/autoconf.el (autoconf-mode):
7971 Use syntax-propertize-function.
7972 (autoconf-font-lock-syntactic-keywords): Remove.
7973
7974 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
7975 (ada-after-change-function, ada-initialize-syntax-table-properties)
7976 (ada-handle-syntax-table-properties): Only define when
7977 syntax-propertize is not available.
7978 (ada-mode): Use syntax-propertize-function.
7979
7980 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
7981 (font-lock-fontify-syntactic-keywords-region): Move handling of
7982 font-lock-syntactically-fontified to...
7983 (font-lock-default-fontify-region): ...here.
7984 Let syntax-propertize-function take precedence.
7985 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
7986
7987 * emacs-lisp/syntax.el (syntax-propertize-function)
7988 (syntax-propertize-chunk-size, syntax-propertize--done)
7989 (syntax-propertize-extend-region-functions): New vars.
7990 (syntax-propertize-wholelines, syntax-propertize-multiline)
7991 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
7992 (syntax-propertize): New functions.
7993 (syntax-propertize-rules): New macro.
7994 (syntax-ppss-flush-cache): Set syntax-propertize--done.
7995 (syntax-ppss): Call syntax-propertize.
7996
7997 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
7998
7999 2010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
8000
8001 * textmodes/ispell.el (ispell-init-process): Improve comments.
8002 XEmacs compatibility changes regarding (add-hook) 'local option
8003 and (set-process-query-on-exit-flag).
8004
8005 2010-09-09 Michael Albinus <michael.albinus@gmx.de>
8006
8007 * net/tramp-cache.el (tramp-parse-connection-properties):
8008 Set tramp-autoload cookie.
8009
8010 2010-09-09 Glenn Morris <rgm@gnu.org>
8011
8012 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
8013 (imagemagick-register-types): Doc fix.
8014
8015 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
8016
8017 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
8018
8019 * progmodes/js.el (require): Require is already "eval-and-compile".
8020 (js--re-search-forward): Avoid `eval'. Preserve the error data.
8021 (js--re-search-backward): Use js--re-search-forward.
8022
8023 * progmodes/fortran.el (fortran-line-length): Don't recompute
8024 syntactic keywords redundantly a second time.
8025
8026 * progmodes/ada-mode.el: Replace "(set '" with setq.
8027 (ada-mode): Simplify.
8028 (ada-create-case-exception, ada-adjust-case-interactive)
8029 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
8030 (ada-search-ignore-string-comment, ada-move-to-start)
8031 (ada-move-to-end): Use with-syntax-table.
8032
8033 * font-lock.el (save-buffer-state): Remove `varlist' arg.
8034 (font-lock-unfontify-region, font-lock-default-fontify-region):
8035 Update usage correspondingly.
8036 (font-lock-fontify-syntactic-keywords-region):
8037 Set parse-sexp-lookup-properties buffer-locally here.
8038 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
8039
8040 * simple.el (blink-matching-open): Don't burp if we can't find a match.
8041
8042 2010-09-08 Glenn Morris <rgm@gnu.org>
8043
8044 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
8045 Error if not compiled with -DBYTE_CODE_METER.
8046
8047 * emacs-lisp/bytecomp.el (byte-recompile-directory):
8048 Ignore dir-locals-file.
8049
8050 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
8051
8052 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8053 Not a const.
8054 (compilation-error-regexp-alist-alist): Rule out ": " in file names
8055 for the `gnu' messages.
8056 (compilation-set-skip-threshold): New command.
8057 (compilation-start): Use \' rather than $.
8058 (compilation-forget-errors): Use clrhash.
8059
8060 2010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
8061
8062 * textmodes/ispell.el (ispell-valid-dictionary-list):
8063 Simplify logic.
8064
8065 2010-09-08 Michael Albinus <michael.albinus@gmx.de>
8066
8067 Migrate to Tramp 2.2. Rearrange load dependencies.
8068 (Bug#1529, Bug#5448, Bug#5705)
8069
8070 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
8071 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
8072 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
8073
8074 * net/tramp.el (top): Remove all other tramp-* loads except
8075 tramp-compat.el. Remove all changes to tramp-unload-hook for
8076 other tramp-* packages. Rearrange defun order. Change calls of
8077 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
8078 `tramp-compat-octal-to-decimal' to new function names.
8079 (tramp-terminal-type, tramp-initial-end-of-output)
8080 (tramp-methods, tramp-foreign-file-name-handler-alist)
8081 (tramp-tramp-file-p, tramp-completion-mode-p)
8082 (tramp-send-command-and-check, tramp-get-remote-path)
8083 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
8084 (tramp-shell-quote-argument): Set tramp-autoload cookie.
8085 (with-file-property, with-connection-property): Move to
8086 tramp-cache.el.
8087 (tramp-local-call-process, tramp-decimal-to-octal)
8088 (tramp-octal-to-decimal): Move to tramp-compat.el.
8089 (tramp-handle-shell-command): Do not require 'shell.
8090 (tramp-compute-multi-hops): No special handling for tramp-gw-*
8091 symbols.
8092 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
8093
8094 * net/tramp-cache.el (top): Require 'tramp. Add to
8095 `tramp-unload-hook'.
8096 (tramp-cache-data, tramp-get-file-property)
8097 (tramp-set-file-property, tramp-flush-file-property)
8098 (tramp-flush-directory-property, tramp-get-connection-property)
8099 (tramp-set-connection-property, tramp-flush-connection-property)
8100 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
8101 cookie.
8102 (with-file-property, with-connection-property): New defuns, moved
8103 from tramp.el.
8104 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
8105 macro.
8106
8107 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
8108 (tramp-version): Set tramp-autoload cookie.
8109
8110 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
8111 changes to tramp-unload-hook for other tramp-* packages. Add to
8112 `tramp-unload-hook'.
8113 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
8114 (tramp-compat-call-process): New defuns, moved from tramp.el.
8115
8116 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
8117 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
8118 Add to `tramp-unload-hook'. Change call of
8119 `tramp-compat-decimal-to-octal' to new function name.
8120 (tramp-fish-method): Make it a defconst.
8121 (tramp-fish-file-name-p): Make it a defsubst.
8122 (tramp-fish-method, tramp-fish-file-name-handler)
8123 (tramp-fish-file-name-p): Set tramp-autoload cookie.
8124
8125 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
8126 `tramp-foreign-file-name-handler-alist'. Add to
8127 `tramp-unload-hook'.
8128 (tramp-ftp-method): Make it a defconst.
8129 (tramp-ftp-file-name-p): Make it a defsubst.
8130 (tramp-ftp-method, tramp-ftp-file-name-handler)
8131 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
8132
8133 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
8134 `tramp-foreign-file-name-handler-alist'. Add to
8135 `tramp-unload-hook'. Change checks, whether package can be
8136 loaded.
8137 (tramp-gvfs-file-name-p): Make it a defsubst.
8138 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
8139 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
8140 (tramp-gvfs-handle-file-directory-p): New defun.
8141 (tramp-gvfs-file-name-handler-alist): Use it.
8142
8143 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
8144 `tramp-foreign-file-name-handler-alist'. Add to
8145 `tramp-unload-hook'.
8146 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
8147 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
8148 defconst.
8149 (tramp-gw-tunnel-method, tramp-gw-socks-method)
8150 (tramp-gw-open-connection): Set tramp-autoload cookie.
8151
8152 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
8153 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
8154 Add to `tramp-unload-hook'. Change checks, whether package can be
8155 loaded.
8156 (tramp-imap-file-name-p): Make it a defsubst.
8157 (tramp-imap-method, tramp-imaps-method)
8158 (tramp-imap-file-name-handler)
8159 (tramp-imap-file-name-p): Set tramp-autoload cookie.
8160
8161 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
8162 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
8163 Add to `tramp-unload-hook'. Change checks, whether package can be
8164 loaded. Change call of `tramp-compat-decimal-to-octal' to new
8165 function name.
8166 (tramp-smb-tunnel-method): Make it a defconst.
8167 (tramp-smb-file-name-p): Make it a defsubst.
8168 (tramp-smb-method, tramp-smb-file-name-handler)
8169 (tramp-smb-file-name-p): Set tramp-autoload cookie.
8170
8171 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
8172 (tramp-uuencode-region): Set tramp-autoload cookie.
8173
8174 * net/trampver.el (top) Add to `tramp-unload-hook'.
8175 (tramp-version, tramp-bug-report-address): Set tramp-autoload
8176 cookie. Update release number.
8177
8178 2010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
8179
8180 * textmodes/ispell.el (ispell-start-process): Make sure original
8181 arg list is properly initialized (Bug#6993, Bug#6994).
8182
8183 2010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
8184
8185 * files.el (directory-abbrev-alist): Use \` as default regexp.
8186
8187 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
8188 chars like - or ] (bug#6984).
8189 (rx-any-condense-range): Explode 2-char ranges.
8190
8191 2010-09-06 Glenn Morris <rgm@gnu.org>
8192
8193 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
8194
8195 2010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
8196
8197 * textmodes/bibtex.el:
8198 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
8199
8200 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
8201
8202 * net/imap.el (imap-message-map): Remove optional buffer parameter,
8203 since no callers use it.
8204 (imap-message-get): Ditto.
8205 (imap-message-put): Ditto.
8206 (imap-mailbox-map): Ditto.
8207 (imap-mailbox-put): Ditto.
8208 (imap-mailbox-get): Ditto.
8209 (imap-mailbox-get): Revert last change for this function.
8210
8211 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
8212
8213 * net/imap.el (imap-fetch-safe): Remove function, and alter all
8214 callers to use `imap-fetch' instead. According to the comments, this
8215 should be safe, since all other IMAP clients use the 1:* syntax.
8216 (imap-enable-exchange-bug-workaround): Remove.
8217 (imap-debug): Remove -- doesn't seem very useful.
8218
8219 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
8220
8221 * net/imap.el (imap-log): New convenience function used throughout
8222 instead of repeating the same code all over the place.
8223
8224 2010-09-05 David De La Harpe Golden <david@harpegolden.net>
8225
8226 * mouse.el (mouse-save-then-kill): Save region to kill-ring
8227 when mouse-drag-copy-region is non-nil (Bug#6956).
8228
8229 2010-09-05 Chong Yidong <cyd@stupidchicken.com>
8230
8231 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
8232 Improve regexps (Bug#6987).
8233 (dired-sort-toggle): Search more robustly for -t flag.
8234
8235 * files.el (get-free-disk-space): Search more robustly for
8236 "available" column. Suggested by Ehud Karni
8237 <ehud@unix.mvs.co.il>.
8238
8239 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
8240
8241 * international/uni-bidi.el:
8242 * international/uni-category.el:
8243 * international/uni-combining.el:
8244 * international/uni-decimal.el:
8245 * international/uni-mirrored.el:
8246 * international/uni-name.el: Regenerate.
8247
8248 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
8249
8250 * electric.el (electric-indent-post-self-insert-function):
8251 Don't reindent with a sloppy indentation function.
8252
8253 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
8254 border case in change-log-mode.
8255
8256 2010-09-04 Chong Yidong <cyd@stupidchicken.com>
8257
8258 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8259 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
8260 Recognize leading tab in gcc-include regexp. Ignore names with
8261 leading "from" or "in" in gnu regexp (Bug#6937).
8262
8263 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
8264
8265 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
8266 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
8267 (ispell-start-process): Avoid setq and simplify logic.
8268 (ispell-init-process): Setup kill-buffer-hook locally when needed.
8269 (kill-buffer-hook): Don't use it globally with code that uses
8270 expand-file-name since that may call kill-buffer via
8271 code_conversion_restore.
8272
8273 2010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
8274
8275 * emacs-lisp/package.el (package-directory-list): Only call
8276 file-name-nondirectory on a string.
8277
8278 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
8279
8280 * emacs-lisp/package.el (package--download-one-archive):
8281 Ensure that archive-contents is valid before saving it.
8282 (package-activate-1, package-mark-obsolete, define-package)
8283 (package-compute-transaction, package-list-maybe-add): Use push.
8284
8285 2010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
8286
8287 Use SMIE's blink-paren for octave-mode.
8288 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
8289 Backslashes do not escape single-quotes, single-quotes do.
8290 (octave-block-else-regexp, octave-block-end-regexp)
8291 (octave-block-match-alist): Remove.
8292 (octave-smie-bnf-table): New var, with old content.
8293 (octave-smie-op-levels): Use it.
8294 (octave-smie-closer-alist): New var.
8295 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
8296 (octave-blink-matching-block-open): Remove.
8297 (octave-reindent-then-newline-and-indent, octave-electric-semi)
8298 (octave-electric-space): Let self-insert-command run expand-abbrev and
8299 blink parens.
8300
8301 * electric.el (electricity): New group.
8302 (electric-indent-chars): New var.
8303 (electric-indent-post-self-insert-function): New fun.
8304 (electric-indent-mode): New minor mode.
8305 (electric-pair-skip-self): New custom.
8306 (electric-pair-post-self-insert-function): New function.
8307 (electric-pair-mode): New minor mode.
8308
8309 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
8310 calcAlg-blink-matching-open.
8311 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
8312 (calc-do-alg-entry): Only touch the part of the keymap that varies.
8313 Use the new blink-matching-check-function.
8314
8315 Provide blink-matching support to SMIE.
8316 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
8317 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
8318 (smie-blink-matching-check, smie-blink-matching-open): New functions.
8319
8320 * simple.el (newline): Fix last change to properly remove itself from
8321 the hook.
8322
8323 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
8324
8325 * simple.el (newline): Eliminate optimization.
8326 Use post-self-insert-hook to set hard-newline and things before
8327 running post-self-insert-hook.
8328 (blink-matching-check-mismatch): New function.
8329 (blink-matching-check-function): New variable.
8330 (blink-matching-open): Use them.
8331 Skip back forward over prefix chars skipped by forward-sexp.
8332 Don't check if the parens are backslash escaped.
8333 (blink-paren-post-self-insert-function): Check backslash escaping here.
8334
8335 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
8336
8337 * emacs-lisp/package.el (package-menu-mode-map):
8338 Change package-menu-revert bindings to revert-buffer.
8339 (package-menu-mode): Set revert-buffer-function.
8340 (package-menu-revert): Doc fix.
8341
8342 2010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
8343
8344 * textmodes/ispell.el (ispell-init-process): Use "~/" as
8345 `default-directory' unless using Ispell per-directory personal
8346 dictionaries and not in a mini-buffer under XEmacs.
8347 (kill-buffer-hook): Do not kill ispell process on exit when
8348 `ispell-process-directory' is "~/". (Bug#6143)
8349
8350 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
8351
8352 * simple.el (kill-new): Call interprogram-cut-function with only
8353 one argument.
8354
8355 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
8356 Remove cut buffer from error message.
8357
8358 * term/x-win.el (x-select-text):
8359 * term/pc-win.el (x-selection-value):
8360 * term/ns-win.el (x-selection-value):
8361 * eshell/em-term.el:
8362 * w32-fns.el (x-get-selection-value):
8363 * mouse-sel.el (mouse-sel-set-selection-function):
8364 * frame.el (display-selections-p): Remove cut-buffer in documentation.
8365
8366 * term/x-win.el: Update documentation for x-last-selected-text-*.
8367 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
8368 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
8369 (x-select-text): Remove argument PUSH, update documentation.
8370 Remove cut-buffer code.
8371 (x-selection-value-internal): Was previously x-selection-value.
8372 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
8373 Update documentation, remove cut-buffer code.
8374 Call x-selection-value-internal.
8375 (x-clipboard-yank): Call x-selection-value-internal.
8376 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
8377
8378 * term/pc-win.el (x-last-selected-text):
8379 x-cut-buffer-or-selection-value renamed to x-selection-value
8380 (x-select-text): Remove argument PUSH, update documentation.
8381
8382 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
8383 x-cut-buffer-or-selection-value renamed to x-selection-value
8384 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
8385 (x-select-text): Remove argument PUSH, update documentation.
8386
8387 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
8388
8389 * w32-fns.el (x-last-selected-text):
8390 x-cut-buffer-or-selection-value renamed to x-selection-value.
8391 (x-cut-buffer-max): Remove.
8392 (x-select-text): Remove argument PUSH, update documentation.
8393
8394 * simple.el (interprogram-cut-function): Remove mention of PUSH.
8395
8396 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
8397
8398 * mouse-sel.el (mouse-sel-get-selection-function):
8399 x-cut-buffer-or-selection-value renamed to x-selection-value.
8400 (x-select-text): Remove optional push.
8401
8402 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
8403
8404 * simple.el (blink-paren-function): Move from C to here.
8405 (blink-paren-post-self-insert-function): New function.
8406 (post-self-insert-hook): Use it.
8407
8408 * emacs-lisp/pcase.el (pcase-split-memq):
8409 Fix overenthusiastic optimisation.
8410 (pcase-u1): Handle the case of a lambda pred.
8411
8412 2010-08-31 Kenichi Handa <handa@m17n.org>
8413
8414 * international/mule-cmds.el (standard-display-european-internal):
8415 Setup standard-display-table for 8-bit characters by storing 8-bit
8416 characters in the element vector.
8417
8418 * disp-table.el (standard-display-8bit):
8419 Setup standard-display-table for 8-bit characters by storing 8-bit
8420 characters in the element vector.
8421 (standard-display-european): Likewise.
8422
8423 2010-08-31 Masatake YAMATO <yamato@redhat.com>
8424
8425 * textmodes/nroff-mode.el (nroff-view): New command.
8426 (nroff-mode-map): Bind it to C-c C-c.
8427
8428 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
8429
8430 * emacs-lisp/smie.el (smie-down-list): New command.
8431
8432 Remove old indentation and navigation code on octave-mode.
8433 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
8434 smie-down-list rather than add a binding for octave-down-block.
8435 (octave-mark-block, octave-blink-matching-block-open):
8436 Rely on forward-sexp-function.
8437 (octave-fill-paragraph): Don't narrow, so you can use
8438 indent-according-to-mode.
8439 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
8440 (octave-in-block-p, octave-re-search-forward-kw)
8441 (octave-re-search-backward-kw, octave-indent-calculate)
8442 (octave-end-as-array-index-p, octave-block-end-offset)
8443 (octave-scan-blocks, octave-forward-block, octave-backward-block)
8444 (octave-down-block, octave-backward-up-block, octave-up-block)
8445 (octave-before-magic-comment-p, octave-indent-line): Remove.
8446
8447 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
8448
8449 * emacs-lisp/package.el (package--read-archive-file): Just use
8450 `read', to avoid copying an additional string.
8451 (package-menu-mode): Set header-line-format here.
8452 (package-menu-refresh, package-menu-revert): Signal an error if
8453 not in the Package Menu.
8454 (package-menu-package-list): New var.
8455 (package--generate-package-list): Operate on the current buffer;
8456 don't assume that it is *Packages*, since the user may rename it.
8457 Allow persistent package listings and sort keys using
8458 package-menu-package-list and package-menu-package-sort-key.
8459 (package-menu--version-predicate): Fix version calculation.
8460 (package-menu-sort-by-column): Don't select the window.
8461 (package--list-packages): Create the *Packages* buffer.
8462 Set package-menu-package-list-key.
8463 (list-packages): Sorting by status is now the default.
8464 (package-buffer-info): Use match-string-no-properties.
8465 (define-package): Add a &rest argument for future proofing, but
8466 don't use it yet.
8467 (package-install-from-buffer, package-install-buffer-internal):
8468 Merge into a single function, package-install-from-buffer.
8469 (package-install-file): Change caller.
8470
8471 * finder.el: Load finder-inf using `require'.
8472 (finder-list-matches): Sorting by status is now the default.
8473 (finder-compile-keywords): Simpify printing.
8474
8475 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
8476
8477 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
8478 (octave-mode-map): Remove special bindings for forward/backward-block
8479 and octave-backward-up-block. Use smie-close-block.
8480 (octave-continuation-marker-regexp): New var.
8481 (octave-continuation-regexp): Use it.
8482 (octave-operator-table, octave-smie-op-levels)
8483 (octave-operator-regexp, octave-smie-indent-rules): New vars.
8484 (octave-smie-backward-token, octave-smie-forward-token): New funs.
8485 (octave-mode): Use SMIE.
8486 (octave-close-block): Delete.
8487
8488 2010-08-30 Eli Zaretskii <eliz@gnu.org>
8489
8490 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
8491 CLIPBOARD, not in PRIMARY. (Bug#6944)
8492
8493 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
8494
8495 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
8496 a list of parents.
8497 (smie-indent-column): Allow indirection through variables.
8498
8499 * composite.el (save-buffer-state): Delete, unused.
8500 * font-lock.el (save-buffer-state): Use with-silent-modifications.
8501 (font-lock-default-fontify-region): Use with-syntax-table.
8502 * jit-lock.el (with-buffer-unmodified): Remove.
8503 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
8504
8505 Use `declare' in defmacros.
8506 * window.el (save-selected-window):
8507 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
8508 * progmodes/python.el (def-python-skeleton):
8509 * net/dbus.el (dbus-ignore-errors):
8510 * jka-cmpr-hook.el (with-auto-compression-mode):
8511 * international/mule.el (with-category-table):
8512 * emacs-lisp/timer.el (with-timeout):
8513 * emacs-lisp/lisp-mnt.el (lm-with-file):
8514 * emacs-lisp/eieio.el (with-slots):
8515 * emacs-lisp/easymenu.el (easy-menu-define):
8516 * emacs-lisp/debug.el (debugger-env-macro):
8517 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
8518 (Multiple-value-call, Multiple-value-prog1):
8519 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
8520 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
8521 edebug rule to definition.
8522 * emacs-lisp/lisp-mode.el (save-selected-window)
8523 (with-current-buffer, combine-after-change-calls)
8524 (with-output-to-string, with-temp-file, with-temp-buffer)
8525 (with-temp-message, with-syntax-table, read-if, eval-after-load)
8526 (dolist, dotimes, when, unless):
8527 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
8528
8529 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
8530
8531 * finder.el: Require `package'.
8532 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
8533 (finder-package-info): Var deleted.
8534 (finder-keywords-hash, finder--builtins-alist): New vars.
8535 (finder-compile-keywords): Compute package--builtins and
8536 finder-keywords-hash instead of finder-keywords-hash, respecting
8537 the "Package" header.
8538 (finder-unknown-keywords, finder-list-matches):
8539 Use finder-keywords-hash and package--list-packages.
8540 (finder-mode): Don't set font-lock-defaults.
8541 (finder-exit): We don't use "*Finder-package*" and "*Finder
8542 Category*" buffers anymore.
8543
8544 * emacs-lisp/package.el (package--builtins-base): Var deleted.
8545 (package--builtins): Set default value to nil.
8546 (package-initialize): Load precomputed value of package--builtins
8547 from finder-inf.el.
8548 (package-alist, package-compute-transaction)
8549 (package-download-transaction): Improve docstring.
8550 (package-read-all-archive-contents): Do not change
8551 package--builtins here.
8552 (list-packages): Make package-list-packages an alias for this.
8553 Sort by status by default.
8554 (package--list-packages): Add optional PACKAGES arg.
8555 (describe-package-1): Use font-lock-face property. For built-in
8556 packages, insert file commentary.
8557 (package--generate-package-list): Rename from
8558 package-list-packages-internal; all callers changed. Add optional
8559 PACKAGES arg. Add alphabetical sort fallbacks.
8560 (package-menu--version-predicate, package-menu--status-predicate)
8561 (package-menu--description-predicate)
8562 (package-menu--name-predicate): New functions.
8563
8564 * info.el (Info-finder-find-node): Search package-alist instead of
8565 finder-package-info.
8566
8567 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
8568
8569 * subr.el (version-regexp-alist): Don't use "a" and "b" for
8570 "alpha" and "beta".
8571 (version-to-list): Handle versions like "10.3d".
8572
8573 2010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8574
8575 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
8576 (macroexp-accumulate): Use `declare'.
8577
8578 2010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8579
8580 * whitespace.el (whitespace-style): Adjust type declaration.
8581
8582 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
8583
8584 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
8585
8586 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
8587
8588 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
8589 (Bug#6907).
8590
8591 2010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
8592
8593 * progmodes/js.el: Make indentation more customizable (Bug#6914).
8594 (js-paren-indent-offset, js-square-indent-offset)
8595 (js-curly-indent-offset): New options.
8596 (js--proper-indentation): Use them.
8597
8598 2010-08-26 Daniel Colascione <dan.colascione@gmail.com>
8599
8600 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
8601 instead of inspecting font-lock properties (Bug#6916).
8602
8603 2010-08-26 David Reitter <david.reitter@gmail.com>
8604
8605 * server.el (server-visit-files): Run pre-command-hook and
8606 post-command-hook for each buffer while it is current (Bug#6910).
8607 (server-execute): Do not run hooks here.
8608
8609 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
8610
8611 Sync with Tramp 2.1.19.
8612
8613 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region):
8614 Protect deleting tmpfile.
8615 (tramp-gvfs-maybe-open-connection): Use `tramp-compat-funcall'.
8616
8617 * net/tramp.el (tramp-handle-expand-file-name)
8618 (tramp-completion-handle-file-name-all-completions)
8619 (tramp-completion-handle-file-name-completion):
8620 Use `tramp-connectable-p'.
8621
8622 * net/trampver.el: Update release number.
8623
8624 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
8625
8626 * help.el (help-map): Bind `C-h P' to describe-package.
8627
8628 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
8629
8630 * emacs-lisp/package.el (package-refresh-contents): Catch errors
8631 when downloading archives.
8632 (describe-package-1): Add package commentary.
8633 (package-install-button-action): New function.
8634 (package-menu-mode-map): Bind ? to package-menu-describe-package.
8635 (package-menu-view-commentary): Function removed.
8636 (package-list-packages-internal): Hide the `package' package too.
8637
8638 2010-08-25 Kenichi Handa <handa@m17n.org>
8639
8640 * language/misc-lang.el ("Arabic"): New language environment.
8641 Setup composition-function-table for Arabic characters.
8642
8643 * international/fontset.el (setup-default-fontset): Fix typo for
8644 arabic OTF spec (fini->fina).
8645
8646 2010-08-25 Jan Djärv <jan.h.d@swipnet.se>
8647
8648 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
8649 on all frames.
8650
8651 2010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8652
8653 * whitespace.el: Allow cleaning up blanks without blank
8654 visualization (Bug#6651). Adjust help window for
8655 whitespace-toggle-options (Bug#6479). Allow to use fill-column
8656 instead of whitespace-line-column (from EmacsWiki). New version
8657 13.1.
8658 (whitespace-style): Add new value 'face. Adjust docstring.
8659 (whitespace-space, whitespace-hspace, whitespace-tab):
8660 Adjust foreground property face.
8661 (whitespace-line-column): Adjust docstring and type declaration.
8662 (whitespace-style-value-list, whitespace-toggle-option-alist)
8663 (whitespace-help-text): Adjust const initialization.
8664 (whitespace-toggle-options, global-whitespace-toggle-options):
8665 Adjust docstring.
8666 (whitespace-display-window, whitespace-interactive-char)
8667 (whitespace-style-face-p, whitespace-color-on): Adjust code.
8668 (whitespace-help-scroll): New fun.
8669
8670 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
8671
8672 * emacs-lisp/package.el (list-packages): Alias for
8673 package-list-packages.
8674
8675 2010-08-24 Kevin Ryde <user42@zip.com.au>
8676
8677 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
8678 (Bug#5651).
8679
8680 * progmodes/ruby-mode.el (ruby): Add defgroup.
8681
8682 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
8683
8684 * progmodes/python.el: Add Ipython support (Bug#5390).
8685 (python-shell-prompt-alist)
8686 (python-shell-continuation-prompt-alist): New options.
8687 (python--set-prompt-regexp): New function.
8688 (inferior-python-mode, run-python, python-shell):
8689 Require ansi-color. Use python--set-prompt-regexp to set the comint
8690 prompt based on the Python interpreter.
8691 (python--prompt-regexp): New var.
8692 (python-check-comint-prompt)
8693 (python-comint-output-filter-function): Use it.
8694 (run-python): Use a pipe (Bug#5694).
8695
8696 2010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
8697
8698 * progmodes/python.el (python-send-region): Send a different
8699 Python command if Ipython is in use.
8700 (python-check-version): Use a Python command to find the version.
8701
8702 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
8703
8704 * mouse.el (mouse-yank-primary): Avoid setting primary when
8705 deactivating the mark (Bug#6872).
8706
8707 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
8708
8709 * progmodes/python.el (python-block-pairs): Allow use of "finally"
8710 with "else" (Bug#3991).
8711
8712 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
8713
8714 * net/dbus.el: Accept UNIX domain sockets as bus address.
8715 (top): Don't initialize `dbus-registered-objects-table' anymore,
8716 this is done in dbusbind.c.
8717 (dbus-check-event): Adapt test for bus.
8718 (dbus-return-values-table, dbus-unregister-service)
8719 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
8720 Adapt doc string.
8721
8722 2010-08-23 Juanma Barranquero <lekktu@gmail.com>
8723
8724 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
8725
8726 2010-08-22 Juri Linkov <juri@jurta.org>
8727
8728 * simple.el (read-extended-command): New function with the logic
8729 for `completing-read' moved to Elisp from `execute-extended-command'.
8730 Use `function-called-at-point' in `minibuffer-default-add-function'
8731 to get a command name for M-n (bug#5364, bug#5214).
8732
8733 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
8734
8735 * startup.el (command-line-1): Issue warning for ignored arguments
8736 --unibyte, etc (Bug#6886).
8737
8738 2010-08-22 Leo <sdl.web@gmail.com>
8739
8740 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
8741 (ignore, bright, dim, keyword): Split list of nicknames before
8742 passing to rcirc-add-or-remove (Bug#6894).
8743
8744 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
8745
8746 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
8747
8748 2010-08-22 Leo <sdl.web@gmail.com>
8749
8750 Fix buffer-list rename&refresh after killing a buffer in ido.
8751 * ido.el: Revert Óscar's.
8752 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
8753 Remember the buffers at head, rather than their name.
8754 * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
8755
8756 2010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
8757 Stefan Monnier <monnier@iro.umontreal.ca>
8758
8759 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
8760 extra backslash added to each line (bug#6890).
8761
8762 2010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
8763
8764 * subr.el (read-key): Don't echo keystrokes (bug#6883).
8765
8766 2010-08-22 Glenn Morris <rgm@gnu.org>
8767
8768 * menu-bar.el (menu-bar-games-menu): Add landmark.
8769
8770 2010-08-22 Glenn Morris <rgm@gnu.org>
8771
8772 * align.el (align-regexp): Make group and spacing arguments
8773 use the interactive defaults when non-interactive. (Bug#6698)
8774
8775 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
8776 expansion, so as not to need sendmail.
8777 (mail-text-start): Remove declaration.
8778 (rmail-retry-failure): Require sendmail.
8779
8780 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
8781
8782 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
8783
8784 2010-08-22 Michael Albinus <michael.albinus@gmx.de>
8785
8786 * progmodes/flymake.el (flymake-start-syntax-check-process):
8787 Use `start-file-process' in order to let it run also on remote hosts.
8788
8789 2010-08-22 Kenichi Handa <handa@m17n.org>
8790
8791 * files.el: Add `word-wrap' as safe local variable.
8792
8793 2010-08-22 Glenn Morris <rgm@gnu.org>
8794
8795 * woman.el (woman-translate): Case matters. (Bug#6849)
8796
8797 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
8798
8799 * simple.el (kill-region): Doc fix (Bug#6787).
8800
8801 2010-08-22 Glenn Morris <rgm@gnu.org>
8802
8803 * calendar/diary-lib.el (diary-header-line-format):
8804 Fit it to the window, not the frame.
8805
8806 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
8807
8808 * subr.el (ignore-errors): Add debug declaration.
8809
8810 2010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
8811
8812 * whitespace.el (whitespace-color-off): Remove post-command-hook
8813 locally.
8814
8815 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
8816
8817 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
8818
8819 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
8820
8821 * cus-edit.el (custom-group-value-create): Add extra newline
8822 before end line (Bug#6876).
8823
8824 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
8825
8826 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
8827 when extending it. Before killing on the second click, check if
8828 the buffer is the correct one. Doc fix.
8829 (mouse-secondary-save-then-kill): Allow usage without first
8830 calling mouse-start-secondary, by defaulting to point. Don't save
8831 an empty secondary selection. Doc fix.
8832
8833 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8834
8835 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
8836 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
8837 New version 13.0.
8838 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
8839 Adjust initialization.
8840 (whitespace-bob-marker, whitespace-eob-marker)
8841 (whitespace-buffer-changed): New vars.
8842 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
8843 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
8844 (whitespace-post-command-hook, whitespace-display-char-on):
8845 Adjust code.
8846 (whitespace-looking-back, whitespace-buffer-changed): New funs.
8847 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
8848
8849 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
8850
8851 * files.el (locate-file-completion-table): Only list the .el and .elc
8852 extensions if there's no other choice (bug#5955).
8853
8854 * facemenu.el (facemenu-self-insert-data): New var.
8855 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
8856 New functions.
8857 (facemenu-add-face): Use them.
8858
8859 * simple.el (blink-matching-open): Obey forward-sexp-function.
8860
8861 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
8862
8863 * simple.el (prog-mode-map): New var.
8864 (prog-indent-sexp): New command.
8865
8866 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
8867
8868 * progmodes/prolog.el (smie): Require.
8869
8870 * emacs-lisp/smie.el (smie-default-backward-token)
8871 (smie-default-forward-token): Strip properties.
8872 (smie-next-sexp): Be more careful with associative operators.
8873 (smie-forward-sexp-command): Generalize.
8874 (smie-backward-sexp-command): Simplify.
8875 (smie-closer-alist): New var.
8876 (smie-close-block): New command.
8877 (smie-indent-debug-log): New var.
8878 (smie-indent-offset-rule): Add a few more cases.
8879 (smie-indent-column): New function.
8880 (smie-indent-after-keyword): Use it.
8881 (smie-indent-keyword): Use it.
8882 Fix up the opener code's point position.
8883 (smie-indent-comment): Only applies at BOL.
8884 (smie-indent-debug): New command.
8885
8886 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
8887 declarations that are useful before running the macro.
8888
8889 2010-08-18 Joakim Verona <joakim@verona.se>
8890
8891 * image.el (imagemagick-types-inhibit): New variable.
8892 (imagemagick-register-types): New function.
8893 * image-mode.el (image-transform-properties): New function.
8894 (image-transform-set-scale, image-transform-fit-to-height)
8895 (image-transform-set-rotation, image-transform-set-resize)
8896 (image-transform-fit-to-width, image-transform-fit-to-height):
8897 New functions.
8898 (image-toggle-display-image): Support image transforms.
8899
8900 2010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
8901
8902 * image.el (create-animated-image): Don't add heuristic mask to image
8903 (Bug#6839).
8904
8905 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
8906
8907 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
8908 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
8909
8910 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
8911
8912 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
8913
8914 Font-lock '...' strings, plus various simplifications and fixes.
8915 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
8916 (octave-font-lock-close-quotes): New function.
8917 (octave-font-lock-syntactic-keywords): New var.
8918 (octave-mode): Use it. Set beginning-of-defun-function.
8919 (octave-mode-map): Don't override the <foo>-defun commands.
8920 (octave-mode-menu): Pass it directly to easy-menu-define;
8921 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
8922 (octave-block-match-alist): Fix up last change so that
8923 octave-close-block uses the more specific keyword.
8924 (info-lookup-mode): Silence byte-compiler.
8925 (octave-beginning-of-defun): Not interactive any more.
8926 Optimize slightly.
8927 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
8928 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
8929 (octave-completion-at-point-function): Make sure point is within
8930 beg..end.
8931 (octave-reindent-then-newline-and-indent):
8932 Use reindent-then-newline-and-indent.
8933 (octave-add-octave-menu): Remove.
8934
8935 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
8936
8937 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
8938 (report-emacs-bug-can-use-xdg-email): New functions.
8939 (report-emacs-bug): Set can-xdg-email to result of
8940 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
8941 \C-cm to report-emacs-bug-insert-to-mailer and add help text
8942 about it.
8943
8944 * net/browse-url.el (browse-url-default-browser): Add cond
8945 for browse-url-xdg-open.
8946 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
8947
8948 2010-08-17 Glenn Morris <rgm@gnu.org>
8949
8950 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
8951 (c-fontify-recorded-types-and-refs): Define for compiler.
8952 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
8953 before use.
8954
8955 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
8956 Fix format call.
8957
8958 2010-08-17 Michael Albinus <michael.albinus@gmx.de>
8959
8960 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
8961 properties.
8962 (tramp-handle-process-file): Call the program in a subshell, in
8963 order to preserve working directory.
8964 (tramp-action-password): Hide password prompt before next run.
8965 (tramp-process-actions): Widen connection buffer for the trace.
8966
8967 2010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
8968
8969 * net/rcirc.el (rcirc-log-process-buffers): New option.
8970 (rcirc-print): Use it.
8971 (rcirc-generate-log-filename): New function.
8972 (rcirc-log-filename-function): Change default to
8973 rcirc-generate-log-filename (Bug#6828).
8974
8975 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
8976
8977 * simple.el (deactivate-mark): If select-active-regions is `only',
8978 only set selection for temporarily active regions.
8979
8980 * cus-start.el: Change defcustom for select-active-regions.
8981
8982 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
8983
8984 * mouse.el (mouse--drag-set-mark-and-point): New function.
8985 (mouse-drag-track): Use LOCATION arg to push-mark.
8986 Use mouse--drag-set-mark-and-point to take click-count into
8987 consideration when updating point and mark (Bug#6840).
8988
8989 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
8990
8991 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8992 Give the Ruby rule a lower priority than Gnu (Bug#6778).
8993
8994 2010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
8995
8996 * font-lock.el (lisp-font-lock-keywords-2):
8997 Add combine-after-change-calls, condition-case-no-debug,
8998 with-demoted-errors, and with-silent-modifications (Bug#6025).
8999
9000 2010-08-14 Kevin Ryde <user42@zip.com.au>
9001
9002 * emacs-lisp/copyright.el (copyright-update-year)
9003 (copyright-update): Temporary switch-to-buffer to ensure the
9004 buffer change being queried is visible (Bug#5394).
9005
9006 2010-08-14 Tom Tromey <tromey@redhat.com>
9007
9008 * progmodes/etags.el (tags-file-name): Mark safe if stringp
9009 (Bug#6733).
9010
9011 2010-08-14 Eli Zaretskii <eliz@gnu.org>
9012
9013 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
9014 MS-DOS. (Bug#6689)
9015
9016 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
9017
9018 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
9019 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
9020 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
9021 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
9022 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
9023 Call menu-bar-set-tool-bar-position.
9024
9025 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
9026
9027 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
9028 comment style (bug#6834).
9029 * progmodes/scheme.el (scheme-mode-syntax-table):
9030 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
9031 "b" flag in "' 14b" syntax.
9032
9033 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
9034 for (un)commenting the region and performing completion.
9035 (octave-mode-menu): Use standard commands for help and completion.
9036 (octave-mode-syntax-table): Support %{..%} comments (sort of).
9037 (octave-mode): Use define-derived-mode.
9038 Set completion-at-point-functions and don't set columns.
9039 Don't disable adaptive-fill-regexp.
9040 (octave-describe-major-mode, octave-comment-region)
9041 (octave-uncomment-region, octave-comment-indent)
9042 (octave-indent-for-comment): Remove.
9043 (octave-indent-calculate): Rename from calculate-octave-indent.
9044 (octave-indent-line, octave-fill-paragraph): Update caller.
9045 (octave-initialize-completions): No need to make an alist.
9046 (octave-completion-at-point-function): New function.
9047 (octave-complete-symbol): Use it.
9048 (octave-insert-defun): Use define-skeleton.
9049
9050 * progmodes/octave-mod.el (octave-mode): Set comment-add.
9051 (octave-mode-map): Use comment-dwim (bug#6829).
9052
9053 2010-08-12 Antoine Levitt <antoine.levitt@gmail.com>
9054
9055 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
9056 indentation of inserted comment.
9057
9058 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
9059
9060 * faces.el (region): Add type gtk that uses gtk colors.
9061
9062 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
9063 Handle theme-name change.
9064
9065 2010-08-10 Michael R. Mauger <mmaug@yahoo.com>
9066
9067 * progmodes/sql.el: Version 2.5
9068 (sql-product-alist): Add :prompt-cont-regexp property for several
9069 database products.
9070 (sql-prompt-cont-regexp): New variable.
9071 (sql-output-newline-count, sql-output-by-send):
9072 New variables. Record number of newlines in input text.
9073 (sql-send-string): Handle multiple filters and count newlines.
9074 (sql-send-magic-terminator): Count terminator newline.
9075 (sql-interactive-remove-continuation-prompt): Filters output to
9076 remove continuation prompts; one for each newline.
9077 (sql-interactive-mode): Set up new variables, prompt regexp and
9078 output filter.
9079 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
9080 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
9081
9082 2010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
9083
9084 * emacs-lisp/pcase.el: New file.
9085
9086 2010-08-10 Michael Albinus <michael.albinus@gmx.de>
9087
9088 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
9089 as here-document, otherwise the command could exceed maximum
9090 length of command line.
9091 (tramp-handle-vc-registered): Call script accordingly.
9092 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
9093
9094 2010-08-10 Kenichi Handa <handa@m17n.org>
9095
9096 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
9097 composable pattern.
9098
9099 2010-08-09 Chong Yidong <cyd@stupidchicken.com>
9100
9101 * emacs-lisp/package.el (package-version-split)
9102 (package--version-first-nonzero, package-version-compare):
9103 Functions removed.
9104 (package-directory-list, package-load-all-descriptors)
9105 (package--built-in, package-activate, define-package)
9106 (package-installed-p, package-compute-transaction)
9107 (package-read-all-archive-contents)
9108 (package--add-to-archive-contents, package-buffer-info)
9109 (package-tar-file-info, package-list-packages-internal):
9110 Use version-to-list and version-list-*.
9111
9112 * emacs-lisp/package-x.el (package-upload-buffer-internal):
9113 Use version-to-list.
9114 (package-upload-buffer-internal): Use version-list-<=.
9115
9116 2010-08-09 Kenichi Handa <handa@m17n.org>
9117
9118 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
9119 composable pattern.
9120
9121 2010-08-08 Chong Yidong <cyd@stupidchicken.com>
9122
9123 * tutorial.el (tutorial--default-keys): C-d is now bound to
9124 delete-forward-char (Bug#6826).
9125
9126 * mouse.el (mouse-drag-track): Remove accidentally-removed check
9127 for `double' value of mouse-1-click-follows-link (Bug#6807).
9128
9129 2010-08-08 Johan Bockgård <bojohan@gnu.org>
9130
9131 * replace.el (replace-highlight): Bind isearch-forward and
9132 isearch-error, ensuring that highlighting is updated if the user
9133 switches the search direction (Bug#6808).
9134
9135 * isearch.el (isearch-lazy-highlight-forward): New var.
9136 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
9137 (isearch-lazy-highlight-update): Use it.
9138
9139 2010-08-08 Kenichi Handa <handa@m17n.org>
9140
9141 * international/mule.el (define-charset): Store NAME as :base property.
9142 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
9143 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
9144 current priority. Force using the designation of the specific
9145 charset by adding `charset' text property. Improve the whole algorithm.
9146
9147 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
9148
9149 * emulation/pc-select.el (pc-selection-mode-hook)
9150 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
9151 (pc-selection-mode): Fix typos in docstrings.
9152
9153 2010-08-08 Kenichi Handa <handa@m17n.org>
9154
9155 * language/cyrillic.el: Don't add "microsoft-cp1251" to
9156 ctext-non-standard-encodings-alist here.
9157
9158 * international/mule.el (ctext-non-standard-encodings-alist):
9159 Add "koi8-r" and "microsoft-cp1251".
9160 (ctext-standard-encodings): New variable.
9161 (ctext-non-standard-encodings-table): List only elements for
9162 non-standard encodings.
9163 (ctext-pre-write-conversion): Adjust for the above change.
9164 Check ctext-standard-encodings.
9165
9166 * international/mule-conf.el (compound-text): Doc fix.
9167 (ctext-no-compositions): Doc fix.
9168 (compound-text-with-extensions): Doc fix.
9169
9170 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
9171
9172 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
9173
9174 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
9175
9176 * progmodes/which-func.el (which-func-format): Split help-echo text
9177 into lines, like other mode-line tooltips.
9178
9179 * server.el (server-start): When using TCP sockets, force IPv4
9180 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
9181
9182 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
9183
9184 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
9185
9186 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
9187
9188 * term.el (term-delimiter-argument-list): Reflow docstring.
9189 (term-read-input-ring, term-write-input-ring, term-send-input)
9190 (term-bol, term-erase-in-display, serial-supported-or-barf):
9191 Fix typos in docstrings.
9192
9193 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
9194
9195 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
9196
9197 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
9198
9199 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
9200
9201 2010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
9202
9203 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
9204 Fix typo in docstring (bug#6747).
9205
9206 2010-08-08 Leo <sdl.web@gmail.com>
9207
9208 * eshell/esh-io.el (eshell-get-target): Better detection of
9209 read-only file (Bug#6762).
9210
9211 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
9212
9213 * align.el (align-default-spacing): Doc fix.
9214 (align-region-heuristic, align-regexp): Fix typos in docstrings.
9215
9216 2010-08-08 Stephen Peters <speters@itasoftware.com>
9217
9218 * calendar/icalendar.el
9219 (icalendar--split-value): Fix splitting regexp. (Bug#6766)
9220 (icalendar--get-weekday-numbers): New.
9221 (icalendar--convert-recurring-to-diary): Handle multiple byday
9222 values in weekly rules. (Bug#6766)
9223
9224 2010-08-08 Ulf Jasper <ulf.jasper@web.de>
9225
9226 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
9227 (icalendar--create-uid, icalendar-export-region)
9228 (icalendar--parse-summary-and-rest): Code formatting.
9229
9230 2010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
9231
9232 * calc/calc.el (calc-trail-mode, calc-refresh): Use `face' property
9233 to italicize headers.
9234 (calc-highlight-selections-with-faces): New variable.
9235 (calc-selected-face, calc-nonselected-face): New faces.
9236
9237 * calc/calccomp.el (math-comp-highlight-string): Use
9238 `calc-highlight-selections-with-faces' to determine how to highlight
9239 sub-formulas.
9240
9241 * calc/calc-sel.el (calc-show-selections): Change message to when
9242 using faces to highlight selections.
9243
9244 2010-08-07 Michael R. Mauger <mmaug@yahoo.com>
9245
9246 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
9247 Add SQLite 3 keywords, functions and datatypes.
9248 (sql-interactive-mode): Remove `comint-process-echoes' set to t
9249 (Bug#6686).
9250
9251 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
9252
9253 * simple.el (select-active-regions): Move to keyboard.c.
9254 (deactivate-mark): Used saved-region-selection.
9255 (select-active-region): Function removed.
9256 (activate-mark, set-mark, push-mark-command)
9257 (handle-shift-selection): Don't call it.
9258 (keyboard-quit): Avoid adding the region to the window selection.
9259
9260 * mouse.el (mouse-drag-track): Remove hacks to deal with old
9261 select-active-regions implementation.
9262 (mouse-yank-at-click): Doc fix.
9263
9264 * cus-start.el: Add custom declaration for select-active-regions.
9265
9266 2010-08-07 Eli Zaretskii <eliz@gnu.org>
9267
9268 * simple.el (delete-forward-char): Doc fix.
9269
9270 * tutorial.el (help-with-tutorial): Hack safe file-local variables
9271 after reading the tutorial.
9272
9273 2010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
9274
9275 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph):
9276 Fix for the case that a C style comment has its delimiters alone on
9277 their respective lines. (Bug#193)
9278
9279 2010-08-06 Michael Albinus <michael.albinus@gmx.de>
9280
9281 * net/tramp.el (tramp-handle-start-file-process): Set connection
9282 property "vec".
9283 (tramp-process-sentinel): Use it for flushing the cache.
9284 We cannot do it via the process buffer, the buffer could be deleted
9285 already when running the sentinel.
9286
9287 2010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
9288
9289 * comint.el (comint-mode): Make directory tracking functions
9290 functional on remote files. (Bug#6764)
9291
9292 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
9293
9294 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
9295
9296 2010-08-05 Eli Zaretskii <eliz@gnu.org>
9297
9298 * emacs-lisp/find-gc.el (find-gc-source-files):
9299 Rename unexec.c => unexcoff.c.
9300
9301 * emacs-lisp/authors.el (authors-fixed-entries):
9302 Rename unexec.c => unexcoff.c.
9303
9304 2010-08-05 Michael Albinus <michael.albinus@gmx.de>
9305
9306 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
9307 cache, not only file cache.
9308 (tramp-process-sentinel): New defun.
9309 (tramp-handle-start-file-process): Use it, in order to invalidate
9310 file caches.
9311
9312 2010-08-03 Leo <sdl.web@gmail.com>
9313
9314 * server.el (server-start): Simplify loop.
9315
9316 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
9317
9318 * frame.el (screen-height, screen-width, set-screen-width)
9319 (set-screen-height): Remove ancient compatibility aliases.
9320
9321 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
9322 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
9323
9324 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
9325 that change current buffer.
9326
9327 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9328
9329 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
9330 beginning of the string. Use `string-match-p'. (Bug#6765)
9331
9332 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
9333
9334 * cus-start.el (x-gtk-use-system-tooltips): New variable.
9335
9336 2010-08-01 Chong Yidong <cyd@stupidchicken.com>
9337
9338 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
9339 (package--builtins): Tweak descriptions.
9340 (package-print-package): Upcase descriptions if necessary.
9341 Show all built-in packages in font-lock-builtin-face.
9342 (package-list-packages-internal): Omit "emacs" package.
9343 Show status of built-in packages as "built-in".
9344
9345 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
9346
9347 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
9348 before killing to preserve the primary selection (Bug#6701).
9349
9350 * term/x-win.el (x-select-text): Doc fix.
9351
9352 2010-07-31 Nathaniel Flath <flat0103@gmail.com>
9353
9354 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
9355 (objc-font-lock-extra-types):
9356 * progmodes/cc-mode.el (c-basic-common-init):
9357 * progmodes/cc-langs.el (c-make-mode-syntax-table)
9358 (c++-make-template-syntax-table)
9359 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
9360 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
9361 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
9362 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
9363 * progmodes/cc-fonts.el (c-make-inverse-face)
9364 (c-basic-matchers-after):
9365 * progmodes/cc-engine.el (c-forward-keyword-clause)
9366 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
9367 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
9368 (c-guess-continued-construct, c-guess-basic-syntax):
9369 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
9370 The above functions were modified or created.
9371
9372 2010-07-31 Jan Djärv <jan.h.d@swipnet.se>
9373
9374 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
9375
9376 2010-07-31 Eli Zaretskii <eliz@gnu.org>
9377
9378 * files.el (bidi-paragraph-direction): Define safe local values.
9379
9380 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
9381 language-info-alist. Remove outdated FIXME in a comment.
9382
9383 2010-07-31 Alan Mackenzie <acm@muc.de>
9384
9385 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
9386 Auto-fill broken in C/C++ modes.
9387
9388 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
9389
9390 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
9391 (menu-bar-showhide-tool-bar-menu-customize-disable)
9392 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
9393 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
9394 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
9395 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
9396 make a menu for Options => toolbar that can move it.
9397
9398 2010-07-29 Chong Yidong <cyd@stupidchicken.com>
9399
9400 * emacs-lisp/package-x.el (package--make-rss-entry):
9401 (package-maint-add-news-item, package--update-news)
9402 (package-upload-buffer-internal): New arg ARCHIVE-URL.
9403
9404 * emacs-lisp/package.el (package-archive-url): Rename from
9405 package-archive-id.
9406 (package-install): Doc fix.
9407 (package-download-single, package-download-tar, package-install)
9408 (package-menu-view-commentary): Callers changed.
9409
9410 2010-07-29 Michael Albinus <michael.albinus@gmx.de>
9411
9412 * net/tramp.el (tramp-handle-start-file-process): Check only for
9413 `remote-tty' process property.
9414 (tramp-open-shell): Don't check for tty.
9415 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
9416 process property.
9417
9418 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
9419 host.
9420
9421 2010-07-28 Chong Yidong <cyd@stupidchicken.com>
9422
9423 * emacs-lisp/package.el (package-load-list, package-archives)
9424 (package-archive-contents, package-user-dir)
9425 (package-directory-list, package--builtins, package-alist)
9426 (package-activated-list, package-obsolete-alist): Mark as risky.
9427
9428 2010-07-28 Phil Hagelberg <phil@evri.com>
9429
9430 Add support for non-default package repositories.
9431 * emacs-lisp/package.el (package-archive-base): Var deleted.
9432 (package-archives): New variable.
9433 (package-archive-contents): Doc fix.
9434 (package-load-descriptor): Do nothing if descriptor file is missing.
9435 (package--write-file-no-coding): New function.
9436 (package-unpack-single): Use it.
9437 (package-archive-id): New function.
9438 (package-download-single, package-download-tar)
9439 (package-menu-view-commentary): Use it.
9440 (package-installed-p): Make second argument optional.
9441 (package-read-all-archive-contents): New function.
9442 (package-initialize): Use it.
9443 (package-read-archive-contents): Add ARCHIVE argument.
9444 (package--add-to-archive-contents): New function.
9445 (package-install): Don't call package-read-archive-contents.
9446 (package--download-one-archive): Store archive file in a
9447 subdirectory of package-user-dir.
9448 (package-menu-execute): Remove spurious line movement.
9449
9450 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
9451
9452 * cus-start.el (tool-bar-style): Add text-image-horiz.
9453
9454 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
9455
9456 * progmodes/gud.el (gud-common-init): Check for remoteness of
9457 `file', and not of `default-directory'.
9458
9459 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
9460
9461 * net/tramp.el (tramp-methods): Move hostname to the end in all
9462 ssh `tramp-login-args'.
9463 (tramp-verbose): Describe verbose level 9.
9464 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
9465 (tramp-open-connection-setup-interactive-shell): Trace stty
9466 settings if `tramp-verbose' >= 9.
9467 (tramp-handle-start-file-process): Implement tty setting.
9468 (Bug#4604, Bug#6360)
9469
9470 * net/tramp-cmds.el (tramp-bug): Recommend setting of
9471 `tramp-verbose' to 9.
9472
9473 2010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
9474
9475 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
9476 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
9477 Remove references to package `lisp-re' (bug#4369).
9478
9479 2010-07-27 Tom Tromey <tromey@redhat.com>
9480
9481 * progmodes/js.el (js-mode):
9482 * progmodes/make-mode.el (makefile-mode):
9483 * progmodes/simula.el (simula-mode):
9484 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
9485
9486 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
9487
9488 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
9489
9490 * time.el (display-time-day-and-date): Remove spurious * in docstring.
9491 (display-time-world-buffer-name, display-time-world-mode-map):
9492 Fix typos in docstrings.
9493
9494 2010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
9495
9496 * image-mode.el (image-display-size): New function.
9497 (image-forward-hscroll, image-next-line, image-eol, image-eob)
9498 (image-mode-fit-frame): Use it (Bug#6639).
9499
9500 2010-07-27 Chong Yidong <cyd@stupidchicken.com>
9501
9502 * dired.el (dired-buffers-for-dir): Handle list values of
9503 dired-directory (Bug#6636).
9504
9505 2010-07-26 Sam Steingold <sds@gnu.org>
9506
9507 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
9508 Do not call `x-get-selection' the second time, reuse the value.
9509
9510 2010-07-26 Daiki Ueno <ueno@unixuser.org>
9511
9512 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
9513 which consist of control chars only. Suggested by Richard Stallman.
9514
9515 2010-07-25 Daiki Ueno <ueno@unixuser.org>
9516
9517 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
9518 exists before passing an error to find-file-not-found-functions
9519 (bug#6723).
9520
9521 2010-07-23 Lukas Huonker <l.huonker@gmail.com>
9522
9523 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
9524 Remove leading nil element, adjust values.
9525 (tetris-shapes, tetris-shape-scores):
9526 Change representation of shapes and remove some redundancy.
9527 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
9528 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
9529 Adjust for working with new representation of shapes.
9530 (tetris-shape-rotations): New function.
9531 (tetris-move-bottom, tetris-move-left, tetris-move-right)
9532 (tetris-rotate-prev, tetris-rotate-next):
9533 Adjust for working with the new version of tetris-test-shape.
9534
9535 2010-07-23 Markus Triska <markus.triska@gmx.at>
9536
9537 * progmodes/ps-mode.el: Use comint (bug#5954).
9538 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
9539 (ps-mode-other-newline): Simplify.
9540 (ps-run-mode): Derive from comint-mode instead of
9541 fundamental-mode, yielding input history etc.
9542 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
9543 (ps-run-send-string): Adapt for comint-mode.
9544 (ps-run-newline): Remove now unneeded function.
9545
9546 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
9547
9548 * net/tramp.el (tramp-methods): Move hostname to the end in all
9549 plink `tramp-login-args'.
9550
9551 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
9552
9553 * net/tramp.el (tramp-open-shell): New defun.
9554 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
9555 Use it.
9556
9557 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
9558
9559 * net/tramp.el (tramp-file-name-regexp-unified)
9560 (tramp-completion-file-name-regexp-unified): On W32 systems, do
9561 not regard the volume letter as remote filename. (Bug#5447)
9562
9563 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
9564
9565 * custom.el (custom-declare-variable): Give a clearer error message
9566 when the docstring is missing (bug#6476).
9567
9568 2010-07-22 Michael R. Mauger <mmaug@yahoo.com>
9569
9570 * progmodes/sql.el: Version 2.4. Improved Login prompting.
9571 (sql-login-params): New widget definition.
9572 (sql-oracle-login-params, sql-mysql-login-params)
9573 (sql-solid-login-params, sql-sybase-login-params)
9574 (sql-informix-login-params, sql-ingres-login-params)
9575 (sql-ms-login-params, sql-postgres-login-params)
9576 (sql-interbase-login-params, sql-db2-login-params)
9577 (sql-linter-login-params): Use it.
9578 (sql-sqlite-login-params): Use it; Define "database" parameter as
9579 a file name.
9580 (sql-sqlite-program): Change to "sqlite3".
9581 (sql-comint-sqlite): Make sure database name is complete.
9582 (sql-for-each-login): New function.
9583 (sql-connect, sql-save-connection): Use it.
9584 (sql-get-login-ext): New function.
9585 (sql-get-login): Use it.
9586 (sql-make-alternate-buffer-name): Handle :file parameters.
9587
9588 2010-07-22 Juanma Barranquero <lekktu@gmail.com>
9589
9590 * dired.el (dired-no-confirm): Document value t and fix defcustom to
9591 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
9592
9593 2010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
9594
9595 * dired.el (dired-mode-map): Use command remapping (bug#6632).
9596
9597 2010-07-22 Lawrence Mitchell <wence@gmx.li>
9598
9599 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
9600
9601 2010-07-21 Michael Albinus <michael.albinus@gmx.de>
9602
9603 * net/tramp.el (tramp-get-ls-command)
9604 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
9605 instead of "/".
9606
9607 2010-07-20 Michael R. Mauger <mmaug@yahoo.com>
9608
9609 * progmodes/sql.el: Version 2.3.
9610 (sql-connection-alist): Change keys from symbols to strings;
9611 enhanced the widget definition.
9612 (sql-mode-menu): Add submenu to select connections.
9613 (sql-interactive-mode-menu): Add "Save Connection" item.
9614 (sql-add-product): Fix menu item.
9615 (sql-get-product-feature): Improved error handling.
9616 (sql--alt-buffer-part, sql--alt-if-not-empty): Remove.
9617 (sql-make-alternate-buffer-name): Simplified.
9618 (sql-product-interactive): Handle missing product.
9619 (sql-connect): Support string keys, minor improvements.
9620 (sql-save-connection): New function.
9621 (sql-connection-menu-filter): New function.
9622
9623 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
9624
9625 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
9626 (tramp-open-connection-setup-interactive-shell):
9627 Apply workaround for IRIX64 bug. Move argument of last
9628 `tramp-send-command' where it belongs to.
9629
9630 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
9631
9632 * net/tramp.el (tramp-perl-file-attributes)
9633 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
9634 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
9635 front of `login-args'.
9636
9637 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
9638
9639 * time.el (display-time-world-mode): Define with `define-derived-mode'.
9640 Set `show-trailing-whitespace' to nil.
9641 (display-time-world-display): Simplify.
9642
9643 2010-07-18 Alan Mackenzie <acm@muc.de>
9644
9645 Enhance `c-file-style' in file/directory local variables.
9646 * progmodes/cc-mode.el (c-count-cfss): New function.
9647 (c-before-hack-hook): Call `c-set-style' differently according to
9648 whether c-file-style was set in file or directory local
9649 variables.
9650
9651 2010-07-18 Michael R. Mauger <mmaug@yahoo.com>
9652
9653 * progmodes/sql.el: Version 2.2.
9654 (sql-product, sql-user, sql-database, sql-server, sql-port):
9655 Use defcustom :safe keyword rather than putting safe-local-variable
9656 property.
9657 (sql-password): Use defcustom :risky keyword rather than putting
9658 risky-local-variable property.
9659 (sql-oracle-login-params, sql-sqlite-login-params)
9660 (sql-solid-login-params, sql-sybase-login-params)
9661 (sql-informix-login-params, sql-ingres-login-params)
9662 (sql-ms-login-params, sql-postgres-login-params)
9663 (sql-interbase-login-params, sql-db2-login-params)
9664 (sql-linter-login-params): Add `port' option.
9665 (sql-get-product-feature): Add NO-INDIRECT parameter.
9666 (sql-comint-oracle, sql-comint-sybase)
9667 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
9668 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
9669 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
9670 (sql-comint-linter): Rename sql-connect-* functions to
9671 sql-comint-*.
9672 (sql-product-alist, sql-mode-menu): Rename as above and
9673 :sqli-connect-func to :sqli-comint-func.
9674 (sql-connection): New variable.
9675 (sql-interactive-mode): Set it.
9676 (sql-connection-alist): New variable.
9677 (sql-connect): New function.
9678 (sql--alt-buffer-part, sql--alt-if-not-empty)
9679 (sql-make-alternate-buffer-name): Improved alternative buffer name.
9680
9681 2010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9682
9683 * image-mode.el (image-bookmark-make-record): Do not set context
9684 in an image (Bug#6650).
9685
9686 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
9687
9688 * simple.el (select-active-region): New function.
9689 (push-mark-command, set-mark, activate-mark)
9690 (handle-shift-selection): Use it.
9691 (deactivate-mark): Don't check for size of region.
9692
9693 * mouse.el (mouse-drag-track): Use select-active-region.
9694
9695 2010-07-17 Michael Albinus <michael.albinus@gmx.de>
9696
9697 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
9698 "--dired" stronger.
9699
9700 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
9701
9702 * term/x-win.el (x-select-enable-primary): Change default to nil.
9703 (x-select-enable-clipboard): Add :version keyword.
9704
9705 * mouse.el (mouse-drag-copy-region):
9706 * simple.el (select-active-regions): Likewise.
9707
9708 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
9709
9710 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
9711 (vc-coding-system-for-diff): Use it to decide whether to inherit
9712 from the file the EOL format for reading the diffs of that file.
9713 (Bug#4451)
9714
9715 2010-07-16 Eli Zaretskii <eliz@gnu.org>
9716
9717 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
9718 unibyte, so compressed attachments are not compressed again.
9719
9720 2010-07-16 Michael Albinus <michael.albinus@gmx.de>
9721
9722 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
9723 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
9724 (tramp-find-shell): Simplify setting connection property.
9725 (tramp-get-ls-command): Make test for "--color=never" stronger.
9726
9727 2010-07-15 Simon South <ssouth@member.fsf.org>
9728
9729 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
9730 blocks within record declarations (i.e. variant parts) correctly.
9731
9732 2010-07-15 Simon South <ssouth@member.fsf.org>
9733
9734 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
9735 over literal tokens when parsing so newlines aren't "absorbed" by
9736 single-line comments. Corrects the indentation of case blocks
9737 that have a comment on the first line.
9738
9739 2010-07-14 Karl Fogel <kfogel@red-bean.com>
9740
9741 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
9742 by Drew Adams (Bug#5504).
9743
9744 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
9745
9746 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
9747 now that Unicode is used (Bug#6594).
9748
9749 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
9750
9751 * term/x-win.el (x-select-enable-clipboard): Default to t.
9752 (x-initialize-window-system): Don't overwrite Paste menu item.
9753
9754 * simple.el (select-active-regions): Default to t.
9755 (push-mark-command): Don't overwrite primary with empty string.
9756
9757 * mouse.el: Bind mouse-2 to mouse-yank-primary.
9758 (mouse-drag-copy-region): Default to nil.
9759
9760 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
9761 Cut/Copy/Paste menu bar items.
9762
9763 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9764
9765 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
9766 Patch applied by Karl Fogel.
9767
9768 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
9769 and `bookmark-current-buffer' if they have been already set in
9770 another buffer (e.g gnus-art).
9771
9772 2010-07-13 Karl Fogel <kfogel@red-bean.com>
9773 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9774
9775 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
9776
9777 * bookmark.el (bookmark-make-record-default): Allow unneeded
9778 information to be omitted from the record.
9779
9780 Adjust declarations and calls:
9781
9782 * info.el (bookmark-make-record-default): Adjust declaration.
9783 (Info-bookmark-make-record): Adjust call.
9784
9785 * woman.el (bookmark-make-record-default): Adjust declaration.
9786 (woman-bookmark-make-record): Adjust call.
9787
9788 * man.el (bookmark-make-record-default): Adjust declaration.
9789 (Man-bookmark-make-record): Adjust call.
9790
9791 * image-mode.el (bookmark-make-record-default): Adjust declaration.
9792
9793 * doc-view.el (bookmark-make-record-default): Adjust declaration.
9794
9795 2010-07-13 Karl Fogel <kfogel@red-bean.com>
9796
9797 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
9798 This is also from Thierry Volpiatto's patch in bug #6444. However,
9799 because it was extraneous to the functional change in that patch,
9800 and causes a re-indendation, I am committing it separately.
9801
9802 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9803
9804 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
9805 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
9806 Patch applied by Karl Fogel (Bug#6444).
9807
9808 2010-07-13 Chong Yidong <cyd@stupidchicken.com>
9809
9810 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
9811
9812 2010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
9813
9814 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
9815 Dempsky; bug#5084). Remove incorrect binding for S-tab.
9816 (ns-alternatives-map): Change S-tab binding to backtab
9817 (bug#6616).
9818
9819 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
9820 under ns.
9821
9822 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
9823
9824 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
9825 (Bug#5806)
9826
9827 * language/tv-util.el (tai-viet-re): Remove format.
9828
9829 2010-07-12 Kenichi Handa <handa@m17n.org>
9830
9831 * language/hebrew.el: Remove no-byte-compile declaration.
9832 Change coding: tag to utf-8. Register hebrew-shape-gstring in
9833 composition-function-table for 3-character looking back.
9834 (hebrew-font-get-precomposed): New function.
9835 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
9836
9837 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
9838
9839 * mouse.el (mouse-drag-track): Handle select-active-regions
9840 (Bug#6612).
9841
9842 2010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
9843
9844 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
9845 empty argument to gvfs-copy.
9846
9847 2010-07-10 Glenn Morris <rgm@gnu.org>
9848
9849 * calendar/calendar.el (calendar-week-end-day): New function.
9850 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
9851 Respect calendar-week-start-day. (Bug#6606)
9852 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
9853 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
9854 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
9855 respect calendar-week-start-day.
9856
9857 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
9858
9859 * simple.el (use-region-p): Doc fix (Bug#6607).
9860
9861 2010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
9862
9863 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9864 Add regexps for cucumber and ruby.
9865
9866 2010-07-08 Daiki Ueno <ueno@unixuser.org>
9867
9868 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
9869 (epa-file-insert-file-contents): Hack to prevent
9870 find-file from opening empty buffer when decryption failed
9871 (bug#6568).
9872
9873 2010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
9874
9875 * textmodes/ispell.el (ispell-alternate-dictionary):
9876 Use file-readable-p.
9877 Return nil if no word-list is found at default locations.
9878 (ispell-complete-word-dict): Default to nil.
9879 (ispell-command-loop): Use 'word-list' when using lookup-words.
9880 (lookup-words): Use ispell-complete-word-dict or
9881 ispell-alternate-dictionary. Check for word-list availability
9882 and handle errors if needed with better messages (Bug#6539).
9883 (ispell-complete-word): Use ispell-complete-word-dict or
9884 ispell-alternate-dictionary.
9885
9886 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
9887
9888 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
9889 builtins (BufferError, BytesWarning, WindowsError; callables
9890 bin, bytearray, bytes, format, memoryview, next, print; __package__).
9891
9892 2010-07-07 Glenn Morris <rgm@gnu.org>
9893
9894 * play/zone.el (top-level): Do not require timer, tabify, or cl.
9895 (zone-shift-left): Ignore intangibility, and any errors from
9896 forward-char.
9897 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
9898 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
9899 deleting, and copying text properties.
9900 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
9901 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
9902 to point-max is hard.
9903 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
9904 (zone-fill-out-screen): Ignore intangibility.
9905
9906 2010-07-05 Chong Yidong <cyd@stupidchicken.com>
9907
9908 * menu-bar.el (menu-bar-mode):
9909 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
9910 if it has been set.
9911
9912 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
9913 word/line selection (Bug#6565).
9914
9915 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
9916
9917 * net/dbus.el (dbus-send-signal): Declare function.
9918
9919 2010-07-04 Michael Albinus <michael.albinus@gmx.de>
9920
9921 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
9922 (dbus-register-property): New optional argument EMITS-SIGNAL.
9923 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
9924
9925 2010-07-03 Chong Yidong <cyd@stupidchicken.com>
9926
9927 * mouse.el (mouse-drag-overlay): Variable deleted.
9928 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
9929 (mouse--remap-link-click-p): New function.
9930 (mouse-drag-track): Handle dragging by using temporary Transient
9931 Mark mode, instead of a special overlay.
9932 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
9933 mouse-show-mark.
9934
9935 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
9936 deleted.
9937
9938 2010-07-02 Juri Linkov <juri@jurta.org>
9939
9940 * autoinsert.el (auto-insert-alist): Fix readability
9941 by using dotted pair notation for lambda.
9942
9943 2010-07-02 Juri Linkov <juri@jurta.org>
9944
9945 * faces.el (read-face-name): Rename arg `string-describing-default'
9946 to `default'. Doc fix. Display the default value in quotes
9947 in the prompt. With empty input, return the `default' arg,
9948 unless the default value is a string (in which case return nil).
9949 (describe-face): Replace the string `default' arg of `read-face-name'
9950 with the symbol `default'.
9951
9952 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
9953
9954 * emulation/viper-cmd.el (viper-delete-backward-char)
9955 (viper-del-backward-char-in-insert)
9956 (viper-del-backward-char-in-replace, viper-change)
9957 (viper-backward-indent): Replace delete-backward-char with
9958 delete-char (Bug#6552).
9959
9960 2010-07-01 Chong Yidong <cyd@stupidchicken.com>
9961
9962 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
9963
9964 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
9965
9966 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
9967 argument passed to frame-creation-function (Bug#5378).
9968
9969 * faces.el (x-handle-named-frame-geometry)
9970 (x-handle-reverse-video, x-create-frame-with-faces)
9971 (face-set-after-frame-default, tty-create-frame-with-faces):
9972 Don't separately consult default-frame-alist. It is now passed as the
9973 PARAMETER argument.
9974
9975 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
9976
9977 * startup.el (command-line): Don't call tool-bar-setup in a
9978 tty-only build.
9979
9980 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
9981
9982 * ruler-mode.el (ruler--save-header-line-format): New fun.
9983 (ruler-mode): Use it as a setter function, so as not to overwrite
9984 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
9985
9986 2010-06-29 Chong Yidong <cyd@stupidchicken.com>
9987
9988 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
9989 (vc-root-diff, vc-print-root-log, vc-log-incoming)
9990 (vc-log-outgoing): Use it.
9991 (vc-diff-internal): Set diff-vc-backend.
9992
9993 * vc/diff-mode.el (diff-vc-backend): New var.
9994
9995 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
9996
9997 * dynamic-setting.el (font-setting-change-default-font):
9998 Remove call to message.
9999
10000 2010-06-28 Kenichi Handa <handa@m17n.org>
10001
10002 * international/quail.el (quail-insert-kbd-layout): Fix the
10003 showing of untranslated characters.
10004
10005 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
10006
10007 * simple.el (delete-active-region): New option.
10008 (delete-backward-char): Implement in Lisp.
10009 (delete-forward-char): New command.
10010
10011 * mouse.el (mouse-region-delete-keys): Delete.
10012 (mouse-show-mark): Simplify.
10013
10014 * bindings.el (global-map): Bind delete and DEL, the former to
10015 delete-forward-char.
10016
10017 2010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
10018
10019 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
10020 (ruby-mode): Bind indent-line-function (Bug#5119).
10021
10022 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
10023
10024 * startup.el (command-line): Recognize "0" X resource value.
10025
10026 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
10027
10028 * startup.el (command-line): Use X resources to set the value of
10029 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
10030
10031 * menu-bar.el (menu-bar-mode):
10032 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
10033 Set init-value to t.
10034
10035 * frame.el (frame-notice-user-settings): Don't change
10036 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
10037 vice versa (Bug#2249).
10038
10039 2010-06-26 Eli Zaretskii <eliz@gnu.org>
10040
10041 * w32-fns.el (w32-convert-standard-filename): Doc fix.
10042
10043 2010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
10044
10045 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
10046 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
10047
10048 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
10049 default directories are expanded (Bug#6143).
10050
10051 2010-06-24 Juri Linkov <juri@jurta.org>
10052
10053 * minibuffer.el (completions-format): Change default from nil to
10054 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
10055
10056 2010-06-24 Juri Linkov <juri@jurta.org>
10057
10058 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
10059 buffer-locally to lambda that re-runs the vc diff command.
10060 (Bug#6447)
10061
10062 2010-06-24 Chong Yidong <cyd@stupidchicken.com>
10063
10064 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
10065 echo area is in use (Bug#3412).
10066
10067 2010-06-22 Glenn Morris <rgm@gnu.org>
10068
10069 * textmodes/texinfmt.el (texinfo-format-region)
10070 (texinfo-raise-lower-sections, texinfo-format-separate-node)
10071 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
10072 (texinfo-format-option, texinfo-noindent):
10073 Use line-beginning-position and line-end-position.
10074
10075 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
10076 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
10077 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
10078 utf-8 characters.
10079
10080 2010-06-21 Karl Fogel <kfogel@red-bean.com>
10081
10082 * play/zone.el (zone-fall-through-ws): Fix next-line ->
10083 forward-line fallout.
10084
10085 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
10086
10087 * mouse.el (mouse-appearance-menu): Add docstring.
10088
10089 * help.el (describe-key): Print up-event using key-description.
10090
10091 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
10092
10093 * net/zeroconf.el (zeroconf-resolve-service)
10094 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
10095 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
10096
10097 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
10098
10099 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
10100
10101 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
10102
10103 Avoid displaying files with a nil state in vc-dir.
10104 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
10105 cases that cause insertion.
10106 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
10107 with a nil state.
10108
10109 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
10110
10111 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
10112
10113 2010-06-29 Leo <sdl.web@gmail.com>
10114
10115 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
10116
10117 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
10118
10119 * generic-x.el (bat-generic-mode): Fix regexp for command line
10120 switches (Bug#5719).
10121
10122 2010-06-27 Masatake YAMATO <yamato@redhat.com>
10123
10124 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
10125 of nconc to avoid pure storage error (Bug#6239).
10126
10127 2010-06-27 Christoph Scholtes <cschol2112@googlemail.com>
10128
10129 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
10130 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
10131 bindings of bookmark-automatically-show-annotations (Bug#6515).
10132
10133 2010-06-25 Eli Zaretskii <eliz@gnu.org>
10134
10135 * arc-mode.el (archive-zip-extract): Don't quote the file name on
10136 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
10137
10138 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
10139
10140 * comint.el (make-comint, make-comint-in-buffer): Mention return
10141 value in the docstrings. (Bug#6498)
10142
10143 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
10144
10145 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
10146 since it is not present when using some non-default switches.
10147
10148 2010-06-23 Karl Fogel <kfogel@red-bean.com>
10149
10150 * simple.el (compose-mail): Fix doc string to refer to
10151 `compose-mail-user-agent-warnings', instead of to the
10152 nonexistent `compose-mail-check-user-agent'.
10153
10154 2010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
10155
10156 Fix an indentation bug:
10157
10158 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
10159 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
10160 of existing values.
10161
10162 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
10163 (c-clear->-pair-props-if-match-before): now return t when they've
10164 cleared properties, nil otherwise.
10165 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
10166 by taking account of the existing value.
10167
10168 * progmodes/cc-defs.el
10169 (c-clear-char-property-with-value-function): Fix this to clear the
10170 property rather than overwriting it with nil.
10171
10172 2010-06-20 Chong Yidong <cyd@stupidchicken.com>
10173
10174 * emacs-lisp/package.el (package-print-package): Add link to
10175 package description via describe-package.
10176 (describe-package-1): List package requirements. Add button to
10177 perform installation.
10178 (package-menu-describe-package): New command.
10179
10180 * help-mode.el (help-package): New button type.
10181
10182 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
10183
10184 * emacs-lisp/package.el: Move package-list-packages binding to
10185 menu-bar.el.
10186 (describe-package, describe-package-1, package--dir): New funs.
10187 (package-activate-1): Use package--dir.
10188
10189 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
10190
10191 * help-mode.el (help-package-def): New button type.
10192
10193 * menu-bar.el: Move package-list-packages binding here from
10194 package.el.
10195
10196 2010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
10197
10198 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
10199
10200 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10201
10202 * emacs-lisp/edebug.el (edebug-read-list):
10203 Phase out old-style backquotes.
10204
10205 2010-06-17 Juri Linkov <juri@jurta.org>
10206
10207 * help-mode.el (help-mode): Set buffer-local variable
10208 revert-buffer-function to help-mode-revert-buffer.
10209 (help-mode-revert-buffer): New function.
10210
10211 * info.el (Info-revert-find-node): Check for major-mode Info-mode
10212 before popping to "*info*" (like in other Info functions).
10213 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
10214 old-history-forward. Pop to old-buffer-name or "*info*" to
10215 recreate the killed buffer. Set Info-history-forward from
10216 old-history-forward.
10217 (Info-breadcrumbs-depth): Add :group and :version.
10218
10219 2010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
10220
10221 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
10222
10223 2010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
10224
10225 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
10226 for languages like Portuguese with pt_{BR,PT} and no plain pt.
10227
10228 2010-06-17 Juanma Barranquero <lekktu@gmail.com>
10229
10230 * emacs-lisp/package.el (package-menu-mode-map):
10231 Move initialization into declaration.
10232
10233 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
10234
10235 2010-06-17 Chong Yidong <cyd@stupidchicken.com>
10236
10237 * emacs-lisp/package.el (package-archive-base): Point to
10238 elpa.gnu.org.
10239 (package-enable, package-load-list): New defcustoms.
10240 (package-user-dir, package-directory-list): Turn into defcustoms.
10241 Don't include package-user-dir in package-directory-list.
10242 (package--builtins-base): Don't include Emacs as a "package".
10243 (package-subdirectory-regexp): New var.
10244 (package-load-all-descriptors, package-compute-transaction)
10245 (package-download-transaction): Obey package-load-list.
10246 (package-activate-1): Rename from package-do-activate.
10247 (package-list-packages-internal): Check package-load-list.
10248 (package-load-descriptor, package-generate-autoloads)
10249 (package-unpack, package-unpack-single)
10250 (package--read-archive-file, package-delete):
10251 Use expand-file-name.
10252
10253 * emacs-lisp/package-x.el: New file. Package uploading
10254 functionality split out from package.el.
10255
10256 * startup.el (command-line): Load packages after reading init file.
10257
10258 2010-06-17 Tom Tromey <tromey@redhat.com>
10259
10260 * emacs-lisp/package.el: New file.
10261
10262 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
10263
10264 Fix vc-annotate for renamed files when using Git.
10265 * vc/vc-git.el (vc-git-find-revision): Deal with empty results from
10266 ls-files. Doe not pass the object as a file name to cat-file, it
10267 is not a file name.
10268 (vc-git-annotate-command): Pass the file name using -- to avoid
10269 ambiguity with the revision.
10270 (vc-git-previous-revision): Pass a relative file name.
10271
10272 2010-06-22 Glenn Morris <rgm@gnu.org>
10273
10274 * progmodes/js.el (js-mode-map): Use standard capitalization and
10275 ellipses for menu entries.
10276
10277 * wid-edit.el (widget-complete): Doc fix.
10278
10279 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
10280
10281 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
10282
10283 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
10284
10285 Fix annotating other revisions for renamed files in vc-annotate.
10286 * vc/vc-annotate.el (vc-annotate): Add an optional argument for the
10287 VC backend. Use it when non-nil.
10288 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
10289 (Bug#6487).
10290
10291 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
10292 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
10293 Do not pass the file name to the 'previous-revision call when we
10294 don't want a file diff. (Bug#6489)
10295
10296 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
10297
10298 Fix finding revisions for renamed files in vc-annotate.
10299 * vc/vc.el (vc-find-revision): Add an optional argument for
10300 the VC backend. Use it when non-nil.
10301 * vc/vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
10302 backend to vc-find-revision. (Bug#6487)
10303
10304 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
10305
10306 Fix reading file names in Git annotate buffers.
10307 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line):
10308 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
10309
10310 2010-06-20 Alan Mackenzie <acm@muc.de>
10311
10312 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
10313 in file local variables, set it first.
10314
10315 2010-06-19 Glenn Morris <rgm@gnu.org>
10316
10317 * descr-text.el (describe-char-unicode-data): Insert separating
10318 space when needed. (Bug#6422)
10319
10320 * progmodes/idlwave.el (idlwave-action-and-binding):
10321 Fix typo in 2009-12-03 change. (Bug#6450)
10322
10323 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
10324
10325 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
10326 handling for `lambda' (misunderstanding).
10327
10328 2010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
10329
10330 * calc/calc-poly.el (math-accum-factors): Make sure that
10331 constants aren't distributed after they are factored out.
10332
10333 2010-06-16 Juri Linkov <juri@jurta.org>
10334
10335 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
10336 `list-colors-print'. (Bug#6332)
10337
10338 * subr.el (read-quoted-char): Fix up last change (bug#6290).
10339
10340 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
10341
10342 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
10343 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
10344
10345 * font-lock.el (font-lock-major-mode): Rename from
10346 font-lock-mode-major-mode to distinguish it from
10347 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
10348 (font-lock-set-defaults):
10349 * font-core.el (font-lock-default-function): Adjust users.
10350 (font-lock-mode): Don't set it at all.
10351
10352 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
10353
10354 * vc/vc-annotate.el (vc-annotate): Use vc-read-revision.
10355
10356 2010-06-16 Glenn Morris <rgm@gnu.org>
10357
10358 * calendar/appt.el (appt-time-msg-list): Doc fix.
10359 (appt-check): Let-bind appt-warn-time.
10360 (appt-add): Make the 3rd argument optional.
10361 Simplify argument names. Doc fix. Check for integer WARNTIME.
10362 Only add WARNTIME to the output list if non-nil.
10363
10364 2010-06-16 Ivan Kanis <apple@kanis.eu>
10365
10366 * calendar/appt.el (appt-check): Let the 3rd element of
10367 appt-time-msg-list specify the warning time.
10368 (appt-add): Add new argument with the warning time. (Bug#5176)
10369
10370 2010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
10371
10372 * vc/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
10373 older than version 1.6. (Bug#6361)
10374
10375 2010-06-16 Helmut Eller <eller.helmut@gmail.com>
10376
10377 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
10378 used by cl-do-arglist. (Bug#6408)
10379
10380 2010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
10381
10382 * textmodes/ispell.el (ispell-dictionary-base-alist):
10383 Fix portuguese casechars/not-casechars for missing 'çÇ'.
10384 Suggested by Rolando Pereira (bug#6434).
10385
10386 2010-06-15 Juanma Barranquero <lekktu@gmail.com>
10387
10388 * facemenu.el (list-colors-sort): Doc fix.
10389
10390 2010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
10391
10392 * progmodes/sql.el (sql-connect-mysql): Fix typo.
10393
10394 2010-06-14 Juri Linkov <juri@jurta.org>
10395
10396 Add sort option `list-colors-sort'. (Bug#6332)
10397 * facemenu.el (color-rgb-to-hsv): New function.
10398 (list-colors-sort): New defcustom.
10399 (list-colors-sort-key): New function.
10400 (list-colors-display): Doc fix. Sort list according to the option
10401 `list-colors-sort'.
10402 (list-colors-print): Add HSV values to `help-echo' property of
10403 RGB strings.
10404
10405 2010-06-14 Juri Linkov <juri@jurta.org>
10406
10407 * compare-w.el: Move to the "vc" subdirectory.
10408
10409 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
10410
10411 * image-mode.el (image-mode-map): Remap left-char and right-char.
10412
10413 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
10414
10415 2010-06-12 Chong Yidong <cyd@stupidchicken.com>
10416
10417 * term/common-win.el (x-colors): Add all the color names defined
10418 in rgb.txt (Bug#6332).
10419
10420 * facemenu.el (list-colors-print): Don't print extra names if it
10421 will overflow the window width.
10422
10423 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
10424 change (Bug#6343).
10425
10426 2010-06-12 Eli Zaretskii <eliz@gnu.org>
10427
10428 * files.el (make-directory): Doc fix (bug#6396).
10429
10430 2010-06-12 Michael Albinus <michael.albinus@gmx.de>
10431
10432 * net/tramp.el (tramp-remote-process-environment): Protect version
10433 string by apostroph.
10434 (tramp-shell-prompt-pattern): Do not use a shy group in case of
10435 XEmacs.
10436 (tramp-file-name-for-operation): Add `call-process-region'.
10437 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
10438
10439 * net/tramp-compat.el (top): Do not autoload
10440 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
10441 only when `start-file-process' is not bound.
10442 (tramp-advice-file-expand-wildcards): Do not use
10443 `tramp-handle-file-remote-p'.
10444 (tramp-compat-make-temp-file): Handle the case, that
10445 `make-temp-file' has no third argument EXTENSION.
10446
10447 2010-06-11 Juanma Barranquero <lekktu@gmail.com>
10448
10449 * makefile.w32-in (WINS_BASIC): Include new directory vc.
10450
10451 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
10452
10453 2010-06-11 Juri Linkov <juri@jurta.org>
10454
10455 * finder.el (finder-known-keywords): Add keyword "vc"
10456 for version control.
10457
10458 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
10459 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
10460 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
10461 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
10462
10463 2010-06-11 Juri Linkov <juri@jurta.org>
10464
10465 Move version control related files to the "vc" subdirectory.
10466 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
10467 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
10468 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
10469 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
10470 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
10471 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
10472 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
10473 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
10474 Move files to the "vc" subdirectory.
10475
10476 2010-06-11 Chong Yidong <cyd@stupidchicken.com>
10477
10478 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
10479 (Bug#6367).
10480
10481 2010-06-11 Stephen Eglen <stephen@gnu.org>
10482
10483 * shell.el: Bind `shell-resync-dirs' to M-RET.
10484
10485 2010-06-10 Michael Albinus <michael.albinus@gmx.de>
10486
10487 * notifications.el: Move file from lisp/net, because it is
10488 supposed to talk locally to the user.
10489
10490 2010-06-10 Julien Danjou <julien@danjou.info>
10491
10492 * net/notifications.el (notifications-on-action-signal)
10493 (notifications-on-closed-signal): Pass notification id as first
10494 argument to the callback functions. Add docstrings.
10495 (notifications-notify): Fix docstring.
10496
10497 2010-06-10 Glenn Morris <rgm@gnu.org>
10498
10499 * emacs-lisp/authors.el (authors-ignored-files)
10500 (authors-valid-file-names): Add some files.
10501
10502 2010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
10503
10504 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
10505 merge conflict, giving preference to the emacs-23 version of the code.
10506
10507 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
10508
10509 * emacs-lisp/advice.el (ad-compile-function):
10510 Define warning-suppress-types before we let-bind it (bug#6275).
10511
10512 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
10513 declare it, make it buffer-local and permanent-local (bug#6324).
10514 (vc-resynch-window): Adjust name.
10515 * vc-hooks.el (vc-find-file-hook): Adjust name.
10516
10517 2010-06-09 Michael Albinus <michael.albinus@gmx.de>
10518
10519 * net/notifications.el (notifications-notify): Fix docstring.
10520
10521 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
10522
10523 Update to Unicode 6.0.0 beta.
10524 * international/charprop.el: Update copyright.
10525 * international/mule-cmds.el (ucs-names): Update character ranges.
10526 * international/uni-bidi.el:
10527 * international/uni-category.el:
10528 * international/uni-combining.el:
10529 * international/uni-comment.el:
10530 * international/uni-decimal.el:
10531 * international/uni-decomposition.el:
10532 * international/uni-digit.el:
10533 * international/uni-lowercase.el:
10534 * international/uni-mirrored.el:
10535 * international/uni-name.el:
10536 * international/uni-numeric.el:
10537 * international/uni-old-name.el:
10538 * international/uni-titlecase.el:
10539 * international/uni-uppercase.el: Regenerate.
10540
10541 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
10542
10543 * emacs-lisp/smie.el (comment-string-strip): Declare function.
10544 (smie-precs-precedence-table): Fix typo in docstring.
10545
10546 * vc-mtn.el (log-edit-extract-headers): Declare function.
10547
10548 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
10549
10550 * net/notifications.el (dbus-register-signal): Declare function.
10551 (notifications-notify): Fix typos and reflow docstring.
10552
10553 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
10554
10555 Improve VC create/retrieve tag/branch.
10556 * vc.el (vc-create-tag): Do not read the directory name for VCs
10557 with repository revision granularity. Adjust the tag/branch
10558 prompt. Reset VC properties.
10559 (vc-retrieve-tag): Do not read the directory name for VCs
10560 with repository revision granularity. Reset VC properties.
10561
10562 2010-06-09 Julien Danjou <julien@danjou.info>
10563
10564 * net/notifications.el: New file.
10565
10566 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
10567
10568 Add optional support for resetting VC properties.
10569 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
10570 call vc-file-clearprops when true.
10571 (vc-resynch-buffer): Add new optional argument, pass it down.
10572 (vc-resynch-buffers-in-directory): Likewise.
10573
10574 Improve support for special markup in the VC commit message.
10575 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
10576 * vc-hg.el (vc-hg-checkin): Add support for Date:.
10577 * vc-git.el (vc-git-checkin):
10578 * vc-bzr.el (vc-bzr-checkin): Likewise.
10579
10580 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
10581
10582 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
10583 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
10584
10585 2010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
10586
10587 * iimage.el: Remove images as soon as the underlying text is modified.
10588 (iimage-modification-hook): New function.
10589 (iimage-mode-buffer): Use it.
10590
10591 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10592
10593 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
10594 smie-indent-offset-after. Add :prev case. Make a bit more generic.
10595 (smie-indent-virtual): Remove `virtual' arg. Update callers.
10596 (smie-indent-keyword): Add handling of open-paren keywords.
10597 (smie-indent-comment-continue): Don't assume comment-continue.
10598
10599 2010-06-07 Martin Rudalics <rudalics@gmx.at>
10600
10601 * window.el (pop-to-buffer): Remove the conditional that
10602 compares new-window and old-window, so it will reselect
10603 the selected window unconditionally.
10604 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
10605
10606 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10607
10608 * emacs-lisp/smie.el (smie-indent-offset-after)
10609 (smie-indent-forward-token, smie-indent-backward-token): New functions.
10610 (smie-indent-after-keyword): Use them.
10611 (smie-indent-fixindent): Only applies to the indentation of the BOL.
10612 (smie-indent-keyword): Tweak the black magic.
10613 (smie-indent-comment-continue): Strip comment-continue before use.
10614 (smie-indent-functions): Indent comments before keywords.
10615
10616 2010-06-06 Juri Linkov <juri@jurta.org>
10617
10618 * isearch.el (isearch-lazy-highlight-search): Fix looping
10619 by checking for empty match. This syncs this loop with the
10620 similar loop in `isearch-search'. (Bug#6362)
10621
10622 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
10623
10624 * net/dbus.el (dbus-register-method): Declare function.
10625 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
10626 (dbus-introspect): Doc fix.
10627 (dbus-event-bus-name, dbus-introspect-get-interface)
10628 (dbus-introspect-get-argument): Reflow docstrings.
10629
10630 2010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
10631
10632 vc-log-incoming/vc-log-outgoing fixes for Git.
10633 * vc-git.el (vc-git-log-view-mode): Fix font lock for
10634 incoming/outgoing logs.
10635 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
10636 instead of vc-git-compute-remote.
10637 (vc-git-compute-remote): Remove.
10638
10639 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
10640
10641 * term/common-win.el (x-colors): Add "dark green" and "dark
10642 turquoise" (Bug#6332).
10643
10644 2010-06-04 Juri Linkov <juri@jurta.org>
10645
10646 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
10647 Instead of setting `replace' to t and replacing the same string
10648 with itself, don't do certain actions when
10649 kill-do-not-save-duplicates is non-nil and string is equal to car
10650 of kill-ring: don't call menu-bar-update-yank-menu, don't push
10651 interprogram-paste strings to kill-ring, and don't push the input
10652 argument `string' to kill-ring.
10653 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
10654
10655 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
10656
10657 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
10658
10659 2010-06-04 Michael Albinus <michael.albinus@gmx.de>
10660
10661 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
10662 (tramp-gvfs-handler-mounted-unmounted)
10663 (tramp-gvfs-connection-mounted-p): Handle default-location.
10664
10665 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
10666 move files to trash.
10667
10668 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
10669
10670 * international/mule-cmds.el (nonascii-insert-offset)
10671 (nonascii-translation-table): Add obsolescence information.
10672
10673 * international/mule.el (make-translation-table-from-vector): Doc fix.
10674
10675 2010-06-03 Glenn Morris <rgm@gnu.org>
10676
10677 * desktop.el (desktop-clear-preserve-buffers):
10678 Add "*Warnings*" buffer. (Bug#6336)
10679
10680 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
10681
10682 vc-log-incoming/vc-log-outgoing improvements for Git.
10683 * vc-git.el (vc-git-log-outgoing): Use the same format as the
10684 short log.
10685 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
10686
10687 Add bindings for vc-log-incoming and vc-log-outgoing.
10688 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
10689 and vc-log-outgoing.
10690 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
10691 and vc-log-outgoing.
10692
10693 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
10694
10695 * net/rcirc.el (rcirc-sort-nicknames): Remove.
10696 (rcirc-handler-366): Always sort nicknames.
10697
10698 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
10699
10700 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
10701
10702 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
10703
10704 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
10705
10706 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
10707
10708 * net/rcirc.el (rcirc-sort-nicknames): Change default.
10709 (rcirc-sort-nicknames-join): Avoid setq.
10710
10711 2010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
10712
10713 * net/rcirc.el (rcirc-sort-nicknames): New custom.
10714 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
10715 (rcirc-handler-366): Use them.
10716
10717 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
10718
10719 Split smie-indent-calculate into more manageable chunks.
10720 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
10721 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
10722 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
10723 (smie-indent-exps): Extract from smie-indent-calculate.
10724 (smie-indent-functions): New var.
10725 (smie-indent-functions): Use them.
10726
10727 2010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
10728
10729 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
10730 (smie-indent-calculate): Simplify and cleanup.
10731
10732 2010-06-02 Michael Albinus <michael.albinus@gmx.de>
10733
10734 * net/tramp-gvfs.el (top): Require url-util.
10735 (tramp-gvfs-mount-point): Remove.
10736 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
10737 New defuns.
10738 (with-tramp-dbus-call-method): Format trace message.
10739 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
10740 Implement backup call, when operation on local files fails.
10741 Use progress reporter. Flush properties of changed files.
10742 (tramp-gvfs-handle-make-directory): Make more traces.
10743 (tramp-gvfs-url-file-name): Hexify file name in url.
10744 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
10745 into account for the resulting file name.
10746 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
10747 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
10748 (tramp-gvfs-handler-mounted-unmounted)
10749 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
10750 attribute "default_location". Set "prefix" property.
10751 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
10752 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
10753 exists. Raise an error, if not (due to a corresponding answer
10754 "no" in interactive questions, for example).
10755
10756 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
10757
10758 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
10759
10760 2010-06-01 Juanma Barranquero <lekktu@gmail.com>
10761
10762 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
10763 right-*. (Bug#6265)
10764
10765 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
10766
10767 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
10768 * vc-git.el (vc-git-compute-remote): New function.
10769 (vc-git-log-outgoing): Use it instead of hard coding a value.
10770 (vc-git-log-incoming): New function.
10771
10772 Improve state updating for VC tag commands.
10773 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
10774 to update the state of all buffers in the directory.
10775
10776 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
10777
10778 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
10779
10780 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
10781 `file-directory-p' to the filename part rather than to the whole text.
10782
10783 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10784
10785 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
10786
10787 2010-05-31 Drew Adams <drew.adams@oracle.com>
10788
10789 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
10790
10791 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
10792
10793 * subr.el (momentary-string-display): Just use read-event to read
10794 the exit event (Bug#6238).
10795
10796 2010-05-30 Eli Zaretskii <eliz@gnu.org>
10797
10798 * international/mule.el (define-coding-system): Doc fix (bug#6313).
10799
10800 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
10801
10802 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
10803 Suggested by Eli Zaretskii <eliz@gnu.org>.
10804
10805 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10806
10807 * minibuffer.el (completion-file-name-table): Don't return a boundary
10808 past the end of `string' (bug#6299).
10809 (completion--file-name-table): Delegate to completion-file-name-table
10810 for the `boundaries' case.
10811
10812 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
10813
10814 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
10815 movement commands.
10816
10817 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
10818 `path-separator', but maintain compatibility with Emacs 20.2.
10819
10820 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
10821
10822 * server.el (server-process-filter): Receive parent-id argument
10823 from emacsclient.
10824 (server-create-window-system-frame): New arg. Pass parent-id as
10825 frame parameter.
10826
10827 2010-05-29 Eli Zaretskii <eliz@gnu.org>
10828
10829 Bidi-sensitive word movement with arrow keys.
10830 * subr.el (right-arrow-command, left-arrow-command): Move to
10831 bindings.el.
10832
10833 * bindings.el (right-char, left-char): Move from subr.el and
10834 rename from right-arrow-command and left-arrow-command.
10835 (right-word, left-word): New functions.
10836 (global-map) <right>: Bind to right-char.
10837 (global-map) <left>: Bind to left-char.
10838 (global-map) <C-right>: Bind to right-word.
10839 (global-map) <C-left>: Bind to left-word.
10840
10841 * ls-lisp.el (ls-lisp-classify-file): New function.
10842 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
10843 (ls-lisp-classify): Call ls-lisp-classify-file.
10844 (insert-directory): Remove blanks from switches.
10845
10846 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
10847
10848 * ansi-color.el: Delete unused escape sequences (Bug#6085).
10849 (ansi-color-drop-regexp): New constant.
10850 (ansi-color-apply, ansi-color-filter-region)
10851 (ansi-color-apply-on-region): Delete unrecognized control sequences.
10852 (ansi-color-apply): Build string list before calling concat.
10853
10854 2010-05-28 Juri Linkov <juri@jurta.org>
10855
10856 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
10857 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
10858 (Bug#5270)
10859
10860 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
10861
10862 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
10863 to ignored backtrace functions.
10864 (with-progress-reporter): Expand docstring.
10865 (tramp-handle-delete-file): Implement TRASH argument.
10866 (tramp-get-remote-trash): New defun.
10867
10868 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
10869
10870 * net/tramp-compat.el (tramp-compat-delete-file):
10871 Use `symbol-value' for backward compatibility.
10872
10873 * net/tramp.el (tramp-handle-make-symbolic-link)
10874 (tramp-handle-load)
10875 (tramp-do-copy-or-rename-file-via-buffer)
10876 (tramp-do-copy-or-rename-file-directly)
10877 (tramp-do-copy-or-rename-file-out-of-band)
10878 (tramp-handle-process-file, tramp-handle-call-process-region)
10879 (tramp-handle-shell-command, tramp-handle-file-local-copy)
10880 (tramp-handle-insert-file-contents, tramp-handle-write-region)
10881 (tramp-delete-temp-file-function): Use `delete-file' instead
10882 of `tramp-compat-delete-file'.
10883
10884 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
10885 (tramp-fish-handle-make-symbolic-link)
10886 (tramp-fish-handle-process-file): Use `delete-file' instead
10887 of `tramp-compat-delete-file'.
10888
10889 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
10890 Use `delete-file' instead of `tramp-compat-delete-file'.
10891
10892 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region):
10893 Use `delete-file' instead of `tramp-compat-delete-file'.
10894
10895 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file):
10896 Use `delete-file' instead of `tramp-compat-delete-file'.
10897
10898 * net/tramp-smb.el (tramp-smb-handle-copy-file)
10899 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
10900 (tramp-smb-handle-write-region): Use `delete-file' instead of
10901 `tramp-compat-delete-file'.
10902 (tramp-smb-handle-delete-directory): Use 'trash as arg.
10903
10904 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
10905
10906 * dired.el (dired-delete-file): New arg TRASH.
10907 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
10908 (dired-do-flagged-delete, dired-do-delete): Use trash.
10909
10910 * speedbar.el (speedbar-item-delete): Allow trashing.
10911
10912 * files.el (delete-directory): New arg TRASH.
10913
10914 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
10915 (ange-ftp-rename-remote-to-remote)
10916 (ange-ftp-rename-local-to-remote)
10917 (ange-ftp-rename-remote-to-local, ange-ftp-load)
10918 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
10919 `delete-file'.
10920 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
10921 allow trashing.
10922
10923 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
10924 handle new TRASH arg of `delete-file'.
10925
10926 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
10927 (tramp-handle-make-symbolic-link, tramp-handle-load)
10928 (tramp-do-copy-or-rename-file-via-buffer)
10929 (tramp-do-copy-or-rename-file-directly)
10930 (tramp-do-copy-or-rename-file-out-of-band)
10931 (tramp-handle-process-file, tramp-handle-call-process-region)
10932 (tramp-handle-shell-command, tramp-handle-file-local-copy)
10933 (tramp-handle-insert-file-contents, tramp-handle-write-region)
10934 (tramp-delete-temp-file-function): Use null TRASH arg in
10935 tramp-compat-delete-file call.
10936
10937 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
10938 (tramp-fish-handle-delete-file)
10939 (tramp-fish-handle-make-symbolic-link)
10940 (tramp-fish-handle-process-file): Use null TRASH arg in
10941 `tramp-compat-delete-file' call.
10942
10943 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
10944 arg in `tramp-compat-delete-file' call.
10945
10946 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
10947 (tramp-gvfs-handle-write-region): Use null TRASH arg in
10948 `tramp-compat-delete-file' call.
10949
10950 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
10951 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
10952 `tramp-compat-delete-file' call.
10953
10954 * net/tramp-smb.el (tramp-smb-handle-copy-file)
10955 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
10956 (tramp-smb-handle-write-region): Use null TRASH arg in
10957 tramp-compat-delete-file call.
10958 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
10959 (tramp-smb-handle-delete-file): Rename arg.
10960
10961 * diff.el (diff-sentinel):
10962 * epg.el (epg--make-temp-file, epg-decrypt-string)
10963 (epg-verify-string, epg-sign-string, epg-encrypt-string):
10964 * jka-compr.el (jka-compr-partial-uncompress)
10965 (jka-compr-call-process, jka-compr-write-region):
10966 * server.el (server-sentinel): Remove optional arg from
10967 delete-file, reverting 2010-05-03 change.
10968
10969 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
10970
10971 * progmodes/verilog-mode.el (verilog-type-font-keywords):
10972 Use font-lock-constant-face, not obsolete font-lock-reference-face.
10973
10974 2010-05-27 Kenichi Handa <handa@m17n.org>
10975
10976 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
10977 element of GSTRING is nil.
10978
10979 2010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
10980
10981 * emacs-lisp/smie.el (smie-forward-token-function)
10982 (smie-backward-token-function): New vars.
10983 (smie-backward-sexp, smie-forward-sexp)
10984 (smie-indent-hanging-p, smie-indent-calculate): Use them.
10985 (smie-default-backward-token): Rename from smie-backward-token and
10986 skip comments.
10987 (smie-default-forward-token): Rename from smie-forward-token and
10988 skip comments.
10989 (smie-next-sexp): Handle nil results from next-token.
10990 (smie-indent-calculate): Add a new case for special `fixindent' comments.
10991
10992 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
10993
10994 * progmodes/verilog-mode.el (verilog-type-font-keywords):
10995 Use font-lock-constant-face, not obsolete font-lock-reference-face.
10996
10997 2010-05-27 Masatake YAMATO <yamato@redhat.com>
10998
10999 * htmlfontify.el (hfy-face-resolve-face): New function.
11000 (hfy-face-to-style): Use it (Bug#6279).
11001
11002 2010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
11003
11004 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
11005 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
11006
11007 2010-05-26 Glenn Morris <rgm@gnu.org>
11008
11009 * emulation/edt.el (edt-load-keys): Use locate-library.
11010
11011 2010-05-25 Chong Yidong <cyd@stupidchicken.com>
11012
11013 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
11014 (log-edit-changelog-entries): Doc fix.
11015 (log-edit-changelog-insert-entries): Args changed.
11016 Rename relative filenames in ChangeLog entries. Delete tabs.
11017 (log-edit-insert-changelog-entries): Reorganize return value of
11018 `log-edit-changelog-entries' to pass filenames to
11019 log-edit-changelog-insert-entries.
11020
11021 2010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11022
11023 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
11024 `image-dired-dired-insert-marked-thumbs' to
11025 `image-dired-dired-toggle-marked-thumbs'.
11026
11027 * image-dired.el: Require cl when compiling.
11028 (image-dired-dired-toggle-marked-thumbs): Rename from
11029 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
11030 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
11031 to 'no-dir. Skip files whose names don't match
11032 `image-file-name-regexp'. When file has a thumbnail overlay,
11033 delete it. (Bug#5270)
11034
11035 2010-05-25 Juri Linkov <juri@jurta.org>
11036
11037 * image-mode.el (image-mode): Add image-after-revert-hook to
11038 after-revert-hook.
11039 (image-after-revert-hook): New function. (Bug#5669)
11040
11041 2010-05-25 Juri Linkov <juri@jurta.org>
11042
11043 * image.el (image-animated-p): When delay between animated images
11044 is 0, set it to 10 (0.1 sec). (Bug#6258)
11045
11046 2010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
11047
11048 * net/tramp.el (tramp-handle-insert-directory): Don't use
11049 `forward-word', its default syntax could be changed.
11050
11051 2010-05-25 Michael Albinus <michael.albinus@gmx.de>
11052
11053 * net/tramp.el (tramp-progress-reporter-update): New defun.
11054 (with-progress-reporter): Use it.
11055 (tramp-process-actions):
11056 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion):
11057 Preserve current message, in order to let progress reporter continue
11058 afterwards. (Bug#6257)
11059
11060 2010-05-25 Glenn Morris <rgm@gnu.org>
11061
11062 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
11063 Add :version.
11064
11065 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
11066
11067 * net/rcirc.el (rcirc-default-user-name): Change to "user".
11068 (rcirc-default-full-name): Change to "unknown".
11069 (rcirc-user-name-history): Add variable.
11070
11071 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
11072 Jonathan Rockway <jon@jrock.us>
11073
11074 * net/rcirc.el (rcirc-server-alist): Add :pass.
11075 (rcirc): When prompting for connection parameters, also prompt for
11076 username and password.
11077 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
11078 value to server when connecting.
11079
11080 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11081
11082 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
11083 (smie-merge-prec2s): Pass the tables as separate args.
11084 (smie-bnf-precedence-table): Adjust call accordingly.
11085 (smie-prec2-levels): Set levels at the end.
11086
11087 Replace Lisp calls to delete-backward-char by delete-char.
11088 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
11089 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
11090 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
11091 * calc/calc.el, emacs-lisp/cl-extra.el, emacs-lips/cl-loaddefs.el,
11092 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
11093 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
11094 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
11095 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
11096 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
11097 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
11098 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
11099 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
11100 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
11101 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
11102 delete-backward-char by calls to delete-char.
11103
11104 2010-05-25 Kenichi Handa <handa@m17n.org>
11105
11106 * language/hebrew.el (hebrew-shape-gstring): New function.
11107 Register it in composition-function-table for all Hebrew combining
11108 characters.
11109
11110 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11111
11112 * epa.el (epa--select-keys): Don't explicitly delete the window since
11113 that can fail (e.g. sole window in frame). Use dedication instead.
11114
11115 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
11116
11117 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
11118
11119 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
11120
11121 * image.el (image-refresh): Define as an alias for image-flush.
11122
11123 * image-mode.el (image-toggle-display-image): Caller changed.
11124
11125 2010-05-21 Juri Linkov <juri@jurta.org>
11126
11127 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
11128 Remove "all" from grep-files-aliases. Split grep-files-aliases by
11129 whitespace, call wildcard-to-regexp on substrings and concat them
11130 with "\\|". (Bug#6114)
11131
11132 2010-05-21 Alan Mackenzie <acm@muc.de>
11133
11134 * progmodes/cc-engine.el (c-parse-state-get-strategy):
11135 Replace parameter `here' with `here-' and `here-plus', which sandwich
11136 any pertinent CPP construct.
11137 (c-remove-stale-state-cache-backwards): Fix a bug which happens
11138 when doing (c-parse-state) in a CPP construct: Exclude any "new"
11139 CPP construct from taking part in the scanning.
11140
11141 2010-05-21 Michael Albinus <michael.albinus@gmx.de>
11142
11143 * net/tramp.el (tramp-do-copy-or-rename-file)
11144 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
11145 Tune `with-progress-reporter' messages.
11146 (tramp-handle-vc-registered):
11147 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
11148 (tramp-fish-handle-insert-file-contents)
11149 (tramp-fish-maybe-open-connection):
11150 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
11151 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
11152 (tramp-imap-handle-insert-file-contents)
11153 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
11154
11155 2010-05-21 Juanma Barranquero <lekktu@gmail.com>
11156
11157 * add-log.el (change-log-font-lock-keywords):
11158 Highlight all authors in multi-author entries.
11159
11160 * smerge-mode.el (smerge-refine-ignore-whitespace)
11161 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
11162 Fix typos in docstrings.
11163 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
11164
11165 2010-05-21 Glenn Morris <rgm@gnu.org>
11166
11167 * progmodes/fortran.el (fortran-mode):
11168 * progmodes/f90.el (f90-mode): Derive from prog-mode.
11169
11170 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
11171 having a relative path in src/Makefile.in.
11172
11173 2010-05-20 Kevin Ryde <user42@zip.com.au>
11174
11175 * help-mode.el (help-make-xrefs): For Info node links turn
11176 newlines into spaces. Link node names with newlines are matched
11177 by help-xref-info-regexp and buttonized, this change ensures they
11178 can be followed successfully with RET. (Bug#6206)
11179
11180 2010-05-20 Juri Linkov <juri@jurta.org>
11181
11182 * locate.el (locate): Use pop-to-buffer instead of
11183 switch-to-buffer-other-window. (Bug#6204)
11184
11185 2010-05-20 Juri Linkov <juri@jurta.org>
11186
11187 * replace.el (replace-highlight): Fix lazy-highlighting
11188 for `M-s w str M-% str RET'.
11189
11190 2009-12-15 Masatake YAMATO <yamato@redhat.com>
11191
11192 * isearch.el (isearch-yank-word-or-char): Pull next subword
11193 when `subword-mode' is activated. (Bug#6220)
11194
11195 2010-05-20 Mark A. Hershberger <mah@everybody.org>
11196
11197 * isearch.el (isearch-update-post-hook): New hook.
11198 (isearch-update): Use the new hook. (Bug#6225)
11199
11200 2010-05-20 Juri Linkov <juri@jurta.org>
11201
11202 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
11203 [f1], [help], and (char-to-string help-char) instead of "\C-h".
11204 (Bug#6222)
11205
11206 2010-05-20 Juri Linkov <juri@jurta.org>
11207
11208 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
11209 (Bug#6223)
11210
11211 2010-05-20 Juri Linkov <juri@jurta.org>
11212
11213 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
11214 FILE-NAME to read from the minibuffer when called interactively
11215 with prefix argument instead of using buffer-file-name.
11216 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
11217
11218 * dired.el: Update autoloads.
11219
11220 2010-05-20 Chong Yidong <cyd@stupidchicken.com>
11221
11222 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
11223 nxml-finish-element, for consistency with SGML mode.
11224
11225 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
11226 octave-close-block.
11227
11228 2010-05-20 Juanma Barranquero <lekktu@gmail.com>
11229
11230 * composite.el: Require cl when compiling.
11231 (reference-point-alist, compose-gstring-for-graphic)
11232 (compose-gstring-for-terminal): Fix typos in docstrings.
11233
11234 2010-05-19 Juri Linkov <juri@jurta.org>
11235
11236 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
11237 set-window-parameter.
11238
11239 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
11240
11241 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
11242 where appropriate.
11243 (tramp-maybe-open-connection): Use it.
11244
11245 2010-05-19 Eli Zaretskii <eliz@gnu.org>
11246
11247 * simple.el (move-end-of-line): Make sure we are at line beginning
11248 before backing up to end of previous line.
11249
11250 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
11251
11252 * password-cache.el (password-cache-remove): Fix docstring.
11253
11254 * net/secrets.el: Autoload the widget functions.
11255 (secrets-search-items, secrets-create-item)
11256 (secrets-get-attributes, secrets-expand-item): Attributes will be
11257 stored on the password database without leading ":", as all other
11258 clients do as well.
11259 (secrets-mode): Fix docstring.
11260 (secrets-show-secrets): Provide it as autoloaded command only when
11261 D-Bus support is available. Check existence of Secret Service API.
11262
11263 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11264
11265 * indent.el (indent-region): Deactivate region (bug#6200).
11266
11267 2010-05-19 Glenn Morris <rgm@gnu.org>
11268
11269 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
11270
11271 2010-05-19 Kenichi Handa <handa@m17n.org>
11272
11273 * composite.el: Register compose-gstring-for-graphic in
11274 composition-function-table only for combining characters (Mn, Mc, Me).
11275
11276 2010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
11277
11278 * calc/calc-trail.el (calc-trail-isearch-forward)
11279 (calc-trail-isearch-backward): Ensure that the new window
11280 point is set correctly.
11281
11282 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11283
11284 * subr.el (read-quoted-char): Resolve modifiers after key
11285 remapping (bug#6212).
11286
11287 2010-05-18 Michael Albinus <michael.albinus@gmx.de>
11288
11289 Add visualization code for secrets.
11290 * net/secrets.el (secrets-mode): New major mode.
11291 (secrets-show-secrets, secrets-show-collections)
11292 (secrets-expand-collection, secrets-expand-item)
11293 (secrets-tree-widget-after-toggle-function)
11294 (secrets-tree-widget-show-password): New defuns.
11295
11296 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11297
11298 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
11299 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
11300 handled in smie-next-sexp.
11301 (smie-indent-calculate): Provide a starting indentation (so the
11302 recursion is well-founded ;-).
11303
11304 Fix handling of non-associative equal levels.
11305 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
11306 when it's not needed.
11307 (smie-op-left, smie-op-right): New functions.
11308 (smie-next-sexp): New function, extracted from smie-backward-sexp.
11309 Better handle equal levels to distinguish the associative case from
11310 the "multi-keyword construct" case.
11311 (smie-backward-sexp, smie-forward-sexp): Use it.
11312
11313 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
11314
11315 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
11316
11317 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
11318 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
11319
11320 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11321
11322 Provide a simple generic indentation engine and use it for Prolog.
11323 * emacs-lisp/smie.el: New file.
11324 * progmodes/prolog.el (prolog-smie-op-levels)
11325 (prolog-smie-indent-rules): New var.
11326 (prolog-mode-variables): Use them to configure SMIE.
11327 (prolog-indent-line, prolog-indent-level): Remove.
11328
11329 2010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
11330
11331 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
11332 order before computing the averages.
11333
11334 2010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
11335
11336 * calc/calc-vec.el (calc-histogram):
11337 (calcFunc-histogram): Allow vectors as inputs.
11338 (math-vector-avg): New function.
11339
11340 * calc/calc-ext.el (math-group-float): Have the number of digits
11341 being grouped depend on the radix (Bug#6189).
11342
11343 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
11344
11345 * version.el (emacs-copyright, emacs-version): Don't define here,
11346 now that emacs.c defines it.
11347
11348 2010-05-15 Eli Zaretskii <eliz@gnu.org>
11349
11350 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
11351 "Describe Language Environment" menu item.
11352
11353 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
11354
11355 Bidi-sensitive movement with arrow keys.
11356 * subr.el (right-arrow-command, left-arrow-command): New functions.
11357
11358 * bindings.el (global-map): Bind them to right and left arrow keys.
11359
11360 Don't override standard definition of convert-standard-filename.
11361 * files.el (convert-standard-filename):
11362 Call w32-convert-standard-filename and dos-convert-standard-filename on
11363 the corresponding systems.
11364
11365 * w32-fns.el (w32-convert-standard-filename): Rename from
11366 convert-standard-filename. Doc fix.
11367
11368 * dos-fns.el (dos-convert-standard-filename): Doc fix.
11369 (convert-standard-filename): Don't defalias.
11370 (register-name-alist, make-register, register-value)
11371 (set-register-value, intdos): Obsolete aliases for the
11372 corresponding dos-* functions and variables.
11373 (dos-intdos): Add a doc string.
11374
11375 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
11376
11377 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
11378 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
11379 (math-compose-tex-func):
11380 * calc/calccomp.el (math-compose-expr):
11381 * calc/calc-ext.el (math-format-flat-expr-fancy):
11382 * calc/calc-store.el (calc-read-var-name):
11383 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
11384
11385 * calc/calc.el (var-π, var-φ, var-γ): New variables.
11386 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
11387 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
11388 (math-standard-units): Add units.
11389
11390 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
11391
11392 * progmodes/asm-mode.el (asm-mode):
11393 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
11394
11395 * pcomplete.el (pcomplete-completions-at-point): New function,
11396 extracted from pcomplete-std-complete.
11397 (pcomplete-std-complete): Use it.
11398
11399 2010-05-15 Glenn Morris <rgm@gnu.org>
11400
11401 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
11402 Remove references to CVS, RCS and Old directories.
11403
11404 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
11405
11406 * calc/calc-bin.el (math-format-twos-complement): Group digits when
11407 appropriate.
11408
11409 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
11410
11411 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
11412 (sh-mode-syntax-table): Give it a default value instead.
11413 (sh-header-marker): Make buffer-local.
11414 (sh-mode): Move make-local-variable to the corresponding setq.
11415 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
11416 Use complete-with-action.
11417
11418 * simple.el (prog-mode): New (abstract) major mode.
11419 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
11420 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
11421
11422 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
11423
11424 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
11425 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
11426 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
11427 (sql-make-alternate-buffer-name, sql-placeholders-filter)
11428 (sql-escape-newlines-filter, sql-input-sender)
11429 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
11430
11431 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
11432
11433 Add TeX open-block and close-block keybindings to SGML, and vice versa.
11434
11435 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
11436 latex-open-block and C-c / to latex-close-block.
11437
11438 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
11439 and C-c C-e to sgml-close-tag.
11440
11441 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
11442
11443 * net/tramp.el (with-progress-reporter): Create reporter object
11444 only when the message would be displayed. Handle nested calls.
11445 (tramp-handle-load, tramp-handle-file-local-copy)
11446 (tramp-handle-insert-file-contents, tramp-handle-write-region)
11447 (tramp-maybe-send-script, tramp-find-shell):
11448 Use `with-progress-reporter'.
11449 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
11450 Fix message text.
11451
11452 * net/tramp-smb.el (tramp-smb-handle-copy-file)
11453 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
11454 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
11455 Use `with-progress-reporter'.
11456
11457 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
11458
11459 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
11460 process everytime when spellchecking from the minibuffer (bug#6143).
11461
11462 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
11463
11464 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
11465
11466 * dos-fns.el: Add "dos-" prefix for namespace control.
11467 (convert-standard-filename): Define as alias for
11468 dos-convert-standard-filename but only if applicable.
11469
11470 2010-05-12 Alan Mackenzie <acm@muc.de>
11471
11472 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
11473 Push the mark at the start of these functions when appropriate.
11474
11475 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
11476
11477 * minibuffer.el (completion-cycle-threshold): New custom var.
11478 (completion--do-completion): Use it.
11479 (minibuffer-complete): Use cycling if appropriate.
11480
11481 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
11482
11483 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
11484 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
11485
11486 2010-05-11 Juri Linkov <juri@jurta.org>
11487
11488 * scroll-all.el (scroll-all-check-to-scroll):
11489 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
11490
11491 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
11492
11493 * iimage.el (iimage-mode-map): Move initialization into declaration.
11494 (iimage-mode-buffer): Use with-silent-modifications.
11495 Simplify calling convention. Adjust callers.
11496 (iimage-mode): Don't run hook redundantly.
11497
11498 * minibuffer.el (completion-pcm--pattern->regex):
11499 Fix last change (bug#6160).
11500
11501 2010-05-10 Juri Linkov <juri@jurta.org>
11502
11503 Remove nodes visited during Isearch from the Info history.
11504 * info.el (Info-isearch-initial-history)
11505 (Info-isearch-initial-history-list): New variables.
11506 (Info-isearch-start): Record initial values of
11507 Info-isearch-initial-history and Info-isearch-initial-history-list.
11508 Add Info-isearch-end to isearch-mode-end-hook.
11509 (Info-isearch-end): New function.
11510
11511 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
11512
11513 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
11514 format string, in order to work around a bug in pdksh.
11515 Reported by Gilles Pion <gpion@lfdj.com>.
11516 (tramp-handle-verify-visited-file-modtime): Do not send a command
11517 when the connection is not established.
11518 (tramp-handle-set-file-times): Simplify the check for utc.
11519
11520 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
11521
11522 Fix use of `filter-buffer-substring' (rework previous change).
11523 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
11524 (cua-repeat-replace-region):
11525 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
11526 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
11527 (cua-cut-region-to-global-mark): Use it.
11528
11529 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
11530
11531 * progmodes/sql.el: Version 2.1.
11532 (sql-product-alist): Redesign structure of product info.
11533 (sql-product, sql-user, sql-server, sql-database): Safe variables.
11534 (sql-port, sql-port-history): New variables.
11535 (sql-interactive-product): New variable.
11536 (sql-send-terminator): New variable.
11537 (sql-imenu-generic-expression): Add "Types" imenu entry.
11538 (sql-oracle-login-params, sql-sqlite-login-params)
11539 (sql-mysql-login-params, sql-solid-login-params)
11540 (sql-sybase-login-params, sql-informix-login-params)
11541 (sql-ingres-login-params, sql-ms-login-params)
11542 (sql-postgres-login-params, sql-interbase-login-params)
11543 (sql-db2-login-params, sql-linter-login-params)
11544 (sql-oracle-scan-on): New variables.
11545 (sql-mode-map): Add C-c C-i to start interactive mode.
11546 (sql-mode-menu): Update existing menu entries.
11547 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
11548 (sql-mode-oracle-font-lock-keywords)
11549 (sql-mode-postgres-font-lock-keywords)
11550 (sql-mode-ms-font-lock-keywords)
11551 (sql-mode-sybase-font-lock-keywords)
11552 (sql-mode-informix-font-lock-keywords)
11553 (sql-mode-interbase-font-lock-keywords)
11554 (sql-mode-ingres-font-lock-keywords)
11555 (sql-mode-solid-font-lock-keywords)
11556 (sql-mode-mysql-font-lock-keywords)
11557 (sql-mode-sqlite-font-lock-keywords)
11558 (sql-mode-db2-font-lock-keywords)
11559 (sql-mode-linter-font-lock-keywords): Update initialization to
11560 reduce run-time complexity.
11561 (sql-add-product, sql-del-product): New functions.
11562 (sql-set-product-feature, sql-get-product-feature): New functions.
11563 (sql-product-font-lock): Update product API.
11564 (sql-add-product-keywords): New function.
11565 (sql-highlight-product): Update product API.
11566 (sql-help-list-products): New function.
11567 (sql-help): Dynamically lists free and non-free products.
11568 (sql-get-login): Correct bug in handling history and added
11569 prompt for port.
11570 (sql-copy-column): Copy without properties.
11571 (sqli-input-sender): Apply filters to SQLi input.
11572 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
11573 Implement as a filter.
11574 (sql-escape-newlines-filter): Implement as a filter.
11575 (sql-remove-tabs-filter): New function.
11576 (sql-send-magic-terminator): New function.
11577 (sql-send-string): Implement magic terminator.
11578 (sql-send-region): Use `sql-send-string'.
11579 (sql-interactive-mode): Use product API.
11580 (sql-product-interactive): Use product API.
11581 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
11582 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
11583 (sql-db2, sql-linter): Use `sql-product-interactive'.
11584 (sql-connect): New function.
11585 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
11586 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
11587 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
11588 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
11589 Use `sql-connect'.
11590
11591 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
11592
11593 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
11594 New custom variable.
11595 (completion-pcm--string->pattern): Use it.
11596 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
11597 Make it handle any symbol as `any'.
11598 (completion-pcm--merge-completions): Extract common suffix for the new
11599 `prefix' symbol as well.
11600 (completion-substring--all-completions): Use the new `prefix' symbol.
11601
11602 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
11603
11604 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
11605 not bound.
11606 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
11607 (tramp-compat-funcall): New defmacro.
11608 (tramp-compat-line-beginning-position)
11609 (tramp-compat-line-end-position)
11610 (tramp-compat-temporary-file-directory)
11611 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
11612 (tramp-compat-copy-file, tramp-compat-copy-directory)
11613 (tramp-compat-delete-file, tramp-compat-delete-directory)
11614 (tramp-compat-number-sequence, tramp-compat-process-running-p)
11615 * net/tramp.el (top, with-progress-reporter)
11616 (tramp-rfn-eshadow-setup-minibuffer)
11617 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
11618 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
11619 (tramp-completion-mode-p, tramp-check-for-regexp)
11620 (tramp-open-connection-setup-interactive-shell)
11621 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
11622 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
11623 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
11624 * net/tramp-cmds.el (tramp-cleanup-all-connections)
11625 (tramp-reporter-dump-variable, tramp-load-report-modules)
11626 (tramp-append-tramp-buffers)
11627 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
11628
11629 * net/tramp-imap.el (top): Autoload `epg-make-context'.
11630
11631 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
11632
11633 * progmodes/compile.el (compilation-buffer-modtime): Rename from
11634 buffer-modtime. Adjust users.
11635
11636 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
11637
11638 * international/mule.el (auto-coding-alist): Only purecopy
11639 car of each item, not the whole list (Bug#6083).
11640
11641 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
11642
11643 * progmodes/js.el (js-mode): Make paragraph variables local before
11644 calling c-setup-paragraph-variables (Bug#6071).
11645
11646 2010-05-08 Eli Zaretskii <eliz@gnu.org>
11647
11648 * composite.el (compose-region, reference-point-alist): Fix typos
11649 in the doc strings.
11650
11651 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
11652
11653 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
11654 gnuplot's "set" command.
11655
11656 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
11657
11658 * abbrev.el (last-abbrev-text): Doc fix.
11659 (abbrev-prefix-mark): Don't escape parenthesis.
11660
11661 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
11662
11663 * composite.el (find-composition): Doc fix.
11664
11665 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
11666
11667 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
11668 (sql-oracle-program, sql-sqlite-options)
11669 (sql-query-placeholders-and-send): Doc fixes.
11670 (sql-set-product, sql-interactive-mode): Reflow docstrings.
11671 (sql-imenu-generic-expression, sql-buffer)
11672 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
11673 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
11674 (sql-mode-sybase-font-lock-keywords)
11675 (sql-mode-informix-font-lock-keywords)
11676 (sql-mode-interbase-font-lock-keywords)
11677 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
11678 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
11679 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
11680 (sql-product-feature, sql-highlight-product)
11681 (comint-line-beginning-position, sql-rename-buffer)
11682 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
11683 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
11684 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
11685 Fix typos in docstrings.
11686
11687 2010-05-08 Juri Linkov <juri@jurta.org>
11688
11689 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
11690 property instead of `invisible' and `after-string' (bug#5998).
11691
11692 2010-05-08 Juri Linkov <juri@jurta.org>
11693
11694 * image-mode.el (image-mode-as-text): Fix typo in docstring.
11695
11696 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
11697
11698 * filecache.el (file-cache-add-directory-list)
11699 (file-cache-add-directory-recursively): Fix typos in docstrings.
11700
11701 2010-05-08 Kenichi Handa <handa@m17n.org>
11702
11703 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
11704 (gujarati-composable-pattern): Fix typo.
11705
11706 2010-05-08 Kenichi Handa <handa@m17n.org>
11707
11708 * language/indian.el (oriya-composable-pattern)
11709 (tamil-composable-pattern, malayalam-composable-pattern):
11710 Add two-part vowels to "v" (vowel sign).
11711
11712 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
11713
11714 * files.el (copy-directory): Handle symlinks (Bug#5982).
11715
11716 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
11717
11718 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
11719 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
11720 (Bug#5846).
11721
11722 2010-05-08 Glenn Morris <rgm@gnu.org>
11723
11724 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
11725
11726 * minibuffer.el (completion-at-point): Doc fix.
11727
11728 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
11729
11730 * electric.el (Electric-command-loop): Minor tweak.
11731
11732 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
11733 better with dedicated windows.
11734
11735 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
11736
11737 * Version 23.2 released.
11738
11739 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
11740 Stefan Monnier <monnier@iro.umontreal.ca>
11741
11742 Highlight vendor specific properties.
11743 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
11744 (css-proprietary-property): New face.
11745 (css-font-lock-keywords): Use them.
11746
11747 2010-05-07 Eli Zaretskii <eliz@gnu.org>
11748
11749 * cus-start.el (all): Add native condition for tool-bar-* symbols.
11750
11751 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11752
11753 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
11754 * files.el (auto-mode-alist): Remove redundant entries.
11755
11756 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
11757 * simple.el (auto-save-mode): Move from files.el.
11758 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
11759
11760 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
11761
11762 * epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
11763
11764 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
11765
11766 * mail/binhex.el (binhex-decode-region-internal)
11767 * mail/uudecode.el (uudecode-decode-region-internal)
11768 * net/dns.el (dns-read-string-name, dns-write, dns-read)
11769 (dns-read-type, dns-query)
11770 * pgg-parse.el (pgg-parse-armor)
11771 * pgg.el (pgg-verify-region)
11772 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
11773 XEmacs.
11774
11775 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
11776
11777 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
11778
11779 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
11780
11781 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
11782 * emulation/cua-base.el (cua-repeat-replace-region):
11783 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
11784 (cua-cut-region-to-global-mark):
11785 Remove text properties with `set-text-properties'.
11786
11787 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
11788
11789 * net/tramp.el (top, with-progress-reporter):
11790 Use `symbol-function' inside `funcall'.
11791
11792 * net/tramp-compat.el (tramp-compat-file-attributes)
11793 (tramp-compat-delete-file, tramp-compat-delete-directory):
11794 Handle only `wrong-number-of-arguments' error.
11795
11796 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
11797 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
11798 inside `funcall'.
11799
11800 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
11801
11802 * minibuffer.el (completion--sreverse, completion--common-suffix):
11803 New functions.
11804 (completion-pcm--merge-completions): Extract common suffix when safe.
11805
11806 * emacs-lisp/easy-mmode.el (define-minor-mode):
11807 Make :variable more flexible.
11808 * files.el (auto-save-mode): Use it to define using define-minor-mode.
11809
11810 2010-05-05 Juri Linkov <juri@jurta.org>
11811
11812 Add `slow' and `history' tags to the desktop data.
11813
11814 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
11815 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
11816 (Info-finder-find-node): Require `finder.el' to be able
11817 to restore node from the desktop.
11818 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
11819 data `Info-history' and `slow' tag in the assoc list.
11820 (Info-restore-desktop-buffer): Don't restore nodes with the
11821 `slow' tag. Restore `Info-history'.
11822
11823 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
11824
11825 Add FORCE argument to `delete-file'.
11826
11827 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
11828 forcing to delete the temporary file.
11829 (ange-ftp-delete-file): Add FORCE arg.
11830 (ange-ftp-rename-remote-to-remote)
11831 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
11832 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
11833 Force file deletion.
11834
11835 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
11836
11837 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
11838 (tramp-handle-make-symbolic-link, tramp-handle-load)
11839 (tramp-do-copy-or-rename-file-via-buffer)
11840 (tramp-do-copy-or-rename-file-directly)
11841 (tramp-do-copy-or-rename-file-out-of-band)
11842 (tramp-handle-process-file, tramp-handle-call-process-region)
11843 (tramp-handle-shell-command, tramp-handle-file-local-copy)
11844 (tramp-handle-insert-file-contents, tramp-handle-write-region)
11845 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
11846
11847 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
11848 (tramp-fish-handle-make-symbolic-link)
11849 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
11850
11851 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
11852 Use `tramp-compat-delete-file'.
11853
11854 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
11855 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
11856
11857 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
11858 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
11859
11860 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
11861 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
11862 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
11863 Use `tramp-compat-delete-file'.
11864
11865 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
11866
11867 Minor cleanups.
11868 * subr.el (add-minor-mode): Use push.
11869 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
11870 * emulation/edt.el (edt-select-mode): Simplify.
11871
11872 Use define-minor-mode in more cases.
11873 * term/tvi970.el (tvi970-set-keypad-mode):
11874 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
11875 (normal-erase-is-backspace-mode):
11876 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
11877 (set-scroll-bar-mode-1): (Re)move to its sole caller.
11878 (get-scroll-bar-mode): New function.
11879 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
11880
11881 Use define-minor-mode for less obvious cases.
11882 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
11883 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
11884 * international/iso-ascii.el (iso-ascii-mode):
11885 * frame.el (auto-raise-mode, auto-lower-mode):
11886 * composite.el (global-auto-composition-mode): Use define-minor-mode.
11887
11888 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
11889
11890 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
11891 in order to see error messages for failed logins.
11892
11893 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
11894
11895 * diff.el (diff-sentinel):
11896
11897 * epg.el (epg--make-temp-file, epg-decrypt-string)
11898 (epg-verify-string, epg-sign-string, epg-encrypt-string):
11899
11900 * jka-compr.el (jka-compr-partial-uncompress)
11901 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
11902
11903 * server.el (server-sentinel): Use delete-file's new FORCE arg
11904 (Bug#6070).
11905
11906 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11907
11908 Use define-minor-mode where applicable.
11909 * view.el (view-mode):
11910 * type-break.el (type-break-query-mode)
11911 (type-break-mode-line-message-mode):
11912 * textmodes/reftex.el (reftex-mode):
11913 * term/vt100.el (vt100-wide-mode):
11914 * tar-mode.el (tar-subfile-mode):
11915 * savehist.el (savehist-mode):
11916 * ibuf-ext.el (ibuffer-auto-mode):
11917 * composite.el (auto-composition-mode):
11918 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
11919 Use define-minor-mode.
11920 (vhdl-mode): Use static mode-line format.
11921 (vhdl-mode-line-update): Delete.
11922 (vhdl-create-mode-menu, vhdl-activate-customizations)
11923 (vhdl-hs-minor-mode): Don't bother calling it.
11924
11925 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
11926
11927 * simple.el (with-wrapper-hook): Move.
11928 (buffer-substring-filters): Mark obsolete.
11929 (filter-buffer-substring-functions): New variable.
11930 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
11931
11932 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
11933 Michael Albinus <michael.albinus@gmx.de>
11934
11935 Implement compression for inline methods.
11936
11937 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
11938 (tramp-copy-size-limit): Allow also nil.
11939 (tramp-inline-compress-commands): New defconst.
11940 (tramp-find-inline-compress, tramp-get-inline-compress)
11941 (tramp-get-inline-coding): New defuns.
11942 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
11943 replaced by `tramp-get-inline-coding'.
11944 (tramp-handle-file-local-copy, tramp-handle-write-region)
11945 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
11946
11947 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
11948
11949 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
11950 Remove unused functions.
11951
11952 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
11953 Set find-tag-default-function as a variable rather than a property.
11954
11955 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
11956 * progmodes/etags.el (tags-completion-at-point-function):
11957 Remove left over interactive spec. Add autoloading stub.
11958 (complete-tag): Use tags-completion-at-point-function.
11959
11960 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
11961
11962 * minibuffer.el (tags-completion-at-point-function): Fix return value.
11963
11964 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
11965
11966 * ido.el (ido-init-completion-maps): Remove C-v binding.
11967 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
11968
11969 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
11970
11971 * minibuffer.el (tags-completion-at-point-function): New function.
11972 (completion-at-point-functions): Use it.
11973
11974 * progmodes/etags.el (complete-tag): Revert last change.
11975
11976 2010-04-29 Alan Mackenzie <acm@muc.de>
11977
11978 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
11979 off-by-one error (in end of macro position).
11980
11981 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
11982
11983 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
11984 firefox is absent. Don't autoload.
11985 (browse-url-galeon-program): Don't autoload.
11986
11987 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
11988
11989 * bindings.el (complete-symbol): Move into minibuffer.el.
11990
11991 * minibuffer.el (complete-tag): Move from etags.el. If tags
11992 completion cannot be performed, return nil instead of signalling
11993 an error.
11994 (completion-at-point): Make it an alias for complete-symbol.
11995 (complete-symbol): Move from bindings.el, and replace with the
11996 body of completion-at-point.
11997
11998 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
11999
12000 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
12001
12002 * net/tramp.el (tramp-remote-selinux-p): New defun.
12003 (tramp-handle-file-selinux-context)
12004 (tramp-handle-set-file-selinux-context): Use it.
12005
12006 2010-04-28 Sam Steingold <sds@gnu.org>
12007
12008 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
12009 `safe-local-variable' if the value is a string or a symbol with
12010 the property `bug-reference-url-format'.
12011
12012 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
12013
12014 * progmodes/bug-reference.el (bug-reference-url-format):
12015 Revert 2010-04-27 change due to security risk.
12016
12017 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
12018
12019 Make it possible to locally disable a globally enabled mode.
12020 * simple.el (fundamental-mode): Run fundamental-mode-hook.
12021 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
12022 rather than kill-all-local-variables so it runs fundamental-mode-hook.
12023 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
12024 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
12025 that subsequent hooks get a chance to disable it.
12026
12027 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
12028
12029 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
12030 Avoid re-enabling a minor mode after the user turned the minor mode
12031 off if MODE-enable-in-buffers is run twice (typically once from
12032 fundamental-mode's after-change-major-mode-hook and a second time from
12033 run-mode-hook's own after-change-major-mode-hook).
12034
12035 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
12036
12037 2010-04-27 Sam Steingold <sds@gnu.org>
12038
12039 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
12040 `safe-local-variable' if the value is a string or a function, as
12041 documented and implemented on 2010-04-02.
12042
12043 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
12044
12045 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
12046 when method is 'kill.
12047
12048 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
12049
12050 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
12051 condition in default directory check.
12052 (ispell-init-process, ispell-kill-ispell, kill-buffer-hook):
12053 Kill ispell process when killing its associated buffer.
12054
12055 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
12056
12057 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
12058 but we aren't using it.
12059
12060 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
12061
12062 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
12063 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
12064
12065 2010-04-24 Glenn Morris <rgm@gnu.org>
12066
12067 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
12068 Ignore VCS-ignore files, and deleted nextstep preferences files.
12069 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
12070 (authors-ambiguous-files): New list.
12071 (authors-valid-file-names): Add some deleted files.
12072 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
12073 (authors-disambiguate-file-name): New function. (Bug#5501)
12074 (authors-canonical-file-name): Doc fix.
12075 Don't warn about obsolete files.
12076 (authors-canonical-file-name, authors-scan-el):
12077 Use authors-disambiguate-file-name.
12078
12079 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
12080 Add autoload cookies.
12081 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
12082 (generated-autoload-file): Set file-local value to "htmlfontify.el".
12083 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
12084 They have definitions / compiler macros in cl.el.
12085 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
12086 Replace manual autoloads with generated ones.
12087 (htmlfontify-unload-rgb-file): Remove autoload.
12088 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
12089
12090 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
12091
12092 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
12093 (byte-compile-setq-default): Optimize for the
12094 single-var case and don't call byte-compile-form in this case to avoid
12095 inf-loop with byte-compile-set-default.
12096
12097 * progmodes/compile.el (compilation-start): Abbreviate default directory.
12098
12099 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
12100
12101 Implement SELINUX backends.
12102
12103 * net/tramp.el (tramp-file-name-handler-alist):
12104 Add `file-selinux-context' and `set-file-selinux-context'.
12105 (tramp-handle-file-selinux-context)
12106 (tramp-handle-set-file-selinux-context): New defuns.
12107 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
12108 Handle PRESERVE-SELINUX-CONTEXT.
12109
12110 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
12111 Add `file-selinux-context' and `set-file-selinux-context'.
12112 (tramp-gvfs-handle-file-selinux-context)
12113 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
12114 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
12115
12116 * net/ange-ftp.el (ange-ftp-copy-file):
12117 * net/tramp-fish.el (tramp-fish-handle-copy-file):
12118 * net/tramp-imap.el (tramp-imap-handle-copy-file):
12119 * net/tramp-smb.el (tramp-smb-handle-copy-file):
12120 Add PRESERVE-SELINUX-CONTEXT.
12121
12122 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
12123
12124 Synchronize with Tramp repository.
12125
12126 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
12127 (tramp-action-process-alive, tramp-action-out-of-band)
12128 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
12129 (tramp-exists-file-name-handler): Fix docstring.
12130 (with-progress-reporter): New defmacro.
12131 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
12132 (tramp-maybe-open-connection): Use it.
12133
12134 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
12135
12136 Detect ssh 'ControlMaster' argument automatically in some cases.
12137
12138 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
12139 (tramp-default-method): Use it.
12140
12141 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
12142
12143 * net/tramp.el (tramp-handle-copy-file): Add new optional
12144 parameter `preserve-selinux-context'.
12145 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
12146
12147 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
12148
12149 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
12150 Ensure, that non remote files are still checked. Oops.
12151
12152 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
12153
12154 Fix Bug#5840.
12155
12156 * icomplete.el (icomplete-completions): Use `non-essential'.
12157
12158 * net/tramp.el (tramp-connectable-p): New defun.
12159 (tramp-handle-expand-file-name)
12160 (tramp-completion-handle-file-name-all-completions)
12161 (tramp-completion-handle-file-name-completion): Use it.
12162
12163 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
12164
12165 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
12166
12167 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
12168
12169 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
12170
12171 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
12172
12173 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
12174 is present.
12175
12176 * info.el (info-tool-bar-map): Add labels.
12177
12178 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
12179
12180 * cus-edit.el (custom-commands): Add labels for tool bar.
12181 (custom-buffer-create-internal, Custom-mode): Adjust for
12182 labels in custom-commands.
12183
12184 * dynamic-setting.el: Renamed from font-setting.el.
12185
12186 2010-04-21 John Wiegley <jwiegley@gmail.com>
12187
12188 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
12189 toggles the use of virtual buffers.
12190 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
12191 (ido-toggle-virtual-buffers): New function.
12192
12193 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
12194
12195 Use `define-derived-mode'; fix window selection; doc fixes.
12196 * play/tetris.el (tetris, tetris-update-speed-function)
12197 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
12198 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
12199 (tetris-rotate-next, tetris-end-game, tetris-start-game)
12200 (tetris-pause-game): Fix typos in docstrings.
12201 (tetris-mode-map, tetris-null-map):
12202 Move initialization into declaration.
12203 (tetris-mode): Define with `define-derived-mode';
12204 set show-trailing-whitespace to nil.
12205 (tetris): Prefer window already displaying the "*Tetris*" buffer.
12206
12207 2010-04-21 Karel Klíč <kklic@redhat.com>
12208
12209 * files.el (backup-buffer): Handle SELinux context, and return it
12210 if a backup was made by renaming.
12211 (backup-buffer-copy): Set SELinux context to the target file.
12212 (basic-save-buffer): Set SELinux context of the newly written file.
12213 (basic-save-buffer-1): Now it also returns any SELinux context.
12214 (basic-save-buffer-2): Set SELinux context of the newly created file,
12215 and return it.
12216 * net/tramp.el (tramp-file-name-for-operation):
12217 Add file-selinux-context.
12218
12219 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
12220
12221 Make the log-edit comments use RFC822 format throughout.
12222
12223 * vc.el (vc-checkin, vc-modify-change-comment):
12224 Adjust to new vc-start/finish-logentry.
12225 (vc-find-conflicted-file): New command.
12226 (vc-transfer-file): Adjust to new vc-checkin.
12227 (vc-next-action): Improve scoping.
12228
12229 * vc-hg.el (vc-hg-log-edit-mode): Remove.
12230 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
12231
12232 * vc-git.el (vc-git-log-edit-mode): Remove.
12233 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
12234 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
12235
12236 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
12237 (vc-start-logentry): Remove argument `extra'.
12238 (vc-finish-logentry): Remove extra args.
12239
12240 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
12241 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
12242 (vc-bzr-conflicted-files): New function.
12243
12244 * log-edit.el (log-edit-extra-flags)
12245 (log-edit-before-checkin-process): Remove.
12246 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
12247 (log-edit-headers-alist): New var.
12248 (log-edit-header-contents-regexp): New const.
12249 (log-edit-match-to-eoh): New function.
12250 (log-edit-font-lock-keywords): Use them.
12251 (log-edit): Insert a "Summary:" header as default.
12252 (log-edit-mode): Mark font-lock rules as case-insensitive.
12253 (log-edit-done): Cleanup headers.
12254 (log-view-process-buffer): Remove.
12255 (log-edit-extract-headers): New function to replace it.
12256
12257 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
12258
12259 * subr.el (default-direction-reversed): Remove obsolescence info.
12260
12261 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
12262
12263 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
12264 windows/frames.
12265
12266 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
12267 I.e. include text after point in the completion region.
12268 Also, return nil when we're not after/in a symbol.
12269
12270 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
12271 default enable-multibyte-characters.
12272
12273 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12274
12275 * international/mule.el: Help the user choose a valid coding-system.
12276 (read-buffer-file-coding-system): New function.
12277 (set-buffer-file-coding-system): Use it. Prompt the user if the
12278 coding-system cannot encode all the chars.
12279
12280 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
12281 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
12282 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
12283 Don't use *vc-bzr-shelve*.
12284
12285 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
12286
12287 Fix the version number for added files.
12288 * vc-hg.el (vc-hg-working-revision): Check if the file is
12289 registered after hg parent fails (Bug#5961).
12290
12291 2010-04-19 Glenn Morris <rgm@gnu.org>
12292
12293 * htmlfontify.el (htmlfontify-buffer)
12294 (htmlfontify-copy-and-link-dir): Autoload entry points.
12295
12296 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
12297
12298 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
12299 name relative to the project root (Bug#5960).
12300
12301 2010-04-19 Glenn Morris <rgm@gnu.org>
12302
12303 * vc-git.el (vc-git-print-log): Doc fix.
12304
12305 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
12306
12307 * ido.el (ido-file-internal): Fix 2009-12-02 change.
12308
12309 2010-04-19 Christoph Scholtes <cschol2112@googlemail.com>
12310
12311 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
12312 default settings (Bug#5928).
12313
12314 2010-04-19 Glenn Morris <rgm@gnu.org>
12315
12316 * progmodes/fortran.el (fortran-match-and-skip-declaration):
12317 New function.
12318 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
12319
12320 2010-04-19 Kenichi Handa <handa@m17n.org>
12321
12322 * language/indian.el (malayalam-composable-pattern): Fix previous
12323 change (add U+0D4D "SIGN VIRAMA").
12324 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
12325 (tamil-composable-pattern): Fix typo in the regexp.
12326 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
12327 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
12328 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
12329
12330 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
12331
12332 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
12333 paragraph-separate (Bug#5821).
12334
12335 2010-04-19 Juri Linkov <juri@jurta.org>
12336
12337 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
12338
12339 * info.el (Info-find-node-2): Comment out code that skips
12340 breadcrumbs line.
12341 (Info-mouse-follow-link): New command.
12342 (Info-link-keymap): New keymap.
12343 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
12344 Return a string with links instead of inserting breadcrumbs
12345 to the Info buffer.
12346 (Info-fontify-node): Comment out code that inserts breadcrumbs.
12347 Instead of putting the `invisible' text property over the Info
12348 header, make an overlay over the Info header with the `invisible'
12349 property and `after-string' set to the string returned by
12350 `Info-breadcrumbs'.
12351
12352 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
12353
12354 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
12355 Reported by monkey@sandpframing.com.
12356
12357 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12358
12359 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
12360 (tmm-get-keymap): Add key-binding shortcuts now that they're not
12361 available in the "keyseq cache" any more.
12362
12363 * custom.el (defcustom): Add edebug spec.
12364
12365 2010-04-18 Juri Linkov <juri@jurta.org>
12366
12367 Test for special mode-class in view-buffer instead of view-file (bug#5513).
12368
12369 * view.el (view-file, view-buffer): Move test for special mode-class
12370 from view-file to view-buffer.
12371
12372 * tar-mode.el (tar-extract): Turn if's into one cond
12373 like in arc-mode.el.
12374
12375 2010-04-18 Juri Linkov <juri@jurta.org>
12376
12377 Add 7z archive format support (bug#5475).
12378
12379 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
12380 (archive-7z-extract): New defcustom.
12381 (archive-find-type): Add magic string for 7z.
12382 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
12383 If `stderr-file' is non-nil, use `(t stderr-file)' for the
12384 `buffer' arg of `call-process'.
12385 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
12386 call the function `archive-7z-extract' with the variable
12387 `archive-7z-extract' let-bound to `archive-zip-extract'.
12388 (archive-7z-summarize, archive-7z-extract): New functions.
12389
12390 * international/mule.el (auto-coding-alist):
12391 * files.el (auto-mode-alist): Add 7z file extension.
12392
12393 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
12394
12395 * loadup.el: Setup hash-cons for pure data.
12396
12397 Fix duplicate entries in cedet's loaddefs.el files.
12398 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
12399 Should make most file-local generated-autoload-file unnecessary.
12400 (print-readably): Silence warnings.
12401 (autoload-find-destination): Take load-name as an arg to make sure
12402 it's the same as the one that will be in the file.
12403 (autoload-generate-file-autoloads): Adjust to above changes.
12404 Try to make the dataflow a bit simpler.
12405
12406 * cvs-status.el (cvs-refontify): Remove unused.
12407
12408 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
12409
12410 * calc/calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
12411
12412 * calc/calc-bin.el (calc-radix): Have the "O" option turn on
12413 twos-complement mode.
12414
12415 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
12416
12417 * calc/calc-ext.el (calc-init-extensions): Add keybinding for
12418 'calc-option'. Add `calc-option-prefix-help' to calc-help autoloads.
12419 (calc-inverse): Add "Option" to message, as appropriate.
12420 (calc-hyperbolic): Add "Option" to message, as appropriate.
12421 (calc-option, calc-is-option): New functions.
12422
12423 * calc/calc-help.el (calc-full-help): Add `calc-option-help'.
12424 (calc-option-prefix-help): New function.
12425
12426 * calc/calc-misc.el (calc-help): Add "Option" entry.
12427
12428 * calc/calc.el (calc-local-var-list): Add `calc-option-flag'.
12429 (calc-option-flag): New variable.
12430 (calc-do): Set `calc-option-flag to nil.
12431 (calc-set-mode-line): Add "Opt " as appropriate.
12432
12433 2010-04-16 Juri Linkov <juri@jurta.org>
12434
12435 Move scrolling commands from simple.el to window.el
12436 because their primitives are implemented in window.c.
12437
12438 * simple.el (scroll-error-top-bottom)
12439 (scroll-up-command, scroll-down-command, scroll-up-line)
12440 (scroll-down-line, scroll-other-window-down)
12441 (beginning-of-buffer-other-window, end-of-buffer-other-window):
12442 * window.el (scroll-error-top-bottom)
12443 (scroll-up-command, scroll-down-command, scroll-up-line)
12444 (scroll-down-line, scroll-other-window-down)
12445 (beginning-of-buffer-other-window, end-of-buffer-other-window):
12446 Move from simple.el to window.el because their primitives are
12447 implemented in window.c.
12448
12449 2010-04-16 Juri Linkov <juri@jurta.org>
12450
12451 * isearch.el (isearch-lookup-scroll-key): Check both
12452 `isearch-scroll' and `scroll-command' properties.
12453 (scroll-up, scroll-down): Remove `isearch-scroll' property.
12454
12455 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
12456
12457 * simple.el (scroll-up-command, scroll-down-command)
12458 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
12459
12460 2010-04-15 Juri Linkov <juri@jurta.org>
12461
12462 * simple.el (scroll-up-command, scroll-down-command)
12463 (scroll-up-line, scroll-down-line): Put `scroll-command'
12464 property on the these symbols. Remove them from
12465 `scroll-preserve-screen-position-commands'.
12466
12467 * mwheel.el (mwheel-scroll): Put `scroll-command' and
12468 `isearch-scroll' properties on the `mwheel-scroll' symbol.
12469 Remove it from `scroll-preserve-screen-position-commands'.
12470
12471 * isearch.el (isearch-allow-scroll): Doc fix.
12472
12473 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
12474
12475 * net/tramp.el (tramp-error-with-buffer): Don't show the
12476 connection buffer when we are in completion mode.
12477 (tramp-file-name-handler): Catch the error for some operations
12478 when we are in completion mode. This gives the user the chance to
12479 correct the file name in the minibuffer.
12480
12481 2010-04-15 Glenn Morris <rgm@gnu.org>
12482
12483 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
12484
12485 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
12486
12487 Simplify by using `define-derived-mode'.
12488 * info.el (Info-mode):
12489 * calendar/todo-mode.el (todo-mode):
12490 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
12491 (gomoku-mode-map): Move initialization into declaration.
12492
12493 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
12494
12495 Fix Bug#5840.
12496 * ido.el (ido-file-name-all-completions-1):
12497 * minibuffer.el (minibuffer-completion-help):
12498 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
12499
12500 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12501
12502 * simple.el (non-essential): New var.
12503
12504 Add a new field `location' to bookmarks for non-file bookmarks.
12505 * bookmark.el (bookmark-location): Use the new field, if present.
12506 (bookmark-insert-location): Undo last change, not needed any more.
12507 * man.el (Man-bookmark-make-record):
12508 * woman.el (woman-bookmark-make-record): Add `location' field.
12509
12510 2010-04-14 Juri Linkov <juri@jurta.org>
12511
12512 * simple.el (scroll-error-top-bottom): New defcustom.
12513 (scroll-up-command, scroll-down-command): Use it. Doc fix.
12514
12515 * emulation/pc-select.el (pc-select-override-scroll-error):
12516 Obsolete in favor of `scroll-error-top-bottom'.
12517
12518 2010-04-14 Juri Linkov <juri@jurta.org>
12519
12520 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
12521 `scroll-up-command' and `M-v' to `scroll-down-command'.
12522
12523 * emulation/cua-rect.el (cua--init-rectangles):
12524 * forms.el (forms--change-commands):
12525 * image-mode.el (image-mode-map):
12526 Remap scroll-down-command and scroll-up-command
12527 in addition to scroll-down and scroll-up.
12528
12529 2010-04-14 Juri Linkov <juri@jurta.org>
12530
12531 * mwheel.el (scroll-preserve-screen-position-commands):
12532 Add mwheel-scroll to this list of commands.
12533
12534 * simple.el (scroll-preserve-screen-position-commands):
12535 Add scroll-up-command, scroll-down-command, scroll-up-line,
12536 scroll-down-line to this list of commands.
12537
12538 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
12539
12540 * obsolete/complete.el: Move from lisp/complete.el.
12541
12542 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
12543
12544 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
12545 to the minor mode function now turns the mode ON unconditionally.
12546
12547 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
12548
12549 * vc-dir.el (vc-dir-kill-line): New command.
12550 (vc-dir-mode-map): Bind it to C-k.
12551
12552 * bookmark.el (bookmark-insert-location): Handle a nil filename.
12553
12554 * woman.el: Add bookmark declarations to silence the compiler.
12555 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
12556 step to compatibility between man and woman bookmarks.
12557 Adjust for Man-default-bookmark-title renaming.
12558 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
12559
12560 * man.el: Add bookmark declarations to silence the compiler.
12561 (Man-name-local-regexp): Make it match NAME as well.
12562 (Man-getpage-in-background): Return the buffer.
12563 (Man-notify-when-ready): Use `case'.
12564 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
12565 Don't hardcode "NAME". Simplify.
12566 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
12567 Rename from Man-bookmark-make-record.
12568 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
12569 we have the actual man-args. Use Man-getpage-in-background rather
12570 than `man' since the arg is already processed. Let bookmark.el do the
12571 window handling. Only wait for the relevant process.
12572 Don't forget to autoload.
12573
12574 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
12575
12576 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12577
12578 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
12579 New functions.
12580 (woman-mode): Setup bookmark support.
12581
12582 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
12583 (man-bookmark-jump): New functions.
12584 (Man-mode): Setup bookmark support.
12585
12586 2010-04-10 Jari Aalto <jari.aalto@cante.net>
12587
12588 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
12589 recognize ssh-keygen prompt (Bug#2817).
12590
12591 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
12592
12593 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
12594
12595 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
12596
12597 Synchronize with Tramp repository.
12598
12599 * net/tramp.el (tramp-completion-function-alist)
12600 (tramp-file-name-regexp, tramp-chunksize)
12601 (tramp-local-coding-commands, tramp-remote-coding-commands):
12602 Fix docstring.
12603 (tramp-remote-process-environment): Use `format' instead of `concat'.
12604 (tramp-handle-directory-files-and-attributes)
12605 (tramp-get-remote-path): Use `copy-tree'.
12606 (tramp-handle-file-name-all-completions): Backward/ XEmacs
12607 compatibility: Use `completion-ignore-case' if
12608 `read-file-name-completion-ignore-case' does not exist.
12609 (tramp-do-copy-or-rename-file-directly): Do not use
12610 `tramp-handle-file-remote-p'.
12611 (tramp-do-copy-or-rename-file-out-of-band):
12612 Use `tramp-compat-delete-directory'.
12613 (tramp-do-copy-or-rename-file-out-of-band)
12614 (tramp-compute-multi-hops, tramp-maybe-open-connection):
12615 Use `format-spec-make'.
12616 (tramp-find-foreign-file-name-handler)
12617 (tramp-advice-make-auto-save-file-name)
12618 (tramp-set-auto-save-file-modes): Remove superfluous check for
12619 `stringp'. This is done inside `tramp-tramp-file-p'.
12620 (tramp-debug-outline-regexp): New defconst.
12621 (tramp-get-debug-buffer): Use it.
12622 (tramp-check-for-regexp): Use (forward-line 1).
12623 (tramp-set-auto-save-file-modes): Adapt version check.
12624
12625 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
12626 Wrap call of `featurep' for 2nd argument.
12627 (tramp-compat-make-temp-file): Simplify fallback implementation.
12628 (tramp-compat-copy-tree): Remove function.
12629 (tramp-compat-delete-directory): Provide implementation for older
12630 Emacsen.
12631
12632 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
12633 Do not use `tramp-fish-handle-file-attributes.
12634
12635 * net/trampver.el: Update release number.
12636
12637 2010-04-10 Glenn Morris <rgm@gnu.org>
12638
12639 * progmodes/compile.el (compilation-save-buffers-predicate):
12640 Add missing :version tag.
12641
12642 2010-04-09 Sam Steingold <sds@gnu.org>
12643
12644 * progmodes/compile.el (compilation-save-buffers-predicate):
12645 Remove the "autoload" cookie.
12646
12647 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
12648 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
12649 and `bug-reference-prog-mode' can be used in hooks directly.
12650
12651 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
12652
12653 Add --author support to git commit.
12654 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
12655 (vc-git-log-edit-mode): New minor mode.
12656 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
12657 New declarations.
12658
12659 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
12660
12661 * vc-hooks.el, vc-git.el: Improve documentation comments.
12662
12663 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
12664
12665 Fix some of the problems in defsubst* (bug#5728).
12666 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
12667 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
12668
12669 2010-04-07 Sam Steingold <sds@gnu.org>
12670
12671 * progmodes/compile.el (compilation-save-buffers-predicate):
12672 New custom variable.
12673 (compile, recompile): Pass it to `save-some-buffers'.
12674
12675 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
12676
12677 * wid-edit.el (widget-choose): Move cursor to the second line of
12678 the buffer (Bug#5695).
12679
12680 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
12681
12682 Add new VC methods: vc-log-incoming and vc-log-outgoing.
12683 * vc.el (vc-print-log-setup-buttons): New function split out from
12684 vc-print-log-internal.
12685 (vc-log-internal-common): New function, a parametrized version of
12686 vc-print-log-internal.
12687 (vc-print-log-internal): Just call vc-log-internal-common with the
12688 right arguments.
12689 (vc-incoming-outgoing-internal):
12690 (vc-log-incoming, vc-log-outgoing): New functions.
12691 (vc-log-view-type): New permanent local variable.
12692
12693 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
12694
12695 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
12696 of the dynamic bound vc-short-log.
12697 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
12698
12699 * vc-git.el (vc-git-log-outgoing): New function.
12700 (vc-git-log-view-mode): Use vc-log-view-type instead
12701 of the dynamic bound vc-short-log.
12702
12703 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
12704 of the dynamic bound vc-short-log. Highlight the tag.
12705 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
12706 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
12707 (vc-hg-incoming-mode): Remove.
12708 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
12709
12710 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
12711
12712 Fix default-directory for vc-root-diff.
12713 * vc.el (vc-root-diff): Bind default-directory to the root
12714 directory for the diff command.
12715
12716 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
12717
12718 * progmodes/verilog-mode.el (verilog-forward-sexp):
12719 (verilog-calc-1): Support "disable fork" and "fork wait" multi
12720 word keywords, suggested by Steve Pearlmutter.
12721 (verilog-pretty-declarations): Support lineup of declarations in
12722 port lists.
12723 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
12724 fix bug for /* / comments.
12725 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
12726 Speed up and simplfy as this is never called with a bound.
12727 (verilog-pretty-declarations): Enhance to line up declarations
12728 inside a parameter list, suggested by Alan Morgan.
12729 (verilog-pretty-expr): Tune assignment regular expression match
12730 string for corner cases; also use markers instead of character
12731 number as indent changes the later.
12732
12733 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
12734
12735 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
12736 as missing keyword.
12737 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
12738 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
12739 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
12740 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
12741 Tennant.
12742 (verilog-keywords):
12743 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
12744 1800-2009 keywords, including "global.".
12745
12746 2010-04-06 John Wiegley <jwiegley@gmail.com>
12747
12748 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
12749 appearing in buffer list (if a live buffer name matched a recentf
12750 file basename). Should use uniquify to offer a real solution.
12751
12752 2010-04-06 John Wiegley <jwiegley@gmail.com>
12753
12754 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
12755 comment to code, and add a :version tag.
12756 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
12757
12758 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
12759
12760 Enable recentf-mode if using virtual buffers.
12761 * ido.el (recentf-list): Declare for byte-compiler.
12762 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
12763 (ido-make-buffer-list): Simplify.
12764 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
12765
12766 2010-04-05 Juri Linkov <juri@jurta.org>
12767
12768 Scrolling commands which scroll a line instead of full screen.
12769 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
12770
12771 * simple.el (scroll-up-line, scroll-down-line): New commands.
12772 Put property isearch-scroll=t on them.
12773
12774 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
12775 Remove commands.
12776
12777 2010-04-05 Juri Linkov <juri@jurta.org>
12778
12779 Scrolling commands which do not signal errors at top/bottom.
12780 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
12781
12782 * simple.el (scroll-up-command, scroll-down-command): New commands.
12783 Put property isearch-scroll=t on them.
12784
12785 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
12786 `scroll-down-command' and [next] from `scroll-up' to
12787 `scroll-up-command'.
12788
12789 * emulation/cua-base.el: Put property CUA=move on
12790 `scroll-up-command' and `scroll-down-command'.
12791 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
12792 and `scroll-down-command' to `cua-scroll-down'.
12793
12794 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
12795
12796 * help.el (describe-mode): Return nil.
12797
12798 2010-04-04 John Wiegley <jwiegley@gmail.com>
12799
12800 * ido.el (ido-use-virtual-buffers): New variable to indicate
12801 whether "virtual buffer" support is enabled for IDO.
12802 (ido-virtual): Face used to indicate virtual buffers in the list.
12803 (ido-buffer-internal): If a buffer is chosen, and no such buffer
12804 exists, but a virtual buffer of that name does (which would be why
12805 it was in the list), recreate the buffer by reopening the file.
12806 (ido-make-buffer-list): If virtual buffers are being used, call
12807 `ido-add-virtual-buffers-to-list' before the make list hook.
12808 (ido-virtual-buffers): New variable which contains a copy of the
12809 current contents of the `recentf-list', albeit pared down for the
12810 sake of speed, and with proper faces applied.
12811 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
12812 create a list of "virtual buffers" to present to the user in
12813 addition to the currently open set. Note that this logic could
12814 get rather slow if that list is too large. With the default
12815 `recentf-max-saved-items' of 200, there is little speed penalty.
12816
12817 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
12818
12819 * font-lock.el: Require CL when compiling.
12820 (font-lock-turn-on-thing-lock): Use `case'.
12821
12822 2010-04-03 Eli Zaretskii <eliz@gnu.org>
12823
12824 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
12825 Zaretskii.
12826
12827 2010-04-02 Juri Linkov <juri@jurta.org>
12828
12829 * ehelp.el (electric-help-orig-major-mode):
12830 New buffer-local variable.
12831 (electric-help-mode): Set it to original major-mode. Doc fix.
12832 (with-electric-help): Use `electric-help-orig-major-mode' instead
12833 of (default-value 'major-mode). Doc fix.
12834 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
12835
12836 2010-04-02 Sam Steingold <sds@gnu.org>
12837
12838 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
12839 `vc-hg-command' with a list of flags.
12840
12841 * progmodes/bug-reference.el (bug-reference-bug-regexp):
12842 Also accept "patch" and "RFE".
12843 (bug-reference-fontify): `bug-reference-url-format' can also be a
12844 function to be able to handle the bug kind.
12845 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
12846
12847 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
12848
12849 * tmm.el (tmm-get-keymap): Check with symbolp before passing
12850 value to fboundp, it may not be a symbol.
12851
12852 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12853
12854 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
12855
12856 2010-03-31 Juri Linkov <juri@jurta.org>
12857
12858 * simple.el (next-line, previous-line): Re-throw a signal
12859 with `signal' instead of using `ding'.
12860 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
12861
12862 2010-03-31 Juri Linkov <juri@jurta.org>
12863
12864 * simple.el (keyboard-escape-quit): Raise deselecting the active
12865 region higher than exiting the minibuffer.
12866 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
12867
12868 2010-03-31 Juri Linkov <juri@jurta.org>
12869
12870 * image.el (image-animated-p): Use `image-metadata' instead of
12871 `image-extension-data'. Get GIF extenstion data from metadata
12872 property `extension-data'.
12873
12874 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12875
12876 * simple.el (append-to-buffer): Simplify.
12877
12878 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
12879
12880 * textmodes/artist.el (artist-mode): Fix typo in docstring.
12881 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
12882
12883 2010-03-31 Kenichi Handa <handa@m17n.org>
12884
12885 * language/sinhala.el (composition-function-table): Fix regexp for
12886 the new Unicode specification.
12887
12888 * language/indian.el (devanagari-composable-pattern)
12889 (tamil-composable-pattern, kannada-composable-pattern)
12890 (malayalam-composable-pattern): Adjust for the new Unicode
12891 specification.
12892 (bengali-composable-pattern, gurmukhi-composable-pattern)
12893 (gujarati-composable-pattern, oriya-composable-pattern)
12894 (telugu-composable-pattern): New variables to cope with the new
12895 Unicode specification. Use them in composition-function-table.
12896
12897 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12898
12899 Make tmm-menubar work for the Buffers menu again (bug#5726).
12900 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
12901 vectors rather than cons cells, as used in menu-bar-update-buffers.
12902
12903 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12904
12905 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
12906 (js-insert-and-indent): Revert 2009-08-15 change, restoring
12907 electric punctuation for "{}();,:" (Bug#5586).
12908
12909 * mail/sendmail.el (mail-default-directory): Doc fix.
12910
12911 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12912
12913 * mail/sendmail.el (mail-default-directory): Doc fix.
12914
12915 2010-03-31 Eli Zaretskii <eliz@gnu.org>
12916
12917 * subr.el (version-regexp-alist, version-to-list)
12918 (version-list-<, version-list-=, version-list-<=)
12919 (version-list-not-zero, version<, version<=, version=): Doc fix.
12920 (Bug#5744).
12921
12922 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
12923
12924 * vc.el (vc-root-diff): Doc fix.
12925
12926 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12927
12928 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
12929
12930 * simple.el (append-to-buffer): Fix last change.
12931
12932 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
12933
12934 * simple.el (append-to-buffer): Ensure that point is preserved if
12935 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
12936 (Bug#5749)
12937
12938 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12939
12940 * files.el (auto-mode-case-fold): Change default to t.
12941
12942 2010-03-30 Juri Linkov <juri@jurta.org>
12943
12944 * dired-x.el (dired-omit-mode): Doc fix.
12945
12946 2010-03-30 Juri Linkov <juri@jurta.org>
12947
12948 * replace.el (occur-accumulate-lines): Move occur-engine related
12949 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
12950 to be located after `occur-engine'.
12951
12952 2010-03-30 Juri Linkov <juri@jurta.org>
12953
12954 Make occur handle multi-line matches cleanly with context.
12955 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
12956
12957 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
12958 (occur-engine): Add local variables `ret', `prev-after-lines',
12959 `prev-lines'. Use more arguments for `occur-context-lines'.
12960 Set first elem of its returned list to `data', and the second elem
12961 to `prev-after-lines'. Don't print the separator line.
12962 In the end, print remaining context after-lines.
12963 (occur-context-lines): Add new arguments `begpt', `endpt',
12964 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
12965 after-lines of the previous match with before-lines of the
12966 current match and not overlap them. Return a list with two
12967 values: the output line and the list of context after-lines.
12968
12969 2010-03-30 Juri Linkov <juri@jurta.org>
12970
12971 * replace.el (occur-accumulate-lines): Fix a bug where the first
12972 context line at the beginning of the buffer was missing.
12973
12974 2010-03-30 Eli Zaretskii <eliz@gnu.org>
12975
12976 * files.el: Make bidi-display-reordering safe variable for boolean
12977 values.
12978
12979 2010-03-29 Phil Hagelberg <phil@evri.com>
12980 Chong Yidong <cyd@stupidchicken.com>
12981
12982 * subr.el: Extend progress reporters to perform "spinning".
12983 (progress-reporter-update, progress-reporter-do-update):
12984 Handle non-numeric value arguments.
12985 (progress-reporter--pulse-characters): New var.
12986
12987 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
12988
12989 * progmodes/compile.el (compilation-start): Fix regexp detection
12990 of initial cd command (Bug#5771).
12991
12992 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
12993
12994 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
12995
12996 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
12997
12998 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
12999 * progmodes/gdb-mi.el: Restore.
13000 * progmodes/gdb-ui.el: Remove.
13001 * progmodes/gud.el: Re-accommodate for gdb-mi.el.
13002
13003 2010-03-25 Glenn Morris <rgm@gnu.org>
13004
13005 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
13006 all dired buffers, even tramp ones. (Bug#5755)
13007
13008 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
13009
13010 Add "union tags" in mpc.el.
13011 * mpc.el: Remove backward compatibility code.
13012 (mpc-browser-tags): Change default.
13013 (mpc--find-memoize-union-tags): New var.
13014 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
13015 (mpc-cmd-find): Handle the case where the playlist does not exist.
13016 Handle union-tags.
13017 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
13018 (mpc-cmd-add): Use mpc-cmd-flush.
13019 (mpc-tagbrowser-tag-name): New fun.
13020 (mpc-tagbrowser-buf): Use it.
13021 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
13022
13023 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
13024
13025 Misc cleanup.
13026 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
13027 Use replace-regexp-in-string.
13028 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
13029 (makefile-imake-mode-syntax-table): Move init into defvar.
13030 (makefile-mode): Use define-derived-mode.
13031
13032 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
13033 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
13034 not be present any more.
13035
13036 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
13037
13038 * faces.el (set-face-attribute): Fix typo in docstring.
13039 (face-valid-attribute-values): Reflow docstring.
13040
13041 2010-03-24 Glenn Morris <rgm@gnu.org>
13042
13043 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
13044
13045 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
13046
13047 * indent.el (indent-for-tab-command): Doc fix.
13048
13049 2010-03-24 Alan Mackenzie <acm@muc.de>
13050
13051 * progmodes/cc-engine.el (c-remove-stale-state-cache):
13052 Fix off-by-one error. Fixes bug #5747.
13053
13054 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
13055
13056 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
13057 (image-dired-read-comment): Doc fix.
13058
13059 * json.el (json-object-type, json-array-type, json-key-type)
13060 (json-false, json-null, json-read-number):
13061 * minibuffer.el (completion-in-region-functions):
13062 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
13063 (cal-tex-cursor-week):
13064 * emacs-lisp/trace.el (trace-function):
13065 * eshell/em-basic.el (eshell/printnl):
13066 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
13067 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
13068 * obsolete/levents.el (allocate-event, event-key, event-object)
13069 (event-point, event-process, event-timestamp, event-to-character)
13070 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
13071 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
13072 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
13073 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
13074 (reftex-highlight-selection): Fix typos in docstrings.
13075
13076 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
13077
13078 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
13079
13080 2010-03-24 Glenn Morris <rgm@gnu.org>
13081
13082 * mail/rmail.el (rmail-highlight-face): Restore option deleted
13083 2008-02-13 without comment; mark it obsolete.
13084 (rmail-highlight-headers): Use rmail-highlight-face once more.
13085
13086 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
13087
13088 * woman.el (woman2-process-escapes): Only consume the newline if
13089 the filler character is on a line by itself (Bug#5729).
13090
13091 2010-03-24 Kenichi Handa <handa@m17n.org>
13092
13093 * language/indian.el (devanagari-composable-pattern): Add more
13094 consonants.
13095
13096 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
13097
13098 * net/trampver.el: Update release number.
13099
13100 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
13101
13102 * net/tramp.el (tramp-find-executable):
13103 Use `tramp-get-connection-buffer'. Make the regexp for checking
13104 output of "wc -l" more robust.
13105 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
13106 (tramp-open-connection-setup-interactive-shell): Remove workaround
13107 for OpenSolaris bug, it is not needed anymore.
13108
13109 2010-03-24 Glenn Morris <rgm@gnu.org>
13110
13111 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
13112
13113 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
13114
13115 * files.el (auto-mode-alist): Accept more verilog file patterns.
13116
13117 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
13118
13119 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
13120
13121 2010-03-24 Glenn Morris <rgm@gnu.org>
13122
13123 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
13124 log-edit-before-checkin-process.
13125
13126 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
13127
13128 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
13129
13130 * vc-dispatcher.el (vc-start-logentry): Doc fix.
13131 (log-view-process-buffer, log-edit-extra-flags): Declare.
13132
13133 * log-edit.el (log-edit-before-checkin-process): Doc fix.
13134
13135 2010-03-23 Sam Steingold <sds@gnu.org>
13136
13137 Fix bug#5620: recalculate all markers on compilation buffer
13138 modifications, not on file modifications.
13139 * progmodes/compile.el (compilation-buffer-modtime): New buffer-local
13140 variable: the buffer modification time, for buffers not associated with
13141 files.
13142 (compilation-mode): Create it.
13143 (compilation-filter): Update it.
13144 (compilation-next-error-function): Use it instead of
13145 `visited-file-modtime' for timestamp.
13146
13147 2010-03-23 Juri Linkov <juri@jurta.org>
13148
13149 Implement Occur multi-line matches.
13150 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
13151
13152 * replace.el (occur): Doc fix.
13153 (occur-engine): Set `begpt' to the beginning of the first line.
13154 Set `endpt' to the end of the last match line. At first, count
13155 line numbers between `origpt' and `begpt'. Split out code from
13156 `out-line' variable to new let-bindings `match-prefix' and
13157 `match-str'. In `out-line' add non-numeric prefix to all
13158 non-first lines of multi-line matches. Finally, count lines
13159 between `begpt' and `endpt' and add to `lines'.
13160
13161 2010-03-23 Juri Linkov <juri@jurta.org>
13162
13163 * replace.el (occur-accumulate-lines, occur-engine):
13164 Use `occur-engine-line' instead of duplicate code.
13165 (occur-engine-line): New function created from duplicate code
13166 in `occur-accumulate-lines' and `occur-engine'.
13167
13168 * replace.el (occur-engine-line): Add optional arg `keep-props'.
13169 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
13170
13171 2010-03-23 Juri Linkov <juri@jurta.org>
13172
13173 * finder.el: Remove TODO tasks.
13174
13175 * info.el (Info-finder-find-node): Add node "all"
13176 with all package info. Handle a list of multiple keywords
13177 separated by comma.
13178 (info-finder): In interactive use with a prefix argument,
13179 use `completing-read-multiple' to read a list of keywords
13180 separated by comma.
13181
13182 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
13183
13184 Add a new completion style `substring'.
13185 * minibuffer.el (completion-basic--pattern): New function.
13186 (completion-basic-try-completion, completion-basic-all-completions):
13187 Use it.
13188 (completion-substring--all-completions)
13189 (completion-substring-try-completion)
13190 (completion-substring-all-completions): New functions.
13191 (completion-styles-alist): New style `substring'.
13192
13193 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
13194
13195 Get rid of .elc files after removal of the corresponding .el.
13196 * Makefile.in (compile-clean): New target.
13197 (compile-main): Use it.
13198
13199 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
13200
13201 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
13202 don't do make there. When compiling with separate object dir, there
13203 is no Makefile there.
13204
13205 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
13206
13207 Get rid of the ELCFILES abomination, again.
13208 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
13209 (all, compile): Don't call compile-last.
13210 (compile-main): Build the "elcfiles" list dynamically.
13211 (compile-targets): New (internal) target.
13212
13213 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
13214
13215 * Makefile.in (top_srcdir): Define.
13216 (abs_top_builddir): Define.
13217 (srcdir): Don't append `/..'.
13218 (EMACS): Use ${abs_top_builddir}.
13219 (all, compile, compile-always, compile-last): Don't set emacswd.
13220 (update-subdirs, update-authors): Use $(top_srcdir) instead of
13221 $(srcdir).
13222 (lisp): Use $(srcdir) instead of @srcdir@.
13223
13224 2010-03-21 Juri Linkov <juri@jurta.org>
13225
13226 Fix message of multi-line occur regexps and multi-buffer header lines.
13227 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
13228
13229 * replace.el (occur-1): Don't display regexp if it is longer
13230 than window-width. Use `query-replace-descr' to display regexp.
13231 (occur-engine): Don't display regexp in the buffer header for
13232 multi-buffer occur. Display a separate header line with total
13233 match count and regexp for multi-buffer occur.
13234 Use `query-replace-descr' to display regexp.
13235
13236 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
13237
13238 * net/secrets.el: Fix parenthesis.
13239 (secrets-enabled): Fix parenthesis.
13240
13241 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
13242
13243 Use more relative file and directory names.
13244 * Makefile.in (EMACS): Arrange for it to work when we chdir.
13245 (setwins, setwins_almost, setwins_for_subdirs):
13246 Don't `cd'; output relative names.
13247 (all, compile, compile-always, compile-last): Set emacswd.
13248 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
13249 Just cd to the lisp source dir so we can use relative file names.
13250
13251 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
13252
13253 2010-03-20 Glenn Morris <rgm@gnu.org>
13254
13255 * textmodes/rst.el: Use faces for font-lock customization, and make the
13256 old -face variables obsolete.
13257 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
13258 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
13259 (rst-block-face, rst-external-face, rst-definition-face)
13260 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
13261 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
13262 Make obsolete.
13263 (rst-font-lock-keywords-function): Update for above changes.
13264
13265 2010-03-20 Juri Linkov <juri@jurta.org>
13266
13267 * s-region.el:
13268 * obsolete/s-region.el: Move to obsolete.
13269
13270 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
13271
13272 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
13273
13274 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
13275
13276 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
13277
13278 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
13279
13280 Add special markup processing for commit logs.
13281 * log-edit.el (log-edit-extra-flags): New variable.
13282 (log-edit): Add new argument MODE. Use that mode when non-nil
13283 instead of the log-view-mode.
13284 (log-view-process-buffer): New function.
13285
13286 * vc.el: Document that the checkin method takes optional
13287 arguments. Document new backend specific method: log-view-mode.
13288 (vc-default-log-edit-mode): New function.
13289 (vc-checkin): Use a backend specific log-view-mode.
13290 Pass extra arguments to the checkin method.
13291 (vc-modify-change-comment): Pass a dummy extra argument.
13292
13293 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
13294 log-edit.
13295 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
13296 (vc-finish-logentry): Process the log buffer before passing it
13297 down. Pass log-edit-extra-flags.
13298
13299 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
13300 command.
13301 (log-edit-extra-flags, log-edit-before-checkin-process):
13302 New declarations.
13303
13304 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
13305 command.
13306 (log-edit-extra-flags, log-edit-before-checkin-process):
13307 New declarations.
13308 (vc-hg-log-edit-mode): New derived mode.
13309
13310 * vc-arch.el (vc-arch-checkin):
13311 * vc-cvs.el (vc-cvs-checkin):
13312 * vc-git.el (vc-git-checkin):
13313 * vc-mtn.el (vc-mtn-checkin):
13314 * vc-rcs.el (vc-rcs-checkin):
13315 * vc-sccs.el (vc-sccs-checkin):
13316 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
13317
13318 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
13319
13320 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
13321 parent typo).
13322
13323 2010-03-19 Glenn Morris <rgm@gnu.org>
13324
13325 * password-cache.el (password-cache, password-cache-expiry): Autoload.
13326
13327 2010-03-18 Glenn Morris <rgm@gnu.org>
13328
13329 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
13330
13331 * replace.el (query-replace-history): Give it a doc string.
13332 (map-query-replace-regexp): Use query-replace-from-history-variable
13333 and query-replace-to-history-variable.
13334
13335 * mail/hashcash.el (declare-function): Remove duplicate definition.
13336
13337 * mail/emacsbug.el (report-emacs-bug-pretest-address):
13338 Make it an obsolete alias for report-emacs-bug-address.
13339 (message-strip-special-text-properties): Declare.
13340 (report-emacs-bug): Remove test for a pretest bug address.
13341 Combine message-mode-specific code.
13342
13343 * mail/supercite.el: Don't require sendmail.
13344 (mh-in-header-p): Declare rather than using with-no-warnings.
13345 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
13346 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
13347
13348 * calendar/cal-french.el: Convert to utf-8.
13349
13350 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
13351 Emacs scripts.
13352
13353 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
13354
13355 * net/secrets.el (secrets-enabled): New variable. Use it instead
13356 of a subfeature.
13357
13358 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
13359
13360 * net/secrets.el (top): Register the D-Bus signals only when the
13361 service "org.freedesktop.secrets" can be pinged.
13362 Provide subfeature `enabled'.
13363
13364 2010-03-14 Juri Linkov <juri@jurta.org>
13365
13366 Add finder unknown keywords.
13367
13368 * finder.el (finder-unknown-keywords): New function.
13369
13370 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
13371 to create a Finder node with unknown keywords.
13372
13373 2010-03-14 Juri Linkov <juri@jurta.org>
13374
13375 * finder.el (finder-compile-keywords): Replace `princ' with
13376 `prin1' on a list of symbols interned from keyword strings.
13377
13378 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
13379 a comma, then split keywords using a comma and optional whitespace.
13380 Otherwise, split by whitespace.
13381
13382 * complete.el:
13383 * face-remap.el:
13384 * log-view.el:
13385 * net/hmac-def.el:
13386 * net/hmac-md5.el:
13387 * net/netrc.el:
13388 * progmodes/mixal-mode.el: Fix keywords.
13389
13390 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
13391
13392 * Makefile.in (ELCFILES): Add net/secrets.elc.
13393
13394 * net/secrets.el: New file.
13395
13396 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
13397
13398 * facemenu.el (list-colors-display, list-colors-print): New arg
13399 callback. Use it to allow selecting colors.
13400
13401 * wid-edit.el (widget-image-insert): Insert image prop even if the
13402 current display is non-graphic.
13403 (widget-field-value-set): New fun.
13404 (editable-field): Use it.
13405 (widget-field-value-get): Clean up unused var.
13406 (widget-color-value-create, widget-color--choose-action):
13407 New funs. Allow using list-colors-display to choose color.
13408
13409 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
13410
13411 * cus-edit.el: Resort topmost custom groups.
13412 (custom-buffer-sort-alphabetically): Default to t.
13413 (customize-apropos): Use apropos-parse-pattern.
13414 (custom-search-field): New var.
13415 (custom-buffer-create-internal): Add custom-apropos search field.
13416 (custom-add-parent-links): Don't display parent doc.
13417 (custom-group-value-create): Don't sort top-level custom group.
13418 (custom-magic-value-create): Show visibility button before option name.
13419
13420 (custom-variable-state): New fun, from custom-variable-state-set.
13421 (custom-variable-state-set): Use it.
13422 (custom-group-value-create): Hide options with standard values
13423 using the :hidden-states property. Use progress reporter.
13424
13425 (custom-show): Simplify.
13426 (custom-visibility): Disable images by default.
13427 (custom-variable): New property :hidden-states.
13428 (custom-variable-value-create): Enable images for
13429 custom-visibility widgets. Use :hidden-states property to
13430 determine initial visibility.
13431
13432 * wid-edit.el (widget-image-find): Give images center ascent.
13433 (visibility): Add :on-image and :off-image properties.
13434 (widget-visibility-value-create): Use them.
13435
13436 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
13437
13438 * cus-edit.el (processes): Remove from development group.
13439 (oop, hypermedia): Delete group.
13440 (comm): Promote to top-level group.
13441
13442 * net/browse-url.el (browse-url):
13443 * net/xesam.el (xesam):
13444 * net/tramp.el (tramp):
13445 * net/goto-addr.el (goto-address):
13446 * net/ange-ftp.el (ange-ftp): Put in comm group.
13447
13448 * view.el (view): Remove from editing group.
13449
13450 * uniquify.el (uniquify): Put in files group.
13451
13452 * net/browse-url.el (browse-url):
13453 * ps-print.el (postscript): Put in external group.
13454
13455 * cus-edit.el (outlines):
13456 * textmodes/text-mode.el (text-mode-hook):
13457 * textmodes/table.el (table):
13458 * textmodes/picture.el (picture):
13459 * outline.el (outlines): Put in wp group.
13460
13461 * nxml/nxml-mode.el (nxml): Remove from wp group.
13462
13463 * net/tramp-imap.el (tramp-imap): Put in tramp group.
13464
13465 * mail/metamail.el (metamail): Remove from hypermedia group.
13466
13467 * cus-edit.el (abbrev):
13468 * whitespace.el (whitespace):
13469 * vcursor.el (vcursor):
13470 * reveal.el (reveal):
13471 * hl-line.el (hl-line): Put in convenience group.
13472
13473 * epg-config.el (epg): Put in data group.
13474
13475 * emulation/pc-select.el (pc-select): Put in emulations group.
13476
13477 * calculator.el (calculator): Put in applications group.
13478
13479 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
13480
13481 Add .dir-locals.el support for file-less buffers.
13482 * files.el (hack-local-variables): Split out code to apply local
13483 variable settings ...
13484 (hack-local-variables-apply): ... here. New function.
13485 (hack-dir-local-variables): Use the default directory for when the
13486 buffer does not have an associated file.
13487 (hack-dir-local-variables-non-file-buffer): New function.
13488 * diff-mode.el (diff-mode):
13489 * vc-annotate.el (vc-annotate-mode):
13490 * vc-dir.el (vc-dir-mode):
13491 * log-edit.el (log-edit-mode):
13492 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
13493
13494 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
13495
13496 Add support for shelving snapshots and for showing shelves.
13497 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
13498 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
13499 New functions.
13500 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
13501 (vc-bzr-extra-menu-map): Map them.
13502
13503 2010-03-11 Glenn Morris <rgm@gnu.org>
13504
13505 * cus-edit.el (customize-changed-options-previous-release):
13506 Bump to 23.1.
13507
13508 * image.el (image-animate-max-time): Fix :version tag.
13509
13510 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
13511
13512 * Branch for 23.2.
13513
13514 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
13515
13516 * vc-git.el (vc-git-revision-table): Include remote branches.
13517
13518 2010-03-10 Kim F. Storm <storm@cua.dk>
13519
13520 Animated image API.
13521 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
13522
13523 * image.el (image-animate-max-time): New defcustom.
13524 (image-animated-types): New defconst.
13525 (create-animated-image, image-animate-timer)
13526 (image-animate-start, image-animate-stop, image-animate-timeout)
13527 (image-animated-p): New functions.
13528
13529 * image-mode.el (image-toggle-display-image):
13530 Replace `create-image' with `create-animated-image'.
13531
13532 2010-03-09 Miles Bader <miles@gnu.org>
13533
13534 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
13535 instead of "format:"; this ensures that the output is
13536 newline-terminated.
13537
13538 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
13539
13540 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
13541 that all errors are caught, and that the return value is always a
13542 list (Bug#5692).
13543
13544 2010-03-08 Kenichi Handa <handa@m17n.org>
13545
13546 * language/misc-lang.el (windows-1256): New coding system.
13547 (cp1256): New alias of windows-1256 (bug#5690).
13548
13549 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
13550
13551 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
13552 call to rfc822-bad-address. (Bug#5692)
13553
13554 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
13555
13556 * vc-git.el (vc-git-annotate-extract-revision-at-line):
13557 Use vc-git-root as default directory for revision path (Bug#5657).
13558
13559 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
13560
13561 * calculator.el (calculator): Don't bind split-window-keep-point
13562 (Bug#5674).
13563
13564 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
13565
13566 * vc-git.el: Re-flow to fit into 80 columns.
13567 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
13568 Remove spurious `quote' element in each case alternative.
13569 (vc-git-show-log-entry): Use prog1.
13570 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
13571
13572 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
13573
13574 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
13575
13576 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
13577
13578 * macros.el (insert-kbd-macro): Look up keyboard macro using the
13579 definition, not the name (Bug#5481).
13580
13581 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
13582
13583 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
13584 argument with a local variable. (Bug#5670)
13585
13586 2010-03-02 Juri Linkov <juri@jurta.org>
13587
13588 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
13589
13590 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
13591
13592 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
13593 error when FILENAME and NEWNAME are existing remote directories.
13594
13595 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
13596 parameter DIR-FLAG.
13597
13598 2010-03-02 Glenn Morris <rgm@gnu.org>
13599
13600 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
13601 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
13602
13603 2010-03-01 Kenichi Handa <handa@m17n.org>
13604
13605 * language/burmese.el (burmese-composable-pattern): Rename from
13606 myanmar-composable-pattern.
13607
13608 * international/characters.el (script-list):
13609 * international/fontset.el (script-representative-chars):
13610 Change myanmar to burmese.
13611 (otf-script-alist): Likewise.
13612 (setup-default-fontset): Likewise. Re-fix :otf spec.
13613
13614 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
13615
13616 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
13617
13618 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
13619
13620 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
13621
13622 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
13623
13624 * net/tramp.el (tramp-handle-write-region): START can be a string.
13625 Take care in the checks. Reported by Dan Davison
13626 <davison@stats.ox.ac.uk>.
13627
13628 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
13629
13630 * net/dbus.el (dbus-introspect, dbus-get-property)
13631 (dbus-set-property, dbus-get-all-properties):
13632 Use `dbus-call-method' when noninteractive. (Bug#5645)
13633
13634 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
13635
13636 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
13637 * emacs-lisp/elint.el (elint-add-required-env):
13638 * calendar/icalendar.el (icalendar--add-diary-entry):
13639 * calc/calcalg2.el (math-tracing-integral):
13640 * files.el (recover-session-finish): Use with-current-buffer
13641 instead of save-excursion.
13642
13643 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
13644
13645 Fix in-buffer completion when after-change-functions modify the buffer.
13646 * minibuffer.el (completion--replace): New function.
13647 (completion--do-completion): Use it and use relative movement.
13648
13649 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
13650
13651 * international/fontset.el (setup-default-fontset): Fix :otf spec.
13652
13653 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
13654
13655 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
13656 Allow the characters _<> in the stack entry (Bug#5653).
13657
13658 2010-02-26 Kenichi Handa <handa@m17n.org>
13659
13660 * language/burmese.el: Fix entries in composition-function-table.
13661 (myanmar-composable-pattern): New variable.
13662
13663 * international/fontset.el (setup-default-fontset): Add an entry
13664 for myanmar.
13665
13666 * international/characters.el (script-list): Add Myanmar
13667 Extended-A.
13668
13669 2010-02-26 Glenn Morris <rgm@gnu.org>
13670
13671 * custom.el (custom-initialize-delay): Doc fix.
13672
13673 * mail/sendmail.el (send-mail-function): Autoload the call
13674 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
13675
13676 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
13677
13678 * files.el (hack-local-variables-filter): For eval forms, also
13679 check safe-local-variable-p (Bug#5636).
13680
13681 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
13682
13683 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
13684 setting the modes by `ignore-errors'. It might fail, for example
13685 if the file is not owned by the user but the group.
13686 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
13687
13688 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
13689
13690 * files.el (directory-listing-before-filename-regexp):
13691 Use stricter matching for iso-style dates, to avoid false matches with
13692 date-like filenames (Bug#5597).
13693
13694 * htmlfontify.el (htmlfontify): Doc fix.
13695
13696 * eshell/eshell.el (eshell): Doc fix.
13697
13698 * startup.el (fancy-about-screen): In mode-line, apply
13699 mode-line-buffer-id face only to the buffer name (Bug#5613).
13700
13701 2010-02-20 Kevin Ryde <user42@zip.com.au>
13702
13703 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13704 In `watcom' anchor regexp to start of line, to avoid slowness
13705 (Bug#5599).
13706
13707 2010-02-20 Eli Zaretskii <eliz@gnu.org>
13708
13709 * subr.el (remove-yank-excluded-properties): Explain in a comment
13710 why `category' property is removed.
13711
13712 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
13713
13714 * isearch.el (isearch-update-post-hook, isearch-update):
13715 Revert 2010-02-17 change.
13716
13717 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
13718
13719 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
13720 (icalendar--convert-weekly-to-ical)
13721 (icalendar--convert-yearly-to-ical)
13722 (icalendar--convert-block-to-ical)
13723 (icalendar--convert-cyclic-to-ical)
13724 (icalendar--convert-anniversary-to-ical): Take care of time
13725 specifications where hour has 1-digit only (Bug#5549).
13726
13727 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
13728
13729 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
13730 of disassemble output in GDB 7.1.
13731
13732 2010-02-19 Glenn Morris <rgm@gnu.org>
13733
13734 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
13735 property. (Bug#5593)
13736
13737 2010-02-18 Sam Steingold <sds@gnu.org>
13738
13739 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
13740
13741 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
13742
13743 Use abbreviated file names in bookmarks (bug#5591).
13744 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
13745 calls to expand-file-name.
13746 (bookmark-relocate): Use abbreviated file names in bookmarks.
13747 (bookmark-load): Use abbreviated file names in messages.
13748
13749 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
13750
13751 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
13752 expand "." and "..". Reported by Thierry Volpiatto
13753 <thierry.volpiatto@gmail.com>.
13754
13755 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
13756
13757 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
13758 permissions of the temporary file to "0600". In case the remote
13759 file has no read permissions for the owner, there might be
13760 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
13761
13762 22010-02-18 Glenn Morris <rgm@gnu.org>
13763
13764 * emacs-lisp/authors.el (authors-renamed-files-alist):
13765 Add entries for INSTALL.CVS.
13766
13767 2010-02-17 Mark A. Hershberger <mah@everybody.org>
13768
13769 * vc-bzr.el: Fix typo in Known Bugs section.
13770
13771 * isearch.el (isearch-update-post-hook): New hook.
13772 (isearch-update): Use the new hook.
13773
13774 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
13775
13776 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
13777 Fix errors in copying directories.
13778 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
13779 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
13780 (tramp-handle-delete-file)
13781 (tramp-handle-dired-recursive-delete-directory)
13782 (tramp-handle-write-region): Flush also the cache for the upper
13783 directory.
13784
13785 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
13786
13787 * simple.el (save-interprogram-paste-before-kill): Doc fix.
13788
13789 * cus-edit.el (hardware): Doc fix.
13790
13791 * man.el (man): Add to external custom group.
13792
13793 * delim-col.el (columns): Move to wp custom group.
13794
13795 * doc-view.el (doc-view): Add to data custom group.
13796
13797 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
13798
13799 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
13800 by ispell-parse-output (Bug#5575).
13801
13802 2010-02-16 Kenichi Handa <handa@m17n.org>
13803
13804 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
13805 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
13806 (skkdic-convert): Use `euc-japan' coding system for writing.
13807
13808 2010-02-16 Glenn Morris <rgm@gnu.org>
13809
13810 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
13811 tex-main-file before using it. (Bug#5562)
13812
13813 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
13814
13815 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
13816 warnings, since it is annoying for the user to see them each time he
13817 runs the code.
13818
13819 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
13820
13821 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
13822 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
13823 instead of PROC for caching "first-password-request". Otherwise,
13824 new processes would not profit from passwords already entered.
13825
13826 * net/tramp-cache.el (tramp-dump-connection-properties):
13827 Don't save "first-password-request" property.
13828
13829 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
13830
13831 * outline.el (outline-head-from-level):
13832 * simple.el (with-wrapper-hook):
13833 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
13834 (elint-defun, elint-buffer-env, elint-top-form-logged)
13835 (elint-unbound-variable):
13836 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
13837 Fix typos in docstrings.
13838
13839 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
13840
13841 * files.el (insert-directory): When WILDCARD-REGEXP and
13842 FULL-DIRECTORY-P are nil, insert the file entry instead of the
13843 whole directory. (Bug#5551)
13844
13845 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
13846 dired's alignment sanity. (Bug#5516)
13847
13848 2010-02-14 Juri Linkov <juri@jurta.org>
13849
13850 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
13851 Remove remaining ^H with their preceding chars. (Bug#5566)
13852
13853 2010-02-13 Glenn Morris <rgm@gnu.org>
13854
13855 * simple.el (transpose-subr): Give it a doc-string.
13856
13857 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
13858 Doc fixes.
13859
13860 2010-02-12 Juri Linkov <juri@jurta.org>
13861
13862 * arc-mode.el (archive-unique-fname): Make directories for nested
13863 archives. (Bug#5540)
13864
13865 2010-02-12 Juri Linkov <juri@jurta.org>
13866
13867 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
13868
13869 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
13870
13871 * subr.el (copy-overlay): Handle deleted overlays.
13872
13873 * man.el (Man-completion-table): Don't signal an error if we can't run
13874 manual-program (bug#4056).
13875
13876 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
13877
13878 * textmodes/artist.el (artist-mt): Fix typos in docstring.
13879
13880 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13881
13882 * info.el (Info-bookmark-jump): Simplify.
13883
13884 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
13885 (bookmark-default-handler): Accept new bookmark field `buffer'.
13886
13887 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
13888
13889 * iswitchb.el (iswitchb-completions): Revert last change.
13890
13891 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
13892
13893 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
13894 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
13895 This prevents file names like "~/" being listed literally.
13896
13897 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
13898
13899 * term/xterm.el (xterm-maybe-set-dark-background-mode):
13900 Remove dead code. (Bug#5546)
13901
13902 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
13903
13904 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
13905 correctly (Bug#5548).
13906
13907 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
13908
13909 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
13910 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
13911
13912 2010-02-08 Kenichi Handa <handa@m17n.org>
13913
13914 * international/mule-util.el (with-coding-priority): Add autoload
13915 cookie for putting `lisp-indent-function'.
13916
13917 2010-02-07 Glenn Morris <rgm@gnu.org>
13918
13919 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
13920 Move F2003 named interfaces from keywords-2 to keywords-1, and
13921 use function-name-face rather than constant-face.
13922 Simplify "abstract interface" regexp.
13923
13924 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
13925
13926 * eshell/esh-util.el (eshell-file-attributes): New optional arg
13927 ID-FORMAT. Pass it to `file-attributes'.
13928
13929 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
13930
13931 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
13932
13933 * faces.el (set-face-attribute): Allow calling
13934 internal-set-lisp-face-attribute with 'unspecified family and
13935 foundry argument (Bug#5536).
13936
13937 2010-02-07 Glenn Morris <rgm@gnu.org>
13938
13939 * progmodes/f90.el (f90-font-lock-keywords-2)
13940 (f90-looking-at-type-like, f90-looking-at-program-block-end):
13941 Handle F2003 named interfaces.
13942
13943 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
13944
13945 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
13946 beg and end before calling c-get-state-before-change-functions.
13947
13948 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
13949
13950 * vc-bzr.el (vc-bzr-dir-extra-headers):
13951 Disable the pending merges header.
13952
13953 2010-02-05 Juri Linkov <juri@jurta.org>
13954
13955 * doc-view.el (doc-view-mode):
13956 * image-mode.el (image-mode): Put property mode-class=special.
13957 (Bug#4896)
13958
13959 2010-02-05 Mark A. Hershberger <mah@everybody.org>
13960
13961 * vc-svn.el (vc-svn-revision-table): New function.
13962
13963 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
13964
13965 * net/ange-ftp.el (ange-ftp-insert-directory):
13966 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
13967 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
13968 Handle also directories. (Bug#5478)
13969
13970 2010-02-05 Glenn Morris <rgm@gnu.org>
13971
13972 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
13973
13974 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
13975
13976 * startup.el (command-line-1): Convert options beginning with a
13977 single dash as well (Bug#5519).
13978
13979 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
13980
13981 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
13982 * minibuffer.el (completion-initials-expand): Only check the presence
13983 of delims *within* the boundaries, since otherwise the / delim is
13984 always found for files.
13985
13986 Fix up various corner case problems.
13987 * doc-view.el (doc-view-last-page-number): New function.
13988 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
13989 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
13990 (doc-view-kill-proc): Avoid inf-loop in freak cases.
13991 (doc-view-reconvert-doc): Use the new recursive delete-directory.
13992 (doc-view-convert-current-doc): Don't create the resolution.el file
13993 here any more.
13994 (doc-view-pdf/ps->png): Do it here instead.
13995 (doc-view-already-converted-p): Check that resolution.el is present.
13996 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
13997 windows that are not yet showing images.
13998
13999 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
14000
14001 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
14002 `dired-uncache' for every elemnt which is an absolute file name.
14003
14004 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
14005 directory, handle its directory component.
14006 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
14007 function is called permanently and creates noise, otherwise.
14008
14009 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
14010 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
14011 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
14012
14013 2010-02-04 David Burger <dburger@google.com> (tiny change)
14014
14015 * macros.el (apply-macro-to-region-lines):
14016 Minor simplification. (Bug#5485)
14017
14018 2010-02-04 Glenn Morris <rgm@gnu.org>
14019
14020 * mail/rmail.el (rmail-show-message-1): Handle malformed
14021 quoted-printable text. (Bug#5441)
14022
14023 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
14024
14025 * simple.el (visual-line-mode): Capitalize lighter.
14026
14027 2010-02-03 John Wiegley <jwiegley@gmail.com>
14028
14029 * iswitchb.el (iswitchb-completions): Add bookmark files to the
14030 list of files considered for "virtual buffer" completions.
14031
14032 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
14033
14034 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
14035 also in case of (and (not full) (not wildcard)). This is needed
14036 when dired is called with a list of files, which are not in
14037 `default-directory'. (Bug#5478)
14038
14039 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
14040
14041 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
14042
14043 2010-02-02 Juri Linkov <juri@jurta.org>
14044
14045 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
14046 from unidiff to allow function-line after @@.
14047
14048 2010-02-02 Juri Linkov <juri@jurta.org>
14049
14050 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
14051 '(RCS SCCS) with inverted condition.
14052
14053 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
14054
14055 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
14056 messages.
14057
14058 2010-02-01 Juri Linkov <juri@jurta.org>
14059
14060 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
14061 compare with "pkunzip" and "pkzip" instead of only "pkzip".
14062 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
14063 only when (car archive-zip-extract) is "unzip". (Bug#5475)
14064
14065 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
14066
14067 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
14068 (doc-view-revert-buffer): New command.
14069 (doc-view-mode-map): Use it.
14070
14071 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
14072
14073 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
14074 pending merge is detected.
14075
14076 2010-01-31 Juri Linkov <juri@jurta.org>
14077
14078 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
14079 beginning of interactive spec like all other grep commands do.
14080 Put "all" in front of "gz". (Bug#5260)
14081
14082 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
14083
14084 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
14085
14086 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
14087
14088 * dirtrack.el (dirtrack): Warn instead of signalling error if the
14089 regexp is incorrect (Bug#5476).
14090
14091 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
14092
14093 * net/tramp.el (tramp-handle-insert-directory): Handle also
14094 symlinks, when FILENAME is not in `default-directory'.
14095
14096 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
14097
14098 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
14099 FILE is not in `default-directory'. (Bug#5478)
14100
14101 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
14102 of SWITCHES. Handle the case, FILENAME is not in
14103 `default-directory'. (Bug#5478)
14104 (tramp-register-file-name-handlers): Add safe-magic property.
14105
14106 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
14107
14108 * arc-mode.el (archive-zip-extract): Quote the argument passed to
14109 unzip (Bug#5475).
14110
14111 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
14112
14113 * progmodes/flymake.el (flymake-allowed-file-name-masks)
14114 (flymake-master-make-header-init): Add other C++ filename masks.
14115 (flymake-find-possible-master-files)
14116 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
14117
14118 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
14119
14120 Fix some busybox annoyances.
14121
14122 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
14123 not responding." string.
14124 (tramp-open-connection-setup-interactive-shell): Dump stty
14125 settings. Enable "neveropen" arg for all `tramp-send-command'
14126 calls. Handle "=" in variable values properly.
14127 (tramp-find-inline-encoding): Raise an error, when no encoding is
14128 found.
14129 (tramp-wait-for-output): Check, whether PROC buffer is available.
14130 Remove spurious " ^H" sequences, sent by busybox.
14131 (tramp-get-ls-command): Suppress coloring, if possible.
14132
14133 2010-01-28 Glenn Morris <rgm@gnu.org>
14134
14135 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
14136
14137 * log-edit.el (log-edit-strip-single-file-name): Add missing
14138 :safe, :group, and :version tags.
14139
14140 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
14141
14142 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
14143 buffers. (Bug#5477)
14144
14145 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
14146
14147 * files.el (delete-directory): Handle moving to trash without
14148 first doing recursion (Bug#5436).
14149
14150 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
14151
14152 * vc-hooks.el (vc-path): Mark as obsolete.
14153
14154 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
14155
14156 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
14157 names too.
14158
14159 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
14160 for the short log.
14161 (vc-bzr-log-view-mode): Adjust regexp for the above change.
14162
14163 2010-01-25 Mark A. Hershberger <mah@everybody.org>
14164
14165 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
14166
14167 * vc-bzr.el (vc-bzr-revision-table): New function.
14168
14169 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com>
14170
14171 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
14172 diff-index command. This requires at least git-1.5.5. (Bug#1589).
14173
14174 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
14175
14176 Remove support for adding --signoff on commit.
14177 Future support will use an incompatible generic mechanism.
14178 * vc-git.el (vc-git-add-signoff): Remove variable.
14179 (vc-git-toggle-signoff): Remove function.
14180 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
14181
14182 * term/xterm.el (xterm-maybe-set-dark-background-mode):
14183 Rename from xterm-set-background-mode. Return t if the background mode
14184 was set.
14185 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
14186 earlier, call it again in case the background mode has changed.
14187
14188 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
14189
14190 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
14191 (Bug#3541).
14192
14193 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
14194
14195 * emacs-lisp/assoc.el (aelement): Doc fix.
14196 (aput, adelete, amake): Use lexical-let (Bug#5450).
14197
14198 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
14199
14200 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
14201 is the same as subprogram call, not declaration. (Bug#5435).
14202
14203 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
14204
14205 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
14206 (tramp-smb-maybe-open-connection): Use it.
14207
14208 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
14209
14210 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
14211
14212 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
14213
14214 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
14215 just because we see "encoding: 8bit".
14216 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
14217
14218 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
14219
14220 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
14221
14222 2010-01-22 Eli Zaretskii <eliz@gnu.org>
14223
14224 * jka-compr.el (jka-compr-load): If load-file is not in
14225 load-history, try its file-truename version. (bug#5447)
14226
14227 2010-01-21 Alan Mackenzie <acm@muc.de>
14228
14229 Fix a situation where deletion of a cpp construct throws an error.
14230 * progmodes/cc-engine.el (c-invalidate-state-cache):
14231 Before invoking c-with-all-but-one-cpps-commented-out, check that the
14232 special cpp construct is still in the buffer.
14233 (c-parse-state): Record the special cpp with markers, not numbers.
14234
14235 2010-01-21 Kenichi Handa <handa@m17n.org>
14236
14237 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
14238 process last-command-event, as it is now decoded first (Bug#5380).
14239
14240 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
14241
14242 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
14243
14244 2010-01-20 Glenn Morris <rgm@gnu.org>
14245
14246 * indent.el (tab-always-indent): Fix custom-type.
14247
14248 2010-01-19 Alan Mackenzie <acm@muc.de>
14249
14250 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
14251 buffer throws "args out of range".
14252 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
14253 playing the role of delimiter.
14254
14255 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
14256
14257 * progmodes/ada-mode.el: Fix bug#5400.
14258 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
14259 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
14260 changed. Delete RECURSIVE parameter; never used. Improve doc string.
14261 Improve comments in "is" portion. Handle null procedure declaration.
14262 (ada-move-to-end): Improve doc string.
14263
14264 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
14265
14266 * ido.el (ido-cur-list): Initialize to nil.
14267 Remove obsolete information from commentary.
14268 (ido-choice-list): Initialize to nil.
14269 (ido-get-bufname): Reject minibuffers.
14270 (ido-make-buffer-list): If "default" is a nonexistent
14271 buffer, ignore it, as per the function's comment.
14272 (ido-kill-buffer-internal): New function.
14273 (ido-kill-buffer-at-head): Use it.
14274 (ido-visit-buffer): Likewise.
14275
14276 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
14277
14278 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
14279
14280 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
14281
14282 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
14283 Fix typos in chart titles.
14284
14285 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
14286 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
14287 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
14288 (describe-class, eieio-describe-generic, describe-generic):
14289 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
14290 (eieio-speedbar-expand):
14291 * emulation/viper-cmd.el (viper-exec-form-in-vi)
14292 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
14293 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
14294 (viper-del-backward-char-in-replace, viper-backward-indent)
14295 (viper-brac-function, viper-register-to-point, viper-submit-report):
14296 * net/tramp.el (tramp-remote-coding-commands):
14297 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
14298 Fix typos in docstrings.
14299
14300 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
14301
14302 * mail/sendmail.el (mail-yank-original): Set the mark if the
14303 specified function for yanking does not do it.
14304
14305 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
14306
14307 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
14308
14309 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
14310 resyncing a directory.
14311
14312 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
14313
14314 * progmodes/ada-mode.el: Fix bug#1920.
14315 (ada-ident-re): Delete ., allow multibyte characters.
14316 (ada-goto-label-re): New; matches goto labels.
14317 (ada-block-label-re): New; matches block labels.
14318 (ada-label-re): New; matches both.
14319 (ada-named-block-re): Delete; callers changed to use
14320 `ada-block-label-re' instead.
14321 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
14322 Use `ada-block-label-re'.
14323 (ada-indent-on-previous-lines): Improve handling of goto labels.
14324 (ada-get-indent-block-start): Special-case block label.
14325 (ada-get-indent-label): Split into `ada-indent-block-label' and
14326 `ada-indent-goto-label'.
14327 (ada-goto-stmt-start, ada-goto-next-non-ws):
14328 Optionally ignore goto labels.
14329 (ada-goto-next-word): Simplify.
14330 (ada-indent-newline-indent-conditional): Insert newline before
14331 trying to fix indentation; doc fix.
14332
14333 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
14334
14335 * calc/calc.el (calc-command-flags): Give it an initial value.
14336
14337 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
14338
14339 * files.el (minibuffer-with-setup-hook):
14340 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
14341 (artist-key-draw-continously, artist-key-do-continously-continously)
14342 (artist-key-set-point-continously, artist-mouse-draw-continously):
14343 Fix typos in docstrings.
14344
14345 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
14346
14347 * nxml/nxml-mode.el (nxml-extend-after-change-region):
14348 Never return t (Bug#3898).
14349
14350 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
14351
14352 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
14353 can parse the output of the external commands (Bug#5279).
14354
14355 2010-01-16 Jari Aalto <jari.aalto@cante.net>
14356
14357 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
14358
14359 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
14360
14361 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
14362
14363 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
14364
14365 * startup.el (command-line): Remove unused --icon-type arg.
14366 Handle --display arg, passing it to command-line-1 (Bug#5392).
14367
14368 2010-01-16 Mario Lang <mlang@delysid.org>
14369
14370 * emacs-lisp/chart.el (chart-translate-namezone):
14371 * textmodes/artist.el (artist-compute-popup-menu-table):
14372 Remove duplicated words in doc-strings.
14373
14374 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
14375
14376 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
14377 to mairix-search to suppress threading (Bug#5342).
14378
14379 2010-01-15 Kenichi Handa <handa@m17n.org>
14380
14381 * international/mule-cmds.el (canonicalize-coding-system-name):
14382 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
14383
14384 2010-01-15 Glenn Morris <rgm@gnu.org>
14385
14386 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
14387
14388 * wid-edit.el (widget-keymap): Doc fix.
14389
14390 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
14391 former seems to be more widely accepted by various svn versions.
14392
14393 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
14394
14395 * find-cmd.el (find-constituents):
14396 * vc-arch.el (vc-arch-root):
14397 * window.el (window-body-height, pop-up-frames):
14398 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
14399 * progmodes/ada-stmt.el (ada-if):
14400 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
14401 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
14402 (ispell-encoding8-command, ispell-aspell-supports-utf8)
14403 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
14404
14405 * progmodes/flymake.el (flymake-post-syntax-check):
14406 Fix typo in error message.
14407
14408 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
14409
14410 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
14411 which is always a string. (Bug#5313)
14412
14413 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
14414
14415 * progmodes/ada-xref.el (ada-default-prj-properties):
14416 Simplify previous change.
14417
14418 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14419
14420 * progmodes/ada-xref.el (ada-default-prj-properties):
14421 Default ada_project_path to $ADA_PROJECT_PATH.
14422
14423 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14424
14425 * progmodes/ada-mode.el (ada-create-keymap):
14426 Override `narrow-to-defun' with `ada-narrow-to-defun'.
14427
14428 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14429
14430 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
14431 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
14432 (ada-get-current-indent, ada-imenu-generic-expression)
14433 (ada-which-function): Check for it.
14434
14435 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14436
14437 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
14438 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
14439
14440 2010-01-14 Glenn Morris <rgm@gnu.org>
14441
14442 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
14443
14444 2010-01-14 Kenichi Handa <handa@m17n.org>
14445
14446 * composite.el (auto-composition-mode): Make it a buffer local
14447 variable (permanent-local).
14448 (auto-composition-function): Set the default value to
14449 auto-compose-chars.
14450 (auto-composition-mode): Make it a simple function, not a minor mode.
14451 (global-auto-composition-mode): Likewise.
14452 (turn-on-auto-composition-if-enabled): Delete it.
14453
14454 2010-01-13 Karl Fogel <kfogel@red-bean.com>
14455
14456 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
14457
14458 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
14459
14460 * files.el (copy-directory): Compute target for recursive
14461 directories with identical names. (Bug#5343)
14462
14463 2010-01-12 Glenn Morris <rgm@gnu.org>
14464
14465 * mail/emacsbug.el (report-emacs-bug-pretest-address):
14466 Set it to bug-gnu-emacs rather than emacs-pretest-bug.
14467
14468 2010-01-11 Sam Steingold <sds@gnu.org>
14469
14470 * imenu.el (imenu-default-create-index-function): Detect infinite
14471 loops caused by imenu-prev-index-position-function.
14472
14473 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
14474
14475 * htmlfontify.el (htmlfontify-load-rgb-file)
14476 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
14477 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
14478 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
14479 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
14480 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
14481 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
14482 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
14483 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
14484 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
14485 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
14486 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
14487 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
14488 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
14489 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
14490 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
14491 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
14492 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
14493 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
14494 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
14495 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
14496 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
14497 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
14498 backslash-quoting from parentheses, etc.
14499
14500 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
14501
14502 * progmodes/js.el: Autoload javascript-mode alias.
14503
14504 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
14505
14506 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
14507 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
14508 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
14509 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
14510 Fix typos in docstrings.
14511 (ffap-url-regexp): Doc fix.
14512 (ffap-at-mouse): Fix typo in message.
14513
14514 2010-01-11 Glenn Morris <rgm@gnu.org>
14515
14516 * version.el (emacs-copyright): Set copyright year to 2010.
14517
14518 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
14519
14520 * format.el (format-annotate-function): Only set
14521 write-region-post-annotation-function after running to-fn so as not to
14522 affect nested write-region calls (bug#5273).
14523
14524 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
14525
14526 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
14527 wisent/python.el.
14528
14529 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
14530
14531 * man.el (Man-goto-section): Signal error if the section is not
14532 found (Bug#5317).
14533
14534 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
14535
14536 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
14537 URLs with a leading triple slash in the file: scheme. (Bug#5345)
14538
14539 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
14540
14541 * progmodes/compile.el: Don't treat compile-command as safe if
14542 compilation-read-command might be nil (Bug#4218).
14543
14544 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
14545
14546 * startup.el (command-line-1): Use orig-argi to check for ignored X and
14547 NS options.
14548
14549 2010-01-08 Kenichi Handa <handa@m17n.org>
14550
14551 * international/fontset.el (build-default-fontset-data):
14552 Exclude characters in scripts kana, hangul, han, or cjk-misc.
14553
14554 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
14555
14556 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
14557 to `create-file-buffer' as it expects, not just a buffer name.
14558 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
14559 to help uniquify. (Bug#3224)
14560
14561 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
14562
14563 * font-setting.el (font-setting-change-default-font): Use user-spec
14564 instead of name.
14565
14566 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
14567
14568 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
14569
14570 2010-01-05 Tom Tromey <tromey@redhat.com>
14571
14572 * progmodes/python.el (python-font-lock-keywords):
14573 Handle qualified decorators (Bug#881).
14574
14575 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
14576
14577 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
14578 in a lightweight checkout.
14579
14580 2010-01-05 Kenichi Handa <handa@m17n.org>
14581
14582 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
14583
14584 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
14585
14586 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
14587
14588 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
14589
14590 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
14591 checkouts. (Bug#618)
14592 (vc-bzr-log-view-mode): Also highlight the author.
14593 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
14594 (vc-bzr-shelve-menu-map):
14595 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
14596 (vc-bzr-shelve-apply): Make prompt more explicit.
14597
14598 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
14599
14600 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
14601 They are valid characters in URL paths (rfc3986), and at least
14602 Firefox does not understand the encoded version (Bug#3166).
14603
14604 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
14605
14606 * progmodes/octave-mod.el (octave-end-keywords)
14607 (octave-block-begin-or-end-regexp, octave-block-match-alist):
14608 Add "end" keyword (Bug#3061).
14609 (octave-end-as-array-index-p): New function.
14610 (calculate-octave-indent): Use it.
14611
14612 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14613
14614 * bookmark.el: Consistently put the text property on the bookmark name.
14615 (bookmark-bmenu-marks-width): Bump back to 2, to include
14616 annotation marks.
14617 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
14618 property on the bookmark name, instead of not putting it at all.
14619 (bookmark-bmenu-list): Fix where we put the text property.
14620
14621 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14622
14623 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
14624 for showing buffer modified state (as added in the previous change).
14625
14626 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14627
14628 * bookmark.el: Show modified state of bookmark buffer more accurately.
14629 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
14630 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
14631 (with-buffer-modified-unmodified): New macro.
14632 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
14633 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
14634 Use new macro to preserve the buffer modified state.
14635
14636 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14637
14638 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
14639 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
14640 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
14641 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
14642 (bookmark-bmenu-rename, bookmark-bmenu-locate)
14643 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
14644 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
14645
14646 2010-01-02 Eli Zaretskii <eliz@gnu.org>
14647
14648 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
14649 Make the lines in the generated doc string shorter. (Bug#4668)
14650
14651 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
14652
14653 * net/rcirc.el: Add follow-link binding (Bug#4738).
14654
14655 2010-01-02 Eli Zaretskii <eliz@gnu.org>
14656
14657 * Makefile.in (bzr-update): Rename from cvs-update.
14658 (cvs-update): New target for backward compatibility.
14659
14660 * makefile.w32-in (bzr-update): Rename from cvs-update.
14661 (cvs-update): New target for backward compatibility.
14662
14663 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14664
14665 * bookmark.el: Remove gratuitous gratitude.
14666
14667 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14668
14669 * bookmark.el (bookmark-bmenu-any-marks): New function.
14670 (bookmark-bmenu-save): Clear buffer modification if no marks.
14671
14672 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14673
14674 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
14675 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
14676 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
14677 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
14678
14679 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
14680 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
14681 To: emacs-devel {_AT_} gnu.org
14682 Subject: bookmark.el bug report
14683 Date: Mon, 28 Dec 2009 14:19:16 +0800
14684 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
14685
14686 2010-01-02 Karl Fogel <kfogel@red-bean.com>
14687
14688 * bookmark.el: Improvements suggested by Drew Adams:
14689 (bookmark-bmenu-ensure-position): New name for
14690 `bookmark-bmenu-check-position'. Just ensure the position,
14691 don't return any meaningful value.
14692 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
14693 New constants.
14694
14695 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
14696
14697 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
14698 (bookmark-yank-point, bookmark-bmenu-check-position):
14699 Fix typos in docstrings.
14700 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
14701 (bookmark-name-from-full-record, bookmark-get-position)
14702 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
14703 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
14704 Remove useless quoting of parenthesis, etc. in docstrings.
14705
14706 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
14707 (ediff-append-custom-diff): Fix typo in error message.
14708 (ediff-meta-mark-equal-files): Fix typos in messages.
14709
14710 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
14711
14712 * net/imap-hash.el (imap-hash-make): Doc fix.
14713 (imap-hash-test): Fix typo in error message; reflow docstring.
14714 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
14715 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
14716 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
14717 Fix typos in docstrings.
14718 (imap-hash-open-connection): Fix typo in error message.
14719
14720 * play/gomoku.el (gomoku): Fix typos in docstring.
14721
14722 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
14723 (gdb-jsonify-buffer): Fix typos in docstring.
14724 (gdb-goto-breakpoint): Fix typo in error message.
14725 ("Display Other Windows"): Fix typo in help message.
14726 (gdb-speedbar-expand-node): Fix typo in question.
14727
14728 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
14729 (idlwave-html-system-help-location, idlwave-html-help-location)
14730 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
14731 (idlwave-help-browser-generic-args, idlwave-help-directory)
14732 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
14733 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
14734 (idlwave-online-help, idlwave-help-html-link)
14735 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
14736 Fix typos in docstrings.
14737 (idlwave-help-with-source, idlwave-help-find-routine-definition):
14738 Reflow docstrings.
14739 (idlwave-help-assistant-start): Fix typo in error message.
14740
14741 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
14742 (octave-electric-space): Fix typos in docstrings.
14743
14744 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
14745
14746 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
14747
14748 2010-01-01 Juri Linkov <juri@jurta.org>
14749
14750 * comint.el (comint-input-ring-size): Make it a defcustom and
14751 increase the default to 500 (Bug#5148).
14752
14753 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
14754
14755 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
14756 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
14757 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
14758
14759 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
14760
14761 Show working revision correctly for mercurial.
14762 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
14763 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
14764
14765 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
14766
14767 Declare some functions for the byte-compiler.
14768 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
14769 (speedbar-timer-fn, speedbar-change-expand-button-char)
14770 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
14771
14772 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
14773
14774 This changeset reverts GDB Graphical Interface to use annotations.
14775 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
14776
14777 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
14778
14779 Make vc-dir work on subdirectories of the bzr root.
14780 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.
14781 Return file names relative to it.
14782 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
14783 relative directory to vc-bzr-after-dir-status.
14784
14785 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
14786
14787 * font-lock.el (font-lock-refresh-defaults): New function, which
14788 can be used to let font-lock react to external changes in
14789 variables like font-lock-defaults and keywords.
14790 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
14791
14792 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
14793
14794 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
14795
14796 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
14797
14798 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
14799
14800 Supersede color.diff settings in git log (bug#5211).
14801
14802 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
14803 escape chars in its output when the user has color.diff set to `always'.
14804 This fix works on git 1.4.2 and newer (released on 2006-08-13).
14805
14806 2009-12-26 Kevin Ryde <user42@zip.com.au>
14807
14808 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
14809 node. Keep previous "Index" name to work with past coreutils too.
14810
14811 * man.el (man): Revise docstring a bit to show -a and -l as
14812 examples. Add -k description since support for it has otherwise
14813 been a secret. (Further to bug#3717.)
14814 (Man-bgproc-sentinel): When "-k foo" produces no output show error
14815 "no matches" rather than "Can't find manpage", as the latter reads
14816 like -k was interpreted as a page name, which is not so. (Bug#5431)
14817
14818 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
14819
14820 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
14821 switches. Check also for //SUBDIRED// line.
14822
14823 2009-12-25 Kenichi Handa <handa@m17n.org>
14824
14825 * language/indian.el (devanagari-composable-pattern): Fix to
14826 handle ZWNJ and ZWJ. Use it in composition-function-table for
14827 Devanagari.
14828 (malayalam-composable-pattern): Fix previous change.
14829
14830 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14831
14832 * ps-print.el (ps-face-attributes): It was not returning the
14833 attribute face for faces specified as string. Reported by harven
14834 <harven@free.fr>. (Bug#5254)
14835 (ps-print-version): New version 7.3.5.
14836
14837 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
14838
14839 * calendar/icalendar.el (icalendar--convert-tz-offset):
14840 Fix timezone names.
14841 (icalendar--convert-tz-offset): Fix the "last-day-problem".
14842 (icalendar--add-diary-entry): Remove the trailing blank that
14843 diary-make-entry inserts.
14844
14845 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
14846
14847 Make `file-expand-wildcards' work for remote files.
14848
14849 * files.el (file-expand-wildcards): In case of remote files, check
14850 only local file name part for wildcards. Provide feature 'files
14851 and subfeature 'remote-wildcards. (Bug#5198)
14852
14853 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
14854 if there is already an established connection.
14855 (tramp-advice-file-expand-wildcards): Remove it.
14856
14857 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
14858 (tramp-advice-file-expand-wildcards): Move from tramp.el.
14859 Activate advice for older GNU Emacs versions. (Bug#5237)
14860
14861 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
14862
14863 Some doc fixes (more needed).
14864
14865 * find-cmd.el (find-constituents): Reflow docstring.
14866 (find-cmd, find-prune, find-command): Fix typos in docstrings.
14867 (find-generic): Doc fix.
14868
14869 2009-12-17 Juri Linkov <juri@jurta.org>
14870
14871 Fix regression from 23.1 to allow multiple modes in Local Variables.
14872
14873 * files.el (hack-local-variables-filter): While ignoring duplicates,
14874 don't take `mode' into account.
14875 (hack-local-variables-filter, hack-dir-local-variables):
14876 Don't remove duplicate `mode' from local-variables-alist (like `eval').
14877
14878 2009-12-17 Juri Linkov <juri@jurta.org>
14879
14880 Make `dired-diff' safer. (Bug#5225)
14881
14882 * dired-aux.el (dired-diff): Signal an error when `file' equals to
14883 `current' or when `file' is a directory of the `current' file.
14884
14885 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
14886
14887 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
14888 unconditionally preloaded files.
14889
14890 2009-12-16 Juri Linkov <juri@jurta.org>
14891
14892 Revert to old 23.1 logic of using the file at the mark as default.
14893 * dired-aux.el (dired-diff): Use the file at the mark as default
14894 if it's not the same as the current file, and the target dir is
14895 the current dir or the mark is active. Add the current file
14896 as the arg of `dired-dwim-target-defaults'. Use the default file
14897 in the prompt. (Bug#5225)
14898
14899 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
14900
14901 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
14902 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
14903 (tramp-check-for-regexp): Check also, when an echoing shell stops
14904 to echo sent commands.
14905
14906 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
14907
14908 * Makefile.in: Revert last change (Bug#5191).
14909
14910 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
14911
14912 * vc-hg.el (vc-hg-print-log): Fix argument order.
14913 (vc-hg-working-revision): Make sure the command is executed in a
14914 known environment so that we can parse the output. (Bug#4417)
14915
14916 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
14917
14918 * progmodes/python.el (python-symbol-completions): Remove text
14919 properties from symbol string before calling python-send-receive.
14920
14921 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
14922
14923 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
14924 when there are values for both file and line. (Bug#5060)
14925
14926 2009-12-14 Juri Linkov <juri@jurta.org>
14927
14928 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
14929 whitespace after the file name of the first line of unified format,
14930 because git-diff doesn't output whitespace and file modification time
14931 after the file name.
14932
14933 2009-12-14 David Kastrup <dak@gnu.org>
14934
14935 * info.el (Info-hide-cookies-node): Before hiding a cookie,
14936 check if it already has the `display' property added by
14937 `Info-display-images-node', and not put the `invisible' property
14938 in this case.
14939
14940 2009-12-13 Glenn Morris <rgm@gnu.org>
14941
14942 * mail/emacsbug.el (message-sort-headers): Define for compiler.
14943 (report-emacs-bug): In message-mode, sort manually before storing
14944 original report text. (Bug#5178)
14945 Remove superfluous save-excursion.
14946
14947 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
14948
14949 * net/dbus.el (dbus-property-handler): Filter lambda forms out
14950 when responding to "GetAll" properties.
14951
14952 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
14953
14954 * simple.el (compose-mail): Remove mail-setup-with-from from
14955 customization checks.
14956
14957 2009-12-12 Eli Zaretskii <eliz@gnu.org>
14958
14959 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
14960 RAR archives created on Unix systems.
14961
14962 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
14963
14964 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
14965 the varalias that was accidentally removed by the 2009-11-19 change
14966 (bug#5186).
14967
14968 2009-12-12 Kenichi Handa <handa@m17n.org>
14969
14970 * language/indian.el (indian-compose-regexp): New function.
14971 (malayalam-composable-pattern): Fix the pattern.
14972 (composition-function-table): Set malayalam-composable-pattern for
14973 Malayalam characters.
14974
14975 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
14976
14977 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
14978 rather than down-mouse-1, based on follow-link conventions.
14979
14980 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
14981 are compiled.
14982
14983 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
14984
14985 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
14986 (verilog-vmm-statement-re, verilog-ovm-statement-re)
14987 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
14988 (verilog-leap-to-head, verilog-backward-token):
14989 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
14990
14991 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
14992
14993 * progmodes/verilog-mode.el (verilog-auto-lineup)
14994 (verilog-nameable-item-re): Cleanup user-visible spelling and
14995 documentation errors. One reported by Gary Delp.
14996 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
14997 (verilog-read-decls): Fix AUTOWIRE with types declared in a
14998 package, bug195. Reported by Pierre-David Pfister.
14999
15000 2009-12-11 Glenn Morris <rgm@gnu.org>
15001
15002 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
15003
15004 * mail/emacsbug.el: No longer require sendmail.
15005 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
15006 (report-emacs-bug-orig-text): Doc fix.
15007 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
15008 New local variables, to adapt to different mail-user-agents.
15009 (report-emacs-bug): Fix test for a gnu.org address.
15010 Use overlays for emphasis, since font-lock defeats 'face property.
15011 Pretest bugs also end up at the newsgroup these days.
15012 Stop message-mode stripping text properties.
15013 Set and use the new buffer-local variables.
15014 (report-emacs-bug-hook): Add doc-string.
15015 Remove some unnecessary save-excursions and simplify.
15016 Use the appropriate hook and send-command.
15017
15018 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
15019 capitalization of some menu entries.
15020
15021 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15022
15023 * whitespace.el (whitespace-display-char-on):
15024 Ensure `buffer-display-table' is unique when two or more windows are
15025 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
15026 New version 12.1.
15027
15028 2009-12-10 Eli Zaretskii <eliz@gnu.org>
15029
15030 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
15031 characters in the Attribute field.
15032
15033 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
15034
15035 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
15036
15037 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
15038
15039 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
15040 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
15041 Disregard autoload-excludes.
15042 (update-directory-autoloads): Obey autoload-excludes here instead.
15043 But don't store its contents in no-autoloads and remove entries that
15044 refer to excludes files.
15045
15046 2009-12-10 Glenn Morris <rgm@gnu.org>
15047
15048 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
15049 (expand-mail-aliases): Define for compiler.
15050
15051 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
15052 Define for compiler.
15053
15054 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
15055 appropriate for the mail-user-agent in use.
15056
15057 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
15058
15059 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
15060
15061 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
15062
15063 Fix short log parsing and fontification.
15064 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
15065 Fix fontification for the [merge] label.
15066
15067 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
15068
15069 Drop some properties to avoid surprises (bug#5002).
15070 * htmlfontify.el (hfy-ignored-properties): New defcustom.
15071 (hfy-fontify-buffer): Use it.
15072
15073 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
15074
15075 Minor cleanup.
15076 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
15077 Adjust all callers.
15078 (ffap-locate-file): Remove unused arg `dir-ok' and make other
15079 args compulsory. Adjust callers.
15080 (ffap-gopher-at-point): Remove unused var `name'.
15081
15082 Get rid of the ELCFILES abomination.
15083 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
15084 (compile-elcfiles): New phony target.
15085 (compile-main): Compute ELCFILES dynamically.
15086 (compile-clean): New target to remove left-over elc files.
15087 (compile, all): Use it.
15088
15089 2009-12-09 Kenichi Handa <handa@etlken>
15090
15091 * international/mule-diag.el: Require help-mode instead of help-fns.
15092
15093 2009-12-09 Kenichi Handa <handa@m17n.org>
15094
15095 * international/mule-cmds.el (ucs-names): Supply sufficiently
15096 fine ranges instead of pre-calculating accurate ranges.
15097 Iterate with bigger gc-cons-threshold.
15098
15099 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
15100
15101 Add support for stashing a snapshot of the current tree.
15102 * vc-git.el (vc-git-stash-snapshot): New function.
15103 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
15104
15105 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
15106
15107 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
15108 instead of `(beginning|end)-of-line'.
15109
15110 2009-12-08 Glenn Morris <rgm@gnu.org>
15111
15112 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
15113
15114 * Makefile.in (ELCFILES): Regenerate.
15115
15116 2009-12-07 Juri Linkov <juri@jurta.org>
15117
15118 Don't lazy-highlight the comint output in history Isearch mode.
15119
15120 * comint.el (comint-history-isearch-search): Instead of
15121 `comint-line-beginning-position', use `comint-after-pmark-p'
15122 to check if point if before the process mark, and go to
15123 `process-mark' in this case.
15124
15125 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
15126
15127 * textmodes/tex-mode.el (latex-complete)
15128 (latex-indent-or-complete): Remove.
15129 (latex-mode): Set completion-at-point-functions instead.
15130
15131 Provide a standard completion command and hook it into TAB.
15132 * minibuffer.el (completion-at-point-functions): New var.
15133 (completion-at-point): New command.
15134 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
15135 * progmodes/python.el (python-mode-map): Use completion-at-point.
15136 (python-completion-at-point): Rename from python-partial-symbol and
15137 adjust for use in completion-at-point-functions.
15138 (python-mode): Setup completion-at-point for Python completion.
15139 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
15140 extracted from lisp-complete-symbol.
15141 (lisp-complete-symbol): Use it.
15142 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
15143 setup completion-at-point for Elisp completion.
15144 (emacs-lisp-mode-map, lisp-interaction-mode-map):
15145 Use completion-at-point.
15146 * ielm.el (ielm-map): Use completion-at-point.
15147 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
15148 * progmodes/sym-comp.el: Move to...
15149 * obsolete/sym-comp.el: Move from progmodes.
15150
15151 2009-12-07 Eli Zaretskii <eliz@gnu.org>
15152
15153 Prevent save-buffer in Rmail buffers from using the coding-system
15154 of the current message, and from clobbering the encoding mnemonics
15155 in the mode line (Bug#4623).
15156
15157 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
15158 flag, too.
15159 (rmail-message-encoding): New variable.
15160 (rmail-write-region-annotate): Record the encoding of the current
15161 message in rmail-message-encoding.
15162 (rmail-after-save-hook): New function, restores the encoding of
15163 the current message after the message collection is saved.
15164
15165 2009-12-07 Juri Linkov <juri@jurta.org>
15166
15167 * progmodes/grep.el (grep-read-files): Use `completing-read'
15168 instead of `read-string'. Set its `collection' arg to
15169 `read-file-name-internal'. (Bug#4301)
15170
15171 2009-12-07 Juri Linkov <juri@jurta.org>
15172
15173 Correctly restore original Isearch point. (Bug#4994)
15174
15175 * isearch.el (isearch-mode): Move `isearch-push-state' after
15176 `(run-hooks 'isearch-mode-hook)'.
15177 (isearch-cancel): When `isearch-push-state-function' is defined,
15178 let-bind `isearch-cmds' to the first state (the last element of
15179 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
15180 function and restores the original point). Otherwise, move point
15181 to `isearch-opoint'.
15182
15183 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
15184
15185 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
15186 chars that don't have names, so the table can be built much faster at
15187 run-time.
15188
15189 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
15190
15191 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
15192 change. Suggested by David Kastrup.
15193
15194 * simple.el (compose-mail): Check for incompatibilities and warn.
15195 (compose-mail-user-agent-warnings): New option.
15196
15197 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
15198
15199 Support showing a single log entry from vc-annotate.
15200 * vc.el (print-log): Add a new argument: START-REVISION.
15201 (vc-print-log-internal): Add a new optional argument and
15202 pass it to the backend.
15203 (vc-print-log, vc-print-root-log): Adjust callers.
15204 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
15205 buffer already displays the requested log entry, use it.
15206 Otherwise display only the log entry in question.
15207 * vc-svn.el (vc-svn-print-log):
15208 * vc-mtn.el (vc-mtn-print-log):
15209 * vc-hg.el (vc-hg-state):
15210 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
15211 (vc-git-show-log-entry): Return t on success.
15212 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
15213 (vc-bzr-show-log-entry): Return t on success.
15214 * vc-rcs.el (vc-rcs-print-log):
15215 * vc-sccs.el (vc-sccs-print-log):
15216 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
15217
15218 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
15219
15220 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
15221 Add menus to the meta mode. (Bug#5043)
15222
15223 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
15224
15225 * ediff-init.el (ediff-event-key): Use event-to-character instead of
15226 event-key.
15227
15228 * ediff.el (ediff-buffers-internal): Add unwind-protect.
15229
15230 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
15231
15232 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
15233 Berbain <raphael.berbain@gmail.com>.
15234
15235 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
15236 characters.
15237 (tramp-initial-end-of-output): New defconst.
15238 (tramp-methods, tramp-find-shell)
15239 (tramp-open-connection-setup-interactive-shell)
15240 (tramp-maybe-open-connection): Use it.
15241 (tramp-shell-prompt-pattern, tramp-wait-for-output):
15242 Handle existence of `#' and `$'.
15243
15244 * net/tramp-fish.el (tramp-fish-maybe-open-connection):
15245 Use `tramp-initial-end-of-output'.
15246
15247 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
15248
15249 Get the background mode from the terminal for xterm, and set
15250 faces accordingly.
15251 * term/xterm.el (xterm-set-background-mode): New function.
15252 (terminal-init-xterm): Use it in case xterm supports background
15253 color queries. Recompute faces after getting the background
15254 color.
15255
15256 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
15257
15258 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
15259 number comment back on its own line, for easier parsing.
15260
15261 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
15262
15263 Make it work for non-file buffers (bug#5102).
15264 * doc-view.el (doc-view-current-cache-dir):
15265 Use doc-view-buffer-file-name rather than buffer-file-name.
15266 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
15267
15268 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
15269
15270 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
15271 author field is too short.
15272
15273 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
15274
15275 * vc-git.el (vc-git-print-log): Handle a limit argument.
15276 Display the short log in graph form and with labels.
15277 (vc-git-log-view-mode): Handle labels.
15278
15279 Make vc-revert change VC state from 'added to 'unregistered.
15280 * vc-git.el (vc-git-revert): Call git reset first.
15281
15282 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
15283
15284 * net/newst-backend.el, net/newst-plainview.el:
15285 * net/newst-reader.el, net/newst-ticker.el:
15286 * net/newst-treeview.el, net/newsticker.el:
15287 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
15288
15289 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
15290
15291 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
15292
15293 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
15294 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
15295 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
15296 Update annotation regexp.
15297
15298 * simple.el (beginning-of-visual-line): Constrain to field
15299 boundaries (Bug#5106).
15300
15301 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
15302
15303 * xml.el (xml-substitute-numeric-entities):
15304 Move newsticker--decode-numeric-entities in newst-backend.el to
15305 xml-substitute-numeric-entities in xml.el. (Bug#5008)
15306 * net/newst-backend.el (newsticker--parse-generic-feed)
15307 (newsticker--parse-generic-items)
15308 (newsticker--decode-numeric-entities):
15309 Move newsticker--decode-numeric-entities in newst-backend.el to
15310 xml-substitute-numeric-entities in xml.el. (Bug#5008)
15311
15312 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
15313
15314 * progmodes/js.el (js--js-not): Add null to the list of values.
15315
15316 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
15317
15318 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
15319
15320 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15321
15322 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
15323 delimiter if it is at the end of the current line.
15324 (bibtex-generate-url-list): Fix docstring.
15325
15326 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
15327
15328 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
15329 minibuffer's content with itself.
15330 Fold the confirm-after-completion case into the `confirm' case.
15331 (completion-pcm-word-delimiters): Add : and / to the delimiters.
15332
15333 2009-12-06 Kevin Ryde <user42@zip.com.au>
15334
15335 * ffap.el (ffap-rfc-path): Make this a defcustom since
15336 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
15337
15338 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
15339 manuals, similar to existing setup for help-mode. (Bug#3913.)
15340
15341 2009-12-05 Juri Linkov <juri@jurta.org>
15342
15343 Save and restore dired buffer's point positions too. (Bug#4880)
15344
15345 * dired.el (dired-save-positions): Return in the first element
15346 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
15347 Doc fix.
15348 (dired-restore-positions): First restore buffer's position.
15349 While restoring window's positions, check if window still displays
15350 the original buffer.
15351
15352 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
15353
15354 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
15355 if possible.
15356
15357 * shell.el (shell): Require ansi-color (Bug#5113).
15358
15359 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
15360
15361 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
15362
15363 2009-12-05 Alan Mackenzie <acm@muc.de>
15364
15365 * progmodes/cc-mode.el (c-before-hack-hook)
15366 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
15367 `c-file-style' to work again. This reversion restores the current
15368 software to its state in Emacs 23.1. (Bug#4146)
15369
15370 2009-12-05 Kevin Ryde <user42@zip.com.au>
15371
15372 * textmodes/sgml-mode.el (sgml-lexical-context):
15373 Recognise comment-start-skip to comment-end-skip as comment (Bug#4781).
15374
15375 2009-12-05 Juri Linkov <juri@jurta.org>
15376
15377 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
15378 for virtual nodes. (Bug#4147)
15379 (Info-find-node-2): Set `Info-current-node-virtual' to nil
15380 when moving from a virtual node.
15381 (Info-mode-menu): Add `Info-virtual-index' to the menu.
15382 (Info-mode): Add `Info-virtual-index' to the docstring.
15383
15384 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15385
15386 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
15387 track of the buffer position of the end of a BibTeX entry as this
15388 position may change during reformatting.
15389 (bibtex-format-entry): Remove whitespace before processing
15390 numerical fields so that we recognize the latter properly.
15391 (bibtex-reformat): Do not use push which changes the global value
15392 of bibtex-entry-format.
15393 (bibtex-field-braces-alist, bibtex-field-strings-alist)
15394 (bibtex-field-re-init): Replace only space characters by regexp
15395 for whitespace.
15396 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
15397 (bibtex-initialize): Also update bibtex-strings.
15398 (bibtex-kill-field): Preserve white space at end of entry.
15399 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
15400 Update bibtex-reference-keys.
15401
15402 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
15403
15404 * minibuffer.el (completion-pcm--merge-try): Also consider placing
15405 point after a star, if that's the only place where modifications can
15406 make progress.
15407
15408 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
15409
15410 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
15411 in docstrings.
15412
15413 2009-12-04 Juri Linkov <juri@jurta.org>
15414
15415 * proced.el (proced): Call `(proced-update t)' to update process
15416 information instead of only running proced-post-display-hook.
15417 (proced-send-signal): Add a leading space to the buffer name
15418 " *Marked Processes*" to make this buffer ephemeral.
15419
15420 2009-12-04 Juri Linkov <juri@jurta.org>
15421
15422 * dired.el (dired-auto-revert-buffer): New defcustom.
15423 (dired-internal-noselect): Use it.
15424
15425 2009-12-04 Juri Linkov <juri@jurta.org>
15426
15427 Change roles of modes and functions in image-mode.el (Bug#5062).
15428
15429 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
15430 in `auto-mode-alist'.
15431 (image-mode-previous-major-mode): New variable.
15432 (image-minor-mode-map): Rename from `image-mode-text-map'.
15433 (image-mode): Move graceful error-handling code from
15434 `image-minor-mode' to here. On errors call `image-mode-as-text'.
15435 (image-minor-mode): Remove all image-handling code.
15436 Replace `image-mode-text-map' with `image-minor-mode-map'.
15437 Check for `image-type' in mode-line format string.
15438 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
15439 (image-mode-as-text): New function with most code from
15440 `image-mode-maybe'.
15441 (image-toggle-display-text): Move code that removes image
15442 properties from `image-toggle-display' to here.
15443 (image-toggle-display-image): New function with code that adds
15444 image properties copied from `image-toggle-display'.
15445 (image-toggle-display): Remove most code with leaving only code
15446 that toggles between `image-mode-as-text' and `image-mode'.
15447
15448 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
15449
15450 * net/newst-treeview.el
15451 (newsticker--treeview-list-highlight-start): Restored call to
15452 save-excursion: Selected item was stuck.
15453 (newsticker--treeview-list-select): New.
15454 (newsticker--treeview-item-show-text)
15455 (newsticker--treeview-item-show)
15456 (newsticker--treeview-item-update): Use new
15457 newsticker-treeview-item-mode.
15458 (newsticker-treeview-update): Keep current item.
15459 (newsticker-treeview-next-new-or-immortal-item): Doc change.
15460 (newsticker--treeview-first-feed): Doc change.
15461 (newsticker-treeview-list-menu)
15462 (newsticker-treeview-item-menu): Add menu entries.
15463 (newsticker-treeview-item-mode): New.
15464
15465 * net/newst-backend.el (newsticker-customize): Delete other
15466 windows.
15467
15468 2009-12-04 Sam Steingold <sds@gnu.org>
15469
15470 * log-view.el (log-view-mode-map): "q" calls quit-window,
15471 like in all the other non-self-insert buffers.
15472
15473 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
15474
15475 Minor cleanup.
15476 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
15477 key decoding rather than do it manually via last-input-event +
15478 ascii-character.
15479 (term-exec): Use delete-and-extract-region.
15480 (term-handle-ansi-terminal-messages): Remove unused var `end'.
15481 (term-process-pager): Remove unused var `i'.
15482 (term-dynamic-simple-complete): Make obsolete.
15483 (serial-update-config-menu): Remove unused vars `y' and `str'.
15484 (term-update-mode-line): Remove unused var `temp'.
15485
15486 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15487
15488 Limit the number of log entries displayed by default.
15489 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
15490 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
15491 using a prefix argument.
15492
15493 2009-12-03 Glenn Morris <rgm@gnu.org>
15494
15495 * progmodes/idlwave.el (class): Restore still useful declaration.
15496
15497 2009-12-03 Alan Mackenzie <acm@muc.de>
15498
15499 Enhance `c-parse-state' to run efficiently in "brace deserts".
15500
15501 * progmodes/cc-mode.el (c-basic-common-init):
15502 Call c-state-cache-init.
15503 (c-neutralize-syntax-in-and-mark-CPP): Rename from
15504 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
15505 placing `category' properties value 'c-cpp-delimiter at its boundaries.
15506
15507 * progmodes/cc-langs.el (c-before-font-lock-function):
15508 c-extend-and-neutralize-syntax-in-CPP has been renamed
15509 c-neutralize-syntax-in-and-mark-CPP.
15510
15511 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
15512 with `category' properties now, not `syntax-table' ones.
15513
15514 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
15515 enhanced (but slower) version of c-end-of-macro that won't land
15516 inside a literal or on another awkward character.
15517 (c-state-cache-too-far, c-state-cache-start)
15518 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
15519 (c-state-nonlit-pos-cache-limit, c-state-point-min)
15520 (c-state-point-min-lit-type, c-state-point-min-lit-start)
15521 (c-state-min-scan-pos, c-state-brace-pair-desert)
15522 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
15523 buffer local variables.
15524 (c-state-literal-at, c-state-lit-beg)
15525 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
15526 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
15527 (c-state-cache-top-paren, c-state-cache-after-top-paren)
15528 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
15529 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
15530 (c-renarrow-state-cache)
15531 (c-append-lower-brace-pair-to-state-cache)
15532 (c-state-push-any-brace-pair, c-append-to-state-cache)
15533 (c-remove-stale-state-cache)
15534 (c-remove-stale-state-cache-backwards, c-state-cache-init)
15535 (c-invalidate-state-cache-1, c-parse-state-1)
15536 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
15537 (c-parse-state): Enhance and refactor.
15538 (c-debug-parse-state): Amend to deal with all the new variables.
15539
15540 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
15541 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
15542 modify to use category text properties rather than syntax-table ones.
15543 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
15544 to switch off/on the syntactic paren property of C++ template
15545 delimiters using the category property.
15546 (c-with-<->-as-parens-suppressed): Macro to invoke code with
15547 template delims suppressed.
15548 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
15549 New constant/macros which apply category properties to the start
15550 and end of preprocessor constructs.
15551 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
15552 "comment out" the syntactic value of characters in preprocessor
15553 constructs.
15554 (c-with-cpps-commented-out)
15555 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
15556 with characters in all or all but one preprocessor constructs
15557 "commented out".
15558
15559 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15560
15561 * proced.el (proced-filter-alist): Use regexp-quote.
15562
15563 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
15564
15565 Cleanup.
15566 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
15567 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
15568 arguments. Expand `default-directory'.
15569
15570 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
15571 the benefit of returning an expanded localname.
15572 (tramp-tramp-file-p): Handle the case NAME is not a string.
15573
15574 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15575
15576 Add support for bzr shelve/unshelve.
15577 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
15578 (vc-bzr-extra-menu-map): New variables.
15579 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
15580 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
15581 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
15582 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
15583 (vc-bzr-dir-extra-headers): Display shelves.
15584
15585 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
15586
15587 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15588
15589 * textmodes/bibtex.el (bibtex-complete-internal):
15590 Use completion-in-region.
15591 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
15592
15593 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15594
15595 Support applying stashes. Improve UI.
15596 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
15597 (vc-git-stash-apply, vc-git-stash-pop)
15598 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
15599 (vc-git-stash-menu): New functions.
15600 (vc-git-stash-menu-map): New variable.
15601 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
15602
15603 2009-12-03 Glenn Morris <rgm@gnu.org>
15604
15605 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
15606 (vc-print-log-internal): Fix previous change.
15607 (vc-revert): Correct pluralization.
15608
15609 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15610
15611 * progmodes/make-mode.el (makefile-special-targets-list): No need for
15612 it to be an alist any more.
15613 (makefile-complete): Use completion-in-region.
15614
15615 * progmodes/octave-mod.el (octave-complete-symbol):
15616 Use completion-in-region.
15617
15618 Misc cleanup.
15619 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
15620 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
15621 (idlwave-complete-class): Don't quote lambda.
15622 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
15623 (idlwave-mode-map): Move initialization into declaration.
15624 (idlwave-action-and-binding): Use backquotes.
15625 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
15626 Simplify.
15627 (idlwave-is-pointer-dereference): Remove unused var `pos'.
15628 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
15629 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
15630 `parts', and `all-parts'.
15631 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
15632 (idlwave-convert-xml-system-routine-info): Remove unused string
15633 `version-string'.
15634 (idlwave-display-user-catalog-widget): Use dolist.
15635 (idlwave-scanning-lib): Declare dynamically-scoped var.
15636 (idlwave-scan-library-catalogs): Remove unused var `flags'.
15637 (completion-highlight-first-word-only): Declare to silence bytecomp.
15638 (idlwave-popup-select): Tighten scope of `resp'.
15639 (idlwave-find-struct-tag): Remove unused var `beg'.
15640 (idlwave-after-load-rinfo-hook): Declare.
15641 (idlwave-sintern-class-info): Remove unused var `taglist'.
15642 (idlwave-find-class-definition): Remove unused var `list'.
15643 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
15644 (idlwave-what-module-find-class): Remove unused var `classes'.
15645
15646 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
15647
15648 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
15649
15650 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15651
15652 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
15653 buffers visited. Remove redundant current-buffer-saving.
15654
15655 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
15656
15657 Use completion-in-buffer and remove uses of dynamic scoping.
15658 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
15659 (pascal-buffer-to-use, pascal-flag): Don't declare.
15660 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
15661 (pascal-get-completion-decl, pascal-keyword-completion):
15662 Add `pascal-str' argument, save-excursion,
15663 return the found completions, and don't filter with pascal-pred.
15664 (pascal-completion-cache): New var.
15665 (pascal-completion): Don't switch buffer any more (it was never
15666 necessary). Don't save-excursion any more (it's done by the called
15667 subroutines). Use a cache to avoid redundant computations.
15668 Use complete-with-action rather than pascal-completion-response and
15669 let it apply the predicate as well.
15670 (pascal-complete-word): Use completion-in-buffer when
15671 pascal-toggle-completions is nil.
15672 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
15673 not used any more.
15674 (pascal-comp-defun): Don't change buffer any more.
15675 Use complete-with-action rather than pascal-completion-response and
15676 let it apply the predicate as well.
15677 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
15678 when neded.
15679
15680 2009-12-02 Kenichi Handa <handa@m17n.org>
15681
15682 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
15683 shape for all Indic scripts.
15684
15685 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
15686
15687 Use completion-in-buffer.
15688 * wid-edit.el (widget-field-text-end): New function.
15689 (widget-field-value-get): Use it.
15690 (widget-string-complete, widget-file-complete)
15691 (widget-color-complete): Use it and completion-in-region.
15692 (widget-complete): Don't narrow the buffer.
15693
15694 2009-12-02 Glenn Morris <rgm@gnu.org>
15695
15696 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
15697 (rmail-select-summary): Use rmail-pop-to-buffer.
15698 * mail/rmailsum.el: Replace all pop-to-buffer calls with
15699 rmail-pop-to-buffer, to prevent horizontal splits.
15700
15701 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
15702 save-excursion with save-current-buffer.
15703 Widen before searching. (Bug#5093)
15704 (diary-list-sexp-entries): Remove superfluous save-excursion.
15705
15706 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
15707
15708 * woman.el (woman-make-bufname): Handle man-pages with "." in the
15709 name. (Bug#5038)
15710
15711 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
15712
15713 * ido.el (ido-file-internal): Handle filenames at point that do
15714 not have a directory part. (Bug#5049)
15715
15716 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
15717
15718 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
15719 (mpc-songs-jump-to, mpc-resume): Doc fixes.
15720
15721 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
15722
15723 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
15724 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
15725 any more.
15726
15727 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15728
15729 * comint.el (comint-insert-input): Ignore clicks to the right of
15730 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
15731
15732 * vc.el (vc-print-log-internal): Don't wait for the process to
15733 terminate before setting up the major mode.
15734
15735 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
15736 in case.
15737
15738 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
15739 the last element.
15740
15741 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
15742
15743 2009-12-01 Glenn Morris <rgm@gnu.org>
15744
15745 * window.el (window--display-buffer-2): Fix previous changes.
15746
15747 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
15748
15749 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
15750
15751 2009-12-01 Glenn Morris <rgm@gnu.org>
15752
15753 * Makefile.in (ELCFILES): Add mpc.elc.
15754
15755 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15756
15757 * mpc.el: New file.
15758
15759 2009-12-01 Glenn Morris <rgm@gnu.org>
15760
15761 * window.el (window-to-use): Define for compiler.
15762
15763 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
15764 consistent with others (no final period).
15765
15766 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
15767 (rmail-mime-show): Downcase the encoding. (Bug#5070)
15768
15769 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
15770
15771 Make vc-print-log buttons work.
15772 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
15773
15774 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
15775
15776 * savehist.el (savehist-autosave-interval): Allow setting to nil
15777 through customize. (Bug#5056)
15778
15779 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
15780
15781 Fix references to jit-lock properties.
15782 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
15783 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
15784 (perl-font-lock-special-syntactic-constructs):
15785 Quote jit-lock-defer-multiline property.
15786
15787 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
15788
15789 * vc-git.el (vc-git-registered): Call vc-git-root only once.
15790
15791 2009-11-30 Juri Linkov <juri@jurta.org>
15792
15793 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
15794 value `buffer' of `multi-isearch-next-buffer-current-function'.
15795 Use `(current-buffer)' when `buffer' is nil.
15796 (multi-isearch-next-buffer-from-list): Don't fallback to
15797 `(current-buffer)' when `buffer' is nil. (Bug#4947)
15798
15799 2009-11-30 Juri Linkov <juri@jurta.org>
15800
15801 * misearch.el (multi-isearch-read-buffers): Move canonicalization
15802 of buffers with `get-buffer' to `multi-isearch-buffers'.
15803 (multi-isearch-buffers, multi-isearch-buffers-regexp):
15804 Canonicalize BUFFERS with `get-buffer'. Doc fix.
15805 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
15806 FILES with `expand-file-name' converting relative file names
15807 to absolute. Doc fix. (Bug#4727)
15808
15809 2009-11-30 Juri Linkov <juri@jurta.org>
15810
15811 * misearch.el (multi-isearch-read-buffers)
15812 (multi-isearch-read-matching-buffers): New functions.
15813 (multi-isearch-buffers, multi-isearch-buffers-regexp):
15814 Use them in the `interactive' spec. Doc fix.
15815 (multi-isearch-read-files, multi-isearch-read-matching-files):
15816 New functions.
15817 (multi-isearch-files, multi-isearch-files-regexp):
15818 Use them in the `interactive' spec. Doc fix. (Bug#4725)
15819
15820 2009-11-30 Juri Linkov <juri@jurta.org>
15821
15822 * doc-view.el (doc-view-continuous):
15823 Rename from `doc-view-continuous-mode'.
15824 (doc-view-menu): Move "Toggle display" to the top.
15825 Add submenu "Continuous" with radio buttons "Off"/"On"
15826 and "Save as Default".
15827 (doc-view-scroll-up-or-next-page)
15828 (doc-view-scroll-down-or-previous-page)
15829 (doc-view-next-line-or-next-page)
15830 (doc-view-previous-line-or-previous-page):
15831 Rename `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
15832
15833 2009-11-30 Juri Linkov <juri@jurta.org>
15834
15835 * comint.el (comint-mode-map): Rebind `M-r' from
15836 `comint-previous-matching-input' to
15837 `comint-history-isearch-backward-regexp'.
15838 Unbind `M-s' to allow global key binding `M-s'.
15839 Add menu items for `comint-history-isearch-backward' and
15840 `comint-history-isearch-backward-regexp'. (Bug#3746)
15841
15842 2009-11-30 Juri Linkov <juri@jurta.org>
15843
15844 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
15845 For def=recenter, replace `recenter' with `recenter-top-bottom'
15846 that is called with `this-command' and `last-command' let-bound
15847 to `recenter-top-bottom'. When the last `def' was not `recenter',
15848 set `recenter-last-op' to nil. (Bug#4981)
15849
15850 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
15851
15852 Minor cleanup and simplification.
15853 * filecache.el (file-cache-add-directory)
15854 (file-cache-add-directory-recursively)
15855 (file-cache-add-from-file-cache-buffer)
15856 (file-cache-delete-file-regexp, file-cache-delete-directory)
15857 (file-cache-files-matching-internal, file-cache-display): Use dolist.
15858 (file-cache-temp-minibuffer-message): Delete function.
15859 (file-cache-minibuffer-complete): Use minibuffer-message instead.
15860
15861 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
15862 Don't signal an error when bumping into EOB in tr, s, or y.
15863
15864 2009-11-29 Juri Linkov <juri@jurta.org>
15865
15866 * startup.el (fancy-about-text): Fix wording of Guided Tour.
15867 (Bug#4960)
15868
15869 * descr-text.el (describe-char-unidata-list): Use lowercase name
15870 for "Unicode name" like in other tags.
15871
15872 2009-11-29 Juri Linkov <juri@jurta.org>
15873
15874 * ediff-util.el (ediff-minibuffer-with-setup-hook):
15875 New compatibility macro.
15876 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
15877
15878 2009-11-29 Juri Linkov <juri@jurta.org>
15879
15880 Add defcustom to define the cycling order of `recenter-top-bottom'.
15881 (Bug#4981)
15882
15883 * window.el (recenter-last-op): Doc fix.
15884 (recenter-positions): New defcustom.
15885 (recenter-top-bottom): Rewrite to use `recenter-positions'.
15886 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
15887
15888 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
15889
15890 Improve integration of Tramp and ange-ftp in eshell.
15891
15892 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
15893 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
15894 (eshell/sudo): Flatten args. Let-bind `default-directory'.
15895
15896 * eshell/esh-util.el (top): Require also Tramp when compiling.
15897 (eshell-directory-files-and-attributes): Check for FTP remote
15898 connection.
15899 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
15900 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
15901 (eshell-file-attributes): Handle ".". Return `entry'.
15902
15903 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
15904 (ange-ftp-directory-files-and-attributes)
15905 (ange-ftp-real-directory-files-and-attributes): New defuns.
15906
15907 * net/tramp.el (tramp-maybe-open-connection): Open the remote
15908 shell with "exec" when possible. This prevents trailing prompts
15909 in `start-file-process'.
15910
15911 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
15912
15913 Try and remove assumptions about point-min==1.
15914 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
15915 (rng-compute-mode-line-string): Show the validation percentage in
15916 terms of the narrowed text, not the widened text.
15917 (rng-do-some-validation): Don't catch internal errors when debugging.
15918 (rng-first-error): Simplify.
15919 (rng-after-change-function): Remove work around. AFAIK the bug has
15920 been fixed a while ago.
15921
15922 * image-mode.el (image-minor-mode): Exit more gracefully when the image
15923 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
15924
15925 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
15926
15927 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
15928 `cd' doesn't always do it for us (bug#5067).
15929
15930 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
15931 on 2009-10-25 as part of some other change (bug#5067).
15932
15933 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
15934
15935 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
15936 `suspicious'.
15937 (byte-compile-warnings): Use byte-compile-warning-types.
15938 (byte-compile-save-excursion): Warn about use of set-buffer right
15939 after save-excursion.
15940
15941 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
15942 the excursion as well.
15943
15944 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
15945
15946 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
15947 providing a Tramp related implementation of "su" and "sudo".
15948 (eshell-unix-initialize): Add "su" and "sudo".
15949
15950 2009-11-27 Daiki Ueno <ueno@unixuser.org>
15951
15952 * net/socks.el (socks-send-command): Convert binary request to
15953 unibyte before sending. This fixes mishandling of some port
15954 numbers such as 129.
15955
15956 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
15957
15958 * help.el (describe-bindings-internal): Remove `interactive'.
15959
15960 * man.el (Man-completion-table): Trim a terminating "(".
15961 Remove the space between name page a section.
15962 Add the command's description on the `help-echo' property.
15963 Remove `process-connection-type' binding since it's unused by
15964 call-process.
15965 Provide completion for the "<section> <name>" format as well.
15966 (Man-default-man-entry): Remove spurious var shadowing the argument.
15967
15968 2009-11-26 Kevin Ryde <user42@zip.com.au>
15969
15970 * log-view.el: Add "Keywords: tools", since its other keywords
15971 aren't in finder-known-keywords, and following vc.el.
15972
15973 * sha1.el (sha1-string-external): default-directory "/" in case
15974 otherwise non-existent. process-connection-type pipe for touch of
15975 efficiency recommended by elisp manual. (An aside in Bug#3911.)
15976
15977 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
15978
15979 Misc coding convention cleanups.
15980 * htmlfontify.el (hfy-init-kludge-hook): Rename from
15981 hfy-init-kludge-hooks.
15982 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
15983 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
15984 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
15985 and push.
15986 (hfy-slant, hfy-weight): Use tables rather than code.
15987 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
15988 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
15989 (hfy-face-attr-for-class): Initialize `face-spec' directly.
15990 (hfy-face-to-css): Remove `nconc' with single arg.
15991 (hfy-p-to-face-lennart): Use `or'.
15992 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
15993 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
15994 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
15995 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
15996 (hfy-force-fontification): Use run-hooks.
15997
15998 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
15999
16000 Various minor fixes.
16001 * htmlfontify.el (hfy-default-header): Add toggle_invis since
16002 Javascript belongs in the header, not the body.
16003 (hfy-javascript): Remove.
16004 (hfy-fontify-buffer): Don't insert it any more.
16005 (hfy-face-at): Handle (face0 face1 face2) style face properties.
16006 Fix bug in invis handling when there were no invis props in a chunk.
16007
16008 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
16009
16010 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
16011
16012 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
16013
16014 * finder.el (finder-mode-map): Add a menu.
16015
16016 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
16017
16018 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
16019 "unsigned" structs.
16020
16021 (verilog-leap-to-head, verilog-backward-token): Handle "disable
16022 fork" statement better.
16023
16024 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
16025
16026 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
16027 (verilog-delete-auto, verilog-delete-empty-auto-pair)
16028 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
16029 Reported by Clay Douglass.
16030
16031 (verilog-auto-inst, verilog-auto-star-safe)
16032 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
16033 Fix removing "// Interfaces" when saving .* expansions.
16034 Reported by Pierre-David Pfister.
16035
16036 2009-11-26 Glenn Morris <rgm@gnu.org>
16037
16038 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
16039 the scope.
16040
16041 2009-11-25 Johan Bockgård <bojohan@gnu.org>
16042
16043 * vc-annotate.el (vc-annotate-revision-previous-to-line):
16044 Really use previous revision.
16045
16046 2009-11-25 Kevin Ryde <user42@zip.com.au>
16047
16048 * man.el (Man-completion-table): default-directory "/" in case
16049 doesn't otherwise exist. process-environment COLUMNS=999 so as
16050 not to truncate long names. process-connection-type pipe to avoid
16051 any chance of hitting the pseudo-tty TIOCGWINSZ.
16052 (man): completion-ignore-case t for friendliness and since man
16053 itself is case-insensitive on the command line.
16054 Further to Bug#3717.
16055
16056 * arc-mode.el: Add "Keywords: files", so the details in its
16057 commentary can be reached from finder-by-keyword.
16058 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
16059 editing mode, but it's comms related and sgml-mode.el has "comm"
16060 on that basis too.
16061 * textmodes/bibtex-style.el: Add "Keywords: tex".
16062 * international/isearch-x.el, international/ja-dic-cnv.el:
16063 * international/ja-dic-utl.el, international/kkc.el:
16064 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
16065
16066 2009-11-25 Juri Linkov <juri@jurta.org>
16067
16068 * man.el (Man-completion-table): Modify regexp to include
16069 section names to completion strings. (Bug#3717)
16070
16071 2009-11-25 Juri Linkov <juri@jurta.org>
16072
16073 Search recursively in gzipped files. (Bug#4982)
16074
16075 * progmodes/grep.el (grep-highlight-matches): Add new options
16076 `always' and `auto'. Doc fix.
16077 (grep-process-setup): Check `grep-highlight-matches' for
16078 `auto-detect' to determine the need to compute grep defaults.
16079 Move Windows/DOS specific --colors settings handling
16080 to `grep-compute-defaults'. Check `grep-highlight-matches'
16081 to get the value of "--color=".
16082 (grep-compute-defaults): Compute `grep-highlight-matches' when it
16083 has the value `auto-detect'. Move Windows/DOS specific settings
16084 from `grep-process-setup'.
16085 (zrgrep): New command with alias `rzgrep'.
16086
16087 2009-11-25 Juri Linkov <juri@jurta.org>
16088
16089 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
16090 to nil instead of switching off view-mode. (Bug#4896)
16091
16092 2009-11-25 Juri Linkov <juri@jurta.org>
16093
16094 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
16095
16096 * mwheel.el (mwheel-scroll-up-function)
16097 (mwheel-scroll-down-function): New defvars.
16098 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
16099 `scroll-up', and `mwheel-scroll-down-function' instead of
16100 `scroll-down'.
16101
16102 * doc-view.el (doc-view-scroll-up-or-next-page)
16103 (doc-view-scroll-down-or-previous-page): Add optional ARG.
16104 Use this ARG in the call to image-scroll-up/image-scroll-down.
16105 Change `interactive' spec to "P". Goto next/previous page only
16106 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
16107 SPC/DEL case). Doc fix.
16108 (doc-view-next-line-or-next-page)
16109 (doc-view-previous-line-or-previous-page): Rename arg to ARG
16110 for consistency.
16111 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
16112 `doc-view-scroll-up-or-next-page', and buffer-local
16113 `mwheel-scroll-down-function' to
16114 `doc-view-scroll-down-or-previous-page'.
16115
16116 2009-11-25 Juri Linkov <juri@jurta.org>
16117
16118 Provide additional default values (directories at other Dired
16119 windows) via M-n in the minibuffer of some Dired commands.
16120
16121 * dired-aux.el (dired-diff, dired-compare-directories)
16122 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
16123 `minibuffer-default' in `minibuffer-with-setup-hook'.
16124 (dired-dwim-target-directory): Find a window that displays Dired
16125 buffer instead of failing when the next window is not Dired.
16126 Use `get-window-with-predicate' to find for the next Dired window.
16127 (dired-dwim-target-defaults): New function.
16128
16129 * ediff-util.el (ediff-read-file-name):
16130 Use `dired-dwim-target-defaults' to set `minibuffer-default'
16131 in `minibuffer-with-setup-hook'.
16132
16133 2009-11-25 Juri Linkov <juri@jurta.org>
16134
16135 Provide additional default values (file name at point or at the
16136 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
16137
16138 * minibuffer.el (read-file-name-defaults): New function.
16139 (read-file-name): Reset `minibuffer-default' to nil when
16140 it duplicates initial input `insdef'.
16141 Bind `minibuffer-default-add-function' to lambda that
16142 calls `read-file-name-defaults' in `minibuffer-selected-window'.
16143 (minibuffer-insert-file-name-at-point): New command.
16144
16145 * files.el (file-name-at-point-functions): New defcustom.
16146 (find-file-default): Remove defvar.
16147 (find-file-read-args): Don't use `find-file-default'.
16148 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
16149 to `read-file-name'.
16150 (find-file-literally): Use `read-file-name' with
16151 `confirm-nonexistent-file-or-buffer'.
16152
16153 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
16154
16155 * dired.el (dired-read-dir-and-switches):
16156 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
16157 to `read-file-name'.
16158 (dired-file-name-at-point): New function.
16159 (dired-mode): Add hook `dired-file-name-at-point' to
16160 `file-name-at-point-functions'.
16161
16162 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
16163
16164 Really make the *Completions* window soft-dedicated (bug#5030).
16165 * window.el (window--display-buffer-2): Add `dedicated' argument.
16166 (display-buffer): Pass it when needed so the dedicated flag is set
16167 after calling set-window-buffer, which would otherwise reset it.
16168
16169 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
16170
16171 * progmodes/meta-mode.el (meta-complete-symbol):
16172 * progmodes/etags.el (complete-tag):
16173 * mail/mailabbrev.el (mail-abbrev-complete-alias):
16174 Use completion-in-region.
16175
16176 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
16177 (dabbrev-completion): Use completion-in-region.
16178 (dabbrev--abbrev-at-point): Simplify regexp.
16179
16180 * abbrev.el (abbrev--before-point): Use word-motion functions
16181 if :regexp is not specified (bug#5031).
16182
16183 * subr.el (string-prefix-p): New function.
16184
16185 * man.el (Man-completion-cache): New var.
16186 (Man-completion-table): Use it.
16187
16188 * vc.el (vc-print-log-internal): Make `limit' optional for better
16189 compatibility (e.g. with vc-annotate.el).
16190
16191 2009-11-24 Kevin Ryde <user42@zip.com.au>
16192
16193 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
16194 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
16195
16196 * emacs-lisp/elint.el (elint-add-required-env): Better error message
16197 when .el source file not found or other error.
16198
16199 2009-11-24 Markus Triska <markus.triska@gmx.at>
16200
16201 * linum.el (linum-update-window): Ignore intangible (bug#4996).
16202
16203 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
16204
16205 Handle the [back] button properly (bug#4979).
16206 * descr-text.el (describe-text-properties): Add a `buffer' argument.
16207 Use help-setup-xref, help-buffer, and with-help-window.
16208 (describe-char): Add `buffer' argument.
16209 Pass proper command to help-setup-xref. Don't meddle with
16210 help-xref-stack-item directly.
16211 (describe-text-category): Use with-help-window and help-buffer.
16212
16213 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
16214 for the displayed buffer (bug#4887).
16215
16216 * man.el (Man-completion-table): New function.
16217 (man): Use it.
16218
16219 2009-11-24 David Reitter <david.reitter@gmail.com>
16220
16221 * vc-git.el (vc-git-registered): Use checkout directory (where
16222 .git is) rather than the file's directory and a relative path spec
16223 to work around a bug in git.
16224
16225 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
16226
16227 Improve handling of processes on remote hosts.
16228
16229 * eshell/esh-util.el (eshell-path-env): New defvar.
16230 (eshell-parse-colon-path): New defun.
16231 (eshell-file-attributes): Use `eshell-parse-colon-path'.
16232
16233 * eshell/esh-ext.el (eshell-search-path):
16234 Use `eshell-parse-colon-path'.
16235 (eshell-remote-command): Remove argument HANDLER.
16236 (eshell-external-command): Check for FTP remote connection.
16237
16238 * eshell/esh-proc.el (eshell-gather-process-output):
16239 Use `file-truename', in order to start also symlinked files.
16240 Apply `start-file-process' instead of `start-process'.
16241 Shorten `command' to the local file name part.
16242
16243 * eshell/em-cmpl.el (eshell-complete-commands-list):
16244 Use `eshell-parse-colon-path'.
16245
16246 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
16247
16248 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
16249 to `eshell-directory-change-hook'.
16250
16251 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
16252
16253 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
16254 because it could be enabled automatically if view-read-only is non-nil.
16255
16256 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
16257
16258 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
16259 made on 2009-11-22.
16260
16261 2009-11-24 Glenn Morris <rgm@gnu.org>
16262
16263 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
16264 deleted variable bookmark-bmenu-bookmark-column.
16265
16266 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
16267
16268 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
16269
16270 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
16271
16272 * net/browse-url.el (browse-url-filename-alist): On Windows, add
16273 two slashes to the "file:" prefix.
16274 (browse-url-file-url): De-munge Cygwin filenames before passing
16275 them to Windows browser.
16276 (browse-url-default-windows-browser): Use call-process.
16277
16278 2009-11-23 Juri Linkov <juri@jurta.org>
16279
16280 Implement DocView Continuous mode. (Bug#4896)
16281 * doc-view.el (doc-view-continuous-mode): New defcustom.
16282 (doc-view-mode-map): Bind C-n/<down> to
16283 `doc-view-next-line-or-next-page', C-p/<up> to
16284 `doc-view-previous-line-or-previous-page'.
16285 (doc-view-next-line-or-next-page)
16286 (doc-view-previous-line-or-previous-page): New commands.
16287
16288 2009-11-23 Juri Linkov <juri@jurta.org>
16289
16290 Implement Isearch in comint input history. (Bug#3746)
16291 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
16292 `isearch-mode-hook'.
16293 (comint-history-isearch): New defcustom.
16294 (comint-history-isearch-backward)
16295 (comint-history-isearch-backward-regexp): New commands.
16296 (comint-history-isearch-message-overlay): New buffer-local variable.
16297 (comint-history-isearch-setup, comint-history-isearch-end)
16298 (comint-goto-input, comint-history-isearch-search)
16299 (comint-history-isearch-message, comint-history-isearch-wrap)
16300 (comint-history-isearch-push-state)
16301 (comint-history-isearch-pop-state): New functions.
16302
16303 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
16304
16305 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
16306 return.
16307 (tramp-handle-make-symbolic-link)
16308 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
16309 Quote file names.
16310 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
16311 (tramp-handle-process-file): Use it.
16312
16313 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
16314
16315 * window.el (move-to-window-line-last-op): Remove.
16316 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
16317
16318 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
16319
16320 Make M-r mirror the new cycling behavior of C-l.
16321 * window.el (move-to-window-line-last-op): New var.
16322 (move-to-window-line-top-bottom): New command.
16323 (global-map): Bind M-r move-to-window-line-top-bottom.
16324
16325 2009-11-23 Sven Joachim <svenjoac@gmx.de>
16326
16327 * dired-x.el (dired-guess-shell-alist-default):
16328 Support xz format. (Bug#4953)
16329
16330 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
16331
16332 * emulation/viper-cmd.el: Use viper-last-command-char instead of
16333 last-command-char/last-command-event.
16334 (viper-prefix-arg-value): Do correct conversion of event-char for
16335 XEmacs.
16336
16337 * emulation/viper-util.el, emulation/viper.el:
16338 Use viper-last-command-char instead of
16339 last-command-char/last-command-event.
16340
16341 * ediff-init.el, ediff-mult.el, ediff-util.el:
16342 Replace last-command-char and last-command-event
16343 with (ediff-last-command-char) everywhere.
16344
16345 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
16346 created in fundamental mode.
16347
16348 * ediff.el (ediff-version): Revert the change of interactive-p to
16349 called-interactively-p.
16350
16351 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
16352
16353 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
16354 generation from word-movement command names.
16355
16356 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
16357
16358 * cus-start.el (all): Add native condition for font-use-system-font.
16359
16360 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
16361
16362 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
16363 Correct the patch from 2009-11-18. (Bug#3910)
16364
16365 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
16366
16367 * progmodes/subword.el: Rename from lisp/subword.el.
16368
16369 * subword.el: Rename to progmodes/subword.el.
16370
16371 * Makefile.in (ELCFILES): Adapt to subword.el move.
16372
16373 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16374 Stefan Monnier <monnier@iro.umontreal.ca>
16375
16376 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
16377 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
16378 (bookmark-bmenu-show-filenames): Use push.
16379 (bookmark-bmenu-hide-filenames): Use local var instead of
16380 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
16381 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
16382 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
16383 filenames now that the bookmark names are always available.
16384
16385 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
16386
16387 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
16388 (bookmark-search-pattern): Move and leave unbound.
16389 (bookmark-bmenu-mode-map): Change binding.
16390 (bookmark-read-search-input): Simplify.
16391 Don't use text-char-description. Don't error on non-char events.
16392 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
16393 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
16394 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
16395 Use a local var for the timer.
16396 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
16397 (i.e. bookmark-bmenu-search).
16398
16399 2009-11-21 Glenn Morris <rgm@gnu.org>
16400
16401 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
16402
16403 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
16404
16405 * net/browse-url.el (browse-url-default-windows-browser):
16406 Use cygstart for cygwin.
16407
16408 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
16409
16410 * bookmark.el: Formatting and doc fixes only:
16411 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
16412 (bookmark-bmenu-search): Wrap to fit within 80 columns.
16413 Minor grammar and punctuation fixes in doc string.
16414 (bookmark-read-search-input): Adjust to fit within 80 columns.
16415
16416 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
16417
16418 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
16419 (c-backward-into-nomenclature): Adapt to subword renaming.
16420
16421 * subword.el (subword-forward, subword-backward, subword-mark)
16422 (subword-kill, subword-backward-kill, subword-transpose)
16423 (subword-downcase, subword-upcase, subword-capitalize)
16424 (subword-forward-internal, subword-backward-internal):
16425 Rename from forward-subword, backward-subword, mark-subword,
16426 kill-subword, backward-kill-subword, transpose-subwords,
16427 downcase-subword, upcase-subword, capitalize-subword,
16428 forward-subword-internal, backward-subword-internal.
16429
16430 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16431
16432 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
16433 New options.
16434 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
16435 New vars.
16436 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
16437 (bookmark-bmenu-filter-alist-by-regexp)
16438 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
16439 (bookmark-bmenu-search): New command.
16440 (bookmark-bmenu-mode-map): Bind it.
16441
16442 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
16443
16444 * progmodes/cc-cmds.el: declare-functioned forward-subword and
16445 backward-subword to quit the byte-compiler.
16446
16447 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
16448
16449 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
16450
16451 * progmodes/cc-cmds.el (c-update-modeline)
16452 (c-forward-into-nomenclature, c-backward-into-nomenclature):
16453 Refer to subword.el functions instead of cc-subword.el.
16454
16455 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
16456 subword.el functions instead of cc-subword.el.
16457
16458 * progmodes/cc-subword.el: Rename to subword.el.
16459 * subword.el: Rename from progmodes/cc-subword.el.
16460 (subword-mode-map): Rename from c-subword-mode-map.
16461 (subword-mode): Rename from c-subword-mode.
16462 (global-subword-mode): New global minor mode.
16463 (forward-subword): Rename from c-forward-subword.
16464 (backward-subword): Rename from c-backward-subword.
16465 (mark-subword): Rename from c-mark-subword.
16466 (kill-subword): Rename from c-kill-subword.
16467 (backward-kill-subword): Rename from c-backward-kill-subword.
16468 (transpose-subwords): Rename from c-tranpose-subword.
16469 (downcase-subword): Rename from c-downcase-subword.
16470 (capitalize-subword): Rename from c-capitalize-subword.
16471 (forward-subword-internal): Rename from c-forward-subword-internal.
16472 (backward-subword-internal): Rename from c-backward-subword-internal.
16473
16474 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
16475
16476 * vc.el (vc-deduce-fileset): Allow non-state changing operations
16477 from a dired buffer.
16478 (vc-dired-deduce-fileset): New function.
16479 (vc-root-diff, vc-print-root-log): Use it.
16480
16481 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
16482 nil LIMIT argument to vc-print-log-internal.
16483
16484 2009-11-20 Glenn Morris <rgm@gnu.org>
16485
16486 * Makefile.in (ELCFILES): Regenerate.
16487
16488 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
16489
16490 * calc/calc.el (calc-set-mode-line):
16491 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
16492 (math-format-number): Rename `math-format-complement-signed' to
16493 `math-format-twos-complement'.
16494
16495 * calc/calc-bin.el (math-format-twos-complement): Rename from
16496 math-format-complement-signed.
16497 (calc-radix): Rename `calc-complement-signed-mode' to
16498 `calc-twos-complement-mode'.
16499 (calc-octal-radix, calc-hex-radix): Add an argument for
16500 two's complement.
16501
16502 * calc/calc-embed.el (calc-embedded-mode-vars):
16503 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
16504
16505 * calc/calc-ext.el (calc-init-extensions):
16506 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
16507 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
16508
16509 * calc/calc-units.el (math-build-units-table-buffer):
16510 Let `calc-twos-complement-mode' be nil.
16511
16512 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
16513 entries.
16514
16515 * calc/calc-vec.el (calcFunc-vunpack):
16516 * calc/calc-aent.el (calc-do-calc-eval):
16517 * calc/calc-forms.el (math-format-date):
16518 * calc/calc-graph.el (calc-graph-plot):
16519 * calc/calc-math.el (math-use-emacs-fn):
16520 * calc/calccomp.el (math-compose-expr):
16521 Let `calc-twos-complement-mode' be nil.
16522
16523 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
16524
16525 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
16526 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
16527 * minibuffer.el (completion-in-region-functions): New hook.
16528 (completion-in-region): New function.
16529 * emacs-lisp/lisp.el (lisp-complete-symbol):
16530 * pcomplete.el (pcomplete-std-complete): Use it.
16531
16532 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
16533
16534 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
16535 (latex-complete-alist): New vars.
16536 (latex-string-prefix-p, latex-complete-bibtex-keys)
16537 (latex-complete-envnames, latex-complete-refkeys)
16538 (latex-complete-data): New functions.
16539 (latex-complete, latex-indent-or-complete): New commands.
16540
16541 * window.el (display-buffer-mark-dedicated): New var.
16542 (display-buffer): Obey it.
16543 * minibuffer.el (minibuffer-completion-help): Use it.
16544
16545 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
16546
16547 * filecache.el (file-cache-add-file): Use push and cons.
16548 (file-cache-delete-file-regexp): Use push.
16549 (file-cache-complete): Use completion-in-region.
16550
16551 * simple.el (with-wrapper-hook): Fix thinko.
16552
16553 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
16554 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
16555 Use with-current-buffer and string-to-number.
16556 (hfy-fallback-colour-values): Use assoc-string.
16557 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
16558 (hfy-face-at): Remove unused var `found-face'.
16559 (hfy-compile-stylesheet): Remove unused var `css'.
16560 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
16561 and `orig-buffer'.
16562 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
16563 Use with-current-buffer.
16564 (hfy-text-p): Use expand-file-name and fewer setq.
16565
16566 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
16567
16568 * htmlfontify.el, hfy-cmap.el: New files.
16569
16570 2009-11-19 Juri Linkov <juri@jurta.org>
16571
16572 * minibuffer.el (completions-format): New defcustom.
16573 (completion--insert-strings): Implement vertical format.
16574
16575 * simple.el (switch-to-completions): Move point to the first
16576 completion when point was at the beginning of the buffer.
16577
16578 2009-11-19 Juri Linkov <juri@jurta.org>
16579
16580 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
16581
16582 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
16583
16584 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
16585
16586 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
16587 (mail-signature): Change default to t.
16588 (mail-from-style): Deprecate `system-default' value.
16589 (mail-insert-from-field): For default value of mail-from-style,
16590 default to `angles' unless `angles' needs quoting and `parens'
16591 does not.
16592 (mail-citation-prefix-regexp): Use citation regexp from
16593 message-mode.
16594
16595 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
16596
16597 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
16598 Set variables for computing the prompt for reading password.
16599
16600 2009-11-19 Glenn Morris <rgm@gnu.org>
16601
16602 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
16603
16604 * textmodes/flyspell.el (sgml-lexical-context): Declare.
16605
16606 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
16607 (newsticker-treeview-listwindow-height): Fix custom type.
16608
16609 2009-11-19 Kenichi Handa <handa@m17n.org>
16610
16611 * descr-text.el (describe-char-padded-string): Compose with TAB
16612 only if there's a font for CH.
16613 (describe-char): Fix the condition for detecting a trivial composition.
16614
16615 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
16616
16617 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
16618 more accurate version of the regexp. (Bug#3910)
16619
16620 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
16621
16622 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
16623
16624 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
16625
16626 * font-setting.el (font-use-system-font): Declare for byte-compiler.
16627 (font-setting-change-default-font): Fix typo in docstring.
16628
16629 2009-11-18 Alan Mackenzie <acm@muc.de>
16630
16631 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
16632
16633 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
16634
16635 * font-setting.el (font-use-system-font): Move ...
16636
16637 * cus-start.el (all): ... to here.
16638
16639 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
16640
16641 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
16642 Don't set `ad-return-value' if `ad-do-it' doesn't.
16643
16644 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
16645 modification time.
16646
16647 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
16648
16649 * menu-bar.el: Put "Use system font" in Option-menu.
16650 (menu-bar-options-save): Add font-use-system-font.
16651
16652 * loadup.el: If feature system-font-setting or font-render-setting is
16653 there, load font-setting.
16654
16655 * Makefile.in (ELCFILES): Add font-settings.el.
16656 * font-setting.el: New file.
16657
16658 2009-11-17 Glenn Morris <rgm@gnu.org>
16659
16660 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
16661
16662 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
16663 Preserve point in the list buffer. (Bug#4939)
16664 Use point-at-eol.
16665 (newsticker--treeview-list-update-highlight)
16666 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
16667
16668 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
16669
16670 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
16671 Remove.
16672
16673 * calc/calc-ext.el (calc-init-extensions): Remove references to
16674 symclip.
16675
16676 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
16677
16678 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
16679 * calc/calc-help.el (calc-b-prefix-help): Remove references to
16680 `calc-symclip'.
16681
16682 2009-11-16 Kevin Ryde <user42@zip.com.au>
16683
16684 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
16685 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
16686
16687 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
16688 (lm-keywords-list): Allow comma-only separator like "foo,bar".
16689 Ignore trailing spaces by omit-nulls to split-string (fixing
16690 regression from Emacs 21 due to the incompatible split-string
16691 change). (Bug #4928.)
16692
16693 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
16694
16695 * vc.el (vc-log-show-limit): Default to 2000.
16696 (vc-print-log-internal): Insert buttons to request more entries
16697 when limiting the output.
16698
16699 * vc-sccs.el (vc-sccs-print-log):
16700 * vc-rcs.el (vc-rcs-print-log):
16701 * vc-cvs.el (vc-cvs-print-log):
16702 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
16703 LIMIT is non-nil.
16704
16705 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
16706
16707 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
16708 error when `tramp-gvfs-dbus-event-vector' is set.
16709 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
16710
16711 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
16712
16713 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
16714
16715 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
16716
16717 * net/dbus.el (dbus-unregister-service): New defun.
16718 (dbus-register-property): Register the handlers of
16719 "org.freedesktop.DBus.Properties" for SERVICE.
16720 (dbus-property-handler): Fix docstring.
16721
16722 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16723
16724 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
16725 Quote doc string reference in defvaralias as it is not in special form.
16726 (byte-compile-output-docform): Doc fix.
16727
16728 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
16729
16730 * calc/calc.el (math-2-word-size, math-half-2-word-size)
16731 (calc-complement-signed-mode): New variables.
16732 (calc-set-mode-line): Add indicator for twos-complements.
16733 (math-format-number): Format twos-complement notation.
16734
16735 * calc/calc-bin.el (calc-word-size): Reset the variables
16736 `math-2-word-size' and `math-half-2-word-size'.
16737 (math-format-complement-signed, math-symclip, calcFunc-symclip)
16738 (calc-symclip): New functions.
16739
16740 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
16741
16742 * calc/calc-embed.el (calc-embedded-mode-vars):
16743 Add `calc-complement-signed-mode' to the list of modes.
16744
16745 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
16746 (calc-b-oper-keys): Add `calc-symclip' to list.
16747
16748 * calc/calc-ext.el (math-read-number-fancy): Read complement
16749 signed numbers.
16750 (calc-init-extensions): Add binding for `calc-symclip'.
16751 Add autoload for `calcFunc-symclip' and `calc-symclip'.
16752
16753 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
16754 `calc-symclip'.
16755 (calc-modes-menu): Add item for twos complement mode.
16756
16757 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
16758
16759 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
16760
16761 * register.el (jump-to-register, insert-register): Handle Semantic
16762 tags. From commented-out advice in semantic/senator.el.
16763
16764 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
16765
16766 * vc.el (vc-log-show-limit): New variable.
16767 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
16768 when using a prefix argument.
16769 (vc-print-log-internal): Add new argument LIMIT.
16770
16771 * vc-svn.el (vc-svn-print-log):
16772 * vc-mtn.el (vc-mtn-print-log):
16773 * vc-hg.el (vc-hg-print-log):
16774 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
16775 pass it to the log command when set. Make the BUFFER argument
16776 non-optional.
16777
16778 * vc-sccs.el (vc-sccs-print-log):
16779 * vc-rcs.el (vc-rcs-print-log):
16780 * vc-git.el (vc-git-print-log):
16781 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
16782 ignore it. Make the BUFFER argument non-optional.
16783
16784 * bindings.el (mode-line-buffer-identification): Do not purecopy.
16785
16786 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
16787
16788 * dired.el (dired-mode-map): Move encryption items to "Operate"
16789 menu (Bug#4703).
16790
16791 * strokes.el (strokes-update-window-configuration): Make strokes
16792 buffer current before erasing (Bug#4906).
16793
16794 2009-11-15 Juri Linkov <juri@jurta.org>
16795
16796 * simple.el (set-mark-default-inactive): Add :type, :group
16797 and :version. (Bug#4876)
16798
16799 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
16800
16801 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
16802 (archive-unique-fname): ... here. (Bug#4929)
16803
16804 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
16805
16806 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
16807 with a real fix.
16808
16809 * novice.el (disabled-command-function): Add useful args.
16810 Setup the help buffer so that [back] works.
16811 Remove redundant call to help-mode.
16812 (disabled-command-function): Use `case'.
16813 (en/disable-command): New function extracted from enable-command.
16814 (enable-command, disable-command): Use it.
16815
16816 2009-11-14 Glenn Morris <rgm@gnu.org>
16817
16818 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
16819 constants. (Bug#4913)
16820
16821 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
16822
16823 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
16824
16825 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
16826 defined in C that have no doc-strings. (Bug#1063)
16827
16828 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
16829
16830 * cus-edit.el (data, files):
16831 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
16832
16833 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
16834
16835 * simple.el (shell-command): Doc fix (Bug#4891).
16836
16837 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
16838
16839 2009-11-14 Glenn Morris <rgm@gnu.org>
16840
16841 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
16842 statements for vc-diff, emerge-quit, and rmail-cease-edit.
16843 If they are already loaded, eval-after-load will do the right thing.
16844
16845 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
16846 compiling.
16847
16848 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
16849
16850 * simple.el (x-selection-owner-p): Declare.
16851 (read-mail-command): Use custom radio type rather than choice.
16852 (completion-no-auto-exit): Doc fix.
16853
16854 * custom.el (defgroup):
16855 * epg-config.el (epg): Doc fixes.
16856
16857 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
16858
16859 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
16860 * international/ccl.el (define-ccl-program): Do not purecopy the
16861 docstring, defconst does it anyway.
16862
16863 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
16864
16865 * add-log.el (add-change-log-entry): Avoid displaying the changelog
16866 a second time.
16867
16868 * x-dnd.el (x-dnd-maybe-call-test-function):
16869 * window.el (split-window-vertically):
16870 * whitespace.el (whitespace-help-on):
16871 * vc-rcs.el (vc-rcs-consult-headers):
16872 * userlock.el (ask-user-about-lock-help)
16873 (ask-user-about-supersession-help):
16874 * type-break.el (type-break-force-mode-line-update):
16875 * time-stamp.el (time-stamp-conv-warn):
16876 * terminal.el (te-set-output-log, te-more-break, te-filter)
16877 (te-sentinel, terminal-emulator):
16878 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
16879 (term-write-input-ring, term-check-source, term-start-output-log):
16880 (term-display-buffer-line, term-dynamic-list-completions):
16881 (term-ansi-make-term, serial-term):
16882 * subr.el (selective-display):
16883 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
16884 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
16885 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
16886 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
16887 (speedbar-remove-localized-speedbar-support)
16888 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
16889 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
16890 (speedbar-buffers-line-directory):
16891 * simple.el (shell-command-on-region, append-to-buffer)
16892 (prepend-to-buffer):
16893 * shadowfile.el (shadow-save-todo-file):
16894 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
16895 (scroll-bar-maybe-set-window-start):
16896 * sb-image.el (speedbar-image-dump):
16897 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
16898 (load-save-place-alist-from-file):
16899 * ps-samp.el (ps-print-message-from-summary):
16900 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
16901 (ps-background-image, ps-begin-job, ps-do-despool):
16902 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
16903 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
16904 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
16905 (pr-call-process, pr-file-list, pr-interface-save):
16906 * novice.el (disabled-command-function)
16907 (enable-command, disable-command):
16908 * mouse.el (mouse-buffer-menu-alist):
16909 * mouse-copy.el (mouse-kill-preserving-secondary):
16910 * macros.el (kbd-macro-query):
16911 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
16912 * informat.el (batch-info-validate):
16913 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
16914 * hippie-exp.el (try-expand-dabbrev-visible):
16915 * help-mode.el (help-make-xrefs):
16916 * help-fns.el (describe-variable):
16917 * generic-x.el (bat-generic-mode-run-as-comint):
16918 * finder.el (finder-mouse-select):
16919 * find-dired.el (find-dired-sentinel):
16920 * filesets.el (filesets-file-close):
16921 * files.el (list-directory):
16922 * faces.el (list-faces-display, describe-face):
16923 * facemenu.el (list-colors-display):
16924 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
16925 * epg.el (epg--process-filter, epg-cancel):
16926 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
16927 (epa--read-signature-type):
16928 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
16929 (emerge-file-names):
16930 * ehelp.el (electric-helpify):
16931 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
16932 * ediff-vers.el (rcs-ediff-view-revision):
16933 * ediff-util.el (ediff-setup):
16934 * ediff-mult.el (ediff-append-custom-diff):
16935 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
16936 (ediff-wordify):
16937 * echistory.el (Electric-command-history-redo-expression):
16938 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
16939 * disp-table.el (describe-display-table):
16940 * dired.el (dired-find-buffer-nocreate):
16941 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
16942 * dabbrev.el (dabbrev--same-major-mode-p):
16943 * chistory.el (list-command-history):
16944 * apropos.el (apropos-documentation):
16945 * allout.el (allout-obtain-passphrase):
16946 (allout-copy-exposed-to-buffer):
16947 (allout-verify-passphrase): Use with-current-buffer.
16948
16949 2009-11-13 Glenn Morris <rgm@gnu.org>
16950
16951 * Makefile.in (ELCFILES): Regenerate.
16952
16953 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
16954
16955 * net/dbus.el (dbus-registered-objects-table): Rename from
16956 `dbus-registered-functions-table', because it contains also properties.
16957 (dbus-unregister-object): Unregister also properties.
16958 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
16959 Use a timeout of 500 msec, in order to not block.
16960 (dbus-register-property, dbus-property-handler): New defuns.
16961
16962 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
16963
16964 * simple.el (minibuffer-default-add-completions): Drop deprecated
16965 4th arg.
16966
16967 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
16968
16969 * textmodes/artist.el (artist-mouse-choose-operation):
16970 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
16971 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
16972 (artist-compute-up-event-key): New function.
16973 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
16974
16975 2009-11-13 Kenichi Handa <handa@m17n.org>
16976
16977 * language/japan-util.el: Make sure that the value of jisx0208
16978 property is jisx0208 character.
16979
16980 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
16981
16982 * international/mule.el (auto-coding-regexp-alist): Only purecopy
16983 car or each item, not the whole list.
16984
16985 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
16986
16987 * minibuffer.el (minibuffer-completion-help):
16988 Use minibuffer-hide-completions.
16989
16990 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
16991
16992 * dired.el (dired-save-positions, dired-restore-positions): New funs.
16993 (dired-revert): Use them (bug#4880).
16994
16995 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
16996
16997 * tooltip.el (tooltip-frame-parameters): Undo previous change.
16998
16999 2009-11-12 Juri Linkov <juri@jurta.org>
17000
17001 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
17002 New functions.
17003 (find-file-literally-at-point): Alias of `ffap-literally'.
17004
17005 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
17006
17007 * textmodes/ispell.el (ispell-skip-region-alist):
17008 * textmodes/css-mode.el (auto-mode-alist):
17009 * progmodes/compile.el (auto-mode-alist):
17010 * international/mule.el (ctext-non-standard-encodings-alist)
17011 (ctext-non-standard-encodings-regexp):
17012 * simple.el (shell-command-switch, text-read-only):
17013 * replace.el (occur-mode-map):
17014 * paths.el (rmail-file-name):
17015 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
17016 * find-file.el (ff-special-constructs):
17017 * files.el (file-name-handler-alist):
17018 * composite.el: Purecopy strings.
17019
17020 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
17021
17022 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
17023
17024 * widget.el (define-widget): Purecopy the docstring.
17025 * international/mule-cmds.el (charset): Do not purecopy the
17026 docstring here, define-widget does it.
17027
17028 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
17029 * textmodes/bibtex-style.el (auto-mode-alist):
17030 * progmodes/inf-lisp.el (inferior-lisp-prompt):
17031 * progmodes/compile.el (compile-command):
17032 * language/korea-util.el (default-korean-keyboard):
17033 * international/mule-conf.el (file-coding-system-alist):
17034 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
17035 * tooltip.el (tooltip-frame-parameters):
17036 * newcomment.el (comment-end, comment-padding):
17037 * dired.el (dired-trivial-filenames):
17038 * comint.el (comint-file-name-prefix): Purecopy initial values.
17039
17040 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
17041
17042 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
17043 (tramp-advice-minibuffer-electric-tilde): Unload advices via
17044 `tramp-unload'.
17045 (tramp-advice-make-auto-save-file-name)
17046 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
17047 after removing the advice.
17048
17049 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
17050
17051 * progmodes/grep.el (grep-regexp-alist):
17052 * international/mule-cmds.el (iso-2022-control-alist):
17053 * emacs-lisp/timer.el (timer-duration-words):
17054 * subr.el (version-separator, version-regexp-alist):
17055 * minibuffer.el (completion-styles-alist):
17056 * faces.el (face-attribute-name-alist, list-faces-sample-text):
17057 Change defvars to defconsts.
17058
17059 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
17060 * loadup.el ("international/mule-conf"): Load the byte compiled version.
17061 * international/mule-conf.el: Allow to be byte compiled.
17062
17063 * international/mule.el (define-charset): Purecopy props.
17064 (load-with-code-conversion): Purecopy doc string and file name.
17065 (put-charset-property): Purecopy strings.
17066 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
17067
17068 * international/mule-cmds.el (register-input-method): Purecopy arguments.
17069 (define-char-code-property): Correctly purecopy the table.
17070
17071 * international/ccl.el (define-ccl-program): Purecopy the docstring.
17072
17073 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
17074
17075 * subr.el (add-hook): Purecopy strings.
17076 (eval-after-load): Purecopy load-history-regexp and the form.
17077
17078 * custom.el (custom-declare-group): Purecopy load-file-name.
17079
17080 * subr.el (menu-bar-separator): New defconst.
17081 * net/eudc.el (eudc-tools-menu):
17082 * international/mule-cmds.el (set-coding-system-map)
17083 (mule-menu-keymap):
17084 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
17085 * vc-hooks.el (vc-menu-map):
17086 * replace.el (occur-mode-map):
17087 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
17088 (menu-bar-edit-menu, menu-bar-goto-menu)
17089 (menu-bar-custom-menu, menu-bar-showhide-menu)
17090 (menu-bar-options-menu, menu-bar-tools-menu)
17091 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
17092 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
17093 (menu-bar-help-menu):
17094 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
17095 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
17096
17097 * term/x-win.el (x-gtk-stock-map):
17098 * progmodes/vera-mode.el (auto-mode-alist):
17099 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
17100 (inferior-lisp-program, inferior-lisp-load-command):
17101 * progmodes/hideshow.el (hs-special-modes-alist):
17102 * progmodes/gud.el (same-window-regexps):
17103 * progmodes/grep.el (grep-program, find-program, xargs-program):
17104 * net/telnet.el (same-window-regexps):
17105 * net/rlogin.el (same-window-regexps):
17106 * language/ethiopic.el (font-ccl-encoder-alist):
17107 * vc-sccs.el (vc-sccs-master-templates):
17108 * vc-rcs.el (vc-rcs-master-templates):
17109 * subr.el (cl-assertion-failed):
17110 * simple.el (next-error-overlay-arrow-position):
17111 * lpr.el (lpr-command):
17112 * locate.el (locate-ls-subdir-switches):
17113 * info.el (same-window-regexps, info)
17114 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
17115 * image-mode.el (image-mode, auto-mode-alist):
17116 * hippie-exp.el (hippie-expand-ignore-buffers):
17117 * format.el (format-alist):
17118 * find-dired.el (find-ls-subdir-switches, find-grep-options)
17119 (find-name-arg):
17120 * facemenu.el (facemenu-keybindings):
17121 * dired.el (dired-listing-switches, dired-chown-program):
17122 * diff.el (diff-switches, diff-command):
17123 * cus-edit.el (same-window-regexps):
17124 * bindings.el (mode-line-mule-info)
17125 (mode-line-buffer-identification): Purecopy strings.
17126
17127 2009-11-11 Juri Linkov <juri@jurta.org>
17128
17129 * simple.el (dired-get-filename) <declare-function>:
17130 Tell the byte-compiler about dired-get-filename.
17131 (shell-command): In Dired mode, get filename from the current line
17132 as the default value.
17133
17134 2009-11-10 Glenn Morris <rgm@gnu.org>
17135
17136 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
17137 * calendar/holidays.el, progmodes/cperl-mode.el:
17138 Update x-popup-menu declarations.
17139
17140 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
17141 (list-load-path-shadows): Use dolist.
17142 (list-load-path-shadows): Use with-current-buffer.
17143
17144 2009-11-10 Juri Linkov <juri@jurta.org>
17145
17146 * minibuffer.el (read-file-name): Support a list of default values
17147 in `default-filename'. Use the first file name where only one
17148 element is required. Doc fix.
17149
17150 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
17151
17152 * net/dbus.el (dbus-unregister-object): Release service, if no
17153 other method is registered for it.
17154
17155 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
17156
17157 * bookmark.el (bookmark-completing-read): Sort bookmark names if
17158 bookmark-sort-flag is non-nil (Bug#4653).
17159
17160 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
17161
17162 * emulation/cua-base.el: Add CUA property to some CC mode commands
17163 (Bug#4100).
17164
17165 2009-11-08 Kevin Ryde <user42@zip.com.au>
17166
17167 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
17168 at end of sentence (Bug#4818).
17169
17170 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
17171
17172 * progmodes/compile.el (compilation-error-regexp-alist-alist):
17173 Handle "see declaration of" MSFT statements (Bug#4100).
17174
17175 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
17176
17177 * net/tramp.el (tramp-advice-make-auto-save-file-name)
17178 (tramp-advice-file-expand-wildcards): Unload via
17179 `ad-remove-advice'.
17180
17181 * net/trampver.el: Update release number.
17182
17183 2009-11-08 Kevin Ryde <user42@zip.com.au>
17184
17185 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
17186 `ad-do-it'.
17187
17188 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
17189
17190 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
17191 in order to keep context in SELinux.
17192
17193 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
17194
17195 * dired-aux.el (dired-query): Place cursor in echo area and allow
17196 C-g.
17197
17198 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
17199 menu item if not on a directory (Bug#4701).
17200
17201 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
17202
17203 Sync with Tramp 2.1.17.
17204
17205 * net/tramp.el (tramp-handle-copy-directory): Don't use
17206 `file-remote-p' (due to compatibility).
17207
17208 * net/tramp-compat.el (tramp-compat-copy-directory)
17209 (tramp-compat-delete-directory): New defuns.
17210
17211 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
17212 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
17213 Use `tramp-compat-delete-directory'.
17214
17215 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
17216 (tramp-smb-handle-delete-directory):
17217 Use `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
17218
17219 * net/trampver.el: Update release number.
17220
17221 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
17222
17223 * tar-mode.el (tar-copy): Call write-region on the right buffer
17224 (Bug#4857).
17225
17226 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
17227 by hand, if necessary (Bug#4878).
17228
17229 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
17230
17231 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
17232 align size column (Bug#4839).
17233
17234 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
17235 statement.
17236
17237 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
17238
17239 * progmodes/ld-script.el (auto-mode-alist):
17240 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
17241
17242 * cus-face.el (custom-declare-face): Purecopy face spec.
17243
17244 2009-11-06 Kenichi Handa <handa@m17n.org>
17245
17246 * international/uni-bidi.el: Re-generated.
17247 * international/uni-category.el: Re-generated.
17248 * international/uni-combining.el: Re-generated.
17249 * international/uni-mirrored.el: Re-generated.
17250
17251 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
17252
17253 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
17254 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
17255 (tex-start-options, slitex-run-command, latex-run-command)
17256 (tex-run-command, tex-directory):
17257 * textmodes/ispell.el (ispell-html-skip-alists)
17258 (ispell-tex-skip-alists, ispell-tex-skip-alists):
17259 * textmodes/fill.el (adaptive-fill-first-line-regexp):
17260 (adaptive-fill-regexp):
17261 * textmodes/dns-mode.el (auto-mode-alist):
17262 * progmodes/python.el (interpreter-mode-alist):
17263 * progmodes/etags.el (tags-compression-info-list):
17264 * progmodes/etags.el (tags-file-name):
17265 * net/browse-url.el (browse-url-galeon-program)
17266 (browse-url-firefox-program):
17267 * mail/sendmail.el (mail-signature-file)
17268 (mail-citation-prefix-regexp):
17269 * international/mule-conf.el (eight-bit):
17270 * international/latexenc.el (latex-inputenc-coding-alist):
17271 * international/fontset.el (x-pixel-size-width-font-regexp):
17272 * emacs-lisp/warnings.el (warning-type-format):
17273 * emacs-lisp/trace.el (trace-buffer):
17274 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
17275 (emacs-lisp-mode-map):
17276 * calendar/holidays.el (holiday-solar-holidays)
17277 (holiday-bahai-holidays, holiday-islamic-holidays)
17278 (holiday-christian-holidays, holiday-hebrew-holidays)
17279 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
17280 (hebrew-holidays-1, holiday-oriental-holidays)
17281 (holiday-general-holidays):
17282 * x-dnd.el (x-dnd-known-types):
17283 * tool-bar.el (tool-bar):
17284 * startup.el (site-run-file):
17285 * shell.el (shell-dumb-shell-regexp):
17286 * rfn-eshadow.el (file-name-shadow-tty-properties)
17287 (file-name-shadow-properties):
17288 * paths.el (remote-shell-program, news-directory):
17289 * mouse.el ([C-down-mouse-3]):
17290 * menu-bar.el (menu-bar-tools-menu):
17291 * jka-cmpr-hook.el (jka-compr-load-suffixes)
17292 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
17293 (jka-compr-compression-info-list):
17294 * isearch.el (search-whitespace-regexp):
17295 * image-file.el (image-file-name-extensions):
17296 * find-dired.el (find-ls-option):
17297 * files.el (directory-listing-before-filename-regexp)
17298 (directory-free-space-args, insert-directory-program)
17299 (list-directory-brief-switches, magic-fallback-mode-alist)
17300 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
17301 (automount-dir-prefix):
17302 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
17303 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
17304 (face-font-registry-alternatives, face-font-registry-alternatives)
17305 (face-font-family-alternatives):
17306 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
17307 (facemenu-foreground-menu, facemenu-face-menu):
17308 * epa-hook.el (epa-file-name-regexp):
17309 * dnd.el (dnd-protocol-alist):
17310 * textmodes/rst.el (auto-mode-alist):
17311 * button.el (default-button): Purecopy strings.
17312
17313 2009-11-06 Glenn Morris <rgm@gnu.org>
17314
17315 * Makefile.in (ELCFILES): Update.
17316
17317 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
17318
17319 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
17320 * emacs-lisp/levents.el: Move to obsolete/levents.el.
17321
17322 * nxml/xsd-regexp.el (xsdre-gen-categories):
17323 * nxml/xmltok.el (xmltok-parse-entity):
17324 * nxml/rng-parse.el (rng-parse-validate-file):
17325 * nxml/rng-maint.el (rng-format-manual)
17326 (rng-manual-output-force-new-line):
17327 * nxml/rng-loc.el (rng-save-schema-location-1):
17328 * nxml/rng-cmpct.el (rng-c-parse-file):
17329 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
17330 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
17331
17332 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
17333
17334 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
17335 Remove extra save-excursions and make-variable-buffer-local's.
17336 Suggested by Stefan Monnier.
17337
17338 (verilog-getopt-file, verilog-module-inside-filename-p)
17339 (verilog-set-define): Merge GNU 1.35 and repair changes from
17340 switching to using with-current-buffer.
17341
17342 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
17343 being treated as a number and confusing AUTORESET.
17344 Reported by Dan Dever.
17345
17346 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
17347 Add verilog-auto-ignore-concat to fix backward compatibility with
17348 older verilog-modes. Reported by Dan Katz.
17349
17350 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
17351 containing closing anchors "...$".
17352
17353 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
17354 Reported by Wade Smith.
17355
17356 (verilog-batch-execute-func): Comment on function usage.
17357
17358 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
17359
17360 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
17361 for labels.
17362
17363 (verilog-label-re, verilog-calc-1): Support proper indent of named
17364 asserts.
17365
17366 (verilog-backward-token, verilog-basic-complete-re)
17367 (verilog-beg-of-statement, verilog-indent-re): Support proper
17368 indent of the assert statement at the beginning of a block of text.
17369
17370 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
17371 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
17372 tokens as begins.
17373
17374 2009-11-05 Glenn Morris <rgm@gnu.org>
17375
17376 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
17377 Emacs 19. (Bug#1531)
17378 (byte-compile-fix-header): Update for the above change.
17379 Drop test for epoch::version.
17380
17381 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
17382 * cus-dep.el (custom-make-dependencies):
17383 * finder.el (finder-compile-keywords):
17384 Use autoload-rubric's feature argument.
17385
17386 * calendar/diary-lib.el (top-level): Make load behave more like require.
17387
17388 * vc-git.el (vc-git-stash-map): Move definition before use.
17389
17390 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
17391
17392 * custom.el (custom-declare-group): Purecopy standard-value.
17393 (custom-declare-group): Purecopy custom-prefix.
17394
17395 * international/mule.el (load-with-code-conversion):
17396 Call do-after-load-evaluation unconditionally.
17397
17398 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
17399
17400 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
17401
17402 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
17403
17404 2009-11-04 Glenn Morris <rgm@gnu.org>
17405
17406 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
17407 (byte-compile-compatibility): Remove option.
17408 (byte-compile-close-variables, byte-compile-fix-header)
17409 (byte-compile-insert-header, byte-compile-output-docform)
17410 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
17411 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
17412 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
17413 (byte-compile-insert, byte-compile-defun):
17414 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
17415 (byte-defop-compiler19): Remove.
17416 Without byte-compile-compatibility, the 'emacs19-opcode property is not
17417 used by anything. Replace all calls with byte-defop-compiler.
17418
17419 2009-11-04 Juri Linkov <juri@jurta.org>
17420
17421 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
17422 (menu-bar-options-menu): Don't quote the `prop' arg of
17423 `menu-bar-make-mm-toggle'.
17424
17425 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
17426
17427 * calendar/calendar.el (cal-loaddefs):
17428 * calendar/diary-lib.el (diary-loaddefs):
17429 * calendar/holidays.el (hol-loaddefs):
17430 * eshell/esh-module.el (esh-groups): Load rather than require.
17431
17432 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
17433
17434 * calendar/todo-mode.el (todo-add-category): Don't hardcode
17435 point-min==1.
17436 (todo-top-priorities): Only display-buffer when called interactively.
17437 (todo-item-start): Don't save excursion point.
17438 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
17439 (todo-insert-item-here, todo-file-item, todo-remove-item):
17440 Adjust uses of todo-item-start and todo-item-end.
17441
17442 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
17443 (autoload-rubric): Don't use any more.
17444
17445 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
17446 and only put a prop if it is non-nil.
17447
17448 2009-11-03 Juri Linkov <juri@jurta.org>
17449
17450 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
17451 (menu-bar-options-menu): Fix list quoting (Bug#4429).
17452
17453 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
17454 and "Menu" to make top-level menu item visually one unit (like
17455 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
17456 multi-word menu items). Fix :help string for quit-window.
17457
17458 2009-11-03 Glenn Morris <rgm@gnu.org>
17459
17460 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
17461 (byte-compile-file-form-define-abbrev-table)
17462 (byte-compile-file-form-custom-declare-variable)
17463 (byte-compile-variable-ref, byte-compile-defvar):
17464 Whether or not a warning is enabled should only affect whether we issue
17465 the warning, not whether or not we collect the relevant data.
17466 Eg warnings can be turned on and off throughout the course of a file.
17467
17468 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
17469 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
17470
17471 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
17472
17473 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
17474 * play/mpuz.el (mpuz-create-buffer):
17475 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
17476 (lm-print-y,s,noise, lm-print-w0, lm-init):
17477 * play/gomoku.el (gomoku-prompt-for-move):
17478 * play/fortune.el (fortune-in-buffer):
17479 * play/dissociate.el (dissociated-press):
17480 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
17481 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
17482 * mail/supercite.el (sc-eref-show):
17483 * mail/smtpmail.el (smtpmail-send-it):
17484 * mail/rmailsum.el (rmail-summary-next-labeled-message)
17485 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
17486 (rmail-summary-undelete-many, rmail-summary-rmail-update)
17487 (rmail-summary-goto-msg, rmail-summary-expunge)
17488 (rmail-summary-get-new-mail, rmail-summary-search-backward)
17489 (rmail-summary-add-label, rmail-summary-output-menu)
17490 (rmail-summary-output-body):
17491 * mail/rfc822.el (rfc822-addresses):
17492 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
17493 * mail/mailpost.el (post-mail-send-it):
17494 * mail/hashcash.el (hashcash-generate-payment):
17495 * mail/feedmail.el (feedmail-run-the-queue)
17496 (feedmail-queue-send-edit-prompt-help-first)
17497 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
17498 (feedmail-deduce-address-list):
17499 * eshell/esh-ext.el (eshell-remote-command):
17500 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
17501 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
17502 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
17503 (viper-save-string-in-file, viper-valid-marker):
17504 * emulation/viper-keym.el (viper-toggle-key):
17505 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
17506 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
17507 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
17508 * emulation/viper-cmd.el (viper-exec-form-in-vi)
17509 (viper-exec-form-in-emacs, viper-brac-function):
17510 * emulation/viper.el (viper-delocalize-var):
17511 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
17512 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
17513 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
17514 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
17515 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
17516 * emulation/edt.el (edt-electric-helpify):
17517 * emulation/cua-rect.el (cua--rectangle-aux-replace):
17518 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
17519 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
17520 (cua-indent-to-global-mark-column):
17521 * calendar/diary-lib.el (calendar-mark-1):
17522 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
17523 Use with-current-buffer.
17524 * emulation/viper.el (viper-delocalize-var): Use dolist.
17525
17526 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
17527
17528 * comint.el (comint-replace-by-expanded-history-before-point):
17529 Replace !! with the previous input string literally (Bug#1795).
17530
17531 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
17532
17533 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
17534 to be made up of whitespace.
17535
17536 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
17537
17538 * minibuffer.el (read-file-name): Don't use file dialogs for
17539 remote directories (Bug#99).
17540
17541 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
17542
17543 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
17544
17545 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
17546
17547 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
17548 instead of deleting the window or frame.
17549
17550 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
17551
17552 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
17553 Support face colors.
17554
17555 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
17556 New function. Support face colors (Bug#1168).
17557 (tex-common-initialization): Use it.
17558
17559 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
17560 mode allows it (Bug#1168).
17561
17562 2009-10-31 Juri Linkov <juri@jurta.org>
17563
17564 * facemenu.el (list-colors-display): Don't mark buffer as
17565 modified (Bug#3948).
17566
17567 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
17568
17569 * international/mule-diag.el (list-character-sets-1):
17570 Minor message fix (Bug#3526).
17571
17572 * progmodes/etags.el (etags-list-tags, etags-tags-apropos):
17573 Fix face property (Bug#4834).
17574 (etags-list-tags, etags-tags-apropos-additional)
17575 (etags-tags-apropos, tags-select-tags-table): Add follow-link
17576 property.
17577
17578 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
17579 items.
17580
17581 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
17582
17583 * textmodes/two-column.el (2C-split):
17584 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
17585 * textmodes/tex-mode.el (tex-set-buffer-directory):
17586 * textmodes/spell.el (spell-region, spell-string):
17587 * textmodes/reftex.el (reftex-erase-buffer):
17588 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
17589 * textmodes/reftex-toc.el (reftex-toc-promote-action):
17590 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
17591 (reftex-select-item):
17592 * textmodes/reftex-ref.el (reftex-label-info-update)
17593 (reftex-offer-label-menu):
17594 * textmodes/reftex-index.el (reftex-index-change-entry)
17595 (reftex-index-phrases-info):
17596 * textmodes/reftex-global.el (reftex-create-tags-file)
17597 (reftex-save-all-document-buffers, reftex-ensure-write-access):
17598 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
17599 (reftex-view-crossref-from-bibtex):
17600 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
17601 (reftex-extract-bib-entries-from-thebibliography)
17602 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
17603 * textmodes/refbib.el (r2b-capitalize-title):
17604 (r2b-convert-buffer, r2b-help):
17605 * textmodes/page-ext.el (pages-directory)
17606 (pages-directory-goto-with-mouse):
17607 * textmodes/bibtex.el (bibtex-validate-globally):
17608 * textmodes/bib-mode.el (bib-capitalize-title):
17609 * textmodes/artist.el (artist-clear-buffer, artist-system):
17610 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
17611 (local-set-scheme-interaction-buffer, xscheme-process-filter)
17612 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
17613 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
17614 (xscheme-send-control-g-interrupt, xscheme-start-process)
17615 (xscheme-process-sentinel, xscheme-cd):
17616 * progmodes/verilog-mode.el (verilog-read-always-signals)
17617 (verilog-set-define, verilog-getopt-file)
17618 (verilog-module-inside-filename-p):
17619 * progmodes/sh-script.el:
17620 * progmodes/python.el (python-pdbtrack-get-source-buffer)
17621 (python-pdbtrack-grub-for-buffer, python-execute-file):
17622 * progmodes/octave-inf.el (inferior-octave):
17623 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
17624 (idlwave-shell-compile-helper-routines, idlwave-set-local)
17625 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
17626 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
17627 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
17628 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
17629 (idlwave-shell-filter, idlwave-shell-examine-highlight)
17630 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
17631 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
17632 (idlwave-shell-examine-display, idlwave-shell-run-region)
17633 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
17634 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
17635 * progmodes/idlw-help.el (idlwave-help-get-special-help)
17636 (idlwave-help-get-help-buffer):
17637 * progmodes/gud.el (gud-basic-call, gud-find-class)
17638 (gud-tooltip-activate-mouse-motions-if-enabled):
17639 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
17640 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
17641 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
17642 (ebrowse-tags-next-file):
17643 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
17644 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
17645 (ebnf-eps-finish-and-write):
17646 * progmodes/cpp.el (cpp-edit-save):
17647 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
17648 * progmodes/cc-defs.el (c-emacs-features):
17649 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
17650 (antlr-directory-dependencies):
17651 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
17652 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
17653 (ada-find-any-references, ada-make-filename-from-adaname)
17654 (ada-make-body-gnatstub):
17655 * obsolete/rnews.el (news-list-news-groups):
17656 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
17657 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
17658 * net/rcirc.el (rcirc-debug):
17659 * net/newst-treeview.el (newsticker--treeview-list-add-item)
17660 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
17661 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
17662 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
17663 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
17664 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
17665 (newsticker--treeview-list-clear-highlight)
17666 (newsticker--treeview-list-update-highlight)
17667 (newsticker--treeview-list-highlight-start)
17668 (newsticker--treeview-tree-update-highlight)
17669 (newsticker--treeview-get-selected-item)
17670 (newsticker-treeview-mark-list-items-old)
17671 (newsticker--treeview-set-current-node):
17672 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
17673 * net/newst-backend.el (newsticker--get-news-by-funcall)
17674 (newsticker--get-news-by-wget, newsticker--image-get)
17675 (newsticker--image-sentinel):
17676 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
17677 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
17678 (eudc-ph-close-session):
17679 * net/eudc.el (eudc-save-options):
17680 * language/thai-word.el (thai-update-word-table):
17681 * language/japan-util.el (japanese-string-conversion):
17682 * international/titdic-cnv.el (tsang-quick-converter)
17683 (ziranma-converter, ctlau-converter):
17684 * international/mule-cmds.el (describe-language-environment):
17685 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
17686 (skkdic-convert-postfix, skkdic-convert-prefix):
17687 (skkdic-convert-okuri-nasi, skkdic-convert):
17688 * emacs-lisp/re-builder.el (reb-update-overlays):
17689 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
17690 * emacs-lisp/gulp.el (gulp-send-requests):
17691 * emacs-lisp/find-gc.el (trace-call-tree):
17692 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
17693 (eieio-describe-generic):
17694 * emacs-lisp/eieio-base.el (eieio-persistent-read):
17695 * emacs-lisp/edebug.el (edebug-outside-excursion):
17696 * emacs-lisp/debug.el (debugger-make-xrefs):
17697 * emacs-lisp/cust-print.el (custom-prin1-to-string):
17698 * emacs-lisp/chart.el (chart-new-buffer):
17699 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
17700 Use with-current-buffer.
17701 * textmodes/artist.el (artist-system): Don't call
17702 copy-sequence on a fresh string.
17703 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
17704
17705 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
17706
17707 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
17708 is no item to edit. (Bug#4820)
17709 (todo-top-priorities): Restore point and restore narrowing in Todo
17710 buffer. (Bug#4820)
17711
17712 2009-10-31 Glenn Morris <rgm@gnu.org>
17713
17714 * net/ange-ftp.el (top-level): Don't require dired when compiling.
17715 (comint-last-output-start, comint-last-input-start)
17716 (comint-last-input-end): Don't defvar when compiling.
17717 (ange-ftp-process-file): Use bound-and-true-p.
17718
17719 * pcmpl-rpm.el (top-level): Move provide statement to end.
17720 (pcmpl-rpm): Remove unused custom group.
17721
17722 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
17723
17724 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
17725
17726 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
17727 (byte-compile-warnings): Add `constants' as an option.
17728 (byte-compile-callargs-warn, byte-compile-arglist-warn)
17729 (display-call-tree): Update for byte-compile-fdefinition possibly
17730 returning `(macro lambda ...)'. (Bug#4778)
17731 (byte-compile-variable-ref, byte-compile-setq-default):
17732 Respect `constants' member of byte-compile-warnings.
17733
17734 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
17735
17736 * vc-bzr.el (vc-bzr-revision-keywords): New var.
17737 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
17738 to "submit:".
17739
17740 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
17741
17742 * textmodes/ispell.el (ispell-skip-region-alist):
17743 * international/mule-conf.el (eight-bit):
17744 * international/fontset.el (font-encoding-alist):
17745 * startup.el (pure-space-overflow-message):
17746 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
17747 * paths.el (gnus-nntp-service, rmail-spool-directory)
17748 (term-file-prefix):
17749 * files.el (save-some-buffers-action-alist):
17750 * cmuscheme.el (same-window-buffer-names):
17751 * ielm.el (same-window-buffer-names):
17752 * shell.el (same-window-buffer-names):
17753 * mail/sendmail.el (same-window-buffer-names):
17754 * progmodes/inf-lisp.el (same-window-buffer-names):
17755 * bindings.el (mode-line-client)
17756 (mode-line-column-line-number-mode-map):
17757 * language/tibetan.el (tibetan-precomposition-rule-regexp)
17758 (tibetan-precomposed-regexp): Purecopy string arguments.
17759
17760 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17761
17762 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
17763 (calcDigit-nondigit):
17764 * calc/calc-yank.el (calc-copy-to-buffer):
17765 * calc/calc-units.el (calc-invalidate-units-table):
17766 * calc/calc-trail.el (calc-trail-yank):
17767 * calc/calc-store.el (calc-insert-variables):
17768 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
17769 * calc/calc-prog.el (calc-read-parse-table):
17770 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
17771 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
17772 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
17773 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
17774 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
17775 (calc-graph-name, calc-graph-find-command, calc-graph-view)
17776 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
17777 * calc/calc-ext.el (calc-realign):
17778 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
17779 (calc-embedded-finish-edit, calc-embedded-make-info)
17780 (calc-embedded-finish-command, calc-embedded-stack-change):
17781 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
17782
17783 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
17784 shell-dynamic-complete-filename in preference to
17785 comint-dynamic-complete-filename.
17786
17787 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
17788 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
17789 Don't consider whether the display supports colors.
17790 (bookmark-import-new-list): Use dolist.
17791 (bookmark-bmenu-mode-map): Move initialization into declaration.
17792 (bookmark-bmenu-list): Use dolist, simplify.
17793 (bookmark-show-all-annotations): Use save-selected-window and dolist.
17794 (menu-bar-final-items): Use push.
17795
17796 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
17797
17798 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
17799 it works on remote files.
17800 (vc-hg-diff): Don't pass any `--cwd' argument.
17801
17802 2009-10-27 Kevin Ryde <user42@zip.com.au>
17803
17804 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
17805 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
17806 (Further to Bug#3921).
17807
17808 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
17809
17810 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
17811 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
17812 calling `tramp-imap-put-file'. Add file size to the call.
17813 (tramp-imap-get-file-entries): Compute also user name, file size,
17814 and date.
17815 (tramp-imap-handle-insert-directory): Insert uid and gid.
17816 (tramp-imap-handle-file-attributes): Transform uid and gid
17817 according to `id-format'.
17818 (tramp-imap-put-file): New optional parameter SIZE. Encode file
17819 size in header X-Size.
17820
17821 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
17822
17823 * simple.el (transpose-subr): Give clearer error when the mark
17824 is not set. (Bug#4807)
17825
17826 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
17827
17828 * net/tramp.el (tramp-perl-file-truename): New defconst.
17829 Perl code contributed by yary <not.com@gmail.com> (tiny change).
17830 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
17831 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
17832 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
17833
17834 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
17835 Ignore `dired-call-process'.
17836 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
17837
17838 2009-10-26 Julian Scheid <julians37@gmail.com>
17839
17840 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
17841 (tramp-get-remote-readlink): New defun.
17842 (tramp-handle-file-truename): Use it.
17843 (tramp-handle-file-exists-p): Check file-attributes cache, assume
17844 file exists if cache value present.
17845 (tramp-check-cached-permissions): New defun.
17846 (tramp-handle-file-readable-p): Use it.
17847 (tramp-handle-file-writable-p): Likewise.
17848 (tramp-handle-file-executable-p): Likewise.
17849 (tramp-handle-file-name-all-completions): Try using Perl to get
17850 partial completions. When perl not available, combine `cd' and
17851 `ls' into single remote operation and use shell expansion to get
17852 partial remote directory contents. Set `file-exists-p' cache for
17853 directory and any files returned by ls. Change cache handling to
17854 support partial directory contents. Use error message emitted by
17855 remote `cd' or Perl code for local tramp-error.
17856 (tramp-do-copy-or-rename-file-directly): Avoid separate
17857 tramp-send-command-and-check call.
17858 (tramp-handle-process-file): Merge three remote ops into one.
17859 Do not flush all caches when `process-file-side-effects' is set.
17860 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
17861 file-attributes shows uid/gid to be set already.
17862
17863 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
17864
17865 * textmodes/tex-mode.el (tex-dvi-view-command)
17866 (tex-show-queue-command, tex-open-quote):
17867 * progmodes/ruby-mode.el (auto-mode-alist)
17868 (interpreter-mode-alist): Purecopy strings.
17869
17870 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
17871
17872 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
17873 string for the hook, keymap and abbrev table.
17874
17875 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
17876
17877 * x-dnd.el (x-dnd-xdnd-to-action):
17878 * startup.el (fancy-startup-text, fancy-about-text): Change to
17879 defconst from defvar.
17880
17881 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
17882
17883 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
17884 Purecopy initialization strings.
17885
17886 * mail/sendmail.el (mail-header-separator)
17887 (mail-personal-alias-file):
17888 * mail/rmail.el (rmail-default-dont-reply-to-names)
17889 (rmail-ignored-headers, rmail-retry-ignored-headers)
17890 (rmail-highlighted-headers, rmail-secondary-file-directory)
17891 (rmail-secondary-file-regexp):
17892 * files.el (null-device, file-name-invalid-regexp)
17893 (locate-dominating-stop-dir-regexp)
17894 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
17895 (interpreter-mode-alist): Use mapcar instead of mapc.
17896
17897 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
17898
17899 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
17900 (completion-ignored-extensions):
17901 (debug-ignored-errors): Purecopy strings.
17902
17903 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
17904
17905 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
17906 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
17907 (pcomplete--here): Use push.
17908
17909 * subr.el (all-completions): Declare the 4th arg obsolete.
17910
17911 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
17912
17913 * pcomplete.el (pcomplete-unquote-argument-function): New var.
17914 (pcomplete-unquote-argument): New function.
17915 (pcomplete--common-suffix): Always pay attention to case.
17916 (pcomplete--table-subvert): Quote and unquote the text.
17917 (pcomplete--common-quoted-suffix): New function.
17918 (pcomplete-std-complete): Use it and pcomplete-begin.
17919
17920 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
17921 we're inside a dedicated or minibuffer window.
17922
17923 2009-10-24 Karl Fogel <kfogel@red-bean.com>
17924
17925 * bookmark.el: Update documentation, especially documentation
17926 of `bookmark-alist' and of the bookmark file format.
17927 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
17928
17929 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
17930
17931 * mail/emacsbug.el (report-emacs-bug): Clarify that the
17932 keybindings apply to the mail buffer (Bug#4003). Shrink help
17933 window to buffer.
17934
17935 * whitespace.el (whitespace-mode, whitespace-newline-mode)
17936 (global-whitespace-mode, global-whitespace-newline-mode)
17937 (whitespace-toggle-options, global-whitespace-toggle-options):
17938 Doc fix (Bug#3660).
17939
17940 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
17941 of xmltok-start before the end tag was inserted (Bug#2840).
17942
17943 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
17944 patterns that are preceded by an open-paren (Bug#1320).
17945
17946 2009-10-24 Sven Joachim <svenjoac@gmx.de>
17947
17948 * files.el (delete-directory): Delete symlinks to directories with
17949 delete-file (Bug#4739).
17950
17951 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
17952
17953 * vc.el (vc-backend-for-registration): Rename from
17954 vc-get-backend-for-registration. Update callers.
17955
17956 * international/mule-cmds.el (set-language-info-alist):
17957 Purecopy lang-env.
17958 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
17959 (charset): Purecopy the name.
17960 (define-char-code-property): Purecopy string arguments.
17961
17962 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
17963 Purecopy string arguments.
17964
17965 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
17966 * ediff-hook.el (menu-bar-ediff-menu):
17967 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
17968 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
17969
17970 2009-10-24 Glenn Morris <rgm@gnu.org>
17971
17972 * comint.el (comint-dynamic-list-completions):
17973 * term.el (term-dynamic-list-completions): Use choose-completion rather
17974 than obsolete alias mouse-choose-completion.
17975
17976 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
17977 file-cache-choose-completion.
17978 (file-cache-choose-completion): Handle an optional event argument.
17979 (file-cache-mouse-choose-completion): Make it an obsolete alias.
17980
17981 * progmodes/octave-mod.el (octave-complete-symbol):
17982 Use choose-completion if mouse-choose-completion is ever removed.
17983
17984 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
17985 use.
17986
17987 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
17988 compiler.
17989
17990 * vc-hooks.el (vc-responsible-backend): Fix declaration.
17991
17992 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
17993
17994 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
17995 Ignore `pred' now that we receive one.
17996 Handle test-completion specially.
17997
17998 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
17999
18000 * vc.el (vc-responsible-backend): Throw an error if not backend is
18001 found. Remove the REGISTER argument. Move the code dealing with
18002 REGISTER ...
18003 (vc-get-backend-for-registration): ... here. New function.
18004 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
18005 of vc-responsible-backend, pass the file name instead of the
18006 directory name.
18007
18008 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
18009
18010 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
18011 New funs.
18012 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
18013 (pcomplete-comint-setup): Don't modify a global var via
18014 accidental side-effects.
18015 (pcomplete-shell-setup): Adjust call accordingly.
18016 (pcomplete-parse-comint-arguments): Use push.
18017
18018 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
18019
18020 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
18021 Allow uncapitalized info node names (Bug#3921).
18022
18023 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
18024 to the DEBUG file (Bug#3781).
18025
18026 2009-10-23 Jari Aalto <jari.aalto@cante.net>
18027
18028 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
18029 dictionary entry (Bug#4579).
18030
18031 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
18032
18033 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
18034 from `rfn-eshadow-update-overlay-hook' when unloading.
18035 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
18036 "rsyncc". Adjust doc string.
18037 (tramp-temp-buffer-file-name): New buffer-local defvar.
18038 (tramp-handle-insert-file-contents, tramp-handle-write-region):
18039 Keep temporary file when indicated by method ("rsync" and
18040 "rsyncc").
18041 (tramp-handle-write-region): Handle APPEND.
18042 (tramp-delete-temp-file-function): New defun. Added to
18043 `kill-buffer-hook'.
18044
18045 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
18046
18047 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
18048
18049 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
18050
18051 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
18052 (color-name-rgb-alist, tty-standard-colors)
18053 (tty-color-mode-alist): Change to defconst.
18054
18055 * simple.el (mark-inactive): Purecopy message.
18056
18057 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
18058 (global-map, yank-menu):
18059 * textmodes/ispell.el (ispell-menu-map):
18060 * net/eudc.el (eudc-tools-menu):
18061 * international/mule-cmds.el (describe-language-environment-map)
18062 (setup-language-environment-map, set-coding-system-map)
18063 (mule-menu-keymap):
18064 * vc-hooks.el (vc-menu-entry, vc-menu-map):
18065 * replace.el (occur-mode-map):
18066 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
18067
18068 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
18069
18070 * calc/calc.el (math-read-number, math-read-number-simple):
18071 Use `save-match-data'.
18072
18073 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
18074
18075 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
18076 rather than fiddling with global-map bindings, since it should only
18077 affect per-terminal settings.
18078 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
18079
18080 * minibuffer.el (completion-table-with-terminator): Allow to specify
18081 the terminator-regexp.
18082
18083 * simple.el (switch-to-completions): Look for *Completions* in other
18084 frames as well.
18085
18086 * pcomplete.el: Allow the use of completion-tables.
18087 (pcomplete-std-complete): New command.
18088 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
18089 (pcomplete--here): Use a function for `form' rather than an expression,
18090 so it can be byte-compiled.
18091 (pcomplete-here, pcomplete-here*): Adjust accordingly.
18092 Add edebug declaration.
18093 (pcomplete-show-completions): Remove unused var `curbuf'.
18094 (pcomplete-do-complete, pcomplete-stub):
18095 Don't assume `completions' is a list of strings any more.
18096
18097 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
18098
18099 * find-dired.el (find-name-arg): Fix typo in docstring.
18100
18101 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
18102
18103 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
18104 (pcmpl-linux-fs-types): Same, and update to new modules layout.
18105
18106 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
18107 pcomplete-entries.
18108
18109 * comint.el (comint-read-input-ring, comint-write-input-ring)
18110 (comint-substitute-in-file-name)
18111 (comint-dynamic-complete-as-filename)
18112 (comint-dynamic-simple-complete)
18113 (comint-dynamic-list-filename-completions)
18114 (comint-dynamic-list-completions)
18115 (comint-redirect-results-list-from-process): Minor simplifications.
18116
18117 2009-10-21 Kevin Ryde <user42@zip.com.au>
18118
18119 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
18120 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
18121 the first form. And insert a blank line after ";;; Code" since
18122 that's usual style. (Bug#4612)
18123
18124 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
18125
18126 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
18127
18128 * minibuffer.el (completion-table-with-terminator): Properly implement
18129 boundaries, in case `terminator' appears in the suffix.
18130 (completion--embedded-envvar-table): Don't return boundaries if
18131 there's no valid completion. Simplify.
18132 (completion-file-name-table): New completion table extracted from
18133 completion--file-name-table.
18134 (completion--file-name-table): Use it.
18135 (read-file-name-predicate): Declare obsolete.
18136 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
18137 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
18138 completion-file-name-table, and use the `pred' argument.
18139 * files.el (locate-file-completion-table): Use the `pred' arg rather
18140 than read-file-name-predicate.
18141 (abbreviate-file-name): Use \` rather than ^ for BOS.
18142
18143 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
18144
18145 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
18146 vc-responsible-backend to register, it causes problems.
18147
18148 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
18149
18150 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
18151
18152 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
18153
18154 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
18155 (tramp-smb-handle-file-attributes): Use it.
18156 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
18157 (tramp-smb-handle-insert-directory): Use `mapc' rather than
18158 `mapcar'. Use `tramp-smb-get-stat-capability'.
18159 Add `dired-filename' text properties.
18160 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
18161 (tramp-smb-maybe-open-connection): Simplify check for smbclient
18162 version.
18163
18164 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
18165
18166 * subr.el (read-key-delay): Reduce to 0.01.
18167 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
18168 (bug#4751).
18169
18170 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
18171
18172 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
18173
18174 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
18175 (Info-menu): Remove unused vars `last' and `completions'.
18176 (Info-index-nodes): Remove unused var `node'.
18177
18178 * info.el (Info-complete-menu-item): Use complete-with-action.
18179
18180 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
18181
18182 Make vc-annotate work through copies and renames.
18183 * vc-annotate.el (vc-annotate-extract-revision-at-line):
18184 Return the file name too.
18185 (vc-annotate-revision-at-line)
18186 (vc-annotate-find-revision-at-line)
18187 (vc-annotate-revision-previous-to-line)
18188 (vc-annotate-show-log-revision-at-line): Update to get the file
18189 name from vc-annotate-extract-revision-at-line.
18190 (vc-annotate-show-diff-revision-at-line-internal): Change the
18191 argument to mean whether to show a file diff or not. Get the file
18192 name from vc-annotate-extract-revision-at-line.
18193 (vc-annotate-show-diff-revision-at-line):
18194 Update vc-annotate-show-diff-revision-at-line call.
18195 (vc-annotate-warp-revision): Add an optional file argument.
18196
18197 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
18198 (vc-git-annotate-extract-revision-at-line): Also return the file
18199 name if found.
18200
18201 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
18202 command. Remove unused code.
18203 (vc-hg-annotate-re): Update to match --follow output.
18204 (vc-hg-annotate-extract-revision-at-line): Also return the file
18205 name if found.
18206
18207 * vc.el: Update annotate-extract-revision-at-line documentation.
18208
18209 2009-10-18 Kevin Ryde <user42@zip.com.au>
18210
18211 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
18212 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
18213
18214 * net/browse-url.el (browse-url): Identify alist with "consp and
18215 not functionp" and let all other things go down the `apply' leg,
18216 as suggested by Stefan. (Further to bug#4531.)
18217
18218 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
18219
18220 * minibuffer.el (read-file-name): Check for repeat before putting
18221 a default argument in file-name-history (Bug#4657).
18222
18223 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
18224 read syntax (Bug#4737).
18225
18226 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
18227
18228 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
18229
18230 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
18231 (html-tag-alist, html-tag-help): Add descriptions for undocumented
18232 entries and make note of obsolete tags.
18233
18234 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
18235
18236 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
18237
18238 2009-10-18 Glenn Morris <rgm@gnu.org>
18239
18240 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
18241 grep, so that binary files (eg international/uni-bidi.el) can match.
18242 Remove test for "UnicodeData" files, since it is hopefully unnecessary
18243 now, and in any case the file header format has changed.
18244
18245 2009-10-17 Glenn Morris <rgm@gnu.org>
18246
18247 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
18248 (flyspell-get-word, flyspell-large-region)
18249 (flyspell-auto-correct-previous-word): Doc/error message fixes.
18250
18251 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
18252
18253 * Makefile.in (ELCFILES): Add ede/shell.
18254
18255 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
18256
18257 * term/common-win.el (x-colors): Purecopy it.
18258
18259 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
18260
18261 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
18262 permissive for when the buffer is empty.
18263 (tar-header-block-tokenize): Decode the username and groupname.
18264 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
18265
18266 2009-10-17 Eric Ludlam <zappo@gnu.org>
18267
18268 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
18269 contains multibyte characters, choose first applicable coding
18270 system automatically.
18271
18272 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
18273
18274 * international/mule-cmds.el (select-safe-coding-system): If the file
18275 has a coding cookie, use it regardless of any other setting (bug#4712).
18276
18277 2009-10-17 Glenn Morris <rgm@gnu.org>
18278
18279 * foldout.el (foldout-mouse-swallow-events):
18280 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
18281
18282 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
18283 (dired-keep-marker-copy, dired-keep-marker-hardlink)
18284 (dired-keep-marker-symlink, dired-dwim-target)
18285 (dired-copy-preserve-time): Do not autoload these defcustoms.
18286
18287 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
18288 messages from messing up the file coding. (Bug#4623)
18289
18290 2009-10-17 Jari Aalto <jari.aalto@cante.net>
18291
18292 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
18293 if no match is found for the current dictionary. (Bug#4578)
18294
18295 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
18296 optional, since that is how it is documented, and this is often called
18297 with a nil argument. (Bug#4577)
18298 (flyspell-external-point-words, flyspell-auto-correct-word)
18299 (flyspell-correct-word-before-point, flyspell-word-search-forward)
18300 (flyspell-word-search-backward): Remove nil argument in calls to
18301 flyspell-get-word, since it is not needed now.
18302
18303 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
18304
18305 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
18306
18307 2009-10-16 Glenn Morris <rgm@gnu.org>
18308
18309 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
18310
18311 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
18312
18313 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
18314 (ange-ftp-file-size): New function.
18315 (ange-ftp-file-attributes): Use it.
18316
18317 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
18318
18319 * net/tramp-smb.el (tramp-smb-version): New defvar.
18320 (tramp-smb-maybe-open-connection): Use it, in order to avoid
18321 repeated checks.
18322
18323 2009-10-16 Glenn Morris <rgm@gnu.org>
18324
18325 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
18326 Maybe copy some custom properties from old to new name. (Bug#4706)
18327
18328 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
18329
18330 * subr.el (error, sit-for, start-process-shell-command)
18331 (start-file-process-shell-command): Set the calling convention
18332 after the function definition.
18333
18334 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
18335
18336 * subr.el (error, sit-for, start-process-shell-command)
18337 (start-file-process-shell-command): Use the new
18338 set-advertised-calling-convention feature.
18339
18340 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
18341
18342 * international/ucs-normalize.el (ucs-normalize-version):
18343 Change to 1.2.
18344 (check-range): Adjust for Unicode 5.2.
18345
18346 2009-10-15 Juri Linkov <juri@jurta.org>
18347
18348 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
18349 to the `menu-item' format.
18350
18351 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
18352
18353 * net/tramp.el (tramp-replace-environment-variables): Do not fail
18354 if the environment variable does not exist.
18355
18356 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
18357 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
18358 parameter.
18359 (tramp-smb-handle-add-name-to-file)
18360 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
18361 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
18362 (tramp-smb-handle-file-attributes)
18363 (tramp-smb-do-file-attributes-with-stat)
18364 (tramp-smb-handle-file-local-copy)
18365 (tramp-smb-handle-insert-directory)
18366 (tramp-smb-handle-make-directory)
18367 (tramp-smb-handle-make-directory-internal)
18368 (tramp-smb-handle-make-symbolic-link)
18369 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
18370 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
18371 (tramp-smb-maybe-open-connection): Apply the changed parameters.
18372 (tramp-smb-read-file-entry): Read Disk names in compressed format.
18373 Handle long file names.
18374 (tramp-smb-get-cifs-capabilities): Check, whether the connection
18375 process is running.
18376 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
18377 Read share names with "-g" option.
18378
18379 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
18380
18381 * net/rcirc.el (rcirc-view-log-file): New command.
18382 (rcirc-track-minor-mode-map): Remove C-c ` binding.
18383 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
18384 specified.
18385
18386 2009-10-15 Glenn Morris <rgm@gnu.org>
18387
18388 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
18389 from the second command-line argument.
18390 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
18391 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
18392 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
18393 w32-batch-update-autoloads.
18394 * emacs-lisp/autoload.el (autoload-make-program): New variable.
18395 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
18396
18397 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
18398 the headers cannot be located. Simplify, subtracting superflous
18399 save-excursions.
18400
18401 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
18402
18403 Replace completion-base-size by completion-base-position to fix bugs
18404 such as (bug#4699).
18405 * simple.el (completion-base-position): New var.
18406 (completion-base-size): Mark as obsolete.
18407 (choose-completion): Make it work for mouse events as well.
18408 Pass the new base-position to choose-completion-string.
18409 (choose-completion-guess-base-position): New function, extracted from
18410 choose-completion-delete-max-match.
18411 (choose-completion-delete-max-match): Use it. Make obsolete.
18412 (choose-completion-string): Use the new base-position info.
18413 (completion-root-regexp): Delete.
18414 (completion-setup-function): Preserve completion-base-position.
18415 Eliminate obsolete base-size manipulation.
18416 * minibuffer.el (display-completion-list): Don't mess with base-size.
18417 (minibuffer-completion-help): Set completion-base-position instead.
18418 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
18419 choose-completion.
18420 * textmodes/bibtex.el (bibtex-complete):
18421 * emacs-lisp/crm.el (crm--choose-completion-string):
18422 Adjust to new calling convention.
18423 * complete.el (partial-completion-mode): Use minibufferp to avoid
18424 bumping into incompatible change to choose-completion-string-functions.
18425 * ido.el (ido-choose-completion-string): Make its calling convention
18426 more permissive.
18427 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
18428 base-size manipulation.
18429 (comint-dynamic-list-input-ring): Use dotimes and push.
18430 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
18431 fundamental-mode. Use `or'.
18432
18433 2009-10-14 Juri Linkov <juri@jurta.org>
18434
18435 * misearch.el (multi-isearch-next-buffer-from-list)
18436 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
18437
18438 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
18439
18440 * Makefile.in (compile-onefile): Load `bytecomp' rather than
18441 `bytecomp.el'.
18442
18443 * minibuffer.el (completion-pcm--merge-completions): Make sure the
18444 string we return is all made up of text from the completions rather
18445 than part from the completions and part from the input (bug#4219).
18446
18447 * ido.el (ido-everywhere): Use define-minor-mode.
18448
18449 * buff-menu.el (list-buffers, ctl-x-map):
18450 Mark the entry points with ;;;###autoload cookies.
18451
18452 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
18453
18454 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
18455 correctly in the detached head case.
18456 (vc-git-print-log): Remove unused binding.
18457
18458 * vc.el (vc-responsible-backend): When a directory is passed for
18459 for registration create a VC repository if no backend is
18460 responsible for the directory argument.
18461 (vc-deduce-fileset): Tell vc-responsible-backend to register.
18462
18463 * vc.el: Move comments about RCS and SCCS ...
18464 * vc-rcs.el:
18465 * vc-sccs.el: ... here, respectively.
18466
18467 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
18468
18469 * minibuffer.el (completion--file-name-table): Return nil if there's
18470 no file completion, even if substitute-in-file-name changed
18471 the string (bug#4708).
18472
18473 2009-10-13 Juri Linkov <juri@jurta.org>
18474
18475 * files-x.el (read-file-local-variable-value): Don't filter out
18476 minor modes from mode name completion (bug#4664).
18477
18478 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
18479
18480 * international/mule-cmds.el (ucs-names): Remove exclusion of
18481 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
18482
18483 2009-10-13 Kenichi Handa <handa@m17n.org>
18484
18485 * international/uni-name.el: Regenerated.
18486
18487 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
18488
18489 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
18490 should be automatically buffer-local, but isn't.)
18491
18492 2009-10-12 Sam Steingold <sds@gnu.org>
18493
18494 * progmodes/compile.el (compilation-next-error-function): Fix the
18495 timestamps if the buffer has been visited before.
18496 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
18497 non-anchored patterns, like the perl one (bug#3928).
18498
18499 2009-10-12 Glenn Morris <rgm@gnu.org>
18500
18501 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
18502 Let-bind `size'.
18503
18504 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
18505
18506 * proced.el (proced-unload-function): New function.
18507
18508 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
18509 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
18510 Doc fix.
18511
18512 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
18513
18514 2009-10-11 Juri Linkov <juri@jurta.org>
18515
18516 * files-x.el (read-file-local-variable-value):
18517 Provide default value only for bound variables (bug#4664).
18518
18519 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
18520
18521 * net/tramp.el (tramp-local-host-p): Function shall return nil for
18522 connection methods like smb.
18523
18524 * net/tramp-cache.el (tramp-flush-connection-property): The hash
18525 can be empty.
18526
18527 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
18528 (tramp-smb-file-name-handler-alist): Add handlers for
18529 `add-name-to-file', `make-symbolic-link'.
18530 (tramp-smb-handle-add-name-to-file)
18531 (tramp-smb-do-file-attributes-with-stat)
18532 (tramp-smb-handle-make-symbolic-link)
18533 (tramp-smb-get-cifs-capabilities): New defuns.
18534 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
18535 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
18536 (tramp-smb-handle-file-local-copy)
18537 (tramp-smb-handle-make-directory-internal)
18538 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
18539 The file name syntax depends on cifs capabilities.
18540 (tramp-smb-handle-file-attributes):
18541 Call `tramp-smb-do-file-attributes-with-stat' if possible.
18542 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
18543 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
18544
18545 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
18546
18547 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
18548 (eieio-defclass): Apply deftype handler and setf-method properties
18549 directly.
18550 (eieio-add-new-slot): Avoid union function from cl library.
18551 (eieio--typep): New function.
18552 (eieio-perform-slot-validation): Use it.
18553
18554 2009-10-10 Karl Fogel <kfogel@red-bean.com>
18555
18556 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
18557 Update documentation to refer to the variables documented in r1.135.
18558 (Bug#4188)
18559
18560 2009-10-10 Karl Fogel <kfogel@red-bean.com>
18561
18562 * bookmark.el (Info-suffix-list): Remove this unused variable.
18563 (bookmark-current-point): Remove this obsolete variable.
18564 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
18565 Adjust for removal of bookmark-current-point.
18566
18567 (bookmarks-already-loaded, bookmark-current-buffer)
18568 (bookmark-yank-point): Document. (Bug#4188)
18569
18570 2009-10-10 Glenn Morris <rgm@gnu.org>
18571
18572 * frame.el (frame-height): Doc fix.
18573
18574 * calendar/calendar.el (calendar-split-width-threshold): New option.
18575 (calendar-basic-setup): Use calendar-split-width-threshold.
18576
18577 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
18578
18579 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
18580 Ideographic Supplement" range (U+1F200..U+1F2FF).
18581
18582 2009-10-09 Karl Fogel <kfogel@red-bean.com>
18583
18584 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
18585 since the list will have been rebuilt anyway. (Bug#4349)
18586
18587 2009-10-09 Karl Fogel <kfogel@red-bean.com>
18588
18589 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
18590 (bookmark-bmenu-execute-deletions): Don't save here, as
18591 bookmark-delete will now do so if necessary.
18592 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
18593 (Bug#4348)
18594
18595 2009-10-09 Glenn Morris <rgm@gnu.org>
18596
18597 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
18598
18599 2009-10-09 Karl Fogel <kfogel@red-bean.com>
18600
18601 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
18602 (bookmark-jump-other-window): Just invoke bookmark-jump with new
18603 argument now, so the two function's behaviors will match. (Bug#3645)
18604
18605 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
18606
18607 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
18608 (tramp-file-name-real-host, tramp-file-name-port):
18609 Apply `save-match-data'.
18610
18611 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
18612 case both directories are remote.
18613 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
18614 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
18615
18616 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
18617
18618 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
18619
18620 2009-10-07 Glenn Morris <rgm@gnu.org>
18621
18622 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
18623 of concat.
18624
18625 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
18626
18627 * files-x.el (read-file-local-variable): Include some
18628 non-user-variables in the completion table (bug#4664).
18629
18630 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
18631
18632 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
18633 message.
18634
18635 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
18636 (tramp-smb-file-name-handler-alist): Add handler for
18637 `copy-directory', `expand-file-name', `set-file-modes'.
18638 (tramp-smb-handle-copy-directory)
18639 (tramp-smb-handle-expand-file-name)
18640 (tramp-smb-handle-set-file-modes): New defuns.
18641 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
18642 (tramp-smb-handle-file-attributes): Simplify check for retrieving
18643 entry.
18644 (tramp-smb-handle-insert-directory): Don't flush the cache.
18645 (tramp-smb-maybe-open-connection): Check for samba client and
18646 server versions.
18647
18648 2009-10-07 Eli Zaretskii <eliz@gnu.org>
18649
18650 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
18651 to not error out of search for "^lisp=" fails.
18652
18653 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
18654
18655 * makefile.w32-in (WINS_UPDATES): New macro.
18656 (custom-deps, finder-data, autoloads): Use it.
18657
18658 2009-10-07 Glenn Morris <rgm@gnu.org>
18659
18660 * Makefile.in (autoloads): Revert previous change.
18661 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
18662 the list of preloaded files passed on the command-line, get
18663 it from src/Makefile.
18664
18665 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
18666 show the original buffer rather than a random one.
18667
18668 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
18669
18670 * help.el (describe-no-warranty): Place point in a slightly better
18671 position in the GPLv3 text.
18672
18673 2009-10-06 Sam Steingold <sds@gnu.org>
18674
18675 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
18676 the comm attribute is present before calling regexp-quote.
18677
18678 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
18679
18680 * play/animate.el (animate-string): For good effect, make sure
18681 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
18682
18683 * play/animate.el (animate-sequence, animate-birthday-present):
18684 * misc.el (butterfly): Don't set `indent-tabs-mode'.
18685
18686 2009-10-06 Glenn Morris <rgm@gnu.org>
18687
18688 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
18689
18690 * emacs-lisp/autoload.el (autoload-excludes): New variable.
18691 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
18692 (batch-update-autoloads): Process a string value of autoload-excludes,
18693 set during the build process.
18694 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
18695
18696 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
18697 inside with-parsed... macro so that `v' is defined.
18698
18699 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
18700 * progmodes/fortran.el (fortran-end-of-block)
18701 (fortran-beginning-of-block):
18702 Also push mark in the macro case.
18703
18704 * emerge.el (emerge-show-file-name):
18705 * calc/calc.el (calc-quit):
18706 * calc/calc-misc.el (calc-big-or-small):
18707 * calc/calc-graph.el (calc-graph-view):
18708 * calc/calc-ext.el (calc-reset):
18709 * calendar/calendar.el (calendar-basic-setup):
18710 Use window-full-height-p.
18711
18712 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
18713 header we don't understand, don't insert another. (Bug#4624)
18714 If changing mime charset, insert the new one in the right place.
18715
18716 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
18717
18718 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
18719 (cal-tex-cursor-month): Correctly increment the end date for diary and
18720 holiday listing. (Bug#4626)
18721
18722 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18723
18724 * help-fns.el (describe-function-1): Don't burp if the function is not
18725 a symbol.
18726
18727 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
18728
18729 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
18730 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
18731 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
18732 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
18733
18734 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
18735 (eieio-default-superclass): Reflow docstrings.
18736 (this, class-option-assoc, defclass, eieio-class-un-autoload)
18737 (eieio-unbind-method-implementations, defmethod)
18738 (eieio-validate-slot-value, eieio-validate-class-slot-value)
18739 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
18740 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
18741 (eieio-slot-originating-class-p, eieio-slot-name-index)
18742 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
18743 (constructor, initialize-instance, no-next-method, object-print)
18744 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
18745 Fix typos in docstrings.
18746 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
18747 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
18748 (next-method-p): Doc fixes.
18749 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
18750 Fix typos in error messages.
18751 (eieio-defmethod): Fix typo in description of generic method.
18752
18753 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
18754 (eieio-persistent-save-interactive, slot-missing):
18755 Fix typos in docstrings.
18756 (eieio-instance-inheritor-slot-boundp): Doc fix.
18757
18758 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
18759 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
18760
18761 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
18762 (eieio-custom-object-apply-reset):
18763 Fix typos in docstrings and error messages.
18764
18765 * emacs-lisp/eieio-datadebug.el (data-debug-show):
18766 Fix typo in docstring.
18767
18768 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
18769 (eieio-browse-tree): Doc fix.
18770 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
18771 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
18772 Fix typos in docstrings.
18773
18774 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
18775 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
18776 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
18777 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
18778 Reflow docstrings.
18779
18780 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
18781
18782 * vc-hg.el (log-view-vc-backend): Declare for compiler.
18783 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
18784 Set log-view-vc-backend so that diff can work.
18785
18786 * log-view.el (log-view-diff): Use vc-diff-internal instead of
18787 vc-version-diff.
18788 (vc-diff-internal): Autoload this instead of vc-version-diff.
18789
18790 2009-10-05 Eli Zaretskii <eliz@gnu.org>
18791
18792 * simple.el (eval-expression): Doc fix.
18793
18794 * progmodes/cwarn.el (cwarn-mode): Doc fix.
18795
18796 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
18797
18798 * files.el (directory-files-no-dot-files-regexp): New defconst.
18799 (delete-directory): Use it.
18800 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
18801
18802 * net/tramp.el (tramp-verbose): Fix docstring.
18803 (tramp-methods): Add recursive option to `tramp-copy-args'.
18804 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
18805 "scp1_old", "scp2_old", "rsync", "rsyncc".
18806 (tramp-default-method): Check also for `auth-source-user-or-password'.
18807 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
18808 Add handler for `copy-directory'.
18809 (tramp-handle-copy-directory): New defun.
18810 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
18811 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
18812 Optimize sent command.
18813
18814 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18815
18816 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
18817 window if necessary.
18818
18819 * calendar/calendar.el (calendar-basic-setup): Don't call
18820 switch-to-buffer in a dedicated window.
18821
18822 2009-10-05 Karl Fogel <kfogel@red-bean.com>
18823
18824 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
18825 don't do anything related to relocating, just return nil.
18826 (bookmark-error-no-filename): New error.
18827 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
18828 bookmark has no file. Don't even attempt to handle things that
18829 are not files; the whole point of custom handlers is to keep that
18830 knowledge elsewhere anyway. Tighten some comments.
18831 (bookmark-file-or-variation-thereof): Remove now-unused function.
18832 (bookmark-location): Doc string fix.
18833 (Bug#4250)
18834
18835 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18836
18837 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
18838 don't use a file dialog, because they usually don't know how to read
18839 a directory target from the user. (Bug#4230)
18840 Also, make sure the prompt can display directories as well as files.
18841
18842 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18843
18844 * bookmark.el (bookmark-set, bookmark-buffer-name):
18845 Improve doc strings. (Bug#1193)
18846
18847 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18848
18849 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
18850 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
18851 (bookmark-get-annotation, bookmark-set-annotation)
18852 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
18853 (bookmark-set-position, bookmark-get-front-context-string)
18854 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
18855 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
18856 (bookmark-jump-other-window, bookmark-handle-bookmark)
18857 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
18858 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
18859 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
18860 Improve doc strings to say whether bookmark can be a string or
18861 a record or both, and make other consistency and clarity fixes.
18862 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
18863 (bookmark-default-annotation-text, bookmark-yank-word)
18864 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
18865 (bookmark-import-new-list, bookmark-maybe-rename)
18866 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
18867 (bookmark-bmenu-bookmark): Give these doc strings.
18868 (bookmark-bmenu-check-position): Give this a doc string, but also
18869 add a FIXME comment about how the function may be pointless.
18870 (bookmark-default-handler): Rework doc string and change a
18871 parameter name, to clarify that this takes a bookmark record
18872 not a bookmark name.
18873 (bookmark-set): Change a parameter name to indicate its meaning,
18874 and improve the doc string a bit.
18875 (Bug#4188)
18876
18877 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18878
18879 * bookmark.el (bookmark-alist): Document the new `handler' element
18880 in the param alist.
18881 (bookmark-make-record-function): Adjust documentation for above.
18882 (Bug#4193)
18883
18884 2009-10-04 Karl Fogel <kfogel@red-bean.com>
18885
18886 * info.el (Info-bookmark-make-record): Document this function.
18887 (Info-bookmark-jump): Document with a doc string, not just a comment.
18888 (Bug#4203)
18889
18890 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
18891
18892 * files.el (copy-directory): New defun.
18893
18894 * dired-aux.el (dired-copy-file-recursive): Use it.
18895
18896 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
18897
18898 * files-x.el (modify-dir-local-variable)
18899 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
18900 docstrings.
18901
18902 * recentf.el (recentf-unload-function): New function.
18903
18904 2009-10-04 Glenn Morris <rgm@gnu.org>
18905
18906 * window.el (window-full-height-p): Add doc string.
18907
18908 2009-10-04 Martin Rudalics <rudalics@gmx.at>
18909
18910 * window.el (window-full-height-p): New function. (Bug#4543)
18911
18912 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
18913
18914 * vc.el: Remove commented out code.
18915 (vc-derived-from-dir-mode): Remove, unused.
18916 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
18917
18918 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
18919
18920 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
18921 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
18922 there could be recursive loading when `default-directory' is a
18923 remote file name. (Bug#4614)
18924
18925 2009-10-03 Glenn Morris <rgm@gnu.org>
18926
18927 * calendar/calendar.el (calendar-basic-setup): Handle the case where
18928 the frame is wide.
18929 (calendar-generate-window): Test for shrinkability rather than width.
18930
18931 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
18932 reusing existing buffers, in case we happen to visit two files with the
18933 same basename. (Bug#4593)
18934
18935 2009-10-02 Eli Zaretskii <eliz@gnu.org>
18936
18937 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
18938 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
18939 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
18940 subdirs of cedet as well.
18941 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
18942
18943 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
18944
18945 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
18946 Obey advertised-signature-table.
18947
18948 * help-fns.el (help-function-arglist): Don't check
18949 advertised-signature-table.
18950 (describe-function-1): Do it here instead so it also applies to subrs.
18951
18952 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
18953
18954 * simple.el (start-file-process): Say in the doc-string, that file
18955 handlers might not support pty association, if PROGRAM is nil.
18956
18957 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
18958 HOST and USER are strings. They are nil, when there are
18959 incomplete entries in ~/.netrc, for example.
18960 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
18961 root directory ("device busy" error otherwise).
18962
18963 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
18964 Flush file properties of created directory.
18965
18966 2009-10-02 Eli Zaretskii <eliz@gnu.org>
18967
18968 * makefile.w32-in (WINS_BASIC): Remove cedet.
18969 (WINS_CEDET): Add cedet.
18970 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
18971
18972 2009-10-02 Kevin Ryde <user42@zip.com.au>
18973
18974 * net/browse-url.el (browse-url): Pass any symbol in
18975 browse-url-browser-function to `apply', since if you've mistakenly put
18976 an unbound symbol then the error is clearer. (Bug#4531)
18977
18978 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
18979
18980 * allout.el (allout-init, allout-back-to-current-heading)
18981 (allout-beginning-of-current-entry, allout-ascend-to-depth)
18982 (allout-ascend, allout-up-current-level, allout-end-of-level)
18983 (allout-previous-visible-heading, allout-forward-current-level)
18984 (allout-backward-current-level, allout-show-children):
18985 * apropos.el (apropos-describe-plist):
18986 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
18987 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
18988 * completion.el (add-completion, add-permanent-completion):
18989 * descr-text.el (describe-text-category, describe-char):
18990 * desktop.el (desktop-lazy-abort):
18991 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
18992 * dired.el (dired-build-subdir-alist):
18993 * ediff.el (ediff-version):
18994 * elide-head.el (elide-head, elide-head-show):
18995 * emerge.el (emerge-version):
18996 * env.el (getenv):
18997 * face-remap.el (variable-pitch-mode):
18998 * faces.el (describe-face):
18999 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
19000 (dired-at-point):
19001 * files.el (find-file-existing, auto-save-mode):
19002 * font-lock.el (font-lock-fontify-buffer):
19003 * help-fns.el (describe-function, describe-variable)
19004 (describe-syntax, describe-categories):
19005 * help.el (view-lossage, describe-bindings, describe-key)
19006 (describe-mode):
19007 * hexl.el (hexl-current-address):
19008 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
19009 * info.el (Info-goto-emacs-key-command-node):
19010 * log-edit.el (log-edit-insert-cvs-template)
19011 (log-edit-insert-cvs-rcstemplate):
19012 * menu-bar.el (menu-bar-mode):
19013 * mouse.el (mouse-appearance-menu):
19014 * newcomment.el (comment-indent-new-line):
19015 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
19016 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
19017 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
19018 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
19019 * recentf.el (recentf-mode):
19020 * savehist.el (savehist-mode, savehist-save):
19021 * shadowfile.el (shadow-copy-files):
19022 * simple.el (kill-ring-save, next-line, previous-line)
19023 (normal-erase-is-backspace-mode):
19024 * strokes.el (strokes-update-window-configuration)
19025 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
19026 (strokes-xpm-for-stroke):
19027 * time.el (emacs-uptime, emacs-init-time):
19028 * tutorial.el (tutorial--describe-nonstandard-key)
19029 (tutorial--detailed-help):
19030 * type-break.el (type-break-mode)
19031 (type-break-mode-line-message-mode, type-break-query-mode)
19032 (type-break-guesstimate-keystroke-threshold):
19033 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
19034 * version.el (emacs-version):
19035 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
19036 * winner.el (winner-mode):
19037 * calendar/timeclock.el (timeclock-in, timeclock-out)
19038 (timeclock-status-string, timeclock-change)
19039 (timeclock-workday-remaining-string)
19040 (timeclock-workday-elapsed-string)
19041 (timeclock-when-to-leave-string):
19042 * calendar/todo-mode.el (todo-add-category):
19043 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
19044 * emacs-lisp/autoload.el (update-file-autoloads):
19045 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
19046 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
19047 (checkdoc-message-text, checkdoc-defun):
19048 * emacs-lisp/debug.el (debugger-list-functions):
19049 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
19050 * emacs-lisp/eieio-opt.el (eieio-describe-class)
19051 (eieio-describe-generic):
19052 * emacs-lisp/lisp-mnt.el (lm-synopsis):
19053 * emacs-lisp/shadow.el (list-load-path-shadows):
19054 * emulation/cua-base.el (cua-mode):
19055 * emulation/edt.el (edt-set-scroll-margins):
19056 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
19057 (tpu-toggle-regexp, tpu-toggle-search-direction)
19058 (tpu-toggle-rectangle, tpu-toggle-control-keys):
19059 * emulation/tpu-extras.el (tpu-set-scroll-margins):
19060 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
19061 (viper-set-parsing-style-toggling-macro)
19062 (viper-set-emacs-state-searchstyle-macros):
19063 * emulation/viper.el (viper-set-hooks):
19064 * eshell/esh-mode.el (eshell-truncate-buffer):
19065 * international/mule-cmds.el (prefer-coding-system)
19066 (describe-input-method, describe-language-environment):
19067 * international/mule-diag.el (list-character-sets)
19068 (describe-character-set, describe-coding-system)
19069 (describe-fontset, list-fontsets, list-input-methods):
19070 * mail/sendmail.el (mail-signature):
19071 * net/ange-ftp.el (ange-ftp-copy-file):
19072 * net/browse-url.el (browse-url):
19073 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
19074 * net/quickurl.el (quickurl-add-url):
19075 * net/rcirc.el (names, topic):
19076 * net/xesam.el (xesam-mode):
19077 * play/5x5.el (5x5-new-game):
19078 * play/yow.el (apropos-zippy):
19079 * progmodes/ada-mode.el (ada-mode-version):
19080 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
19081 (f90-end-of-block)
19082 (f90-beginning-of-block):
19083 * progmodes/fortran.el (fortran-end-of-block)
19084 (fortran-beginning-of-block):
19085 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
19086 * progmodes/python.el (python-describe-symbol, python-shell):
19087 * term/ns-win.el (ns-print-buffer):
19088 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
19089 * textmodes/flyspell.el (flyspell-mode-on):
19090 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
19091 (pages-directory-for-addresses):
19092 * textmodes/table.el (table-recognize-cell)
19093 (table-query-dimension, table-generate-source)
19094 (table-insert-sequence, table--warn-incompatibility):
19095 * textmodes/tex-mode.el (tex-validate-buffer):
19096 * textmodes/texinfmt.el (texinfmt-version)
19097 (texinfo-format-buffer):
19098 Use `called-interactively-p' instead of `interactive-p'.
19099
19100 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
19101
19102 * image-mode.el (image-toggle-display):
19103 * emacs-lisp/elp.el (elp-instrument-function):
19104 * emacs-lisp/advice.el (ad-make-advised-definition):
19105 * emacs-lisp/easy-mmode.el (define-minor-mode):
19106 * net/browse-url.el (browse-url-maybe-new-window):
19107 * progmodes/sh-script.el (sh-learn-buffer-indent):
19108 Pass new argument 'any to `called-interactively-p'.
19109
19110 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
19111
19112 * international/uni-bidi.el:
19113 * international/uni-category.el:
19114 * international/uni-combining.el:
19115 * international/uni-comment.el:
19116 * international/uni-decimal.el:
19117 * international/uni-decomposition.el:
19118 * international/uni-digit.el:
19119 * international/uni-lowercase.el:
19120 * international/uni-mirrored.el:
19121 * international/uni-name.el:
19122 * international/uni-numeric.el:
19123 * international/uni-old-name.el:
19124 * international/uni-titlecase.el:
19125 * international/uni-uppercase.el:
19126 Regenerate from Unicode 5.2.0 data.
19127
19128 2009-10-01 Glenn Morris <rgm@gnu.org>
19129
19130 * Makefile.in (ELCFILES): Regenerate.
19131
19132 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
19133
19134 * subr.el (interactive-p): Mark obsolete.
19135 (called-interactively-p): Make the optional-ness of `kind' obsolete.
19136 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
19137 advertised-signature-table for subroutines as well.
19138
19139 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
19140 (set-advertised-calling-convention): New function.
19141 (make-obsolete, define-obsolete-function-alias)
19142 (make-obsolete-variable, define-obsolete-variable-alias):
19143 Make the optional-ness of `when' obsolete.
19144 (define-obsolete-face-alias): Make `when' non-optional.
19145 * help-fns.el (help-function-arglist):
19146 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
19147 Use advertised-signature-table.
19148
19149 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
19150
19151 * files.el (delete-directory): New defun. The original function
19152 in fileio.c has been renamed to `delete-directory-internal'.
19153
19154 * dired.el (dired-delete-file): Call `delete-directory' with
19155 RECURSIVE parameter.
19156
19157 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
19158 parameter RECURSIVE. Implementation is missing.
19159
19160 * net/tramp.el (tramp-handle-make-directory): Flush upper
19161 directory's file properties.
19162 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
19163 (tramp-handle-dired-recursive-delete-directory): Flush directory
19164 properties after the remove command only.
19165
19166 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
19167 Handle optional parameter RECURSIVE.
19168
19169 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
19170 Handle optional parameter RECURSIVE.
19171
19172 * net/tramp-smb.el (tramp-smb-errors): Add error message for
19173 connection timeout.
19174 (tramp-smb-handle-delete-directory): Handle optional parameter
19175 RECURSIVE.
19176
19177 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
19178
19179 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
19180 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
19181 (byte-compile-defmacro): Use backquotes.
19182
19183 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
19184
19185 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
19186 has no associated file.
19187 (vc-resynch-buffer): Use vc-dir-buffers.
19188
19189 2009-10-01 Glenn Morris <rgm@gnu.org>
19190
19191 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
19192 (chart-file-count):
19193 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
19194 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
19195 * emacs-lisp/eieio-opt.el (eieio-describe-class):
19196 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
19197 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
19198 (eieio-copy-parents-into-subclass, make-instance, class-children)
19199 (eieio-generic-form):
19200
19201 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
19202 match-data. (Bug#4555).
19203
19204 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
19205 rather than parsing it as a regexp. This relaxes the layout
19206 requirements and makes errors easier to detect.
19207 (check-declare-verify): Check file is regular.
19208 (check-declare-directory): Doc fix.
19209 * subr.el (declare-function): Doc fix.
19210
19211 * ibuffer.el (ibuffer-format-qualifier):
19212 * isearch.el (hi-lock-regexp-okay):
19213 * calc/calc.el (math-zerop):
19214 * mail/uce.el (rmail-msgbeg, rmail-msgend):
19215 * term/w32-win.el (setup-default-fontset, set-fontset-font):
19216 Remove unused declarations.
19217
19218 2009-09-30 Eric Ludlam <zappo@gnu.org>
19219
19220 * emacs-lisp/eieio.el (boolean-p): Delete.
19221
19222 2009-09-30 Glenn Morris <rgm@gnu.org>
19223
19224 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
19225
19226 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
19227 filename is not a string.
19228
19229 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
19230
19231 * files.el (safe-local-eval-forms): Fix typo.
19232
19233 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
19234
19235 * vc-hooks.el (vc-dir-buffers): New var.
19236 (vc-state-refresh): New function.
19237 (vc-state): Use it.
19238 (vc-after-save): Always ask the backend to recompute the new state.
19239 Always call vc-dir if necessary, using vc-dir-buffers.
19240 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
19241 Use vc-dir-buffers.
19242 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
19243 (vc-dir-prepare-status-buffer, vc-dir-update)
19244 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
19245 Don't call expand-file-name on default-directory.
19246
19247 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
19248
19249 * speedbar.el (speedbar-item-delete):
19250 * calc/calc-prog.el (calc-kbd-if):
19251 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
19252
19253 * epa.el (epa-key-list-mode-map):
19254 * hi-lock.el (hi-lock-menu): Fix typos in menus.
19255
19256 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
19257 (hs-show-hook): Fix typo in docstring.
19258
19259 2009-09-29 Glenn Morris <rgm@gnu.org>
19260
19261 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
19262 file-name-nondirectory call preventing location of cedet files.
19263 (check-declare-verify): Use literal search rather than re-search.
19264 Add basic defmethod and defclass, and define-overloadable-function.
19265
19266 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
19267 Use tramp-compat-file-attributes rather than nonexistent
19268 tramp-compat-handle-file-attributes.
19269
19270 * Makefile.in (lisptagsfiles4): New.
19271 (AUTOGENEL): Add cedet loaddefs files.
19272 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
19273 (update-elclist, compile-always, backup-compiled-files)
19274 (bootstrap-clean): Add yet another directory level.
19275 (update-elclist): Use LC_COLLATE rather than COLLATE.
19276 (ELCFILES): Update, via `make update-elclist'.
19277
19278 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
19279
19280 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
19281 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
19282 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
19283
19284 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
19285
19286 * Makefile.in (lisptagsfiles3): Define.
19287 (TAGS, TAGS-LISP): Use it.
19288 (update-elclist): Add third directory level to look for elc files.
19289 (compile-always): Likewise.
19290 (backup-compiled-files): Likewise.
19291 (bootstrap-clean): Likewise.
19292 (ELCFILES): Update.
19293
19294 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
19295
19296 * Makefile.in (ELCFILES): Add CEDET files.
19297
19298 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
19299
19300 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
19301
19302 * net/tramp.el (top): Require tramp-imap.
19303
19304 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
19305 Use `tramp-compat-handle-file-attributes'.
19306
19307 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
19308
19309 * net/tramp-imap.el: New package.
19310
19311 2009-09-28 Eric Ludlam <zappo@gnu.org>
19312
19313 * emacs-lisp/chart.el:
19314 * emacs-lisp/eieio-base.el:
19315 * emacs-lisp/eieio-comp.el:
19316 * emacs-lisp/eieio-custom.el:
19317 * emacs-lisp/eieio-datadebug.el:
19318 * emacs-lisp/eieio-opt.el:
19319 * emacs-lisp/eieio-speedbar.el:
19320 * emacs-lisp/eieio.el: New files.
19321
19322 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19323
19324 * whitespace.el (whitespace-trailing-regexp)
19325 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
19326 Fix doc string.
19327
19328 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
19329
19330 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
19331 menu.
19332
19333 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
19334 menu-bar-ediff-menu.
19335
19336 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
19337 define-overloadable-function.
19338
19339 * progmodes/autoconf.el: Provide autoconf as well, so that this
19340 file can be `require'd.
19341
19342 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
19343
19344 * emacs-lisp/autoload.el (generated-autoload-feature)
19345 (generated-autoload-load-name): New vars.
19346 (autoload-rubric, autoload-generate-file-autoloads): Use them.
19347 (make-autoload): Recognize define-overloadable-function and
19348 defclass forms (for EIEIO).
19349
19350 * Makefile.in (update-subdirs): Exclude cedet directory.
19351
19352 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
19353
19354 * term/ns-win.el: Don't set the region face background. (Bug#4381)
19355
19356 * faces.el: Default light-background background for region face to
19357 ns_selection_color under NS.
19358
19359 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
19360
19361 * net/imap-hash.el: New library, see NEWS.
19362
19363 * Makefile.in (ELCFILES): Add imap-hash.el.
19364
19365 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
19366
19367 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
19368 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
19369 * help-macro.el (make-help-screen): Avoid using an ambiguous function
19370 definition where the docstring could be taken for the return value.
19371
19372 2009-09-26 Glenn Morris <rgm@gnu.org>
19373
19374 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
19375 Add option to only show images below a certain size.
19376 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
19377 save-excursion calls.
19378
19379 2009-09-26 Eli Zaretskii <eliz@gnu.org>
19380
19381 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
19382 subdirectories) and eieio.
19383
19384 2009-09-26 Alan Mackenzie <acm@muc.de>
19385
19386 * progmodes/cc-engine.el (c-beginning-of-statement-1):
19387 Correct buggy bracketing. (Bug#4289)
19388
19389 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
19390 character constants (as case labels). (Bug#4289)
19391
19392 2009-09-25 Juri Linkov <juri@jurta.org>
19393
19394 * files.el (safe-local-eval-forms): Allow time-stamp in
19395 before-save-hook (Bug#4554).
19396
19397 2009-09-25 Drew Adams <drew.adams@oracle.com>
19398
19399 * menu-bar.el (list-buffers-directory): Doc fix.
19400
19401 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
19402
19403 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
19404 Try and avoid copying twice the same paragraph.
19405 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
19406 Remove save-excursion.
19407 (log-edit-changelog-entry): Do it here instead.
19408
19409 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
19410
19411 * bs.el (bs--get-file-name): Use `list-buffers-directory'
19412 when available, instead of hardcoding mode names. Doc fix.
19413
19414 * menu-bar.el (list-buffers-directory): Add docstring.
19415 Make automatically buffer-local.
19416
19417 * dired.el (dired-mode):
19418 * files.el (cd-absolute):
19419 * pcvs.el (cvs-temp-buffer):
19420 * pcvs-util.el (cvs-get-buffer-create):
19421 * shell.el (shell-mode):
19422 * vc-dir.el (vc-dir-mode):
19423 Don't make `list-buffers-directory' buffer local.
19424
19425 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
19426
19427 * comint.el (comint-exec, comint-run, make-comint):
19428 Doc fixes (Bug#4542).
19429
19430 2009-09-25 Glenn Morris <rgm@gnu.org>
19431
19432 * mail/rmailmm.el (rmail-mime): New custom group.
19433 Move all defcustoms in this file into this group.
19434 (rmail-mime-media-type-handlers-alist): Revert previous change.
19435 (rmail-mime-show-images): New option.
19436 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
19437 references to it, since it wasn't actually used for anything.
19438 (rmail-mime-insert-image): New function.
19439 (rmail-mime-image): Use rmail-mime-insert-image.
19440 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
19441 obey the value of `rmail-mime-show-images' option. Print the size of
19442 attachments.
19443
19444 2009-09-25 David Engster <deng@randomsample.de>
19445
19446 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
19447
19448 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19449
19450 * whitespace.el: Does not highlight trailing spaces While point is
19451 at end of line. Does not highligt spaces at beginning of buffer
19452 while point is at beginning of buffer. Does not highlight spaces
19453 at end of buffer while point is at end of buffer. (Bug#4177)
19454 New version 12.0.
19455 (whitespace-display-mappings): Adjust initialization.
19456 (whitespace-point, whitespace-font-lock-refontify): New vars.
19457 (whitespace-color-on, whitespace-color-off): Adjust code.
19458 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
19459 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
19460 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
19461
19462 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
19463
19464 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
19465
19466 * textmodes/sgml-mode.el: Remove xml-mode alias.
19467
19468 * files.el (auto-mode-alist, conf-mode-maybe)
19469 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
19470
19471 2009-09-24 Alan Mackenzie <acm@muc.de>
19472
19473 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
19474 c-forward-conditionals, but it doesn't move point and doesn't set
19475 the mark.
19476 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
19477 (c-down-conditional-with-else, c-backward-conditional)
19478 (c-forward-conditional): Refactor to use c-scan-conditionals.
19479
19480 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
19481
19482 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
19483 (help-default-arg-highlight): Remove.
19484 (help-highlight-arg): New function.
19485 (help-do-arg-highlight): Use it.
19486 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
19487
19488 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
19489
19490 * term.el (term-set-scroll-region, term-handle-ansi-escape):
19491 Undo last change, which didn't fix the problem and introduced others.
19492
19493 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
19494
19495 * progmodes/gdb-mi.el: Don't require speedbar.
19496 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
19497
19498 2009-09-24 Glenn Morris <rgm@gnu.org>
19499
19500 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
19501
19502 * term/ns-win.el (ns-reg-to-script): Define for compiler.
19503
19504 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
19505 there is no newline after the final mime boundary. (Bug#4539)
19506 Move markers on insertion so that any buttons inserted don't end up in
19507 the next part of a multipart message.
19508 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
19509 (rmail-mime-bulk-handler): Optionally handle images.
19510 (rmail-mime-image): New button action.
19511 (rmail-mime-image-handler): New function.
19512 (rmail-mime-mode): New mode.
19513 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
19514
19515 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
19516
19517 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
19518 than just dropping elements from it (bug#4504).
19519
19520 * term.el (term-set-scroll-region): Don't move cursor any more.
19521 (term-handle-ansi-escape): Call term-goto here instead.
19522 Suggested by Ivan Kanis <apple@kanis.eu>.
19523
19524 * term.el: Require CL.
19525 (term-ansi-reset): New function.
19526 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
19527 (term-handle-colors-array): Simplify.
19528
19529 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
19530
19531 * allout.el (allout-overlay-interior-modification-handler)
19532 (allout-obtain-passphrase):
19533 * epa-file.el (epa-file-write-region):
19534 * ps-print.el (ps-begin-job):
19535 * vc-hooks.el (vc-toggle-read-only):
19536 * vc-rcs.el (vc-rcs-rollback):
19537 * vc-sccs.el (vc-sccs-rollback):
19538 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
19539 (vc-version-diff, vc-revert, vc-rollback):
19540 * wdired.el (wdired-check-kill-buffer):
19541 * emacs-lisp/authors.el (authors):
19542 * net/socks.el (socks-open-connection):
19543 * net/zeroconf.el (zeroconf-service-add-hook):
19544 * obsolete/vc-mcvs.el (vc-mcvs-register):
19545 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
19546 (gdb-select-frame):
19547 * progmodes/grep.el (lgrep, rgrep):
19548 * progmodes/idlw-help.el (idlwave-help-check-locations)
19549 (idlwave-help-html-link, idlwave-help-assistant-open-link):
19550 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
19551 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
19552 (reftex-toc-rename-label): Fix typos in error messages.
19553
19554 * dired-aux.el (dired-do-shell-command): Reflow docstring.
19555 (dired-copy-how-to-fn): Doc fix.
19556 (dired-files-attributes, dired-read-shell-command):
19557 Fix typos in docstrings.
19558
19559 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
19560 (dired-x-find-file-other-window): Reflow docstrings.
19561 (dired-omit-marker-char, dired-read-shell-command)
19562 (dired-x-submit-report): Fix typos in docstrings.
19563
19564 * shell.el (shell-mode-hook):
19565 * view.el (View-scroll-line-forward):
19566 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
19567 Fix typos in docstrings.
19568
19569 * net/dig.el (dig-invoke): Fix typo in docstring.
19570 (query-dig): Reflow docstring.
19571
19572 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
19573 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
19574 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
19575 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
19576 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
19577 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
19578 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
19579 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
19580 (idlwave-completion-map, idlwave-current-indent)
19581 (idlwave-custom-ampersand-surround, idlwave-customize)
19582 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
19583 (idlwave-define-abbrev, idlwave-determine-class-special)
19584 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
19585 (idlwave-end-block-reg, idlwave-end-of-statement)
19586 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
19587 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
19588 (idlwave-explicit-class-listed, idlwave-file-header)
19589 (idlwave-fill-paragraph, idlwave-find-class-definition)
19590 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
19591 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
19592 (idlwave-in-quote, idlwave-indent-action-table)
19593 (idlwave-indent-expand-table, idlwave-indent-line)
19594 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
19595 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
19596 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
19597 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
19598 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
19599 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
19600 (idlwave-outlawed-buffers, idlwave-popup-select)
19601 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
19602 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
19603 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
19604 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
19605 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
19606 (idlwave-statement-type, idlwave-struct-skip)
19607 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
19608 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
19609 (idlwave-what-module-find-class): Fix typos in docstrings.
19610 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
19611 (idlwave-calculate-cont-indent, idlwave-expand-equal)
19612 (idlwave-find-module, idlwave-find-structure-definition)
19613 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
19614 (idlwave-list-load-path-shadows, idlwave-next-statement)
19615 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
19616 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
19617 (idlwave-template): Reflow docstrings.
19618
19619 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
19620 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
19621 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
19622 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
19623 (idlwave-shell-display-line, idlwave-shell-display-wframe)
19624 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
19625 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
19626 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
19627 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
19628 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
19629 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
19630 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
19631 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
19632 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
19633 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
19634 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
19635 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
19636 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
19637 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
19638 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
19639 Fix typos in docstrings.
19640 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
19641 (idlwave-shell-hide-output, idlwave-shell-mode)
19642 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
19643 Reflow docstrings.
19644
19645 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
19646
19647 2009-09-24 Ivan Kanis <apple@kanis.eu>
19648
19649 * term.el (term-bold-attribute): New var.
19650 (term-handle-colors-array): Use it.
19651
19652 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
19653
19654 * progmodes/gdb-mi.el (gdb-version): New variable.
19655 (gdb-non-stop-handler): Set gdb-version.
19656 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
19657 Condition "--thread" option on gdb-version.
19658 (gdb-invalidate-threads): Remove unused argument.
19659
19660 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
19661
19662 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
19663 to looking-back to avoid ridiculous slow down in large files (bug#4511).
19664
19665 2009-09-23 Glenn Morris <rgm@gnu.org>
19666
19667 * mail/rmail.el (rmail-reply): Don't try to add a References header when
19668 replying to mail without References or Message-Id. (Bug#4525)
19669
19670 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
19671
19672 * term/ns-win.el (ns-reg-to-script): New variable.
19673
19674 2009-09-23 Daiki Ueno <ueno@unixuser.org>
19675
19676 * epg.el (epg-wait-for-status): Preserve existing 'error results.
19677
19678 2009-09-22 Sam Steingold <sds@gnu.org>
19679
19680 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
19681 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
19682 to 1 because hg returns status 1 when nothing is found.
19683 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
19684
19685 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
19686
19687 * textmodes/fill.el: Convert to utf-8 encoding.
19688 (fill-french-nobreak-p): Remove redundant » and « inherited from our
19689 pre-Unicode days.
19690
19691 * add-log.el (change-log-fill-forward-paragraph): New function.
19692 (change-log-mode): Use it so fill-region DTRT.
19693 Set fill-indent-according-to-mode here rather than in
19694 change-log-fill-paragraph.
19695 (change-log-fill-paragraph): Remove.
19696
19697 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
19698
19699 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
19700 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
19701
19702 2009-09-22 Glenn Morris <rgm@gnu.org>
19703
19704 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
19705 the scroll-bar scroll the calendar window rather than the buffer.
19706
19707 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
19708 commands that move point (as opposed to scrolling).
19709
19710 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
19711
19712 * emacs-lisp/elint.el (elint): New custom group.
19713 (elint-log-buffer): Make it a defcustom.
19714 (elint-scan-preloaded, elint-ignored-warnings)
19715 (elint-directory-skip-re): New options.
19716 (elint-builtin-variables): Doc fix.
19717 (elint-preloaded-env): New variable.
19718 (elint-unknown-builtin-args): Add an entry for encode-time.
19719 (elint-extra-errors): Make it a variable rather than a constant.
19720 (elint-preloaded-skip-re): New constant.
19721 (elint-directory): Skip files matching elint-directory-skip-re.
19722 (elint-features): New variable, local to linted buffers.
19723 (elint-update-env): Initialize elint-features. Possibly add
19724 elint-preloaded-env to the buffer's environment.
19725 (elint-get-top-forms): Bind elint-current-pos, for log messages.
19726 Skip quoted forms.
19727 (elint-init-form): New function, extracted from elint-init-env.
19728 Make non-list forms a warning rather than an error.
19729 Add the mode-map for define-derived-mode. Handle define-minor-mode,
19730 easy-menu-define, put that adds an error-condition, and provide.
19731 When requiring cl, also require cl-macs. Really require cl, to handle
19732 some cl macros. Store required libraries in the list elint-features,
19733 so as not to re-load them. Treat cc-require like require.
19734 (elint-init-env): Call elint-init-form to do the work.
19735 Handle eval-and-compile and such like.
19736 (elint-add-required-env): Do not clear messages.
19737 (elint-special-forms): Add handlers for function, defalias, if, when,
19738 unless, and, or.
19739 (elint-form): Add optional argument to ignore elint-special-forms,
19740 useful to prevent recursive calls from handlers. Doc fix.
19741 Respect elint-ignored-warnings.
19742 (elint-form): Respect elint-ignored-warnings.
19743 (elint-bound-variable, elint-bound-function): New variables.
19744 (elint-unbound-variable): Respect elint-bound-variable.
19745 (elint-get-args): Respect elint-bound-function.
19746 (elint-check-cond-form): Add some simple handling for (f)boundp and
19747 featurep tests.
19748 (elint-check-defalias-form): New handler.
19749 (elint-check-let-form): Make an empty let a warning rather than an
19750 error.
19751 (elint-check-setq-form): Make an empty setq a warning rather than an
19752 error. Respect elint-ignored-warnings.
19753 (elint-check-defvar-form): Accept null doc-strings.
19754 (elint-check-conditional-form): New handler. Does some simple-minded
19755 checking of featurep and (f)boundp tests.
19756 (elint-put-function-args): New function.
19757 (elint-initialize): Use elint-scan-doc-file rather than
19758 elint-find-builtin-variables. Use elint-put-function-args.
19759 Possibly scan preloaded-file-list.
19760 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
19761 extend to handle functions as well.
19762
19763 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
19764
19765 * linum.el (linum-delete-overlays, linum-update-window):
19766 Do not modify the right margin. (Bug#3971)
19767
19768 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
19769
19770 * files.el (conf-mode-maybe, magic-fallback-mode-alist):
19771 Use nxml-mode instead of xml-mode.
19772
19773 2009-09-21 Kevin Ryde <user42@zip.com.au>
19774
19775 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
19776
19777 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
19778
19779 * net/dig.el (dig-mode): Use define-derived-mode.
19780
19781 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
19782
19783 * vc-dispatcher.el (vc-do-command): Return the process object in
19784 the asynchronous case. Use when instead of if. Do not run
19785 vc-exec-after to display a message if not enabled. (Bug#4463)
19786
19787 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
19788 properties to the stash strings.
19789 (vc-git-stash-list): Return a list of strings.
19790 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
19791 (vc-git-stash-show-at-point): New functions.
19792 (vc-git-stash-map): New keymap.
19793
19794 * register.el (ctl-x-r-map): Define the keys here instead of
19795 using autoload.
19796
19797 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
19798
19799 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
19800 list, to workaround performance problem (bug#4485).
19801
19802 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
19803
19804 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
19805
19806 2009-09-20 Daiki Ueno <ueno@unixuser.org>
19807
19808 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
19809 Document that this option is not recommended to use.
19810
19811 2009-09-19 Glenn Morris <rgm@gnu.org>
19812
19813 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
19814 variable `var'.
19815
19816 * calc/calc-alg.el (var):
19817 * calc/calcalg2.el (var): Define for compiler.
19818
19819 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
19820
19821 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
19822 Doc fix (Bug#3932).
19823
19824 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
19825
19826 * time-stamp.el (time-stamp-month-dd-yyyy)
19827 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
19828 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
19829 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
19830 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
19831 Remove functions that have been obsolete since 1995 (Bug#4436).
19832
19833 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
19834 indent buffer only if called interactively (Bug#4452).
19835
19836 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
19837 Eli Zaretskii <eliz@gnu.org>
19838
19839 This fixes bug#4197 (merged to bug#865, though not identical).
19840 * server.el (server-auth-dir): Add docstring note about FAT32.
19841 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
19842 but warn against using them.
19843
19844 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
19845
19846 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
19847 older GDB where there is no has_more field.
19848
19849 2009-09-19 Glenn Morris <rgm@gnu.org>
19850
19851 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
19852
19853 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
19854
19855 * files.el (auto-mode-alist): Change default for XML files to nXML
19856 mode (Bug#4169).
19857
19858 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
19859
19860 * server.el (server-ensure-safe-dir): Pass 'integer
19861 to `file-attributes', as suggested.
19862
19863 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
19864
19865 * dired-aux.el (dired-query-alist): Remove spurious backslash.
19866 (dired-query): Use read-key.
19867
19868 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
19869
19870 * cus-start.el (ns-use-qd-smoothing): Remove.
19871
19872 2009-09-18 Glenn Morris <rgm@gnu.org>
19873
19874 * allout.el (top-level): Remove unnecessary progn.
19875
19876 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
19877
19878 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
19879 definition of abbrev table.
19880
19881 * speedbar.el (speedbar-track-mouse):
19882 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
19883 * net/eudc.el (eudc-expand-inline):
19884 * net/newst-backend.el (newsticker--cache-read-feed):
19885 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
19886 condition-case handlers.
19887
19888 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
19889
19890 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
19891 (gdb-var-list): Add an element for has_more field.
19892 (gdb-non-stop-handler): Enable pretty printing for STL containers.
19893 (gdb-var-create-handler, gdb-var-list-children-handler-1)
19894 (gdb-var-update-handler-1): Parse output of dynamic variable
19895 objects (STL containers).
19896 (gdb-var-delete-1): Pass var1 as an explicit second argument.
19897 (gdb-get-field): Delete alias. Use bindat-get-field directly.
19898
19899 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
19900 gdb-var-list.
19901 (gud-speedbar-buttons): Make node expandable if expression "has more"
19902 children.
19903
19904 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
19905
19906 * startup.el (emacs-quick-startup): Remove variable and all uses.
19907 (command-line): Set `inhibit-x-resources' instead.
19908 (command-line-1): Use `inhibit-x-resources' instead.
19909
19910 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
19911
19912 * subr.el: Fix last change to avoid using the `unless' macro,
19913 which breaks bootstrapping.
19914
19915 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
19916
19917 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
19918 extended definitions, in case we reload subr.el after having
19919 loaded CL.
19920 (eval-next-after-load): Mark as obsolete.
19921
19922 2009-09-17 Juri Linkov <juri@jurta.org>
19923
19924 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
19925 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
19926 (menu-bar-showhide-menu, menu-bar-tools-menu)
19927 (menu-bar-describe-menu, menu-bar-help-menu)
19928 (minibuffer-local-completion-map, minibuffer-local-map):
19929 Fix list quoting.
19930
19931 2009-09-17 Glenn Morris <rgm@gnu.org>
19932
19933 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
19934 arguments, whether or not it has a handler.
19935
19936 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
19937
19938 * simple.el (hard-newline): Give it a doc-string.
19939
19940 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
19941 (lisp-mode-syntax-table): Give them doc-strings.
19942
19943 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
19944
19945 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
19946 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
19947 (menu-bar-options-menu, menu-bar-showhide-menu)
19948 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
19949 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
19950 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
19951 (menu-bar-options-menu, menu-bar-tools-menu)
19952 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
19953 (menu-bar-help-menu):
19954 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
19955 string arguments.
19956
19957 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
19958 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
19959 calls for the menu names and :help.
19960
19961 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
19962
19963 * mouse.el (minor-mode-menu-from-indicator): Pay attention
19964 to :minor-mode-function (bug#4455).
19965
19966 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
19967
19968 * startup.el (command-line): Initialize the window-system after
19969 processing the command-line.
19970
19971 * textmodes/page.el (what-page): Make sure we don't inf-loop if
19972 page-delimiter matches the empty string.
19973
19974 2009-09-16 Glenn Morris <rgm@gnu.org>
19975
19976 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
19977 byte-compile-not-obsolete-var. It's a list now.
19978 (byte-compile-not-obsolete-funcs): New variable.
19979 (byte-compile-warn-obsolete): Don't warn about functions if they are in
19980 byte-compile-not-obsolete-funcs.
19981 (byte-compile-variable-ref, byte-compile-defvar): Update for
19982 byte-compile-not-obsolete-vars name-change and list nature.
19983 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
19984 and variables behind (f)boundp tests.
19985 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
19986
19987 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
19988
19989 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
19990
19991 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
19992
19993 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
19994 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
19995 Don't autoload.
19996
19997 2009-09-15 Stephen Eglen <stephen@gnu.org>
19998
19999 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
20000 the virtual-buffers, use the name of the buffer specified by
20001 find-file-noselect, as the match may be a symlink. (This was a
20002 problem if the target and the symlink had different names.)
20003
20004 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
20005
20006 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
20007
20008 * desktop.el (desktop-path): Check user-emacs-directory.
20009
20010 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
20011
20012 * loadup.el: Use after-load-functions to GC after loading each file.
20013 Remove the explicit GC calls that used to be sprinkled around.
20014
20015 * subr.el (after-load-functions): New hook.
20016 (do-after-load-evaluation): Run it. Use string-match-p to detect
20017 `obsolete' packages, rather than painfully extracting the relevant
20018 directory name.
20019
20020 2009-09-15 Glenn Morris <rgm@gnu.org>
20021
20022 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
20023 free variable `doc'.
20024
20025 * dired.el (dired-mode-map): Add menu entry for async shell command.
20026
20027 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
20028 variables, also consider the .elc files, since the .el files are
20029 normally gzipped (subsequent code locates the .el.gz from the .elc).
20030
20031 * calc/calc-prog.el (arglist): Define for compiler.
20032
20033 * calendar/diary-lib.el (diary-display-function): Change the default to
20034 fancy display.
20035 (body): Define for compiler.
20036
20037 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
20038 (byte-compile-file-form, byte-compile-lambda)
20039 (byte-compile-top-level-body, byte-compile-form)
20040 (byte-compile-variable-ref, byte-compile-setq)
20041 (byte-compile-setq-default, byte-compile-body)
20042 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
20043 (batch-byte-compile): Give some more local variables with common names
20044 a "bytecomp-" prefix to avoid masking warnings about free variables.
20045
20046 * startup.el (command-line-1): Give local variables with common names a
20047 distinguishing prefix, so as not to hide free variable warnings during
20048 bootstrap.
20049
20050 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
20051 clever and add a suffix to make a unique name, just let the user decide
20052 whether or not to overwrite it. If the input is a directory, write the
20053 default filename to that directory. (Bug#4388)
20054 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
20055 is a filename-as-a-directory.
20056
20057 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
20058
20059 * textmodes/page.el (what-page): Don't move to beginning of line.
20060 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
20061
20062 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
20063
20064 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
20065
20066 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
20067
20068 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
20069 * help.el (help-for-help-internal): Add purecopy calls for text.
20070
20071 * vc.el (top): print-log method now takes an optional SHORTLOG
20072 argument. Add a new method: root.
20073 (vc-root-diff, vc-print-root-log): New functions.
20074 (vc-log-short-style): New variable.
20075 (vc-print-log-internal): Add support for showing short logs.
20076
20077 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
20078 vc-print-root-log and vc-print-root-diff.
20079
20080 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
20081 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
20082 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
20083 short logs.
20084
20085 * vc-cvs.el (vc-cvs-print-log):
20086 * vc-mtn.el (vc-mtn-print-log):
20087 * vc-rcs.el (vc-rcs-print-log):
20088 * vc-sccs.el (vc-sccs-print-log):
20089 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
20090 that is ignored for now.
20091
20092 * vc-mtn.el (vc-mtn-annotate-command):
20093 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
20094
20095 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
20096
20097 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
20098 to function-key-map, and give them ascii-character property.
20099 * term/x-win.el (x-alternatives-map):
20100 * term/ns-win.el (ns-alternatives-map):
20101 * term/internal.el (msdos-key-remapping-map):
20102 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
20103
20104 2009-09-14 Glenn Morris <rgm@gnu.org>
20105
20106 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
20107 temp-buffers (2009-09-12).
20108
20109 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
20110
20111 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
20112 the new read-key function.
20113
20114 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
20115
20116 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
20117 is defined (Bug#4405).
20118
20119 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
20120
20121 * recentf.el (recentf-cleanup): Use a hash table to find
20122 duplicates (Bug#4407).
20123
20124 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
20125
20126 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
20127 kp-0 to ascii equivalents (Bug#4325).
20128
20129 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
20130
20131 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
20132
20133 * eshell/em-hist.el:
20134 * eshell/em-dirs.el (eshell-complete-user-reference):
20135 Declare pcomplete functions and variables to avoid compiler warnings.
20136
20137 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
20138
20139 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
20140 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
20141 * eshell/em-alias.el (eshell-aliases-file):
20142 * eshell/em-hist.el (eshell-history-file-name):
20143 Use expand-file-name instead of concat to make file names (Bug#4308).
20144
20145 2009-09-13 Glenn Morris <rgm@gnu.org>
20146
20147 * ediff-merg.el (ediff-do-merge):
20148 * filesets.el (filesets-run-cmd):
20149 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
20150 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
20151 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
20152 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
20153 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
20154 Replace empty `let's with `progn'.
20155
20156 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
20157
20158 * mail/sendmail.el (send-mail-function):
20159 * tooltip.el (tooltip-mode):
20160 * simple.el (transient-mark-mode):
20161 * rfn-eshadow.el (file-name-shadow-mode):
20162 * frame.el (blink-cursor-mode):
20163 * font-core.el (global-font-lock-mode):
20164 * files.el (temporary-file-directory)
20165 (small-temporary-file-directory, auto-save-file-name-transforms):
20166 * epa-hook.el (auto-encryption-mode):
20167 * composite.el (global-auto-composition-mode):
20168 Use custom-initialize-delay.
20169 * startup.el (command-line): Don't explicitly call
20170 custom-reevaluate-setting for all the above vars.
20171 * custom.el (custom-initialize-safe-set)
20172 (custom-initialize-safe-default): Delete.
20173
20174 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
20175
20176 * term/x-win.el (x-initialize-window-system):
20177 * term/w32-win.el (w32-initialize-window-system):
20178 * term/ns-win.el (ns-initialize-window-system): Don't call
20179 mouse-wheel-mode since it's enabled globally by default already.
20180
20181 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
20182 actually define the variable, but only silences the byte-compiler.
20183 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
20184 before looking it up.
20185 (mouse-wheel-scroll-amount): Also reset the bindings if this value
20186 is changed.
20187
20188 2009-09-12 Glenn Morris <rgm@gnu.org>
20189
20190 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
20191 1000.
20192 (elint-add-required-env): Don't beep on error.
20193 (elint-forms): In case of error, return ENV unchanged.
20194 (elint-init-env): Skip non-list forms.
20195 (elint-log): Handle unknown file positions.
20196
20197 2009-09-12 Daiki Ueno <ueno@unixuser.org>
20198
20199 * epg.el (epg-make-context): Add autoload cookie.
20200 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
20201 (epg-decrypt-string, epg-start-verify, epg-verify-file)
20202 (epg-verify-string, epg-start-sign, epg-sign-file)
20203 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
20204 (epg-encrypt-string, epg-start-export-keys)
20205 (epg-export-keys-to-file, epg-export-keys-to-string)
20206 (epg-start-import-keys, epg-import-keys-from-file)
20207 (epg-import-keys-from-string, epg-start-receive-keys)
20208 (epg-receive-keys, epg-import-keys-from-server)
20209 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
20210 (epg-sign-keys, epg-start-generate-key)
20211 (epg-generate-key-from-file, epg-generate-key-from-string):
20212 Remove autoload cookie.
20213
20214 2009-09-12 Eli Zaretskii <eliz@gnu.org>
20215
20216 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
20217 reevaluation of trash-directory.
20218
20219 * mwheel.el: Fix last change.
20220 (mouse-wheel-mode): New defvar.
20221 (mouse-wheel-mode): Remove autoload cookie.
20222
20223 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
20224
20225 * mwheel.el (mwheel-installed-bindings): New var.
20226 (mouse-wheel-mode): Use it, so as to make sure we really remove all
20227 the bindings we set last time. Use custom-initialize-delay.
20228 * loadup.el: Load mwheel after term/*-win.el.
20229 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
20230 and mouse-wheel-up-event now that their first evaluation is done
20231 sufficiently late to be correct.
20232
20233 * startup.el (tutorial-directory): Make it a defcustom.
20234 Use custom-initialize-delay rather than eval-at-startup to set it.
20235 * image.el (image-load-path): Make it a defcustom.
20236 Use custom-initialize-delay rather than eval-at-startup to set it.
20237 * subr.el (eval-at-startup): Remove.
20238 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
20239
20240 * subr.el (do-after-load-evaluation): Warn the user after loading an
20241 obsolete package.
20242
20243 2009-09-12 Glenn Morris <rgm@gnu.org>
20244
20245 * proced.el (proced-mark-alt): Remove alias.
20246 (proced-mode-map): Remove proced-mark-alt.
20247
20248 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
20249 Elint file and directory. Remove initialization entry.
20250
20251 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
20252 commands.
20253 (elint-current-buffer): Set mode-line-process.
20254 (elint-init-env): Handle define-derived-mode.
20255 Fix declare-function with unspecified arglist. Guard against odd
20256 defalias statements (eg iso-insert's 8859-1-map).
20257 (elint-add-required-env): Use a temp buffer.
20258 (elint-form): Just print the function/macro name, not the whole form.
20259 Return env unchanged if we fail to parse a macro.
20260 (elint-forms): Guard against parse errors.
20261 (elint-output): New function, to handle batch mode.
20262 (elint-log-message): Add optional argument. Use elint-output.
20263 (elint-set-mode-line): New function.
20264
20265 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
20266
20267 * emacs-lisp/elp.el (elp-not-profilable): Add more
20268 functions (Bug#4233).
20269
20270 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
20271
20272 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
20273 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
20274
20275 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
20276
20277 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
20278 (gdb-var-list-children): Use json parsing.
20279
20280 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
20281
20282 * progmodes/js.el (js--proper-indentation): Handle the case where
20283 char-before is null. Reported by Deniz Dogan.
20284
20285 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
20286
20287 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
20288
20289 2009-09-11 Daiki Ueno <ueno@unixuser.org>
20290
20291 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
20292 (epg-digest-algorithm-alist): Add SHA224.
20293 (epg-context-set-passphrase-callback)
20294 (epg-context-set-progress-callback): Add description about
20295 callback function.
20296
20297 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20298
20299 * custom.el (custom-delayed-init-variables): New var.
20300 (custom-initialize-delay): New function.
20301 * startup.el (command-line): "Re"evaluate all vars in
20302 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
20303 explicitly any more.
20304 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
20305 to avoid creating a ~/.emacs.d at build-time (bug#4347).
20306
20307 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
20308
20309 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
20310
20311 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
20312 (gdb-var-update-handler): Use json parsing.
20313
20314 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
20315
20316 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
20317 decode annotated text, regardless of language environment. (Bug#2741)
20318
20319 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20320
20321 * Makefile.in (autoloads): Make rmail.el writable as well.
20322
20323 2009-09-11 Glenn Morris <rgm@gnu.org>
20324
20325 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
20326 loaddefs.el.
20327 * dired.el: Regenerate with extracted autoloads.
20328 * Makefile.in (autoloads): Make dired.el writable.
20329
20330 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
20331 * ibuffer.el: Regenerate with extracted autoloads.
20332 * Makefile.in (autoloads): Make ibuffer.el writable.
20333
20334 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
20335 * version.el (emacs-copyright, emacs-major-version)
20336 (emacs-minor-version): Reformat doc-strings for make-docfile.
20337
20338 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
20339 functions and variables, since they must be stuff specific to some other
20340 platform.
20341 (apropos-print): Make mouse-click message less specific about button.
20342
20343 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
20344 that records where a macro was defined.
20345 * help-fns.el (describe-function-1): Mention if a function has a
20346 compiler-macro.
20347 * help-mode.el (help-function-cmacro): New button.
20348
20349 * locate.el (top-level): Always require dired.
20350 (locate-mode-map): Initialize inside the defvar.
20351
20352 * net/ange-ftp.el (dired-compress-file): Declare.
20353 (ange-ftp-dired-compress-file): Add doc string.
20354
20355 * term/ns-win.el (x-display-name, x-setup-function-keys):
20356 Unify doc-strings with X versions.
20357
20358 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20359
20360 * emulation/crisp.el (crisp-mode-map): Move initialization
20361 into declaration.
20362 (crisp-mode): Use define-minor-mode.
20363
20364 * progmodes/xscheme.el (xscheme-evaluation-commands):
20365 Put a :advertised-binding property rather than using
20366 advertised-xscheme-send-previous-expression.
20367 (advertised-xscheme-send-previous-expression): Declare obsolete.
20368 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
20369 `advertised-undo'.
20370 (crisp-mode): Add corresponding bindings to
20371 undo's :advertised-binding instead.
20372 * dired.el (dired-mode-map): Put a :advertised-binding property rather
20373 than using dired-advertised-find-file.
20374 (dired-advertised-find-file):
20375 * simple.el (advertised-undo):
20376 * wid-edit.el (advertised-widget-backward): Declare obsolete.
20377 (widget-keymap): Put a :advertised-binding property rather
20378 than using advertised-widget-backward.
20379 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
20380 than using advertised-undo.
20381 * tutorial.el (tutorial--default-keys): Adjust accordingly.
20382
20383 2009-09-10 Simon South <ssouth@slowcomputing.org>
20384
20385 * progmodes/delphi.el (delphi-tab): Indent region when Transient
20386 Mark mode is enabled and region is active; otherwise indent or
20387 insert TAB as usual.
20388 (delphi-mode): Update description of TAB-key binding.
20389
20390 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
20391
20392 * subr.el (define-key-rebound-commands): Mark obsolete.
20393 * startup.el (precompute-menubar-bindings): Remove.
20394 (normal-top-level): Remove obsolete code that tried to precompute
20395 menubar bindings.
20396 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
20397 define-key-rebound-commands and precompute-menubar-bindings.
20398
20399 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
20400
20401 * net/imap.el (imap-interactive-login): Better messages.
20402 (imap-open): Fix bug with renamed buffer on reconnect.
20403 (imap-authenticate): Add buffer-local imap-last-authenticator variable
20404 for easier debugging and cleaner code. On successful (guessed based on
20405 server capabilities) secondary authentication, set imap-state
20406 correctly.
20407 (imap-last-authenticator): Define imap-last-authenticator as a variable
20408 to avoid warnings.
20409
20410 2009-09-10 Glenn Morris <rgm@gnu.org>
20411
20412 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
20413
20414 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
20415 (byte-compile-file-form-autoload): Don't warn about unknown functions
20416 where the autoload statement comes after the use.
20417 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
20418 that any handlers inside the body (eg require) are in turn respected.
20419
20420 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
20421 effects.
20422
20423 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
20424 and syntax and abbrev tables basic docs, if they don't have any.
20425
20426 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
20427
20428 * international/mule-cmds.el (top-level): Require cl when compiling.
20429 (view-hello-file): Use default-value rather than
20430 default-enable-multibyte-characters.
20431
20432 * progmodes/fortran.el: Move all safe and risky properties into the
20433 defcustoms.
20434
20435 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
20436 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
20437 * mail/undigest.el:
20438 Put autoloads in rmail.el rather than loaddefs.el.
20439 * mail/rmail.el: Regenerate with extracted autoloads.
20440
20441 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
20442 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
20443
20444 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
20445
20446 Reported in thread for Bug#4375.
20447 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
20448 "-data-evaluate-expression" instead of print.
20449 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
20450 (gdb-tooltip-print): Parse output from above MI command.
20451 (gdb): Revert 2009-08-11 change. User should detach inferior
20452 manually.
20453
20454 Remove the word "separate" from IO functions as inferior
20455 output is now never displayed in the GUD buffer.
20456
20457 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
20458
20459 * startup.el (command-line-normalize-file-name): On Windows and
20460 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
20461
20462 2009-09-10 Juri Linkov <juri@jurta.org>
20463
20464 * isearch.el (isearch-text-char-description): Propertize escape
20465 character sequences with the `escape-glyph' face. (Bug#4344)
20466
20467 * simple.el (shell-command): Set asynchronous process filter to
20468 `comint-output-filter'. (Bug#4343)
20469
20470 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
20471 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
20472 the list. Move "asm" to the bottom.
20473 (grep-find-ignored-directories): Add `choice' with nil value
20474 to empty the list easily.
20475 (grep-find-ignored-files): New option.
20476 (grep-files-history): Set to nil by default instead of '("ch" "el").
20477 (grep-compute-defaults): Add "<X>" to `grep-template'.
20478 (grep-read-files): Bind new local variables `default-alias' and
20479 `default-extension'. Use a list of default values for the file prompt.
20480 (lgrep): Add `--exclude=' command line options composed from
20481 `grep-find-ignored-files'.
20482 (rgrep): Add `-name' command line options composed from
20483 `grep-find-ignored-files'. (Bug#4301)
20484
20485 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
20486
20487 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
20488 (bug#4368).
20489
20490 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
20491
20492 * calendar/time-date.el (autoload):
20493 Expand define-obsolete-function-alias into defalias and make-obsolete
20494 for old Emacsen that Gnus supports.
20495 (with-no-warnings): Define it for old Emacsen.
20496 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
20497 is available.
20498 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
20499 float-time is available; suppress compile warning for time-to-seconds.
20500
20501 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
20502
20503 * net/imap.el (imap-message-map): Docstring fix.
20504
20505 2009-09-09 Glenn Morris <rgm@gnu.org>
20506
20507 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
20508 line numbers too. (Bug#4374)
20509
20510 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
20511
20512 * smerge-mode.el (smerge-remove-props, smerge-refine):
20513 Use with-silent-modifications (bug#4342).
20514
20515 * subr.el (with-silent-modifications): New macro.
20516
20517 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
20518
20519 * files.el (top-level): Require `cl' when compiling.
20520
20521 2009-09-07 Glenn Morris <rgm@gnu.org>
20522
20523 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
20524
20525 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
20526 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
20527
20528 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
20529
20530 * vc-git.el (vc-git-annotate-command): Use separator to parse
20531 arguments correctly.
20532
20533 2009-09-06 Eli Zaretskii <eliz@gnu.org>
20534
20535 * proced.el (proced-mode): Doc fix.
20536
20537 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
20538
20539 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
20540 lstat fails.
20541 (tramp-do-file-attributes-with-ls): Check for file existence at
20542 remote end.
20543 (tramp-do-file-attributes-with-stat): Likewise.
20544 (tramp-convert-file-attributes): Return nil when attr is nil.
20545
20546 2009-09-05 Glenn Morris <rgm@gnu.org>
20547
20548 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
20549 properties to this button.
20550 (diary-fancy-display): Don't extend the button to the final newline.
20551 (diary-fancy-display-mode): Continue to define "q" as a local key.
20552
20553 * calendar/cal-china.el (holiday-chinese): Make it slightly more
20554 efficient.
20555
20556 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
20557
20558 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
20559 (byte-compile-dest-file-function): New option.
20560 (byte-compile-dest-file): Doc fix.
20561 Obey byte-compile-dest-file-function.
20562 (byte-compile-cl-file-p): New function.
20563 (byte-compile-eval): Only suppress noruntime warnings about cl functions
20564 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
20565 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
20566 than for file being previously loaded.
20567 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
20568 (byte-compile-file-form-require): Handle the case where requiring a file
20569 indirectly causes CL to be loaded.
20570
20571 2009-09-05 Karl Fogel <kfogel@red-bean.com>
20572
20573 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
20574 before killing the old buffer, since by the time `kill-buffer' is
20575 run so many buffer variables have been set to nil that it may not
20576 behave as expected. (Bug#4061)
20577
20578 2009-09-05 Karl Fogel <kfogel@red-bean.com>
20579
20580 * files.el (find-alternate-file): If the old buffer is modified
20581 and visiting a file, behave similarly to `kill-buffer' when
20582 killing it, thus reverting to the pre-1.878 behavior; see
20583 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
20584 for discussion. Also, consult `buffer-file-name' as a variable
20585 not as a function, for consistency with the rest of the code.
20586
20587 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
20588
20589 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
20590 also when adding a new directory.
20591
20592 * net/tramp-compat.el (tramp-compat-line-beginning-position):
20593 New defun.
20594
20595 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
20596
20597 * files.el (locate-file-completion-table): Make it provide boundary
20598 information, so partial-completion works better.
20599
20600 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
20601
20602 * mail/footnote.el (Footnote-text-under-cursor):
20603 Check footnote-text-marker-alist before using it (bug#4324).
20604
20605 2009-09-04 Glenn Morris <rgm@gnu.org>
20606
20607 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
20608 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
20609 * play/solitaire.el, play/tetris.el:
20610 Remove leading * from defcustom and defface docs.
20611
20612 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
20613 necessary.
20614 (diary-fancy-overriding-map): New variable.
20615 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
20616 Use view-mode.
20617
20618 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
20619 goto-line.
20620
20621 2009-09-03 Glenn Morris <rgm@gnu.org>
20622
20623 * arc-mode.el (archive-mode):
20624 * dos-fns.el (set-default-process-coding-system):
20625 * man.el (Man-getpage-in-background):
20626 * menu-bar.el (menu-bar-describe-menu):
20627 * server.el (server-process-filter):
20628 * startup.el (command-line):
20629 * tar-mode.el (tar-header-block-tokenize, tar-extract):
20630 * w32-fns.el (set-default-process-coding-system):
20631 * x-dnd.el (x-dnd-handle-file-name):
20632 * international/mule-cmds.el (mule-menu-keymap)
20633 (set-default-coding-systems, language-info-alist, set-language-info)
20634 (set-language-environment, standard-display-european-internal)
20635 (set-locale-environment):
20636 * international/mule-diag.el (mule-diag):
20637 * mail/emacsbug.el (report-emacs-bug):
20638 * mail/rmail.el (rmail-mode):
20639 * mail/sendmail.el (mail-setup):
20640 Use default-value rather than default-enable-multibyte-characters.
20641
20642 * progmodes/f90.el: Move all safe properties into the defcustoms.
20643 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
20644
20645 * calendar/appt.el (appt-check):
20646 * calendar/diary-lib.el (diary-set-header, diary-live-p)
20647 (diary-check-diary-file, diary-list-entries)
20648 (diary-include-other-diary-files, diary-simple-display)
20649 (diary-fancy-display, diary-print-entries)
20650 (diary-mark-included-diary-files, diary-make-entry):
20651 Don't call substitute-in-file-name on diary-file.
20652
20653 2009-09-03 Eduard Wiebe <usenet@pusto.de>
20654 Stefan Monnier <monnier@iro.umontreal.ca>
20655
20656 * mail/footnote.el (footnote-prefix): Make it a defcustom.
20657 (footnote-mode-map): Move initialization into the declaration.
20658 (footnote-minor-mode-map): Define it rather than changing global-map.
20659 (footnote-mode): Use define-minor-mode.
20660
20661 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
20662
20663 * net/tramp.el (tramp-handle-file-attributes-with-ls)
20664 (tramp-do-file-attributes-with-perl)
20665 (tramp-do-file-attributes-with-stat): Rename from
20666 `tramp-handle-file-attributes-with-*'.
20667 (tramp-handle-file-attributes): Use them.
20668 (tramp-do-directory-files-and-attributes-with-perl)
20669 (tramp-do-directory-files-and-attributes-with-stat): Rename from
20670 `tramp-handle-directory-files-and-attributes-with-*'.
20671 (tramp-handle-directory-files-and-attributes): Use them.
20672 (tramp-method-out-of-band-p): Additional parameter SIZE.
20673 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
20674 (tramp-handle-write-region): Use it.
20675 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
20676 (tramp-handle-vc-registered): Check, whether the first run did
20677 return files to be tested.
20678 (tramp-advice-make-auto-save-file-name): Do not call directly
20679 `tramp-handle-make-auto-save-file-name', because this would bypass
20680 the locking mechanism.
20681
20682 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
20683 (file-remote-p, process-file, start-file-process, set-file-times)
20684 (tramp-compat-file-attributes): Compatibility functions shall not
20685 call directly `tramp-handle-*', because this would bypass the
20686 locking mechanism.
20687 (tramp-compat-number-sequence): New defun.
20688
20689 2009-09-02 Glenn Morris <rgm@gnu.org>
20690
20691 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
20692 alias for float-time.
20693 (time-to-number-of-days): In Emacs, use float-time.
20694 * net/newst-backend.el (time-add): Suppress warnings from compat
20695 function.
20696 * time.el (emacs-uptime, emacs-init-time):
20697 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
20698 Use float-time rather than time-to-seconds.
20699
20700 * minibuffer.el (completion-initials-expand): Fix typo.
20701
20702 * faces.el (modeline, modeline-inactive, modeline-highlight)
20703 (modeline-buffer-id):
20704 * info.el (info-menu-5): Mark these face aliases as obsolete.
20705
20706 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
20707
20708 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
20709 space ...
20710 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
20711 no "--thread" option.
20712 (gdb-stopped): Don't print "Switched to thread" message when it is
20713 unchanged.
20714
20715 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
20716
20717 * minibuffer.el (completion-try-completion)
20718 (completion-all-completions): Remove ill-defined (and
20719 mistakenly installed and luckily never used nor documented)
20720 `completion-styles' property.
20721 (completion-initials-expand, completion-initials-all-completions)
20722 (completion-initials-try-completion): New functions.
20723 (completion-styles-alist): Add doc to each entry.
20724 Add new `initials' entry.
20725
20726 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
20727
20728 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
20729 MI command -var-evaluate-expression.
20730 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
20731 and tweak for case of string child.
20732 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
20733
20734 2009-09-01 Glenn Morris <rgm@gnu.org>
20735
20736 * add-log.el (change-log-date-face, change-log-name-face)
20737 (change-log-email-face, change-log-file-face, change-log-list-face)
20738 (change-log-conditionals-face, change-log-function-face)
20739 (change-log-acknowledgement-face):
20740 * cus-edit.el (custom-invalid-face, custom-rogue-face)
20741 (custom-modified-face, custom-set-face, custom-changed-face)
20742 (custom-saved-face, custom-button-face, custom-button-pressed-face)
20743 (custom-documentation-face, custom-state-face, custom-comment-face)
20744 (custom-comment-tag-face, custom-variable-tag-face)
20745 (custom-variable-button-face, custom-face-tag-face)
20746 (custom-group-tag-face-1, custom-group-tag-face):
20747 * diff-mode.el (diff-header-face, diff-file-header-face)
20748 (diff-index-face, diff-hunk-header-face, diff-removed-face)
20749 (diff-added-face, diff-changed-face, diff-function-face)
20750 (diff-context-face, diff-nonexistent-face):
20751 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
20752 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
20753 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
20754 (Info-title-4-face):
20755 * isearch.el (isearch-lazy-highlight-face):
20756 * log-view.el (log-view-file-face, log-view-message-face):
20757 * paren.el (show-paren-match-face, show-paren-mismatch-face):
20758 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
20759 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
20760 (cvs-msg-face):
20761 * smerge-mode.el (smerge-mine-face, smerge-other-face)
20762 (smerge-base-face, smerge-markers-face):
20763 * wid-edit.el (widget-documentation-face, widget-button-face)
20764 (widget-field-face, widget-single-line-field-face)
20765 (widget-inactive-face, widget-button-pressed-face):
20766 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
20767 (woman-addition-face):
20768 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
20769 (eshell-ls-executable-face, eshell-ls-readonly-face)
20770 (eshell-ls-unreadable-face, eshell-ls-special-face)
20771 (eshell-ls-missing-face, eshell-ls-archive-face)
20772 (eshell-ls-backup-face, eshell-ls-product-face)
20773 (eshell-ls-clutter-face):
20774 * eshell/em-prompt.el (eshell-prompt-face):
20775 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
20776 * obsolete/old-whitespace.el (whitespace-highlight-face):
20777 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
20778 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
20779 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
20780 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
20781 (antlr-font-lock-literal-face):
20782 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
20783 (ebrowse-root-class-face, ebrowse-file-name-face)
20784 (ebrowse-default-face, ebrowse-member-attribute-face)
20785 (ebrowse-member-class-face, ebrowse-progress-face):
20786 * progmodes/make-mode.el (makefile-space-face):
20787 * progmodes/sh-script.el (sh-heredoc-face):
20788 * textmodes/flyspell.el (flyspell-incorrect-face)
20789 (flyspell-duplicate-face):
20790 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
20791 * textmodes/texinfo.el (texinfo-heading-face):
20792 Mark face aliases with "-face" suffix as obsolete.
20793
20794 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
20795 compiler.
20796
20797 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
20798 (eudc-bob-sound-menu): Use defvar rather than defconst, since
20799 easy-menu-define wants to modify these.
20800
20801 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
20802
20803 * net/browse-url.el (browse-url-file-url):
20804 * term/internal.el (dos-codepage-setup):
20805 Use default-value rather than default-enable-multibyte-characters.
20806
20807 * progmodes/etags.el (etags-goto-tag-location):
20808 * progmodes/flymake.el (flymake-highlight-line)
20809 (flymake-goto-file-and-line, flymake-goto-line):
20810 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
20811 (gdb-goto-breakpoint):
20812 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
20813 * progmodes/python.el (python-find-function)
20814 (python-pdbtrack-track-stack-file):
20815 * progmodes/verilog-mode.el (verilog-surelint-off):
20816 * term/ns-win.el (ns-open-file-select-line):
20817 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
20818 Use forward-line rather than goto-line.
20819
20820 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
20821 * textmodes/reftex-index.el (reftex-display-index):
20822 * textmodes/reftex-ref.el (reftex-offer-label-menu):
20823 * textmodes/reftex-toc.el (reftex-toc):
20824 Remove unnecessary bindings of default-major-mode (all are followed by
20825 major-mode check and possible mode switch).
20826
20827 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
20828
20829 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
20830 Handle watchpoints (bug#4282).
20831 (def-gdb-thread-buffer-command): Enable thread to be selected by
20832 clicking without selecting threads buffer first.
20833 (gdb-current-context-command): Use selected frame so that "up",
20834 "down" etc work in the GUD buffer.
20835 (gdb-update): Find selected frame before rendering stack buffer.
20836 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
20837
20838 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
20839
20840 * progmodes/sym-comp.el (displayed-completions): Remove.
20841 (symbol-complete): Use minibuffer-complete.
20842
20843 2009-08-31 Glenn Morris <rgm@gnu.org>
20844
20845 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
20846
20847 * apropos.el (apropos-symbols-internal):
20848 Handle (obsolete) face aliases.
20849
20850 * faces.el (describe-face): Adjust the output format to be more like
20851 describe-variable, and to mention (obsolete) face aliases.
20852 Adjust the whitespace so that help-setup-xref works.
20853
20854 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
20855 * calendar/diary-lib.el (diary-button-face):
20856 Mark these face aliases as obsolete.
20857
20858 * calendar/calendar.el (calendar-today): Doc fix.
20859
20860 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
20861
20862 * progmodes/gdb-mi.el (gdb-control-all-threads)
20863 (gdb-control-current-thread): Force tool bar update.
20864 (gdb-non-stop-handler): New function.
20865 (gdb-init-1): Use it to test if non-stop mode is supported.
20866 Remove unused gdbmi buffer type.
20867
20868 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
20869
20870 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
20871 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
20872
20873 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
20874
20875 * comint.el (comint-exec-1): Check command is non-null first.
20876 Part of gdb-mi.el change (2009-08-28).
20877
20878 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
20879
20880 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
20881
20882 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
20883
20884 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
20885 instead of `dolist' to avoid a recursive require when bootstrapping.
20886
20887 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
20888
20889 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
20890
20891 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
20892
20893 * net/imap.el (imap-send-command): Simplify.
20894 (imap-wait-for-tag): point-max -> buffer-size.
20895
20896 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
20897
20898 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
20899 with constant argument.
20900
20901 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
20902
20903 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
20904
20905 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
20906 Change default, since most of our files don't have a history.
20907 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
20908 the user.
20909
20910 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20911 Add comint-run.
20912
20913 * calc/calc.el: Improve commenting convention.
20914 (calc-digit-map, toplevel): Simplify.
20915
20916 * comint.el (comint-insert-input): Be careful to only set point if we
20917 don't delegate to some other command.
20918
20919 * proced.el (proced-signal-list): Make it an alist.
20920 (proced-grammar-alist): Capitalize names.
20921 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
20922 Disable undo manually and make it read-only.
20923 Use completion-annotate-function.
20924
20925 * minibuffer.el (minibuffer-message): If the current buffer is not
20926 a minibuffer, insert the message in the echo area rather than at the
20927 end of the buffer.
20928 (completion-annotate-function): New variable.
20929 (minibuffer-completion-help): Use it.
20930 (completion--embedded-envvar-table): Environment vars are
20931 always case-sensitive.
20932
20933 2009-08-30 Glenn Morris <rgm@gnu.org>
20934
20935 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
20936 from fortran-current-defun.
20937 (fortran-beginning-of-subprogram): Be more precise about finding the
20938 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
20939 (fortran-end-of-subprogram): Simplify.
20940 (fortran-current-defun): Use fortran-start-prog-re.
20941
20942 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
20943
20944 * subr.el (do-after-load-evaluation): Simplify.
20945
20946 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
20947
20948 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
20949
20950 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
20951 (vc-rcs-print-log): Use it.
20952
20953 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
20954
20955 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
20956
20957 * paths.el (abbrev-file-name): Move to abbrev.el.
20958 * abbrev.el (abbrev-file-name): Move from paths.el.
20959 Obey user-emacs-directory.
20960 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
20961 user-emacs-directory.
20962 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
20963 abbrev-file-name and calc-settings-file any more.
20964 * startup.el (command-line): Recompute abbrev-file-name and
20965 abbreviated-home-dir.
20966 (normal-no-mouse-startup-screen): Improve the generic code and get rid
20967 of the special code for when C-h bindings haven't been changed.
20968 (display-startup-echo-area-message): Use with-current-buffer.
20969 (command-line-1): Use a list of strings, rather than a list of lists
20970 of strings for longopts.
20971
20972 * files.el (get-free-disk-space): Use / for default-directory.
20973
20974 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
20975 Use with-current-buffer.
20976
20977 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
20978 Recognize immutable variables like most-positive-fixnum.
20979 (byte-compile-setq-default): Check and warn if trying to assign
20980 to an immutable variable, or a non-variable.
20981
20982 * progmodes/cc-vars.el (c-comment-continuation-stars):
20983 * progmodes/cc-engine.el (c-looking-at-bos):
20984 * progmodes/cc-cmds.el (c-toggle-auto-state)
20985 (c-forward-into-nomenclature, c-backward-into-nomenclature)
20986 (c-comment-line-break-function): Add version of obsolescence.
20987
20988 2009-08-28 Juri Linkov <juri@jurta.org>
20989
20990 * files.el (magic-fallback-mode-alist): Add ZIP magic number
20991 associated with `archive-mode'.
20992
20993 * image.el (image-type-header-regexps): Use only JPEG magic number
20994 to determine JPEG images, and don't use `image-jpeg-p' because
20995 Emacs can display non-JFIF non-Exif JPEG images.
20996
20997 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
20998
20999 * arc-mode.el (archive-mode):
21000 * emacs-lisp/re-builder.el (re-builder-unload-function):
21001 Protect against the default value of `major-mode' being nil.
21002
21003 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
21004
21005 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
21006 Fix typos in docstrings.
21007
21008 * progmodes/js.el (js--macro-decl-re): Doc fix.
21009 (js--plain-method-re, js--split-name): Refloc docstring.
21010 (js--class-styles, js--make-merged-item, js--splice-into-items):
21011 Fix typos in docstrings; reflow docstrings.
21012 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
21013 (js--variable-decl-matcher, js--inside-pitem-p)
21014 (js--parse-state-at-point, js--get-all-known-symbols)
21015 (js--symbol-history, js-find-symbol, js--js-references)
21016 (js--moz-interactor, js--js-encode-value, js--read-tab):
21017 Fix typos in docstrings.
21018
21019 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
21020
21021 * textmodes/reftex.el (reftex-get-file-buffer-force):
21022 * progmodes/verilog-mode.el (verilog-batch-execute-func):
21023 * emulation/viper.el (viper-go-away, viper-set-hooks):
21024 * emacs-lisp/re-builder.el (re-builder-unload-function):
21025 * emacs-lisp/bytecomp.el (byte-compile-file):
21026 * ses.el (ses-unload-function):
21027 * hexl.el (hexl-find-file):
21028 * files.el (normal-mode):
21029 * ehelp.el (with-electric-help):
21030 * autoinsert.el (auto-insert-alist):
21031 * arc-mode.el (archive-mode):
21032 Use (default-value 'major-mode) instead of default-major-mode.
21033
21034 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
21035 * international/mule.el (load-with-code-conversion):
21036 * emacs-lisp/debug.el (debug):
21037 * ediff-vers.el (ediff-rcs-get-output-buffer):
21038 * dired.el (dired-internal-noselect): Don't let-bind
21039 default-major-mode around code that doesn't use it.
21040 E.g. buffer creation via get-buffer-create doesn't use it.
21041
21042 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
21043
21044 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
21045 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
21046 when writing the temp file. Otherwise, epa-file gets confused.
21047 (tramp-register-file-name-handlers): Make it a defun. Move also
21048 `epa-file-handler' to the front of `file-name-handler-alist'.
21049
21050 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
21051
21052 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
21053 start right after a ^M.
21054 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
21055 (tramp-completion-file-name-regexp-separate)
21056 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
21057 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
21058 Don't modify last-coding-system-used by accident.
21059 (tramp-completion-file-name-handler): Apply the checks here,
21060 instead during registration.
21061 (tramp-register-file-name-handlers): Rename from
21062 `tramp-register-file-name-handler'. Register both
21063 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
21064 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
21065
21066 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
21067
21068 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
21069 Remove variable ...
21070 (gdb-init-1, gdb-display-separate-io-buffer)
21071 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
21072 references to it.
21073 (gdb-inferior-io-mode): Use make-comint-in-buffer.
21074 (gdb-inferior-filter): Use comint-output-filter to stop
21075 echoing and remove ^M characters.
21076
21077 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
21078
21079 * emulation/viper-init.el (viper-restore-cursor-type):
21080 * emulation/cua-base.el (cua--update-indications):
21081 Replace default-cursor-type with (default-value 'cursor-type).
21082
21083 * mail/sendmail.el (mail-recover-1):
21084 * international/mule-diag.el (describe-current-coding-system-briefly)
21085 (describe-current-coding-system):
21086 * international/mule-cmds.el (select-safe-coding-system)
21087 (select-message-coding-system)
21088 (set-language-environment-coding-systems, set-locale-environment):
21089 * hexl.el (hexl-insert-multibyte-char):
21090 * dos-w32.el (find-buffer-file-type-coding-system):
21091 * simple.el (what-cursor-position):
21092 Replace uses of default-buffer-file-coding-system
21093 with (default-value 'buffer-file-coding-system).
21094
21095 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
21096 Replace uses of default-cursor-in-non-selected-windows
21097 with (default-value 'cursor-in-non-selected-windows).
21098 Use with-current-buffer.
21099
21100 * mail/feedmail.el: Use CL macros.
21101 (feedmail-run-the-queue, feedmail-send-it-immediately):
21102 * dos-w32.el (find-buffer-file-type): Replace uses of
21103 default-buffer-file-type with (default-value 'buffer-file-type).
21104
21105 2009-08-28 Glenn Morris <rgm@gnu.org>
21106
21107 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
21108 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
21109 Use default-value of major-mode rather than default-major-mode.
21110
21111 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
21112
21113 * Makefile.in (update-elcfiles): Report left over elc files.
21114
21115 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
21116 expand-file-name and with-current-buffer.
21117 (mail-get-names, mail-directory): Use with-current-buffer.
21118
21119 * vc.el (vc-read-revision): New function.
21120 (vc-version-diff, vc-merge): Use it.
21121
21122 2009-08-27 Sam Steingold <sds@gnu.org>
21123
21124 * simple.el (kill-do-not-save-duplicates): New user option.
21125 (kill-new): When it is non-nil, and the new string is the same as
21126 the latest kill, set replace to t to avoid duplicates in kill-ring.
21127
21128 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
21129
21130 * net/tramp.el (tramp-handle-process-file): Do not flush all
21131 caches when `process-file-side-effects' is set.
21132 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
21133 instead of `tramp-find-file-exists-command'.
21134 Unset `process-file-side-effects'.
21135
21136 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
21137
21138 * net/tramp.el (tramp-methods): New method "rsyncc".
21139 (top): Add completion function for "rsyncc".
21140 (tramp-message-show-message): New defvar.
21141 (tramp-message, tramp-error): Use it.
21142 (tramp-do-copy-or-rename-file-directly): Extend check for direct
21143 remote copying.
21144 (tramp-do-copy-or-rename-file-out-of-band): Handle new
21145 `tramp-methods' entry `copy-env' of "rsyncc".
21146 (tramp-vc-registered-read-file-names): New defconst.
21147 (tramp-vc-registered-file-names): New defvar.
21148 (tramp-handle-vc-registered): Implement optimization strategy.
21149 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
21150 (tramp-vc-file-name-handler): New defun.
21151 (tramp-get-ls-command, tramp-get-test-command)
21152 (tramp-get-file-exists-command, tramp-get-remote-ln)
21153 (tramp-get-remote-perl, tramp-get-remote-stat)
21154 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
21155
21156 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
21157 (tramp-cache-inhibit-cache): Extend doc string. It allows also
21158 timestamps.
21159 (tramp-get-file-property): Check for timestamps in
21160 `tramp-cache-inhibit-cache'.
21161 (tramp-set-file-property): Write timestamp.
21162
21163 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
21164
21165 * language/japan-util.el (japanese-symbol-table): Add entries for
21166 cp932-2-byte.
21167
21168 * international/characters.el: Add category `j' to cp932-2-byte.
21169
21170 2009-08-27 Kenichi Handa <handa@m17n.org>
21171
21172 * international/fontset.el (build-default-fontset-data): New macro.
21173 (setup-default-fontset): Use build-default-fontset-data for CJK,
21174 tibetan, ethiopic, and ipa.
21175
21176 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
21177
21178 * cus-start.el (default-major-mode): Customize `major-mode' instead.
21179 (enable-multibyte-characters): Not customizable any more.
21180
21181 * subr.el (default-mode-line-format, default-header-line-format)
21182 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
21183 (default-direction-reversed, default-truncate-lines)
21184 (default-left-margin, default-tab-width, default-case-fold-search)
21185 (default-left-margin-width, default-right-margin-width)
21186 (default-left-fringe-width, default-right-fringe-width)
21187 (default-fringes-outside-margins, default-scroll-bar-width)
21188 (default-vertical-scroll-bar, default-indicate-empty-lines)
21189 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
21190 (default-fringe-cursor-alist, default-scroll-up-aggressively)
21191 (default-scroll-down-aggressively, default-fill-column)
21192 (default-cursor-type, default-buffer-file-type)
21193 (default-cursor-in-non-selected-windows)
21194 (default-buffer-file-coding-system, default-major-mode)
21195 (default-enable-multibyte-characters): Mark as obsolete.
21196
21197 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
21198
21199 * vc-dir.el (vc-dir-update): Remove debug helper.
21200
21201 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
21202
21203 2009-08-26 Sam Steingold <sds@gnu.org>
21204
21205 * simple.el (save-interprogram-paste-before-kill): New user option.
21206 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
21207 save the interprogram-paste into kill-ring before overriding it
21208 with the Emacs kill.
21209
21210 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
21211
21212 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
21213 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
21214 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
21215 and move to vc-rcs.el.
21216 (vc-default-next-revision): Rename to vc-rcs-next-revision and
21217 move to vc-rcs.el.
21218 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
21219 (vc-rcs-update-changelog): Remove.
21220 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
21221 and move to vc-rcs.el.
21222
21223 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
21224 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
21225 renaming.
21226 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
21227 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
21228 vc.el, renamed to be RCS specific.
21229
21230 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
21231 New functions.
21232 (vc-cvs-update-changelog): Move here from vc.el.
21233
21234 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
21235 New functions.
21236
21237 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
21238
21239 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
21240
21241 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
21242
21243 * vc-git.el (vc-git-register): Use "git add" for directories.
21244 (vc-git-stash, vc-git-stash-show): New functions.
21245 (vc-git-extra-menu-map): Bind them.
21246
21247 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
21248 directory correctly in case the item is a directory itself.
21249
21250 * vc.el: Document the desired behavior for reverted files in the
21251 `added' state.
21252 (vc-default-prettify-state-info): Remove function, unused.
21253
21254 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
21255
21256 2009-08-26 Glenn Morris <rgm@gnu.org>
21257
21258 * bindings.el (standard-mode-line-format): Reposition dashes in
21259 which-func entry. (Bug#4217)
21260
21261 * files.el (enable-local-variables, enable-local-eval)
21262 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
21263 the defcustoms.
21264 (auto-mode-alist, ignored-local-variables)
21265 (save-some-buffers-action-alist): Move risky declarations to the
21266 definitions.
21267 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
21268 (font-lock-defaults, format-alist, imenu--index-alist)
21269 (imenu-generic-expression, input-method-alist, minor-mode-alist)
21270 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
21271 (mode-line-modified, mode-line-mule-info, mode-line-position)
21272 (mode-line-process, mode-line-remote, outline-level)
21273 (parse-time-rules, rmail-output-file-alist)
21274 (special-display-buffer-names, vc-mode):
21275 Move risky declarations to the relevant files.
21276 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
21277 (mode-line-modified, mode-line-process, mode-line-position)
21278 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
21279 * font-core.el (font-lock-defaults):
21280 * format.el (format-alist):
21281 * vc-hooks.el (vc-mode):
21282 * window.el (special-display-buffer-names):
21283 * international/mule-cmds.el (input-method-alist):
21284 Define riskiness here (dumped file) rather than in files.el.
21285 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
21286 * imenu.el (imenu-generic-expression, imenu--index-alist):
21287 * outline.el (outline-level):
21288 * time.el (display-time-string):
21289 * calendar/parse-time.el (parse-time-rules):
21290 * mail/rmailout.el (rmail-output-file-alist):
21291 Autoload riskiness here, rather than placing in files.el.
21292
21293 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
21294
21295 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
21296
21297 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
21298
21299 * simple.el (process-file-side-effects): New defvar.
21300
21301 * dired-aux.el (dired-show-file-type):
21302 * vc.el (vc-diff-internal):
21303 * vc-arch.el (vc-arch-diff):
21304 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
21305 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
21306 * vc-git.el (vc-git-registered, vc-git-working-revision)
21307 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
21308 (vc-git--empty-db-p):
21309 * vc-hooks.el (vc-user-login-name):
21310 * vc-svn.el (vc-svn-registered, vc-svn-state)
21311 (vc-svn-dir-extra-headers, vc-svn-find-revision):
21312 * progmodes/grep.el (grep-probe): Let-bind
21313 `process-file-side-effects' with nil.
21314
21315 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
21316
21317 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
21318 daemon. Replace ping by checking for running service for bluez
21319 and zeroconf. (Bug#4239)
21320
21321 2009-08-25 Kevin Ryde <user42@zip.com.au>
21322
21323 * net/dig.el (dig): Add autoload cookie.
21324
21325 2009-08-25 Glenn Morris <rgm@gnu.org>
21326
21327 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
21328 load-history for absolute file-names.
21329 (byte-compile-file-form-require): Warn about use of the cl package.
21330
21331 * format.el (format-alist): Doc fix.
21332
21333 * play/bubbles.el (top-level): Don't require cl at run-time.
21334
21335 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
21336 run-time cl).
21337
21338 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
21339
21340 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
21341 from cl package.
21342 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
21343
21344 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
21345
21346 * calc/calc-alg.el (math-trig-rewrite)
21347 (math-hyperbolic-trig-rewrite): New functions.
21348 (calc-simplify): Simplify trig functions when asked.
21349
21350 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
21351
21352 * diff-mode.el (diff-find-source-location): Avoid goto-line.
21353
21354 2009-08-24 Kenichi Handa <handa@m17n.org>
21355
21356 * language/ind-util.el (mapthread): Delete it.
21357 (combinatorial): New function.
21358 (indian--puthash-cv): Use combinatorial instead of mapthread.
21359
21360 2009-08-22 Kevin Ryde <user42@zip.com.au>
21361
21362 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
21363 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
21364 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
21365 Clarify docstring that the value is strings not symbols.
21366 (checkdoc-list-of-strings-p): New function.
21367
21368 2009-08-22 Glenn Morris <rgm@gnu.org>
21369
21370 * files.el (auto-mode-alist):
21371 * hippie-exp.el (he-concat-directory-file-name):
21372 * lpr.el (lpr-windows-system, printer-name):
21373 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
21374 * ps-print.el (ps-windows-system):
21375 * startup.el (command-line):
21376 * emulation/viper-ex.el (viper-glob-function):
21377 * international/mule-cmds.el (set-language-environment-coding-systems):
21378 * net/ange-ftp.el (ange-ftp-write-region):
21379 * obsolete/fast-lock.el (fast-lock-cache-name):
21380 Remove code for defunct system-types emx, macos, mswindows, next-mach,
21381 unisoft-unix, vax-vms, win32, w32.
21382
21383 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
21384 given name if the pattern is not more specific.
21385
21386 * calendar/lunar.el (lunar-phase-names): New option.
21387 (lunar-phase): Doc fix.
21388 (lunar-cycles-per-year): New constant.
21389 (lunar-index): New function.
21390 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
21391 (lunar-phase-name): Use lunar-phase-names.
21392 (calendar-lunar-phases): Use format.
21393 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
21394
21395 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
21396 Copy imenu-example--name-and-position function here for own use.
21397 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
21398
21399 * bs.el (bs--redisplay):
21400 * cus-edit.el (custom-redraw):
21401 * ibuffer.el (ibuffer-bury-buffer):
21402 * server.el (server-goto-line-column):
21403 * startup.el (command-line-1):
21404 * strokes.el (strokes-xpm-for-stroke):
21405 * term.el (term-display-buffer-line):
21406 * view.el (View-goto-line):
21407 * calc/calc.el (calc-do, calc-trail-buffer):
21408 * play/gamegrid.el (gamegrid-add-score-insecure):
21409 * progmodes/ada-mode.el (ada-compile-goto-error):
21410 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
21411 (ebrowse-select-1st-to-9nth):
21412 * progmodes/cperl-mode.el (cperl-time-fontification):
21413 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
21414 * progmodes/gud.el (gud-display-line):
21415 (idlwave-shell-display-line):
21416 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
21417 * progmodes/make-mode.el (makefile-browser-toggle):
21418 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
21419 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
21420 * textmodes/picture.el (picture-draw-rectangle):
21421 * textmodes/reftex-index.el (reftex-index-goto-letter):
21422 (reftex-select-jump-to-previous):
21423 * textmodes/reftex-sel.el (reftex-find-start-point)
21424 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
21425 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
21426 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
21427 * textmodes/tex-mode.el (tex-compilation-parse-errors):
21428 * textmodes/two-column.el (2C-associated-buffer):
21429 Use forward-line rather than goto-line.
21430
21431 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
21432 goto-line.
21433
21434 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
21435 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
21436 (quick-check-list-to-regexp): Declare.
21437
21438 * progmodes/make-mode.el (makefile-browser-insert-selection):
21439 Use goto-char rather than goto-line.
21440
21441 * progmodes/prolog.el (compilation-error-regexp-alist)
21442 (compilation-forget-errors): Declare.
21443
21444 2009-08-22 Juri Linkov <juri@jurta.org>
21445
21446 * progmodes/grep.el (lgrep, rgrep): At the beginning
21447 set `dir' to `default-directory' unless `dir' is a non-nil
21448 readable directory. (Bug#4052)
21449 (lgrep, rgrep): Change a weird way to report an error
21450 from using `read-string' to using `error'.
21451 Instead of using interactive arguments in the function body,
21452 add new argument `confirm'.
21453
21454 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
21455
21456 * textmodes/remember.el (remember-buffer):
21457 * progmodes/cperl-mode.el (cperl-vc-header-alist):
21458 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
21459 (icalendar-extract-ical-from-buffer):
21460 * net/newst-treeview.el (newsticker-groups-filename):
21461 * net/newst-backend.el (newsticker-cache-filename):
21462 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
21463 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
21464 (speedbar-add-ignored-path-regexp, speedbar-line-path)
21465 (speedbar-buffers-line-path, speedbar-path-line)
21466 (speedbar-buffers-line-path):
21467 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
21468 (epg-sign-keys):
21469 * epa.el (epa-display-verify-result):
21470 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
21471
21472 2009-08-21 Glenn Morris <rgm@gnu.org>
21473
21474 * progmodes/js.el (inferior-moz-process): Fix declaration.
21475
21476 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
21477
21478 * obsolete/rnewspost.el (news-mail-reply):
21479 Use goto-char rather than goto-line.
21480
21481 * term/ns-win.el (ns-open-file-select-line):
21482 Use line-beginning-position rather than goto-line.
21483
21484 * apropos.el (apropos-command):
21485 * ehelp.el (electric-helpify):
21486 * printing.el (pr-show-setup):
21487 * strokes.el (strokes-help):
21488 * tutorial.el (tutorial--describe-nonstandard-key)
21489 (tutorial--detailed-help):
21490 * woman.el (woman-mini-help, woman-display-extended-fonts):
21491 * calc/calc-help.el (calc-describe-key):
21492 * emulation/edt.el (edt-electric-helpify):
21493 * international/mule-diag.el (mule-diag):
21494 * play/yow.el (apropos-zippy):
21495 * progmodes/python.el (python-describe-symbol):
21496 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
21497 * textmodes/table.el (*table--cell-describe-mode)
21498 (*table--cell-describe-bindings):
21499 Use help-print-return-message rather than the now obsolete alias.
21500
21501 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
21502 (calendar-cursor-to-visible-date):
21503 * play/5x5.el (5x5-position-cursor):
21504 * play/decipher.el (decipher):
21505 * play/gomoku.el (gomoku-goto-xy):
21506 * play/landmark.el (lm-goto-xy):
21507 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
21508 (mpuz-paint-digit):
21509 Use forward-line, not goto-line.
21510
21511 * mail/rmail.el (rmail-obsolete): Delete custom group.
21512 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
21513 (rmail-remote-password, rmail-remote-password-required):
21514 Remove unneeded :set-after and :set properties.
21515
21516 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
21517
21518 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
21519
21520 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
21521
21522 * loadup.el: Remove leftover macos code.
21523
21524 * vc-git.el (vc-git-annotate-command): Run asynchronously.
21525 Explicitly pass the date format to git blame so that user local
21526 so that the output format can be parsed.
21527
21528 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
21529
21530 * net/dbus.el (top): Don't check for (getenv
21531 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
21532
21533 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
21534
21535 * log-edit.el (log-edit-strip-single-file-name): New var.
21536 (log-edit-insert-changelog): Use it. Bug#3571.
21537
21538 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
21539
21540 * subr.el (read-passwd): Use read-key so keypad keys work as well.
21541 Bug#3287.
21542
21543 * help.el (help-print-return-message): Rename from
21544 print-help-return-message.
21545
21546 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
21547 cvs-mode-map parent hack.
21548 (log-view-mode): Derive from special-mode.
21549
21550 * linum.el (linum-mode): window-size-change-functions is redundant.
21551 Adapt to new window-configuration-change-hook behavior.
21552 (linum-after-size, linum-after-config): Remove.
21553
21554 * imenu.el (imenu-example--name-and-position)
21555 (imenu-example--lisp-extract-index-name)
21556 (imenu-example--create-lisp-index, imenu-example--create-c-index):
21557 Mark as obsolete.
21558
21559 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
21560 (inferior-prolog-mode): Use it.
21561 (inferior-prolog-load-file): Reset list of errors.
21562
21563 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
21564
21565 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
21566
21567 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
21568
21569 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
21570
21571 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
21572 is running already.
21573
21574 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
21575
21576 * subr.el (listify-key-sequence-1): Use normal syntax since those
21577 integers are nowadays always represented by the same (positive) number
21578 on all platforms.
21579 (read-key-empty-map): New const.
21580 (read-key-delay): New var.
21581 (read-key): New function.
21582 (force-mode-line-update): Use with-current-buffer.
21583 (locate-user-emacs-file): Don't forget to abbreviate the file name.
21584 (start-process-shell-command, start-file-process-shell-command):
21585 Discourage the use of command-args.
21586
21587 2009-08-19 Glenn Morris <rgm@gnu.org>
21588
21589 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
21590
21591 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
21592
21593 * simple.el (choose-completion-string): Don't rely on
21594 minibuffer-completing-file-name and ad-hoc checks to decide whether
21595 to continue completion or not.
21596
21597 * minibuffer.el (minibuffer-hide-completions): New function.
21598 (completion--do-completion): Use it.
21599 (completions-annotations): New face.
21600 (completion--insert-strings): Use it.
21601 (completion-pcm--delim-wild-regex): Add docstring.
21602 (completion-pcm--string->pattern): Add support for 0-width delimiters
21603 in completion-pcm--delim-wild-regex.
21604
21605 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
21606
21607 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
21608 Remove unused var `buffer-modified-p'.
21609
21610 * minibuffer.el (completion--do-completion): Move point for the #b001
21611 case as well (bug#4176).
21612 (minibuffer-complete, minibuffer-complete-word): Don't move point.
21613
21614 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
21615
21616 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
21617 and :session buses.
21618
21619 2009-08-18 Kenichi Handa <handa@m17n.org>
21620
21621 * international/ucs-normalize.el (ucs-normalize-version):
21622 Change to 1.1.
21623 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
21624 (utf-8-hfs): Make it perform normalization on encoding too.
21625
21626 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
21627 (sentence-end-without-space): Delete duplicated chars.
21628 (sentence-end-base): Likewise.
21629
21630 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
21631 (html-mode): Delete duplicated chars from sentence-end-base.
21632
21633 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
21634 (texinfo-mode): Delete duplicated chars from sentence-end-base.
21635
21636 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
21637
21638 * files.el (hack-one-local-variable): If the mode function is for
21639 a minor mode, pass it an argument (Bug#4148).
21640
21641 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
21642
21643 * net/tramp.el (tramp-register-completion-file-name-handler):
21644 Check also for (member 'partial-completion completion-styles).
21645
21646 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
21647
21648 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
21649 abbrev (Bug#3943).
21650
21651 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
21652
21653 * progmodes/cperl-mode.el: Merge upstream 6.2.
21654 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
21655 (cperl-forward-re): Check cperl-brace-recursing.
21656 (cperl-highlight-charclass): New function.
21657 (cperl-find-pods-heres): Use it.
21658 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
21659 (cperl-beautify-regexp-piece): Fix column calculation.
21660 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
21661 (cperl-beautify-level): Don't process entire regexp.
21662 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
21663 calling man.
21664 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
21665 (cperl-init-faces): Build a list in the normal way.
21666
21667 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
21668
21669 * calendar/parse-time.el (parse-time-string-chars): Save match
21670 data.
21671
21672 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
21673
21674 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
21675 (sql-product): Use it.
21676 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
21677 (sql-set-product): Add completion.
21678 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
21679 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
21680 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
21681 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
21682 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
21683 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
21684 (sql-highlight-db2-keywords): Remove.
21685 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
21686 (sql-highlight-product): Use derived-mode-p.
21687 (sql-set-sqli-buffer): Use with-current-buffer.
21688 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
21689 Simplify.
21690
21691 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
21692
21693 * term.el: Fix commenting convention, turn comments into docstrings.
21694
21695 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
21696
21697 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
21698
21699 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
21700
21701 * calendar/parse-time.el (parse-time-string-chars): Compute using
21702 character classes, to handle non-ascii characters (Bug#3190).
21703
21704 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
21705
21706 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
21707 another heredoc if the user adds another < (Bug#3226).
21708
21709 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
21710 Don't initialize based on window-system (Bug#4124).
21711
21712 * facemenu.el (facemenu-read-color): Use a completion function
21713 that accepts any defined color, such as RGB triplets (Bug#3677).
21714
21715 * files.el (get-free-disk-space): Change fallback default
21716 directory to /. Expand DIR argument before switching to fallback.
21717 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
21718
21719 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
21720
21721 * files.el (load-library): Doc fix.
21722
21723 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
21724
21725 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
21726 (viper-if-string): Redefine C-s in the minibuffer to insert the last
21727 incremental search string.
21728
21729 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
21730 XEmacs.
21731
21732 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
21733 (ediff-merge-region-is-non-clash)
21734 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
21735 Also check if the job is really a merge job.
21736
21737 * ediff.el (ediff-current-file): New function.
21738
21739 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
21740
21741 * progmodes/js.el: Edit docstrings throughout to follow Emacs
21742 conventions.
21743 (js-insert-and-indent): Delete function.
21744 (js-mode-map): Don't bind keys to js-insert-and-indent.
21745 (js-beginning-of-defun): Rename from js--beginning-of-defun.
21746 (js-end-of-defun): Rename from js--end-of-defun.
21747 (js-auto-indent-flag): Delete variable.
21748
21749 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
21750
21751 * progmodes/js.el: Remove proclaim statement.
21752 Defvar which-func-imenu-joiner-function to silence compiler.
21753
21754 * files.el (auto-mode-alist): Use js-mode for .js files.
21755
21756 * progmodes/js2-mode.el: Remove file.
21757
21758 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
21759
21760 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
21761
21762 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
21763
21764 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
21765 Karl Landstrom <karl.landstrom@brgeight.se>
21766
21767 * progmodes/js.el: New file.
21768
21769 2009-08-14 Mark A. Hershberger <mah@everybody.org>
21770
21771 * timezone.el (timezone-parse-date): Add ability to understand ISO
21772 basic format (minimal separators) dates in addition to the
21773 already-supported extended format dates.
21774
21775 2009-08-14 Eli Zaretskii <eliz@gnu.org>
21776
21777 * international/ucs-normalize.el: Add a `coding' file variable.
21778
21779 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
21780
21781 2009-08-14 Sam Steingold <sds@gnu.org>
21782
21783 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
21784
21785 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
21786
21787 * faces.el (help-argument-name): Define it here instead of
21788 help-fns.el, because in daemon mode help-fns.el may be loaded when
21789 faces are still uninitialized (Bug#1078).
21790
21791 * help-fns.el (help-argument-name): Move defface to faces.el.
21792
21793 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
21794
21795 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
21796 create buffer with a pty but no process so that GDB can make the
21797 inferior the controlling process.
21798
21799 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
21800
21801 * international/ucs-normalize.el: New file.
21802
21803 2009-08-13 Richard Stallman <rms@gnu.org>
21804
21805 * mail/rmail.el (rmail-get-attr-names):
21806 Accept an attribute header that is too short.
21807
21808 * mail/rmail.el (rmail-forget-messages):
21809 Ignore nil elt in rmail-message-vector. Use dotimes.
21810
21811 * progmodes/compile.el (compilation-goto-locus):
21812 Use next-error-move-function.
21813
21814 * simple.el (next-error-move-function): New variable.
21815
21816 2009-08-12 Juri Linkov <juri@jurta.org>
21817
21818 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
21819 always non-nil. (Bug#4052)
21820
21821 * replace.el (read-regexp): Return empty string when
21822 `default-value' is nil.
21823 (keep-lines-read-args): Don't use empty string as the
21824 default value for `read-regexp'. (Bug#2495)
21825
21826 2009-08-12 Juri Linkov <juri@jurta.org>
21827
21828 * international/mule-cmds.el (ucs-insert): Change arguments
21829 from `arg' to `character', `count', `inherit' to be the same
21830 as in `insert-char'. Doc fix. (Bug#4039)
21831
21832 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
21833
21834 2009-08-12 Juri Linkov <juri@jurta.org>
21835
21836 * files-x.el: New file.
21837
21838 * files.el: Move code that deals with adding/deleting
21839 file/directory-local variables to files-x.el.
21840
21841 * Makefile.in (ELCFILES): Add files-x.elc.
21842
21843 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
21844
21845 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
21846 to use `goto-line'.
21847 (gdb-place-breakpoints, gdb-get-location): Rewritten without
21848 `goto-line'.
21849 (gdb-invalidate-disassembly): Do not refresh upon receiving
21850 'update signal. Instead, update all disassembly buffers only after
21851 threads list.
21852 (gdb): Send -target-detach when buffer is killed (Bug#3794).
21853 (gdb-starting): Move -data-list-register-names...
21854 (gdb-stopped): ...here so it's sent when first thread stops.
21855 (gdb-registers-handler-custom): Do nothing if register names are
21856 unknown yet.
21857
21858 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
21859 from `gdb-mi.el' to avoid extra tangling.
21860
21861 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
21862 change which breaks `gud-def' definitions used in `gdb'.
21863 (gdb-update-gud-running): No extra fuss for updating frame number.
21864
21865 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
21866
21867 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
21868 (describe-language-environment-map, setup-language-environment-map)
21869 (set-coding-system-map): Move initialization into declaration.
21870 (set-language-info-alist): Last arg to define-key-after can be skipped.
21871
21872 * international/quail.el (quail-completion-1): Simplify.
21873 (quail-define-rules): Use slightly more compact code.
21874 (quail-insert-decode-map): Propertize keys, compact columns.
21875
21876 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
21877 Add goto-line.
21878
21879 2009-08-10 Miles Bader <miles@gnu.org>
21880
21881 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
21882 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
21883 (js2-instance-member, js2-private-member, js2-private-function-call)
21884 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
21885 (js2-magic-paren, js2-external-variable):
21886 Remove "-face" suffix from face names.
21887 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
21888 (js2-highlight-undeclared-vars, js2-peek-token)
21889 (js2-parse-function-params, js2-mode-show-errors)
21890 (js2-mode-show-warnings, js2-make-magic-delimiter)
21891 (js2-mode-highlight-magic-parens): Update to use new face names.
21892
21893 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
21894
21895 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
21896 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
21897
21898 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
21899
21900 * subr.el: Provide hashtable-print-readable.
21901
21902 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
21903 hs-c-like-adjust-block-beginning.
21904 (hs-hide-block-at-point): Stop hiding at the beginning of
21905 hs-block-end-regexp (Bug#700).
21906
21907 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
21908
21909 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
21910 a macro.
21911 (gdb-registers-handler-custom): Do not fail when register names
21912 are unavailable.
21913
21914 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
21915
21916 * progmodes/gdb-mi.el (gdb-control-all-threads)
21917 (gdb-control-current-thread): Interactive setters for
21918 `gdb-gud-control-all-threads' to use in menu.
21919 (gdb-show-run-p): Show «Go» when process is not active.
21920 (gud-tool-bar-map): Add non-stop/A,T indicator.
21921 Uses gud/thread.xpm and gud/all.xpm.
21922
21923 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
21924
21925 * net/net-utils.el (net-utils-font-lock-keywords): New var.
21926 (nslookup-font-lock-keywords): Make it a variable.
21927 (net-utils-mode): New mode for viewing diagnostic network output.
21928 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
21929 (net-utils-run-simple): New function.
21930 (ifconfig, iwconfig, netstat, arp, route): Use it.
21931
21932 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
21933
21934 * progmodes/gdb-mi.el (gdb-read-memory-custom)
21935 (gdb-memory-set-address, def-gdb-set-positive-number)
21936 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
21937 after changing settings.
21938 (gdb-invalidate-disassembly): Update when first shown.
21939 (gdb-edit-locals-value): Fix.
21940 (gdb-registers-handler-custom): Print registers in right order and
21941 allow changing register values (only for current thread yet).
21942 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
21943 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
21944 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
21945 (gdb-locals-handler-custom, gdb-registers-handler-custom):
21946 Thread info in mode name.
21947 (gdb-registers-mode-map): TAB to switch to locals.
21948
21949 2009-08-08 Eli Zaretskii <eliz@gnu.org>
21950
21951 * mail/rmail.el (rmail-add-mbox-headers)
21952 (rmail-set-message-counters-counter): Search for
21953 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
21954
21955 2009-08-08 Glenn Morris <rgm@gnu.org>
21956
21957 * Makefile.in (ELCFILES): Update.
21958
21959 2009-08-07 Eli Zaretskii <eliz@gnu.org>
21960
21961 * mail/sendmail.el (mail-yank-original):
21962 Set buffer-file-coding-system from the one used by the message whose
21963 text is yanked.
21964
21965 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
21966 to "windows" when "pgnuplot" is used.
21967 (calc-graph-command, calc-gnuplot-command, calc-graph-init):
21968 Don't call accept-process-output if "pgnuplot" is used.
21969 (calc-graph-init): Don't send -display and -geometry to
21970 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
21971 running "pgnuplot -V" with shell-command-to-string.
21972
21973 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
21974 the default.
21975
21976 2009-08-07 Eli Zaretskii <eliz@gnu.org>
21977
21978 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
21979 org/org-latex.elc.
21980
21981 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
21982
21983 * vc-dispatcher.el (vc-resynch-window): Update comment.
21984
21985 * term.el (term-handle-ansi-escape): Add comments with the
21986 terminfo capabilities implemented.
21987
21988 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
21989
21990 * progmodes/gdb-mi.el (gdb-var-create-regexp): Remove.
21991 (gdb-var-create-handler): Rewritten using JSON parser.
21992 (gdb-propertize-header): Move earlier.
21993 (gdb-set-header): Remove to avoid duplication.
21994 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
21995 Refresh disassembly buffers only after threads list have been
21996 update.
21997 (gdb-threads-header, gdb-registers-header): Per-buffer header line
21998 variables.
21999
22000 2009-08-04 Juri Linkov <juri@jurta.org>
22001
22002 * files.el: Commands to add/delete file/directory-local variables.
22003 (read-file-local-variable, read-file-local-variable-value)
22004 (read-file-local-variable-mode, modify-file-local-variable)
22005 (modify-file-local-variable-prop-line)
22006 (modify-dir-local-variable): New functions.
22007 (add-file-local-variable, delete-file-local-variable)
22008 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
22009 (add-dir-local-variable, delete-dir-local-variable)
22010 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
22011 (copy-dir-locals-to-file-locals-prop-line): New commands.
22012
22013 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
22014
22015 * abbrev.el (insert-abbrev-table-description): Prettify output.
22016 Suggested by Karl Chen.
22017
22018 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
22019
22020 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
22021 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
22022 (gdb-overlay-arrow-position, gdb-thread-position)
22023 (gdb-disassembly-position): Declare variables.
22024 (gdb-wait-for-pending): Function now.
22025 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
22026 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
22027 compilation goes smoothly.
22028 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
22029 (gdb-non-stop-setting): New customization setting which replaces
22030 `gdb-non-stop' so changing it doesn't break active GDB session.
22031 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
22032 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
22033 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
22034 (gdb-show-threads-by-default): New customization options.
22035 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
22036 routines.
22037 (gdb-get-buffer-create): Send buffers update signal when they are
22038 created.
22039 (gdb-invalidate-locals, gdb-invalidate-registers)
22040 (gdb-invalidate-breakpoints)
22041 (gdb-invalidate-threads, gdb-invalidate-disassembly)
22042 (gdb-invalidate-memory): Accept update signal.
22043 (gdb-current-context-command): Use --frame option.
22044 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
22045 Implement `gdb-frame-number' selection logic.
22046 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
22047 whether to show GUD toolbar buttons.
22048 (gdb-thread-exited): Unselect current thread when it exits.
22049 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
22050 (gdb-mark-line): Routine which sets overlay arrow or inverses
22051 video on fringeless displays.
22052 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
22053 to build aligned columns of data in GDB buffers and set text
22054 properties line-by-line.
22055 (gdb-invalidate-breakpoints)
22056 (gdb-breakpoints-list-handler-custom)
22057 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
22058 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
22059 (gdb-registers-handler-custom): Align data columns.
22060 (gdb-locals-handler-custom): Now prints data like in variable
22061 declarations.
22062 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
22063 Remove confusing buttons.
22064 (gdb-invalidate-threads): Append --frame.
22065 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
22066 between breakpoints/threads buffers.
22067 (gdb-set-window-buffer): Now can ignore dedicated windows.
22068 (gdb-propertize-header): Use `gdb-set-window-buffer'.
22069 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
22070 (def-gdb-thread-buffer-gud-command): Replaces
22071 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
22072 for fine thread control.
22073 (gdb-preempt-existing-or-display-buffer): New function used to
22074 display bound buffers without breaking window layout.
22075 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
22076 (gdb-select-frame): New version of `gdb-frames-select' which now
22077 sets `gdb-frame-number' so commands may use --frame option instead
22078 of inner debugger state.
22079 (gdb-frame-handler): Do not set `gdb-frame-number'.
22080 (gdb-threads-mode-map): Select threads with mouse.
22081
22082 * progmodes/gud.el (gdb-gud-context-call): Declare function to
22083 avoid compilation warning.
22084 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
22085 `gdb-show-stop-p`.
22086
22087 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
22088 Argument `key' renamed to `buffer-type'.
22089 (gdb-current-context-buffer-name): Do not add thread info to
22090 buffer name when no thread is selected.
22091 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
22092 command (bug 3794).
22093 (gdb-thread-selected): Handle `=thread-selected' notification.
22094 (gdb-wait-for-pending): New macro to deal with congestion problems.
22095 (gdb-breakpoints-list-handler-custom): Don't fail on pending
22096 breakpoints.
22097 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
22098 This fixes problem similar to one described in bug 3947.
22099 (gud-menu-map): More menu items.
22100 (gdb-init-1): Reset `gdb-thread-number' to nil.
22101
22102 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
22103 non-stop settings.
22104
22105 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
22106 (gdb-current-context-command): Do not append --thread if
22107 `gdb-thread-number' is nil.
22108 (gdb-running-threads-count, gdb-stopped-threads-count):
22109 New variables.
22110 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
22111 (gdb-stopped-hooks, gdb-switch-when-another-stopped):
22112 New customization options.
22113 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
22114 GUD commands.
22115 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
22116 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
22117 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
22118 set `gdb-thread-number' and update `gud-running' properly.
22119 (gdb-running): Update threads list when new threads appear.
22120 (gdb-stopped): Support non-stop operation and new thread switching
22121 logic.
22122 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
22123 (gdb-json-partial-output): New set of JSON routines.
22124 (def-gdb-auto-update-trigger): New `signal-list' optional
22125 argument.
22126 (gdb-thread-list-handler-custom): Update `gud-running',
22127 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
22128 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
22129 (gdb-continue-thread, gdb-step-thread): New commands for fine
22130 thread execution control.
22131 (gud-menu-map): New menu items to switch non-stop options.
22132 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
22133 (gdb-send): Mimic RET properly (bug 3794).
22134
22135 * progmodes/gdb-mi.el (gdb-rules-name-maker)
22136 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
22137 gdb-buffer-rules.
22138 (def-gdb-auto-update-handler): New nopreserve optional argument.
22139 (gdb-stack-list-frames-custom): Print stack from top to bottom.
22140
22141 * progmodes/gdb-mi.el (gdb-pc-address): Remove unused variable.
22142 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
22143 (gdb-parent-mode): New mode to derive other GDB modes from.
22144 (gdb-display-disassembly-for-thread)
22145 (gdb-frame-disassembly-for-thread): New commands for threads
22146 buffer.
22147
22148 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
22149 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
22150 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
22151 (gdb-update): We now store all GDB buffers in a list so that they
22152 can be updated by traversing a list instead of calling invalidate
22153 triggers explicitly.
22154 (def-gdb-trigger-and-handler): New macro to define trigger-handler
22155 pair for GDB buffer.
22156 (gdb-stack-buffer-name): Add thread information.
22157 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
22158 handle pending triggers.
22159 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
22160 (def-gdb-thread-buffer-simple-command)
22161 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
22162 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
22163 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
22164 New commands which show buffers bound to thread.
22165 (gdb-stack-list-locals-regexp): Remove unused regexp.
22166
22167 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
22168 (gdb-locals-buffer-name, gdb-registers-buffer-name)
22169 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
22170 to (gud-comint-buffer) in *-buffer-name functions
22171 because (gdb-get-target-string) already does that.
22172 (gdb-locals-handler-custom, gdb-registers-handler-custom)
22173 (gdb-changed-registers-handler): Rewritten without regexps.
22174
22175 * progmodes/gdb-mi.el: Basic thread selection support.
22176 (gdb-thread-number): New variable.
22177 (gdb-current-context-command): New macro which adds --thread
22178 option to command.
22179 (gdb-threads-mode-map): Select thread with SPC.
22180 (gdb-thread-list-handler-custom): Mark current thread with overlay
22181 arrow. Synchronize GDB thread and Emacs thread.
22182 (gdb-select-thread): New command which selects current thread.
22183 (gdb-invalidate-frames, gdb-invalidate-locals)
22184 (gdb-invalidate-registers): Use --thread option.
22185
22186 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
22187
22188 * net/tramp.el (top): Make check for tramp-gvfs loading more
22189 robust. (Bug#3977)
22190 (tramp-handle-insert-file-contents): `unwind-protect' must be
22191 inside `with-parsed-tramp-file-name'.
22192
22193 * net/tramp-gvfs.el (top): Remove superfluous message when loading
22194 fails.
22195
22196 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
22197
22198 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
22199 directory if CLASSPATH is not set.
22200
22201 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
22202
22203 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
22204 New defconst.
22205 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
22206
22207 2009-08-02 Kevin Ryde <user42@zip.com.au>
22208
22209 * net/newst-backend.el (newsticker--raw-url-list-defaults):
22210 Update freshmeat link. Delete newsforge.com as it seems gone.
22211
22212 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
22213
22214 * select.el (x-set-selection): Doc fix (Bug#4021).
22215
22216 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
22217
22218 * help-fns.el (describe-variable): Treat list return values from
22219 dir-locals-find-file properly (Bug#4005).
22220
22221 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
22222
22223 * net/tramp.el (tramp-debug-message): Print also microseconds.
22224
22225 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
22226
22227 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
22228 or END is non-nil.
22229 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
22230 (tramp-get-debug-buffer): Change `outline-regexp' according to new
22231 format.
22232
22233 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
22234 (tramp-get-file-property): Use it.
22235
22236 * autorevert.el (auto-revert-handler):
22237 Allow `auto-revert-tail-mode' for remote files.
22238
22239 2009-08-02 Jason Rumney <jasonr@gnu.org>
22240
22241 * minibuffer.el (read-file-name): Treat confirm options to
22242 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
22243
22244 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
22245
22246 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
22247 (font-lock-variable-name-face, font-lock-constant-face):
22248 Darken the colors for light backgrounds.
22249
22250 2009-08-01 Eli Zaretskii <eliz@gnu.org>
22251
22252 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
22253 month names. (Bug#3987)
22254
22255 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
22256
22257 * simple.el (line-move-finish): Pass whole number to
22258 line-move-to-column.
22259 (line-move-visual): Perform hscroll to the recorded position.
22260
22261 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
22262
22263 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
22264
22265 2009-07-29 Alan Mackenzie <acm@muc.de>
22266
22267 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
22268
22269 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
22270
22271 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
22272 (gdb-place-breakpoints): Use full path when setting breakpoints.
22273
22274 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
22275
22276 * calc/calc.el (calc-mode-map): Add keybinding for
22277 `calc-transpose-lines'.
22278
22279 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
22280
22281 * calc/calc-misc.el (calc-transpose-lines): New function.
22282
22283 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
22284
22285 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
22286 Simplify check for out-of-band methods.
22287 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
22288 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
22289
22290 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
22291
22292 * vc-git.el (vc-git-checkin): Fix typo.
22293
22294 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
22295
22296 * progmodes/js2-mode.el: New file.
22297
22298 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
22299
22300 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
22301 (gud-menu-map): Adjust tooltip accordingly.
22302
22303 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
22304
22305 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
22306 (vc-bzr-log-view-mode): Adjust log-view-file-re.
22307
22308 * add-log.el (change-log-mode-map): Add a menu.
22309
22310 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
22311
22312 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
22313 function returns nil.
22314 (dbus-handle-event): Handle special return value :ignore.
22315 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
22316
22317 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
22318
22319 * view.el (view-mode-enable): Don't define Helper-return-blurb if
22320 it's not needed.
22321
22322 2009-07-25 Eli Zaretskii <eliz@gnu.org>
22323
22324 Fix Bug#3888:
22325
22326 * w32-vars.el (x-select-enable-clipboard): Doc fix.
22327
22328 * term/pc-win.el (x-display-name, x-colors)
22329 (x-select-enable-clipboard, x-select-text): Doc fix.
22330
22331 * term/common-win.el (x-display-name, x-colors): Doc fix.
22332
22333 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
22334 (xw-defined-colors): Doc fix.
22335
22336 * w32-fns.el (x-select-text, x-setup-function-keys)
22337 (x-get-selection, x-set-selection): Doc fix.
22338
22339 * term/x-win.el (x-select-text, x-setup-function-keys)
22340 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
22341
22342 * select.el (x-set-selection): Doc fix.
22343
22344 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
22345
22346 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
22347 instead of "IsNSSSupportAvailable". Avahi ought to work also when
22348 "IsNSSSupportAvailable" method is not available.
22349 Reported by Steve Youngs <steve@sxemacs.org>.
22350
22351 2009-07-24 Kenichi Handa <handa@m17n.org>
22352
22353 * international/characters.el: Fix setting of category ?C, ?|, ?K,
22354 and ?H. Fix setting of case for Latin Extended and Greek Extended.
22355 (build-unicode-category-table): Fix range checks.
22356
22357 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
22358
22359 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
22360 the buffer we try to sync is current when calling
22361 vc-resynch-buffer.
22362
22363 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
22364 not show up to date files.
22365
22366 2009-07-24 Glenn Morris <rgm@gnu.org>
22367
22368 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
22369 Add autoload cookies. If necessary, initialize.
22370 (elint-log): Handle non-file buffers.
22371 (elint-initialize): Add optional argument to reinitialize.
22372 (elint-find-builtin-variables): Save excursion.
22373
22374 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
22375
22376 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
22377 for Lint.
22378
22379 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
22380
22381 * vc.el (vc-print-log-internal): New function, split out from ...
22382 (vc-print-log): ... here.
22383 (vc-dir-move-to-goal-column): Declare.
22384
22385 * vc-git.el (vc-git-add-signoff): New variable.
22386 (vc-git-checkin): Use it.
22387 (vc-git-toggle-signoff): New function.
22388 (vc-git-extra-menu-map): Bind it to menu.
22389 (vc-git--run-command-string): Accept a nil FILE argument.
22390 (vc-git-stash-list): New function.
22391 (vc-git-dir-extra-headers): Use it.
22392
22393 2009-07-23 Glenn Morris <rgm@gnu.org>
22394
22395 * help-fns.el (describe-variable): Describe ignored and risky local
22396 variables in a similar way to that in which we describe safe ones.
22397
22398 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
22399 (byte-compile-output-file-form, byte-compile-output-docform)
22400 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
22401 Give some more local variables with common names a "bytecomp-" prefix,
22402 so as not to shadow things during compilation.
22403 * emacs-lisp/cl-macs.el (load-time-value)
22404 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
22405 `outbuffer' to `bytecomp-outbuffer'.
22406
22407 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
22408 since the next two variables cover them automatically now.
22409 (elint-builtin-variables, elint-autoloaded-variables): New.
22410 (elint-unknown-builtin-args): Remove all members, since they can be
22411 parsed automatically now.
22412 (elint-extra-errors): New.
22413 (elint-env-add-env, elint-env-add-macro): Use cadr.
22414 (elint-current-buffer): Use or. Change final message.
22415 (elint-get-top-forms): Use line-end-position.
22416 (elint-init-env): Use cadr. Handle autoload, declare-function,
22417 and defalias.
22418 (elint-add-required-env): Doc fix. Use or. Standardize error.
22419 (regexp-assoc): Remove unused function.
22420 (elint-top-form): Set elint-current-pos, to record the start of the
22421 top-level form, for compilation-mode.
22422 (elint-form): Trap errors in macro expansion. Use dolist.
22423 (elint-unbound-variable): Use elint-builtin-variables and
22424 elint-autoloaded-variables.
22425 (elint-get-args): Use cadr, or.
22426 (elint-check-cond-form): Use dolist, cadr.
22427 (elint-check-condition-case-form): Doc fix. Use cadr.
22428 Use elint-extra-errors.
22429 (elint-log): New function.
22430 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
22431 Distinguish errors and warnings.
22432 (elint-log-message): Use with-current-buffer. Inhibit read-only.
22433 Use a bytecomp-style format.
22434 (elint-clear-log): Preserve default-directory. Inhibit read-only.
22435 (elint-get-log-buffer): Use compilation mode. Disable undo.
22436 Don't truncate lines.
22437 (elint-initialize): Set builtin and autoloaded variable lists.
22438 Only process elint-unknown-builtin-args if non-nil.
22439 (elint-find-builtin-variables, elint-find-autoloaded-variables):
22440 New functions.
22441 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
22442
22443 2009-07-22 Kevin Ryde <user42@zip.com.au>
22444
22445 * net/newst-backend.el (newsticker--parse-atom-1.0)
22446 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
22447 (newsticker--parse-rss-1.0):
22448 * progmodes/idlwave.el (idlwave-mode):
22449 * progmodes/idlw-shell.el (idlwave-shell-mode):
22450 * progmodes/vera-mode.el (vera-mode):
22451 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
22452 * progmodes/vhdl-mode.el (vhdl-mode):
22453 * textmodes/table.el (table-generate-source)
22454 (table--warn-incompatibility):
22455 Hyperlink urls in docstrings with URL `...'.
22456
22457 2009-07-22 Glenn Morris <rgm@gnu.org>
22458
22459 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
22460 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
22461 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
22462 Remove leading * from defcustom docs.
22463
22464 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
22465
22466 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
22467 defcustom doc.
22468 (list-load-path-shadows): Optionally, just return shadows as a string.
22469
22470 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
22471
22472 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
22473
22474 * mail/rmailedit.el (rmail-edit-mode):
22475 Use auto-save-include-big-deletions.
22476
22477 * mail/rmail.el (rmail-variables):
22478 Use auto-save-include-big-deletions.
22479
22480 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
22481 changes.
22482
22483 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
22484
22485 * calc/calc.el (calc-undo-length): New variable.
22486 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
22487
22488 2009-07-21 Richard Stallman <rms@gnu.org>
22489
22490 * files.el (auto-save-mode): Handle buffer-save-size = -2
22491 for toggling mode.
22492
22493 2009-07-21 Glenn Morris <rgm@gnu.org>
22494
22495 * textmodes/ispell.el (ispell-looking-back): Update declaration.
22496
22497 * calendar/todo-mode.el (calendar-current-date): Update declaration.
22498
22499 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
22500 silence compiler. Instead...
22501 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
22502 (ps-print-ensure-fontified): Update for above function name changes.
22503
22504 * printing.el (pr-mh-get-msg-num, pr-mh-show)
22505 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
22506 silence compiler. Instead...
22507 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
22508 (mh-show-buffer): Only define for compiler.
22509 (pr-mh-current-message): Update for above function name changes.
22510
22511 * files.el (abort-if-file-too-large): Explicitly pass `filename'
22512 as an argument.
22513 (find-file-noselect, insert-file-1): Update for above change.
22514
22515 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
22516
22517 * mail/mailclient.el (mailclient-send-it): Fix message.
22518
22519 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
22520 (edebug-eval): Check cl-debug-env is bound.
22521 (print-level, print-circle): Don't redefine built-in variables.
22522
22523 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
22524 (custom-print-vectors): Remove old comments from doc.
22525
22526 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
22527 (emerge-version): Make the variable an obsolete alias for the
22528 emacs-version variable. Make the function obsolete.
22529 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
22530 Emerge options, rather than merging in into the main Options menu.
22531 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
22532 and auto advance modes. Disable edit/fast items when not relevant.
22533
22534 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
22535
22536 * term/vt420.el (terminal-init-vt420): Fix typo.
22537
22538 2009-07-20 Sam Steingold <sds@gnu.org>
22539
22540 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
22541 variable (removed from compile.el on 2004-03-11).
22542
22543 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
22544
22545 * files.el (hack-local-variables-filter): Fix last change.
22546
22547 2009-07-19 Juri Linkov <juri@jurta.org>
22548
22549 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
22550 (dir-local-variables-alist): New buffer-local variable.
22551 (hack-local-variables-filter): If variable is not dir-local,
22552 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
22553 because file-local overrides dir-local.
22554 (c-postprocess-file-styles) <declare-function>:
22555 Remove obsolete declaration.
22556 (hack-dir-local-variables): Add dir-local variable/value pair to
22557 `dir-local-variables-alist' and remove duplicates. Doc fix.
22558
22559 * help-fns.el (describe-variable): Add information about
22560 file-local and dir-local variables.
22561
22562 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
22563
22564 * files.el (hack-local-variables-filter): Rewrite.
22565
22566 2009-07-19 Glenn Morris <rgm@gnu.org>
22567
22568 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
22569 Silence compiler by only defining on XEmacs.
22570
22571 * international/mule.el (auto-coding-regexp-alist): Only match
22572 BABYL... at the start of buffer, not of lines. (Bug#3790)
22573
22574 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
22575 non-calendar buffers (Bug#3862). Restore "not on a date" message.
22576 (cal-menu-context-mouse-menu): Doc fix.
22577
22578 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
22579
22580 * simple.el (mail-user-agent): Doc fix. Set :version tag.
22581
22582 2009-07-18 Juri Linkov <juri@jurta.org>
22583
22584 * info.el: Virtual Info keyword finder.
22585 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
22586 (Info-finder-file): New variable.
22587 (Info-finder-find-file): New function.
22588 (finder-known-keywords, finder-package-info)
22589 (find-library-name, lm-commentary): Use defvar and
22590 declare-function to silence compiler warnings.
22591 (Info-finder-find-node): New function.
22592 (info-finder): New command.
22593
22594 * subr.el (process-kill-buffer-query-function): New function.
22595 (add-hook)<kill-buffer-query-functions>: Add hook
22596 `process-kill-buffer-query-function'.
22597
22598 2009-07-18 Alan Mackenzie <acm@muc.de>
22599
22600 * progmodes/cc-mode.el (c-before-hack-hook)
22601 (c-postprocess-file-styles): Give invocation of `c-set-style'
22602 DONT-OVERRIDE parameter of t. Already set style variables will
22603 thus not be overridden by style settings given by `c-file-syle'.
22604
22605 * files.el (hack-local-variables-filter): Remove entries with
22606 duplicate keys from `file-local-variables-alist'.
22607
22608 2009-07-18 Eli Zaretskii <eliz@gnu.org>
22609
22610 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
22611 x-set-selection if display-selections-p returns nil for the
22612 current frame.
22613
22614 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
22615
22616 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
22617
22618 2009-07-18 Eli Zaretskii <eliz@gnu.org>
22619
22620 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
22621 Accept nil in addition to a regexp.
22622 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
22623 Accept nil in addition to a regexp.
22624 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
22625 buffers that have an associated file. Handle nil values of
22626 desktop-buffers-not-to-save and desktop-files-not-to-save.
22627 (Bug#3833)
22628
22629 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
22630 (x-disown-selection-internal): New functions.
22631
22632 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
22633
22634 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
22635 warning.
22636 (gdb-breakpoints-header): Move forward to avoid compiler warning.
22637 (gdb-make-header-line-mouse-map): Remove duplicate definition.
22638
22639 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
22640
22641 * simple.el (set-mark): Revert last change.
22642
22643 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
22644
22645 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
22646 rendering of pngs is not possible instead of messaging a long
22647 description.
22648
22649 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
22650
22651 * w32-fns.el (x-selection-owner-p): New function.
22652
22653 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
22654 (mouse-yank-at-click, mouse-yank-primary):
22655 If select-active-regions is non-nil, deactivate the mark before
22656 insertion.
22657
22658 * simple.el (deactivate-mark, set-mark): Only save selection if we
22659 own it.
22660
22661 2009-07-17 Kenichi Handa <handa@m17n.org>
22662
22663 * case-table.el (describe-buffer-case-table): Fix for the case
22664 that KEY is a cons.
22665
22666 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
22667
22668 * vc-rcs.el (vc-rcs-find-file-hook):
22669 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
22670
22671 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
22672
22673 * net/tramp.el (tramp-wait-for-output): Handle the case when
22674 commands do not return a newline but a null byte before the shell
22675 prompt. (Bug#3858)
22676
22677 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22678
22679 * term/ns-win.el (ns-set-alpha): Don't declare.
22680 (ns-set-background-alpha): Remove function.
22681
22682 2009-07-16 Kevin Ryde <user42@zip.com.au>
22683
22684 * emacs-lisp/copyright.el (copyright-update): Save match-data across
22685 y-or-n-p, for safety.
22686
22687 2009-07-16 Richard Stallman <rms@gnu.org>
22688
22689 * files.el (auto-save-mode): If buffer-saved-size is -2,
22690 don't clobber it.
22691
22692 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
22693 (rmail-retry-ignored-headers): Add more uninteresting fields.
22694
22695 2009-07-15 Jari Aalto <jari.aalto@cante.net>
22696
22697 * net/rcirc.el (rcirc): Use history variables.
22698 (rcirc-server-name-history, rcirc-nick-name-history)
22699 (rcirc-server-port-history): New variables.
22700
22701 2009-07-15 Kenichi Handa <handa@m17n.org>
22702
22703 * international/mule-cmds.el (set-language-environment-charset):
22704 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
22705 ignore them.
22706
22707 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
22708 Delete unibyte-display.
22709
22710 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
22711
22712 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
22713
22714 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
22715
22716 * simple.el (deactivate-mark): Optional argument FORCE.
22717 (set-mark): Use deactivate-mark.
22718
22719 * info.el (Info-search): No need to check transient-mark-mode
22720 before calling deactivate-mark.
22721
22722 * select.el (x-set-selection): Doc fix.
22723 (x-valid-simple-selection-p): Allow buffer values.
22724 (xselect--selection-bounds): Handle buffer values.
22725 Suggested by David De La Harpe Golden.
22726
22727 * mouse.el (mouse-set-region, mouse-drag-track):
22728 Call copy-region-as-kill before setting the mark, to let
22729 select-active-regions work.
22730
22731 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
22732
22733 * simple.el (deactivate-mark): If select-active-regions is
22734 non-nil, copy the selection data into a string.
22735 (activate-mark): If select-active-regions is non-nil, set the
22736 selection to the current buffer.
22737 (set-mark): Update selection if select-active-regions is non-nil.
22738
22739 * select.el (x-valid-simple-selection-p): Allow buffer values.
22740
22741 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
22742
22743 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
22744 and more featureful message-mode.
22745
22746 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
22747
22748 * select.el (x-set-selection): Doc fix.
22749 (x-valid-simple-selection-p): Disallow selection data consisting
22750 of a list or cons of integers, since that is not used.
22751 (xselect--selection-bounds, xselect--int-to-cons): New functions.
22752 (xselect-convert-to-string, xselect-convert-to-length)
22753 (xselect-convert-to-filename, xselect-convert-to-charpos)
22754 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
22755
22756 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
22757
22758 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
22759 output in -break-info command (Emacs bug #3794).
22760
22761 2009-07-14 Glenn Morris <rgm@gnu.org>
22762
22763 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
22764 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
22765 (edebug-print-length, edebug-print-level, edebug-print-circle)
22766 (edebug-sit-for-seconds, edebug-view-outside)
22767 (edebug-bounce-point, edebug-set-global-break-condition)
22768 (edebug-Go-nonstop-mode, edebug-trace-mode)
22769 (edebug-Trace-fast-mode, edebug-continue-mode)
22770 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
22771 (edebug-visit-eval-list): Doc fixes.
22772
22773 * subr.el (def-edebug-spec): Doc fix.
22774
22775 2009-07-14 Kenichi Handa <handa@m17n.org>
22776
22777 * international/characters.el: Fix setting of category ?C.
22778
22779 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
22780
22781 * term/ns-win.el (x-select-font): defalias x-select-font to
22782 ns-popup-font-panel instead of generate-fontset-menu.
22783
22784 2009-07-12 Eli Zaretskii <eliz@gnu.org>
22785
22786 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
22787
22788 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
22789
22790 * arc-mode.el (archive-find-type): Allow for a PK00 string before
22791 the PK\003\004 header (Bug#3770).
22792
22793 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
22794
22795 * pcomplete.el (pcomplete-comint-setup): Check for
22796 shell-dynamic-complete-filename too.
22797
22798 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
22799
22800 * simple.el (temporary-goal-column): Change the value for
22801 line-move-visual to a cons cell.
22802 (line-move-visual): Record or set the window hscroll, if
22803 necessary (Bug#3494).
22804 (line-move-1): Handle cons value of temporary-goal-column.
22805
22806 2009-07-11 Kenichi Handa <handa@m17n.org>
22807
22808 * international/mule-diag.el (describe-character-set): Don't show
22809 width.
22810
22811 2009-07-10 Sam Steingold <sds@gnu.org>
22812
22813 * progmodes/compile.el (compilation-mode-font-lock-keywords):
22814 Omake sometimes indents the errors it prints, so allow all
22815 regexps to start with spaces.
22816
22817 2009-07-10 Eli Zaretskii <eliz@gnu.org>
22818
22819 * cus-edit.el (customize-changed-options-previous-release):
22820 Bump value to 22.1. (Bug#3804)
22821
22822 2009-07-08 Sam Steingold <sds@gnu.org>
22823
22824 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
22825 to be a cons cell (test . ignored-directory) to selectively ignore
22826 some directories depending on the location of the search.
22827
22828 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
22829
22830 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
22831 remote user is root, on the local host.
22832 (tramp-local-host-p): Either the local user or the remote user
22833 must be root. (Bug#3771)
22834
22835 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
22836
22837 * progmodes/gdb-mi.el (gdb): Remove description of
22838 gdb-use-separate-io-buffer.
22839 (menu): Don't allow toggling of or enable
22840 gdb-use-separate-io-buffer from menubar.
22841
22842 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
22843
22844 * mail/unrmail.el (unrmail): Make sure the message ends with two
22845 newlines (Bug#3769).
22846
22847 2009-07-08 Glenn Morris <rgm@gnu.org>
22848
22849 * calendar/calendar.el (calendar-current-date): Rework previous change.
22850
22851 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
22852
22853 * calendar/calendar.el (calendar-current-date):
22854 Add an optional argument giving an offset from today.
22855
22856 2009-07-08 Glenn Morris <rgm@gnu.org>
22857
22858 * tutorial.el (tutorial--describe-nonstandard-key):
22859 Adjust the message for when a key has been unbound.
22860 (help-with-tutorial): Hide the arch-tag.
22861
22862 2009-07-08 Kenichi Handa <handa@m17n.org>
22863
22864 * international/fontset.el (setup-default-fontset): For each
22865 script, append (not set) font-specs.
22866
22867 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
22868 docstring.
22869
22870 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
22871
22872 * progmodes/gdb-mi.el (gdb-init-1): Move sending
22873 -data-list-register-names to ...
22874 (gdb-starting): ... here because GDB 7.0 requires execution to
22875 have started when using this MI command.
22876 (gdb-set-header): New function to distinguish select and
22877 unselected tabs in gdb buffers.
22878 (gdb-propertize-header): New macro that uses gdb-set-header.
22879 (gdb-breakpoints-header, gdb-locals-header): Use it.
22880 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
22881
22882 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
22883
22884 * Makefile.in (ELCFILES): Remove fadr.elc.
22885
22886 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
22887
22888 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
22889 may contain frame information, so `string-match' should be used.
22890 (gdb-update): Disassembly is invalidated through
22891 `gdb-get-selected-frame'.
22892 (gdb-pad-string): New function to pad string with spaces.
22893 (gdb-invalidate-disassembly): Invalidate only if the buffer
22894 exists.
22895 (gdb-disassembly-handler-custom): Column alignment.
22896 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
22897 placing new ones.
22898 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
22899 end of line, too.
22900 (gdb-frame-handler): Match convention to for disassembly buffer
22901 mode name.
22902 (gdb-stack-list-frames-handler): Rewritten without regexps.
22903 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
22904 not highlight breakpoints without line information.
22905 (gdb-input): Add trailing newline to command.
22906
22907 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
22908 buffer properly.
22909 (gdb-breakpoints-list-handler-custom): Replacement for
22910 `gdb-break-list-handler'. Using real parser instead of regexps
22911 now.
22912 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
22913 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
22914 to place breakpoints.
22915 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
22916 functions.
22917 (gdb-disassembly-handler-custom): Show overlay arrow.
22918 (gdb-disassembly-place-breakpoints): Show breakpoints in
22919 disassembly buffer.
22920 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
22921 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
22922 instead of parsing breakpoints buffer. Fixed old menu references
22923 in `gud-menu-map'.
22924
22925 * fadr.el: Remove.
22926
22927 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
22928 (gdb-memory-address): New variable which holds top address of
22929 memory page shown in memory buffer.
22930 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit):
22931 New customization variables.
22932 New functions:
22933 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
22934 display the memory buffer.
22935 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
22936 buffer display parameters.
22937 (def-gdb-memory-format, gdb-memory-format-binary)
22938 (gdb-memory-format-octal, gdb-memory-format-unsigned)
22939 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
22940 Functions for setting memory buffer format.
22941 (gdb-memory-unit-word, gdb-memory-unit-halfword)
22942 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
22943 unit size used in memory buffer.
22944 (gdb-memory-show-next-page, gdb-memory-show-previous-page):
22945 Switch to next/previous page of memory buffer.
22946 Now using (bindat-get-field) instead of fadr functions.
22947
22948 2009-07-07 Sam Steingold <sds@gnu.org>
22949
22950 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
22951 non-top-level files.
22952
22953 2009-07-07 Kenichi Handa <handa@m17n.org>
22954
22955 * international/mule-cmds.el (reset-language-environment):
22956 Put the highset priority to the charset iso-8859-1.
22957
22958 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
22959
22960 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
22961 to the end of the line when locating the block (Bug#700).
22962
22963 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
22964
22965 * net/tramp.el (tramp-handle-write-region): Flush file properties
22966 in case of short track.
22967
22968 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
22969
22970 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
22971 Coded custom representation of verilog error regular expressions
22972 to work with Emacs-22's new format.
22973 (verilog-error-regexp-xemacs-alist): Coded custom representation
22974 of verilog error regular expressions to work with XEmacs format.
22975 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
22976 error recognition into XEmacs.
22977 (verilog-error-regexp-add-emacs): Hook routine to install verilog
22978 error recognition into Emacs-22.
22979
22980 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
22981
22982 * woman.el: Remove stand-alone closing parentheses.
22983 (woman-file-name, woman2-format-paragraphs)
22984 (woman-leave-blank-lines): Code cleanup.
22985 (woman-use-own-frame): Change default to nil.
22986 (woman-italic, woman-bold, woman-unknown, woman-addition):
22987 Change defaults to inherit from default faces.
22988 (woman2-process-escapes): Consume the newline after a stand-alone
22989 filler character (Bug#3651).
22990
22991 2009-07-06 Glenn Morris <rgm@gnu.org>
22992
22993 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
22994 (top-level): Move provide to the end.
22995 (ffap): Remove defunct URL from custom group.
22996
22997 * subr.el (eval-after-load): Doc fix.
22998
22999 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
23000
23001 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
23002 `calc-embedded-word' is called twice.
23003
23004 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
23005
23006 * files.el (find-alternate-file-other-window, find-alternate-file):
23007 Obey confirm-nonexistent-file-or-buffer.
23008
23009 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
23010
23011 * dired-aux.el (dired-show-file-type): Handle remote files.
23012
23013 2009-07-05 Jari Aalto <jari.aalto@cante.net>
23014
23015 * desktop.el (desktop-globals-to-save):
23016 Add file-name-history (Bug#2750).
23017
23018 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
23019
23020 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
23021
23022 2009-07-04 Johan Bockgård <bojohan@gnu.org>
23023
23024 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
23025 property on entire argument since this is what eshell-lisp-command
23026 expects.
23027
23028 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
23029
23030 * net/tramp-gvfs.el (tramp-gvfs-methods)
23031 (tramp-gvfs-zeroconf-domain)
23032 (tramp-bluez-discover-devices-timeout): Add version flag.
23033 (tramp-gvfs-handler-mounted-unmounted)
23034 (tramp-gvfs-connection-mounted-p): Polish handling of
23035 incompatibilities between GVFS 0.2 and 1.0.
23036
23037 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
23038
23039 * cus-start.el (all): Add make-pointer-invisible.
23040
23041 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
23042
23043 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
23044 formatted correctly.
23045
23046 2009-07-02 Juri Linkov <juri@jurta.org>
23047
23048 * info.el: Virtual Info files and nodes.
23049 (Info-virtual-files, Info-virtual-nodes): New variables.
23050 (Info-current-node-virtual): New variable.
23051 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
23052 New functions.
23053 (Info-file-supports-index-cookies): Use Info-virtual-file-p
23054 to check for a virtual file instead of checking a fixed list
23055 of node names.
23056 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
23057 instead of ad-hoc processing of "dir" and (apropos history toc).
23058 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
23059 instead of ad-hoc processing of "dir" and (apropos history toc).
23060 Reread a file when moving from a virtual node.
23061 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
23062 (Info-directory-toc-nodes, Info-directory-find-file)
23063 (Info-directory-find-node): New functions.
23064 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
23065 (Info-history): Move part of code to
23066 `Info-history-find-node'.
23067 (Info-history-toc-nodes, Info-history-find-file)
23068 (Info-history-find-node): New functions.
23069 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
23070 (Info-toc): Move part of code to `Info-toc-find-node'.
23071 (Info-toc-find-node): New function.
23072 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
23073 the current Info file name to references because now the node
23074 "*TOC*" belongs to the same Info manual.
23075 (Info-toc-build): Rename from `Info-build-toc'.
23076 (Info-toc-nodes): Rename input argument `file' to `filename'.
23077 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
23078 instead of ad-hoc processing of ("dir" apropos history toc).
23079 (Info-index-nodes): Use Info-virtual-file-p
23080 to check for a virtual file instead of checking a fixed list
23081 of node names.
23082 (Info-index-node): Add check for `Info-current-node-virtual'.
23083 Raise `save-match-data' higher up the tree to contain
23084 `search-forward' too (bug fix).
23085 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
23086 (Info-virtual-index-nodes): New variable.
23087 (Info-virtual-index-find-node, Info-virtual-index): New functions.
23088 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
23089 (Info-apropos-file, Info-apropos-nodes): New variables.
23090 (Info-apropos-toc-nodes, Info-apropos-find-file)
23091 (Info-apropos-find-node, Info-apropos-matches): New functions.
23092 (info-apropos): Move part of code to `Info-apropos-find-node' and
23093 `Info-apropos-matches'.
23094 (Info-mode-map): Bind "I" to `Info-virtual-index'.
23095 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
23096 for a virtual file instead of checking a fixed list of node names.
23097
23098 * simple.el (async-shell-command): New command.
23099
23100 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
23101
23102 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
23103 instead of `mount-info'.
23104
23105 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
23106
23107 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
23108 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
23109
23110 2009-07-02 Kenichi Handa <handa@m17n.org>
23111
23112 * international/mule.el (set-keyboard-coding-system): Force *-unix
23113 coding-system to avoid eol conversion.
23114
23115 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
23116
23117 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
23118 Add handler for `process-file', `shell-command' and
23119 `start-file-process'.
23120 (tramp-gvfs-handle-shell-command)
23121 (tramp-gvfs-handle-start-file-process)
23122 (tramp-gvfs-handle-process-file): New defuns.
23123 (tramp-synce-list-devices): Simplify check for existence of property.
23124
23125 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
23126
23127 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
23128
23129 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
23130
23131 * language/korean.el (set-language-info-alist): Add korean-cp949,
23132 cp949 to spec.
23133
23134 2009-07-01 Kenichi Handa <handa@m17n.org>
23135
23136 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
23137
23138 * international/encoded-kb.el: Deleted.
23139
23140 * international/mule.el (set-keyboard-coding-system): Perform the
23141 necessary setup here instead of calling encoded-kbd-setup-display.
23142
23143 2009-07-01 Glenn Morris <rgm@gnu.org>
23144
23145 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
23146
23147 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
23148
23149 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
23150
23151 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
23152
23153 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
23154 Handle also the 'rename case, when setting file modes. (Bug#3712)
23155 (tramp-default-file-modes): Remove execute permissions.
23156
23157 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
23158 (top): Add a default for "synce" in `tramp-default-user-alist'.
23159 Add completion function for "synce" method.
23160 (tramp-hal-service, tramp-hal-path-manager)
23161 (tramp-hal-interface-manager, tramp-hal-interface-device):
23162 New defconst.
23163 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
23164 (tramp-synce-list-devices, tramp-synce-parse-device-names):
23165 New defuns.
23166
23167 * net/trampver.el: Update release number.
23168
23169 2009-06-30 Kenichi Handa <handa@m17n.org>
23170
23171 * international/fontset.el (setup-default-fontset): Add CJK fonts
23172 for symbols and the other miscellaneous characters.
23173
23174 * language/korea-util.el (setup-korean-environment-internal):
23175 Make char-width-table suitable for Korean environments.
23176 (exit-korean-environment): Cancel above.
23177
23178 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
23179 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
23180 setup-function to make char-width-table suitable for respective
23181 environments, and an exit-function to cancel that.
23182
23183 * language/japan-util.el (setup-japanese-environment-internal):
23184 Call use-cjk-char-width-table with arg `ja_JP'.
23185
23186 * international/characters.el (cjk-char-width-table): Delete it.
23187 (cjk-char-width-table-list): New variable.
23188 (use-cjk-char-width-table): New arg local-name.
23189 (use-default-char-width-table): Fix for the case that Emacs is
23190 already using the default char-width-table.
23191
23192 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
23193
23194 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
23195 modes mandatory. (Bug#3712)
23196
23197 2009-06-29 Alan Mackenzie <acm@muc.de>
23198
23199 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
23200 correction between the visible width of TABs and their number of bytes.
23201
23202 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
23203
23204 * server.el (server-buffer-done): Prevent kill-buffer from
23205 prompting by clearing the buffer modification flag (Bug#3696).
23206
23207 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
23208
23209 * progmodes/verilog-mode.el (verilog-beg-of-statement)
23210 (verilog-endcomment-reason-re): Support unique case and priority case.
23211 (verilog-basic-complete-re): Support localparam lineup.
23212 (verilog-beg-of-statement-1): Fix for robustness, unique case.
23213 (verilog-set-auto-endcomments): Fix for unique case, always_comb
23214 commenting.
23215 (verilog-leap-to-case-head): Now support *nested* unique &
23216 priority case statements.
23217 (verilog-auto-lineup): Make just declarations the default (as it
23218 had been).
23219 (verilog-leap-to-case-head): Support priority/unique case statements.
23220 (verilog-auto-lineup): Rework to give users radio buttons to
23221 select the various styles of automatic lineup.
23222 (verilog-error-regexp-alist): Rework to support the XEmacs style
23223 of error regular expressions from compilers, lint tools &
23224 simulators. Note that GNU Emacs has made it impossible for a mode
23225 to load such things.
23226 (electric-verilog-terminate-line, verilog-indent-declaration)
23227 (verilog-auto-wiure): Rework for radio button selection of
23228 auto-lineup selection of specification of auto lineup.
23229 (verilog-beg-of-statement-1): Redesign to support proper operation
23230 in additional code, based on testing with auto-lineup.
23231 (verilog-calculate-indent, assignments & declarations)
23232 (verilog-backward-token): Enhance to support auto-lineup of
23233 assignments & declarations.
23234 (verilog-in-directive-p, verilog-at-struct-p): New function for
23235 easy test of whether we are.
23236 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
23237 to support safe execution at almost anyline.
23238 (verilog-calc-1): Properly support indenting deep inside generate
23239 blocks.
23240 (verilog-init-font): Remove definition & use of verilog-init-font,
23241 as it is redundant with font-lock-defaults.
23242 (verilog-mode): Alter the definition of verilog-font-lock-defaults
23243 to avoid circular calls if syntax-ppss is a function (as is the
23244 case now in 22.x GNU Emacs) as that function would sometimes call
23245 itself, leading to (nearly) infinite recursion.
23246 (verilog-ovm-begin-re, verilog-ovm-end-re)
23247 (verilog-ovm-statement-re, verilog-leap-to-head)
23248 (verilog-backward-token): Add support for OVM macros. Some are
23249 complete statements, and others open and close scopes like begin
23250 and end.
23251 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
23252 (verilog-defun-level-generate-only-re): Really fix the defun-list
23253 compilation issue.
23254 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
23255 coverpoint, constraint and cross statements.
23256 (verilog-defun-level-list, verilog-generate-defun-level-list)
23257 (verilog-all-defun-level-list): Redo these specifications - it is
23258 too hard to support eval-when compile aggregation of lists also
23259 built at when-compile time.
23260 (verilog-defun-level-list): Place defconsts of variables used in
23261 building regular expressions which are built in eval-when-compile
23262 bodies in the same eval-when-compile body to facilitate compile
23263 without load.
23264 (verilog-beg-block-re-ordered): Support indenting
23265 virtual/protected tasks and functions.
23266 (verilog-defun-level-list, verilog-in-generate-region-p)
23267 (verilog-backward-ws&directives, verilog-calc-1): Speed up
23268 indentation of some module items (generate items).
23269 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
23270 across virtual/protected tasks and functions.
23271
23272 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
23273
23274 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
23275 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
23276 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
23277 in concatenations. Reported by Yishay Belkind.
23278 (verilog-auto-ascii-enum): Support one-hot state machines in
23279 AUTOASCIIENUM. Suggested by Lloyd Gomez.
23280 (verilog-auto-inst, verilog-auto-inst-port): Include interface
23281 modport in AUTOINST and add vl-modport for users.
23282 Reported by David Rogoff.
23283 (verilog-auto-inout-module, verilog-auto-inst)
23284 (verilog-decls-get-interfaces, verilog-insert-definition)
23285 (verilog-insert-one-definition, verilog-read-decls)
23286 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
23287 (verilog-sig-modport, verilog-signals-combine-bus)
23288 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
23289 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
23290 Suggested by David Rogoff.
23291 (verilog-repair-open-comma): Fix non-insertion of comma when
23292 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
23293 (verilog-make-width-expression): Simplify [A-1:0] expression
23294 widths to just {A{1'b0}}.
23295 (verilog-mode): Cleanup checkdoc warnings.
23296 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
23297 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
23298 inputs/outputs or data type. Suggested by Vasu Kandadi.
23299 (next-error-last-buffer): Fix byte-compiler warning.
23300 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
23301 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
23302 or shell command text during AUTO expansion. Suggested by Tad Truex.
23303 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
23304 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
23305 Fix dotted nets {a.b,c.d} and escaped identifiers being mis-included
23306 in AUTOINOUT. Reported by Matthew Lovell.
23307 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
23308 causing use of <= assignments. Reported by Alex Reed.
23309 (verilog-read-decls): Fix triand, trior, wand, wor to be
23310 recognized by AUTOWIRE. Reported by Spencer Isaacson.
23311 (verilog-extended-complete-re): Support import "DPI-C" functions.
23312 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
23313 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
23314 (verilog-insert-date, verilog-insert-year)
23315 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
23316 Windows systems. Reported by Michael Potts.
23317 (verilog-read-module-name): Fix AUTOINST when the child module
23318 declaration's name is a tick define. Reported by Elliot Mednick.
23319 (verilog-read-decls): Fix V2K parameter bit subscripts getting
23320 passed to next parameter's definition. Reported by Bruce T.
23321 (verilog-read-decls): Fix detecting "parameter int" when using
23322 AUTOINSTPARAM. Reported by Bruce T.
23323 (verilog-goto-defun): Fix goto not finding modules unless first
23324 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
23325 (verilog-mode): Expand -f flag arguments on entry to mode so
23326 verilog-goto-defun will work. Reported by Lawrence Butcher.
23327 (verilog-getopt): Expand environment variables in -f file
23328 arguments. Suggested by Lawrence Butcher.
23329 (verilog-set-define): Fix "Symbol's value as variable is void"
23330 when reading enumerations.
23331 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
23332 Suggested by Stephen Peltan.
23333 (verilog-read-defines): Fix reading of enumerations in include
23334 files. Reported by Steve Peltan.
23335
23336 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
23337
23338 * files.el (trash-directory): Fix defcustom type.
23339
23340 2009-06-28 Juri Linkov <juri@jurta.org>
23341
23342 * help-fns.el (describe-function-1): Correctly locate adviced
23343 functions in hyperlink (Bug#2438).
23344
23345 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
23346
23347 * files.el (trash-directory): Change default to nil.
23348 (move-file-to-trash): If trash-directory is nil and
23349 system-move-file-to-trash is unbound, perform freedesktop-style
23350 trashing.
23351
23352 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
23353
23354 * files.el (move-file-to-trash): Add freedesktop trash
23355 support (Bug#973).
23356
23357 2009-06-28 Glenn Morris <rgm@gnu.org>
23358
23359 * autorevert.el (global-auto-revert-non-file-buffers)
23360 (global-auto-revert-mode): Doc fixes.
23361
23362 2009-06-27 Johan Bockgård <bojohan@gnu.org>
23363
23364 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
23365
23366 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
23367
23368 * faces.el (x-handle-named-frame-geometry): Ensure that we have
23369 opened an X connection before calling x-get-resource (Bug#3194).
23370
23371 * play/doctor.el: Remove reference to obsolete website.
23372 (make-doctor-variables): Correct grammar mistake (Bug#2633).
23373
23374 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
23375
23376 Remove find-file-not-found-hook VC method. (Bug#2757)
23377 * vc-hooks.el (vc-file-not-found-hook)
23378 (vc-default-find-file-not-found-hook): Remove functions.
23379 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
23380 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
23381 * vc.el:
23382 * vc-hg.el:
23383 * vc-git.el: Do not mention find-file-not-found-hook VC method.
23384
23385 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
23386
23387 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
23388 compatibility function for `looking-back'.
23389
23390 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
23391 Use `ispell-looking-back'.
23392
23393 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
23394
23395 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
23396 rather than `filename'.
23397
23398 2009-06-23 Miles Bader <miles@gnu.org>
23399
23400 * face-remap.el (text-scale-set): New function.
23401
23402 2009-06-23 Glenn Morris <rgm@gnu.org>
23403
23404 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
23405
23406 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
23407
23408 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
23409
23410 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
23411
23412 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
23413 Simplify Persian conditionals.
23414
23415 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
23416 variable `filename'.
23417
23418 * comint.el (comint-insert-input): Doc fix.
23419
23420 * Makefile.in (ELCFILES): Fix typo in previous change.
23421
23422 2009-06-23 Miles Bader <miles@gnu.org>
23423
23424 * cus-start.el: Add entry for `recenter-redisplay'.
23425
23426 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
23427
23428 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
23429 Add an optional argument for the backend, use it instead of
23430 calling vc-backend.
23431 (vc-mode-line): Add an optional argument for the backend.
23432 Pass the backend to vc-state and vc-working-revision. Move code for
23433 special handling for vc-state being a buffer to ...
23434
23435 * vc-rcs.el (vc-rcs-find-file-hook):
23436 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
23437
23438 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
23439 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
23440 vc-stay-local-p and vc-mode-line calls.
23441
23442 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
23443 (vc-cvs-diff, vc-cvs-annotate-command)
23444 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
23445 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
23446 vc-mode-line calls.
23447
23448 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
23449 direct comparison.
23450 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
23451 backend when calling vc-mode-line.
23452 (vc-register): Do not create a closure for calling the vc register
23453 function, call it directly.
23454
23455 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
23456
23457 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
23458 to make it obvious item can be clicked.
23459
23460 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
23461
23462 2009-06-23 Kenichi Handa <handa@m17n.org>
23463
23464 * language/korea-util.el (korean-key-bindings): Change the binding
23465 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
23466 same command.
23467
23468 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
23469
23470 Sync with Tramp 2.1.16.
23471
23472 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
23473
23474 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
23475 when a loading of a package fails. Completion function for rsync
23476 is `tramp-completion-function-alist-ssh'.
23477 (all): Replace all calls of `split-string' and
23478 `tramp-split-string' by `tramp-compat-split-string'.
23479 (tramp-default-method): Use `tramp-compat-process-running-p'.
23480 (tramp-default-proxies-alist): Allow also Lisp forms.
23481 (tramp-remote-path): Add choice "Private Directories".
23482 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
23483 (tramp-domain-regexp): Allow also "-", "_" and ".".
23484 (tramp-end-of-output): Remove newlines, and add "$" at the end.
23485 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
23486 (tramp-debug-message): Insert header line in debug buffer.
23487 (tramp-handle-directory-files-and-attributes-with-stat):
23488 Care about filenames with spaces, or starting with "-".
23489 (tramp-handle-dired-uncache): New defun.
23490 (tramp-handle-insert-directory): Don't flush the directory from
23491 cache, this is handled by `dired-uncache' now.
23492 (tramp-handle-insert-file-contents): Improve error handling.
23493 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
23494 Quote `tramp-end-of-output'.
23495 (tramp-action-password): Improve trace message.
23496 (tramp-check-for-regexp): Both echoes must be present, before removing.
23497 (tramp-open-connection-setup-interactive-shell): Trace coding system.
23498 (tramp-compute-multi-hops): Eval cons cells of
23499 `tramp-default-proxies-alist'.
23500 (tramp-maybe-open-connection): Use the same command pattern for
23501 first hop and further hops.
23502 (tramp-wait-for-output): Remove handling of newlines.
23503 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
23504 (tramp-split-string): Remove function. It is handled in
23505 tramp-compat now.
23506
23507 * net/tramp-cmds.el (tramp-bug):
23508 Recommend `tramp-cleanup-all-connections' in the bug mail.
23509
23510 * net/tramp-compat.el (tramp-compat-split-string)
23511 (tramp-compat-process-running-p): New defuns.
23512
23513 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
23514 for `dired-uncache'.
23515
23516 * net/tramp-gvfs.el: New package.
23517
23518 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
23519 Add handler for `dired-uncache'.
23520 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
23521
23522 * net/trampver.el: Update release number. Make version check fit
23523 for SXEmacs 22.
23524
23525 2009-06-22 Jim Meyering <meyering@redhat.com>
23526
23527 Automatically handle .xz suffix (XZ-compressed files), too.
23528 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
23529 XZ is the successor to LZMA: <http://tukaani.org/xz/>
23530
23531 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
23532 Nick Roberts <nickrob@snap.net.nz>
23533
23534 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
23535 repository (http://sphinx.net.ru/hg/gdb-mi/).
23536
23537 2009-06-22 Glenn Morris <rgm@gnu.org>
23538
23539 * files.el (dir-locals-collect-mode-variables): Allow for any number of
23540 `mode' and `eval' entries. (Bug#3430)
23541
23542 * Makefile.in (ELCFILES): Add fadr.elc.
23543
23544 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
23545 differing behavior of \n and ^ in strings. (Bug#3385)
23546
23547 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
23548
23549 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
23550 property.
23551 (lisp-indent-function): Make it a defcustom.
23552
23553 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
23554
23555 * progmodes/gdb-ui.el: Replace with ...
23556 * progmodes/gdb-mi.el: ... this file.
23557 * progmodes/gud.el: Modify for gdb-mi.el.
23558
23559 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
23560
23561 * fadr.el: New file.
23562
23563 See ChangeLog.14 for earlier changes.
23564
23565 ;; Local Variables:
23566 ;; coding: utf-8
23567 ;; End:
23568
23569 Copyright (C) 2009-2011 Free Software Foundation, Inc.
23570
23571 This file is part of GNU Emacs.
23572
23573 GNU Emacs is free software: you can redistribute it and/or modify
23574 it under the terms of the GNU General Public License as published by
23575 the Free Software Foundation, either version 3 of the License, or
23576 (at your option) any later version.
23577
23578 GNU Emacs is distributed in the hope that it will be useful,
23579 but WITHOUT ANY WARRANTY; without even the implied warranty of
23580 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23581 GNU General Public License for more details.
23582
23583 You should have received a copy of the GNU General Public License
23584 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.