* nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or later.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
26b51db5
JB
12011-04-01 Juanma Barranquero <lekktu@gmail.com>
2
3 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
4 Use `dolist' rather than `mapcar'.
5
7200d79c
SM
62011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
7
03408648 8 Add lexical binding.
7200d79c 9
03408648
SM
10 * subr.el (apply-partially): Use new closures rather than CL.
11 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
12 (dolist, dotimes): Use slightly different expansion for lexical code.
13 (functionp): Move to C.
14 (letrec): New macro.
15 (with-wrapper-hook): Use it and apply-partially instead of CL.
16 (eval-after-load): Preserve lexical-binding.
17 (save-window-excursion, with-output-to-temp-buffer): Turn them
18 into macros.
7200d79c 19
03408648
SM
20 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
21
22 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
23 than the arglist.
24 (help-add-fundoc-usage): Don't add `Not documented'.
25 (help-function-arglist): Handle closures, subroutines, and new
26 byte-code-functions.
27 (help-make-usage): Remove leading underscores.
28 (describe-function-1): Handle closures.
29 (describe-variable): Use special-variable-p for completion.
30
31 * files.el (lexical-binding): Declare safe.
f488fb65 32
03408648
SM
33 * emacs-lisp/pcase.el: Don't use destructuring-bind.
34 (pcase--memoize): Rename from pcase-memoize. Change weakness.
35 (pcase): Add `let' pattern.
36 Change memoization so it actually works.
37 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
38 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
39 <let>: New case.
f488fb65 40
03408648
SM
41 * emacs-lisp/macroexp.el: Use lexical binding.
42 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
43 Don't convert ' to #' without checking that it's indeed quoting
44 a lambda.
45
46 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 47 Use eval-sexp-add-defvars.
03408648
SM
48 (eval-sexp-add-defvars): New fun.
49
50 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
51
52 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
53 Don't autoload.
54 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
55 than the internal `byte-compile-lambda'.
56 (defmethod): Don't hide code under quotes.
57 (eieio-defmethod): New `code' argument.
58
59 * emacs-lisp/eieio-comp.el: Remove.
60
61 * emacs-lisp/edebug.el (edebug-eval-defun)
62 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
63 (edebug-toggle): Avoid `eval'.
64
65 * emacs-lisp/disass.el (disassemble-internal): Handle new
66 `closure' objects.
67 (disassemble-1): Handle new byte codes.
68
69 * emacs-lisp/cl.el (pushnew): Silence warning.
70
71 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
72 (cl-byte-compile-throw): Remove.
73 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
74
75 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
76 closures.
77
78 * emacs-lisp/cconv.el: New file.
79
80 * emacs-lisp/bytecomp.el: Use lexical binding instead of
81 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
82 (byte-compile-initial-macro-environment):
83 Handle declare-function here.
84 (byte-compile--lexical-environment): New var.
85 (byte-stack-ref, byte-stack-set, byte-discardN)
86 (byte-discardN-preserve-tos): New lap codes.
87 (byte-interactive-p): Don't use any more.
88 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
89 New macros.
90 (byte-compile-lapcode): Use them and handle new lap codes.
91 (byte-compile-obsolete): Remove.
92 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
93 (byte-compile-arglist-warn): Check late def of inlinable funs.
94 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
95 since they should have been expanded by now.
96 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
97 (byte-compile-from-buffer): Remove unused second arg.
98 (byte-compile-preprocess): New function.
99 (byte-compile-toplevel-file-form): New function to distinguish
100 file-form calls from outside from file-form calls from hunk-handlers.
101 (byte-compile-file-form): Simplify.
102 (byte-compile-file-form-defsubst): Remove.
103 (byte-compile-file-form-defmumble): Simplify now that
104 byte-compile-lambda always returns a byte-code-function.
105 (byte-compile): Preprocess.
106 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
107 Remove, not used any more.
108 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
109 (byte-compile-make-args-desc): New funs.
110 (byte-compile-lambda): Handle lexical functions. Always return
111 a byte-code-function.
112 (byte-compile-reserved-constants): New var, to make up room for
113 closed-over variables.
114 (byte-compile-constants-vector): Obey it.
115 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
116 (byte-compile-macroexpand-declare-function): New function.
117 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
118 byte-code-functions.
119 (byte-compile-form): Check obsolescence here.
120 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
121 (byte-compile-variable-ref): Remove.
122 (byte-compile-dynamic-variable-op): New fun.
123 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
124 (byte-compile-variable-set): New funs.
125 (byte-compile-discard): Add 2 args.
126 (byte-compile-stack-ref, byte-compile-stack-set)
127 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
128 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
129 macroexpand-all instead.
130 (byte-compile-quote-form): Remove.
131 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
132 (byte-compile-bind, byte-compile-unbind): New funs.
133 (byte-compile-let): Handle let* and lexical binding.
134 (byte-compile-let*): Remove.
135 (byte-compile-catch, byte-compile-unwind-protect)
136 (byte-compile-track-mouse, byte-compile-condition-case):
137 Handle a new :fun-body form, used for lexical scoping.
138 (byte-compile-save-window-excursion)
139 (byte-compile-with-output-to-temp-buffer): Remove.
140 (byte-compile-defun): Simplify.
141 (byte-compile-stack-adjustment): New fun.
142 (byte-compile-out): Use it.
143 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
144
145 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
146 handler any more.
147
148 * emacs-lisp/byte-opt.el: Use lexical binding.
149 (byte-inline-lapcode): Remove (to bytecomp).
150 (byte-compile-inline-expand): Pay attention to inlining to/from
151 lexically bound code.
152 (byte-compile-unfold-lambda): Don't handle byte-code-functions
153 any more.
154 (byte-optimize-form-code-walker): Don't handle save-window-excursion
155 any more and don't call compiler-macros.
156 (byte-compile-splice-in-already-compiled-code): Remove.
157 (byte-code): Don't inline any more.
158 (disassemble-offset): Receive `bytes' as argument rather than via
159 dynamic scoping.
160 (byte-compile-tag-number): Declare before first use.
161 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
162 `return' even if make-spliceable.
163 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
164 obsolete interactive-p.
165 (byte-optimize-lapcode): Optimize new lap-codes.
166 Don't trip up on new form of `byte-constant' lap code.
167
168 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
169
170 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
171
172 * custom.el (custom-initialize-default, custom-declare-variable):
173 Use `defvar'.
174
175 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
176 New variables.
177 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
178 (COMPILE_FIRST): Add macroexp and cconv.
179 * makefile.w32-in: Mirror changes in Makefile.in.
180
181 * vc/cvs-status.el:
182 * vc/diff-mode.el:
183 * vc/log-edit.el:
184 * vc/log-view.el:
185 * vc/smerge-mode.el:
186 * textmodes/bibtex-style.el:
187 * textmodes/css.el:
188 * startup.el:
189 * uniquify.el:
190 * minibuffer.el:
191 * newcomment.el:
192 * reveal.el:
193 * server.el:
194 * mpc.el:
195 * emacs-lisp/smie.el:
196 * doc-view.el:
197 * dired.el:
198 * abbrev.el: Use lexical binding.
199
0f0c1f27
EZ
2002011-04-01 Eli Zaretskii <eliz@gnu.org>
201
202 * info.el (info-display-manual): New function.
203
c82b2579
SM
2042011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
205
206 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
207
221ddf68
TH
2082011-03-31 Tassilo Horn <tassilo@member.fsf.org>
209
210 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
211 an entry for that server in rcirc-authinfo. (Bug#8385)
212
cba6e77e
GM
2132011-03-31 Glenn Morris <rgm@gnu.org>
214
e040639f
GM
215 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
216
cba6e77e
GM
217 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
218
6d0f1c9e
CS
2192011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
220
221 * progmodes/python.el (python-default-interpreter)
222 (python-python-command-args, python-jython-command-args)
223 (python-which-shell, python-which-args, python-which-bufname)
224 (python-file-queue, python-comint-output-filter-function)
225 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
226 variables and functions.
227
3e2d70fd
SM
2282011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
229
230 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
231 (completion-in-region-mode): New minor mode.
232 (completion-in-region): Use it.
233 (completion-in-region--data, completion-in-region-mode-map): New vars.
234 (completion-in-region--postch): New function.
235 (completion--capf-misbehave-funs, completion--capf-safe-funs):
236 New vars.
237 (completion--capf-wrapper): New function.
238 (completion-at-point): Use it to track well-behavedness of
239 hook functions.
240 (completion-help-at-point): New command.
241
f3e4086c
JM
2422011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
243
244 * vc/add-log.el (add-change-log-entry): Don't use whitespace
245 syntax class to search for whitespace on a single line
246 (Message-ID: <4D938140.4030905@redhat.com>).
247
eb7ffc14
LL
2482011-03-30 Leo Liu <sdl.web@gmail.com>
249
250 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
251 New commands.
252 (edit-abbrevs-map): Bind them here.
253 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
254
d806ab68
KM
2552011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
256
257 * allout.el (allout-hide-by-annotation, allout-flag-region):
258 Reduce possibility of overlay leakage by making them volatile.
259
260 * allout-widgets.el (allout-widgets-tally): Define as nil so the
261 hash is not shared between buffers. Mode initialization is
262 responsible for giving it a useful starting value.
263 (allout-item-span): Reduce possibility of overlay leakage by
264 making them volatile.
265 (allout-widgets-count-buttons-in-region): Add diagnostic function
266 for tracking down button overlay leaks.
267
ea622834
LL
2682011-03-29 Leo Liu <sdl.web@gmail.com>
269
270 * ido.el (ido-read-internal): Use the default history var
271 minibuffer-history if no HISTORY is specified.
272
b62f8267
G
2732011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
274
03408648
SM
275 * net/imap.el (imap-shell-open, imap-process-connection-type):
276 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
277 Kerberos, SSL, other subprocesses.
278
947b6566
LL
2792011-03-28 Leo Liu <sdl.web@gmail.com>
280
281 * abbrev.el (abbrev-table-empty-p): New function.
282 (prepare-abbrev-list-buffer): Place empty abbrev tables after
283 nonempty ones. (Bug#5937)
284
5ffb62aa
JD
2852011-03-27 Jan Djärv <jan.h.d@swipnet.se>
286
287 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
288
7a097943
LL
2892011-03-27 Leo Liu <sdl.web@gmail.com>
290
291 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
292 for foreground and background colors.
293 (ansi-color-make-color-map): Adapt.
294
c5b40130
LL
2952011-03-25 Leo Liu <sdl.web@gmail.com>
296
1f48f7d2
LL
297 * midnight.el (midnight-time-float): Remove. Note it calculates
298 the microsecond component incorrectly and seconds-to-time does the
299 same job.
625897ec 300 Remove redundant (require 'timer).
1f48f7d2 301
c5b40130
LL
302 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
303 (ido-completions): Remove unused arguments. (Bug#8329)
304
d86d2721
SM
3052011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
306
307 * minibuffer.el (completion--flush-all-sorted-completions):
308 Remove itself from hook.
309 (completion-at-point): Let the functions perform the completion
310 immediately and return nil or t.
311 * comint.el (comint-dynamic-complete-functions): Now identical to
312 completion-at-point-functions.
313 (comint-dynamic-list-input-ring): Remove unused var `index'.
314 (comint--match-partial-filename, comint--unquote&expand-filename):
315 New funs, split from comint-match-partial-filename.
316 (comint-dynamic-complete): Use completion-at-point.
317 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
318
e8974c48
DA
3192011-03-24 Drew Adams <drew.adams@oracle.com>
320
321 * thingatpt.el: Support `defun'.
322
def71b5e
LL
3232011-03-23 Leo Liu <sdl.web@gmail.com>
324
cb5af48e
LL
325 * abbrevlist.el: Move to obsolete/abbrevlist.el.
326
def71b5e
LL
327 * help-mode.el (help-mode-finish): Tweak regexp.
328
927c53e7
GM
3292011-03-23 Glenn Morris <rgm@gnu.org>
330
18d05bed
GM
331 * eshell/esh-opt.el (eshell-eval-using-options):
332 Do not bind unused local variable `eshell-option-stub'.
333
927c53e7
GM
334 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
335
9d0da923
JB
3362011-03-22 Juanma Barranquero <lekktu@gmail.com>
337
338 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
339 keymap variable in `with-no-warnings' to avoid a warning when the
340 keymap has been already `defconst'ed.
341
4b978a67
LL
3422011-03-22 Leo Liu <sdl.web@gmail.com>
343
344 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
345 encode all chars in abbrevs; otherwise use emacs-mule or
346 utf-8-emacs. (Bug#8308)
347
5fd62452
JB
3482011-03-22 Juanma Barranquero <lekktu@gmail.com>
349
0b1596c6
JB
350 * simple.el (backward-delete-char-untabify):
351 Avoid warning about using `delete-backward-char'.
352
5fd62452
JB
353 * image.el (image-type-file-name-regexps): Make it variable.
354 `imagemagick-register-types' modifies it, and the user may want
355 to add new extensions for known image types.
356 (imagemagick-register-types): Throw error if not using ImageMagick.
357
0b4e93f1
LL
3582011-03-22 Leo Liu <sdl.web@gmail.com>
359
360 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
361 located before rcirc-prompt-end-marker.
362 (rcirc-complete): Error if point is not after rcirc prompt.
363 Handle the case when table is nil.
9882e214 364 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 365
fccee4ab
CY
3662011-03-22 Chong Yidong <cyd@stupidchicken.com>
367
368 * custom.el (custom--inhibit-theme-enable): Make it affect only
369 custom-theme-set-variables and custom-theme-set-faces.
370 (provide-theme): Ignore custom--inhibit-theme-enable.
371 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
372 (custom-enabling-themes): Delete variable.
d86d2721
SM
373 (enable-theme): Accept only loaded themes as arguments.
374 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
375 (custom-enabled-themes): Forbid themes from setting this.
376 Eliminate use of custom-enabling-themes.
377 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 378
af896da6
LL
3792011-03-21 Leo Liu <sdl.web@gmail.com>
380
381 * ido.el (ido-read-internal): Add ido-selected to history instead
382 of user input.
383
78f64af0
SM
3842011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
385
386 * subr.el (deferred-action-list, deferred-action-function):
387 Mark obsolete.
388
b16ac1ec
LL
3892011-03-21 Leo Liu <sdl.web@gmail.com>
390
810f7698
LL
391 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
392 change on 2011-02-13 (bug#8309).
393
b16ac1ec
LL
394 * minibuffer.el (read-file-name-function): Change default value.
395 (read-file-name--defaults): Rename from read-file-name-defaults.
396 (read-file-name-default): Rename from read-file-name.
397 (read-file-name): Call read-file-name-function.
398
4e05e67e
GM
3992011-03-21 Glenn Morris <rgm@gnu.org>
400
401 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
402 Doc fixes.
403
4359915b
CY
4042011-03-21 Chong Yidong <cyd@stupidchicken.com>
405
406 * cus-theme.el: Add missing provide statement.
407 (customize-create-theme): Extract theme value correctly.
408 (custom-theme-visit-theme): Autoload.
409 (customize-create-theme): Prompt before inserting default faces.
410
1fe275ee
JB
4112011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
412
413 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
414 units and musical notes.
415
3ec03f7e
LL
4162011-03-20 Leo <sdl.web@gmail.com>
417
418 * ido.el (ido-read-internal): Use completing-read-default.
419 (ido-completing-read): Fix compatibility with completing-read.
420
7d476bde
CO
4212011-03-20 Christian Ohler <ohler@gnu.org>
422
423 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
424 (ert-delete-all-tests): Use `called-interactively-p' rather than
425 `interactive-p'.
426 (ert--make-xrefs-region): Respect END.
427
fe0fb33e
CY
4282011-03-19 Chong Yidong <cyd@stupidchicken.com>
429
ff854b0b
CY
430 * dired-aux.el (dired-create-directory): Signal an error if the
431 directory already exists (Bug#8246).
432
fe0fb33e
CY
433 * facemenu.el (list-colors-display): Call list-faces-display
434 inside with-help-window.
435 (list-colors-print): Use display property to align the final
436 column, instead of checking window-width.
437
576bce32
EZ
4382011-03-19 Eli Zaretskii <eliz@gnu.org>
439
440 * emerge.el (emerge-metachars): Separate value for ms-dos and
441 windows-nt systems.
442 (emerge-protect-metachars): Quote correctly for ms-dos and
443 windows-nt systems.
444
b14e3e21 4452011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
446
447 * info.el (info-initialize): Replace all uses of `:' with
448 path-separator for compatibility with non-Unix systems.
449 Cache quoting of path-separator. (Bug#8258)
450
b14e3e21 4512011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
452
453 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
454 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
455 (mouse-avoidance-mode): Fix typos in docstrings.
456
4525ce3e
CY
4572011-03-19 Chong Yidong <cyd@stupidchicken.com>
458
459 * startup.el (package-subdirectory-regexp): Move from package.el.
460 Omit \\` and \\', and let callers add them.
461
462 * emacs-lisp/package.el (package-strip-version)
463 (package-load-all-descriptors): Add \\` and \\' to
464 package-subdirectory-regexp before using it.
465 (package-untar-buffer): New arg DIR; ensure that file untars only
466 into this expected directory. Remove superfluous delete-region.
467 (package-unpack): Caller changed.
468 (package-tar-file-info): Use package-subdirectory-regexp.
469
a904a09a 4702011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 471
a904a09a
SM
472 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
473 diff-mode-shared-map (bug#8284).
474 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
475
4762011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
477
478 * calendar/time-date.el (format-seconds): Use assoc instead of
479 assoc-string, since assoc-string doesn't exist in XEmacs.
480
171fc304
JB
4812011-03-17 Juanma Barranquero <lekktu@gmail.com>
482
483 * custom.el (custom-known-themes): Reflow docstring.
484 (custom-theme-load-path): Fix typo in docstring.
485 (load-theme): Fix typo in error message.
486 (custom-available-themes, custom-variable-theme-value):
487 Use `let', not `let*'.
488
d71990a1
JB
4892011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
490
491 * calc/README: Mention inclusion of musical notes.
492
493 * calc/calc-units.el (calc-lu-quant): Rename from
494 `calc-logunits-quantity'.
495 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
496 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
497 (calc-db): Rename from `calc-dblevel'.
498 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
499 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
500 (calc-np): Rename from `calc-nplevel'.
501 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
502 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
503 (calc-lu-plus): Rename from `calc-logunits-add'.
504 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
505 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
506 (calc-lu-minus): Rename from `calc-logunits-sub'.
507 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
508 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
509 (calc-lu-times): Rename from `calc-logunits-mul'.
510 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
511 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
512 (calc-lu-divide): Rename from `calc-logunits-div'.
513 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
514 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
515
516 * calc/calc-ext.el (calc-init-extensions): Update the names of the
517 functions being autoloaded.
518
519 * calc/calc.el (calc-lu-power-reference): Rename from
520 `calc-logunits-power-reference'.
521 (calc-lu-field-reference): Rename from
522 `calc-logunits-field-reference'.
523
524 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
525
40c2934b
SM
5262011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
527
528 * minibuffer.el (completion-all-sorted-completions):
529 Use :completion-cycle-penalty text property if present.
530
b0911414
KM
5312011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
532
533 * allout.el (allout-yank-processing): Adjust for new rebulleting
534 regime so bullet being yanked is used without prompting the user
535 for a choice.
536
8a05b668
JB
5372011-03-16 Juanma Barranquero <lekktu@gmail.com>
538
539 * startup.el (command-line): Warn the user that _emacs is deprecated.
540
5ba5fb81
JB
5412011-03-16 Juanma Barranquero <lekktu@gmail.com>
542
543 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
544 (delphi-verbose, delphi-comment-face, delphi-string-face)
545 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
546 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
547 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
548 (delphi-new-comment-line, delphi-font-lock-defaults)
549 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
550 Fix typos in docstrings.
551
2dab465b
KM
5522011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
553
5ba5fb81 554 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
555 Invert the roles of character and string values for INSTEAD, so a
556 string is used for the more common case of a defaulting prompt.
557
0adf5618
SM
5582011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
559
560 * progmodes/ruby-mode.el (ruby-backward-sexp):
561 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
562 * play/gamegrid.el (gamegrid-make-face):
563 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
564 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
565 * notifications.el (notifications-notify):
566 * net/xesam.el (xesam-search-engines):
567 * net/quickurl.el (quickurl-list-insert):
568 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
569
d72700e5
CY
5702011-03-15 Chong Yidong <cyd@stupidchicken.com>
571
572 * startup.el (command-line): Update package subdirectory regexp.
573
49c5410a
SM
5742011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
575
c6eee9aa
SM
576 * allout.el (allout-abbreviate-flattened-numbering)
577 (allout-mode-deactivate-hook): Fix up obsolescence "date".
578
49c5410a
SM
579 * subr.el (read-char-choice): Only show the cursor after the prompt,
580 not after the answer.
581
047b2bb9
KR
5822011-03-15 Kevin Ryde <user42@zip.com.au>
583
584 * help-fns.el (variable-at-point): Skip leading quotes, if any
585 (bug#8253).
586
0a57d256
SM
5872011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
588
589 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
590 warning message.
591
77c992bc
MA
5922011-03-14 Michael Albinus <michael.albinus@gmx.de>
593
594 * shell.el (shell): When called interactively, offer to change the
595 shell file name on remote hosts.
596
eebc475d
TZ
5972011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
598
599 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
600 integration for LDAP parameters. The host, base, user or binddn,
601 and secret tokens can be specified in a netrc file, for instance.
602 This is optional because an `auth-source' parameter must be
603 specified in the search attributes.
604
9d05d1ba
JB
6052011-03-13 Juanma Barranquero <lekktu@gmail.com>
606
607 * help.el (describe-mode): Link to the mode's definition (bug#8185).
608
09d9db2c
GM
6092011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
610
611 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
612 into declaration. Remove redundant and harmful binding.
613
6142011-03-12 Eli Zaretskii <eliz@gnu.org>
615
616 * files.el (file-ownership-preserved-p): Pass `integer' as an
617 explicit 2nd argument to `file-attributes'. If the file's owner
618 is the Administrators group on Windows, and the current user is
619 Administrator, consider that a match.
620
621 * server.el (server-ensure-safe-dir): Consider server directory
622 safe on MS-Windows if its owner is the Administrators group while
623 the current Emacs user is Administrator. Use `=' to compare
624 numerical UIDs, since they could be integers or floats.
625
219bd536
JB
6262011-03-12 Juanma Barranquero <lekktu@gmail.com>
627
628 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
629
f3afd36b
MA
6302011-03-12 Michael Albinus <michael.albinus@gmx.de>
631
632 Sync with Tramp 2.2.1.
633
634 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
635
636 * net/trampver.el: Update release number.
637
3aaaa6f1
SM
6382011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
639
94642599
SM
640 * progmodes/compile.el (compilation--previous-directory): Fix up
641 various nil/dead-marker mismatches (bug#8014).
642 (compilation-directory-properties, compilation-error-properties):
643 Don't call it at a position past the one we're about to change.
644
3aaaa6f1
SM
645 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
646 Disable obsolescence warnings in the file that declares it.
647
14239447
KM
6482011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
649
219bd536 650 * allout-widgets.el (allout-widgets-tally): Initialize
14239447
KM
651 allout-widgets-tally as a hash table rather than nil to prevent
652 mode-line redisplay warnings.
653 Also, clarify the module description and fix a comment typo.
654
135e287c
JB
6552011-03-11 Juanma Barranquero <lekktu@gmail.com>
656
657 * help-fns.el (describe-variable): Don't complete keywords.
658 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
659
ffbf300e
CY
6602011-03-10 Chong Yidong <cyd@stupidchicken.com>
661
ba08b241
CY
662 * emacs-lisp/package.el (package-version-join): Impose a standard
663 string representation for pre/alpha/beta version lists.
664 (package-unpack-single): Standardize the directory name by passing
665 it through package-version-join.
666 (package-strip-rcs-id): Accept any version string that does not
667 signal an error in version-to-list.
ffbf300e 668
f346fd6b
MA
6692011-03-10 Michael Albinus <michael.albinus@gmx.de>
670
671 * simple.el (delete-trailing-whitespace): Return nil for the
672 benefit of `write-file-functions'.
673
ccb55d27
GM
6742011-03-10 Glenn Morris <rgm@gnu.org>
675
5ceaac0c
GM
676 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
677
02da65ff
GM
678 * vc/vc-git.el (vc-git-program): New option.
679 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
680 (vc-git--call): Use it.
681
b2f603cc
GM
682 * eshell/esh-util.el (eshell-condition-case): Doc fix.
683
5772caab
GM
684 * cus-edit.el (Custom-newline): If no button at point, look
685 for a subgroup button at start-of-line. (Bug#2298)
686
ccb55d27
GM
687 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
688
ec6ecaed
JD
6892011-03-10 Julien Danjou <julien@danjou.info>
690
691 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
692 `cursor-type' is nil.
693
9d5aa01d
JB
6942011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
695
696 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
697
b6a5875b
KM
6982011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
699
700 * allout.el Summary: Change so yank of distinctive-bullet items
701 preserves the existing header prefix, rebulleting it if necessary,
702 rather than replacing it. This is necessary for proper operation
703 of cooperative addons like allout-widgets.
219bd536 704 (allout-make-topic-prefix, allout-rebullet-heading): Change
b6a5875b
KM
705 SOLICIT arg to INSTEAD, and interpret additionally a string value
706 as alternate bullet to be used, instead of prompting the user for
707 a bullet character.
708
ee545c35
MA
7092011-03-09 Michael Albinus <michael.albinus@gmx.de>
710
d86d2721
SM
711 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
712 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
713 `tramp-default-port'.
714
c47971d7
DD
7152011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
716
717 * net/rcirc.el (rcirc-handler-001): Remove useless
718 with-rcirc-process-buffer.
719 (rcirc-check-auth-status): Swap arguments to string-match.
720
13522cb4
GM
7212011-03-09 Glenn Morris <rgm@gnu.org>
722
0be6f4f1
GM
723 * shell.el (shell-mode):
724 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
725
13522cb4
GM
726 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
727 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
728
515de2e3
CY
7292011-03-08 Chong Yidong <cyd@stupidchicken.com>
730
731 * emacs-lisp/package.el (package-refresh-contents)
732 (package-menu-execute): Use condition-case-no-debug.
733
b511b994
MA
7342011-03-08 Michael Albinus <michael.albinus@gmx.de>
735
736 * simple.el (shell-command-to-string): Use `process-file'.
737
738 * emacs-lisp/package.el (package-tar-file-info): Handle also
739 remote files.
740
d86d2721
SM
741 * emacs-lisp/package-x.el (package-upload-buffer-internal):
742 Use `equal' for upload base check.
b511b994 743
25bbfb31
AM
7442011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
745
746 * textmodes/texinfo.el (texinfo-environments):
747 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
748
be996521
GM
7492011-03-08 Glenn Morris <rgm@gnu.org>
750
e9c8529f
GM
751 * cus-start.el (cursor-in-non-selected-windows):
752 Fix :set quoting oddness. (Bug#8192)
753
be996521
GM
754 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
755 in some setf expressions. (Bug#2159)
756
2bb5649e
CY
7572011-03-08 Chong Yidong <cyd@stupidchicken.com>
758
759 * custom.el (custom-available-themes): Return themes in
760 alphabetical order.
761
7600cf45
CY
7622011-03-07 Chong Yidong <cyd@stupidchicken.com>
763
764 * progmodes/cc-cmds.el (c-beginning-of-statement): Fix incorrect
765 application of patch from Alan Mackenzie (Bug#7595).
766
fa7062f6
DD
7672011-03-07 Deniz Dogan <deniz.a.m.dogan@gmail.com>
768
769 * net/rcirc.el (rcirc-connect): Fix PASS bug.
770
619f4b62
GM
7712011-03-07 Glenn Morris <rgm@gnu.org>
772
773 * vc/vc.el (vc-next-action): Add missing space to y-or-n-p prompt.
7e319d3c 774 Give an explicit error if failed to make writable. (Bug#6146)
619f4b62 775
e63e9234
ER
7762011-03-07 Ed Reingold <reingold@emr.cs.iit.edu>
777
778 * calendar/cal-hebrew.el (diary-hebrew-yahrzeit):
779 Add optional `after-sunset' argument. (Bug#8190)
780
16130297
AH
7812011-03-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
782
783 * play/morse.el (nato-alphabet, nato-region, denato-region):
784 New variable and functions. (Bug#2288)
f72c1fd6 785 (morse-region, unmorse-region): Barf if read-only.
16130297 786
2b0787b3
SM
7872011-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
788
789 * progmodes/gud.el (gdb-script-syntax-propertize-function):
790 Don't change the syntax of a \n that closes a comment (bug#8169).
791
5c69cb2c
CY
7922011-03-06 Chong Yidong <cyd@stupidchicken.com>
793
794 * emacs-lisp/package-x.el (package-archive-upload-base): Make it a
795 defcustom.
796 (package--update-file): Doc fix. Accept relative file names.
797 (package--archive-contents-from-file): Remove the argument, since
798 it's necessarily always "archive-contents".
799 (package-maint-add-news-item): Pass relative file name args to
800 package--update-file.
801 (package-upload-buffer-internal): Prompt for a destination if
802 package-archive-upload-base is invalid. Create the directory if
803 it does not exist.
804 (package-upload-buffer, package-upload-file): Doc fix.
805
892777ba
CY
8062011-03-06 Chong Yidong <cyd@stupidchicken.com>
807
808 * isearch.el (isearch-mode-map): Bind C-y to isearch-yank-kill,
809 and move isearch-yank-line to M-s C-e (Bug#8183).
810
9d1f0f55
AM
8112011-03-06 Alan Mackenzie <acm@muc.de>
812
813 * progmodes/cc-engine.el (c-guess-basic-syntax): Reindent.
804a116c
AM
814 (c-guess-basic-syntax): Move CASE 19 to a different place,
815 correctly to process template-args-cont lines.
9d1f0f55 816
479a2c9b
JB
8172011-03-06 Jay Belanger <jay.p.belanger@gmail.com>
818
2b0787b3
SM
819 * calc/calc-ext.el (calc-init-extensions):
820 Rename calc-logunits-dblevel and calc-logunits-nplevel to calc-dblevel
804a116c
AM
821 and calc-nplevel, respectively. Add keybindings for calc-spn,
822 calc-midi and calc-freq. Add autoloads for calcFunc-spn,
823 calcFunc-midi, calcFunc-freq, calc-spn, calc-midi and calc-freq.
479a2c9b
JB
824
825 * calc/calc-units.el (calc-dblevel): Rename from
826 calc-logunits-dblevel.
827 (calc-nplevel): Rename from calc-logunits-nplevel.
05a29101
JB
828 (math-midi-round, math-freqp, math-midip, math-spnp)
829 (math-spn-to-midi, math-midi-to-spn, math-freq-to-spn)
830 (math-midi-to-freq, math-spn-to-freq, calcFunc-spn, calcFunc-midi)
831 (calcFunc-freq, calc-freq, calc-midi, calc-spn): New functions.
832 (math-notes): New variable.
833
834 * calc/calc.el (calc-note-threshold): New variable.
479a2c9b 835
f561e49a
CY
8362011-03-06 Chong Yidong <cyd@stupidchicken.com>
837
838 * emacs-lisp/package.el (package-archives): Accept either ordinary
839 directory names, in addition to HTTP URLs.
840 (package--with-work-buffer): New macro. Handle normal directories.
841 (package-handle-response): Don't display the failing buffer.
842 (package-download-single, package-download-tar)
843 (package--download-one-archive): Use package--with-work-buffer.
844 (package-archive-base): Rename from package-archive-url.
845
79a0fb58
GM
8462011-03-06 Glenn Morris <rgm@gnu.org>
847
848 * generic-x.el (generic-unix-modes): Add xmodmap-generic-mode.
849 (xmodmap-generic-mode): Respect generic-extras-enable-list.
850
ffd0a502
DC
8512011-03-06 Daniel Clemente <dcl441-bugs@yahoo.com> (tiny change)
852
853 * generic-x.el (xmodmap-generic-mode): New. (Bug#2065)
854
01c35094
JB
8552011-03-06 Juanma Barranquero <lekktu@gmail.com>
856
857 * allout.el (allout-init, allout-prefixed-keybindings)
858 (allout-unprefixed-keybindings):
859 * progmodes/prolog.el (prolog-find-term):
860 Fix typos in docstrings.
861
509742cc
NS
8622011-03-06 Nikolaj Schumacher <me@nschum.de> (tiny change)
863
864 * emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746)
865
14369ab3
KR
8662011-03-06 Kevin Ryde <user42@zip.com.au>
867
868 * textmodes/sgml-mode.el (sgml-fill-nobreak): Give it a doc. (Bug#5326)
869
aa248733
MS
8702011-03-06 Michael Shields <shields@msrl.com> (tiny change)
871
872 * window.el (one-window-p, walk-windows, display-buffer):
873 Doc fixes. (Bug#5567)
874
da0275f8
JB
8752011-03-06 Jay Belanger <jay.p.belanger@gmail.com>
876
877 * cus-edit.el (custom-prompt-variable): Use the `custom-get' property
878 of the variable if it exists.
879
845fc5e5
JB
8802011-03-06 Juanma Barranquero <lekktu@gmail.com>
881
882 * bookmark.el:
883 * desktop.el:
884 * emacs-lock.el:
885 * ps-print.el:
886 * saveplace.el:
887 * net/tramp-cache.el:
01c35094 888 * obsolete/fast-lock.el:
845fc5e5
JB
889 * textmodes/reftex.el:
890 Don't set `kill-emacs-hook' on noninteractive sessions (bug#8137).
891
7e27ce9c
AL
8922011-03-05 Antoine Levitt <antoine.levitt@gmail.com>
893
01c35094
JB
894 * files.el (delete-directory, copy-directory, list-directory):
895 Use read-directory-name.
7e27ce9c
AL
896
897 * find-file.el (ff-find-the-other-file):
898 * net/ange-ftp.el (ange-ftp-make-directory):
899 * printing.el (pr-interactive-dir):
900 * progmodes/ada-prj.el (ada-prj-load-directory):
901 * progmodes/ebnf2ps.el (ebnf-print-directory)
902 (ebnf-spool-directory, ebnf-eps-directory)
903 (ebnf-syntax-directory):
904 * shell.el (shell):
905 * speedbar.el (speedbar-create-directory):
906 * vc/emerge.el (emerge-merge-directories):
907 * vc/vc-dir.el (vc-dir):
908 * vc/vc.el (vc-create-tag, vc-retrieve-tag): Likewise.
909
d23ae2b0
CY
9102011-03-05 Chong Yidong <cyd@stupidchicken.com>
911
912 * help-mode.el (help-buffer): If we are to return the current
913 buffer, signal an error if it's not in Help mode (Bug#8147).
914
2de9cc1a
RT
9152011-03-05 Reuben Thomas <rrt@sc3d.org>
916
917 * files.el (file-name-version-regexp): Handle backup files of the
918 form `foo.js.~HEAD~1~' (Bug#8159).
919
81fb60b2
GM
9202011-03-05 Glenn Morris <rgm@gnu.org>
921
922 * eshell/esh-var.el: Don't require esh-test when compiling.
923 * eshell/em-banner.el, eshell/esh-cmd.el, eshell/esh-mode.el:
924 * eshell/esh-var.el, eshell/eshell.el: Move tests to esh-test.
01c35094 925 * eshell/esh-test.el: Move to ../../test/eshell.el.
81fb60b2 926
c5f09daf
DE
9272011-03-05 David Engster <deng@randomsample.de>
928
929 * files.el (save-some-buffers): Report the names of buffers saved
930 automatically due to buffer-save-without-query (Bug#8134).
931
77f63d30
DD
9322011-03-05 Deniz Dogan <deniz.a.m.dogan@gmail.com>
933
934 * net/rcirc.el: Add QuakeNet authentication support.
935 (rcirc-authinfo, rcirc-check-auth-status)
936 (rcirc-authenticate): Support QuakeNet.
937
72d2c2e3
DD
9382011-03-05 Deniz Dogan <deniz.a.m.dogan@gmail.com>
939
940 * net/rcirc.el: Add functionality to authenticate before
941 autojoining channels.
942 (rcirc-authenticate-before-join): New option.
943 (rcirc-authenticated-hook): New variable.
944 (rcirc-connect): Make local variable rcirc-user-authenticated.
945 (rcirc-handler-001): Respect rcirc-authenticate-before-join.
01c35094
JB
946 (rcirc-check-auth-status, rcirc-join-channels-post-auth):
947 New functions.
948 (rcirc-handler-PRIVMSG, rcirc-handler-NOTICE):
949 Call rcirc-check-auth-status.
72d2c2e3 950
d733e817
MA
9512011-03-05 Alex Harsanyi <AlexHarsanyi@gmail.com>
952
953 * net/soap-client.el (soap-namespace-put-link): Check if the target
954 name is fully qualified -- use only the name part.
955 (soap-parse-complex-type, soap-parse-sequence): Recognize xsd:all
956 types, treated the same as xsd:sequence. (Bug#8166)
957
3ae59fff
EZ
9582011-03-05 Eli Zaretskii <eliz@gnu.org>
959
960 * files.el (find-file-noselect): Don't ask about re-visiting
961 non-literally if the file is already visited in image-mode.
962 (Bug#8177)
963
a9eeff78
GM
9642011-03-05 Glenn Morris <rgm@gnu.org>
965
d783d303
GM
966 * eshell/esh-mode.el (eshell-kill-buffer-function): New function.
967 (eshell-mode): Use eshell-kill-buffer-function.
968 Run the -initialize functions independently of the -load-hooks.
969 * eshell/esh-proc.el (eshell-kill-process-function): New function.
970 (eshell-gather-process-output, eshell-sentinel)
971 (eshell-interrupt-process, eshell-kill-process, eshell-quit-process):
972 Use eshell-kill-process-function.
973 * eshell/em-alias.el (eshell-alias-load-hook):
974 * eshell/em-banner.el (eshell-banner-load-hook):
975 * eshell/em-cmpl.el (eshell-cmpl-load-hook):
976 * eshell/em-dirs.el (eshell-dirs-load-hook):
977 * eshell/em-glob.el (eshell-glob-load-hook):
978 * eshell/em-hist.el (eshell-hist-load-hook):
979 * eshell/em-pred.el (eshell-pred-load-hook):
980 * eshell/em-prompt.el (eshell-prompt-load-hook):
981 * eshell/em-rebind.el (eshell-rebind-load-hook):
982 * eshell/em-script.el (eshell-script-load-hook):
983 * eshell/em-smart.el (eshell-smart-load-hook):
984 * eshell/em-term.el (eshell-term-load-hook):
985 * eshell/em-unix.el (eshell-unix-load-hook):
986 * eshell/esh-arg.el (eshell-arg-load-hook):
987 * eshell/esh-cmd.el (eshell-cmd-load-hook):
988 * eshell/esh-ext.el (eshell-ext-load-hook):
989 * eshell/esh-io.el (eshell-io-load-hook):
990 * eshell/esh-mode.el (eshell-exit-hook):
991 * eshell/esh-proc.el (eshell-proc-load-hook, eshell-kill-hook):
992 * eshell/esh-var.el (eshell-var-load-hook):
993 Set default hook values to nil. (Bug#5375)
994
4a0f18a8
GM
995 * eshell/esh-module.el (eshell-module-unload-hook)
996 (eshell-modules-list): Remove leading * from defcustom docs.
997
a9eeff78
GM
998 * eshell/esh-util.el (eshell-for): Make it obsolete.
999 * eshell/em-alias.el (eshell/alias, eshell-alias-completions):
1000 * eshell/em-dirs.el (eshell-save-some-last-dir):
1001 * eshell/em-hist.el (eshell-save-some-history)
1002 (eshell-hist-parse-modifier):
1003 * eshell/em-ls.el (eshell-ls-dir, eshell-ls-files)
1004 (eshell-ls-entries):
1005 * eshell/em-unix.el (eshell/cat, eshell/du, eshell/su):
1006 * eshell/esh-cmd.el (eshell-invoke-directly, eshell-do-eval)
1007 (eshell/which):
1008 * eshell/esh-ext.el (eshell-find-interpreter):
1009 * eshell/esh-mode.el (eshell-mode):
1010 * eshell/esh-module.el (eshell-unload-extension-modules):
1011 * eshell/esh-proc.el (eshell-process-interact):
1012 * eshell/esh-test.el (eshell-test):
1013 * eshell/esh-util.el (eshell-flatten-list, eshell-winnow-list):
1014 * eshell/esh-var.el (eshell/env, eshell-environment-variables)
1015 (eshell-variables-list):
1016 * eshell/eshell.el (eshell-unload-all-modules):
1017 Replace eshell-for with dolist.
1018
85a55d38
GM
10192011-03-04 Glenn Morris <rgm@gnu.org>
1020
1021 * vc/vc-bzr.el (vc-bzr-after-dir-status): Handle bzr 2.3.0. (Bug#8170)
1022
38c179c9
TT
10232011-03-04 Tom Tromey <tromey@redhat.com>
1024
1025 * progmodes/gud.el (gdb-script-mode): Derive from prog-mode.
1026
732795fa
GM
10272011-03-04 Glenn Morris <rgm@gnu.org>
1028
015bea8f
GM
1029 * outline.el (outline-regexp): No longer allow nil.
1030 (outline-heading-end-regexp): Add safety predicate. (Bug#7619)
1031
9d982739
GM
1032 * net/browse-url.el (browse-url):
1033 Handle deleted default-directory. (Bug#6077)
1034
732795fa
GM
1035 * recentf.el (recentf-include-p): In case of a buggy predicate,
1036 err on the side of including, not excluding. (Bug#5843)
1037
d6ffd3f8
JB
10382011-03-04 Jay Belanger <jay.p.belanger@gmail.com>
1039
1040 * calc/calc-units.el (math-to-standard-rec): Don't treat subscripted
1041 variables as units.
1042
a918ed9b
BR
10432011-03-04 Bob Rogers <rogers@rgrjr.dyndns.org>
1044
1045 * emacs-lisp/ewoc.el (ewoc-goto-next): Give a more explicit error
1046 if there is no node. (Bug#3261)
1047
fc0e9092
LL
10482011-03-04 Leo <sdl.web@gmail.com>
1049
0a5cb52b
LL
1050 * vc/diff-mode.el (diff-mode): Fix whitespace-style. (Bug#8139)
1051
fc0e9092
LL
1052 * time.el (display-time-world-list): Fix typo. (Bug#7571)
1053
a65112fb 10542011-03-04 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
d8c8743b
ZK
1055
1056 * cus-edit.el (custom-buffer-create-internal):
1057 Split search string before passing it to `customize-apropos' (bug#8136).
1058
3191adaf
DA
10592011-03-04 Drew Adams <drew.adams@oracle.com>
1060
1061 * image-dired.el (image-dired-cmd-read-exif-data-options):
1062 Fix typo in docstring (bug#8156).
1063
fcd8ed1d
DD
10642011-03-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1065
1066 * net/rcirc.el (rcirc-cmd-join): Accept comma-separated input.
1067
de69c0a8
CO
10682011-03-03 Christian Ohler <ohler@gnu.org>
1069
1070 * emacs-lisp/ert.el (ert--explain-equal): New function.
d86d2721 1071 (ert--explain-equal-rec): Rename from `ert--explain-not-equal'.
de69c0a8 1072 All callers changed.
d86d2721 1073 (ert--explain-equal-including-properties): Rename from
de69c0a8
CO
1074 `ert--explain-not-equal-including-properties'. All callers
1075 changed.
1076
7c0d1441
CO
10772011-03-03 Christian Ohler <ohler@gnu.org>
1078
1079 * emacs-lisp/ert.el (ert--stats-set-test-and-result)
1080 (ert-char-for-test-result, ert-string-for-test-result)
1081 (ert-run-tests-batch, ert--print-test-for-ewoc):
1082 Handle `ert-test-quit'.
1083
31128af6
DA
10842011-03-03 David Abrahams <dave@boostpro.com> (tiny change)
1085
1086 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
1087 Move ediff-defvar-local calls after defcustoms. (Bug#1821)
1088
06083aa1
GM
10892011-03-03 Glenn Morris <rgm@gnu.org>
1090
1091 * files.el (file-truename): Doc fix. (Bug#2341)
1092
c7a74801
BR
10932011-03-03 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
1094
01c35094 1095 * vc/vc-dir.el (vc-dir-mode-map): Bind vc-dir-find-file to e (Bug#7349).
c7a74801 1096
614b85f8
VJ
10972011-03-03 Vagn Johansen <gonz808@hotmail.com> (tiny change)
1098
1099 * vc/vc-svn.el (vc-svn-after-dir-status): Some MS Windows svn client
1100 programs output backslashes. (Bug#7663)
1101
f96dc50f
GM
11022011-03-03 Glenn Morris <rgm@gnu.org>
1103
fb532fe8
GM
1104 * mail/sendmail.el (mail-mode-map): Remove mail-sent-via.
1105 (mail-mode): Remove mail-sent-via from the doc.
1106 (mail-sent-via): Make it obsolete. (Bug#1776)
1107
a915d7a1
GM
1108 * progmodes/grep.el (grep-highlight-matches): Doc fix.
1109 (grep-process-setup): No highlighting without font-lock. (Bug#8084)
1110
f96dc50f
GM
1111 * vc/vc-bzr.el (vc-bzr-state-heuristic): Handle dirstate entries
1112 with no parents. (Bug#8025)
1113
71f8b7ed
G
11142011-03-02 Teodor Zlatanov <tzz@lifelogs.com>
1115
1116 * password-cache.el (password-in-cache-p): Add autoload.
1117
8889f4e2
GM
11182011-03-02 Glenn Morris <rgm@gnu.org>
1119
3ab7ebb9
GM
1120 * man.el (Man-support-local-filenames): Also handle Red Hat's man.
1121 * dired-x.el (Man-support-local-filenames): Autoload it.
1122 (dired-guess-shell-alist-default): Also handle Red Hat's man.
1123
2777ccbf
GM
1124 * dired-x.el (dired-default-directory-alist, dired-default-directory):
1125 Mark as obsolete.
1126 (dired-smart-shell-command): Just call dired-current-directory.
1127
5dedeef2
GM
1128 * dired-x.el (dired-jump-other-window): Add autoload.
1129 (dired-default-directory-alist, dired-default-directory): Doc fixes.
1130 (dired-default-directory-alist): Mark as risky.
1131
8889f4e2
GM
1132 * dired-x.el (dired-omit-here-always): Make it obsolete.
1133
d77aaf6f
CY
11342011-03-02 Chong Yidong <cyd@stupidchicken.com>
1135
1136 * textmodes/artist.el (artist-curr-go): Default to pen-line.
1137 (artist-select-op-pen-line): New function.
1138 (artist-menu-map): New variable.
1139 (artist-mode-map): Add a menu to the menu-bar.
1140
771fc75e
JB
11412011-03-02 Jay Belanger <jay.p.belanger@gmail.com>
1142
1143 * calc/calc-math.el (calcFunc-log10): Check for symbolic mode
1144 when evaluating.
1145
1146 * calc/calc-units.el (math-conditional-apply, math-conditional-pow):
1147 New function.
1148 (math-logunits-add, math-logunits-mul, math-logunits-divide):
1149 (math-logunits-quant, math-logunits-level):
1150 Use `math-conditional-apply' and `math-conditional-pow' to evaluate
1151 functions.
1152 (math-logunits-level): Extract units from ratio.
1153
f6132e5a
JB
11542011-03-01 Juanma Barranquero <lekktu@gmail.com>
1155
1156 * emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring.
1157
7454f200
GM
11582011-03-01 Glenn Morris <rgm@gnu.org>
1159
a65112fb
GM
1160 * calendar/cal-hebrew.el (calendar-hebrew-birthday)
1161 (diary-hebrew-birthday): Rename and rework functions added
1162 in previous change.
7454f200 1163
cdcbd5a7
ER
11642011-03-01 Ed Reingold <reingold@emr.cs.iit.edu>
1165
1166 * calendar/cal-hebrew.el (hebrew-calendar-birthday)
1167 (diary-hebrew-birthday): New functions.
1168
9903d828
GM
11692011-03-01 Glenn Morris <rgm@gnu.org>
1170
1171 * dired.el (dired-safe-switches-p): Beef it up.
1172 (dired-actual-switches): Use it for the safe-local prop. (Bug#3230)
1173
75da6eb9
SM
11742011-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
1175
1176 * dired.el (dired-safe-switches-p): New function.
1177
6640b281
GM
11782011-03-01 Glenn Morris <rgm@gnu.org>
1179
1180 * files.el (dir-locals-collect-variables):
1181 Add the ability to exclude subdirectories. (Bug#8100)
1182
1183 * dired-x.el (dired-omit-here-always): Add `(subdirs . nil)' to locals.
1184
cead857b
CS
11852011-02-28 Christoph Scholtes <cschol2112@googlemail.com>
1186
1187 * ido.el (ido-everywhere): Doc fix.
1188 (ido-mode): Doc fix.
1189
0a906ec3
GM
11902011-02-28 Glenn Morris <rgm@gnu.org>
1191
1192 * dired-x.el (dired-guess-shell-alist-default): Use \\', not $.
1193
22b300de
MA
11942011-02-28 Michael Albinus <michael.albinus@gmx.de>
1195
1196 * net/tramp-cmds.el (tramp-append-tramp-buffers): Dump load-path
1197 shadows.
1198
abec5126 11992011-02-28 Antoine Levitt <antoine.levitt@gmail.com>
584a2773
AL
1200
1201 * dired-x.el (dired-guess-shell-alist-default): Add rar and 7z.
1202
ca3afb79
JB
12032011-02-28 Juanma Barranquero <lekktu@gmail.com>
1204
1205 * emacs-lisp/pcase.el (pcase, pcase--u1, pcase--q1):
1206 Fix typos in docstrings.
1207
edb57480
SB
12082011-02-28 Stephen Berman <stephen.berman@gmx.net>
1209
1210 * dired-aux.el (dired-update-file-line):
1211 Fix 2010-11-09 change. (Bug#8131)
1212
2b0c7330 12132011-02-28 Eli Zaretskii <eliz@gnu.org>
d1f61aaf
EZ
1214
1215 * international/mule-cmds.el (set-default-coding-systems): Use the
1216 -unix variant of encoding in default-keyboard-coding-system.
1217 (Bug#8122)
1218
df7f0d0b
CY
12192011-02-27 Chong Yidong <cyd@stupidchicken.com>
1220
1221 * facemenu.el (list-colors-display): Use with-help-window (Bug#8048).
1222
3e478a7c 12232011-02-27 Prestoo Ten <prestooten@gmail.com> (tiny change)
6c89f663
PT
1224
1225 * term/screen.el: New file (Bug#2650).
1226
1f0816b6
SM
12272011-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
1228
1229 * emacs-lisp/pcase.el (pcase--if): Try to invert test to reduce depth.
1230 (pcase-mutually-exclusive-predicates): New var.
1231 (pcase--split-consp, pcase--split-pred): Use it.
1232 (pcase--split-equal, pcase--split-member): When splitting against
1233 a pure predicate, run it to know the outcome.
1234 (pcase--u1): Mark vars that are actually used.
1235 (pcase--q1): Avoid introducing unused vars.
1236
b49df742
JB
12372011-02-27 Jay Belanger <jay.p.belanger@gmail.com>
1238
1239 * calc/calc-ext.el (calc-init-extensions):
1240 Autoload `calc-l-prefix-help' instead of `calc-ul-prefix-help'.
1241
1242 * calc/calc-math.el (calcFunc-log10): Don't signal an error in
1243 symbolic mode.
1244
1245 * calc/calc-vec.el (calcFunc-subscr): Return nil if the first
1246 argument is a variable.
1247
e573299d
SM
12482011-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
1249
1250 * emacs-lisp/assoc.el: Remove misleading `sort' (bug#8126).
1251 (aput, adelete, amake): Replace `eval' -> `symbol-value'.
1252 Suggested by Michael Heerdegen <michael_heerdegen@web.de>.
1253
61e9662e
TZ
12542011-02-25 Teodor Zlatanov <tzz@lifelogs.com>
1255
1256 * password-cache.el (password-in-cache-p): Convenience function to
1257 check if a key is in the cache, even if the value is nil.
1258
7fe42546
J
12592011-02-25 Jambunathan K <kjambunathan@gmail.com>
1260
1261 * emacs-lisp/package-x.el (package--archive-contents-from-url)
1262 (package--archive-contents-from-file): New functions.
1263 (package-update-news-on-upload): New var.
1264 (package-upload-buffer-internal): Extract archive-contents from
1265 package-archive-upload-base if it is not found at archive-url.
1266 Obey package-update-news-on-upload.
1267 (package-upload-buffer, package-upload-file): Doc fix.
1268
2d8a57ef
GM
12692011-02-24 Glenn Morris <rgm@gnu.org>
1270
6a88f031
GM
1271 * files-x.el (modify-dir-local-variable): Handle dir-locals from
1272 the cache, and from non-file sources.
1273
303f9ae0
GM
1274 * help-fns.el (describe-variable): Return consistent results when a
1275 dir-local from a file came from the cache or did not. (Bug#8095)
1276 If a dir-local has no associated file, say it came from a "directory".
1277
07915ed9
GM
1278 * files.el (hack-dir-local-variables): Fix setting of `dir-name'.
1279 (hack-local-variables-confirm, hack-local-variables-filter): Doc fix.
1280
ebe401f6
GM
1281 * files.el (dir-locals-find-file): Doc fix.
1282 Fix the check for cache elements that have no associated file,
303f9ae0 1283 and the mtime check for those that do. (Bug#8095)
ebe401f6 1284
b36f2f1c
GM
1285 * dired-x.el (dired-hack-local-variables):
1286 Handle interrupts during hacking local variables. (Bug#5216)
1287
2d8a57ef
GM
1288 * emacs-lisp/autoload.el (autoload-save-buffers)
1289 (autoload-find-destination, update-directory-autoloads):
1290 Avoid prompts when updating autoloads.
1291
53cfe624
SM
12922011-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
1293
1294 * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): Obsolete.
1295
c1449bff
KH
12962011-02-23 Kenichi Handa <handa@m17n.org>
1297
1298 * mail/rmailmm.el (rmail-mime-process-multipart): Do not signal an
1299 error when a multipart boundary in the nested multipart is found.
1300
251ebe0f
KH
1301 * mail/rmail.el (rmail-start-mail): Decode "encoded-words" of
1302 header components.
1303
5582c670
GM
13042011-02-23 Glenn Morris <rgm@gnu.org>
1305
817b48a7
GM
1306 * dired.el (dired-mode): Call hack-dir-local-variables-non-file-buffer.
1307 * dired-x.el (dired-omit-mode): Safe if boolean.
1308 (dired-enable-local-variables): Fix doc and custom type.
1309 (dired-enable-local-variables, dired-local-variables-file)
1310 (dired-hack-local-variables): Make obsolete.
1311 (dired-omit-here-always): Use dir-locals.el instead.
1312
5582c670
GM
1313 * files.el (safe-local-eval-forms): Add the write-file-hooks version.
1314
5f9d345c
SM
13152011-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
1316
1317 * help-fns.el (describe-function-1): Don't signal an error just because
1318 the DOC file disappeared.
1319
01c35094 13202011-02-22 Seppo Sade <sepposade1@gmail.com> (tiny change)
ca41d117
MA
1321
1322 * eshell/esh-ext.el (eshell-external-command): Do not restrict
1323 remote check to "ftp". (Bug#8089)
1324
e84efb70
AM
13252011-02-21 Alan Mackenzie <acm@muc.de>
1326
1327 Fix bug #7930.
1328 * progmodes/cc-engine.el (c-state-literal-at): Prevent positions
1329 in macros finding their way into c-state-nonlit-pos-cache.
1330 Strengthen the comments.
1331 (c-state-dump): New commented out diagnostic routine.
1332
c6309045
MA
13332011-02-21 Michael Albinus <michael.albinus@gmx.de>
1334
1335 * net/tramp.el (tramp-rfn-eshadow-setup-minibuffer): Do not use
1336 `field' property of `rfn-eshadow-overlay'.
1337
06b840e0
LI
13382011-02-21 Lars Ingebrigtsen <larsi@gnus.org>
1339
1340 * net/netrc.el (netrc-parse): Comment fix.
1341
6d713256
CY
13422011-02-21 Chong Yidong <cyd@stupidchicken.com>
1343
1344 * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
1345 Autoload. Add optional arg FRAME, and pass it to color-values.
1346 (color-complement): Caller changed. Doc fix.
1347 (color-gradient): Rewrite for better clarity and efficiency.
1348
1349 * faces.el (color-values): Use cond for clarity. Doc fix.
1350
5f9d345c 1351 * facemenu.el (color-rgb-to-hsv): Delete; use the version in
6d713256 1352 color.el instead.
5f9d345c
SM
1353 (list-colors-sort-key, list-colors-print):
1354 Use color-normalized-values.
6d713256
CY
1355
13562011-02-20 Drew Adams <drew.adams@oracle.com>
1357
1358 * color.el: First part of merge from hexrgb.el.
1359 (color-rgb-to-hex): Rename from color-rgb->hex.
1360 (color-rgb-to-hsv): Rename from color-rgb->hsv. Force hue and
1361 saturation to zero if the value is too small.
1362 (color-rgb-to-hsl): Rename from color-rgb->hsl.
1363 (color-srgb-to-xyz): Rename from color-srgb->xyz. Doc fix.
1364 (color-xyz-to-srgb): Rename from color-xyz->srgb. Doc fix.
1365 (color-xyz-to-lab): Rename from color-xyz->lab. Doc fix.
1366 (color-lab-to-xyz): Rename from color-lab->xyz. Doc fix.
1367 (color-lab-to-srgb): Rename from color-lab->srgb. Doc fix.
1368 (color-cie-de2000): Doc fix.
1369
aa9c0efc
AM
13702011-02-20 Alan Mackenzie <acm@muc.de>
1371
1372 * progmodes/cc-cmds.el (c-beginning-of-statement): Avoid loop in
1373 locating the beginning of a macro. (Bug#7595)
1374
18cfb5a1
GM
13752011-02-20 Glenn Morris <rgm@gnu.org>
1376
e17816e5
GM
1377 * edmacro.el (edmacro-eight-bits): Make it a defcustom.
1378 Don't autoload it.
1379
18cfb5a1
GM
1380 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
1381 (global-auto-revert-ignore-buffer): Remove leading "*" from docs.
1382
01c35094
JB
13832011-02-19 Dmitry Bolshakov <dmitry.bolshakov@bridge-quest.com>
1384 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
a87af185
DB
1385
1386 * progmodes/hideshow.el (hs-find-block-beginning)
1387 (hs-hide-level-recursive): Ignore comments when parsing braces
1388 (Bug#8036).
1389
13902011-02-19 Chong Yidong <cyd@stupidchicken.com>
1391
1392 * vc/vc-bzr.el (vc-bzr-bound-branch-p): New function.
1393 (vc-bzr-pull): Use it.
1394
3ab713fd
CY
13952011-02-19 Chong Yidong <cyd@stupidchicken.com>
1396
1397 * vc/vc-bzr.el (vc-bzr--branch-conf): Function deleted.
1398 (vc-bzr-branch-conf): New function, similar to vc-bzr--branch-conf
1399 but returning an alist. Ignore comments in bzr conffile.
1400 (vc-bzr-pull, vc-bzr-merge-branch): Use vc-bzr-branch-conf.
1401 (vc-bzr-error-regex-alist): New var.
1402 (vc-bzr-merge-branch): Use it to highlight the pull/merge buffer.
1403
5f9d345c
SM
1404 * vc/vc-dispatcher.el (vc-do-async-command):
1405 Bind inhibit-read-only to t.
3ab713fd
CY
1406
1407 * progmodes/compile.el (compilation--flush-directory-cache):
1408 Handle the case where cdr of compilation--flush-directory-cache
1409 points to no buffer, which can occur if we previously switched to
1410 compilation-mode in a pregenerated buffer.
1411
16bc9688
KH
14122011-02-19 Kenichi Handa <handa@m17n.org>
1413
1414 * mail/rmailmm.el (rmail-mime-find-header-encoding): Be sure to
1415 get the header copy into the temporary buffer.
1416 (rmail-mime-insert-decoded-text): Ignore us-ascii.
1417 (rmail-show-mime): When rmail-mime-coding-system is nil, set
1418 buffer-file-coding-system to undecided.
1419
67ab0163 14202011-02-19 Eli Zaretskii <eliz@gnu.org>
61aa93ed 1421
a167e505
EZ
1422 * international/mule-cmds.el (read-char-by-name, ucs-insert):
1423 Document completion with asterisk and a substring.
1424
67ab0163 14252011-02-19 Glenn Morris <rgm@gnu.org>
72d6685c
GM
1426
1427 * files.el (find-file-literally): Doc fix.
1428
41002397
GM
1429 * simple.el (rfc822-goto-eoh): Give it a doc-string.
1430
b8bd9908
GM
1431 * log-edit.el (log-edit-insert-changelog):
1432 Fix `log-edit-strip-single-file-name' functionality. (Bug#8057)
1433
4d737eb2
GM
14342011-02-19 Glenn Morris <rgm@gnu.org>
1435
cad7445b
GM
1436 * dired-x.el: Don't require dired-aux.
1437 (dired-do-create-files, dired-mark-read-regexp)
1438 (dired-do-create-files-regexp): Autoload from dired-aux.
1439
bea584fa
GM
1440 * dired-x.el (dired-find-buffer-nocreate): Merge into dired.el.
1441 * dired.el (dired-find-buffer-nocreate): Merge dired-x version.
1442
d6e96966
GM
1443 * dired-x.el (dired-read-shell-command): Merge into dired-aux's version.
1444 * dired-aux.el (dired-read-shell-command): Merge dired-x's version.
1445
42924231
GM
1446 * dired-x.el (dired-clean-up-after-deletion): Merge into dired.el.
1447 * dired.el (dired-clean-up-after-deletion): Merge dired-x's version.
1448 (dired-clean-up-buffers-too): Declare.
1449
203784cc
GM
1450 * dired-x.el (dired-initial-position): Merge into dired.el's version.
1451 * dired.el (dired-initial-position): Merge dired-x's version here.
1452 (dired-find-subdir): Declare.
1453
30abce25
GM
1454 * dired-x.el (dired-omit-new-add-entry): Merge into dired-add-entry.
1455 * dired-aux.el (dired-add-entry): Give it a doc-string.
1456 Merge dired-x's dired-omit handling here.
1457 (dired-omit-mode, dired-omit-regexp, dired-omit-localp): Declare.
1458
4d737eb2
GM
1459 * international/mule-diag.el (list-input-methods-1):
1460 Indent all lines of multi-line doc-strings. (Bug#8066)
1461
abd20d91
CY
14622011-02-18 Chong Yidong <cyd@stupidchicken.com>
1463
1464 Fix 2011-02-02 changes.
1465
1466 * apropos.el (apropos-print): Call apropos-mode before setting up
1467 buffer variables. Use inhibit-read-only.
1468
5f9d345c
SM
1469 * emacs-lisp/package.el (package--list-packages):
1470 Call package-menu-mode before setting up buffer variables.
abd20d91
CY
1471
1472 * play/solitaire.el (solitaire): Call solitaire-mode before
1473 setting up buffer variables. Use inhibit-read-only.
1474
e697fcfc
LM
14752011-02-18 Lawrence Mitchell <wence@gmx.li>
1476
1477 * progmodes/sh-script.el (sh-syntax-propertize-here-doc): (bug#8053)
1478 Bind case-fold-search to nil when looking for end of here-doc.
1479
4114ed61
EZ
14802011-02-18 Eli Zaretskii <eliz@gnu.org>
1481
e697fcfc
LM
1482 * image-mode.el (image-toggle-display-image):
1483 Set find-file-literally non-nil in buffers visiting binary image
4114ed61
EZ
1484 files. (Bug#8047)
1485
aa56f361
SM
14862011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1487
1488 * files.el (cd): Make completion obey cd-path (bug#7924).
1489
d1be20a1
GM
14902011-02-18 Glenn Morris <rgm@gnu.org>
1491
135dee55
GM
1492 * progmodes/prolog.el: Don't require compile when compiling.
1493 (compilation-shell-minor-mode, compilation-error-regexp-alist)
1494 (compilation-forget-errors, compilation-fake-loc)
1495 (compilation-parse-errors-function, compilation-error-list): Declare.
1496 (prolog-inferior-mode): Require 'compile.
1497
15e0d5a1
GM
1498 * emulation/cua-base.el (pc-selection-mode): Declare.
1499
002b46b7
GM
1500 * emacs-lisp/eieio-custom.el: Set generated-autoload-file.
1501 (customize-object): Add autoload cookie.
1502 * emacs-lisp/eieio-opt.el: Set generated-autoload-file.
1503 (eieio-browse, describe-class, eieio-describe-class)
1504 (eieio-describe-constructor, describe-generic, eieio-describe-generic)
1505 (eieio-help-mode-augmentation-maybee): Add autoload cookies.
1506 * emacs-lisp/eieio.el: Regenerate with automatic autoloads.
1507 * Makefile.in (autoloads): Make eieio.el writable.
1508
d1be20a1
GM
1509 * dired-x.el (dired-clean-up-after-deletion, dired-do-relsymlink)
1510 (dired-do-relsymlink-regexp, dired-find-buffer-nocreate): Use #'.
1511 (dired-hack-local-variables): Use inhibit-read-only.
1512 (dired-guess-default): Simplify.
1513 (dired-make-relative-symlink): Use dotimes.
1514 (dired-simultaneous-find-file): Use dolist.
1515 (dired-mark-sexp): Remove unneeded `if'. Use line-end-position.
1516 (dired-x-hands-off-my-keys): Doc fix.
1517 (dired-x-bind-find-file): Doc fix. Use remapping.
1518 (after-init-hook): No need to add dired-x-bind-find-file.
1519 (dired-x-find-file, dired-x-find-file-other-window): Doc fixes.
1520 No need to call expand-file-name.
1521 (dired-filename-at-point): Remove unused locals `end', `filename'.
1522
f9d554dd
SM
15232011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1524
1525 * emacs-lisp/pcase.el (pcase--u1): Understand non-linear patterns.
1526
5da16a86
CO
15272011-02-18 Christian Ohler <ohler@gnu.org>
1528
1529 * emacs-lisp/ert.el (ert--setup-results-buffer)
1530 (ert-results-pop-to-backtrace-for-test-at-point)
1531 (ert-results-pop-to-messages-for-test-at-point)
1532 (ert-results-pop-to-should-forms-for-test-at-point)
1533 (ert-results-pop-to-timings): Revert parts of change 2011-02-02T17:59:44Z!sds@gnu.org that
1534 were incorrect and unnecessary. This should make `make check'
1535 pass again.
1536
3a00a363
KM
15372011-02-17 Ken Manheimer <ken.manheimer@gmail.com>
1538
01c35094 1539 * lisp/allout-widgets.el (allout-widgets-icons-light-subdir)
219bd536 1540 (allout-widgets-icons-dark-subdir): Track relocations of icons.
3a00a363
KM
1541 * lisp/allout.el: Remove commentary about remove encryption
1542 passphrase mnemonic support and verification.
01c35094
JB
1543 (allout-encrypt-string): Recognize epg failure to decrypt gpg2
1544 armored text using gpg1, and indicate that the gpg version *might*
1545 be the problem in the error message.
3a00a363 1546
73057ba9
DD
15472011-02-17 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1548
1549 * net/rcirc.el (rcirc-float-time): New function.
1550 (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE)
1551 (rcirc-ctcp-sender-PING): Use it.
1552
8551cb32
GM
15532011-02-17 Glenn Morris <rgm@gnu.org>
1554
53ef76c7
GM
1555 * speedbar.el (speedbar-ignored-modes, speedbar-file-unshown-regexp)
1556 (speedbar-update-flag, speedbar-fetch-etags-command)
1557 (speedbar-fetch-etags-arguments):
1558 * term.el (term-buffer-maximum-size, term-input-chunk-size)
1559 (term-completion-autolist, term-completion-addsuffix)
1560 (term-completion-recexact, term-completion-fignore):
1561 * term/sup-mouse.el (sup-mouse-fast-select-window):
1562 * term/x-win.el (x-select-request-type):
1563 Convert some defvars with "*" to defcustoms.
1564
64a14c74
GM
1565 * shell.el (shell-delimiter-argument-list): Set it to nil. (Bug#8027)
1566
92e39d6f
GM
1567 * vc/vc.el (vc-default-previous-version):
1568 Remove alias that points nowhere. (Bug#4496)
1569
fc14288b
GM
1570 * dired-x.el (dired-clean-up-after-deletion):
1571 kill-buffer does not need save-excursion.
1572 (dired-do-run-mail): Doc fix.
1573 (dired-filename-at-point): Doc fix.
1574 Use looking-at, and skip-chars rather than re search.
1575
8551cb32
GM
1576 * dired-x.el (dired-filename-at-point): Fix 8-year old typo.
1577
96497653
KM
15782011-02-16 Ken Manheimer <ken.manheimer@gmail.com>
1579
aac7a935
KM
1580 * allout-widgets.el: New allout extension that shows allout
1581 outline structure with graphical widgets. 'allout-widgets'
1582 customize group is an 'allout' subgroup, for easy discovery.
1583
96497653
KM
1584 * allout.el: Include PGP and GnuPG in Keywords, and other
1585 commentary refinements.
1586 (allout-abbreviate-flattened-numbering): Rename to
1587 allout-flattened-numbering-abbreviation, and
1588 define-obsolete-variable-alias the old name.
1589 (allout-flattened-numbering-abbreviation): Rename from
1590 allout-abbreviate-flattened-numbering.
1591 (allout-mode-p): Include among autoloads, for use by other modes
1592 with impunity.
e697fcfc
LM
1593 (allout-listify-exposed):
1594 Use allout-flattened-numbering-abbreviation.
96497653
KM
1595 (allout-encrypt-string): Use set-buffer-multibyte directly.
1596 (allout-set-buffer-multibyte): Remove.
1597
be4a1d71
DD
15982011-02-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1599
1600 * simple.el (just-one-space): Remove useless `or' call.
1601
274c2d34
MA
16022011-02-16 Alex Harsanyi <AlexHarsanyi@gmail.com>
1603
c6309045 1604 * net/soap-client.el (soap-well-known-xmlns, soap-local-xmlns)
274c2d34
MA
1605 (soap-default-xmlns, soap-target-xmlns, soap-multi-refs)
1606 (soap-decoded-multi-refs, soap-current-wsdl)
1607 (soap-encoded-namespaces): Rename CL-style *...* variables.
1608
88ae2870
MA
16092011-02-16 Michael Albinus <michael.albinus@gmx.de>
1610
1611 * net/soap-client.el: Add "comm" and "hypermedia" to the
1612 keywords. Reflow too long lines.
1613
1614 * net/soap-inspect.el: Ditto. Require 'cl.
1615
689743a2
BG
16162011-02-16 Bastien Guerry <bzg@altern.org>
1617
1618 * play/doctor.el (doctor-mode): Bugfix: escape the "," character
1619 in a `doctor-type' argument.
1620
16d2ff89
MA
16212011-02-16 Alex Harsanyi <AlexHarsanyi@gmail.com>
1622
1623 * net/soap-client.el:
1624 * net/soap-inspect.el: New files.
1625
c6cefd36
LL
16262011-02-16 Leo <sdl.web@gmail.com>
1627
1628 * dired-x.el (dired-mode-map, dired-extra-startup):
1629 Remove dired-copy-filename-as-kill since it's already in dired.el.
1630
da5e0ce4
GM
16312011-02-16 Glenn Morris <rgm@gnu.org>
1632
1633 * dired-x.el (dired-bind-jump, dired-bind-man, dired-bind-info):
1634 Doc fixes. Add :set property, replacing top-level calls.
1635 (dired-vm-read-only-folders, dired-vm): Doc fix (drop v. old VM 4).
1636 (dired-guess-shell-gnutar): Test tar version rather than system-type.
1637 (dired-extra-startup, dired-man, dired-info): Doc fixes.
1638 (dired-clean-up-after-deletion): Use when and dolist.
1639 (dired-jump): Use unless and when.
1640 (dired-virtual): Use line-end-position.
1641 (dired-default-directory-alist): Rename from default-directory-alist.
1642 (dired-default-directory): Update for above name change.
1643 (dired-vm): Drop VM < 5 and simplify.
1644 (dired-buffer-more-recently-used-p): Rewrite.
1645 (dired-filename-at-point): Use when and or.
1646 (dired-x-read-filename-at-point): Rename from read-filename-at-point.
1647 Update callers.
1648
c5ca3aa0
GM
16492011-02-15 Glenn Morris <rgm@gnu.org>
1650
1651 * dired-x.el: Use easymenu for menu items. Fix item capitalization.
1652
33f6cf7b
CY
16532011-02-14 Chong Yidong <cyd@stupidchicken.com>
1654
1655 * vc/vc-git.el (vc-git-root-log-format): New option for
1656 customizing log format.
1657 (vc-git-print-log, vc-git-log-outgoing, vc-git-log-incoming)
1658 (vc-git-log-view-mode): Use it.
1659 (vc-git-expanded-log-entry): New function.
1660 (vc-git-log-view-mode): Use it. Truncate lines in root log.
1661
1662 * vc/vc-hg.el (vc-hg-root-log-template): New option for
1663 customizing log format.
1664 (vc-hg-print-log): Use it.
1665 (vc-hg-expanded-log-entry): New function.
1666 (vc-hg-log-view-mode): Use vc-hg-root-log-template and
1667 vc-hg-expanded-log-entry. Truncate lines in root log.
1668
1669 * vc/vc-bzr.el (vc-bzr-log-view-mode): Truncate lines in root log.
1670
e697fcfc
LM
1671 * vc/log-view.el (log-view-mode-menu):
1672 Add log-view-toggle-entry-display.
33f6cf7b 1673
461b69ae
GM
16742011-02-14 Glenn Morris <rgm@gnu.org>
1675
1676 * dired-x.el: Don't require man when compiling.
1677 (dired-omit-extensions, dired-local-variables-file)
1678 (dired-x-hands-off-my-keys): Make them defcustoms.
1679 (Man-support-local-filenames, Man-getpage-in-background): Declare.
1680 (vm-visit-folder): Declare rather than defining.
1681 (dired-x-help-address, dired-x-variable-list): Remove.
1682 (dired-x-submit-report): Make it an obsolete alias.
1683
35f52ed6
JB
16842011-02-14 Juanma Barranquero <lekktu@gmail.com>
1685
1686 * makefile.w32-in (TRAMP_SRC): Remove tramp-imap.el.
1687
b2108a36
TZ
16882011-02-13 Teodor Zlatanov <tzz@lifelogs.com>
1689
67186ae2 1690 * net/imap.el: Bring it back.
b2108a36 1691
abfc152b
AM
16922011-02-13 Alan Mackenzie <acm@muc.de>
1693
1694 * progmodes/cc-fonts.el (c-font-lock-declarations): Remove a
1695 narrow-to-region call that cuts context off the end (Bug#7722).
1696
e697fcfc
LM
1697 * progmodes/cc-engine.el (c-forward-<>-arglist-recur):
1698 Refactor nested if-forms with a simple cond.
abfc152b
AM
1699 (c-forward-<>-arglist): Revert 2011-01-31 change.
1700
d4eb88c7
CY
17012011-02-13 Chong Yidong <cyd@stupidchicken.com>
1702
1703 * vc/log-view.el: New command log-view-toggle-entry-display for
1704 toggling log entries between concise and detailed forms.
1705 (log-view-toggle-entry-display): New command.
1706 (log-view-mode-map): Bind RET to it.
1707 (log-view-expanded-log-entry-function): New variable.
1708 (log-view-current-entry, log-view-inside-comment-p)
1709 (log-view-current-tag): New functions.
1710 (log-view-toggle-mark-entry): Use log-view-current-entry and
1711 log-view-end-of-defun instead of searching directly with
1712 log-view-message-re.
1713 (log-view-end-of-defun): Likewise. Add optional ARG for
1714 compatibility with end-of-defun.
1715 (log-view-end-of-defun): Ignore comments and VC buttons.
1716
1717 * vc/vc-bzr.el (vc-bzr-expanded-log-entry): New function.
1718 (vc-bzr-log-view-mode): Use log-view-expanded-log-entry-function.
1719
2609a08e
TZ
17202011-02-13 Teodor Zlatanov <tzz@lifelogs.com>
1721
114fe546
G
1722 * net/imap.el: Remove file. All the functionality is in nnimap.el.
1723
2609a08e
TZ
1724 * net/imap-hash.el: Remove file.
1725
7a6ebb1a
MA
17262011-02-13 Michael Albinus <michael.albinus@gmx.de>
1727
1728 * Makefile.in (TRAMP_SRC): Remove tramp-imap.el.
1729
1730 * net/tramp.el (tramp-read-passwd): Simplify `auth-source-search'
1731 call.
1732
1733 * net/tramp-imap.el: Remove file.
1734
75d4dcc9
CY
17352011-02-13 Chong Yidong <cyd@stupidchicken.com>
1736
1737 * vc/vc.el (vc-print-log-setup-buttons): Instead of using the
1738 widget library for buttons, just use button.el.
1739
1740 * vc/log-view.el (log-view-mode-map): Don't inherit from
1741 widget-keymap.
1742
3c65e88d 17432011-02-12 Glenn Morris <rgm@gnu.org>
dc4c6a7a 1744
86361e1e
GM
1745 * emacs-lisp/cl-seq.el (union, nunion, intersection)
1746 (nintersection, set-difference, nset-difference)
1747 (set-exclusive-or, nset-exclusive-or): Doc fix.
1748
dc4c6a7a
GM
1749 * ediff-ptch.el (ediff-fixup-patch-map): Doc fix.
1750
8a6f24e5
GM
1751 * faces.el (face-attr-match-p): Handle the obsolete :bold and
1752 :italic props, so that frame-set-background-mode works. (Bug#7966)
1753
3caced0b
GM
1754 * simple.el (next-error): Doc fix.
1755
9de31df2
TV
17562011-02-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1757
1758 * dired-aux.el (dired-create-files): Adapt destination name to
1759 match the new behavior of copy-directory.
1760
38a71655
CY
17612011-02-12 Chong Yidong <cyd@stupidchicken.com>
1762
1763 * mail/mail-utils.el (mail-dont-reply-to-names): New variable,
1764 from rmail-dont-reply-to-names. Callers changed.
1765 (mail-dont-reply-to): Rename from mail-dont-reply-to.
1766 (rmail-dont-reply-to): Make it an obsolete alias.
1767
1768 * mail/rmail.el (rmail-default-dont-reply-to-names): Default to
1769 nil, and make obsolete (Bug#7888).
1770 (rmail-dont-reply-to-names): Alias to mail-dont-reply-to-names.
1771
1772 * mail/rmailsum.el (rmail-summary-sort-by-correspondent): Doc fix.
1773
1774 * mail/rmailsort.el (rmail-sort-by-correspondent)
1775 (rmail-select-correspondent): Doc fix. Use mail-dont-reply-to.
1776
1777 * mail/rmail.el (rmail-reply): Use mail-dont-reply-to.
1778
470d996d
TV
17792011-02-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1780
1781 * files.el (copy-directory): New argument COPY-CONTENTS for
1782 copying directory contents into another existing directory.
1783
e2784c87
TH
17842011-02-12 Tassilo Horn <tassilo@member.fsf.org>
1785
1786 * minibuffer.el (completion-table-case-fold): New function for
1787 creating a case-insensitive completion table.
1788
563790b6
TZ
17892011-02-12 Teodor Zlatanov <tzz@lifelogs.com>
1790
1791 * net/tramp.el (tramp-default-method): Also check if
1792 `auth-source-search' is bound.
1793 (tramp-read-passwd): Use `auth-source-search' instead of
1794 `auto-source-user-or-password'.
1795
1796 * net/tramp-imap.el: Autoload `auto-source-search' instead of
1797 `auto-source-user-or-password.
1798 (tramp-imap-passphrase-callback-function): Use it.
1799
1800 * net/imap-hash.el: Autoload `auto-source-search' instead of
1801 `auto-source-user-or-password.
1802 (imap-hash-open-connection): Use it.
1803
1804 * mail/smtpmail.el: Autoload `auto-source-search' instead of
1805 `auto-source-user-or-password.
1806 (smtpmail-try-auth-methods): Use it.
1807
c6affbde
PH
18082011-02-12 Phil Hagelberg <phil@hagelb.org>
1809
1810 * emacs-lisp/package.el: Allow packages to be reinstalled.
1811 (package--write-file-no-coding): Remove EXCL arg.
1812 (package-unpack-single): Don't use it.
1813
b5a53795
KP
18142011-02-12 Karl Pflästerer <k@rl.pflaesterer.de> (tiny change)
1815
1816 * vc/vc-svn.el: Adapt to Subversion change, with no .svn directory
1817 in each sub directory.
1818 (vc-svn-registered): Use vc-svn-root.
1819 (vc-svn-root): New function. Make vc-svn-responsible-p an alias.
1820 (vc-svn-repository-hostname): Use "svn info".
1821
25833f5e
DD
18222011-02-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1823
1824 * simple.el (delete-trailing-whitespace): New optional buffer
1825 bound parameters.
1826
75d1d833
BG
18272011-02-11 Bastien Guerry <bzg@altern.org>
1828
1829 * files.el (basic-save-buffer): save unmodified buffers when
1830 the file pointed by buffer-file-name doesn't exist.
1831
e0e36cac
DD
18322011-02-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1833
079721e9 1834 * net/rcirc.el (rcirc-cmd-join): Accept multiple channels.
e0e36cac 1835
59350862
GM
18362011-02-11 Glenn Morris <rgm@gnu.org>
1837
1838 * emacs-lisp/cl-specs.el (multiple-value-bind): Fix debug spec.
1839
5708ce5e
JB
18402011-02-11 Juanma Barranquero <lekktu@gmail.com>
1841
1842 * net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
1843
b016851c
SM
18442011-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
1845
59003be9
SM
1846 * server.el (server-process-filter): Use pcase.
1847
9517f8af
SM
1848 * emacs-lisp/smie.el (smie-blink-matching-open): Don't use `pos' in two
1849 conflicting ways.
1850 (smie-indent--parent): Extend to "parent of arg".
1851 (smie-indent-inside-string): New function.
1852 (smie-indent-functions): Use it.
1853
cf77dd27
SM
1854 * vc/vc-dir.el (vc-dir-refresh): Reorder operations to try and avoid
1855 bzr locking race condition.
1856
49ffc078
SM
1857 * emacs-lisp/edebug.el (edebug-instrument-function): Check a marker is
1858 still valid before using it.
1859
1a0a6cef
SM
1860 * progmodes/grep.el (grep-mode-font-lock-keywords): Adjust to
1861 `message' -> `compilation-message' rename (bug#8004).
1862
b016851c
SM
1863 Move keymap initialization into declaration.
1864 * textmodes/enriched.el (enriched-mode-map):
1865 * textmodes/bib-mode.el (bib-mode-map):
1866 * term/lk201.el (lk201-function-map):
1867 * tar-mode.el (tar-mode-map):
1868 * replace.el (occur-mode-map):
1869 * progmodes/idlwave.el (idlwave-rinfo-mouse-map, idlwave-rinfo-map):
1870 * progmodes/idlw-help.el (idlwave-help-mode-map):
1871 * progmodes/gdb-mi.el (gdb-memory-format-menu, gdb-memory-unit-menu):
1872 * play/solitaire.el (solitaire-mode-map):
1873 * play/snake.el (snake-mode-map, snake-null-map):
1874 * play/pong.el (pong-mode-map):
1875 * play/handwrite.el (menu-bar-handwrite-map):
1876 * play/gametree.el (gametree-mode-map):
a65112fb 1877 * net/rcirc.el (rcirc-mode-map, rcirc-browse-url-map)
b016851c
SM
1878 (rcirc-multiline-minor-mode-map, rcirc-track-minor-mode-map):
1879 * net/newst-plainview.el (newsticker-menu, newsticker-mode-map)
1880 (newsticker--url-keymap):
1881 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
1882 * menu-bar.el (menu-bar-file-menu, menu-bar-i-search-menu)
1883 (menu-bar-search-menu, menu-bar-replace-menu, menu-bar-goto-menu)
1884 (menu-bar-edit-menu, menu-bar-custom-menu)
1885 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
1886 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
1887 (menu-bar-line-wrapping-menu, menu-bar-options-menu)
1888 (menu-bar-games-menu, menu-bar-encryption-decryption-menu)
1889 (menu-bar-tools-menu, menu-bar-describe-menu)
1890 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
1891 (menu-bar-help-menu):
1892 * mail/rmailsum.el (rmail-summary-mode-map):
1893 * kmacro.el (kmacro-step-edit-map):
1894 * ibuffer.el (ibuffer-mode-groups-popup, ibuffer-mode-map)
1895 (ibuffer-mode-operate-map):
1896 * hi-lock.el (hi-lock-menu, hi-lock-map):
1897 * emulation/vip.el (vip-mode-map):
1898 * emacs-lisp/re-builder.el (reb-lisp-mode-map):
1899 * bookmark.el (bookmark-bmenu-mode-map):
1900 * help-mode.el (help-mode-map): Move initialization into declaration.
1901
1be1d1e9
DD
19022011-02-10 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1903
1904 * net/rcirc.el: Add PRIVMSG and CTCP functions.
1905 (rcirc-send-privmsg, rcirc-send-ctcp): New functions.
1906 (rcirc-keepalive, rcirc-cmd-ctcp, rcirc-ctcp-sender-PING)
1907 (rcirc-cmd-me, rcirc-authenticate): Use them.
1908
26d2a9bd
KM
19092011-02-10 Ken Manheimer <ken.manheimer@gmail.com>
1910
1911 * allout.el: Synopsis: Change allout user configuration so
1912 auto-activation is controlled solely by customization
1913 `allout-auto-activation'.
1914
01c35094 1915 (allout-auto-activation-helper, allout-setup): New autoloads
26d2a9bd 1916 implement new custom set procedure for allout-auto-activation.
219bd536
JB
1917 Also, explicitly invoke (allout-setup) after allout-auto-activation
1918 is custom-defined, to affect the settings in emacs sessions besides
1919 the few where allout-auto-activation customization is done.
26d2a9bd
KM
1920 (allout-auto-activation): Use allout-auto-activation-helper to
1921 :set. Revise the docstring.
1922 (allout-init): Reduce functionality to just customizing
1923 allout-auto-activation, and mark obsolete.
1924 (allout-mode): Respect string values for allout-auto-activation.
1925 Run allout-after-copy-or-kill-hook without any args.
01c35094 1926 (allout-mode, allout-layout, allout-default-layout)
26d2a9bd
KM
1927 (outlineify-sticky): Adjust docstring for new scheme.
1928 (allout-after-copy-or-kill-hook): No arguments - hook implementers
1929 should concentrate on the kill ring.
1930
b8e0f0cd
G
19312011-02-09 Teodor Zlatanov <tzz@lifelogs.com>
1932
1933 * password-cache.el (password-cache-remove): Accept secrets that are
1934 not strings.
1935
ccded26c
SM
19362011-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
1937
1938 * progmodes/sh-script.el (sh-font-lock-open-heredoc): Fix case
1939 of here-doc that immediately follows a comment.
1940
ee6a57ab
DD
19412011-02-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1942
4d04fdc9
DD
1943 * net/rcirc.el (rcirc-ctcp-sender-PING): Simplifying.
1944
ee6a57ab
DD
1945 * net/rcirc.el (rcirc-cmd-ctcp): Use dedicated function when
1946 available.
1947 (rcirc-ctcp-sender-PING): New function.
1948
6ca94a0b
SM
19492011-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1950
1951 * obsolete/pc-select.el: Rename from emulation/pc-select.el (bug#7940).
1952 Remove the mark/nomark handling, and activate shift-select-mode instead.
1953
1954 * obsolete/pc-mode.el: Rename from emulation/pc-mode.el.
1955
226590f8
JB
19562011-02-07 Jay Belanger <jay.p.belanger@gmail.com>
1957
1958 * calc/calc-units.el (math-logunits-quant): Add support for
1959 non-logarithmic units.
1960
dd0b691e
KM
19612011-02-07 Ken Manheimer <ken.manheimer@gmail.com>
1962
4ec28e14
KM
1963 * allout.el (allout-after-copy-or-kill-hook): New hook for
1964 extension-specific processing of killed text.
1965 (allout-mode): Include new allout-after-copy-or-kill-hook among
1966 mentioned hooks.
01c35094 1967 (allout-kill-line, allout-kill-topic): Ensure that processing
4ec28e14
KM
1968 after kill happens even if barf-if-buffer-read-only is raised.
1969 Include new allout-after-copy-or-kill-hook among that subsequent
1970 processing.
1971 (allout-deannotate-hidden): Actually remove the annotation text
1972 properties.
1973
dd0b691e
KM
1974 * allout.el (allout-listify-exposed): Copy text sans text properties.
1975
07e52e08
MA
19762011-02-07 Michael Albinus <michael.albinus@gmx.de>
1977
b016851c 1978 * net/dbus.el (dbus-list-activatable-names): Add optional argument BUS.
07e52e08 1979
c5aff743
DD
19802011-02-07 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1981
1982 * net/rcirc.el (rcirc-handler-317): New function (Bug#6507).
1983
03925868
JB
19842011-02-06 Jay Belanger <jay.p.belanger@gmail.com>
1985
b016851c 1986 * calc/calc.el (calc-logunits-field-reference): Rename from
03925868 1987 `calc-default-field-reference-level'.
b016851c 1988 (calc-logunits-power-reference): Rename from
01c35094 1989 `calc-default-power-reference-level'.
03925868 1990
b016851c 1991 * calc/calc-units.el (math-logunits-quant): Rename from
03925868 1992 `math-logunits-level'
b016851c 1993 (math-logunits-plus): Rename from math-logcombine.
03925868 1994 (calcFunc-luplus, calcFunc-luminus calc-luplus, calc-luminus): Remove.
ec6ad6f2 1995 (calcFunc-lufieldadd, calcFunc-lupoweradd, calcFunc-lufieldsub)
01c35094 1996 (calcFunc-lufieldsub, calc-logunits-add, calc-logunits-sub):
03925868 1997 New functions.
b016851c
SM
1998 (calcFunc-fieldquant): Rename from `calcFunc-fieldlevel'.
1999 (calcFunc-powerquant): Rename from `calcFunc-powerlevel'.
2000 (calc-logunits-quantity): Rename from `calc-level'.
03925868 2001 (calcFunc-dbfieldlevel, calcFunc-dbpowerlevel, calcFunc-npfieldlevel)
01c35094 2002 (calcFunc-nppowerlevel, calc-logunits-dblevel, calc-logunits-nplevel)
ec6ad6f2
JB
2003 (math-logunits-mul, calcFunc-lufieldmul, calcFunc-lupowermul)
2004 (calc-logunits-mul, math-logunits-divide, calcFunc-lufielddiv)
01c35094 2005 (calcFunc-lupowerdiv, calc-logunits-divide, math-logunits-level):
03925868
JB
2006 New functions.
2007
b016851c 2008 * calc/calc-help.el (calc-u-prefix-help): Remove "L" reference.
03925868
JB
2009 (calc-ul-prefix-help): Remove.
2010 (calc-l-prefix-help): New function.
2011 (calc-full-help): Add reference to `calc-l-prefix-help'.
2012
2013 * calc/calc-ext.el (calc-init-extensions): Update autoloads.
2014
ec6ad6f2
JB
2015 * calc/README: Mention logarithmic units.
2016
f8b351c1
CY
20172011-02-06 Chong Yidong <cyd@stupidchicken.com>
2018
2019 * mail/emacsbug.el (report-emacs-bug-hook): Remove the check for
2020 non-ASCII characters (Bug#7925).
2021
a60287ff
GM
20222011-02-05 Glenn Morris <rgm@gnu.org>
2023
2024 * emacs-lisp/cl-macs.el (return-from): Fix doc typo.
2025
9ad53e98
GM
2026 * calendar/diary-lib.el (diary-font-lock-keywords):
2027 Tweak diary-time-regexp match. (Bug#7891)
2028
9783df21
GM
2029 * progmodes/f90.el (f90-find-tag-default): New function. (Bug#7919)
2030 (f90-mode): Use it for mode's `find-tag-default-function' property.
2031
df275851
GM
2032 * ibuf-ext.el (ibuffer-filter-disable): Make it work. (Bug#7969)
2033
95838641
GM
2034 * faces.el (set-face-attribute): Doc fix. (Bug#2659)
2035
827b77e9
DD
20362011-02-05 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2037
2038 * net/rcirc.el (rcirc-handler-JOIN): Reset mode-line-process
2039 (Bug#6386).
2040
7cb76591
SM
20412011-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
2042
ba70ab1c
SM
2043 * progmodes/sh-script.el (sh-here-doc-open-re): Don't rely on the
2044 font-lock-syntax-table remappings.
2045 (sh-here-doc-markers, sh-here-doc-re): Remove.
2046 (sh-font-lock-close-heredoc): Remove.
2047 (sh-syntax-propertize-here-doc): New function.
2048 (sh-font-lock-open-heredoc): Set the sh-here-doc-marker property
2049 instead of the sh-here-doc-re.
2050 (sh-font-lock-paren): Don't do anything in comments or strings.
2051 Handle line continuations. Accept a few more chars.
2052 Don't rely on the font-lock-syntax-table remappings.
2053 `esac' is not a valid pattern.
2054 (sh-syntax-propertize-function): Handle here-docs differently, so we
2055 don't bother syntax-propertizing the insides.
2056
7cb76591
SM
2057 * progmodes/sh-script.el (sh-font-lock-paren, sh-kw, sh-prev-thing):
2058 Handle new bashisms ";&" and ";;&" (bug#7947).
2059
39b20f56
MA
20602011-02-05 Michael Albinus <michael.albinus@gmx.de>
2061
7cb76591
SM
2062 * net/tramp-smb.el (tramp-smb-errors): Use `regexp-opt'.
2063 Add "NT_STATUS_IO_TIMEOUT" and "NT_STATUS_NO_SUCH_USER".
39b20f56 2064
51aba3f3
MA
20652011-02-05 Era Eriksson <era+tramp@iki.fi> (tiny change)
2066
2067 * net/tramp.el (tramp-postfix-method-format)
2068 (tramp-postfix-method-regexp, tramp-prefix-domain-format)
2069 (tramp-prefix-domain-regexp, tramp-postfix-user-format)
2070 (tramp-postfix-user-regexp, tramp-prefix-port-format)
2071 (tramp-prefix-port-regexp, tramp-postfix-host-format)
2072 (tramp-postfix-host-regexp, tramp-handle-substitute-in-file-name):
2073 Doc fix.
2074
7bc61bb7
SS
20752011-02-04 Sam Steingold <sds@gnu.org>
2076
2077 * mouse.el (mouse-buffer-menu-mode-groups): Add a "GDB" group.
2078
d93c111e
AS
20792011-02-04 Andreas Schwab <schwab@linux-m68k.org>
2080
2081 * international/mule-util.el (with-coding-priority): Doc fix.
2082
6f52d86e
EZ
20832011-02-04 Eli Zaretskii <eliz@gnu.org>
2084
2085 * arc-mode.el (archive-mode-map): Fix a typo in last change.
2086
c1b4afac
SS
20872011-02-03 Sam Steingold <sds@gnu.org>
2088
2089 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
2090 Do not error out when `func' is nil.
2091
a857d3c7
MA
20922011-02-03 Michael Albinus <michael.albinus@gmx.de>
2093
2094 * net/tramp-sh.el (tramp-remote-path): Add default settings for
2095 `tramp-default-remote-path' to the docstring.
2096 (tramp-get-remote-path): Suppress error message when `getconf
2097 PATH' fails.
2098
2099 * net/tramp-smb.el (tramp-smb-errors): Add "NT_STATUS_UNSUCCESSFUL".
2100
8aa88760
GM
21012011-02-03 Glenn Morris <rgm@gnu.org>
2102
219ea611
GM
2103 * vc/vc-hg.el (vc-hg-command): Doc fix.
2104
8d7b5b5b
GM
2105 * term/w32-win.el (libpng-version): Declare for compiler.
2106
c03eac34
GM
2107 * msb.el: No need to load dired while compiling.
2108
7f07c1fe
GM
2109 * emacs-lisp/elint.el (elint-standard-variables):
2110 Remove a couple of built-ins that now have doc-strings.
2111
befe199d
GM
2112 * hi-lock.el, ps-bdf.el, ps-mule.el, ps-print.el, ps-samp.el:
2113 `require' is automatically `eval-and-compile'd.
2114
2d7d6439
GM
2115 * net/rcirc.el (rcirc-nick-completion-format): Add :version tag.
2116 (rcirc-log-directory, rcirc-log-flag): Move definitions before use.
2117
8aa88760
GM
2118 * strokes.el (strokes-fill-current-buffer-with-whitespace):
2119 Move definition before use.
2120 (strokes-report-bug): Make it obsolete.
2121
e90f8545
SS
21222011-02-02 Sam Steingold <sds@gnu.org>
2123
2124 * apropos.el (apropos-print): Now that `apropos-mode' inherits
2125 from `special-mode', entering it makes the buffer read-only, so
2126 call it only when everything has been already inserted.
2127 * emacs-lisp/ert.el (ert--setup-results-buffer)
2128 (ert-results-pop-to-backtrace-for-test-at-point)
2129 (ert-results-pop-to-messages-for-test-at-point)
2130 (ert-results-pop-to-timings): Ditto.
2131 * emacs-lisp/package.el (package--list-packages): Ditto.
2132 * play/solitaire.el (solitaire): Ditto.
2133
90db975f
CY
21342011-02-02 Chong Yidong <cyd@stupidchicken.com>
2135
2136 * progmodes/compile.el: Make all faces inherit.
2137 (compilation-warning): Inherit from font-lock-variable-name-face.
2138 (compilation-info): Inherit from font-lock-type-face.
2139 (compilation-line-number): Reassign to font-lock-keyword-face.
2140 (compilation-column-number): Reassign to font-lock-doc-face.
2141 (compilation-leave-directory-face): Reassign to
2142 font-lock-builtin-face.
2143
bc35ff32
EZ
21442011-02-02 Eli Zaretskii <eliz@gnu.org>
2145
2146 * dired.el (dired-insert-directory): Don't invoke `ls' when
2147 ls-lisp.el is used to emulate it.
2148
39cde66c
JD
21492011-02-01 Julien Danjou <julien@danjou.info>
2150
2151 * color.el (color-gradient): Add a color-gradient function.
2152
abef340a
SS
21532011-02-01 Sam Steingold <sds@gnu.org>
2154
2155 * simple.el (special-mode-map): Bind "h" to `describe-mode';
2156 bind "z" to `kill-this-buffer'.
2157 (completion-list-mode-map): Bind "z" to `kill-this-buffer'.
2158 * apropos.el (apropos-mode-map): Inherit from `special-mode-map'.
2159 (apropos-mode): Inherit from `special-mode'.
2160 * arc-mode.el (archive-mode-map): Inherit from `special-mode-map'.
2161 * bookmark.el (bookmark-bmenu-mode): Define using
2162 `define-derived-mode' inheriting from `special-mode'.
2163 * dired.el (dired-mode-map): Inherit from `special-mode-map'.
2164 * image-mode.el (image-mode-map): Ditto.
2165 * replace.el (occur-mode): Define using
2166 `define-derived-mode' inheriting from `special-mode'.
2167 * tar-mode.el (tar-mode): Inherit from `special-mode'.
2168 * calendar/diary-lib.el (diary-fancy-display-mode):
2169 Inherit from `special-mode-map'.
2170 * emacs-lisp/ert.el (ert-simple-view-mode, ert-results-mode):
2171 Inherit from `special-mode'.
2172 * emacs-lisp/package.el (package-menu-mode-map): Copy from
2173 `special-mode-map'.
2174 (package-menu-mode): Define using `define-derived-mode'
2175 inheriting from `special-mode'.
2176 * erc/erc-list.el (erc-list-menu-mode): Inherit from `special-mode'.
2177 * net/xesam.el (xesam-mode): Inherit from `special-mode'.
2178 (xesam-mode-map): Define separately.
2179 * play/solitaire.el (solitaire-mode): Inherit from `special-mode'.
2180 * progmodes/compile.el (compilation-minor-mode-map)
2181 (compilation-mode-map): Inherit from `special-mode-map'.
2182 * vc/diff-mode.el (diff-mode-shared-map):
2183 Inherit from `special-mode-map'.
2184 * vc/log-view.el (log-view-mode-map): Add a comment.
2185
928f4e73
CY
21862011-02-01 Chong Yidong <cyd@stupidchicken.com>
2187
2188 * custom.el (load-theme): Define return value. Drop use of
2189 unsafep; call custom-theme-load-confirm for non-known-safe themes.
2190 (custom-theme-load-confirm): Scroll in the correct window.
2191 (custom-enabled-themes): Add custom-safe-themes to :set-after.
2192
2193 * cus-theme.el (custom-theme-checkbox-toggle): Don't activate the
2194 checkbox if load-theme fails.
2195
7d116647
SM
21962011-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
2197
2198 * progmodes/compile.el (compilation-next-error): Check there's
2199 a message before using it (bug#7941).
2200
4fdfcddf
JB
22012011-02-01 Jay Belanger <jay.p.belanger@gmail.com>
2202
2203 * calc/calc-mtx.el (math-lud-pivot-check): New function.
2204 (math-do-matrix-lud): Use `math-lud-pivot-check' to check the size
2205 of potential pivots.
2206
3b95603f
AM
22072011-01-31 Alan Mackenzie <acm@muc.de>
2208
7d116647
SM
2209 * progmodes/cc-cmds.el (c-forward-over-illiterals):
2210 Continue parsing if we encounter a naked # (Bug#7595).
3b95603f 2211 (c-beginning-of-statement): Avoid loop in locating the beginning
aa9c0efc 2212 of a macro. (Not actually committed until 2011-02-20, see above).
3b95603f 2213
6fa1f651
CY
22142011-01-31 Chong Yidong <cyd@stupidchicken.com>
2215
2216 * files.el (copy-directory): Fix arguments to recursive call.
2217
14beddf4 22182011-01-31 Chong Yidong <cyd@stupidchicken.com>
82d84d3f
CY
2219
2220 * files.el (copy-directory): If destination is an existing
2221 directory, copy into a subdirectory there.
2222
14beddf4 22232011-01-31 Andreas Schwab <schwab@linux-m68k.org>
e935c6a2
AS
2224
2225 * emacs-lisp/shadow.el (load-path-shadows-find): Ignore leim-list
2226 files.
2227
14beddf4 22282011-01-31 Chong Yidong <cyd@stupidchicken.com>
d1f14baa 2229
6fc0aac3
CY
2230 * image-dired.el (image-dired-mouse-display-image): No-op if no
2231 file is found (Bug#7817).
2232
d1f14baa
CY
2233 * mouse.el (mouse-menu-non-singleton): Doc fix (Bug#7801).
2234
14beddf4 22352011-01-31 Kenichi Handa <handa@m17n.org>
67442738 2236
7d116647
SM
2237 * international/quail.el (quail-keyboard-layout-alist):
2238 Remove superfluous SPC for "pc105-uk" (bug#7927).
67442738 2239
14beddf4 22402011-01-31 Glenn Morris <rgm@gnu.org>
220c2a14
GM
2241
2242 * msb.el (msb-menu-bar-update-buffers): Update for changed
2243 argument handling of menu-bar-select-frame. (Bug#7902)
2244
14beddf4 22452011-01-31 Chong Yidong <cyd@stupidchicken.com>
af7c5700
CY
2246
2247 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Set a limit
2248 to the recursion depth (Bug#7722).
2249
14beddf4 22502011-01-31 Roy Liu <carsomyr@gmail.com> (tiny change)
ca9c274a
JD
2251
2252 * term/ns-win.el (ns-find-file): Expand ns-input-file with
2253 command-line-default-directory (Bug#7872).
2254
9e11271c
SM
22552011-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
2256
2257 * progmodes/compile.el (compilation--flush-directory-cache):
2258 New function, extracted from compilation--remove-properties.
2259 (compilation--remove-properties, compilation--parse-region): Use it.
2260 (compilation--previous-directory): Handle one more case.
2261 (compilation-enable-debug-messages): Remove.
2262 (compilation-parse-errors, compilation--flush-parse): Just remove the
2263 left over debug messages.
2264
038714ab
SS
22652011-01-31 Sam Steingold <sds@gnu.org>
2266
2267 * progmodes/compile.el (compilation-enable-debug-messages):
2268 Add a variable to make the parsing messages introduced in
2269 2011-01-28T22:12:05Z!monnier@iro.umontreal.ca optional.
2270 (compilation-parse-errors, compilation--flush-parse): Use it.
2271
2a4466ca
DD
22722011-01-31 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2273
35f52ed6 2274 * net/rcirc.el: New customizable nick completion format. (Bug#6314)
2a4466ca
DD
2275 (rcirc-nick-completion-format): New defcustom.
2276 (rcirc-complete): Use it.
2277
186ecaf1
DD
22782011-01-31 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2279
2280 * net/rcirc.el: Clean log filenames (Bug#7933).
2281 (rcirc-log-write): Use convert-standard-filename.
2282 (rcirc-log-filename-function): Documentation updates.
2283
253f7d1b
JD
22842011-01-30 Jan Djärv <jan.h.d@swipnet.se>
2285
9e11271c
SM
2286 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer):
2287 Check report-emacs-bug-can-use-osx-open and use that if t.
253f7d1b
JD
2288 (report-emacs-bug-can-use-osx-open): New function.
2289 (report-emacs-bug): Rename can-xdg-email to can-insert-mail.
2290 Check report-emacs-bug-can-use-osx-open also for can-insert-mail.
2291
a2b6e5d6
CY
22922011-01-29 Chong Yidong <cyd@stupidchicken.com>
2293
2294 * vc/vc-dispatcher.el (vc-set-async-update): New function for
2295 updating Dired or VC-dir buffers after async command completes.
2296
2297 * vc/vc-bzr.el (vc-bzr-async-command): Return the process buffer.
2298 (vc-bzr-pull, vc-bzr-merge-branch): Use vc-set-async-update.
2299
2300 * vc/vc-git.el (vc-git-merge-branch): Add FETCH_HEAD to branch
2301 completions if it exists. Use vc-set-async-update.
2302 (vc-git-pull): Use vc-set-async-update.
2303
2304 * vc/vc-hg.el (vc-hg-pull): Fix default-contents arg to
2305 read-shell-command. Use vc-set-async-update.
2306 (vc-hg-merge-branch): Use vc-set-async-update.
2307
8907f7b9
DU
23082011-01-29 Daiki Ueno <ueno@unixuser.org>
2309
9e11271c
SM
2310 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED):
2311 Don't presume KEYEXPIRED and KEYREVOKED to be a fatal error status
8907f7b9
DU
2312 (Bug#7931).
2313
e52f87a1
SM
23142011-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
2315
2316 * progmodes/compile.el: Avoid an N² behavior in grep.
2317 (compilation--previous-directory): New fun.
2318 (compilation--previous-directory-cache): New var.
2319 (compilation--remove-properties): Flush it.
2320 (compilation-directory-properties, compilation-error-properties):
2321 Use the new fun to speed up looking for the current directory.
2322
659114fd
CY
23232011-01-29 Chong Yidong <cyd@stupidchicken.com>
2324
2325 * vc/vc-hg.el (vc-hg-history): New var.
2326 (vc-hg-pull): Perform default pull if called via Lisp by vc-pull.
2327 (vc-hg-merge-branch): New function.
2328
2329 * vc/vc.el (vc-pull): Make vc-update an alias for this, instead of
2330 the other way around.
2331
2332 * vc/vc-git.el (vc-git-branches, vc-git-pull)
2333 (vc-git-merge-branch): New functions.
2334 (vc-git-history): New var.
2335
9bfe5783
CY
23362011-01-28 Chong Yidong <cyd@stupidchicken.com>
2337
2338 * vc/vc-dispatcher.el (vc-do-async-command): New function.
2339
2340 * vc/vc-bzr.el (vc-bzr-async-command): Convert into a wrapper for
2341 vc-do-async-command.
2342
e52f87a1
SM
2343 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch):
2344 Callers changed.
9bfe5783 2345
b1ea593c
LL
23462011-01-28 Leo <sdl.web@gmail.com>
2347
2348 * emacs-lisp/advice.el (ad-make-advised-docstring): Don't apply
9bfe5783 2349 highlighting to the "this function is advised" message.
b1ea593c
LL
2350
2351 * help-mode.el (help-mode-finish): Apply highlighting here, to
2352 avoid clobbering by substitute-command-keys (Bug#6304).
2353
40e22d80
CY
23542011-01-28 Chong Yidong <cyd@stupidchicken.com>
2355
2356 * woman.el (woman0-roff-buffer): Process roff escape sequences
2357 occurring prior to the first request (Bug#7843).
2358
01c63f4c
SM
23592011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2360
55fb9013
SM
2361 * progmodes/compile.el: Don't use font-lock any more.
2362 (compilation-error-regexp-alist-alist): Change handling of makepp
2363 so it preserves the warning/error distinction on subsequent files.
2364 Simplify various rules.
2365 (compilation-directory-properties): Use font-lock-face.
2366 Add a compilation-message property.
2367 (compilation-internal-error-properties): Use font-lock-face.
2368 Don't set the compilation-debug property here.
2369 (compilation--put-prop, compilation--remove-properties)
2370 (compilation--parse-region, compilation--ensure-parse)
2371 (compilation--ensure-parse): New functions.
2372 (compilation-parse-errors): New function, largely inspired of
2373 compilation-mode-font-lock-keywords. Set compilation-debug here.
2374 (compilation--parsed): New var.
2375 (compilation--flush-parse): Use compilation--ensure-parse.
2376 (compilation-start): Don't call font-lock.
2377 (compilation-turn-on-font-lock): Remove.
2378 (compilation-setup): Don't set font-lock-extra-managed-props not change
2379 other font-lock settings, other than keywords.
2380 Don't activate font-lock-mode.
2381 Set change-major-mode-hook and before-change-functions.
2382 (compilation--unsetup): Remove properties and hooks.
2383 (compilation-next-single-property-change): New function.
2384 (compilation-next-error): Use it to parse when needed.
2385 (compile-goto-error): Parse buffer as needed.
2386 (compilation--compat-error-properties): Don't need a dummy `face'
2387 property any more.
2388
8fe52384
SM
23892011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2390
2391 * progmodes/compile.el: Use accessors for clarity and fix omake hack.
2392 (compilation-process-setup-function): Fix docstring's false promises.
2393 (compilation-error-regexp-alist-alist): Catch omake's continuous
2394 recompilation message and avoid reuse of old markers.
2395 (compilation-parse-errors-function): Declare obsolete.
2396 (compilation-buffer-modtime): Remove.
2397 (compilation--make-cdrloc, compilation--loc->col)
2398 (compilation--loc->line, compilation--loc->file-struct)
2399 (compilation--loc->marker, compilation--loc->visited)
2400 (compilation--make-file-struct, compilation--file-struct->file-spec)
2401 (compilation--file-struct->formats)
2402 (compilation--file-struct->loc-tree): New macros. Use them.
2403 (compilation--message): New defstruct. Use them.
2404 (compilation-next-error-function): Don't mess with timestamps to try
2405 and guess when to reparse.
2406
01c63f4c
SM
24072011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2408
5e853d01
SM
2409 * textmodes/tex-mode.el: Get rid of compilation-parse-errors-function
2410 (tex-old-error-file-name): New function,
2411 extracted from tex-compilation-parse-errors.
2412 (tex-compilation-parse-errors): Remove.
2413 (tex-error-regexp-alist): New var.
2414 (tex-shell): Use it to avoid compilation-parse-errors-function.
2415
07b741a7
SM
2416 * progmodes/grep.el (grep-regexp-alist): Tighten regexp.
2417 (grep-mode-font-lock-keywords): Remove regexp that seems like
2418 a left-over from before we used compile.el.
2419 (grep-mode-font-lock-keywords): Call syntax-ppss-flush-cache when
2420 modifying the buffer within with-silent-modifications.
2421
2422 * progmodes/compile.el: Cleanup text-properties namespace by using
2423 `compilation-message' instead of `message', `compilation-directory'
2424 instead of `directory', and `compilation-debug' instead of `debug'.
2425 (compilation-last-buffer, compilation-parsing-end)
2426 (compilation-error-list, compilation-old-error-list): Move to the
2427 compatibility part of the code.
2428 (compilation-error-properties): If `file' is a function, let it return
2429 a file name.
2430 (compilation-mode-font-lock-keywords): Be more conservative with the
2431 omake "^ *" pattern prefix, to try and minimize the risk of
2432 pathologically slow regexp matching.
2433 (compilation-start): Use inhibit-read-only.
2434 (compilation--unsetup): New function.
2435 (compilation-shell-minor-mode, compilation-minor-mode): Use it.
2436 (compilation-filter): Minor tweaks.
8fe52384 2437 (compilation-next-error-function): Try and avoid abusing variables.
07b741a7 2438 (compilation--flush-file-structure): New fun.
8fe52384 2439 (compilation-fake-loc): Use it to improve behavior when file is reused.
07b741a7
SM
2440 (debug-ignored-errors): Add "Moved past last ...".
2441 (compilation--compat-error-properties)
2442 (compilation--compat-parse-errors): Rename by doubling the "-".
2443
01c63f4c
SM
2444 Port features from the previous prolog.el to the new one.
2445 * progmodes/prolog.el (prolog-system): Add GNU and ECLiPSe options.
2446 (prolog-program-name, prolog-program-switches, prolog-consult-string)
2447 (prolog-compile-string, prolog-prompt-regexp): Get rid of the <foo>-i
2448 variable and use a function to compute the value dynamically.
2449 (prolog-prompt-regexp): Add regexp for GNU Prolog.
2450 (prolog-continued-prompt-regexp): Remove, unused.
2451 (prolog-find-value-by-system): Try and use the value of prolog-system
2452 in the *prolog* buffer if it helps.
2453 (prolog-mode-keybindings-common): Bind C-c C-z unconditionally...
2454 (prolog-zip-on): ..and check prolog-system and version here instead.
2455 (prolog-inferior-self-insert-command): New command.
2456 (prolog-inferior-mode-map): Use it.
2457 (prolog-inferior-error-regexp-alist): New var.
8fe52384 2458 (prolog-inferior-mode): Use it, with compilation-shell-minor-mode.
01c63f4c
SM
2459 (prolog-input-filter): Use derived-mode-p.
2460 (prolog-inferior-guess-flavor): New function.
2461 (prolog-ensure-process): Use it. Use make-comint-in-buffer rather than
2462 make-comint to avoid running comint-mode twice.
2463 (prolog-inferior-buffer): New fun.
2464 (prolog-old-process-region, prolog-old-process-file):
2465 Don't call prolog-bsts here...
2466 (prolog-build-prolog-command): ...do it here instead.
2467 (prolog-old-process-region, prolog-old-process-file):
2468 Use compilation-fake-loc and compilation-forget-errors.
2469 (prolog-consult-compile-region): Use bolp.
2470
2f224f0b
CY
24712011-01-28 Chong Yidong <cyd@stupidchicken.com>
2472
2473 * image-mode.el (image-display-size): Doc fix (Bug#7820).
2474
db0e305d
SS
24752011-01-27 Sam Steingold <sds@gnu.org>
2476
9e11271c
SM
2477 * midnight.el (clean-buffer-list-kill-never-buffer-names):
2478 Remove "*server*" which is never created by emacs server.
db0e305d 2479
27bbeb29
DD
24802011-01-27 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2481
2482 * vc/vc-bzr.el (vc-bzr-diff): Don't pass --diff-options unless
2483 there are some diff switches.
2484
153c5428
SM
24852011-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
2486
89fdaac7
SM
2487 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
2488 Copy change made to ruby-font-lock-syntactic-keywords.
2489
153c5428
SM
2490 * htmlfontify.el: Make it obey the font-lock-face text property.
2491 Miscellaneous cleanup such as:
2492 - Don't hide expressions after a closing paren.
2493 - Move initial setq into let.
2494 - Hoist common parts out of ifs.
2495 (hfy-p-to-face, hfy-p-to-face-lennart): Remove.
2496 (hfy-face-at): Use get-text-property instead.
2497 (hfy-prop-invisible-p): Use invisible-p if available.
2498 (htmlfontify-manual): Use \\[...].
2499 (hfy-html-quote-regex): Use [...].
2500 (hfy-combined-face-spec): Simplify.
2501 (hfy-compile-face-map): Don't presume point-min==1.
2502 (hfy-css-name, hfy-buffer, htmlfontify-buffer): Use \' rather than $ to
2503 match end of string.
2504 (hfy-text-p): η-reduce.
2505 (hfy-tags-for-file): Receive cache-hash directly.
2506 (hfy-mark-tag-names): Adjust call.
2507
ed7646d4
GM
25082011-01-27 Glenn Morris <rgm@gnu.org>
2509
2510 * msb.el (msb-after-load-hooks): Make it an obsolete alias.
2511 (msb-after-load-hook): Remove eval-after-load wackiness.
2512
ed68f651
SS
25132011-01-25 Sam Steingold <sds@gnu.org>
2514
2515 * vc/vc-svn.el (vc-svn-diff): Use `diff-command' instead of the
2516 literal "diff" (important for windows-nt).
2517
0fe719e6
GM
25182011-01-25 Glenn Morris <rgm@gnu.org>
2519
2520 * emacs-lisp/copyright.el (copyright-at-end-flag)
2521 (copyright-names-regexp): Add safety properties.
2522 (copyright-year-ranges): New option.
2523 (copyright-find-end): New function, split from copyright-update-year.
2524 (copyright-update-year): Use copyright-find-end.
2525 (copyright-fix-years): Optionally, convert years to ranges.
2526 Handle years continued over comment lines.
2527 Do not mess with the fill-prefix.
2528 Do not call copyright-update.
2529 (copyright-update-directory): Optionally, fix years rather than update.
7e6e2304 2530 Skip directories. Find files with only safe local vars.
0fe719e6 2531
06d8ace5 25322011-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
10e1d5f3
SM
2533
2534 * files.el (file-name-non-special): Only change buffer-file-name after
2535 insert-file-contents if it's `visit'ing the file (bug#7854).
2536
06d8ace5 25372011-01-25 Chong Yidong <cyd@stupidchicken.com>
b14f16ad
CY
2538
2539 * dired.el (dired-revert): Doc fix (Bug#7758).
2540
06d8ace5
GM
2541 * simple.el (line-move-visual): Doc fix (Bug#7594).
2542
25432011-01-25 Nobuyoshi Nakada <nobu@ruby-lang.org>
cc9c9831
NN
2544
2545 * progmodes/ruby-mode.el (ruby-here-doc-beg-match): Fix for
2546 here-doc which ends with an underscore.
2547 (ruby-mode-set-encoding): Skip shebang line always.
2548 (ruby-mode-map): Bind C-c C-c to comment-region.
0d19d4fe 2549 (ruby-font-lock-keywords): Highlight literal hash key labels as symbols.
cc9c9831
NN
2550 (ruby-forward-sexp): Stop after literal hash key labels.
2551 (ruby-font-lock-syntactic-keywords): Highlight regexp after open
2552 bracket.
2553
06d8ace5 25542011-01-25 Keitaro Miyazaki <keitaro.miyazaki@gmail.com> (tiny change)
d6476407
KM
2555
2556 * emacs-lisp/re-builder.el (reb-mode-map): Set case-fold-search in
2557 the correct buffer (Bug#7650).
2558
06d8ace5
GM
25592011-01-25 Glenn Morris <rgm@gnu.org>
2560
2561 * comint.el (comint-mode): Doc fix. (Bug#7897)
4d265b4d 2562
ce558208
GM
2563 * simple.el (do-auto-fill): Give it a doc string.
2564
4d265b4d
GM
2565 * button.el (make-text-button): Doc fix. (See bug#7881)
2566
21bb5ce0
SM
25672011-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
2568
ab0a61d0
SM
2569 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
2570 Don't move backward, so as not to fall in an inf-loop (bug#7736).
2571
21bb5ce0
SM
2572 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): (bug#7735)
2573 Handle ?" and friends differently (e.g. don't use backrefs).
2574
603823f5
JB
25752011-01-24 Jay Belanger <jay.p.belanger@gmail.com>
2576
2577 * calc/calc.el (calc-default-power-reference-level)
2578 (calc-default-field-reference-level): New variables.
35f52ed6 2579 * calc/calc-units.el (math-standard-units): Add dB and Np.
603823f5
JB
2580 (math-logunits): New variable.
2581 (math-extract-logunits, math-logcombine, calcFunc-luplus)
2582 (calcFunc-luminus, calc-luplus, calc-luminus, math-logunit-level)
21bb5ce0
SM
2583 (calcFunc-fieldlevel, calcFunc-powerlevel, calc-level):
2584 New functions.
603823f5
JB
2585 (math-find-base-units-rec): Add entry for ln(10).
2586 * calc/calc-help.el (calc-u-prefix-help): Add logarithmic help.
2587 (calc-ul-prefix-help): New function.
2588 * calc/calc-ext.el (calc-init-extensions): Autoload new units
35f52ed6 2589 functions. Add keybindings for new units functions.
603823f5 2590
11ea68ce 25912011-01-22 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
10617634
DD
2592
2593 * net/rcirc.el (rcirc-kill-buffer-hook): Flush logs when killing
11ea68ce 2594 rcirc buffers. (Bug#4940)
10617634 2595
0412a5a4
GM
25962011-01-22 Glenn Morris <rgm@gnu.org>
2597
2598 * emacs-lisp/copyright.el (copyright-find-copyright): New function,
2599 split out from copyright-update-year.
2600 (copyright-update): Don't mess with the GPL version if we don't own the
2601 copyright. Update license regexp, and remove no longer needed
2602 Esperanto stuff.
d226ec23 2603 (copyright-fix-years): Use copyright-find-copyright.
0412a5a4 2604
e7c1dca8
CY
26052011-01-22 Chong Yidong <cyd@stupidchicken.com>
2606
2607 * vc/diff.el (diff-sentinel): Doc fix (Bug#7682).
2608
4d0143e6
JA
26092011-01-22 Jari Aalto <jari.aalto@cante.net>
2610
2611 * play/landmark.el: Change `lm-' prefix to `landmark-' (Bug#7672).
2612 (lm): Rename to landmark.
2613 (lm-test-run): Rename to landmark-test-run.
2614
e3545d0d
CY
26152011-01-22 Chong Yidong <cyd@stupidchicken.com>
2616
2617 * emacs-lisp/re-builder.el (reb-mode-map): Fix logic error in
2618 "Case sensitive" menu item.
2619
7c82f3e2 26202011-01-22 Roland McGrath <roland@frob.com>
6e1dbaa9
RM
2621
2622 * comint.el (comint-replace-by-expanded-history-before-point): Fix
2623 expansion of !$ and !!:N syntax to pick the indicated word (bug#7883).
2624
7c82f3e2 26252011-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
0f1f97ca
SM
2626
2627 * progmodes/js.el (js--regexp-literal): Count backslashes (bug#7882).
2628
7c82f3e2 26292011-01-22 Jari Aalto <jari.aalto@cante.net>
26a27884 2630
6e1dbaa9
RM
2631 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2632 Assume foo(bar) is a manpage reference rather than some unquoted
2633 symbol (bug#7705).
26a27884 2634
7c82f3e2 26352011-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
d5e632d8
SM
2636
2637 * subr.el (shell-quote-argument): Properly quote \n (bug#7687).
2638 Suggested by Flo <sensorflo@gmail.com>.
2639
7c82f3e2 26402011-01-22 Glenn Morris <rgm@gnu.org>
d00b05c9
GM
2641
2642 * progmodes/compile.el (compilation-error-regexp-alist):
2643 Fix custom type. (Bug#7812)
2644
4936e3ba
KM
26452011-01-22 Ken Manheimer <ken.manheimer@gmail.com>
2646
2647 * allout.el (allout-prefixed-keybindings): Bind (prefixed) '#' to
2648 allout-number-siblings, in keeping with what obtained due to
2649 (now-defunct) allout-keybindings-list. Ditch repeat binding to
2650 (prefixed) ?i.
2651 (allout-before-change-handler): Better expose spots affected by
2652 undo.
2653
cde7e38b
CY
26542011-01-22 Chong Yidong <cyd@stupidchicken.com>
2655
2656 * man.el (Man-highlight-references0): Use make-button (Bug#7881).
2657
6b072b27
PH
26582011-01-22 Phil Hagelberg <phil@evri.com>
2659
2660 * pcmpl-unix.el (pcmpl-ssh-config-file): New option.
2661 (pcmpl-ssh-known-hosts): Rename from pcmpl-ssh-hosts.
2662 (pcmpl-ssh-config-hosts): New function.
2663 (pcmpl-ssh-hosts): Use pcmpl-ssh-config-hosts in addition to
2664 pcmpl-ssh-known-hosts.
2665
26d82c3a
JB
26662011-01-21 Jay Belanger <jay.p.belanger@gmail.com>
2667
c310ff4f
JB
2668 * calc/calc-undo.el (calc-undo): Autoload it.
2669 * calc/calc-ext.el (calc-init-extensions): Remove keybindings
2670 and autoload for `calc-undo'.
2671 * calc/calc.el (calc-mode-map): Add keybindings for `calc-undo'.
2672 * calc/calc-prog.el:
2673 * calc/calc-graph.el:
2674 * calc/calc-map.el: Change `arglist' to `math-arglist' throughout.
26d82c3a 2675
a10c4149
ŠN
26762011-01-21 Štěpán Němec <stepnem@gmail.com> (tiny change)
2677
2678 * calc/calc-ext.el (calc-init-extensions): Map all `undo'
2679 keybindings to `calc-undo'.
2680
8dabbfd6
SM
26812011-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
2682
2683 Don't mess with *temp*.
2684 * obsolete/spell.el: Move from textmodes/spell.el.
2685 (spell-string):
2686 * term.el (term-read-input-ring):
2687 * startup.el (display-startup-echo-area-message):
2688 * progmodes/antlr-mode.el (antlr-directory-dependencies):
2689 * comint.el (comint-read-input-ring): Use with-temp-buffer.
2690 * international/mule.el (ctext-pre-write-conversion): Don't hardcode
2691 point-min==1.
2692
d3e51865
KM
26932011-01-20 Ken Manheimer <ken.manheimer@gmail.com>
2694
35f52ed6 2695 * allout.el (allout-institute-keymap): Use fset instead of
d42f7802
KM
2696 reapplying defalias.
2697
2698 (allout-hotspot-key-handler): Check for non-control-modified
2699 bindings for hotspot characters if there are no control-modified
2700 versions.
2701
d3e51865
KM
2702 * allout.el: Summary - migrate to defining allout mode using
2703 define-minor-mode instead of defun. Significantly clean-up
2704 internal keymap provisions, refactoring and, in the process,
2705 removing a lot of accumulated cruft.
2706
2707 allout-mode-map is now a keymap by virtue of being a defalias to
2708 allout-mode-map-value, which contains the actual keymap structure.
2709
8dabbfd6
SM
2710 (allout-mode): Use define-minor-mode rather than defun.
2711 Remove now-unnecessary minor-mode setup activities from the body.
d3e51865
KM
2712 Specify :keymap as allout-mode-map so the minor-mode-map-alist
2713 entry will be '(allout-mode . allout-mode-map) - see
2714 allout-mode-map-value, below. Adjust docstring to track changes.
2715 (allout-minor-mode): Remove this defalias, now that we're using
2716 define-minor-mode.
2717 (allout-mode-map): Set value to be 'allout-mode-map. The actual
2718 keymap is allout-mode-map-value, via defalias.
2719 (allout-mode-map-value): The variable holding the actual mode
2720 keymap structure, by virtue of defalias from allout-mode-map.
8dabbfd6 2721 (allout-compose-and-institute-keymap): Rename from
d3e51865
KM
2722 allout-bind-keys, and including the binding-composition
2723 functionality of the former produce-allout-mode-map and
2724 allout-setup-mode-map.
2725 (allout-institute-keymap): Take over the "setup" part of the former
2726 allout-setup-mode-map. Reassign allout-mode-map-value value and
2727 update the defalias.
01c35094 2728 (allout-command-prefix, allout-prefixed-keybindings)
8dabbfd6
SM
2729 (allout-unprefixed-keybindings):
2730 Use allout-compose-and-institute-keymap to process the bindings.
2cf429d0 2731 (allout-unprefixed-keybindings): Remove extraneous '?' question marks.
d3e51865 2732 (allout-prefixed-keybindings): Elide binding to (prefixed) \C-h -
8dabbfd6
SM
2733 user can customize if they want to use that binding.
2734 Bind allout-copy-topic-as-kill to (prefixed) \M-k.
2735 Bind allout-up-current-level to (prefixed) \C-u. (I think i mistakenly
d3e51865
KM
2736 elided that, previously, instead of the one for \C-h.)
2737 (allout-hotspot-key-handler): Remove attempt to resolve the key
2738 through the literal key-string lookup on allout-keybindings-list.
2739 That probably hasn't worked for a Long Time, and removal of
2cf429d0 2740 allout-keybindings-list further simplifies the keybindings situation.
d3e51865
KM
2741 (allout-pre-command-business): Use allout-mode-map-value instead
2742 of allout-mode-map.
2743 (allout-preempt-trailing-ctrl-h): Remove. The user can customize
2744 the bindings if they want to use a keybinding having a trailing
2cf429d0 2745 \C-h. No deprecation needed since this feature was never in a release.
d3e51865
KM
2746 (allout-keybindings-list): Remove. It's not been useful for a
2747 while. (See allout-hotspot-key-handler changes, above.)
2748 (produce-allout-mode-map): Remove. Consolidate into
2749 allout-compose-and-institute-keymap.
2750 (allout-mode-map-adjustments): Remove. No longer necessary with
2751 removal of allout-preempt-trailing-ctrl-h.
2752 (allout-setup-mode-map): Remove. Consolidate into
2753 allout-compose-and-institute-keymap and allout-institute-keymap.
2754
c11136ec
GM
27552011-01-20 Glenn Morris <rgm@gnu.org>
2756
dbfb414e
GM
2757 * vc/vc-svn.el (vc-svn-after-dir-status): Tweak previous change.
2758
c11136ec
GM
2759 * simple.el (read-expression-history): Remove, it's in minibuf.c.
2760
9aea757b
CY
27612011-01-20 Chong Yidong <cyd@stupidchicken.com>
2762
2763 * subr.el (y-or-n-p): Revert 2011-01-07 change, removing ARGS.
2764
2765 * files.el (find-alternate-file, basic-save-buffer)
2766 (basic-save-buffer-2, revert-buffer, recover-file)
2767 (kill-buffer-ask, abort-if-file-too-large)
2768 (set-visited-file-name, write-file, backup-buffer)
2769 (basic-save-buffer, save-some-buffers):
2770 * dired-aux.el (dired-compress-file): Callers changed.
2771
5dd4f3f7
GM
27722011-01-19 Glenn Morris <rgm@gnu.org>
2773
2774 * vc/vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
2775 Also check the property status. (Bug#7861)
2776
56761182
MA
27772011-01-18 Michael Albinus <michael.albinus@gmx.de>
2778
2779 * net/tramp.el (tramp-debug-message): Extend function exclude
2780 list. Use `regexp-opt'.
2781
a9faac5c 27822011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
1a1fcbe1 2783
9cc3a0c7
SM
2784 * textmodes/tex-mode.el (tex-font-lock-verb): Make sure \verb
2785 highlighting doesn't spill over subsequent lines.
2786
1a1fcbe1
SM
2787 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't re-evaluate the
2788 keymap expression. Improve docstring.
2789
74a10be5
SM
2790 * electric.el (electric-indent-post-self-insert-function):
2791 Don't auto-indent for indent-to-left-margin, it's too often
2792 counter-productive.
2793
721be9cd
TH
27942011-01-16 Tassilo Horn <tassilo@member.fsf.org>
2795
2796 * strokes.el (strokes-read-stroke): Re-fill strokes buffer with
2797 spaces if the frame was resized, so that the full visible buffer
2798 serves as canvas for strokes.
2799
a767645f
GM
28002011-01-16 Glenn Morris <rgm@gnu.org>
2801
2802 * info-xref.el (info-xref-docstrings): Replace cl function.
e5c7913c 2803 Also skip directories.
a767645f 2804
444ee8dd
KR
28052011-01-16 Kevin Ryde <user42@zip.com.au>
2806
2807 * info-xref.el: Version 3.
2808 (info-xref-check, info-xref-check-all): Move commentary details
2809 into docstrings for better visibility.
2810 Use compilation-mode for the results buffer.
2811 (info-xref-output, info-xref-output-error, info-xref-with-output)
2812 (info-xref-filename, info-xref-in-progress):
2813 New internals for this.
2814 (info-xref-check-list, info-xref-check-buffer)
2815 (info-xref-check-all-custom): Use those.
2816 (info-xref-output-buffer): Rename from info-xref-results-buffer.
2817 (info-xref-output-heading): Rename from info-xref-filename-heading.
2818 (info-xref-good, info-xref-bad, info-xref-xfile-alist)
2819 (info-xref-filename-heading): Move to output managing section.
35f52ed6 2820 (info-xref-docstrings): New command checking "Info node `(foo)Bar'"
444ee8dd
KR
2821 (info-xref-lock-file-p, info-xref-with-file): New helpers for it.
2822 (info-xref-subfile-p): Move to generic section with those two.
2823 (info-xref-check-node): New function split from
2824 info-xref-check-buffer, shared by info-xref-docstrings.
2825 (info-xref-goto-node-p): Move to a checking section with that func.
2826 (info-xref-unavail): New counter.
2827 (info-xref-check-node): Use it.
2828 (info-xref-with-output): Show count of unavailables at end of output.
2829 (info-xref-all-info-files): Exclude ".*" dotfiles. Ignore broken
35f52ed6 2830 symlinks. Exclude .texi files. Exclude Emacs backup files.
444ee8dd
KR
2831 (info-xref-check-all-custom): Fix quietening viper-mode and
2832 gnus-registry-install -- use setq not let so as not to unbind
2833 after load.
2834
d4119912
JL
28352011-01-16 Juri Linkov <juri@jurta.org>
2836
2837 * isearch.el (isearch-abort): Don't quit if search has
2838 an incomplete regexp (isearch-error is non-nil). (Bug#7534)
2839
b024d9f0
MD
28402011-01-15 Mark Diekhans <markd@soe.ucsc.edu>
2841
2842 * files.el (backup-buffer): Make last-resort backup file in
2843 .emacs.d (Bug#6953).
2844
2845 * subr.el (locate-user-emacs-file): If .emacs.d does not exist,
2846 make it with permission 700.
2847
d52969e8 28482011-01-15 Kenichi Handa <handa@m17n.org>
1a6a03e4 2849
74a10be5
SM
2850 * mail/rmailmm.el (rmail-mime-insert-header):
2851 Set rmail-mime-coding-system to a cons whose car is the last coding
1a6a03e4
KH
2852 system used to decode the header.
2853 (rmail-mime-find-header-encoding): New function.
74a10be5
SM
2854 (rmail-mime-insert-decoded-text):
2855 Override rmail-mime-coding-system if it is a cons.
1a6a03e4
KH
2856 (rmail-show-mime): If only a header part was decoded, find the
2857 coding system while ignoring mm-charset-override-alist.
2858
d52969e8 28592011-01-15 Chong Yidong <cyd@stupidchicken.com>
c88aaf48
CY
2860
2861 * subr.el (event-start, event-end): Doc fix (Bug#7826).
2862
d52969e8 28632011-01-15 Kenichi Handa <handa@m17n.org>
e7ca0062
KH
2864
2865 * mail/rmailmm.el (rmail-mime-next-item)
2866 (rmail-mime-previous-item): Delete them.
2867 (rmail-mime-shown-mode): Recursively call for children.
74a10be5
SM
2868 (rmail-mime-hidden-mode): Delete the 2nd arg TOP.
2869 Callers changed.
e7ca0062
KH
2870 (rmail-mime-raw-mode): Recursively call for children.
2871 (rmail-mode-map): Change mapping of tab and backtab to
2872 forward-button and backward-button respectively.
2873 (rmail-mime-insert-tagline): Always insert "Hide" or "Show"
2874 button.
2875 (rmail-mime-update-tagline): New function.
2876 (rmail-mime-insert-text): Call rmail-mime-update-tagline if the
2877 body display is changed.
74a10be5 2878 (rmail-mime-toggle-button): Rename from rmail-mime-image.
e7ca0062
KH
2879 (rmail-mime-image): Delete this button type.
2880 (rmail-mime-toggle): New button type.
2881 (rmail-mime-insert-bulk): Call rmail-mime-update-tagline if the
2882 body display is changed. Change the save button label to "Save".
2883 Don't process show/hide button here.
2884 (rmail-mime-insert-multipart): Call rmail-mime-update-tagline if
2885 the body display is changed. Unconditionally call
2886 rmail-mime-insert for children.
2887 (rmail-mime-handle): Update `display' vector of the just inserted
2888 entity.
2889 (rmail-mime-process): If mail-header-parse-content-type returns
2890 nil, use "text/plain" as the fallback type.
2891 (rmail-mime-insert): For raw-mode, recursively call
2892 rmail-mim-insert for children.
2893 (rmail-mime): Handle the case that the current buffer is not rmail
2894 buffer (e.g. in summary buffer).
2895
d52969e8 28962011-01-15 Kenichi Handa <handa@m17n.org>
e7ca0062
KH
2897
2898 * mail/rmailmm.el (rmail-mime-next-item)
2899 (rmail-mime-previous-item): Skip the body of a non-multipart
2900 entity if a tagline is shown.
2901
362b9d48
GM
29022011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
2903
2904 * tmm.el (tmm-get-keymap): Skip bindings without labels (bug#7721).
2905 (tmm-prompt): Simplify.
2906 (tmm-add-prompt): Remove unused var `win'.
2907
2908 * whitespace.el (global-whitespace-newline-mode): Fix call (bug#7810)
2909 to minor mode which used nil accidentally to mean "turn off".
2910
29112011-01-15 Michael Albinus <michael.albinus@gmx.de>
2912
2913 * net/tramp-sh.el (tramp-find-inline-compress)
2914 (tramp-get-inline-coding): Quote command after pipe symbol for
2915 local calls under W32. (Bug#6784)
2916
29172011-01-15 Michael Albinus <michael.albinus@gmx.de>
2918
2919 * net/tramp.el (tramp-default-method): Initialize with pscp/plink
2920 only when running under W32.
2921
29222011-01-15 Eli Zaretskii <eliz@gnu.org>
2923
2924 * progmodes/grep.el (grep-compute-defaults): Quote the program
2925 file name after the pipe symbol in Grep templates. (Bug#6784)
2926 * jka-compr.el (jka-compr-partial-uncompress): Likewise.
2927
29282011-01-15 Lennart Borgman <lennart.borgman@gmail.com>
2929
2930 * buff-menu.el (Buffer-menu-buffer-list): New var.
2931 (Buffer-menu-revert-function, list-buffers-noselect): Use it, so a
2932 restricted buffer list is not lost on revert (Bug#7749).
2933
29342011-01-15 Eric Hanchrow <eric.hanchrow@gmail.com>
2935
2936 * net/ldap.el (ldap-search-internal): Discard stderr output.
2937
29382011-01-15 Eli Zaretskii <eliz@gnu.org>
2939
2940 * files.el (directory-abbrev-alist): Doc fix. (Bug#7777)
2941
29422011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
2943
2944 * vc-bzr.el (vc-bzr-annotate-time): Tweak previous change.
2945
29462011-01-15 Kenichi Handa <handa@m17n.org>
2947
2948 * mail/rmailmm.el (rmail-mime-insert-bulk): Display an unknown
2949 part as a plain text.
2950 (rmail-mime-process-multipart): Set the default content-type to
2951 nil for unknown multipart subtypes (bug#7651).
2952
6d3d6113
SM
29532011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2954
4391b429
SM
2955 * hexl.el (hexl-mode-old-*): Remove.
2956 (hexl-mode--old-var-vals): New var to replace them.
2957 (hexl-mode--minor-mode-p, hexl-mode--setq-local): New funs.
2958 (hexl-mode, hexl-follow-line, hexl-activate-ruler):
2959 Use them to set local vars (bug#7846).
2960 (hexl-mode-exit): Use hexl-mode--old-var-vals to restore state.
2961 (hexl-backward-short, hexl-backward-word, hexl-scroll-down)
2962 (hexl-scroll-up, hexl-end-of-1k-page, hexl-end-of-512b-page): Simplify.
2963
6d3d6113
SM
2964 * vc/smerge-mode.el: Resolve comment conflicts more aggressively.
2965 (smerge-resolve--normalize-re): New var.
2966 (smerge-resolve--extract-comment, smerge-resolve--normalize): New funs.
2967 (smerge-resolve): Use them.
2968 * newcomment.el (comment-only-p): New function.
2969 (comment-or-uncomment-region): Use it.
2970
77ab81d0 29712011-01-14 Brent Goodrick <bgoodr@gmail.com> (tiny change)
8d4708af
BG
2972
2973 * abbrev.el (prepare-abbrev-list-buffer): If listing local abbrev
2974 table, get the value before switching to the output buffer. (Bug#7733)
2975
77ab81d0 29762011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
364df1cc
SM
2977
2978 * progmodes/python.el (python-mode): Don't impose font-lock (bug#3628).
2979
8faba62c
KS
29802011-01-14 Kim F. Storm <storm@cua.dk>
2981
2982 * emulation/cua-base.el (cua--init-keymaps):
2983 Remap exchange-point-and-mark in cua-global-keymap.
2984
ab7eb811
TH
29852011-01-14 Tassilo Horn <tassilo@member.fsf.org>
2986
2987 * progmodes/sh-script.el (sh-other-keywords): Add ZSH's foreach
2988 loop keyword.
2989
fc55380c
SM
29902011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2991
2992 * emacs-lisp/easymenu.el: Add :enable (bug#7754), and obey :label.
2993 Require CL.
2994 (easy-menu-create-menu, easy-menu-convert-item-1):
2995 Use :label rather than nil for labels. Use `case'.
2996 Add :enable as alias for :active.
2997 (easy-menu-binding): Obey :label.
2998
dbed16aa
SM
29992011-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
3000
4d789d84
SM
3001 Use run-mode-hooks for major mode hooks (bug#513).
3002 * textmodes/reftex-toc.el (reftex-toc-mode-map):
3003 Rename from reftex-toc-map.
3004 (reftex-toc-mode): Use define-derived-mode.
3005 * textmodes/reftex-sel.el (reftex-select-shared-map): New map.
3006 (reftex-select-label-mode-map, reftex-select-bib-mode-map):
3007 Rename from reftex-select-(label|bib)-map. Move init into declaration.
3008 (reftex-select-label-mode, reftex-select-bib-mode):
3009 Use define-derived-mode.
3010 * textmodes/reftex-index.el (reftex-index-phrases-mode-map)
3011 (reftex-index-mode-map): Rename from reftex-index(-phrases)-map.
3012 Move init into delcaration.
3013 (reftex-index-mode, reftex-index-phrases-mode):
3014 Use define-derived-mode.
3015 * speedbar.el (speedbar-mode-syntax-table): Renaqme from
3016 speedbar-syntax-table. Move init into declaration.
3017 (speedbar-mode-map): Rename from speedbar-key-map.
3018 Move init into declaration.
3019 (speedbar-file-key-map): Move init into declaration.
3020 (speedbar-mode): Use define-derived-mode.
3021 * recentf.el (recentf-mode): Don't run hook (or message) redundantly.
3022 * net/rcirc.el (rcirc-mode): Use run-mode-hooks.
3023 * emacs-lisp/chart.el (chart-mode-map): Rename from chart-map.
3024 (chart-face-list): Move initialization into declaration.
3025 (chart-mode): Use define-derived-mode.
3026 * calculator.el (calculator-mode-map): Move init into declaration.
3027 (calculator-mode): Use define-derived-mode.
3028
b49a2dbf
SM
3029 * mail/mail-utils.el (mail-strip-quoted-names): Make the regexp code
3030 work for nested comments.
3031
dbed16aa
SM
3032 * progmodes/prolog.el: Use syntax-propertize. Further code cleanup.
3033 (prolog-use-prolog-tokenizer-flag): Change default when
3034 syntax-propertize can be used.
3035 (prolog-syntax-propertize-function): New var.
3036 (prolog-mode-variables): Move make-local-variable into `set'.
3037 Don't make comment-column local since we don't set it.
3038 Set comment-add (as it was in previous prolog.el). Use dolist.
3039 Set syntax-propertize-function.
3040 (prolog-mode, prolog-inferior-mode):
3041 Call prolog(-inferior)-menu directly, not through the mode-hook.
3042 (prolog-buffer-module, prolog-indent-level)
3043 (prolog-paren-is-the-first-on-line-p, prolog-paren-balance)
3044 (prolog-comment-limits, prolog-goto-comment-column):
3045 Use line-(end|beginning)-position.
3046 (prolog-build-prolog-command): Tighten up regexp.
3047 (prolog-consult-compile): Move make-local-variable into `set'.
3048 (prolog-consult-compile-filter, prolog-goto-next-paren)
3049 (prolog-help-on-predicate, prolog-clause-info)
3050 (prolog-mark-predicate): Don't let+setq.
3051 (prolog-indent-line): Use indent-line-to.
3052 Only call prolog-goto-comment-column if necessary.
3053 (prolog-indent-level): Use bobp.
3054 (prolog-first-pos-on-line): Remove, not used any more.
3055 (prolog-in-string-or-comment): Use syntax-ppss if available.
3056 (prolog-help-on-predicate): Use read-string.
3057 (prolog-goto-predicate-info): Simplify.
3058 (prolog-read-predicate): Use `default' rather than `initial'.
3059 (prolog-temporary-file): Use make-temp-file to close a security hole.
3060 (prolog-toggle-sicstus-sd): New command.
3061 (prolog-electric-underscore, prolog-variables-to-anonymous):
3062 Use dynamic-scoping as it was meant.
3063 (prolog-menu): Move menu definitions to top-level.
3064 Use a toggle-button for Sicstus's source debugger.
3065 Change "Code" to the more usual "Prolog", and hence change "Prolog"
3066 to "System".
3067 (prolog-inferior-menu): Reuse prolog-menu's help menu.
3068 Move other menu definition to top-level.
3069
50f8cd96
TH
30702011-01-13 Tassilo Horn <tassilo@member.fsf.org>
3071
5b355315
TH
3072 * doc-view.el (doc-view-open-text): Use meaningful text buffer
3073 name. Keep original document's directory as default-directory
3074 (bug#6446).
1281bd51
TH
3075 (doc-view-initiate-display): Fall back to normal mode when
3076 doc-view-mode cannot be enabled, also when extracting the document
3077 text into a separate buffer (bug#6446).
5b355315 3078
50f8cd96
TH
3079 * simple.el (shell-command): Don't error out if shell command
3080 buffer contains text with non-nil read-only property when erasing
3081 the buffer.
3082
821f936d
KS
30832011-01-13 Kim F. Storm <storm@cua.dk>
3084
3085 * ido.el (ido-may-cache-directory): Move "too-big" check later.
3086 (ido-next-match, ido-prev-match): Fix stray reordering of matching
3087 items when cycling through the matches.
3088
f754f898
TH
30892011-01-13 Tassilo Horn <tassilo@member.fsf.org>
3090
3091 * dired-x.el (dired-omit-verbose): New defcustom that allows
3092 disabling the omit messages.
3093 (dired-omit-expunge): Use it.
3094
d221e780
CO
30952011-01-13 Christian Ohler <ohler@gnu.org>
3096
3097 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: New files.
3098
a03b542a
CY
30992011-01-13 Chong Yidong <cyd@stupidchicken.com>
3100
3101 * font-lock.el (font-lock-verbose): Default to nil.
3102
25ca2e61
CY
31032011-01-13 Chong Yidong <cyd@stupidchicken.com>
3104
3105 * simple.el (sendmail-user-agent-compose): Move to sendmail.el.
3106 (compose-mail): New arg RETURN-ACTION.
3107 (compose-mail-other-window, compose-mail-other-frame): Likewise.
3108
3109 * mail/sendmail.el (mail-return-action): New var.
3110 (mail-mode): Make it buffer-local.
3111 (mail-bury): Obey it. Move special Rmail window handling to
3112 rmail-mail-return.
3113 (mail, mail-setup): New arg RETURN-ACTION.
3114 (sendmail-user-agent-compose): Move from simple.el.
3115
3116 * mail/rmail.el (rmail-mail-return): New function.
3117 (rmail-start-mail): Pass it to compose-mail.
3118
2a8b13af
CY
31192011-01-12 Chong Yidong <cyd@stupidchicken.com>
3120
b2948a87
CY
3121 * menu-bar.el (menu-bar-custom-menu): Tweak Mule and Customize
3122 menus. Add menu item for customize-themes.
3123
3124 * cus-theme.el (customize-themes):
74a10be5
SM
3125 * emacs-lisp/package.el (package--list-packages):
3126 Use switch-to-buffer.
2a8b13af 3127
059616e5
JB
31282011-01-11 Johan Bockgård <bojohan@gnu.org>
3129
3130 * emacs-lisp/unsafep.el (unsafep): Handle backquoted forms.
3131
04380ff1
SM
31322011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
3133
3134 * progmodes/prolog.el: Fix up coding convention and such.
3135 (prolog-indent-width): Use the same default as in
3136 previous prolog.el rather than tab-width which depends on which buffer
3137 is current when the file is loaded.
3138 (prolog-electric-newline-flag): Only enable if electric-indent-mode
3139 is not available.
3140 (prolog-emacs): Remove. Use (featurep 'xemacs) instead.
3141 (prolog-known-systems): Remove.
3142 (prolog-mode-syntax-table, prolog-inferior-mode-map):
3143 Move initialization into declaration.
3144 (prolog-mode-map): Move initialization into declaration.
3145 Remove system-specific mode-map vars, since they referred to the same
3146 keymap anyway.
3147 (prolog-mode-variables): Obey the user's preference w.r.t
3148 adaptive-fill-mode. Prefer symbol-value to `eval'.
3149 (prolog-mode-keybindings-edit): Add compatibility bindings.
3150 (prolog-mode): Use define-derived-mode. Don't handle mercury here.
3151 (mercury-mode-map): New var.
3152 (mercury-mode, prolog-inferior-mode): Use define-derived-mode.
3153 (prolog-ensure-process, prolog-process-insert-string)
3154 (prolog-consult-compile): Use with-current-buffer.
3155 (prolog-guess-fill-prefix): Simplify data flow.
3156 (prolog-replace-in-string): New function to use instead of
3157 replace-in-string.
3158 (prolog-enable-sicstus-sd): Don't abuse `eval'.
3159 (prolog-uncomment-region): Use `uncomment-region' when available.
3160 (prolog-electric-colon, prolog-electric-dash): Use `eolp'.
3161 (prolog-int-to-char, prolog-char-to-int): New functions to use instead
3162 of int-to-char and char-to-int.
3163 (prolog-mode-hook, prolog-inferior-mode-hook): Don't force font-lock.
3164
e2019526
SB
31652011-01-11 Stefan Bruda <stefan@bruda.ca>
3166
3167 * progmodes/prolog.el: Replace by a whole new file.
3168
3fa173b4
SM
31692011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
3170
3171 * subr.el (eval-after-load): Fix timing for features (bug#7769).
3172 (declare-function, undefined, insert-for-yank)
3173 (replace-regexp-in-string): Follow checkdoc's recommendations.
3174
7973bcea
SM
31752011-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
3176
3177 * calendar/diary-lib.el (diary-mode): Refresh *Calendar* after
3178 refreshing the diary buffer.
3179
0af8c88b
KM
31802011-01-10 Ken Manheimer <ken.manheimer@gmail.com>
3181
7973bcea 3182 * allout.el: Add 2011 to the file copyright.
0af8c88b
KM
3183 (allout-encrypt-string): Prevent encryption from adding an extra
3184 newline at the end of the topic body.
3185 (allout-version): Increment to 2.3.
3186
1a27c64e
MA
31872011-01-10 Michael Albinus <michael.albinus@gmx.de>
3188
7973bcea
SM
3189 * net/dbus.el (dbus-unregister-service): Complete doc.
3190 Fix call of dbus-error signal.
5c0b4070 3191 (dbus-register-property): Use `dont-register' keyword.
1a27c64e 3192
0a203b61
MA
31932011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
3194
3195 * net/dbus.el (dbus-unregister-service): Translate returned
3196 integer into a symbol.
3197 (dbus-register-property): Use `dbus-register-service' to do the
3198 name registration.
3199
895123f5
CY
32002011-01-09 Chong Yidong <cyd@stupidchicken.com>
3201
7973bcea
SM
3202 * progmodes/idlw-help.el (idlwave-help-link): Inherit from link face.
3203 Suggested by Joakim Verona.
12e1f328 3204
732eb50a
CY
3205 * comint.el (comint-highlight-prompt): Inherit minibuffer-prompt.
3206
895123f5
CY
3207 * wid-edit.el (visibility): Replace :on-image and :off-image
3208 widget properties with :on-glyph and :off-glyph, for consistency
3209 with the `visibility' widget.
3210 (widget-toggle-value-create, widget-visibility-value-create):
3211 Merge into a single function `widget-toggle-value-create'.
3212
3213 * cus-edit.el (custom-variable-value-create, custom-visibility)
7973bcea
SM
3214 (custom-face-edit-value-create, custom-face-value-create):
3215 Replace :on-image and :off-image widget properties with :on-glyph and
895123f5
CY
3216 :off-glyph, for consistency with the `visibility' widget.
3217
c8043a22
AS
32182011-01-09 Andreas Schwab <schwab@linux-m68k.org>
3219
3220 * net/ldap.el (ldap-search-internal): Don't use eval.
3221
b7617f6d
CY
32222011-01-09 Chong Yidong <cyd@stupidchicken.com>
3223
973f1f2a
CY
3224 * subr.el (read-char-choice): Use read-key.
3225
b7617f6d
CY
3226 * custom.el (custom-safe-themes): Rename from
3227 custom-safe-theme-files. Add :risky tag.
3228 (load-theme, custom-theme-load-confirm): Save sha1 hashes to
3229 custom-safe-themes, not filenames. Suggested by Stefan Monnier.
3230
900503ae
CY
32312011-01-09 Chong Yidong <cyd@stupidchicken.com>
3232
3233 * tool-bar.el (tool-bar-setup): Remove Help button. Remove label
3234 from Search and add a label to Undo.
3235
3236 * vc/vc-dir.el (vc-dir-tool-bar-map): Rearrange, removing
3237 inappropriate buttons and adding :vert-only tags.
3238
3239 * progmodes/compile.el (compilation-mode-tool-bar-map): Adjust to
3240 removal of Help tool-bar button. Remove Undo button for space.
3241
3242 * info.el (info-tool-bar-map): Add :vert-only tags.
3243
c44d54b3
TH
32442011-01-08 Tassilo Horn <tassilo@member.fsf.org>
3245
3246 * doc-view.el (doc-view-mode-p): Check for png or imagemagick
3247 image backend support. Either of them is fine.
3248
3ef01959
CY
32492011-01-08 Chong Yidong <cyd@stupidchicken.com>
3250
3d91e302
CY
3251 * subr.el (y-or-n-p): Doc fix.
3252
278f6845
CY
3253 * custom.el (custom-safe-theme-files): New defcustom.
3254 (custom-theme-load-confirm): New function.
3255 (load-theme): Load theme using `load', confirming with
3256 custom-theme-load-confirm if necessary.
3257
3ef01959
CY
3258 * subr.el (read-char-choice): New function, factored out from
3259 dired-query and hack-local-variables-confirm.
3260
3261 * dired-aux.el (dired-query):
3262 * files.el (hack-local-variables-confirm): Use it.
3263
3264 * dired-aux.el (dired-compress-file):
3265 * files.el (abort-if-file-too-large, find-alternate-file)
3266 (set-visited-file-name, write-file, backup-buffer)
3267 (basic-save-buffer, basic-save-buffer-2, save-some-buffers)
3268 (delete-directory, revert-buffer, recover-file, kill-buffer-ask):
3269 Use new format string args for y-or-n-p and yes-or-no-p.
3270
7c837933
AS
32712011-01-08 Andreas Schwab <schwab@linux-m68k.org>
3272
3273 * progmodes/compile.el (compilation-error-regexp-alist-alist)
3274 [gcc-include]: Tighten file name match, add match for column
3275 number. (Bug#7806)
6c7ec171 3276 [gnu]: Remove unused group.
7c837933 3277
d0981f82
GM
32782011-01-08 Glenn Morris <rgm@gnu.org>
3279
e7a42417
GM
3280 * makefile.w32-in (EMACSOPT): Add --no-site-lisp.
3281
d0981f82
GM
3282 * makefile.w32-in (EMACSOPT): -batch implies --no-init-file.
3283
d43bb7d3
SS
32842011-01-07 Sam Steingold <sds@gnu.org>
3285
3286 * w32-fns.el (w32-shell-name): Use `shell-file-name' instead of
3287 the `explicit-shell-file-name' because that is the
3288 non-interactive shell.
3289
8c51d2a2
CY
32902011-01-07 Chong Yidong <cyd@stupidchicken.com>
3291
3292 * subr.el (y-or-n-p): Accept format string args.
3293
66b7b0fe
GM
32942011-01-07 Glenn Morris <rgm@gnu.org>
3295
3296 * Makefile.in (EMACSOPT): Add --no-site-lisp.
3297
1e004a83
KM
32982011-01-06 Ken Manheimer <ken.manheimer@gmail.com>
3299
66b7b0fe 3300 * allout.el (allout-back-to-current-heading): Ensure return to
1e004a83 3301 the visible containing topic, rather than a collapsed one.
66b7b0fe 3302 (allout-view-change-hook): Remove hook that was deprecated long ago.
1e004a83
KM
3303 (allout-exposure-change-hook): Remove documentation remarks
3304 concerning removed allout-view-change-hook.
3305 (allout-flag-region): Remove invocation of and documentation
3306 remarks concerning allout-view-change-hook.
3307
b0a8e46b
GM
33082011-01-06 Glenn Morris <rgm@gnu.org>
3309
3310 * vc/vc-bzr.el (vc-bzr-annotate-command, vc-bzr-annotate-time)
3311 (vc-bzr-annotate-extract-revision-at-line):
3312 Handle authors with embedded spaces. (Bug#7792)
3313
875c044a
TH
33142011-01-05 Tassilo Horn <tassilo@member.fsf.org>
3315
3316 * doc-view.el (doc-view-image-width): New variable.
3317 (doc-view-enlarge, doc-view-insert-image): Prefer imagemagick
3318 backend for PNG images, and do dynamic rescaling instead of
3319 reconverting the whole doc.
3320
1f6f7722
GM
33212011-01-05 Glenn Morris <rgm@gnu.org>
3322
3323 * emacs-lisp/rx.el (rx-repeat): Replace CL function.
3324
e9e68fda
KM
33252011-01-04 Ken Manheimer <ken.manheimer@gmail.com>
3326
4896e8fc 3327 * allout.el: Reconcile with changes in line movement behavior for
e9e68fda
KM
3328 long text lines that cross more than a single physical window
3329 line, ie when truncate-lines is nil.
e9e68fda
KM
3330 (allout-next-visible-heading): Provide for change in line-move
3331 behavior on long lines when truncate-lines is nil. In that case,
3332 line-move can wind up on the same textual line when it moves to
3333 the next window line, and moving to the bullet position after the
3334 move yields zero advancement. Add logic to detect and compensate
3335 for the lack of progress.
3336 (allout-current-topic-collapsed-p): move-end-of-line respect for
3337 field boundaries is different when operating with body lines
3338 shorter than window width versus ones greater than window width,
3339 which can yield false negatives in this function. Avoid
3340 difference by applying move-end-of-line while field-text-motion is
3341 inhibited.
3342
3f1b6eb2
GM
33432011-01-04 Glenn Morris <rgm@gnu.org>
3344
3345 * textmodes/rst.el (rst-compile-toolsets):
3346 Add pdf and s5 to option alist.
3347
6388924a
MA
33482011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
3349
7973bcea 3350 * net/dbus.el (dbus-register-property): Add optional parameter
6388924a
MA
3351 dont-register-service. Updated docstring accordingly.
3352
c3e4b003
AS
33532011-01-04 Andreas Schwab <schwab@linux-m68k.org>
3354
3355 * textmodes/rst.el (rst-compile-pdf-preview)
3356 (rst-compile-slides-preview): Remove extra line.
3357
ef4271fe
GM
33582011-01-04 Glenn Morris <rgm@gnu.org>
3359
3360 * textmodes/rst.el (rst-compile-toolsets): Make it a defcustom.
3361 Add `pdf' and `s5' entries. Use `prog.py' if found, otherwise
3362 default to `prog' without a .py extension.
3363 (rst-compile-pdf-preview, rst-compile-slides-preview):
3364 Use program names from rst-compile-toolsets, rather than hard-coding.
3365 (rst-portable-mark-active-p): Fix presumed typo.
3366
7c420169 33672011-01-02 Eli Zaretskii <eliz@gnu.org>
01e62600 3368
7c420169 3369 * term/w32-win.el (dynamic-library-alist): Set up correctly for
5be1c984
EZ
3370 libpng versions both before and after 1.4.0. (Bug#7716)
3371
7c420169 33722011-01-02 Eli Zaretskii <eliz@gnu.org>
2d34d523 3373
6491af11
EZ
3374 * time.el (display-time-mode): Mention display-time-interval in
3375 the doc string. (Bug#7713)
3376
7c420169 33772011-01-02 Kenichi Handa <handa@m17n.org>
8258ae3f
KH
3378
3379 * mail/rmailmm.el (rmail-mime-parse): Perform parsing in
3380 condition-case and return an error message string if something
3381 goes wrong.
2f952059 3382 (rmail-show-mime): Adjust for the above change. Insert the
8258ae3f
KH
3383 header by rmail-mime-insert-header.
3384
7c420169 33852011-01-02 Kenichi Handa <handa@m17n.org>
186f7f0b
KH
3386
3387 * mail/rmailmm.el: New key bindings for rmail-mime-next-item,
3388 rmail-mime-previous-item, and rmail-mime-toggle-hidden.
3389 (rmail-mime-mbox-buffer)
3390 (rmail-mime-view-buffer, rmail-mime-coding-system): New variables.
3391 (rmail-mime-entity): Argument changed. All codes handling an
3392 entity object are changed.
2f952059 3393 (rmail-mime-entity-header, rmail-mime-entity-body): Adjust for
186f7f0b
KH
3394 the above change.
3395 (rmail-mime-entity-children, rmail-mime-entity-handler)
3396 (rmail-mime-entity-tagline): New functions.
3397 (rmail-mime-message-p): New function.
3398 (rmail-mime-save): Bind rmail-mime-mbox-buffer.
3399 (rmail-mime-entity-segment, rmail-mime-next-item)
3400 (rmail-mime-previous-item, rmail-mime-shown-mode)
3401 (rmail-mime-hidden-mode, rmail-mime-raw-mode)
3402 (rmail-mime-toggle-raw, rmail-mime-toggle-hidden)
2f952059
ML
3403 (rmail-mime-insert-tagline, rmail-mime-insert-header):
3404 New functions.
186f7f0b
KH
3405 (rmail-mime-text-handler): Call rmail-mime-insert-text.
3406 (rmail-mime-insert-decoded-text): New function.
3407 (rmail-mime-insert-text): Call rmail-mime-insert-decoded-text.
3408 (rmail-mime-insert-image): Argument changed. Caller changed.
3409 (rmail-mime-image): Call rmail-mime-toggle-hidden.
b762841f 3410 (rmail-mime-set-bulk-data): New function.
186f7f0b
KH
3411 (rmail-mime-insert-bulk): Argument changed.
3412 (rmail-mime-multipart-handler): Return t.
2f952059
ML
3413 (rmail-mime-process-multipart): Argument changed.
3414 Handle "multipart/alternative" here.
186f7f0b
KH
3415 (rmail-mime-process): Argument changed.
3416 (rmail-mime-parse): Bind rmail-mime-mbox-buffer.
3417 (rmail-mime-insert): Argument changed. Handle raw display mode.
3418 (rmail-mime): Argument changed. Handle toggling of raw display
3419 mode.
3420 (rmail-show-mime): Bind rmail-mime-mbox-buffer and
3421 rmail-mime-view-buffer.
3422 (rmail-insert-mime-forwarded-message): Likewise.
3423 (rmail-search-mime-message): Likewise. Don't bind rmail-buffer.
3424
3425 * mail/rmail.el (rmail-show-message-1): If rmail-enable-mime is
3426 non-nil, handle the header in rmail-show-mime-function.
3427
7c420169 34282011-01-02 Leo <sdl.web@gmail.com>
e1a23575 3429
7c420169 3430 * help-fns.el (describe-variable): Fix previous change.
e1a23575 3431
7c420169 34322011-01-02 Juri Linkov <juri@jurta.org>
957e5dd1
JL
3433
3434 * isearch.el (isearch-lazy-highlight-error): New variable.
3435 (isearch-lazy-highlight-new-loop): Compare `isearch-error' and
3436 `isearch-lazy-highlight-error'. Set `isearch-lazy-highlight-error'
3437 to the current value of `isearch-error' (Bug#7468).
3438
7c420169 34392011-01-02 Chong Yidong <cyd@stupidchicken.com>
3c505d31
CY
3440
3441 * help-fns.el (describe-variable): Don't emit trailing whitespace
3442 (Bug#7511).
3443
7c420169 34442011-01-02 Chong Yidong <cyd@stupidchicken.com>
c1cf05f4
CY
3445
3446 * textmodes/rst.el (rst-compile-pdf-preview)
3447 (rst-compile-slides-preview): Use make-temp-file (Bug#7646).
3448
7c420169 34492011-01-02 Kevin Gallagher <Kevin.Gallagher@boeing.com>
c8cbbe27
KG
3450
3451 * emulation/edt-mapper.el: Override mapping of function keys so
3452 that the later call to read-key-sequence works.
3453
7c420169 34542011-01-02 Eli Zaretskii <eliz@gnu.org>
95e4cc85
EZ
3455
3456 * mail/smtpmail.el (smtpmail-send-it): Write queued mail body with
3457 Unix EOLs. (Bug#7589)
3458
7c420169
CY
34592011-01-02 Leo <sdl.web@gmail.com>
3460
3461 * eshell/em-hist.el (eshell-previous-matching-input): Signal error
3462 if point is not behind eshell-last-output-end (Bug#7585).
3463
34642011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
3465
3466 * files.el (file-local-variables-alist):
3467 Make permanent-local (bug#7767).
3468
34692011-01-02 Glenn Morris <rgm@gnu.org>
3470
3471 * version.el (emacs-copyright): Set short copyright year to 2011.
3472
34732011-01-02 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
3474
3475 * mail/mail-utils.el (mail-strip-quoted-names): Avoid clobbering
3476 an existing temp buffer. (Bug#7746)
3477
34782011-01-02 Glenn Morris <rgm@gnu.org>
3479
3480 * mail/mail-utils.el (mail-mbox-from): Handle From: headers with
3481 multiple addresses. (Bug#7760)
3482
fb9a573a
KM
34832011-01-01 Ken Manheimer <ken.manheimer@gmail.com>
3484
e9e68fda 3485 * allout.el (allout-auto-fill): Do not infinitely recurse - use
fb9a573a
KM
3486 do-auto-fill if everything points back to allout-auto-fill.
3487 (allout-mode-deactivate-hook): Declare obsolete, in favor of
3488 standard-formed minor-mode deactivate hook, allout-mode-off-hook.
3489
8d68c659
MA
34902010-12-31 Michael Albinus <michael.albinus@gmx.de>
3491
3492 * net/tramp-sh.el (tramp-methods): Add recursive options to "scpc"
3493 and "scpx".
3494
291cc045
TH
34952010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3496
3497 * doc-view.el (doc-view-set-doc-type): New function refactored
3498 from doc-view-mode.
3499 (doc-view-fallback-mode): New function.
3500 (doc-view-mode): Use it.
3501 (doc-view-mode-maybe): New function that checks if doc-view-mode
3502 can be used and falls back to the next best mode otherwise.
3503
3504 * files.el (auto-mode-alist): Use doc-view-mode-maybe for PDF,
3505 DVI, OpenDocument, and MS Office files.
3506
8ee2dc5c
AS
35072010-12-30 Andreas Schwab <schwab@linux-m68k.org>
3508
3509 * emacs-lisp/rx.el (rx-syntax): Fix typo.
3510
f9e68477
TH
35112010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3512
3513 * doc-view.el (doc-view-toggle-display): Perform rassq-delete-all
3514 on a copy of auto-mode-alist, because that deletes with side
3515 effects.
3516
ad727c81
TH
35172010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3518
7973bcea
SM
3519 * doc-view.el (doc-view-mode, doc-view-toggle-display):
3520 Use normal-mode without doc-view-mode bindings in auto-mode-alist as
ad727c81
TH
3521 fallback instead of hard coding fundamental mode.
3522
b71b7803
TH
35232010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3524
3525 * doc-view.el (doc-view-doc->txt): Handle OpenDocument (or MS
3526 Office) files also for searching.
3527
95e16d17
TH
35282010-12-30 Tassilo Horn <tassilo@member.fsf.org>
3529
3530 * doc-view.el: Implement viewing of OpenDocument (and Microsoft
3531 Office) files. Not yet enabled via auto-mode-list.
3532 (doc-view-unoconv-program): New custom variable.
3533 (doc-view-mode-p): Handle new odf document type.
3534 (doc-view-odf->pdf): New conversion function.
3535 (doc-view-convert-current-doc): Call it for odf files.
3536 (doc-view-mode): Recognize newly supported file extensions.
3537
b191c9d9
MA
35382010-12-30 Michael Albinus <michael.albinus@gmx.de>
3539
3540 * net/tramp.el (tramp-default-method-alist)
3541 (tramp-default-user-alist)
3542 (tramp-local-host-regexp, tramp-prefix-domain-format)
3543 (tramp-prefix-domain-regexp): Set tramp-autoload cookie.
3544
3545 * net/tramp-ftp.el:
3546 * net/tramp-gvfs.el:
3547 * net/tramp-gw.el:
3548 * net/tramp-imap.el:
3549 * net/tramp-sh.el:
3550 * net/tramp-smb.el: Add tramp-autoload cookie for initialisation
3551 code of `tramp-default-method-alist' and `tramp-default-user-alist'.
3552
6e457cc9
KF
35532010-12-29 Karl Fogel <kfogel@red-bean.com>
3554
3555 * saveplace.el (save-place-alist-to-file): Save list sorted and
3556 pretty-printed, so that it is mergeable by line-based text merging,
3557 as suggested by Iain Dalton <iain.dalton {_AT_} gmail.com>.
3558
fb9a573a
KM
35592010-12-28 Ken Manheimer <ken.manheimer@gmail.com>
3560
e9e68fda 3561 * allout.el (allout-v18/19-file-var-hack): Obsolete, remove.
fb9a573a
KM
3562 (allout-mode): Argument "toggle" => "force".
3563 Refine the docstring.
3564 Remove special provisions for reactivation, besides the 'force'
3565 argument.
3566 Consolidate layout provisions coce directly into the activation
3567 condition branch, now that we've removed those provisions.
3568 (allout-unload-function): Explicitly activate the mode before
3569 deactivating, if it's initially deactivated.
3570 (allout-set-buffer-multibyte): Properly prevent byte-compiler
3571 warnings for version of function used only where
3572 set-buffer-multibyte is unavailable.
3573
c940c054
CY
35742010-12-28 Chong Yidong <cyd@stupidchicken.com>
3575
3576 * tool-bar.el (tool-bar-setup): Remove :enable conditions, which
3577 are handled by the menu-bar entries. As before, don't use
3578 :visibile to avoid changing the tool-bar.
3579
4c145d5d
MA
35802010-12-27 Michael Albinus <michael.albinus@gmx.de>
3581
3582 * net/secrets.el (secrets-delete-alias): New defun.
3583
fe99f704
MA
35842010-12-27 Michael Albinus <michael.albinus@gmx.de>
3585
3586 * net/tramp.el (tramp-default-user-alist): Do not add "ssh" based
3587 methods, otherwise ~/.ssh/config would be ignored.
3588
723ee192
SM
35892010-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
3590
3591 * emacs-lisp/rx.el: Make it a superset of sregex.
3592 (rx-constituents): Add `any => "."', mark `repeat' as taking any number
3593 of args, add `regex' alias.
3594 (rx-info): Add arg to distinguish head and standalone forms.
3595 (rx-check, rx-form): Pass the corresponding arg.
3596 (rx-**): Simplify.
3597 (rx-repeat): Make it work for any number of args.
3598 (rx-syntax): Make it accept syntax chars as is.
3599 * obsolete/sregex.el: Move from emacs-lisp/.
3600 * emacs-lisp/re-builder.el: Remove sregex support.
3601 * emacs-lisp/edebug.el (sregexq, rx): Remove redundant defs.
3602
e77714da
EZ
36032010-12-25 Eli Zaretskii <eliz@gnu.org>
3604
3605 * mouse.el (mouse-yank-primary): On MS-Windows, try the (emulated)
3606 PRIMARY first, then the clipboard. (Bug#7699)
3607
17870c01
SM
36082010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
3609
3610 * emacs-lisp/bytecomp.el (byte-compile-output-docform): Fix up use of
3611 print-number-table.
3612
6bfa51ba
CY
36132010-12-21 Chong Yidong <cyd@stupidchicken.com>
3614
d78cdcf7
CY
3615 * help-fns.el (find-lisp-object-file-name): Locate .emacs from
3616 .emacs.elc (Bug#7530).
3617
6bfa51ba
CY
3618 * wid-edit.el (widget-image-find): Remove bogus :ascent spec from
3619 image spec (Bug#7480).
3620
9d9cfd53
DU
36212010-12-21 Daiki Ueno <ueno@unixuser.org>
3622
3623 * obsolete/pgg-parse.el, obsolete/pgg-pgp5.el, obsolete/pgg-pgp.el,
723ee192
SM
3624 * obsolete/pgg-gpg.el, obsolete/pgg-def.el, obsolete/pgg.el:
3625 Move from lisp/.
9d9cfd53 3626
adc0b793
JD
36272010-12-20 Leo <sdl.web@gmail.com>
3628
3629 * dnd.el (dnd-get-local-file-name): Unhex of file name shall
3630 always be performed (Bug#7680).
3631
778ca437
CY
36322010-12-20 Chong Yidong <cyd@stupidchicken.com>
3633
3f95d7ff
CY
3634 * menu-bar.el (menu-bar-kill-ring-save): Make obsolete.
3635 (menu-bar-edit-menu): Bind "Copy" to kill-ring-save. Don't use
3636 mouse-region-match.
778ca437 3637
3f95d7ff 3638 * color.el: Move from gnus/.
94975270 3639
f48fdaad
CY
3640 * vc/diff.el (diff-better-file-name): Function deleted.
3641 abbreviating file names causes problems with shell-quote-argument.
94975270
CY
3642 (diff-no-select): Just use expand-file-name.
3643
3644 * tool-bar.el (tool-bar--image-expression): New function.
3645 (tool-bar-local-item, tool-bar--image-exp): Use it.
3646 (tool-bar-setup): Initialize tool-bar-separator-image-expression.
3647 Use :enable instead of :visible to avoid changing the tool-bar
3648 configuration unnecessarily.
3649
3650 * info.el (info-tool-bar-map): Add separators.
3651
2e306b39
KB
36522010-12-17 Ken Brown <kbrown@cornell.edu>
3653
3654 * loadup.el: Use version numbers in Cygwin build.
3655
395542c6
RT
36562010-12-17 Ryan Twitchell <metatheorem@gmail.com> (tiny change)
3657
3658 * ido.el (ido-file-internal): Ask for confirmation before
3659 overwriting an existing file (Bug#1238).
3660
4039c786
CY
36612010-12-16 Chong Yidong <cyd@stupidchicken.com>
3662
3663 * tool-bar.el (tool-bar-setup): Add separators.
3664
3665 * menu-bar.el (featurep): Use menu-bar-separator.
3666
45720dc3
GM
36672010-12-16 Ken Manheimer <ken.manheimer@gmail.com>
3668
3669 Migrate allout encryption provisions from pgg to epg.
3670
3671 * allout.el (allout-toggle-current-subtree-encryption)
3672 (allout-toggle-subtree-encryption): Adjust docstrings to reflect
3673 defaulting policy and other changes. Change fetch-pass to keymode-cue,
3674 for simpler universal argument interpretation.
35f52ed6 3675 (allout-toggle-subtree-encryption): Adjust docstring to describe
45720dc3
GM
3676 changed encryption provisions. Change fetch-pass to keymode-cue, for
3677 simpler universal argument interpretation. Remove provisions for
3678 handling key type and identity - they'll all be within
3679 allout-encrypt-string or epg/epg or even contained all the way in gpg.
3680 (allout-encrypt-string): Include keymode-cue, for optionally prompting
3681 for keypair recipients (universal argument > 1) and, in addition,
3682 associating the specified recipients with the outline (universal
3683 argument > 4) using a file local variable setting for
3684 'epa-file-encrypt-to'.
3685 Require epa, for recipients handling.
3686 Change how regexp filtering elements are named.
3687 Describe the problem with caching of incorrect symmetric-decryption
3688 keys.
3689 Use the epa-passphrase-callback-function, in case the user is using
3690 GnuPG v1.
3691 Support saving of the selected keypair recipients when invoked with a
3692 keymode-cue > 4.
3693 Remove obsolete arguments 'fetch-pass', 'target-cache-id', 'retried'.
3694 Require 'epa.
3695 Establish epg-context with armoring and default epg-protocol.
3696 Remove all passphrase cache, verification, and hinting code.
3697 (allout-passphrase-verifier-handling, allout-passphrase-hint-handling):
3698 No longer used, delete.
3699 (allout-mode): Adjust docstring to describe changed encryption
3700 provisions. Describe the problem with caching of incorrect
3701 symmetric-decryption keys.
3702 (allout-obtain-passphrase, allout-epg-passphrase-callback-function)
3703 (allout-make-passphrase-state, allout-passphrase-state-passphrase)
3704 (allout-encrypted-key-info, allout-update-passphrase-mnemonic-aids)
3705 (allout-get-encryption-passphrase-verifier, allout-verify-passphrase):
3706 Obsolete, remove.
3707
33088bed
DU
37082010-12-16 Daiki Ueno <ueno@unixuser.org>
3709
3710 * epa-file.el (epa-file-select-keys): Accept 'silent to inhibit
3711 key selection prompt; make 'silent as default (Bug#7487).
3712
bfc49a5b
LL
37132010-12-16 Leo <sdl.web@gmail.com>
3714
7973bcea
SM
3715 * eshell/eshell.el (eshell-directory-name):
3716 Use locate-user-emacs-file (Bug#7578).
bfc49a5b 3717
68251e16
GM
37182010-12-15 Glenn Morris <rgm@gnu.org>
3719
3720 * loadup.el (symbol-file-load-history-loaded): Remove; unused.
3721
99f053cf 37222010-12-15 Jari Aalto <jari.aalto@cante.net>
01c35094 3723 Scott Evans <gse@antisleep.com>
99f053cf
JA
3724
3725 * rect.el (rectange--default-line-number-format)
3726 (rectangle-number-line-callback): New functions.
3727 (rectangle-number-lines): New command, bound to C-x r N (Bug#4382).
3728
5614fd56
CY
37292010-12-15 Chong Yidong <cyd@stupidchicken.com>
3730
3731 * rect.el (operate-on-rectangle-lines, string-rectangle-string):
3732 Delete unused variables.
3733 (move-to-column-force): Remove function obsolete since 21.2.
3734
d68b0220
MA
37352010-12-14 Michael Albinus <michael.albinus@gmx.de>
3736
3737 * net/tramp.el (tramp-temp-buffer-file-name): Make it permanent-local.
3738 (tramp-handle-insert-file-contents): Do not set permanent-local
3739 property.
3740
7973bcea
SM
3741 * net/tramp-cache.el (tramp-persistency-file-name):
3742 Use `locate-user-emacs-file' if fboundp.
d68b0220
MA
3743
3744 * net/tramp-sh.el (tramp-methods): Add "ksu".
3745 (tramp-default-user-alist): Add "ksu". Use `regexp-opt' for
3746 method list.
3747
0273f794
GM
37482010-12-14 Glenn Morris <rgm@gnu.org>
3749
ab274982
GM
3750 * progmodes/js.el: Doc't require font-lock, etags, or easymenu.
3751 (find-tag-marker-ring): Declare.
3752 (js-find-symbol): Require etags.
3753
e758216c
GM
3754 * mail/sendmail.el: Don't require rmail or mailalias when compiling.
3755 Require mail-utils.
3756 (mail-alias-file): Don't autoload. Doc fix.
3757 (mail-bury-selects-summary, mail-send-nonascii): Don't autoload.
3758 (mail-mailer-swallows-blank-line): Default to nil. Doc fix.
3759 Mark as obsolete, and risky.
3760 (mail-setup): Simplify.
3761
53aff12a
GM
3762 * mail/mailalias.el (build-mail-aliases): Make it interactive.
3763 * mail/sendmail.el (build-mail-aliases): Update autoload.
3764
aae4b48c
GM
3765 * dired.el (dired-trivial-filenames, dired-chown-program)
3766 (dired-auto-revert-buffer): Remove autoload cookies.
3767 * mail/sendmail.el (mail-recover-1): Require 'dired.
3768
bff7c1ad
GM
3769 * dired.el (dired-subdir-switches, dired-chown-program)
3770 (dired-use-ls-dired, dired-chmod-program, dired-touch-program):
3771 Make into defcustoms.
3772 (dired-chown-program): Simplify initialization.
3773
0273f794
GM
3774 * mail/mail-utils.el: No need to require lisp-mode, it's in loadup.
3775
bc557672
RF
37762010-12-13 Romain Francoise <romain@orebokech.com>
3777
3778 * net/gnutls.el (gnutls-negotiate): Fix setting of default trustfiles.
3779
7410c270
G
37802010-12-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3781
3782 * net/netrc.el (netrc-point-at-eol): Remove the unused
3783 netrc-point-at-old and netrc-bound-and-true-p bindings.
3784 (netrc-parse): Cache the netrc contents.
3785
f49d1f52 37862010-12-13 Eli Zaretskii <eliz@gnu.org>
11aad4e9
EZ
3787
3788 * subr.el (posn-col-row): Evaluate header-line-format in the
3789 context of the POSITION window's buffer.
3790
f49d1f52 37912010-12-13 Glenn Morris <rgm@gnu.org>
5612fd08
GM
3792
3793 * subr.el (member-ignore-case, run-mode-hooks, insert-for-yank-1)
3794 (with-silent-modifications): Doc fixes.
3795
f49d1f52 37962010-12-13 Michael Albinus <michael.albinus@gmx.de>
158d5945
MA
3797
3798 * net/tramp.el (tramp-action-password, tramp-process-actions):
d68b0220 3799 Revert previous from. Use `save-restriction'.
158d5945 3800
f49d1f52 38012010-12-13 Stephen Berman <stephen.berman@gmx.net>
81ced43d
SB
3802
3803 * calendar/diary-lib.el (diary-list-sexp-entries):
3804 Handle case of no newline at end of file. (Bug#7536)
3805
f49d1f52 38062010-12-13 Glenn Morris <rgm@gnu.org>
b2364eaa
GM
3807
3808 * mail/smtpmail.el (smtpmail-send-it): Revert previous change.
3809
f49d1f52 38102010-12-13 Michael Albinus <michael.albinus@gmx.de>
32802ee1 3811
f49d1f52 3812 * net/tramp.el (tramp-action-password): Delete region, do not narrow.
32802ee1 3813 (tramp-process-actions): Do not widen.
d68b0220 3814
f49d1f52
SM
3815 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3816 Protect buffer-modified value. (Bug#7557)
32802ee1 3817
f49d1f52 38182010-12-13 Jan Moringen <jmoringe@techfak.uni-bielefeld.de>
da9123a8
JM
3819
3820 * log-edit.el (log-edit-changelog-entries):
3821 Regexp quote filename. (Bug#7505)
3822
f49d1f52 38232010-12-13 Tom Breton <tehom@panix.com>
478834e6
TB
3824
3825 * cus-edit.el (custom-save-all):
3826 Bind print-length and print-level to nil. (Bug#7581)
3827
f49d1f52 38282010-12-13 Glenn Morris <rgm@gnu.org>
3c1e62f8 3829
d5e6e0b6
GM
3830 * mouse.el (mouse-menu-major-mode-map, mouse-menu-bar-map):
3831 Run hooks to update menu contents. (Bug#7586)
3832
3c1e62f8
GM
3833 * mail/smtpmail.el (smtpmail-send-it): Avoid colons in the queued
3834 file names, for the sake of MS Windows. (Bug#7588)
3835
f49d1f52 38362010-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
b1816a74
SM
3837
3838 * diff-mode.el (diff-refine-hunk): Make it work when the hunk contains
3839 empty lines without a leading space.
3840
f49d1f52 38412010-12-13 Leo <sdl.web@gmail.com>
86a6e8e0 3842
740af6c9
GM
3843 * dired-aux.el (dired-do-redisplay): Postpone dired-after-readin-hook
3844 while mapping over marks (Bug#6810).
86a6e8e0 3845
f49d1f52 38462010-12-13 Chong Yidong <cyd@stupidchicken.com>
bc60f4de
CY
3847
3848 * image-dired.el (image-dired-db-file)
3849 (image-dired-temp-image-file, image-dired-gallery-dir)
3850 (image-dired-temp-rotate-image-file): Set default values relative
3851 to image-dired-dir (Bug#7518).
3852
f49d1f52 38532010-12-13 Lawrence Mitchell <wence@gmx.li>
3ecba049
LM
3854
3855 * format.el (format-decode-run-method): Pass args FROM and TO, not
3856 point-min and point-max, to shell-command-on-region (Bug#7488).
3857
f49d1f52 38582010-12-13 Jan Djärv <jan.h.d@swipnet.se>
0afb6242
JD
3859
3860 * frame.el (blink-cursor-mode): Make default t for ns.
3861
f49d1f52 38622010-12-13 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
5eae900e
BR
3863
3864 * vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
3865
f49d1f52 38662010-12-13 Chong Yidong <cyd@stupidchicken.com>
74194465 3867
637c2c43
CY
3868 * comint.el (comint-dynamic-list-input-ring)
3869 (comint-dynamic-complete-filename)
3870 (comint-replace-by-expanded-filename)
3871 (comint-dynamic-simple-complete)
3872 (comint-dynamic-list-filename-completions)
3873 (comint-dynamic-list-completions): Doc fix (Bug#7499).
3874
74194465
CY
3875 * subr.el (posn-x-y, posn-object-x-y, posn-object-width-height):
3876 Doc fix (Bug#7471).
3877
f49d1f52 38782010-12-13 Martin Rudalics <rudalics@gmx.at>
6ed96c33
MR
3879
3880 * dired.el (dired-pop-to-buffer): Bind pop-up-frames to nil
3881 (Bug#7533).
3882
01c35094 38832010-12-13 W. Martin Borgert <debacle@debian.org> (tiny change)
11cb1e35
MB
3884
3885 * files.el (auto-mode-alist): Handle .dbk (DocBook) with xml-mode.
3886 (Bug#7491).
3887
f49d1f52 38882010-12-13 Eli Zaretskii <eliz@gnu.org>
2472c214
EZ
3889
3890 * files.el (file-relative-name): Handle UNC file names on
3891 DOS/Windows. (Bug#4674)
3892
f49d1f52 38932010-12-13 Daiki Ueno <ueno@unixuser.org>
f9fe1af9
DU
3894
3895 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
3896 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
3897 (epg-context-set-passphrase-callback): Mention that the callback
3898 is not called when used with GnuPG 2.x.
3899
f49d1f52 39002010-12-13 Glenn Morris <rgm@gnu.org>
ff80efe7
GM
3901
3902 * ps-print.el (ps-line-lengths-internal, ps-nb-pages):
3903 Ensure ps-footer-font-size-internal is initialized.
3904 Call ps-get-page-dimensions before trying to use ps-font-for-text.
3905
f49d1f52 39062010-12-13 Kenichi Handa <handa@m17n.org>
7e116860
KH
3907
3908 * mail/rmailmm.el (rmail-mime-parse): Call rmail-mime-process
3909 within condition-case.
3910 (rmail-show-mime): Don't use condition-case.
3911 (rmail-search-mime-message): New function.
3912 (rmail-search-mime-message-function): Set to
3913 rmail-search-mime-message.
3914
f49d1f52 39152010-12-13 Leo <sdl.web@gmail.com>
bd794450 3916
0fdd1db7 3917 * ido.el (ido-common-initialization): New function. (bug#3274)
bd794450
LL
3918 (ido-mode): Use it.
3919 (ido-completing-read): Call it.
3920
fdbb4d85
KF
39212010-12-12 Karl Fogel <kfogel@red-bean.com>
3922
3923 * bookmark.el (bookmark-name-from-full-record): Rename back to
3924 this original name from `bookmark-name-from-record' reverting part
3925 of 2010-12-08T08:09:27Z!kfogel@red-bean.com / kfogel@red-bean.com-20101208080927-5j9jqnb2xvcw4ogm.
3926 As Drew Adams pointed out, there was no reason to cause churn for
2cf429d0 3927 third-party callers. (Bug#7609)
fdbb4d85 3928
0e5cf2b8
AM
39292010-12-12 Alan Mackenzie <acm@muc.de>
3930
3931 * progmodes/cc-engine.el (c-forward-type): Before scanning a
3932 template arglist, check that the current language supports this.
3933
6961d41c
GM
39342010-12-11 Glenn Morris <rgm@gnu.org>
3935
2b404597
GM
3936 * vc/vc-bzr.el (vc-bzr-state-heuristic): Also check that the executable
3937 state of the file matches. (Bug#7544)
3938 (vc-bzr-register, vc-bzr-checkin)
3939 (vc-bzr-annotate-extract-revision-at-line): Doc fixes.
3940 (vc-directory-exclusion-list): Remove unnecessary eval-after-load.
3941
6961d41c
GM
3942 * textmodes/sgml-mode.el (sgml-xml-guess): Add .xhtml extension.
3943
1e5d2a04
KK
39442010-12-11 Karel Klíč <kklic@redhat.com>
3945
3946 * files.el (auto-mode-alist): Use html-mode for *.xhtml. (Bug#7606)
3947
175069ef
SM
39482010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3949
3950 Derive from prog-mode, use derived-mode-p, and fix up various
3951 minor style issues in lisp/progmodes.
3952
3953 * progmodes/vhdl-mode.el (vhdl-mode):
3954 * progmodes/verilog-mode.el (verilog-mode):
3955 * progmodes/vera-mode.el (vera-mode):
3956 * progmodes/sql.el (sql-mode):
3957 * progmodes/scheme.el (scheme-mode):
3958 * progmodes/perl-mode.el (perl-mode):
3959 * progmodes/octave-inf.el (inferior-octave-mode):
3960 * progmodes/autoconf.el (autoconf-mode):
3961 * progmodes/m4-mode.el (m4-mode):
3962 * progmodes/inf-lisp.el (inferior-lisp-mode):
3963 * progmodes/idlwave.el (idlwave-mode):
3964 * progmodes/icon.el (icon-mode):
3965 * progmodes/idlw-help.el (idlwave-help-mode):
3966 * progmodes/dcl-mode.el (dcl-mode):
3967 * progmodes/idlw-shell.el (idlwave-shell-mode):
3968 * progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-electric-list-mode)
3969 (ebrowse-member-mode, ebrowse-electric-position-mode):
3970 Use define-derived-mode.
3971
3972 * progmodes/xscheme.el (exit-scheme-interaction-mode)
3973 (xscheme-enter-interaction-mode, xscheme-enter-debugger-mode)
3974 (xscheme-debugger-mode-p, xscheme-send-string-1):
3975 * progmodes/tcl.el (inferior-tcl-proc, tcl-current-word)
3976 (tcl-load-file, tcl-restart-with-file):
3977 * progmodes/ps-mode.el (ps-run-running):
3978 * progmodes/gdb-mi.el (gud-watch, gdb-mouse-set-clear-breakpoint):
3979 * progmodes/js.el (js--get-all-known-symbols):
3980 * progmodes/inf-lisp.el (inferior-lisp-proc):
3981 * progmodes/idlwave.el (idlwave-beginning-of-statement)
3982 (idlwave-template, idlwave-update-buffer-routine-info)
3983 (idlwave-update-current-buffer-info)
3984 (idlwave-get-routine-info-from-buffers, idlwave-choose)
3985 (idlwave-scan-class-info, idlwave-fix-keywords)
3986 (idlwave-list-buffer-load-path-shadows):
3987 * progmodes/idlw-toolbar.el (idlwave-toolbar, idlwave-toolbar-add)
3988 (idlwave-toolbar-remove):
3989 * progmodes/idlw-shell.el (idlwave-shell-save-and-action)
3990 (idlwave-shell-file-name, idlwave-shell-electric-debug-all-off)
3991 (idlwave-shell-menu-def):
3992 * progmodes/idlw-complete-structtag.el
3993 (idlwave-prepare-structure-tag-completion):
3994 * progmodes/gud.el (gud-set-buffer):
3995 * progmodes/f90.el (f90-backslash-not-special):
3996 * progmodes/delphi.el (delphi-find-unit): Use derived-mode-p.
3997
3998 * progmodes/xscheme.el (xscheme-start)
3999 (local-set-scheme-interaction-buffer, scheme-interaction-mode):
4000 * progmodes/which-func.el (which-function):
4001 * progmodes/vhdl-mode.el (vhdl-set-style):
4002 * progmodes/verilog-mode.el (verilog-set-compile-command)
4003 (verilog-modify-compile-command, verilog-error-regexp-add-xemacs)
4004 (verilog-set-define, verilog-auto-reeval-locals):
4005 * progmodes/sql.el (sql-product-font-lock, sql-interactive-mode):
4006 * progmodes/simula.el (simula-mode):
4007 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
4008 * progmodes/python.el (python-check, python-mode):
4009 * progmodes/prolog.el (prolog-mode-variables):
4010 * progmodes/gud.el (gud-tooltip-activate-mouse-motions):
4011 * progmodes/ebrowse.el (ebrowse-view-file-other-frame):
4012 * progmodes/delphi.el (delphi-mode):
4013 * progmodes/cc-styles.el (c-setup-paragraph-variables):
4014 * progmodes/cc-mode.el (c-basic-common-init, c-common-init)
4015 (c-font-lock-init): Move make-local-variable to their setq.
4016
4017 * progmodes/vhdl-mode.el (vhdl-write-file-hooks-init)
4018 (vhdl-hs-minor-mode, vhdl-ps-print-init): Fix make-local-variable ->
4019 make-local-hook.
4020 * progmodes/sh-script.el (sh-require-final-newline): Remove.
4021 (sh-set-shell): Don't set require-final-newline since it's already done
4022 by prog-mode.
4023 * progmodes/modula2.el (m2-mode): Don't make m2-end-comment-column
4024 since we never set it.
4025 * progmodes/ebrowse.el (ebrowse-set-tree-indentation):
4026 Use read-string and standard prompt.
4027 * progmodes/dcl-mode.el (dcl-mode-map): Move init into declaration.
4028 * progmodes/meta-mode.el (meta-mode-abbrev-table): Merge init and decl.
4029 (meta-common-mode-syntax-table): Rename from meta-mode-syntax-table.
4030 (meta-common-mode-map): Rename from meta-mode-map.
4031 Remove C-m binding, which is a user preference, not mode specific.
4032 (meta-common-mode): New major mode; replace meta-common-initialization.
4033 * progmodes/js.el (js-mode): Call syntax-propertize rather than messing
4034 around with font-lock.
4035 * progmodes/etags.el (select-tags-table-mode):
4036 Derive from special-mode.
4037 * progmodes/octave-mod.el (octave-mode):
4038 * progmodes/gdb-mi.el (gdb-inferior-io-mode, gdb-threads-mode)
4039 (gdb-memory-mode, gdb-disassembly-mode, gdb-breakpoints-mode)
4040 (gdb-frames-mode, gdb-locals-mode, gdb-registers-mode):
4041 Let define-derived-mode do its job.
4042 * progmodes/cpp.el (cpp-edit-mode-map):
4043 Move initialization into declaration.
4044 (cpp-edit-mode): Use define-derived-mode.
4045 (cpp-edit-load): Use derived-mode-p.
4046 * progmodes/mixal-mode.el (mixal-mode):
4047 * progmodes/f90.el (f90-mode):
4048 * progmodes/cfengine.el (cfengine-mode): Don't bother setting
4049 require-final-newline since prog-mode does it already.
4050 * progmodes/cc-cmds.el (c-update-modeline): Use match-string.
4051 * progmodes/asm-mode.el (asm-mode-map): Fix menu setup.
4052 * progmodes/antlr-mode.el: Require cc-mode upfront.
4053 (antlr-mode-syntax-table, antlr-action-syntax-table): Initialize in
4054 the declaration.
4055 (antlr-directory-dependencies, antlr-show-makefile-rules):
4056 Use derived-mode-p.
4057 (antlr-language-option): Don't assume point-min==1.
4058 (antlr-mode): Use define-derived-mode.
4059 * progmodes/ada-mode.el: Use derived-mode-p.
4060 (ada-mode): Use define-derived-mode.
4061 Use hack-local-variables-hook.
4062
61f91c04
SM
40632010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
4064
4065 * textmodes/texinfo.el (texinfo-mode-map): Bind texinfo-insert-@end.
4066 (texinfo-mode): Don't disable adaptive-fill-mode.
4067 (texinfo-insert-block): Adjust cursor placement for blocks with arg.
4068 (texinfo-insert-@end, texinfo-insert-braces, texinfo-insert-@code)
4069 (texinfo-insert-@dfn, texinfo-insert-@email, texinfo-insert-@emph)
4070 (texinfo-insert-@example, texinfo-insert-@file, texinfo-insert-@item)
4071 (texinfo-insert-@kbd, texinfo-insert-@node, texinfo-insert-@noindent)
4072 (texinfo-insert-@quotation, texinfo-insert-@samp)
4073 (texinfo-insert-@strong, texinfo-insert-@table, texinfo-insert-@var)
4074 (texinfo-insert-@uref): Use define-skeleton.
4075 (texinfo-insert-@-with-arg): Delete.
4076
72a44673
EZ
40772010-12-10 Eli Zaretskii <eliz@gnu.org>
4078
4079 * arc-mode.el (archive-zip-extract): If w32-quote-process-args is
4080 nil, do quote archive member names. (Bug#6144)
4081
ab540f59
GM
40822010-12-10 Glenn Morris <rgm@gnu.org>
4083
66f782de
GM
4084 * files.el (diff-no-select): Declare.
4085
e554b3f8
GM
4086 * mail/emacsbug.el (report-emacs-bug): Use mail-user-agent properties.
4087 (report-emacs-bug-create-existing-bugs-buffer): Avoid free variables.
4088
ab540f59
GM
4089 * comint.el (comint-input-ring-file-name): Doc fix.
4090
f68ab99b
EZ
40912010-12-09 Eli Zaretskii <eliz@gnu.org>
4092
4093 * menu-bar.el (menu-bar-frame-for-menubar, menu-bar-positive-p):
4094 New functions.
61f91c04
SM
4095 (menu-bar-showhide-menu) <menu-bar-mode, showhide-tool-bar>:
4096 Use them instead of `nil' and `>', respectively.
f68ab99b
EZ
4097 (menu-bar-showhide-tool-bar-menu): Use menu-bar-frame-for-menubar
4098 instead of `nil'.
4099 (toggle-menu-bar-mode-from-frame): Use menu-bar-frame-for-menubar
4100 and menu-bar-positive-p instead of `nil' and `>', respectively.
4101 (Bug#1077)
4102
650453a9
VJL
41032010-12-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4104
4105 * whitespace.el (whitespace-newline-mode): Code fix.
4106
28d5de72
GM
41072010-12-09 Glenn Morris <rgm@gnu.org>
4108
4109 * play/landmark.el (lm-print-y,s,noise-int, lm-print-y,s,noise):
4110 Rename functions without commas, update callers.
4111
b596d50d 41122010-12-08 Jeff Dairiki <dairiki@dairiki.org> (tiny change)
16498102 4113
b596d50d
GM
4114 * whitespace.el (whitespace-cleanup-region):
4115 Clean up spaces before tabs. (Bug#7582)
16498102 4116
eff37c5e
KF
41172010-12-08 Karl Fogel <kfogel@red-bean.com>
4118
4119 * bookmark.el: Adjust parameter names and doc strings to resolve
4120 confusion over whether "bookmark" meant a bookmark name or a
4121 bookmark record. Along the way, shorten one function's name for
4122 similar reasons. (Issue #7548)
4123 (bookmark-name-from-record): New name for
4124 `bookmark-name-from-full-record'. All callers changed.
4125 (bookmark-get-bookmark, bookmark-get-bookmark-record)
4126 (bookmark-default-annotation-text, bookmark-prop-get, bookmark-prop-set)
4127 (bookmark-get-annotation, bookmark-set-annotation)
4128 (bookmark-get-filename, bookmark-set-filename)
4129 (bookmark-get-position, bookmark-set-position)
4130 (bookmark-get-front-context-string, bookmark-set-front-context-string)
4131 (bookmark-get-rear-context-string, bookmark-set-rear-context-string)
4132 (bookmark-get-handler, bookmark-edit-annotation, bookmark--jump-via)
4133 (bookmark-handle-bookmark, bookmark-location, bookmark-show-annotation):
4134 Rename `bookmark' parameter to `bookmark-name-or-record', to
4135 clearly show its role, and shorten or adjust doc strings accordingly.
4136 (bookmark-set-name): Same, and pass the parameter directly to
4137 `bookmark-get-bookmark' instead of redundantly doing the callee's work.
4138 (bookmark-default-annotation-text, bookmark-send-edited-annotation)
4139 (bookmark-relocate, bookmark-insert-location, bookmark-insert)
4140 (bookmark-delete): Rename `bookmark' parameter to `bookmark-name',
4141 and in some cases shorten doc string accordingly.
4142 (bookmark-rename): Change `old' and `new' parameters to `old-name'
4143 and `new-name', and adjust an internal variable to avoid confusion.
4144 (bookmark-jump, bookmark-jump-noselect): Clarify `bookmark'
4145 parameter in doc string.
4146
5fe9ebd1
GM
41472010-12-08 Glenn Morris <rgm@gnu.org>
4148
ac8331a7
GM
4149 * progmodes/gdb-mi.el (gdb): Try to initialize comint input history
4150 from gdb's history file. (Bug#7575)
4151
5fe9ebd1
GM
4152 * mail/emacsbug.el (report-emacs-bug):
4153 Try to handle some other mail clients.
4154
33cf0fb2
SM
41552010-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
4156
4157 * files.el (dir-locals-collect-variables): Don't let errors stop us.
4158 Use string-prefix-p.
4159 (file-name-version-regexp): New var.
4160 (file-name-sans-versions):
4161 * jka-cmpr-hook.el (jka-compr-build-file-regexp): Use it,
4162 (jka-compr-get-compression-info): Use dolist.
4163 (jka-compr-compression-info-list): Don't bother specifying
4164 version/backup regexps.
4165
11c31b99
TH
41662010-12-07 Tassilo Horn <tassilo@member.fsf.org>
4167
4168 * simple.el (just-one-space): Make argument n default to 1 if
4169 omitted.
4170
a733fc37
SM
41712010-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
4172
4173 * electric.el (electric-indent-post-self-insert-function):
4174 Delete trailing newlines even if we don't reindent.
4175
88b5a757
DD
41762010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
4177
a733fc37
SM
4178 * minibuffer.el (completion-at-point): Remove the `arg'.
4179 * bindings.el (complete-symbol): Move back from minibuffer.el.
4180
41812010-12-06 Deniz Dogan <deniz.a.m.dogan@gmail.com>
4182
88b5a757
DD
4183 * simple.el (just-one-space): Delete newlines for negative arg.
4184
ce327e48
SM
41852010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
4186
4187 * ansi-color.el (ansi-color-unfontify-region): Replace by trivial def.
4188 (ansi-color-filter-apply): Simplify.
4189 (ansi-color-apply): Use `font-lock-face' rather than `face'.
4190
ac73d955
BR
41912010-12-05 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
4192
4193 * vc/vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
4194
8c44f097
CY
41952010-12-04 Chong Yidong <cyd@stupidchicken.com>
4196
4197 * dired.el (dired-use-ls-dired): Set default to a special
4198 "unspecified" value.
4199 (dired-insert-directory): When called the first time, check
4200 whether "ls --dired" succeeds and set dired-use-ls-dired (Bug#7546).
4201
15af15e5
TO
42022010-12-04 Tak Ota <Takaaki.Ota@am.sony.com>
4203
4204 * replace.el: Add "collect" feature to occur.
4205 (occur-collect-regexp-history): New var.
88b5a757
DD
4206 (occur-read-primary-args): Return a replace string for nlines,
4207 if needed.
15af15e5
TO
4208 (occur): Extend the meaning of nlines.
4209
b2e6e5bd
SM
42102010-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
4211
4212 * progmodes/which-func.el (which-func-ff-hook): Log the error message.
4213 (which-func-update-1): Distinguish symbols from strings.
4214 (which-function): Stay within 80 columns.
4215
ee9355dc
SM
42162010-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4217
7f0ea0ff
SM
4218 * subr.el (with-demoted-errors): Distinguish symbols from strings.
4219
ee9355dc
SM
4220 * newcomment.el (comment-styles): Add docs to each style (bug#7509).
4221 Improve docstring.
4222 (comment-style): Use comment-styles's docs to describe values.
4223
3e972d98
JD
42242010-12-03 Jan Djärv <jan.h.d@swipnet.se>
4225
4226 * term/common-win.el (x-setup-function-keys): Restore ns-new-frame
4227 and ns-show-prefs (Bug#7535).
4228
4229 * term/ns-win.el (global-map): Restore ns-new-frame and ns-show-prefs
4230 bindings (Bug#7535).
4231
c879436a
GM
42322010-12-03 Glenn Morris <rgm@gnu.org>
4233
afe27238
GM
4234 * nxml/nxml-mode.el: Require rng-nxml.
4235 (rng-nxml-mode-init, nxml-enable-unicode-char-name-sets):
4236 Remove declarations.
4237
65beee52
GM
4238 * nxml/nxml-mode.el, nxml/nxml-outln.el, nxml/rng-loc.el:
4239 * nxml/rng-nxml.el, nxml/rng-valid.el:
4240 Remove leading `*' from defcustom docs.
4241
ad961a00
GM
4242 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
4243 (normal-top-level-add-to-load-path, tty-handle-args):
4244 Convert comments to basic doc-strings.
4245
c5fd0ab5
GM
4246 * net/browse-url.el (browse-url-url-at-point)
4247 (browse-url-default-browser): Remove autoload cookies.
4248
f62f063d
GM
4249 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
4250 Remove more undefined cl functions.
4251
c879436a
GM
4252 * vc/diff.el (diff-sentinel): Make new arguments optional.
4253 * ibuf-ext.el (diff-sentinel): Update declaration.
4254
3721e124
DU
42552010-12-03 Daiki Ueno <ueno@unixuser.org>
4256
4257 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
4258 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
4259 (epg-context-set-passphrase-callback): Mention that the callback
4260 is not called when used with GnuPG 2.x.
4261
66feec8b
MA
42622010-12-02 Michael Albinus <michael.albinus@gmx.de>
4263
4264 * net/tramp.el (tramp-local-host-regexp): Add "localhost6".
4265 (tramp-file-name-port): Check also for `tramp-default-port'.
4266 (tramp-get-connection-name): New defun.
4267 (tramp-get-connection-process): Use it.
4268 (tramp-debug-message): Extend function exclude list.
4269 (tramp-drop-volume-letter): Fix doc string.
4270
4271 * net/tramp-cmds.el: Remove solved todo item.
4272
66feec8b
MA
4273 * net/tramp-ftp.el:
4274 * net/tramp-gvfs.el:
4275 * net/tramp-gw.el:
4276 * net/tramp-imap.el:
4277 * net/tramp-smb.el: Fix regexps added to `tramp-default-method-alist'
4278 and `tramp-default-user-alist', respectively.
4279
88b5a757
DD
4280 * net/tramp-gw.el (tramp-gw-open-connection):
4281 Use `tramp-get-connection-name' and `tramp-get-connection-buffer'.
66feec8b
MA
4282
4283 * net/tramp-imap.el (tramp-imap-make-iht): Use just
4284 `tramp-file-name-port'.
4285
4286 * net/tramp-sh.el (tramp-methods): Add recursive options to "pscp"
4287 and "psftp". Exchange "%k" marker with options.
4288 (tramp-do-copy-or-rename-file, tramp-sh-handle-file-local-copy):
4289 Compute size of link target.
35f52ed6
JB
4290 (tramp-do-copy-or-rename-file-out-of-band): Move setting of
4291 `tramp-current-*' up due to gateway methods. Optimize computing of
66feec8b
MA
4292 copy arguments. Use `tramp-get-connection-name' and
4293 `tramp-get-connection-buffer'. Improve debug messages.
4294 (tramp-compute-multi-hops): Remove port determination.
4295 (tramp-maybe-open-connection): Use `tramp-get-connection-name'.
4296
4297 * net/trampver.el: Update release number.
4298
bd77c2ef
GM
42992010-12-02 Glenn Morris <rgm@gnu.org>
4300
05907bb3
GM
4301 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
4302 Avoid infinite loop over windows. (Bug#7492)
4303
bd77c2ef
GM
4304 * progmodes/flymake.el (flymake-check-file-limit):
4305 Allow nil to mean "no limit".
4306 (flymake-check-patch-master-file-buffer): Update for above change.
4307 Allow a .tex file-name extension to be optional.
4308 (flymake-master-tex-init): Also match \include statements.
4309
f7ca27a1
SS
43102010-11-30 Sam Steingold <sds@gnu.org>
4311
4312 * nxml/nxml-mode.el (nxml-parent-document): Add a variable.
4313 (nxml-parent-document-set): A function to set `nxml-parent-document'.
4314 (nxml-mode): Define using `define-derived-mode' instead of `defun'.
4315 (nxml-mode-hook): Remove `defcustom' (auto-defined by
4316 define-derived-mode').
4317 * nxml/rng-valid.el (rng-dtd-trivial-p): Add a helper function for
4318 users who want to call `nxml-parent-document-set'.
4319
402c8a49
CY
43202010-11-27 Chong Yidong <cyd@stupidchicken.com>
4321
4322 * log-edit.el (log-edit-font-lock-keywords): Don't try matching
4323 stand-alone lines, since that is handled by log-edit-match-to-eoh
4324 (Bug#6465).
4325
d1882ac7
EW
43262010-11-27 Eduard Wiebe <usenet@pusto.de>
4327
4328 * dired.el (dired-get-filename): Replace backslashes with slashes
4329 in file names on MS-Windows, needed by `locate'. (Bug#7308)
4330 * locate.el (locate-default-make-command-line): Don't consider
4331 drive letter and root directory part of
4332 `directory-listing-before-filename-regexp'. (Bug#7308)
4333 (locate-post-command-hook, locate-post-command-hook): New defcustoms.
4334
07976ae3 43352010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
09ffa822
SM
4336
4337 * emacs-lisp/smie.el (smie-prec2->grammar): Simplify handling
4338 of :smie-open/close-alist.
4339 (smie-next-sexp): Make it accept a "start token" as argument.
4340 (smie-indent-keyword): Be careful not to misidentify tokens that span
4341 more than one line, as empty lines. Add argument `token'.
4342
07976ae3 43432010-11-27 Kenichi Handa <handa@m17n.org>
3d9ee611 4344
afde451a
KH
4345 * mail/rmailmm.el (rmail-mime-insert-multipart): For unsupported
4346 multipart subtypes, insert all as usual.
4347
3d9ee611
KH
4348 * mail/rmail.el: Require rfc2047.
4349
07976ae3 43502010-11-27 Kenichi Handa <handa@m17n.org>
d1be4ec2
KH
4351
4352 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-type)
4353 (rmail-mime-entity-disposition)
4354 (rmail-mime-entity-transfer-encoding, rmail-mime-entity-header)
4355 (rmail-mime-entity-body, rmail-mime-entity-children): New functions.
4356 (rmail-mime-save): Handle the case that the button's `data' is a
4357 MIME entity.
4358 (rmail-mime-insert-text): New function.
9e0ecdab 4359 (rmail-mime-insert-image): Handle the case that DATA is a MIME entity.
d1be4ec2
KH
4360 (rmail-mime-bulk-handler): Just call rmail-mime-insert-bulk.
4361 (rmail-mime-insert-bulk): New function mostly copied from the old
4362 rmail-mime-bulk-handler.
9e0ecdab
GM
4363 (rmail-mime-multipart-handler): Just call rmail-mime-process-multipart.
4364 (rmail-mime-process-multipart): New function mostly copied from
d1be4ec2
KH
4365 the old rmail-mime-multipart-handler.
4366 (rmail-mime-show): Just call rmail-mime-process.
9e0ecdab 4367 (rmail-mime-process): New function mostly copied from the old
d1be4ec2
KH
4368 rmail-mime-show.
4369 (rmail-mime-insert-multipart, rmail-mime-parse)
4370 (rmail-mime-insert, rmail-show-mime)
4371 (rmail-insert-mime-forwarded-message)
4372 (rmail-insert-mime-resent-message): New functions.
4373 (rmail-insert-mime-forwarded-message-function): Set to
4374 rmail-insert-mime-forwarded-message.
4375 (rmail-insert-mime-resent-message-function): Set to
4376 rmail-insert-mime-resent-message.
4377
4378 * mail/rmailsum.el: Require rfc2047.
4379 (rmail-header-summary): Handle multiline Subject: field.
4380 (rmail-summary-line-decoder): Change the default to
4381 rfc2047-decode-string.
4382
4383 * mail/rmail.el (rmail-enable-mime): Change the default to t.
4384 (rmail-mime-feature): Change the default to `rmailmm'.
4385 (rmail-quit): Delete the specifal code for rmail-enable-mime.
4386 (rmail-display-labels): Likewise.
4387 (rmail-show-message-1): Check rmail-enable-mime, and use
4388 rmail-show-mime-function for a MIME message. Decode the headers
4389 according to RFC2047.
4390
07976ae3 43912010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
33aeea0e
SM
4392
4393 * progmodes/which-func.el (which-func-imenu-joiner-function):
4394 Return a string, as expected.
4395 (which-function-mode): Make sure we stop any previous timer before
4396 starting a new one.
4397
07976ae3 43982010-11-27 Michael Albinus <michael.albinus@gmx.de>
e40fc745
MA
4399
4400 * net/tramp.el (tramp-default-method-alist)
33aeea0e
SM
4401 (tramp-default-user-alist, tramp-default-proxies-alist):
4402 Adapt custom options type. (Bug#7445)
e40fc745 4403
07976ae3 44042010-11-27 Chong Yidong <cyd@stupidchicken.com>
ae3da38a
CY
4405
4406 * progmodes/python.el: Add Ipython support (Bug#5390).
4407 (python-shell-prompt-alist)
4408 (python-shell-continuation-prompt-alist): New options.
4409 (python--set-prompt-regexp): New function.
33aeea0e
SM
4410 (inferior-python-mode, run-python, python-shell):
4411 Require ansi-color. Use python--set-prompt-regexp to set the comint
ae3da38a
CY
4412 prompt based on the Python interpreter.
4413 (python--prompt-regexp): New var.
4414 (python-check-comint-prompt)
4415 (python-comint-output-filter-function): Use it.
4416 (run-python): Use a pipe (Bug#5694).
4417
07976ae3 44182010-11-27 Chong Yidong <cyd@stupidchicken.com>
1d851570
CY
4419
4420 * progmodes/python.el (run-python): Doc fix.
4421 (python-keep-current-directory-in-path): New var (Bug#7454).
4422
07976ae3 44232010-11-27 Chong Yidong <cyd@stupidchicken.com>
76dabd37
CY
4424
4425 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
4426 Prompt user before actually printing.
4427
0b839457
GM
44282010-11-27 Glenn Morris <rgm@gnu.org>
4429
4430 * startup.el (package-enable-at-startup, package-initialize):
4431 Remove unnecessary declarations.
4432
96107967
EZ
44332010-11-27 Eli Zaretskii <eliz@gnu.org>
4434
4435 * international/characters.el (glyphless-char-display-control):
4436 Exclude newline and TAB from the c0-control group.
4437
a140ec5f
GM
44382010-11-27 Glenn Morris <rgm@gnu.org>
4439
82445062
GM
4440 * mail/sendmail.el (build-mail-aliases): Doc fix for autoload.
4441 (expand-mail-aliases): Remove unnecessary autoload.
4442
08b5f072
GM
4443 * allout.el (allout-command-prefix, allout-mode-map): Declare.
4444
e96d4147
GM
4445 * shell.el (shell-dir-cookie-re): Move definition before use.
4446
a140ec5f
GM
4447 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
4448 Replace undefined CL functions.
4449
a2249e66
EZ
44502010-11-26 Eli Zaretskii <eliz@gnu.org>
4451
228482b2
EZ
4452 * simple.el (prog-mode): Set bidi-paragraph-direction to
4453 left-to-right.
4454
a2249e66
EZ
4455 * term/pc-win.el (x-get-selection-internal): Emulation for MS-DOS.
4456
d01d7b8d
GM
44572010-11-26 Glenn Morris <rgm@gnu.org>
4458
4459 * calendar/diary-lib.el (diary-outlook-format-1): New function, so that
4460 diary-outlook-formats can be sensitive to calendar-date-style.
4461 (diary-outlook-formats): Simplify the default setting.
4462 (diary-from-outlook-internal): Pass subject and body as arguments.
4463 Use dolist rather than dotimes. Don't save the diary buffer.
4464 (diary-from-outlook-gnus, diary-from-outlook-rmail):
4465 Pass subject and body as explicit arguments to the -internal function.
4466
b3ea64a3
LMI
44672010-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4468
4469 * mail/rfc2368.el (rfc2368-parse-mailto-url): Unfold URLs before
4470 parsing them. This makes mailto:...?subject=foo\nbar work.
4471
d5e7b0d8
SM
44722010-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4473
4474 * vc/diff.el (diff): Fix last change.
4475
872ab164
SM
44762010-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4477
4478 * emacs-lisp/pcase.el: Improve pcase-let. Use "pcase--" prefix.
4479 (pcase--dontcare-upats): New var.
4480 (pcase-let, pcase-let*): Generate better code.
4481 Accept the same bodies as `let'.
4482 (pcase-dolist): New macro.
4483 (pcase--trivial-upat-p): New helper function.
4484 (pcase--expand): Strip leading "(let nil" if any.
4485
876d1684
LMI
44862010-11-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4487
7bd9b9d8
LMI
4488 * mail/mailclient.el (browse-url): Require.
4489 (mailclient-send-it): Bind `browse-url-mailto-function' to nil to
4490 use the external browser function to send the mail (bug#7469).
4491
876d1684
LMI
4492 * net/browse-url.el (browse-url-browser-function): Revert the
4493 default back to the previous value, since the new value broke
4494 mailclient.el.
4495 (browse-url-mailto-function): New variable for mailto: URLs.
4496 (browse-url): Use the new variable for mailto: URLs.
4497
6e13206c
SM
44982010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4499
4500 * eshell/esh-cmd.el (eshell-parse-command):
4501 * eshell/esh-arg.el (eshell-parse-arguments):
4502 * eshell/em-script.el (eshell-source-file):
4503 Use with-silent-modifications.
4504
3d92f44e
CY
45052010-11-23 Chong Yidong <cyd@stupidchicken.com>
4506
4507 * vc/vc.el (vc-merge): Remove optional arg PROMPT. Always prompt
4508 for a merge location.
4509
4510 * vc/vc-bzr.el (vc-bzr-pull): Remove unused var.
4511 (vc-bzr-merge-branch): Always prompt.
4512 (vc-bzr-async-command): Use the full branch filename.
4513
8f5f1e68
SM
45142010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4515
4516 * shell.el (shell): Use current-buffer by default if it's already
4517 a shell mode buffer and its process is dead.
ee9355dc 4518 Suggested by Jose E. Marchesi <jemarch@gnu.org>.
8f5f1e68 4519
331460ac
TH
45202010-11-23 Tassilo Horn <tassilo@member.fsf.org>
4521
8f5f1e68
SM
4522 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
4523 Mention that the keywords should be comma separated.
331460ac 4524
2c3160c5
CY
45252010-11-23 Chong Yidong <cyd@stupidchicken.com>
4526
4527 * vc/vc.el (vc-merge): Use vc-BACKEND-merge-branch if available.
4528 Accept optional prefix arg meaning to prompt for a command.
4529 (vc-update): Use vc-BACKEND-pull if available. Accept optional
4530 prefix arg meaning to prompt for a command.
4531 (vc-pull): Alias for vc-update.
4532
4533 * vc/vc-bzr.el (vc-bzr-admin-branchconf, vc-bzr-history): New vars.
4534 (vc-bzr--branch-conf, vc-bzr-async-command, vc-bzr-pull)
4535 (vc-bzr-merge-branch): New functions, implementing merge-branch
4536 and pull operations.
4537
b2e44819
SM
45382010-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
4539
8a0eb852
SM
4540 * Makefile.in: Fix up last merge.
4541
b2e44819
SM
4542 * vc/diff.el (diff-old-temp-file, diff-new-temp-file): Remove.
4543 (diff-sentinel): Get them as arguments instead.
4544 (diff-old-file, diff-new-file, diff-extra-args): Remove.
4545 (diff-file-local-copy, diff-better-file-name): New funs.
4546 (diff-no-select): Rename from diff-into-buffer.
4547 Support buffers additionally to files. Move `buf' arg. Don't display buf.
4548 Prefer closures to buffer-local variables.
4549 (diff): Adjust accordingly.
4550 (diff-buffer-with-file): Move from files.el.
4551 * files.el (diff-buffer-with-file): Move to vc/diff.el.
4552 (diff-buffer-internal): Remove.
4553 (diff-buffer-buffer): Remove.
4554 (save-some-buffers-action-alist): Use diff-no-select so as not to guess
4555 the buffer name used, and so as not to mess up windows and frames.
4556
6a7662bb
BR
45572010-11-22 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
4558
4559 * files.el: Make revert work with diff-buffer-with-file (bug#7277).
4560 (diff-buffer-internal): New function extracted from diff-buffer-with-file
4561 (diff-buffer-with-file): Use it.
4562 * vc/diff.el (diff-into-buffer): New fun, extracted from diff.
4563 (diff): Use it.
4564
c799747b
TH
45652010-11-22 Tassilo Horn <tassilo@member.fsf.org>
4566
4567 * textmodes/reftex-ref.el (reftex-goto-label): Use the current
4568 \ref's or \pageref's value as default instead of initial input.
4569
e274eb13
MA
45702010-11-21 Michael Albinus <michael.albinus@gmx.de>
4571
4572 * files.el (backup-by-copying-when-mismatch): The default value is
4573 now t.
4574
4575 * startup.el (normal-top-level):
4576 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
4577 `backup-by-copying-when-mismatch'.
4578
77af54d7
JD
45792010-11-21 Jan Djärv <jan.h.d@swipnet.se>
4580
4581 * tool-bar.el (tool-bar-setup): Remove save as, print and customize.
4582
4e2f7d2a
CY
45832010-11-21 Deniz Dogan <deniz.a.m.dogan@gmail.com>
4584
6a7662bb
BR
4585 * progmodes/python.el (python-font-lock-keywords):
4586 Highlight top-level augmented assignments (Bug#6445).
4e2f7d2a 4587
b7d1e144
JD
45882010-11-21 Jan Djärv <jan.h.d@swipnet.se>
4589
4590 * term/ns-win.el (ns-right-control-modifier)
4591 (ns-right-command-modifier): Defvar them.
4592
4593 * cus-start.el (all): Add ns-right-control-modifier and
4594 ns-right-command-modifier (Bug#7458).
4595
c11cc37a
GM
45962010-11-20 Glenn Morris <rgm@gnu.org>
4597
4598 * emacs-lisp/authors.el (authors-ignored-files)
4599 (authors-valid-file-names, authors-renamed-files-alist): Add entries.
4600
7dcd777e
TH
46012010-11-20 Tassilo Horn <tassilo@member.fsf.org>
4602
4603 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs)
4604 (report-emacs-bug-parse-query-results)
4605 (report-emacs-bug-create-existing-bugs-buffer): Pass through
4606 keywords used for querying the bug database to show them in the
4607 existing bugs buffer.
4608
d2bd5189
JD
46092010-11-20 Jan Djärv <jan.h.d@swipnet.se>
4610
4611 * tool-bar.el (tool-bar-setup): Add some :vert-only keywords.
4612
4613 * info.el (info-tool-bar-map): Add some :vert-only keywords.
4614
0e7c0582
EZ
46152010-11-20 Eli Zaretskii <eliz@gnu.org>
4616
4617 * international/characters.el (glyphless-char-display-control):
4618 Make it a defcustom, with update-glyphless-char-display as its
4619 :set attribute.
4620 (top level): Don't call update-glyphless-char-display.
4621
7398933f
MA
46222010-11-20 Michael Albinus <michael.albinus@gmx.de>
4623
4624 Sync with Tramp 2.2.0.
4625
4626 * net/tramp.el (tramp-handle-insert-file-contents): Don't use
4627 `file-remote-p' (due to compatibility).
4628
4629 * net/tramp-sh.el (tramp-do-copy-or-rename-file-directly)
4630 (tramp-do-copy-or-rename-file-out-of-band): Use `ignore-errors'.
4631
4632 * net/trampver.el: Update release number.
4633
1cd64aae
EZ
46342010-11-20 Eli Zaretskii <eliz@gnu.org>
4635
4636 * faces.el (glyphless-char): Define value for `pc'.
4637
614316a7
TH
46382010-11-20 Tassilo Horn <tassilo@member.fsf.org>
4639
26214810
EZ
4640 Implemented a bug querying mechanism.
4641 * mail/emacsbug.el (report-emacs-bug-tracker-url): New variable.
614316a7
TH
4642 (report-emacs-bug-create-existing-bugs-buffer)
4643 (report-emacs-bug-parse-query-results)
26214810 4644 (report-emacs-bug-query-existing-bugs): New functions.
614316a7 4645
9061f667
TH
46462010-11-19 Tassilo Horn <tassilo@member.fsf.org>
4647
4648 * textmodes/reftex-ref.el (reftex-goto-label): If point is inside
4649 a \ref{} or \pageref{} macro, then use its value as initial input.
4650
1265829e
JB
46512010-11-19 Jay Belanger <jay.p.belanger@gmail.com>
4652
4653 * calc/calc-units.el (math-build-units-table-buffer):
4654 calc/README: Mention that the TeX specific units won't use the
4655 `tex' prefix in TeX mode.
4656 calc/calc-lang.el (math-variable-table): Don't use the `tex'
4657 prefix for units in TeX mode.
4658
9fca7811
SM
46592010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4660
4661 * simple.el (kill-new, kill-append, kill-region):
76dabd37
CY
4662 * comint.el (comint-kill-region): Make the yank-handler argument
4663 obsolete.
9fca7811 4664
4a47c275 46652010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
88bf1bec 4666
e2f454c4
SM
4667 * emacs-lisp/smie.el (smie-bnf-classify): Signal errors for tokens
4668 that are both openers (resp. closers) and something else.
4669 (smie-grammar): Loosen definition of valid values.
4670 (smie-next-sexp, smie-down-list, smie-blink-matching-open)
4671 (smie-indent--parent, smie-rule-parent, smie-indent-keyword)
4672 (smie-indent-after-keyword): Adjust users.
4673 (smie-indent-keyword): Don't indent empty lines.
4674
88bf1bec
SM
4675 * vc-hg.el (vc-hg-program): New var.
4676 Suggested by Norman Gray <norman@astro.gla.ac.uk>.
4677 (vc-hg-state, vc-hg-working-revision, vc-hg-command): Use it.
4678
4a47c275 46792010-11-18 Glenn Morris <rgm@gnu.org>
4c0eb0d3
GM
4680
4681 * emacs-lisp/autoload.el (autoload-find-destination): The function
4682 coding-system-eol-type may return non-numeric values. (Bug#7414)
4683
4a47c275 46842010-11-18 Ulrich Mueller <ulm@gentoo.org>
bf6442c3
UM
4685
4686 * server.el (server-force-stop): Ensure the server is stopped (Bug#7409).
4687
4a47c275 46882010-11-18 Eli Zaretskii <eliz@gnu.org>
e68afd74
EZ
4689
4690 * subr.el (posn-col-row): Pay attention to header line. (Bug#7390)
4691
4a47c275 46922010-11-18 Chong Yidong <cyd@stupidchicken.com>
de02effd
CY
4693
4694 * textmodes/picture.el (picture-mouse-set-point): Don't use
4695 posn-col-row; explicitly compute the motion based on the posn at
4696 the window-start (Bug#7390).
4697
4a47c275 46982010-11-18 Glenn Morris <rgm@gnu.org>
f0a698ab
GM
4699
4700 * novice.el (disabled-command-function):
4701 Fix 2009-11-15 change. (Bug#7384)
4702
4a47c275 47032010-11-18 Glenn Morris <rgm@gnu.org>
29f30ab7
GM
4704
4705 * calendar/calendar.el (diary-iso-date-forms): Make elements
4706 mutually exclusive. (Bug#7377)
4707
4a47c275 47082010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
10b40d2e
SM
4709
4710 * emacs-lisp/smie.el (smie-prec2->grammar): Obey equality constraints
4711 when filling the remaining "unconstrained" values.
4712
4a47c275 47132010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
7bea8c7a 4714
acef0722
SM
4715 * emacs-lisp/bytecomp.el (byte-compile-warnings): Simplify the
4716 safety predicate.
4717
4718 * files.el (safe-local-variable-p): Gracefully handle errors.
4719
7bea8c7a
SM
4720 * emacs-lisp/smie.el (smie-rule-parent, smie-indent--rule):
4721 Use smie-indent-virtual when indenting relative to an opener.
4722 (smie-rule-separator): Use smie-rule-parent.
4723 (smie-indent-keyword): Consult rules, even for openers at bol.
4724 (smie-indent-comment-close): Try to align closer's content.
4725
4a47c275 47262010-11-18 Glenn Morris <rgm@gnu.org>
b010e1ba
GM
4727
4728 * ls-lisp.el (ls-lisp-dired-ignore-case): Make it an obsolete alias.
4729
4a47c275 47302010-11-18 Glenn Morris <rgm@gnu.org>
c790cad4 4731
aa514451
GM
4732 * printing.el (pr-menu-bind): Doc fix.
4733
32b636de
GM
4734 * speedbar.el (speedbar-toggle-images): Doc fix.
4735
bc1d5cdf
GM
4736 * progmodes/python.el (python-shell): Doc fix.
4737
c790cad4
GM
4738 * wid-edit.el (widget-field-use-before-change)
4739 (widget-use-overlay-change): Doc fixes.
4740
c51bb5d2
SM
47412010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4742
8bbb7dd8
SM
4743 Minor cleanup to improve style.
4744 * textmodes/rst.el (rst-update-section): Use point-marker.
4745 (rst-get-decoration): Eliminate unneeded assignment.
4746 (rst-promote-region, rst-straighten-decorations)
4747 (rst-section-tree, rst-adjust): Use point-marker.
4748 (rst-toc-mode-mouse-goto): Avoid setq.
4749 (rst-shift-region-guts, rst-shift-region-left)
4750 (rst-iterate-leftmost-paragraphs, rst-iterate-leftmost-paragraphs-2)
4751 (rst-convert-bullets-to-enumeration): Use copy-marker.
4752
b7e270a2
SM
4753 * minibuffer.el (completion-fail-discreetly): New var.
4754 (completion--do-completion): Use it.
4755
c51bb5d2
SM
4756 * electric.el (electric-pair-pairs): New var.
4757 (electric-pair-post-self-insert-function): Use it.
4758 (electric-layout-post-self-insert-function): Don't insert a before
4759 newline unless it's actually needed.
4760
c04f2ac0
SM
47612010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
4762
bac2de0f
SM
4763 * progmodes/python.el (run-python): Explain why we remove the current
4764 directory from sys.path. Suggested by Eric Hanchrow <erich@cozi.com>.
4765
c04f2ac0
SM
4766 * progmodes/grep.el (grep-regexp-alist): Tighten the regexp (bug#7378).
4767
7100ff98
SM
47682010-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4769
03f70355
SM
4770 * progmodes/octave-mod.el: Rely on elecric-*-modes.
4771 (octave-mode-map): Don't bind ;, SPC, and LF.
4772 (octave-auto-indent, octave-auto-newline): Remove.
4773 (electric-layout-rules): Declare.
4774 (octave-mode): Set electric-layout-rules.
4775 (octave-indent-new-comment-line): Use reindent-then-newline-and-indent.
4776 (octave-reindent-then-newline-and-indent, octave-electric-semi)
4777 (octave-electric-space): Remove.
4778
7100ff98
SM
4779 * electric.el (electric-layout-mode): New minor mode.
4780 (electric--after-char-pos): New function.
4781 (electric-indent-post-self-insert-function): Use it.
4782 (electric-layout-rules): New var.
4783 (electric-layout-post-self-insert-function): New function.
4784 (electric-indent-mode): Make them interact better.
4785
cca982d0
SM
47862010-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4787
4788 * emacs-lisp/checkdoc.el (checkdoc-syntax-table): Fix last change.
4789 (checkdoc-sentencespace-region-engine, checkdoc-this-string-valid)
4790 (checkdoc-proper-noun-region-engine): Use with-syntax-table.
4791
84992dff
AM
47922010-11-15 Agustín Martín <agustin.martin@hispalinux.es>
4793
4794 * textmodes/flyspell.el (flyspell-generic-progmode-verify):
4795 Make sure to check inside the word (Bug#6761).
4796
afa42fe3
CY
47972010-11-14 Chong Yidong <cyd@stupidchicken.com>
4798
4799 * startup.el (command-line): If the cursorColor resource is set,
4800 change the cursor face-spec (Bug#7392).
4801
a798747d 48022010-11-13 Ken Manheimer <ken.manheimer@gmail.com>
1c9b9df0 4803
a798747d 4804 The main features of the following allout.el changes are:
1c9b9df0
KM
4805 - implement user customization for the allout key bindings
4806 - add a customization control by which the user can inhibit use of
a798747d 4807 a trailing Ctrl-H, so by default it's reserved for use with
1c9b9df0
KM
4808 describe-prefix-bindings
4809 - adapt to new version of called-interactively-p, while
a798747d 4810 maintaining backwards compatibility with old version
01c35094 4811 - fix hotspot navigation so i works properly with meta-modified keys.
1c9b9df0 4812
a798747d
GM
4813 * allout.el (allout-keybindings, allout-bind-keys)
4814 (allout-keybindings-binding, allout-prefixed-keybindings)
4815 (allout-unprefixed-keybindings, allout-preempt-trailing-ctrl-h)
4816 (allout-keybindings-list, allout-mode-map-adjustments)
4817 (allout-setup-mode-map): Establish allout-mode keymaps as user
4818 customizable settings, and also establish a customizable setting which
4819 regulates whether or not a trailing control-h is reserved for use with
4820 describe-prefix-bindings - and inhibit it by default, so that control-h
4821 *is* reserved for describe-prefix-bindings unless the user changes it.
4822
4823 * allout.el (allout-hotspot-key-handler): Distinguish more explicitly
4824 and accurately between modified and unmodified events, and handle
1c9b9df0
KM
4825 modified events more comprehensively.
4826
a798747d
GM
4827 * allout.el (allout-substring-no-properties):
4828 Alias to use or provide version of `substring-no-properties'.
4829 (allout-solicit-alternate-bullet): Use `allout-substring-no-properties'.
1c9b9df0 4830
a798747d
GM
4831 * allout.el (allout-next-single-char-property-change):
4832 Alias to use or provide version of `next-single-char-property-change'.
4833 (allout-annotate-hidden, allout-hide-by-annotation):
4834 Use `allout-next-single-char-property-change'.
1c9b9df0 4835
a798747d
GM
4836 * allout.el (allout-select-safe-coding-system):
4837 Alias to use or provide version of `select-safe-coding-system'.
4838 (allout-toggle-subtree-encryption):
4839 Use `allout-select-safe-coding-system'.
1c9b9df0 4840
a798747d
GM
4841 * allout.el (allout-set-buffer-multibyte):
4842 Alias to use or provide version of `set-buffer-multibyte'.
4843 (allout-encrypt-string): Use `allout-set-buffer-multibyte'.
1c9b9df0 4844
a798747d
GM
4845 * allout.el (allout-called-interactively-p): Macro for using the
4846 different versions of called-interactively-p identically, depending on
4847 the subroutine's argument signature.
4848 (allout-back-to-current-heading, allout-beginning-of-current-entry):
4849 Use `(interactive "p")' instead of `(called-interactively-p)'.
1c9b9df0 4850
a798747d
GM
4851 * allout.el (allout-init, allout-ascend, allout-end-of-level)
4852 (allout-previous-visible-heading, allout-forward-current-level)
4853 (allout-backward-current-level, allout-show-children):
4854 Use `allout-called-interactively-p' instead of `called-interactively-p'.
1c9b9df0 4855
a798747d
GM
4856 * allout.el (allout-before-change-handler):
4857 Exempt edits to the (overlaid) character after the allout outline
4858 bullet from edit confirmation prompt.
1c9b9df0 4859
a798747d
GM
4860 * allout.el (allout-add-resumptions):
4861 Ensure that it respects correct buffer for keybindings.
1c9b9df0 4862
a798747d
GM
4863 * allout.el (allout-beginning-of-line):
4864 Use `allout-previous-single-char-property-change' alias for the sake of
4865 diverse compatibility.
1c9b9df0 4866
a798747d
GM
4867 * allout.el (allout-end-of-line):
4868 Use `allout-mark-active-p' to encapsulate respect for mark activity.
1c9b9df0 4869
0216b738
CY
48702010-11-13 Chong Yidong <cyd@stupidchicken.com>
4871
4872 * frame.el (frame-notice-user-settings): Don't clobber other
4873 user-set parameters when calling face-set-after-frame-default in
4874 response to background-color parameter (Bug#7373).
4875
0eb025fb
EZ
48762010-11-13 Eli Zaretskii <eliz@gnu.org>
4877
4878 * international/characters.el (glyphless-char-display-control):
88b5a757 4879 Rename from glyphless-char-control; all users changed. Doc fix.
4a9f985c
EZ
4880 Signal an error if display method is not one of the recognized
4881 symbols.
0eb025fb 4882
6e060cee
MA
48832010-11-13 Michael Albinus <michael.albinus@gmx.de>
4884
4885 * net/tramp-compat.el (tramp-compat-line-beginning-position)
4886 (tramp-compat-line-end-position): Remove them.
4887
4888 * net/tramp.el (tramp-parse-rhosts-group)
4889 (tramp-parse-shosts-group, tramp-parse-sconfig-group)
4890 (tramp-parse-hosts-group, tramp-parse-passwd-group)
4891 (tramp-parse-netrc-group, tramp-parse-putty-group)
4892 * net/tramp-cmds.el (tramp-append-tramp-buffers)
4893 * net/tramp-sh.el (tramp-do-file-attributes-with-ls)
4894 (tramp-sh-handle-file-selinux-context)
4895 (tramp-sh-handle-file-name-all-completions)
4896 (tramp-sh-handle-insert-directory)
4897 (tramp-sh-handle-expand-file-name, tramp-find-executable)
4898 (tramp-wait-for-output, tramp-send-command-and-read)
4899 * net/tramp-smb.el (tramp-smb-read-file-entry)
4900 (tramp-smb-get-cifs-capabilities): Use `point-at-eol'.
4901
4902 * net/tramp-sh.el (tramp-sh-handle-insert-directory) Use
4903 `point-at-bol'.
4904 (tramp-remote-coding-commands): Add an alternative using "base64
4905 -d -i". This is needed for older base64 versions from GNU
4906 coreutils. Reported by Klaus Reichl
4907 <Klaus.Reichl@thalesgroup.com>.
4908
8da5345f
HN
49092010-11-13 Hrvoje Niksic <hniksic@xemacs.org>
4910
4911 * simple.el (count-words-region): New function.
4912
c156a63b
SM
49132010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4914
78835dd0
SM
4915 * shell.el (shell-dir-cookie-re): New custom variable.
4916 (shell-dir-cookie-watcher): New function.
4917
ebff325e
SM
4918 * vc/vc.el (vc-deduce-backend): Use default-directory in shell-mode
4919 and compilation-mode (bug#7350).
4920
4e9e1584
SM
4921 * vc/smerge-mode.el (smerge-refine): Choose better default part to
4922 highlight when one of them is empty.
4923
4490f875
SM
4924 * skeleton.el (skeleton-read): Don't use `newline' since it may strip
4925 trailing space.
4926 (skeleton-newline): New function.
4927 (skeleton-internal-1): Use it.
4928
c156a63b
SM
4929 * simple.el (open-line): `newline' may strip trailing space.
4930
f3bb9e16
KR
49312010-11-12 Kevin Ryde <user42@zip.com.au>
4932
4933 * international/mule-cmds.el (princ-list): Use mapc.
4934
7847454a
GM
49352010-11-12 Glenn Morris <rgm@gnu.org>
4936
4937 * emacs-lisp/bytecomp.el (byte-compile-log-buffer): New constant.
01c35094 4938 Use it to replace all instances of "*Compile-Log*".
7847454a 4939
aa310257
SM
49402010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4941
4942 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Add debug and
4943 indentation specs.
4944
cbf83ce9
SM
49452010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4946
4947 * progmodes/modula2.el: Use SMIE and skeleton.
4948 (m2-mode-syntax-table): (*..*) can be nested.
4949 Add //...\n. Fix paren syntax.
4950 (m2-mode-map): Remove LF and TAB bindings.
4951 (m2-indent): Add safety property.
4952 (m2-smie-grammar): New var.
4953 (m2-smie-refine-colon, m2-smie-refine-of, m2-smie-backward-token)
4954 (m2-smie-forward-token, m2-smie-refine-semi, m2-smie-rules): New funs.
4955 (m2-mode): Use define-derived-mode.
4956 (m2-newline, m2-tab): Remove.
4957 (m2-begin, m2-case, m2-definition, m2-else, m2-for, m2-header)
4958 (m2-if, m2-loop, m2-module, m2-or, m2-procedure, m2-with, m2-record)
4959 (m2-stdio, m2-type, m2-until, m2-var, m2-while, m2-export)
4960 (m2-import): Use define-skeleton.
4961
e7c4fb1e
GM
49622010-11-11 Glenn Morris <rgm@gnu.org>
4963
b3e4c911
GM
4964 * obsolete/lucid.el: Don't warn about any CL functions in this file.
4965
b3e22bd4
GM
4966 * ls-lisp.el (ls-lisp-ignore-case, ls-lisp-dirs-first)
4967 (ls-lisp-verbosity): Add custom :set-after property.
4968 (ls-lisp-verbosity, ls-lisp-use-localized-time-format): Doc fixes.
4969 (ls-lisp-format, ls-lisp-format-time): Don't take `now' as an argument.
4970 (ls-lisp-insert-directory): Update caller.
606dcd9e
GM
4971 (ls-lisp-set-options): New function.
4972 (ls-lisp-emulation): Use ls-lisp-set-options for custom :set.
4973 Doc fix.
b3e22bd4 4974
55a4b4fe
GM
4975 * play/landmark.el (lm-prompt-for-move):
4976 * play/gomoku.el (gomoku-prompt-for-move): Remove nonsensical code.
4977
e7c4fb1e
GM
4978 * progmodes/idlw-complete-structtag.el: Remove unused dec `name'.
4979
4980 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins)
4981 (idlwave-study-twins): Prefix dynamic local variable `name'.
4982 (idlwave-routine-twin-compare): Update for above change.
4983
4984 * progmodes/idlw-help.el (idlwave-do-mouse-completion-help):
4985 Prefix dynamic local variables `name', `kwd', and `link'.
4986 * progmodes/idlw-shell.el (idlwave-shell-complete-execcomm-help):
4987 * progmodes/idlw-complete-structtag.el
4988 (idlwave-complete-structure-tag-help):
4989 * progmodes/idlwave.el (idlwave-complete-sysvar-help)
4990 (idlwave-complete-sysvar-tag-help)
4991 (idlwave-complete-class-structure-tag-help):
4992 Update for above name changes.
4993
afe2870b
LMI
49942010-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4995
4996 * net/browse-url.el (browse-url-browser-function): Change the
4997 default to use `browse-url-mail' on mailto: URLs.
4998
fbe3be3f
CY
49992010-11-10 Chong Yidong <cyd@stupidchicken.com>
5000
cbf83ce9
SM
5001 * emacs-lisp/package.el (package-read-all-archive-contents):
5002 Reset package-archive-contents to nil before re-reading.
fbe3be3f 5003
a7cfbaea 50042010-11-10 Brandon Craig Rhodes <brandon@rhodesmill.org> (tiny change)
bd4532fc
AM
5005
5006 * textmodes/flyspell.el (flyspell-word): Do not re-check words
5007 already found as misspellings by (flyspell-large-region), just
c97685d4 5008 do highlighting (bug#7322).
bd4532fc 5009
13e7256f
GM
50102010-11-10 Glenn Morris <rgm@gnu.org>
5011
6d2a1e35
GM
5012 * progmodes/octave-mod.el (octave-mark-block): Update for smie change.
5013
d4aca69c
GM
5014 * emulation/edt.el (edt-with-position): New macro.
5015 (edt-find-forward, edt-find-backward, edt-find-next-forward)
5016 (edt-find-next-backward, edt-sentence-forward, edt-sentence-backward)
5017 (edt-paragraph-forward, edt-paragraph-backward): Use it.
5018
f8a09adb
GM
5019 * emulation/tpu-extras.el (tpu-with-position): New macro.
5020 (tpu-paragraph, tpu-page, tpu-search-internal): Use it.
5021
c026460b
GM
5022 * textmodes/texnfo-upd.el (texinfo-pointer-name): Fix typo.
5023
dea53a43
GM
5024 * textmodes/texnfo-upd.el (texinfo-all-menus-update)
5025 (texinfo-menu-copy-old-description, texinfo-start-menu-description)
5026 (texinfo-master-menu, texinfo-insert-node-lines)
5027 (texinfo-multiple-files-update):
5028 * textmodes/texinfmt.el (texinfo-append-refill, texinfo-copying):
5029 Use line-beginning-position.
5030
72bc50c0
GM
5031 * progmodes/cperl-mode.el (cperl-find-pods-heres, cperl-write-tags):
5032 No recent Emacs supports system-type `emx'.
5033
5034 * progmodes/ada-xref.el (is-windows): Rename to ada-on-ms-windows.
5035 (ada-command-separator, ada-default-prj-properties)
5036 (ada-find-any-references): Update for above name change.
5037
5038 * dirtrack.el (dirtrack-directory-function)
5039 (dirtrack-canonicalize-function):
5040 * filecache.el (file-cache-completion-ignore-case)
5041 (file-cache-case-fold-search, file-cache-ignore-case):
5042 * term.el (serial-port-is-file-p): Cosmetic change.
5043
5044 * emulation/viper-init.el (viper-ms-style-os-p): Doc fix.
5045 Remove non-existent `windows-95' system-type.
5046 * dired.el (dired-chown-program): Remove non-existent `linux'
5047 system-type.
5048
17731c39
GM
5049 * net/net-utils.el (net-utils-remove-ctl-m): Use memq for system-types.
5050 (ping-program-options): Remove non-existent `linux' system-type.
5051
9228bbd3
GM
5052 * startup.el (package-initialize): Update declaration.
5053
6e404950
GM
5054 * ls-lisp.el (ls-lisp-time-lessp, ls-lisp-time-to-seconds): Remove.
5055 (ls-lisp-handle-switches): Use time-less-p.
5056 (ls-lisp-format-time): Use float-time.
5057
6f0d4bb6
GM
5058 * textmodes/remember.el (remember-time-to-seconds): Remove.
5059 (remember-store-in-mailbox): Use float-time.
5060
5061 * calendar/timeclock.el (timeclock-time-to-seconds): Make it an alias.
5062
5063 * calendar/time-date.el (time-to-seconds): Always an alias on Emacs,
5064 never a real function.
5065 (with-no-warnings): Remove compat stub, now unused.
5066 (time-less-p): Doc fix.
5067 (time-to-number-of-days): Simplify.
5068
73171bd4
GM
5069 * eshell/esh-util.el (eshell-time-less-p, eshell-time-to-seconds):
5070 Remove.
5071 (eshell-read-passwd, eshell-read-hosts): Use time-less-p.
5072 * eshell/esh-test.el (eshell-test, eshell-show-usage-metrics):
5073 * eshell/em-unix.el (eshell-show-elapsed-time, eshell/time):
5074 * eshell/em-pred.el (eshell-pred-file-time): Use float-time.
5075 * eshell/em-ls.el (eshell-ls-sort-entries): Use time-less-p.
5076
13e7256f
GM
5077 * eshell/em-unix.el (eshell-remove-entries, eshell/rm)
5078 (eshell-shuffle-files, eshell-shorthand-tar-command)
5079 (eshell-mvcpln-template, eshell/mv, eshell/cp, eshell/ln):
5080 Prefix dynamic locals `interactive', `preview', `recursive', `verbose'.
5081 * eshell/em-glob.el (eshell-extended-glob, eshell-glob-entries):
5082 Prefix dynamic local variable `matches'.
5083
b565f5a1
GM
5084 * skeleton.el (skeleton-internal-list, skeleton-internal-1):
5085 Prefix dynamic local variable `skeleton'.
5086
5ad3e885
KY
50872010-11-10 Katsumi Yamaoka <yamaoka@jpl.org>
5088
5089 * net/browse-url.el (browse-url-mail): Insert body part of mailto url
5090 in mail buffer; make yank-action always a command that yanks original
5091 buffer.
5092
14121c52
GM
50932010-11-09 Glenn Morris <rgm@gnu.org>
5094
5095 * progmodes/tcl.el (tcl-hairy-scan-for-comment): Doc fix.
5096
d607b96b 50972010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
73525e72 5098
9bdba5f5
SM
5099 * minibuffer.el (minibuffer-completion-help): Specify the end of the
5100 completion field (bug#7211).
5101
73525e72
SM
5102 * progmodes/python.el (python-font-lock-syntactic-keywords): (bug#7322)
5103 Fix handling of backslash escapes.
5104 (python-quote-syntax): Adjust accordingly.
5105
d607b96b 51062010-11-09 Richard Levitte <richard@levitte.org> (tiny change)
05539fb3
RL
5107
5108 * vc-mtn.el (vc-mtn-working-revision, vc-mtn-after-dir-status)
5109 (vc-mtn-workfile-branch): Adjust to new output format.
5110
d607b96b 51112010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
cc4d2366
SM
5112
5113 * international/mule-cmds.el (princ-list): Mark as obsolete.
5114
d607b96b 51152010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7f925a67
SM
5116
5117 * emacs-lisp/smie.el: New package.
5118
d607b96b 51192010-11-09 Michael Albinus <michael.albinus@gmx.de>
6ce78fdc 5120
7f925a67
SM
5121 * files.el (backup-by-copying-when-mismatch):
5122 Set `permanent-local' property.
6ce78fdc
MA
5123
5124 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
09def8be 5125 `permanent-local' property for `backup-by-copying-when-mismatch'.
6ce78fdc 5126
d607b96b 51272010-11-09 Eli Zaretskii <eliz@gnu.org>
21620882
EZ
5128
5129 * ls-lisp.el (insert-directory): Doc fix. (bug#7285)
5130
d607b96b 51312010-11-09 Wilson Snyder <wsnyder@wsnyder.org>
8468f78b 5132
7f925a67 5133 * progmodes/verilog-mode.el (verilog-insert-one-definition)
8468f78b 5134 (verilog-read-decls, verilog-read-sub-decls-sig): Fix AUTOWIRE and
7f925a67
SM
5135 AUTOINOUT for SV style multidimensional arrays, bug294.
5136 Reported by Eric Mastromarchi.
5137 (verilog-preprocess): Use with-current-buffer and
8468f78b
WS
5138 font-lock-fontify-buffer to cleanup style issues.
5139
d607b96b 51402010-11-09 Glenn Morris <rgm@gnu.org>
cb5e49a3
GM
5141
5142 * locate.el (locate, locate-mode): Doc fixes.
5143
d607b96b 51442010-11-09 Chong Yidong <cyd@stupidchicken.com>
381d186f
CY
5145
5146 * server.el (server-start): New arg INHIBIT-PROMPT prevents asking
5147 user for confirmation.
5148 (server-force-stop): Use it.
5149 (server-start): Use server-force-stop for kill-emacs-hook, to
5150 avoid user interaction while killing Emacs.
5151
9b026d9f
GM
51522010-11-09 Glenn Morris <rgm@gnu.org>
5153
3406534c 5154 * progmodes/meta-mode.el: Remove leading `*' from defcustom docs.
e814121e 5155 (meta-indent-line): Simplify.
3406534c 5156
9b026d9f
GM
5157 * vc/emerge.el (emerge-line-number-in-buf):
5158 * textmodes/ispell.el (ispell-region):
5159 * textmodes/fill.el (current-fill-column):
5160 * progmodes/xscheme.el (xscheme-send-current-line):
5161 * progmodes/vhdl-mode.el (vhdl-current-line, vhdl-line-copy):
5162 * progmodes/tcl.el (tcl-hairy-scan-for-comment):
5163 * progmodes/sh-script.el (sh-handle-prev-do):
5164 * progmodes/meta-mode.el (meta-indent-line):
5165 * progmodes/idlwave.el (idlwave-goto-comment, idlwave-fill-paragraph)
5166 (idlwave-in-quote):
5167 * progmodes/idlw-shell.el (idlwave-shell-current-frame)
5168 (idlwave-shell-update-bp-overlays, idlwave-shell-sources-filter):
5169 * progmodes/fortran.el (fortran-looking-at-if-then):
5170 * progmodes/etags.el (find-tag-in-order, etags-snarf-tag):
5171 * progmodes/cperl-mode.el (cperl-sniff-for-indent)
5172 (cperl-find-pods-heres):
5173 * progmodes/ada-mode.el (ada-get-current-indent, ada-narrow-to-defun):
5174 * net/quickurl.el (quickurl-list-insert):
5175 * net/ldap.el (ldap-search-internal):
5176 * net/eudc.el (eudc-expand-inline):
5177 * mail/sendmail.el (sendmail-send-it):
5178 * mail/mspools.el (mspools-visit-spool, mspools-get-spool-name):
5179 * emulation/viper-cmd.el (viper-paren-match, viper-backward-indent)
5180 (viper-brac-function):
5181 * calc/calc-yank.el (calc-do-grab-region):
5182 * calc/calc-keypd.el (calc-keypad-press):
5183 * term.el (term-move-columns, term-insert-spaces):
5184 * speedbar.el (speedbar-highlight-one-tag-line):
5185 * simple.el (current-word):
5186 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
5187 * info.el (Info-find-node-in-buffer-1, Info-follow-reference)
5188 (Info-scroll-down):
5189 * hippie-exp.el (he-line-beg):
5190 * epa.el (epa--marked-keys):
5191 * dired-aux.el (dired-kill-line, dired-do-kill-lines)
5192 (dired-update-file-line, dired-add-entry, dired-remove-entry)
5193 (dired-relist-entry):
5194 * buff-menu.el (Buffer-menu-buffer):
5195 * array.el (current-line):
5196 * allout.el (allout-resolve-xref)
5197 (allout-latex-verbatim-quote-curr-line):
5198 Replace yet more uses of end-of-line etc with line-end-position, etc.
5199
db94771e
SM
52002010-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
5201
1398b795
SM
5202 * emacs-lisp/checkdoc.el (checkdoc-display-status-buffer)
5203 (checkdoc-interactive-loop, checkdoc-recursive-edit): Avoid princ-list.
5204 (checkdoc-syntax-table): Initialize in the declaration.
5205 (emacs-lisp-mode-hook): Use just checkdoc-minor-mode now that it turns
5206 the mode on unconditionally.
5207
db94771e
SM
5208 * emacs-lisp/cl-macs.el (extent-data, extent-face, extent-priority)
5209 (extent-end-position, extent-start-position): Remove setf method for
5210 non-existing functions (bug#7319).
5211
674728d4
SM
52122010-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
5213
5214 * emacs-lisp/smie.el: Simplify the smie-rules-function return values.
5215 (smie-precs->prec2): Rename from smie-precs-precedence-table.
5216 (smie-bnf->prec2): Rename from smie-bnf-precedence-table.
5217 (smie-prec2->grammar): Rename from smie-prec2-levels.
5218 (smie-grammar): Rename from smie-op-levels.
5219 (smie-indent--hanging-p): Rename from smie-hanging-p.
5220 (smie-rule-hanging-p): New alias.
5221 (smie-indent--bolp): Rename from smie-bolp.
5222 (smie-indent--hanging-p): New alias.
5223 (smie--token): New dynamically bound variable.
5224 (smie-indent--parent): New function.
5225 (smie-rule-parent-p): Use it; rename from smie-parent-p.
5226 (smie-rule-next-p): Rename from smie-next-p.
5227 (smie-rule-prev-p): Rename from smie-prev-p.
5228 (smie-rule-sibling-p, smie-rule-parent)
5229 (smie-indent--separator-outdent, smie-rule-separator): New functions.
5230 (smie-rule-separator-outdent): New var.
5231 (smie-indent--rule): Merge with smie-indent--column.
5232 (smie-indent-forward-token, smie-indent-backward-token):
5233 Also recognize close parens.
5234 (smie-indent-keyword): Don't use smie-indent--column any more.
5235 (smie-indent-after-keyword): Ignore closers by default.
5236 (smie-indent-line): Use with-demoted-errors.
5237 * progmodes/octave-mod.el (octave-smie-grammar):
5238 Rename from octave-smie-op-levels.
5239 (octave-smie-rules): Adjust to new behavior.
5240 * progmodes/prolog.el (prolog-smie-grammar):
5241 Rename from prolog-smie-op-levels.
5242
26f097bf
GM
52432010-11-07 Glenn Morris <rgm@gnu.org>
5244
de3490e1
GM
5245 * eshell/esh-util.el (subst-char-in-string)
5246 (directory-files-and-attributes): These compatibility definitions are
5247 not needed on any version of Emacs since at least 21.4.
5248
3ba6b2ee
GM
5249 * progmodes/verilog-mode.el (verilog-get-beg-of-line)
5250 (verilog-get-end-of-line): Remove.
5251 (verilog-within-string, verilog-re-search-forward-substr)
5252 (verilog-re-search-backward-substr, verilog-set-auto-endcomments)
5253 (verilog-surelint-off, verilog-getopt-file, verilog-highlight-region):
5254 Use point-at-bol, point-at-eol.
5255 * progmodes/pascal.el (pascal-get-beg-of-line, pascal-get-end-of-line):
5256 Remove.
5257 (pascal-declaration-end, pascal-declaration-beg, pascal-within-string)
5258 (electric-pascal-terminate-line, pascal-set-auto-comments)
5259 (pascal-indent-paramlist, pascal-indent-declaration)
5260 (pascal-get-lineup-indent, pascal-func-completion)
5261 (pascal-get-completion-decl, pascal-var-completion, pascal-completion):
5262 Use point-at-bol, point-at-eol.
5263 * progmodes/flymake.el (flymake-line-beginning-position)
5264 (flymake-line-end-position): Remove.
5265 (flymake-highlight-line): Use point-at-bol, point-at-eol.
5266 * eshell/esh-util.el (line-end-position, line-beginning-position):
5267 Remove compat definitions.
5268
76fc02b6
GM
5269 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
5270 Use end-of-line N.
5271 (checkdoc-this-string-valid-engine, checkdoc-file-comments-engine):
5272 Use line-end-position.
5273
e180ab9f
GM
5274 * emacs-lisp/chart.el (chart-zap-chars):
5275 * play/decipher.el (decipher-set-map):
5276 * progmodes/ada-mode.el (ada-get-current-indent)
5277 (ada-search-ignore-string-comment, ada-tab-hard, ada-untab-hard):
5278 * progmodes/ada-prj.el (ada-prj-load-from-file, ada-prj-display-help):
5279 * progmodes/ada-xref.el (ada-initialize-runtime-library)
5280 (ada-get-all-references):
5281 * progmodes/cperl-mode.el (cperl-electric-paren)
5282 (cperl-electric-rparen, cperl-electric-keyword, cperl-electric-else)
5283 (cperl-linefeed, cperl-sniff-for-indent, cperl-to-comment-or-eol)
5284 (cperl-find-pods-heres, cperl-indent-exp, cperl-fix-line-spacing)
5285 (cperl-word-at-point-hard):
5286 * progmodes/idlw-shell.el (idlwave-shell-move-or-history)
5287 (idlwave-shell-filename-string, idlwave-shell-batch-command)
5288 (idlwave-shell-display-line):
5289 * progmodes/idlwave.el (idlwave-show-begin, idlwave-fill-paragraph)
5290 (idlwave-calc-hanging-indent, idlwave-auto-fill, idlwave-template):
5291 * progmodes/js.el (js--re-search-forward-inner)
5292 (js--re-search-backward-inner):
5293 * progmodes/vhdl-mode.el (vhdl-align-region-1, vhdl-align-region-2)
5294 (vhdl-fix-clause, vhdl-compose-configuration-architecture):
5295 * progmodes/ruby-mode.el (ruby-parse-partial, eval-when-compile):
5296 * textmodes/flyspell.el (flyspell-process-localwords):
5297 * textmodes/ispell.el (ispell-buffer-local-parsing)
5298 (ispell-buffer-local-dict, ispell-buffer-local-words):
5299 Use point-at-bol and point-at-eol.
5300
26f097bf
GM
5301 * speedbar.el (speedbar-generic-item-info)
5302 (speedbar-item-info-tag-helper, speedbar-change-expand-button-char)
5303 (speedbar-add-indicator, speedbar-check-vc-this-line)
5304 (speedbar-check-obj-this-line, speedbar-extract-one-symbol)
5305 (speedbar-buffers-line-directory, speedbar-buffer-revert-buffer):
5306 Replace more uses of end-of-line etc with line-end-position.
5307
b05fde66
GM
53082010-11-06 Glenn Morris <rgm@gnu.org>
5309
5ed619e0
GM
5310 * textmodes/texnfo-upd.el (texinfo-start-menu-description)
5311 (texinfo-update-menu-region-beginning, texinfo-menu-first-node)
5312 (texinfo-delete-existing-pointers, texinfo-find-pointer)
5313 (texinfo-clean-up-node-line, texinfo-insert-node-lines)
5314 (texinfo-multiple-files-update):
5315 * textmodes/table.el (table--probe-cell-left-up)
5316 (table--probe-cell-right-bottom):
5317 * textmodes/picture.el (picture-tab-search):
5318 * textmodes/page-ext.el (pages-copy-header-and-position)
5319 (pages-directory-for-addresses):
5320 * progmodes/vera-mode.el (vera-get-offset):
5321 * progmodes/simula.el (simula-calculate-indent):
5322 * progmodes/python.el (python-pdbtrack-overlay-arrow):
5323 * progmodes/prolog.el (end-of-prolog-clause):
5324 * progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
5325 * progmodes/icon.el (indent-icon-exp):
5326 * progmodes/etags.el (tag-re-match-p):
5327 * progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
5328 * progmodes/ebnf2ps.el (ebnf-begin-file):
5329 * progmodes/dcl-mode.el (dcl-back-to-indentation-1)
5330 (dcl-save-local-variable):
5331 * play/life.el (life-setup):
5332 * play/gametree.el (gametree-looking-at-ply):
5333 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
5334 * mail/sendmail.el (mail-mode-auto-fill):
5335 * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
5336 * emacs-lisp/edebug.el (edebug-overlay-arrow):
5337 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
5338 * woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
5339 (woman-tab-to-tab-stop, WoMan-warn-ignored):
5340 * type-break.el (type-break-file-keystroke-count):
5341 * term.el (term-replace-by-expanded-history-before-point)
5342 (term-skip-prompt, term-extract-string):
5343 * speedbar.el (speedbar-edit-line, speedbar-expand-line)
5344 (speedbar-contract-line, speedbar-toggle-line-expansion)
5345 (speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
5346 (speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
5347 * sort.el (sort-skip-fields):
5348 * skeleton.el (skeleton-internal-list):
5349 * simple.el (line-move-finish, line-move-to-column):
5350 * shell.el (shell-forward-command):
5351 * misc.el (copy-from-above-command):
5352 * makesum.el (double-column):
5353 * ebuff-menu.el (electric-buffer-update-highlight):
5354 * dired.el (dired-move-to-end-of-filename):
5355 * dframe.el (dframe-popup-kludge):
5356 * bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
5357 * arc-mode.el (archive-get-lineno):
5358 Use line-end-position and line-beginning-position.
5359
e2a9c0bc
GM
5360 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins):
5361 (idlwave-study-twins): Prefix dynamic local `class'.
5362 (idlwave-routine-twin-compare): Update for above name change.
5363
4e44448f
GM
5364 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod):
5365 Use boundp tests to silence compiler. Update for changed name of
5366 bytecomp-filename variable.
5367
8f6c3eac
GM
5368 * emulation/viper-cmd.el (viper-read-string-with-history):
5369 Prefix dynamic local `initial'.
5370 (viper-minibuffer-standard-hook): Update for above name change.
5371
79d1dabe
GM
5372 * emacs-lisp/elint.el (elint-init-env): Prefix dynamic local `env'.
5373 (elint-init-form): Update for above name change.
5374
0e4bb7f0
GM
5375 * mail/mail-extr.el (mail-extract-address-components): Give dynamic
5376 local variables `cbeg' and `cend' a prefix.
5377 (mail-extr-voodoo): Update for above name change.
5378
c8f3bf36
GM
5379 * textmodes/reftex-toc.el (reftex-toc-do-promote)
5380 (reftex-toc-promote-prepare): Pass `delta' as an explicit argument.
5381 (reftex-toc-promote-action): Doc fix.
5382
5383 * textmodes/reftex-sel.el (reftex-select-item): Give local variables
5384 `prompt', `data' a prefix.
5385 (reftex-select-post-command-hook, reftex-select-callback)
5386 (reftex-select-mouse-accept, reftex-select-read-cite):
5387 Update for above name changes.
5388
5389 * textmodes/reftex-ref.el (reftex-reference): Rename local variable
5390 `refstyle' to reftex-refstyle.
5391 (reftex-offer-label-menu): Update for above name change.
5392 * textmodes/reftex-sel.el (reftex-select-toggle-varioref): Update for
5393 `refstyle' name change.
5394
b05fde66
GM
5395 * vc/emerge.el (emerge-eval-in-buffer): Remove, and replace all uses
5396 with with-current-buffer.
5397 (diff, template): Give dynamic local variables a prefix.
5398 (emerge-line-numbers): Rename local `diff' to emerge-line-diff.
5399 (emerge-line-number-in-buf): Update for above name change.
5400 (emerge-combine-versions-internal): Rename local `template' to
5401 emerge-combine-template.
5402 (emerge-combine-versions-edit): Update for above name change.
5403
5d8f9169
RA
54042010-11-06 Ralf Angeli <angeli@caeruleus.net>
5405
5406 * textmodes/reftex-cite.el
5407 (reftex-extract-bib-entries-from-thebibliography): Match bibitem
5408 entries with whitespace after \bibitem.
5409 (reftex-create-bibtex-file): Match entries containing numbers and
5410 symbol constituents. Make sure that entries with whitespace at
5411 various places are found.
5412
f8aefe82
MA
54132010-11-05 Christian Millour <cm@abtela.com> (tiny change)
5414
5415 * shell.el (shell-process-popd): Made aware of comint-file-name-prefix.
5416
e06918d2
JD
54172010-11-05 Jan Djärv <jan.h.d@swipnet.se>
5418
5419 * mouse.el (mouse-yank-primary): Update comment (Bug#6802).
5420
17fc58c9
GM
54212010-11-05 Glenn Morris <rgm@gnu.org>
5422
f7fe4837
GM
5423 * woman.el (woman0-roff-buffer, woman1-roff-buffer)
5424 (woman2-roff-buffer): Give local variable `request' a prefix.
5425 (woman0-macro): Rename argument `request' in the same way.
5426 (woman-request): New name for `request' dynamic variable.
5427 (woman-unquote, woman-forward-arg): Update for above name change.
5428 (woman1-roff-buffer): Give local variable `unquote' a prefix.
5429 (woman1-unquote): New name for `unquote' dynamic variable.
5430 (woman1-B-or-I, woman1-alt-fonts): Update for above name change.
5431 (woman-translations): Rename from `translations'. No longer global.
5432 (woman2-tr, woman-translate): Update for above name change.
5433 (woman-translate): Check for bound variable.
5434 (woman2-roff-buffer): Give local variable `translations' a prefix.
5435
869c4186
GM
5436 * play/doctor.el: Give all local variables a prefix. Update callers.
5437 (doc$, doctor-put-meaning): Use backquote.
5438
215461a8
GM
5439 * emacs-lisp/cl-macs.el (loop): Give local variable args a prefix.
5440 (cl-parse-loop-clause, cl-loop-handle-accum): Update for above change.
5441
17fc58c9
GM
5442 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Give local
5443 variables bytes, ptr, op a prefix.
5444 (disassemble-offset): Update for above change.
5445
015eea59
CY
54462010-11-03 Chong Yidong <cyd@stupidchicken.com>
5447
5448 * emacs-lisp/package.el (package-unpack): Remove no-op.
5449 (package--builtins, package--dir): Doc fix.
5450 (package-activate-1, package-activate, package-install)
5451 (package-compute-transaction): Fix error message.
5452 (package-delete): Use delete-directory. Omit system packages.
5453 (package-initialize): Set package-alist to nil first.
5454 (package-menu-mark-delete, package-menu-mark-install): Don't add
5455 symbols that are inconsistent with the package state.
5456 (package-menu-execute): Perform deletions and installations as
5457 single batch operations.
5458
033862d1
GM
54592010-11-03 Glenn Morris <rgm@gnu.org>
5460
0b03a950
GM
5461 * progmodes/idlwave.el (idlwave-pset): Only used on XEmacs.
5462 (props): Remove unnecessary declaration.
5463
e337e22c
GM
5464 * textmodes/ispell.el (ispell-init-process): On Emacs, always use
5465 set-process-query-on-exit-flag.
5466
a88e24dd 5467 * textmodes/reftex-toc.el (name1, dummy, dummy2): Remove unused decs.
728618ba
GM
5468 (reftex-toc-do-promote): Remove unused local `mpos'.
5469 (reftex-toc-restore-region): Make `mpos' local to this function.
a88e24dd 5470
537b04b9
GM
5471 * net/dbus.el (dbus-name-owner-changed-handler): Doc fix.
5472
52365e61
GM
5473 * play/landmark.el (lm-losing-threshold): Correct spelling.
5474 (lm-human-plays): Use new name.
5475
cd32f8a9
GM
5476 * play/gomoku.el (gomoku-loosing-threshold): Correct spelling.
5477 (gomoku-human-plays): Use new name.
5478
033862d1
GM
5479 * play/gomoku.el (nil-score, Xscore, XXscore, XXXscore, XXXXscore)
5480 (Oscore, OOscore, OOOscore, OOOOscore): Rename with gomoku- prefix.
5481 (gomoku-score-trans-table, gomoku-winning-threshold)
5482 (gomoku-loosing-threshold, gomoku-init-score-table): Use new names.
5483
4b99edf2
CY
54842010-11-03 Chong Yidong <cyd@stupidchicken.com>
5485
5486 * emacs-lisp/package.el: Don't put built-in packages in
5487 package-alist, to avoid loading inefficiencies.
5488 (package-built-in-p): Make VERSION optional, and treat it as a
5489 minimum acceptable version.
6a7662bb
BR
5490 (package-activate): Search separately for built-in packages.
5491 Emit a warning if a dependency fails.
4b99edf2
CY
5492 (define-package): Handle most common case, where there is no
5493 obsolete package, first.
5494 (package-compute-transaction): Print required version in error.
5495 (package--initialized): New variable.
5496 (list-packages): Use it.
5497 (package-initialize): Optional arg NO-ACTIVATE. Don't put
6a7662bb
BR
5498 built-in packages in packages-alist; keep it separate.
5499 Set package--initialized.
4b99edf2
CY
5500 (describe-package): Avoid activating packages as a side-effect.
5501 Search separately for built-in packages.
5502 (describe-package-1): Handle the case where an elpa package is
5503 simultaneously built-in and available/installed.
6a7662bb
BR
5504 (package-installed-p, package--generate-package-list):
5505 Search separately for built-in packages.
4b99edf2
CY
5506 (package-load-descriptor): Doc fix.
5507
3225dcaa
SM
55082010-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
5509
5510 * progmodes/perl-mode.el (perl-syntax-propertize-function):
5511 Handle __DATA__ and __END__.
5512
fa14dc18
NF
55132010-11-02 Noah Friedman <friedman@splode.com>
5514
5515 * emacs-lisp/bytecomp.el (byte-recompile-file): If bytecomp-arg is
5516 nil, do not ask to recompile files that are not already compiled,
5517 and do not recompile them.
5518
0f75c62a
CY
55192010-11-02 Chong Yidong <cyd@stupidchicken.com>
5520
5521 * emacs-lisp/package.el (package-initialize): Ensure that
5522 obsoleted built-in packages are not in package-activated-list
5523 during activation.
5524 (describe-package-1): Make the "installed" status override
5525 "built-in".
5526
b29f5b7b
VJL
55272010-11-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5528
5529 * subr.el (version-separator, version-regexp-alist): Remove '*'
5530 from docstring.
5531 (version-list-<=, version<=, version=): Doc fix.
5532
b18fad6d
KH
55332010-11-01 Kenichi Handa <handa@m17n.org>
5534
5535 * faces.el (glyphless-char): Inherit underline for tty.
5536
a8039db1 55372010-11-01 Kenichi Handa <handa@m17n.org>
b2cca856
KH
5538
5539 Implement various display methods for glyphless characters.
5540
5541 * international/characters.el (char-acronym-table): New variable.
5542 (glyphless-char-control): New variable.
35f52ed6 5543 (update-glyphless-char-display): New function.
b2cca856
KH
5544
5545 * faces.el (glyphless-char): New face.
5546
28886d5e
GM
55472010-11-01 Glenn Morris <rgm@gnu.org>
5548
919dd7aa
GM
5549 * calendar/holidays.el (general-holidays, oriental-holidays)
5550 (local-holidays, other-holidays, hebrew-holidays, christian-holidays)
5551 (islamic-holidays, bahai-holidays, solar-holidays): Move aliases before
5552 the definitions of their targets.
5553
c79fc059
GM
5554 * emacs-lisp/smie.el (smie): New custom group.
5555 (smie-blink-matching-inners, smie-indent-basic): Add :group.
5556
c8ccffb1
GM
5557 * faces.el (xw-defined-colors, x-setup-function-keys):
5558 * mouse-sel.el (x-select-text):
5559 * term/w32console.el (x-setup-function-keys): Update declarations.
5560
f4ff702e
GM
5561 * progmodes/ruby-mode.el (ruby-syntax-propertize-heredoc): Declare.
5562
806c491a
GM
5563 * textmodes/ispell.el (comment-add): Declare.
5564
c3dfebd1
GM
5565 * net/gnutls.el (gnutls-boot, gnutls-errorp, gnutls-error-string):
5566 Declare.
5567
28886d5e
GM
5568 * info.el (finder-keywords-hash, package-alist): Declare.
5569
693c9d15
CY
55702010-11-01 Chong Yidong <cyd@stupidchicken.com>
5571
5572 * finder.el (finder-compile-keywords): Don't use intern-soft,
5573 since package names may not yet exist in the obarray.
5574
55752010-11-01 Chong Yidong <cyd@stupidchicken.com>
4624de78
CY
5576
5577 * vc/vc-arch.el (vc-arch-checkin):
5578 * vc/vc-cvs.el (vc-cvs-checkin):
5579 * vc/vc-mtn.el (vc-mtn-checkin):
5580 * vc/vc-rcs.el (vc-rcs-checkin):
5581 * vc/vc-sccs.el (vc-sccs-checkin):
5582 * vc/vc-svn.el (vc-svn-checkin): Remove optional extra arg, unused
5583 since 2010-04-21 commit by Stefan Monnier.
5584
36967cf7
GM
55852010-11-01 Glenn Morris <rgm@gnu.org>
5586
feb5e60a
GM
5587 * emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change.
5588
1f023ca9
GM
5589 * startup.el (package-enable-at-startup, package-initialize):
5590 Silence compiler.
5591
36967cf7
GM
5592 * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
5593 Silence compiler.
5594
430e7297
JD
55952010-10-31 Julien Danjou <julien@danjou.info>
5596
5597 * emacs-lisp/bytecomp.el (byte-recompile-file): New fun (bug#7297).
5598 (byte-recompile-directory):
5599 * emacs-lisp/lisp-mode.el (emacs-lisp-byte-compile-and-load):
430e7297
JD
5600 Use `byte-recompile-file'.
5601
c8c59954
GM
56022010-10-31 Glenn Morris <rgm@gnu.org>
5603
5604 * cus-start.el: Handle standard values via a keyword.
5605 Only set version property if specified.
5606 (cursor-in-non-selected-windows, menu-bar-mode)
5607 (tool-bar-mode, show-trailing-whitespace):
5608 Do not specify standard values.
5609 (transient-mark-mode, temporary-file-directory): Use :standard.
5610
04e63796
JD
56112010-10-31 Jan Djärv <jan.h.d@swipnet.se>
5612
5613 * term/x-win.el (x-get-selection-value): New function that gets
35f52ed6 5614 PRIMARY with type as specified in x-select-request-type. (Bug#6802)
04e63796 5615
2699a554 56162010-10-31 Michael Albinus <michael.albinus@gmx.de>
a057950d
MA
5617
5618 * net/tramp.el (tramp-handle-insert-file-contents): For root,
5619 preserve owner and group when editing files. (Bug#7289)
5620
35fcc05c 56212010-10-31 Glenn Morris <rgm@gnu.org>
d2ce10d2
GM
5622
5623 * speedbar.el (speedbar-mode):
5624 * play/fortune.el (fortune-in-buffer, fortune):
5625 * play/gomoku.el (gomoku-mode):
5626 * play/landmark.el (lm-mode):
5627 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
5628 Replace inappropriate uses of toggle-read-only. (Bug#7292)
5629
82f7efc3
GM
5630 * select.el (x-selection): Mark it as an obsolete alias.
5631
2699a554 56322010-10-31 Aaron S. Hawley <aaron.s.hawley@gmail.com>
ca39416c 5633
f486841f 5634 * vc/add-log.el (find-change-log): Use derived-mode-p rather than
ca39416c
AH
5635 major-mode (bug#7284).
5636
2699a554 56372010-10-31 Glenn Morris <rgm@gnu.org>
aab705a2
GM
5638
5639 * menu-bar.el (menu-bar-files-menu): Make it into an actual alias,
5640 rather than just an unused variable that inherits from the real one.
5641
e6ef5dd9
AM
56422010-10-31 Alan Mackenzie <acm@muc.de>
5643
5644 * progmodes/cc-cmds.el (c-mask-paragraph): Fix an off-by-1 error.
5645 This fixes bug #7185.
5646
8a500a91
CY
56472010-10-30 Chong Yidong <cyd@stupidchicken.com>
5648
5649 * startup.el (command-line): Search for package directories, and
5650 don't load package.el if none are found.
5651
6a7662bb
BR
5652 * emacs-lisp/package.el (describe-package, list-packages):
5653 Call package-initialize if it has not been called yet.
8a500a91 5654
4f9e41e4
AM
56552010-10-30 Alan Mackenzie <acm@muc.de>
5656
5657 * progmodes/cc-fonts.el (c-font-lock-enum-tail): New function
5658 which fontifies the tail of an enum.
5659 (c-basic-matchers-after): Insert a call to the above new function.
5660 This fixes bug #7264.
5661
88f43c67
GM
56622010-10-30 Glenn Morris <rgm@gnu.org>
5663
5664 * cus-start.el: Add :set properties for minor modes menu-bar-mode,
5665 tool-bar-mode, transient-mark-mode. (Bug#7306)
5666 Include the :set property in the dumped Emacs.
5667
c4d17d50
SM
56682010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5669
5670 SMIE: change indent rules format, improve smie-setup.
5671 * emacs-lisp/smie.el (smie-precs-precedence-table)
5672 (smie-merge-prec2s, smie-bnf-precedence-table, smie-prec2-levels):
5673 Mark them pure so the tables gets built at compile time.
5674 (smie-bnf-precedence-table): Store the closer-alist in the table.
5675 (smie-prec2-levels): Preserve the closer-alist.
5676 (smie-blink-matching-open): Be more forgiving in case of indentation.
5677 (smie-hanging-p): Rename from smie-indent--hanging-p.
5678 (smie-bolp): Rename from smie-indent--bolp.
5679 (smie--parent, smie--after): New dynamic vars.
5680 (smie-parent-p, smie-next-p, smie-prev-p): New funs.
5681 (smie-indent-rules): Remove.
5682 (smie-indent--offset-rule): Remove fun.
5683 (smie-rules-function): New var.
5684 (smie-indent--rule): New fun.
5685 (smie-indent--offset, smie-indent-keyword, smie-indent-after-keyword)
5686 (smie-indent-exps): Use it.
5687 (smie-setup): Setup paren blinking; add keyword args for token
5688 functions; extract closer-alist from op-levels.
5689 (smie-indent-debug-log): Remove var.
5690 (smie-indent-debug): Remove fun.
5691 * progmodes/prolog.el (prolog-smie-indent-rules): Remove.
5692 (prolog-smie-rules): New fun to replace it.
5693 (prolog-mode-variables): Simplify.
5694 * progmodes/octave-mod.el (octave-smie-closer-alist): Remove, now that
5695 it's setup automatically.
5696 (octave-smie-indent-rules): Remove.
5697 (octave-smie-rules): New fun to replace it.
5698 (octave-mode): Simplify.
5699
9d794026
GM
57002010-10-29 Glenn Morris <rgm@gnu.org>
5701
e088c02a
GM
5702 * files.el (temporary-file-directory): Remove (already defined in C).
5703 * cus-start.el: Add temporary-file-directory.
5704
9d794026
GM
5705 * abbrev.el (abbrev-mode):
5706 * composite.el (auto-composition-mode):
5707 * menu-bar.el (menu-bar-mode):
5708 * simple.el (transient-mark-mode):
5709 * tool-bar.el (tool-bar-mode): Adjust the define-minor-mode calls so
5710 that they do not define the associated variables twice.
5711 * simple.el (transient-mark-mode): Remove defvar.
5712 * composite.el (auto-composition-mode): Make variable auto-buffer-local.
5713 * cus-start.el: Add transient-mark-mode, menu-bar-mode, tool-bar-mode.
5714 Handle multiple groups, and also custom-delayed-init-variables.
5715 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
5716
dcc029e0
SM
57172010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5718
5719 * emacs-lisp/pcase.el (pcase): New `string' and `guard' patterns.
5720 (pcase-if): Add one minor optimization.
5721 (pcase-split-equal): Rename from pcase-split-eq.
5722 (pcase-split-member): Rename from pcase-split-memq.
5723 (pcase-u1): Add strings to the member optimization.
5724 Add `guard' variant of predicates.
5725 (pcase-q1): Add string patterns.
5726
a62b88d4
SM
57272010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5728
5729 * vc/log-edit.el (log-edit-rewrite-fixes): State its safety pred.
5730
f41f19b0
GM
57312010-10-28 Glenn Morris <rgm@gnu.org>
5732
b3edb781
GM
5733 * term/ns-win.el (global-map, menu-bar-final-items, menu-bar-help-menu):
5734 Move menu-bar related settings to ../menu-bar.el.
5735 * menu-bar.el (global-map, menu-bar-final-items, menu-bar-help-menu):
5736 Move ns-specific settings here from term/ns-win.el.
5737
f41f19b0
GM
5738 * simple.el (x-selection-owner-p): Remove unused declaration.
5739
6175cd08
SM
57402010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5741
5742 * minibuffer.el (completion-cycling): New var (bug#7266).
5743 (minibuffer-complete, completion--do-completion):
5744 Use completion--flush-all-sorted-completions.
5745 (minibuffer-complete): Only cycle if completion-cycling is set.
5746 (completion--flush-all-sorted-completions): Unset completion-cycling.
5747 (minibuffer-force-complete): Set completion-cycling.
5748 (completion-all-sorted-completions): Move declaration before first use.
5749
19677c71
LL
57502010-10-28 Leo <sdl.web@gmail.com>
5751
5752 * iswitchb.el (iswitchb-kill-buffer): Avoid `iswitchb-make-buflist'
5753 which changes the order of matches seen by users (bug#7231).
5754
57552010-10-28 Jes Bodi Klinke <jes@bodi-klinke.dk> (tiny change)
77b143eb
JBK
5756
5757 * progmodes/compile.el (compilation-mode-font-lock-keywords):
5758 Don't confuse -omega as "-o mega".
5759
2122161f
SM
57602010-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
5761
ce8794df
SM
5762 * vc/log-edit.el (log-edit-rewrite-fixes): New var.
5763 (log-edit-author): New dynamic var.
5764 (log-edit-changelog-ours-p, log-edit-insert-changelog-entries): Use it
5765 to return the author if different from committer.
5766 (log-edit-insert-changelog): Use them to add Author: and Fixes headers.
5767
80cb310d
SM
5768 * play/landmark.el: Adjust commenting convention.
5769 (lm-nil-score): Rename from nil-score.
5770 (Xscore, XXscore, XXXscore, XXXXscore, Oscore, OOscore, OOOscore)
5771 (OOOOscore): Move into a let in lm-score-trans-table.
5772 (lm-winning-threshold, lm-loosing-threshold): Use lm-score-trans-table.
5773
2122161f
SM
5774 * electric.el (electric-indent-chars): Autoload.
5775 * progmodes/octave-mod.el (octave-mode):
5776 * progmodes/ruby-mode.el (ruby-mode): Take advantage of it.
5777 (ruby-mode-abbrev-table): Merge initialization and declaration.
5778
e925113b
GM
57792010-10-27 Glenn Morris <rgm@gnu.org>
5780
208d109c
GM
5781 * abbrev.el (abbrev-mode): Remove one of the three definitions of this
5782 variable.
5783
7d3e3843
GM
5784 * server.el (server-host, server-port, server-auth-dir): Autoload risky.
5785
e925113b
GM
5786 * term/ns-win.el: Restore require of cl when compiling.
5787 (menu-bar-final-items): Remove non-existent `windows' menu.
1bcc4637
GM
5788 (ns-handle-nxopen): Optionally handle the temp-case.
5789 (ns-handle-nxopentemp): Just call ns-handle-nxopen.
5790 (ns-insert-file, ns-find-file): Use `pop'.
e925113b 5791
b94a5a43
GM
57922010-10-26 Glenn Morris <rgm@gnu.org>
5793
5794 * term/common-win.el (xw-defined-colors): Simplify the 'ns case.
5795
fc3eda04
AR
57962010-10-26 Adrian Robert <Adrian.B.Robert@gmail.com>
5797
5798 * term/ns-win.el (ns-new-frame, ns-show-prefs): Don't add to
5799 global map.
5800 * term/common-win.el (x-setup-function-keys): Remove most of the
5801 keymappings. Comment on the remaining ones.
5802
c79b0b1c
PO
58032010-10-26 Peter Oliver <p.d.oliver@mavit.org.uk> (tiny change)
5804
c31dc2c0 5805 * server.el (server-port): New option. (Bug#854)
c79b0b1c
PO
5806 (server-start): Use server-port.
5807
725513b7
GM
58082010-10-26 Glenn Morris <rgm@gnu.org>
5809
d7d8c62a
GM
5810 * term/ns-win.el (ns-version-string): Remove unused declaration.
5811 (ns-invocation-args): Change to x-invocation-args.
5812 (ns-handle-switch, ns-handle-numeric-switch, ns-handle-iconic)
5813 (ns-handle-name-switch, ns-ignore-2-arg): Remove.
5814 (ns-handle-nxopen, ns-handle-nxopentemp, ns-ignore-1-arg):
5815 Use x-invocation-args instead of ns-invocation-args.
5816 (ns-initialize-window-system, handle-args-function-alist):
5817 Use x-handle-args instead of ns-handle-args.
5818 * term/common-win.el (x-handle-args): Also handle nextstep arguments.
5819 * startup.el (command-line-ns-option-alist): Replace
5820 ns-handle-name-switch, ns-handle-switch, ns-handle-numeric-switch,
5821 ns-handle-iconic with the x- equivalents.
5822
725513b7
GM
5823 * term/common-win.el (x-select-enable-clipboard):
5824 * term/pc-win.el (x-select-enable-clipboard): Doc fix.
5825
5826 * term/ns-win.el: No need to require cl when compiling.
5827 (x-display-name, x-setup-function-keys, x-select-text, x-colors)
5828 (xw-defined-colors): Use the common-win definitions.
5829 (ns-alternatives-map): Make it an obsolete alias for x-alternatives-map.
5830 (ns-handle-iconic): Make it an alias for x-handle-iconic.
5831 * term/common-win.el (x-select-text, x-alternatives-map)
5832 (x-setup-function-keys, x-colors, xw-defined-colors): Handle 'ns case.
5833 * loadup.el [ns]: Load common-win.
5834
77ec02d8
DU
58352010-10-26 Daiki Ueno <ueno@unixuser.org>
5836
5837 * epa-mail.el (epa-mail-encrypt): Handle local-part only
6ee79275 5838 recipients; expand mail aliases (Bug#7280).
77ec02d8 5839
6a5c2175
GM
58402010-10-25 Glenn Morris <rgm@gnu.org>
5841
59ba9d59
GM
5842 * term/common-win.el (x-handle-switch): Simplify with pop.
5843 Optionally handle numeric switches.
5844 (x-handle-numeric-switch): Just call x-handle-switch.
5845 (x-handle-initial-switch, x-handle-xrm-switch, x-handle-geometry)
5846 (x-handle-name-switch, x-handle-display, x-handle-args):
5847 Simplify with pop.
5848
6a5c2175
GM
5849 * term/ns-win.el: Do not require easymenu.
5850 (menu-bar-edit-menu) <copy, paste, paste-from-menu, separator-undo>:
5851 <spell>: Move adjustments to menu-bar.el.
5852 * menu-bar.el (menu-bar-edit-menu) <copy, paste, paste-from-menu>:
5853 <separator-undo, spell>: Move ns-win's adjustments here.
5854 * loadup.el [ns]: Do not load easymenu.
5855
01898dc2
CY
58562010-10-24 Chong Yidong <cyd@stupidchicken.com>
5857
5858 * image.el (image-checkbox-checked, image-checkbox-unchecked):
6a5c2175 5859 Delete (Bug#7222).
01898dc2
CY
5860
5861 * startup.el (fancy-startup-tail): Instead of using inline images,
5862 refer to image files from etc/.
5863
5864 * wid-edit.el (checkbox): Likewise.
5865 (widget-image-find): Center image specs.
5866
a44d921f
GM
58672010-10-24 Glenn Morris <rgm@gnu.org>
5868
5869 * term/ns-win.el (x-select-text): Doc fix.
5870 * w32-fns.el (x-alternatives-map, x-setup-function-keys)
5871 (x-select-text): Move to term/common-win.
5872 * term/w32-win.el (xw-defined-colors): Move to common-win.
5873 * term/x-win.el (xw-defined-colors, x-alternatives-map)
5874 (x-setup-function-keys, x-select-text): Move to common-win.
5875 * term/common-win.el (x-select-text, x-alternatives-map)
5876 (x-setup-function-keys, xw-defined-colors): Merge x- and w32-
5877 definitions here.
5878
709228c0 58792010-10-24 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
a11de514
R
5880
5881 * net/mairix.el (mairix-searches-mode-map):
5882 * mail/mspools.el (mspools-mode-map): Fix 2010-10-10 change.
5883
0c382083 58842010-10-24 Michael McNamara <mac@mail.brushroad.com>
a03c2342 5885
2b0c7330 5886 * progmodes/verilog-mode.el (verilog-directive-re): Make this variable
a03c2342
WS
5887 auto-built for efficiency of execution and updating.
5888 (verilog-extended-complete-re): Support 'pure' fucntion & task
5889 declarations (these have no bodies).
ca39416c
AH
5890 (verilog-beg-of-statement): General cleanup to enable support of
5891 'pure' fucntion & task declarations (these have no bodies).
5892 These efforts together fix Verilog bug210 from veripool; which was also
a03c2342
WS
5893 noticed by Steve Pearlmutter.
5894 (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
ca39416c
AH
5895 (verilog-directive-nest-re, verilog-set-auto-endcomments):
5896 Support `elsif. Reported by Shankar Giri.
a03c2342
WS
5897 (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
5898 attribute handling for lining up declarations and assignments.
5899 (verilog-beg-of-statement-1): Fix issue where continued declaration
5900 is indented differently if it is after a begin..end clock.
5901 (verilog-in-attribute-p, verilog-skip-backward-comments)
5902 (verilog-skip-forward-comment-p): Support proper treatment of
84eb0351 5903 attributes by indent code. Reported by Jeff Steele.
ca39416c 5904 (verilog-in-directive-p): Fix comment to correctly describe function.
a03c2342
WS
5905 (verilog-backward-up-list, verilog-in-struct-region-p)
5906 (verilog-backward-token, verilog-in-struct-p)
5907 (verilog-in-coverage-p, verilog-do-indent)
5908 (verilog-pretty-declarations): Use verilog-backward-up-list as
5909 wrapper around backward-up-list inorder to properly skip comments.
5910 Reported by David Rogoff.
5911 (verilog-property-re, verilog-endcomment-reason-re)
5912 (verilog-beg-of-statement, verilog-set-auto-endcomments)
5913 (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
84eb0351 5914 of if). Reported by Max Bjurling and
a03c2342 5915 (verilog-calc-1): Fix for clocking block in modport
84eb0351 5916 declaration. Reported by Brian Hunter.
a03c2342 5917
0c382083 59182010-10-24 Wilson Snyder <wsnyder@wsnyder.org>
a03c2342 5919
2b0c7330 5920 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
a03c2342
WS
5921 (verilog-gate-keywords, verilog-read-sub-decls)
5922 (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
5923 (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
5924 AUTOINST for gate primitives, bug284. Reported by Mark Johnson.
5925 (verilog-read-decls): Fix spaces in V2K module parameters causing
5926 mis-identification as interfaces, bug287.
5927 (verilog-read-decls): Fix not treating "parameter string" as a
5928 parameter in AUTOINSTPARAM.
5929 (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
5930 treating `elsif similar to `endif inside AUTOSENSE.
ca39416c 5931 (verilog-do-indent): Implement correct automatic or static task or
b762841f 5932 function end comment highlight. Reported by Steve Pearlmutter.
a03c2342
WS
5933 (verilog-font-lock-keywords-2): Fix highlighting of single
5934 character pins, bug264. Reported by Michael Laajanen.
5935 (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
5936 (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
6a7662bb
BR
5937 (verilog-subdecls-get-interfaced, verilog-subdecls-new):
5938 Support interfaces with AUTOINST, bug270. Reported by Luis Gutierrez.
ca39416c
AH
5939 (verilog-pretty-expr): Fix interactive arguments, bug272.
5940 Reported by Mark Johnson.
5941 (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp):
5942 Add 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
b762841f 5943 bug269. Suggested by Gary Delp.
a03c2342 5944 (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
ca39416c
AH
5945 (verilog-preprocessor, verilog-set-compile-command):
5946 Create verilog-preprocess and verilog-preprocessor to show
5947 preprocessed output.
a03c2342
WS
5948 (verilog-get-beg-of-line, verilog-get-end-of-line)
5949 (verilog-modi-file-or-buffer, verilog-modi-name)
5950 (verilog-modi-point, verilog-within-string): Move defmacro's
b762841f 5951 before first use to avoid warning. Reported by Steve Pearlmutter.
a03c2342
WS
5952 (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
5953 (verilog-colorize-region, verilog-highlight-buffer)
5954 (verilog-highlight-includes, verilog-highlight-modules)
5955 (verilog-highlight-region, verilog-mode): Rename colorize to
5956 highlight to match other packages. Disable module highlighting,
5957 as received speed complaints, reenable for experimentation only
5958 using new verilog-highlight-modules.
5959 (verilog-read-decls): Fix regexp stack overflow in very large
5960 AUTO_TEMPLATEs, bug250.
5961 (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
5962 (verilog-scan): Create verilog-save-buffer-state to standardize
5963 making insignificant changes that shouldn't call hooks.
5964 (verilog-save-no-change-functions, verilog-save-scan-cache)
5965 (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
5966 Create verilog-save-no-change-functions to wrap verilog-scan
5967 preservation, and fix to work with nested preserved calls.
5968 (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
5969 port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
5970 generate .name with AUTOINST, bug245. Suggested by David Rogoff.
5971 (verilog-submit-bug-report): Update variable list to be complete.
5972 (verilog-auto, verilog-colorize-region): Fix AUTO expansion
5973 breaking on-the-fly font-locking.
5974 (verilog-colorize-buffer, verilog-colorize-include-files)
5975 (verilog-colorize-include-files-buffer, verilog-colorize-region)
5976 (verilog-load-file-at-mouse, verilog-load-file-at-point)
5977 (verilog-mode, verilog-read-inst-module-matcher): With point on a
5978 AUTOINST cell instance name, middle mouse button now finds-file on
5979 it. Suggested by Brad Dobbie.
5980 (verilog-alw-get-temps, verilog-auto-reset)
5981 (verilog-auto-sense-sigs, verilog-read-always-signals)
5982 (verilog-read-always-signals-recurse): Fix loop indexes being
b762841f 5983 AUTORESET. AUTORESET now assumes any variables in the
6a7662bb
BR
5984 initialization section of a for() should be ignored.
5985 Reported by Dan Dever.
a03c2342
WS
5986 (verilog-error-font-lock-keywords)
5987 (verilog-error-regexp-emacs-alist)
5988 (verilog-error-regexp-xemacs-alist): Fix error detection of
5989 Cadence HAL, reported by David Asher. Repair drift between the
5990 three similar error variables.
5991 (verilog-modi-lookup, verilog-modi-lookup-cache)
5992 (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
5993 (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
5994 Fix slow verilog-auto expansion on very large files.
ca39416c
AH
5995 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line):
5996 Fix AUTOOUTPUT treating "1*2" as a signal name in submodule connection
a03c2342
WS
5997 "{1*2{...". Broke in last revision.
5998 (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
5999 submodule connections with replications "{#{a},#{b}}".
6000
0c382083
CY
60012010-10-24 Juanma Barranquero <lekktu@gmail.com>
6002
6003 * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
6004 Fix typo in docstring.
6005
60062010-10-24 Kenichi Handa <handa@m17n.org>
6007
6008 * face-remap.el (text-scale-adjust): Call read-event with a proper
6009 prompt.
6010
60112010-10-24 Chong Yidong <cyd@stupidchicken.com>
6012
6013 * emacs-lisp/unsafep.el: Don't mark functions that display
6014 messages as safe. Suggested by Johan Bockgård.
6015
60162010-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
6017
6018 * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
6019 Turn comments into docstrings.
6020
6021 * minibuffer.el (completion--replace): Move point where it belongs
6022 when there's a common suffix (bug#7215).
6023
9317e499
CY
60242010-10-24 Chong Yidong <cyd@stupidchicken.com>
6025
6026 Merge read-color and facemenu-read-color (Bug#7242).
6027
6028 * faces.el (read-color): Use the completion code from
6029 facemenu-read-color. Require match in completion. Doc fix.
6030
6031 * facemenu.el (facemenu-read-color): Alias for read-color.
6a7662bb
BR
6032 (facemenu-set-foreground, facemenu-set-background):
6033 Use read-color.
9317e499
CY
6034
6035 * frame.el (set-background-color, set-foreground-color)
6a7662bb
BR
6036 (set-cursor-color, set-mouse-color, set-border-color):
6037 Use read-color.
9317e499 6038
a44d921f 60392010-10-24 Leo <sdl.web@gmail.com>
59dd6f73
LL
6040
6041 * eshell/em-unix.el (eshell-remove-entries): Use the TRASH
6042 argument of delete-file and delete-directory (Bug#7011).
6043
43207249
CY
60442010-10-24 Chong Yidong <cyd@stupidchicken.com>
6045
6046 * emacs-lisp/package.el (package-menu-mode-map): Inherit from
6047 button-buffer-map.
6048
484db896 60492010-10-24 Ralf Angeli <angeli@caeruleus.net>
f34e6aaa
CY
6050
6051 * emacs-lisp/package.el (package--generate-package-list): Make the
6052 *Packages* buffer read-only.
6053
10f5e3e6
AM
60542010-10-24 Alan Mackenzie <acm@muc.de>
6055
6056 * progmodes/cc-fonts.el (c-font-lock-declarations): Cache the
6057 result of `c-beginning-of-decl-1' between invocations of a lambda
6058 function (Bug #7265).
6059
3ec6ca72
DU
60602010-10-24 Daiki Ueno <ueno@unixuser.org>
6061
6062 * epg-config.el (epg-gpg-program): Try to use "gpg2" if "gpg"
6063 executable is not available on the system (Bug#7268).
6064
ec514007
GM
60652010-10-24 Glenn Morris <rgm@gnu.org>
6066
f5f25615
GM
6067 * select.el (selection-coding-system, next-selection-coding-system):
6068 Sync doc with C versions.
3646b86d 6069
8aa0f263
GM
6070 * w32-vars.el (x-select-enable-clipboard):
6071 * term/x-win.el (x-select-enable-clipboard): Move to common-win.
6072 * term/common-win.el (x-select-enable-clipboard): Move here.
6073
46710489
GM
6074 * term/tty-colors.el (tty-defined-color-alist): Remove duplicate
6075 definition of C variable.
6076
ec514007
GM
6077 * frame.el (show-trailing-whitespace, auto-hscroll-mode)
6078 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
6079 Don't redefine things that are defined in C.
6080 * cus-start.el: Also handle :risky, :safe, :set, and :tag.
6081 (show-trailing-whitespace, auto-hscroll-mode)
6082 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
6083 Set up the appropriate custom properties.
6084
8a79905d
CY
60852010-10-24 Chong Yidong <cyd@stupidchicken.com>
6086
6087 Bind "C-c ]" to ...
6088 * progmodes/f90.el (f90-mode-map): ... f90-insert-end.
6089 * nxml/nxml-mode.el (nxml-mode-map): ... nxml-finish-element.
6090 * textmodes/tex-mode.el (tex-mode-map): ... latex-close-block.
6091 * textmodes/sgml-mode.el (sgml-mode-map): ... sgml-close-tag.
6092
aa02a29f
GM
60932010-10-23 Glenn Morris <rgm@gnu.org>
6094
7dfc15df
GM
6095 * textmodes/flyspell.el (flyspell-mode): If there was an error,
6096 say what it was.
6097
66c6abf0
GM
6098 * frame.el (auto-hscroll-mode, cursor-in-non-selected-windows):
6099 Sync docs with C version.
f3d87560 6100
3193e969
GM
6101 * term/ns-win.el (xw-defined-colors):
6102 * term/x-win.el (xw-defined-colors): Make docs identical to w32-win.
6103
6f748f70
GM
6104 * term/pc-win.el (x-select-enable-clipboard):
6105 * term/x-win.el (x-select-enable-clipboard):
6106 * w32-vars.el (x-select-enable-clipboard): Make doc-strings identical.
6107
7aa93795
GM
6108 * comint.el (comint-password-prompt-regexp): Make it less vague.
6109 Bump version.
6110
17284e30
GM
6111 * help-fns.el (doc-file-to-man, doc-file-to-info): New commands.
6112
aa02a29f
GM
6113 * help.el (finder-by-keyword): Remove unnecessary autoload.
6114
69b55131
GM
61152010-10-22 Glenn Morris <rgm@gnu.org>
6116
9a0dd02d
GM
6117 * loadup.el: Unconditionally load float-sup.
6118 * paren.el (show-paren-delay):
6119 * emacs-lisp/float-sup.el:
6120 * emulation/cua-base.el (cua-prefix-override-inhibit-delay):
6121 * obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice)
6122 (lazy-lock-stealth-verbose): Assume float support.
6123 * ps-print.el: Assume float support on Emacs.
6124 * emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
6125 Remove non-float branch.
6126
69b55131
GM
6127 * emacs-lisp/autoload.el (batch-update-autoloads): Update for
6128 src/Makefile no longer being pre-processed.
6129
7c23d9e8
SM
61302010-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
6131
6132 * emacs-lisp/find-func.el (find-library): Use test-completion.
6133
23737b4a
LMI
61342010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
6135
7c23d9e8 6136 * newcomment.el (comment-dwim): Fix the intentation in the doc string.
23737b4a 6137
6e060cee 61382010-10-21 Michael Albinus <michael.albinus@gmx.de>
01d884cf
MA
6139
6140 * net/tramp-sh.el (tramp-do-file-attributes-with-stat): Do not use
6141 space in stat format string.
6142 (tramp-send-command): Unset $PS1 when using here documents, in
6143 order not to get several prompts.
6144 (tramp-get-inline-coding): Return `nil' in case of errors.
6145
08ffb131
DU
61462010-10-21 Daiki Ueno <ueno@unixuser.org>
6147
7c23d9e8
SM
6148 * hexl.el (hexl-mode, hexl-mode-exit):
6149 Tweak revert-buffer-function to inhibit auto-mode-alist (Bug#7252).
08ffb131
DU
6150 (hexl-revert-buffer-function): New function.
6151 (hexl-before-revert-hook, hexl-after-revert-hook): Abolish.
6152
ba7fdf30
AM
61532010-10-19 Alan Mackenzie <acm@muc.de>
6154
7c23d9e8
SM
6155 * progmodes/cc-langs.el (c-type-decl-prefix-key): C++ bit:
6156 Move "\(const\|throw\|volatile\)\>" nearer the start of the regexp, so
7f0789c9
AM
6157 that these keywords aren't wrongly matched as identifiers.
6158
ba7fdf30
AM
6159 * progmodes/cc-mode.el (c-before-change, c-after-change): Move the
6160 setting of c-new-BEG and c-new-END from c-before-change to
e64ae4e8 6161 c-after-change. (Bug#7181)
ba7fdf30 6162
7fd8732d
CY
61632010-10-19 Chong Yidong <cyd@stupidchicken.com>
6164
6165 * cus-face.el (custom-theme-set-faces): Revert 2010-10-18 change.
6166 Don't mark as safe.
6167
6168 * custom.el (custom-theme-set-variables): Likewise.
6169 (load-theme): Add custom-theme-set-faces and
6170 custom-theme-set-variables to safe-functions while loading.
6171 (custom-enabled-themes): Mark as risky.
6172
3f12b18c
JD
61732010-10-18 Julien Danjou <julien@danjou.info>
6174
6175 * bindings.el: Remove end dashes in default mode-line-format.
6176
b8a47412
CY
61772010-10-19 Chong Yidong <cyd@stupidchicken.com>
6178
6179 * bindings.el (global-map): Bind C-d to delete-char and deletechar
6180 to delete-forward-char.
6181
6182 * simple.el (normal-erase-is-backspace-mode): Remap delete to
6183 deletechar, and hence delete-forward-char.
6184
ca3fa302
JB
61852010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
6186
6187 * repeat.el (repeat): Use read-key (bug#6256).
6188
61892010-10-19 Chong Yidong <cyd@stupidchicken.com>
6190
6191 * emacs-lisp/unsafep.el: Don't mark functions that display
6192 messages as safe. Suggested by Johan Bockgård.
6193
61942010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
6195
6196 * minibuffer.el (completion--replace): Move point where it belongs
6197 when there's a common suffix (bug#7215).
6198
61992010-10-19 Kenichi Handa <handa@m17n.org>
6200
6201 * international/characters.el: Add category '|' (word breakable)
6202 to fullwidth characters.
6203
3224b54d
MA
62042010-10-19 Michael Albinus <michael.albinus@gmx.de>
6205
6206 * net/tramp-sh.el (tramp-do-file-attributes-with-stat)
6207 (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
6208 order to make stat results a float. Patch by Andreas Schwab
6209 <schwab@linux-m68k.org>.
6210
36ba6f07
JD
62112010-10-18 Julien Danjou <julien@danjou.info>
6212
6213 * avoid.el (mouse-avoidance-ignore-p): Ignore mouse when it is
6214 hidden by `make-pointer-invisible'.
6215
43f964fc
SM
62162010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
6217
6218 * files.el (locate-file-completion-table): Strip non-matching elements
6219 before checking length of list (bug#7238).
6220
e48eb343
CY
62212010-10-18 Chong Yidong <cyd@stupidchicken.com>
6222
6223 * custom.el (custom-theme-set-variables): Mark as a safe function.
6224 (load-theme): Check forms using unsafep.
6225
6226 * cus-face.el (custom-theme-set-faces): Mark as a safe function.
6227
df987d70
AM
62282010-10-17 Agustín Martín <agustin.martin@hispalinux.es>
6229
43f964fc
SM
6230 * textmodes/ispell.el (ispell-aspell-find-dictionary):
6231 Fix aspell data file searching (bug#7230).
df987d70 6232
29a4c45b
CY
62332010-10-16 Chong Yidong <cyd@stupidchicken.com>
6234
6235 * cus-theme.el (custom-theme--migrate-settings): New var.
6236 (customize-create-theme): Allow editing the `user' theme.
6237 (custom-theme-add-variable, custom-theme-add-var-1)
6238 (custom-theme-add-face, custom-theme-add-face-1): Add a checkbox
6239 to the front of each variable or face widget.
6240 (custom-theme-write): Save theme settings in the correct order.
6241 Optionally, remove saved settings from user customizations.
43f964fc
SM
6242 (custom-theme-write-variables, custom-theme-write-faces):
6243 Save only the checked widgets.
29a4c45b
CY
6244 (customize-themes): Add a link for migrating custom settings.
6245
43f964fc
SM
6246 * custom.el (custom-declare-theme, provide-theme):
6247 Use custom-theme-name-valid-p.
29a4c45b
CY
6248 (custom-theme-name-valid-p): Remove checks that are now
6249 unnecessary since themes no longer obey load-path.
6250
6251 * cus-edit.el (custom-variable-value-create): For the simple
6252 style, hide documentation string when hidden.
6253
782b5e8d
CY
62542010-10-16 Chong Yidong <cyd@stupidchicken.com>
6255
647bc502
CY
6256 * cus-edit.el (custom-variable, custom-face): Combine the
6257 :inhibit-magic and :display-style properties into a single
6258 :custom-style property.
43f964fc
SM
6259 (custom-toggle-hide-variable, custom-toggle-hide-face):
6260 New functions. If hiding an edited value, save it to :shown-value.
6261 (custom-variable-value-create, custom-face-value-create): Use them.
647bc502
CY
6262 (custom-magic-reset): Allow magic property to be unset.
6263
782b5e8d
CY
6264 * custom.el: Custom themes no longer use load-path.
6265 (custom-theme-load-path): New option. Change built-in theme
6266 directory to etc/.
6267 (custom-enabled-themes): Add custom-theme-load-path dependency.
6268 (custom-theme--load-path): New function.
6269 (load-theme, custom-available-themes): Use it.
6270
6271 * cus-theme.el (describe-theme-1): Use custom-theme--load-path.
6272 (customize-themes): Link to custom-theme-load-path variable.
647bc502
CY
6273 (custom-theme-add-var-1, custom-theme-add-face-1): Use the
6274 :custom-style property.
782b5e8d
CY
6275
6276 * themes/*.el: Moved to etc/.
6277
99f65cfa
RA
62782010-10-16 Ralf Angeli <angeli@caeruleus.net>
6279
6280 * textmodes/reftex-cite.el
6281 (reftex-extract-bib-entries-from-thebibliography): Do not move
6282 point when searching for \bibitem entries. Match entries with
6283 spaces or tabs in front of arguments.
6284
da16abfc
CY
62852010-10-16 Chong Yidong <cyd@stupidchicken.com>
6286
6287 * cus-theme.el (customize-create-theme): Delete overlays after
6288 erasing. If given a THEME arg, display only the faces of that arg
6289 instead of custom-theme--listed-faces.
6290 (custom-theme-variable-menu, custom-theme-variable-action)
43f964fc 6291 (custom-variable-reset-theme, custom-theme-delete-variable): Delete.
da16abfc
CY
6292 (custom-theme-add-variable, custom-theme-add-face): Apply value
6293 from the theme settings, instead of the current value.
6294 (custom-theme-add-var-1, custom-theme-add-face-1): New functions.
6295 (custom-theme-visit-theme): Allow calling outside theme buffers.
6296 (custom-theme-merge-theme): Don't enable the theme when merging.
6297 (custom-theme-write-variables, custom-theme-write-faces): Use the
6298 :shown-value properties to save buffer values, not global ones.
6299 (customize-themes): Display a warning about user customizations.
6300
6301 * cus-edit.el (custom-variable-value-create)
6302 (custom-face-value-create): Obey new special properties
6303 :shown-value and :inhibit-magic.
6304
aa095b2d
MA
63052010-10-15 Michael Albinus <michael.albinus@gmx.de>
6306
6307 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
3224b54d
MA
6308 Suppress expansion of tabs to spaces. Reported by Dale Sedivec
6309 <dale@codefu.org>.
aa095b2d 6310
7ca9cfda
KH
63112010-10-14 Kenichi Handa <handa@m17n.org>
6312
9650fc61
KH
6313 * mail/rmail.el (rmail-show-message-1): Catch an error of
6314 base64-decode-region and just show an error message (bug#7165).
6315
43f964fc 6316 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used anymore.
7ca9cfda
KH
6317 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
6318 a font-spec (bug#7197).
6319
220d91b8 63202010-10-14 Glenn Morris <rgm@gnu.org>
7163badd
GM
6321
6322 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
6323
220d91b8 63242010-10-14 Juanma Barranquero <lekktu@gmail.com>
51e4f4a8 6325
c0943d3d
JB
6326 * international/mule.el (define-coding-system):
6327 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
51e4f4a8
JB
6328 * composite.el (compose-region): Fix typo in docstring.
6329
4983ddea
CY
63302010-10-14 Chong Yidong <cyd@stupidchicken.com>
6331
de43f11b
CY
6332 * cus-face.el (custom-theme-set-faces): Call custom-push-theme
6333 only after checking the theme-face property.
6334
4983ddea
CY
6335 * faces.el (face-spec-reset-face): Reset all attributes in one
6336 single call to set-face-attribute.
6337 (face-spec-match-p): Make it a defsubst.
6338 (frame-set-background-mode): New arg KEEP-FACE-SPECS.
6339 (x-create-frame-with-faces, tty-create-frame-with-faces)
6340 (tty-set-up-initial-frame-faces): Don't recompute face specs in
6341 frame-set-background-mode, since they are recomputed immediately
6342 afterwards in face-set-after-frame-default.
6343 (face-set-after-frame-default): Minor optimization.
6344 (cursor): Provide non-trivial defface spec.
6345
6346 * custom.el (custom-theme-recalc-face): Simplify.
6347
a974dcf2
JB
63482010-10-14 Jay Belanger <jay.p.belanger@gmail.com>
6349
43f964fc 6350 * calc/calc-alg.el (math-var): Rename from `var'.
a974dcf2
JB
6351 (math-is-polynomial, math-is-poly-rec): Replace `var'
6352 with `math-var'.
6353
43f964fc 6354 * calc/calcalg2.el (math-var): Rename from `var'.
a974dcf2
JB
6355 (calcFunc-table, math-scan-for-limits): Replace `var'
6356 with `math-var'.
6357
10e4702a
GM
63582010-10-13 Glenn Morris <rgm@gnu.org>
6359
6360 * subr.el (last): Deal with dotted lists (reported in bug#7174).
6361
88f427d5
SB
63622010-10-13 Stephen Berman <stephen.berman@gmx.net>
6363
6364 * subr.el (last): Use `safe-length' instead of `length' (bug#7206).
6365
a1d16a7b
G
63662010-10-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
6367
6368 * net/tls.el (tls-program): Remove spurious %s from openssl.
6369 (tls-starttls-switches): Remove starttls hack.
6370 (open-tls-stream): Ditto.
6371 (tls-find-starttls-argument): Ditto.
6372
2e288d54
JB
63732010-10-13 Juanma Barranquero <lekktu@gmail.com>
6374
6375 * image.el (image-library-alist): Declare as obsolete alias.
6376 (image-type-available-p): Use `dynamic-library-alist'.
6377
6378 * term/w32-win.el (dynamic-library-alist):
6379 Use instead of `image-library-alist'.
6380
35744400
IS
63812010-10-13 IRIE Shinsuke <irieshinsuke@yahoo.co.jp> (tiny change)
6382
6383 * subr.el (last): Make it faster. (Bug#7174)
6384
290fe464
RO
63852010-10-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
6386
6387 * Makefile.in (compile-clean): Use `` instead of $(). (Bug#7178)
6388
2919746c
CY
63892010-10-12 Chong Yidong <cyd@stupidchicken.com>
6390
6391 * cus-theme.el (custom-theme--listed-faces): Add cursor face.
6392 (describe-theme-1): Extract doc from unloaded themes.
6393
6394 * custom.el (custom-theme-name-valid-p): Don't list color-themes.
6395
6396 * themes/tango-theme.el:
6397 * themes/tango-dark-theme.el:
6398 * themes/wheatgrass-theme.el: New files.
6399
6b09b5d1
CY
64002010-10-12 Chong Yidong <cyd@stupidchicken.com>
6401
6402 * cus-theme.el (describe-theme, customize-themes)
6403 (custom-theme-save): New commands.
6404 (custom-new-theme-mode-map): Bind C-x C-s.
6405 (custom-new-theme-mode): Use custom--initialize-widget-variables.
6406 (customize-create-theme): New optional arg THEME.
6407 (custom-theme-revert): Use it.
6408 (custom-theme-visit-theme): Remove dead code.
6409 (custom-theme-merge-theme): Use custom-available-themes.
6410 (custom-theme-write): Make interactive.
6411 (custom-theme-write): Use custom-theme-name-valid-p.
6412 (describe-theme-1, custom-theme-choose-revert)
6413 (custom-theme-checkbox-toggle, custom-theme-selections-toggle):
6414 New funs.
6415 (custom-theme-allow-multiple-selections): New option.
6416 (custom-theme-choose-mode): New major mode.
6417
43f964fc
SM
6418 * custom.el (custom-theme-set-variables): Remove dead code.
6419 Obey custom--inhibit-theme-enable.
6b09b5d1
CY
6420 (custom--inhibit-theme-enable): New var.
6421 (provide-theme): Obey it.
6422 (load-theme): Replace load with manual read/eval, in order to
6423 check for correctness. Use custom-theme-name-valid-p.
6424 (custom-theme-name-valid-p): New function.
6425 (custom-available-themes): Use it.
6426
6427 * cus-edit.el (custom--initialize-widget-variables): New function.
6428 (Custom-mode): Use it.
6429
43f964fc
SM
6430 * cus-face.el (custom-theme-set-faces): Remove dead code.
6431 Obey custom--inhibit-theme-enable.
6b09b5d1
CY
6432
6433 * help-mode.el (help-theme-def, help-theme-edit): New buttons.
6434
16366259
JB
64352010-10-12 Juanma Barranquero <lekktu@gmail.com>
6436
cb7d821e 6437 * net/telnet.el (telnet-mode-map): Fix previous change (bug#7193).
16366259 6438
4c14013d 64392010-10-12 Jan Djärv <jan.h.d@swipnet.se>
9386ae12 6440
4c14013d
JB
6441 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
6442 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
6443 (mac-right-option-modifier): New alias for ns-right-option-modifier.
6444
6445 * cus-start.el (all): ns-right-alternate-modifier is new.
9386ae12 6446
4c14013d 64472010-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
4c528197
SM
6448
6449 * emacs-lisp/lisp.el (lisp-completion-at-point):
6450 Use emacs-lisp-mode-syntax-table for the whole function.
6451
4c14013d 64522010-10-12 David Koppelman <koppel@ece.lsu.edu>
c58059f2
DK
6453
6454 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
4c528197
SM
6455 instead of font-lock-mode before adding keywords.
6456 Remove hi-lock-mode off code. Remove inhibit hack.
c58059f2
DK
6457 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
6458 non-nil; removed hook inhibit hack.
6459
4c14013d 64602010-10-12 Glenn Morris <rgm@gnu.org>
c7d6d8a1 6461
d15f9a2b
GM
6462 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
6463 (load-path-shadows-find): ... to this.
6464 (list-load-path-shadows): Update for above change.
6465
c7d6d8a1
GM
6466 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
6467
f0b7f5a8
KY
64682010-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
6469
6470 * mail/hashcash.el, net/imap.el, pgg-parse.el, pgg.el:
6471 Fix comment for declare-function.
6472
05d22d02
CY
64732010-10-11 Chong Yidong <cyd@stupidchicken.com>
6474
6475 * custom.el (custom-fix-face-spec): New function; code moved from
6476 custom-face-edit-fix-value.
6477 (custom-push-theme): Use it when checking if a face has been
6478 changed outside customize.
6479 (custom-available-themes): New function.
6480 (load-theme): Use it.
6481
43f964fc 6482 * cus-edit.el (custom-face-edit-fix-value): Use custom-fix-face-spec.
05d22d02
CY
6483
6484 * custom.el (custom-push-theme): Cleanup (use cond).
6485 (disable-theme): Recompute the saved-face property.
6486 (custom-theme-recalc-face): Follow face alias before setting prop.
6487
43f964fc
SM
6488 * image.el (image-checkbox-checked, image-checkbox-unchecked):
6489 New variables, containing checkbox images.
05d22d02
CY
6490
6491 * startup.el (fancy-startup-tail):
6492 * wid-edit.el (checkbox): Use them.
6493
293e7c22
DN
64942010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
6495
a0310a6c
DN
6496 * shell.el (shell-mode-map):
6497 * progmodes/modula2.el (m2-mode-map):
6498 * progmodes/inf-lisp.el (inferior-lisp-mode-map):
6499 * play/mpuz.el (mpuz-mode-map):
6500 * play/landmark.el (lm-mode-map):
6501 * play/decipher.el (decipher-mode-map):
6502 * play/5x5.el (5x5-mode-map):
6503 * net/telnet.el (telnet-mode-map):
6504 * net/quickurl.el (quickurl-list-mode-map):
6505 * net/mairix.el (mairix-searches-mode-map):
6506 * net/eudc-hotlist.el (eudc-hotlist-mode-map):
6507 * net/dig.el (dig-mode-map):
6508 * mail/mspools.el (mspools-mode-map):
6509 * hexl.el (hexl-mode-map):
6510 * emulation/ws-mode.el (wordstar-C-k-map, wordstar-mode-map)
6511 (wordstar-C-o-map, wordstar-C-q-map):
6512 * emacs-lisp/edebug.el (edebug-eval-mode-map):
6513 * emacs-lisp/chart.el (chart-map):
6514 * edmacro.el (edmacro-mode-map):
6515 * erc/erc-list.el (erc-list-menu-mode-map):
6516 * array.el (array-mode-map): Declare and define in one step.
6517
293e7c22
DN
6518 * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
6519
446b12da
DU
65202010-10-10 Daiki Ueno <ueno@unixuser.org>
6521
6522 * epa.el (epa-passphrase-callback-function): Display filename
6523 passed as the 3rd arg.
43f964fc
SM
6524 * epa-file.el (epa-file-passphrase-callback-function):
6525 Pass filename to epa-passphrase-callback-function.
446b12da 6526
76c16af8
CY
65272010-10-09 Chong Yidong <cyd@stupidchicken.com>
6528
6529 * cus-edit.el (custom-face-widget-to-spec)
6530 (custom-face-get-current-spec, custom-face-state): New functions.
6531 (custom-face-set, custom-face-mark-to-save)
6532 (custom-face-value-create, custom-face-state-set): Use them.
6533
6534 * cus-theme.el (custom-theme--listed-faces): New var.
6535 (customize-create-theme): Use *Custom Theme* as the buffer name.
6536 Set revert-buffer-function. Optional arg BUFFER. Insert all
6537 faces listed in custom-theme--listed-faces.
6538 (custom-theme-revert): New function.
6539 (custom-theme-add-variable, custom-theme-add-face): Insert at the
6540 bottom of the list.
6541 (custom-theme-write): Prompt for theme name if empty.
6542 (custom-theme-write-variables): Use dolist.
6543 (custom-theme-write-faces): Handle hidden (collapsed) widgets.
6544
e15f8aaa
AM
65452010-10-09 Alan Mackenzie <acm@muc.de>
6546
6547 Enhance fontification of declarators to take account of the
6548 presence/absence of "typedef".
6549
6550 * cc-engine.el (c-forward-type): New &optional param
6551 "brace-block-too".
6552 (c-forward-decl-or-cast-1): cdr of return value now indicates the
43f964fc 6553 presence of either or both of a "struct"-like keyword and "typedef".
e15f8aaa
AM
6554
6555 * cc-fonts.el (c-complex-decl-matchers): Remove the heuristic
6556 fontification of declarators which follow a "}".
6557 (c-font-lock-declarations): Fontify declarators according to the
6558 presence/absence of "typedef".
6559
6560 * cc-langs.el (c-typedef-kwds c-typedef-key): New lang variable
6561 for "typedef".
6562 (c-typedef-decl-key): New lang variable built from
6563 c-typedef-decl-kwds.
6564
cf321e50
LMI
65652010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
6566
77aec221
LMI
6567 * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
6568 since that's too annoying. Move the filter groups commands to
6569 TAB/backtab.
6570
7450df5d
LMI
6571 * epa.el (epa-passphrase-callback-function): Say what we're
6572 querying the password for.
6573
cf321e50 6574 * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
43f964fc 6575 behaviour, don't bury the ibuffer buffer when visiting other buffers.
cf321e50 6576
587faadd
CY
65772010-10-08 Chong Yidong <cyd@stupidchicken.com>
6578
6579 * cus-edit.el (custom-commands, custom-buffer-create-internal)
6580 (custom-magic-value-create): Pad button tags with spaces.
6581 (custom-face-edit): New variable.
6582 (custom-face-value-create): Determine whether to use the usual
43f964fc
SM
6583 face editor here, instead of using custom-face-selected.
6584 Pass face defaults to custom-face-edit widget.
587faadd
CY
6585 (custom-face-selected, custom-display-unselected): Delete widgets.
6586 (custom-display-unselected-match): Function removed.
43f964fc
SM
6587 (custom-face-set, custom-face-mark-to-save):
6588 Accept custom-face-edit widgets as the direct widget child.
587faadd
CY
6589
6590 * wid-edit.el (widget--completing-widget): New var.
6591 (widget-default-complete): Bind it when doing completion.
6592 (widget-string-complete, widget-file-complete): Use it.
6593
a1ab97d0
GM
65942010-10-09 Glenn Morris <rgm@gnu.org>
6595
85d50db7
GM
6596 * calendar/cal-hebrew.el (holiday-hebrew-rosh-hashanah)
6597 (holiday-hebrew-passover, holiday-hebrew-tisha-b-av)
6598 (holiday-hebrew-misc): Small simplifications.
6599
3fb78d1f
GM
6600 * emacs-lisp/authors.el (authors-valid-file-names): Add b2m.c.
6601
a1ab97d0
GM
6602 * net/browse-url.el: Don't require thingatpt, term, dired,
6603 executable, or w3-auto when compiling.
6604 (dired-get-filename, term-char-mode, term-send-down, term-send-string):
6605 Declare.
6606 (browse-url-text-emacs): Require term.
6607
2187e5bb
AS
66082010-10-08 Andreas Schwab <schwab@linux-m68k.org>
6609
6610 * net/browse-url.el (browse-url-xdg-open): Remove use of /bin/sh.
6611
e5d49589
GM
66122010-10-08 Glenn Morris <rgm@gnu.org>
6613
5823f53f
GM
6614 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
6615
e5d49589
GM
6616 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
6617 (shadows-compare-text-p): Make it an obsolete alias for...
6618 (load-path-shadows-compare-text): ... new name.
6619 (find-emacs-lisp-shadows): Update for above name change.
6620 (load-path-shadows-same-file-or-nonexistent): New name for the old
6621 shadow-same-file-or-nonexistent.
6622
4628bef1 66232010-10-08 Chong Yidong <cyd@stupidchicken.com>
397ae226
CY
6624
6625 * minibuffer.el (completion--some, completion--do-completion)
6626 (minibuffer-complete-and-exit, minibuffer-completion-help)
6627 (completion-basic-try-completion)
6628 (completion-basic-all-completions)
6629 (completion-pcm--find-all-completions): Use lexical-let to
6630 avoid some false matches in variable completion (Bug#7056)
6631
4628bef1 66322010-10-08 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
8686a5ea
OOS
6633
6634 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
6635
4628bef1 66362010-10-08 Leo <sdl.web@gmail.com>
83b8ea28
LL
6637
6638 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
6639 return non-nil if the file exists (Bug#7090).
6640
4628bef1 66412010-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
55586d2a
SM
6642
6643 * minibuffer.el (completion--replace):
6644 Better preserve markers (bug#7138).
6645
4628bef1 66462010-10-08 Juanma Barranquero <lekktu@gmail.com>
2b7ba565
JB
6647
6648 * server.el (server-process-filter): Doc fix.
6649
4628bef1 66502010-10-08 Drew Adams <drew.adams@oracle.com>
53ad04fc
DA
6651
6652 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
6653
e4adf61e
GM
66542010-10-08 Glenn Morris <rgm@gnu.org>
6655
24ac444f
GM
6656 * vc/ediff-wind.el (ediff-setup-control-frame):
6657 * vc/ediff-ptch.el (ediff-default-backup-extension):
6658 * vc/ediff-diff.el (ediff-shell, ediff-diff-options)
6659 (ediff-exec-process): Remove system-types emx, windows-95.
6660
e4adf61e
GM
6661 * net/browse-url.el (browse-url-xdg-open): Shell-quote url. (Bug#7166)
6662
61328d7c
CY
66632010-10-07 Chong Yidong <cyd@stupidchicken.com>
6664
6665 * cus-edit.el (custom-variable, custom-face): Doc fix.
6666 (custom-face-edit): Add value-create attribute.
6667 (custom-face-edit-value-create)
43f964fc
SM
6668 (custom-face-edit-value-visibility-action): New functions.
6669 Hide unused face attributes by default, and add a visibility toggle.
61328d7c
CY
6670 (custom-face-edit-deactivate): Show empty values with shadow face.
6671 (custom-face-selected): Only use this for face specs with default
6672 attributes.
6673 (custom-face-value-create): Cleanup.
6674
6675 * wid-edit.el (widget-checklist-value-create): Use dolist.
6676 (widget-checklist-match-find): Make second arg optional.
6677
ac44263a
GM
66782010-10-07 Glenn Morris <rgm@gnu.org>
6679
849b02b4
GM
6680 * hilit-chg.el (hilit-chg-get-diff-info, hilit-chg-get-diff-list-hk):
6681 Prefix things.
6682
ac44263a
GM
6683 * emacs-lisp/shadow.el (shadow-font-lock-keywords)
6684 (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to
6685 load-path-shadows-mode, update references.
06d9ef85
GM
6686 (load-path-shadows-font-lock-keywords, load-path-shadows-find-file):
6687 Rename variable and button.
6688 (list-load-path-shadows): Update button caller.
ac44263a 6689
29c72a6e
SM
66902010-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
6691
6692 * emacs-lisp/smie.el (smie-bnf-classify): New function.
6693 (smie-bnf-precedence-table): Use it to remember the closers/openers.
6694 (smie-merge-prec2s): Handle those new entries.
6695 (smie-prec2-levels): Only set precedence to nil for actual
6696 openers/closers.
6697 * progmodes/octave-mod.el (octave-smie-op-levels): Remove dummy entry
6698 that is now unnecessary.
6699
775f75bc 67002010-10-07 Miles Bader <miles@gnu.org>
07ff7702
MB
6701
6702 * emacs-lisp/regexp-opt.el (regexp-opt): Add `symbols' mode.
6703
7e1e2a6e
GM
67042010-10-07 Glenn Morris <rgm@gnu.org>
6705
58d1ac6d
GM
6706 * mail/rmail.el (mail-sendmail-delimit-header, mail-header-end)
6707 (mail-position-on-field): Remove declarations.
6708 (mail-position-on-field): Autoload it.
6709 (rmail-retry-failure): Replace use of mail-sendmail-delimit-header
6710 and mail-header-end. Don't require sendmail.
6711
7b9235ad
GM
6712 * emacs-lisp/shadow.el (shadow-font-lock-keywords): New variable.
6713 (shadow-mode): New mode.
6714 (shadow-find-file): New button.
6715 (list-load-path-shadows): Use shadow-mode and buttons.
6716
52da2182
GM
6717 * iimage.el (iimage-version): Remove.
6718 (iimage-mode-image-search-path, iimage-mode-image-regex-alist):
6719 Turn into defcustoms.
6720 (iimage-mode-map): Give it a doc string.
6721
7e1e2a6e
GM
6722 * calendar/appt.el (appt-activate): Give a warning rather than an error
6723 if there is no diary-file.
6724
e44eccd7
MA
67252010-10-06 Michael Albinus <michael.albinus@gmx.de>
6726
29c72a6e
SM
6727 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
6728 Use `tramp-handle-find-backup-file-name'.
e44eccd7 6729
4583e796
GM
67302010-10-06 Glenn Morris <rgm@gnu.org>
6731
6aecca99
GM
6732 * font-core.el (font-lock-defaults-alist): Remove variable.
6733 (font-lock-mode): Doc fix.
6734 (font-lock-default-function): Do not consult font-lock-defaults-alist.
6735 * font-lock.el (font-lock-refresh-defaults): Doc fix.
6736 (font-lock-set-defaults): Doc fix.
6737 Do not consult font-lock-defaults-alist.
6738
645a6257
GM
6739 * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
6740
4583e796
GM
6741 * emacs-lisp/cl.el: No longer provide cl-19.
6742
bd8fadca
MA
67432010-10-05 Michael Albinus <michael.albinus@gmx.de>
6744
6745 * net/tramp.el (tramp-handle-directory-files-and-attributes)
6746 (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p):
6747 New defuns, taken from tramp-smb.el.
6748 (tramp-coding-system-change-eol-conversion)
43f964fc 6749 (tramp-set-process-query-on-exit-flag): Remove.
bd8fadca 6750
43f964fc 6751 * net/tramp-compat.el (top): Do not check for byte-compiler objects.
bd8fadca
MA
6752 (tramp-compat-coding-system-change-eol-conversion)
6753 (tramp-compat-set-process-query-on-exit-flag): New defuns, taken
6754 from tramp.el.
6755
6756 * net/tramp-gvfs.el:
6757 * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag'
6758 by `tramp-compat-set-process-query-on-exit-flag'.
6759
43f964fc
SM
6760 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
6761 Use `tramp-handle-directory-files-and-attributes',
bd8fadca
MA
6762 `tramp-handle-file-exists-p' and
6763 `tramp-handle-file-newer-than-file-p'.
6764 (tramp-imap-handle-file-exists-p)
6765 (tramp-imap-handle-file-executable-p)
6766 (tramp-imap-handle-file-readable-p)
6767 (tramp-imap-handle-directory-files-and-attributes)
43f964fc 6768 (tramp-imap-handle-file-newer-than-file-p): Remove.
bd8fadca
MA
6769
6770 * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag'
6771 by `tramp-compat-set-process-query-on-exit-flag' and
6772 `tramp-coding-system-change-eol-conversion' by
6773 `tramp-compat-coding-system-change-eol-conversion'.
6774
43f964fc
SM
6775 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
6776 Use `tramp-handle-directory-files-and-attributes',
bd8fadca
MA
6777 `tramp-handle-file-exists-p' and
6778 `tramp-handle-file-newer-than-file-p'.
6779 (tramp-smb-handle-directory-files-and-attributes)
6780 (tramp-smb-handle-file-exists-p)
43f964fc
SM
6781 (tramp-smb-handle-file-newer-than-file-p): Remove.
6782 (tramp-smb-maybe-open-connection):
6783 Replace `tramp-set-process-query-on-exit-flag' by
bd8fadca
MA
6784 `tramp-compat-set-process-query-on-exit-flag'.
6785
726c5357
GM
67862010-10-05 Glenn Morris <rgm@gnu.org>
6787
6788 * obsolete/rnews.el, obsolete/rnewspost.el: Remove files.
6789
4a93e698
MA
67902010-10-04 Michael Albinus <michael.albinus@gmx.de>
6791
6792 Continue reorganization of load dependencies. (Bug#7156)
6793
6794 * net/tramp.el (tramp-handle-file-local-copy-hook)
6795 (tramp-delete-temp-file-function): Move down.
6796 (tramp-exists-file-name-handler): Move up.
6797 (tramp-register-file-name-handlers): Simplify autoload.
6798 (tramp-handle-write-region-hook, tramp-handle-directory-file-name)
6799 (tramp-handle-directory-files, tramp-handle-dired-uncache)
6800 (tramp-handle-file-modes, tramp-handle-file-name-as-directory)
6801 (tramp-handle-file-name-completion)
6802 (tramp-handle-file-name-directory)
6803 (tramp-handle-file-name-nondirectory, tramp-handle-file-regular-p)
6804 (tramp-handle-file-remote-p, tramp-handle-file-symlink-p)
6805 (tramp-handle-find-backup-file-name)
6806 (tramp-handle-insert-file-contents, tramp-handle-load)
6807 (tramp-handle-substitute-in-file-name)
6808 (tramp-handle-unhandled-file-name-directory)
6809 (tramp-mode-string-to-int, tramp-local-host-p)
43f964fc 6810 (tramp-make-tramp-temp-file): Move from tramp-sh.el.
4a93e698
MA
6811
6812 * net/tramp-gvfs.el (top):
6813 * net/tramp-smb.el (top): Do not require 'tramp-sh.
6814
6815 * net/tramp-sh.el (all): Move several objects to tramp.el, see
6816 there. Rename `tramp-handle-*' to `tramp-sh-handle-*'.
6817
b4593555
GM
68182010-10-04 Glenn Morris <rgm@gnu.org>
6819
6820 * calendar/appt.el (appt-add): Ensure reminders are enabled.
6821 (appt-activate): Give status messages.
6822
8762aa10
TZ
68232010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
6824
6825 * net/gnutls.el: Improve docs. Remove starttls and ssl emulation.
6826 Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
43f964fc
SM
6827 `gnutls-negotiate' (formerly `starttls-negotiate').
6828 Remove trivial wrapper `starttls-open-stream'.
8762aa10 6829
82fb8701
DN
68302010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
6831
6832 Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
6833 log-outgoing commands.
6834 * vc/vc.el (vc-log-internal-common): Add a new argument and use it
6835 to create a buffer local revert-buffer-function variable.
6836 (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
6837 revert-buffer-function lambda.
6838
c1ae068b
LMI
68392010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
6840
6841 * net/gnutls.el (starttls-negotiate): Use the plist interface to
43f964fc
SM
6842 `gnutls-boot'. Make TYPE the only required parameter.
6843 Allow TRUSTFILES and KEYFILES to be lists.
c1ae068b
LMI
6844 (open-ssl-stream): Use it.
6845
67141a37
GM
68462010-10-03 Glenn Morris <rgm@gnu.org>
6847
77f38949
GM
6848 * subr.el (directory-sep-char): Remove obsolete variable.
6849 * net/tramp-compat.el: Don't mess about with the byte-compiler unless
6850 it is "necessary".
6851
67141a37
GM
6852 * vc/vc-hooks.el (vc-header-alist): Remove obsolete variable.
6853 * vc/vc.el (vc-static-header-alist): Doc fix.
6854 * vc/vc-cvs.el (vc-cvs-header):
6855 * vc/vc-rcs.el (vc-rcs-header):
6856 * vc/vc-sccs.el (vc-sccs-header):
6857 * vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist.
6858 * obsolete/vc-mcvs.el (vc-mcvs-header):
6859 * progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist
6860 on XEmacs.
6861
96bcef2e
CY
68622010-10-03 Chong Yidong <cyd@stupidchicken.com>
6863
43f964fc
SM
6864 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
6865 Remove obsolete use of binary-overwrite-mode (Bug#7001).
96bcef2e 6866
ef47f179
GM
68672010-10-03 Glenn Morris <rgm@gnu.org>
6868
01c35094 6869 * obsolete/x-menu.el: Remove file, obsolete since 21.1.
0437978e 6870
aee3c6f7
GM
6871 * textmodes/rst.el (rst-font-lock-keywords-function):
6872 Drop Emacs 20 code.
6873
f88cd114
GM
6874 * textmodes/artist.el (artist-replace-char): Drop Emacs 20 code.
6875
6abfe35f
GM
6876 * printing.el: Drop Emacs 20 code.
6877
59e31cfa
GM
6878 * calendar/appt.el (appt-delete): Don't autoload it (you can't use it
6879 without having used appt.el already).
6880
922ad43e
GM
6881 * subr.el (make-local-hook): Remove function obsolete since 21.1.
6882 * progmodes/cc-mode.el (make-local-hook): Don't do cc-bytecomp stuff.
6883 (c-basic-common-init, c-font-lock-init): Only call make-local-hook on
6884 XEmacs.
6885 * progmodes/cc-styles.el (make-local-hook): Don't do cc-bytecomp stuff.
6886 (c-make-styles-buffer-local): Only call make-local-hook on XEmacs.
6887
ef47f179
GM
6888 * ps-def.el (leading-code-private-22, charset-bytes, charset-id)
6889 (charset-width, find-charset-region, chars-in-region, forward-point)
6890 (encode-coding-string, coding-system-p, ccl-execute-on-string)
6891 (define-ccl-program, multibyte-string-p, string-make-multibyte):
6892 Remove compatibility cruft (none of these are used by ps*.el).
6893
ac6ca7ba
KR
68942010-10-03 Kevin Rodgers <kevin.d.rodgers@gmail.com>
6895
6896 * subr.el (booleanp): Return t instead of a list (Bug#7086).
6897
2a847524
CY
68982010-10-03 Chong Yidong <cyd@stupidchicken.com>
6899
43f964fc
SM
6900 * server.el (server-process-filter, server-return-error):
6901 Give emacsclient time to shut down after receiving an error string.
2a847524 6902
4bc3c53d
MA
69032010-10-02 Michael Albinus <michael.albinus@gmx.de>
6904
6905 * files.el (remote-file-name-inhibit-cache): New defcustom.
6906
43f964fc
SM
6907 * time.el (display-time-file-nonempty-p):
6908 Use `remote-file-name-inhibit-cache'.
4bc3c53d 6909
43f964fc
SM
6910 * net/tramp.el (tramp-completion-reread-directory-timeout):
6911 Fix docstring.
4bc3c53d
MA
6912
6913 * net/tramp-cache.el (tramp-cache-inhibit-cache): Remove.
6914 (tramp-get-file-property): Replace `tramp-cache-inhibit-cache' by
6915 `remote-file-name-inhibit-cache'. Check also for an integer
6916 value. Add/increase counter when `tramp-verbose' >= 10.
6917 (tramp-set-file-property): Add/increase counter when
6918 `tramp-verbose' >= 10.
6919
6920 * net/tramp-cmds.el (tramp-cleanup-all-connections)
6921 (tramp-cleanup-all-buffers): Set tramp-autoload cookie.
6922 (tramp-bug): Set tramp-autoload cookie. Report all interned
6923 tramp-* variables. Report also `remote-file-name-inhibit-cache'.
6924 (tramp-reporter-dump-variable): Fix docstring. Mask non-7bit
6925 characters only in strings.
6926
6927 * net/tramp-compat.el (remote-file-name-inhibit-cache): Define due
6928 to backward compatibility.
6929
6930 * net/tramp-sh.el (tramp-handle-verify-visited-file-modtime)
6931 (tramp-handle-file-name-all-completions)
43f964fc
SM
6932 (tramp-handle-vc-registered): Use `remote-file-name-inhibit-cache'.
6933 (tramp-open-connection-setup-interactive-shell):
6934 Call `tramp-cleanup-connection' directly.
4bc3c53d 6935
9c524fcb
GM
69362010-10-02 Glenn Morris <rgm@gnu.org>
6937
3226d6ca
GM
6938 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
6939
6940 * subr.el (char-bytes): Remove obsolete function.
6941
6942 * isearch.el (isearch-return-char): Remove obsolete function.
6943
6944 * mouse.el: No longer provide mldrag.
6945 (mldrag-drag-mode-line, mldrag-drag-vertical-line):
6946 Remove obsolete aliases.
6947
6948 * comint.el (comint-kill-output): Remove obsolete alias.
6949
6950 * composite.el (decompose-composite-char): Remove obsolete function.
6951 * ps-def.el (decompose-composite-char): Remove unused function.
6952
6953 * iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
6954
6955 * outline.el (outline-visible): Remove obsolete function.
6956
6957 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
6958 * faces.el (internal-find-face, internal-get-face)
6959 (frame-update-faces, frame-update-face-colors)
6960 (x-frob-font-weight, x-frob-font-slant)
6961 (internal-frob-font-weight, internal-frob-font-slant)
6962 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
6963 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
6964 (x-make-font-bold-italic): Remove functions and aliases, obsolete
6965 since Emacs 21.1.
6966 * emulation/viper-util.el (viper-get-face):
6967 * obsolete/lucid.el (find-face, get-face): Use facep.
6968 * vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
6969 Remove unused functions.
6970 * vc/ediff-util.el (ediff-submit-report): Doc fix.
6971
9c524fcb
GM
6972 * emacs-lisp/bytecomp.el (byte-compile-file): Use kill-emacs-hook to
6973 delete tempfile if interrupted during compilation.
6974
aecb42aa
LMI
69752010-10-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
6976
6977 * net/tls.el (tls-starttls-switches): Give up on using starttls with
6978 gnutls-cli.
6979 (tls-program): Add --insecure to be consistent with the defaults from
6980 openssl s_client. Now all three commands are insecure.
6981
73077a9a
EZ
69822010-10-01 Eli Zaretskii <eliz@gnu.org>
6983
6984 * makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
6985 (TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
6986 (TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
6987
1ef075bb
GM
69882010-10-01 Glenn Morris <rgm@gnu.org>
6989
1fcaf927
GM
6990 * obsolete/sc.el: Remove file.
6991
1ef075bb
GM
6992 * files.el (temporary-file-directory): On darwin, also try
6993 DARWIN_USER_TEMP_DIR (see discussion in bug#7135).
6994
a16f5f64
JB
69952010-10-01 Juanma Barranquero <lekktu@gmail.com>
6996
6997 * server.el (server-start): Revert part of 2010-09-30T02:53:26Z!lekktu@gmail.com.
6998 Let's not break compatibility gratuitously, shall we?
6999
6b958814
G
70002010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
7001
47e08896 7002 * net/tls.el (tls-starttls-switches): New variable.
6b958814
G
7003 (tls-find-starttls-argument): Use it.
7004 (open-tls-stream): Ditto.
7005
47e08896 7006 * net/netrc.el (netrc-credentials): Return the value of the "default"
6b958814
G
7007 entry.
7008 (netrc-machine): Ditto.
7009
cad90f3b
EZ
70102010-09-30 Eli Zaretskii <eliz@gnu.org>
7011
7012 * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
7013
968ef9b4
JB
70142010-09-30 Juanma Barranquero <lekktu@gmail.com>
7015
7016 * server.el (server-start): Don't write pid to the authentication file.
7017 (server-create-tty-frame): Don't send pid.
7018 (server-process-filter): Send pid at the start of every connection.
7019
3536dea8
GM
70202010-09-30 Glenn Morris <rgm@gnu.org>
7021
8e378d88
GM
7022 * calendar/diary-lib.el (view-diary-entries, list-diary-entries)
7023 (show-all-diary-entries): Remove obsolete function aliases.
7024
3536dea8
GM
7025 * calendar/appt.el (appt-issue-message, appt-visible, appt-msg-window):
7026 Remove options, obsolete since 22.1.
6a7662bb
BR
7027 (appt-display-format, appt-display-message):
7028 Remove backwards-compatibility code.
3536dea8
GM
7029 (appt-check): No longer check appt-issue-message.
7030 (appt-make-list): No longer autoload it. Doc fix. No longer
7031 activate the package.
7032
df7fcaff
LMI
70332010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
7034
7035 * net/gnutls.el (starttls-negotiate): Loop a lot longer.
bac5cef8
LMI
7036 (starttls-negotiate): Just call boot, and let the handshake be
7037 triggered from the read loop.
df7fcaff 7038
c2828614
GM
70392010-09-29 Glenn Morris <rgm@gnu.org>
7040
17a46341
GM
7041 * calendar/diary-lib.el (diary-list-entries): Use temp buffers when
7042 not displaying the diary.
7043 (diary-add-to-list): If no buffer-file-name, fall back to diary-file.
7044 * calendar/appt.el (appt-check): No longer need to kill diary.
7045
7161e329
GM
7046 * calendar/diary-lib.el (diary-list-entries): Move the
7047 "Preparing..." message entirely here.
7048 (diary-simple-display, diary-fancy-display): Move "Preparing..."
7049 messages to diary-list-entries.
7050 (diary-include-other-diary-files): Use LIST-ONLY rather than setting
7051 diary-display-function.
7052
d0de6cba
GM
7053 * calendar/diary-lib.el (diary-include-other-diary-files):
7054 Trap some recursive includes.
7055
c2828614
GM
7056 * calendar/appt.el (appt-activate): Check diary file.
7057
0c43b6f8
KY
70582010-09-29 Katsumi Yamaoka <yamaoka@jpl.org>
7059
7060 * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
7061 construction.
7062
7063 * calendar/time-date.el: No need to require cl for Emacs 21.
7064
97ce2730
GM
70652010-09-28 Glenn Morris <rgm@gnu.org>
7066
7067 * calendar/appt.el (appt-check): Minor simplification.
7068
e0a185ae
KY
70692010-09-28 Katsumi Yamaoka <yamaoka@jpl.org>
7070
7071 * mail/sendmail.el (mail-citation-prefix-regexp): Remove "}" from
7072 citation prefix.
7073
c19f76a1
AS
70742010-09-27 Andreas Schwab <schwab@linux-m68k.org>
7075
95b6d681
JB
7076 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
7077 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
c19f76a1 7078
fd057fd2
KH
70792010-09-27 Kenichi Handa <handa@m17n.org>
7080
7081 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
7082 "ustar" format.
7083
368b3544
KH
70842010-09-27 Kenichi Handa <handa@m17n.org>
7085
7086 * international/mule.el (define-coding-system): Docstring fixed.
7087
7088 * international/mule-diag.el (describe-character-set): Use princ
7089 with proper print-length and print-level instead of insert.
7090
95b6d681 70912010-09-27 Juanma Barranquero <lekktu@gmail.com>
fb5f3a23
JB
7092
7093 * window.el (walk-windows): Doc fix (bug#7105).
7094
99368725
SM
70952010-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
7096
7097 * emacs-lisp/float-sup.el (e): Remove.
7098
8ed70bf3
LMI
70992010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
7100
7101 * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom
7102 variable.
7103 (starttls-negotiate): Use it.
7104
d2e9d0bb
LMI
71052010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
7106
7107 * net/gnutls.el (starttls-negotiate): Stop looping when we get a t
7108 back.
7109
15413fb4
SM
71102010-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
7111
7112 * emacs-lisp/pcase.el (pcase-let*, pcase-let): plet -> pcase-let.
7113
1821a7b4
LMI
71142010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
7115
6303aba1
LMI
7116 * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function.
7117
1821a7b4
LMI
7118 * net/netrc.el (netrc-store-data): New function.
7119
8af55556
TZ
71202010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
7121
7122 * net/gnutls.el: GnuTLS glue code to set up a connection.
7123
42343747
JD
71242010-09-25 Julien Danjou <julien@danjou.info>
7125
7126 * notifications.el: Call dbus-register-signal only if it is bound.
7127
ec60da52
GM
71282010-09-25 Glenn Morris <rgm@gnu.org>
7129
7130 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
7131 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
7132 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
7133 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
7134 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
7135 * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
7136 * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
7137 * eshell/esh-util.el, eshell/esh-var.el:
7138 Remove leading `*' from docs of faces and defcustoms.
7139
4c964351
UM
71402010-09-25 Ulrich Mueller <ulm@gentoo.org>
7141
7142 * eshell/em-ls.el (eshell-ls-archive-regexp):
7143 * eshell/esh-util.el (eshell-tar-regexp):
7144 * ibuffer.el (ibuffer-compressed-file-name-regexp):
7145 * info.el (Info-suffix-list):
7146 * international/mule.el (auto-coding-alist):
7147 * woman.el (woman-file-regexp, woman-file-compression-regexp):
7148 * progmodes/etags.el (tags-compression-info-list):
7149 Support xz compression.
7150
41f54b73
CY
71512010-09-25 Chong Yidong <cyd@stupidchicken.com>
7152
7153 * files.el (get-free-disk-space): Don't assume the "df" output
7154 columns line up (Bug#6995).
7155
40b1a3a9
JB
71562010-09-25 Juanma Barranquero <lekktu@gmail.com>
7157
7158 * finder.el (finder-unknown-keywords):
7159 * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
7160 * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
7161
ba3033ee
JB
71622010-09-25 Juanma Barranquero <lekktu@gmail.com>
7163
7164 * server.el (server-start): Revert part of 2010-08-08 change. Using
7165 address 127.0.0.1 for local host is now done in Fmake_network_process.
7166
5e339ee2
GM
71672010-09-24 Glenn Morris <rgm@gnu.org>
7168
7169 * image-mode.el, progmodes/compile.el, progmodes/gud.el:
7170 * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
7171 * textmodes/css-mode.el, textmodes/dns-mode.el:
7172 Move autoloaded auto-mode-alist entries to files.el.
7173 * files.el (auto-mode-alist): Move entries here.
7174
af3ccb5c
GM
71752010-09-23 Glenn Morris <rgm@gnu.org>
7176
7177 * isearch.el (isearch-lazy-highlight-cleanup)
7178 (isearch-lazy-highlight-initial-delay)
7179 (isearch-lazy-highlight-interval)
7180 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
7181 * net/net-utils.el (ipconfig-program-options):
7182 Move aliases to options before the associated definitions.
7183
266a86bd 71842010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
c9805d23
SM
7185
7186 * newcomment.el (comment-normalize-vars): Better test validity of
7187 comment-end-skip.
7188
27ffea71 71892010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9e0d4f9e
SM
7190
7191 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
7192 (float-e): New name for `e'.
7193 (degrees-to-radians, radians-to-degrees):
7194 * calendar/solar.el (solar-longitude):
7195 * calculator.el (calculator-registers, calculator-funcall):
7196 * textmodes/artist.el (artist-spray-random-points):
7197 * play/bubbles.el (bubbles--initialize-images): Use new names.
7198
27ffea71 71992010-09-23 Eric M. Ludlam <zappo@gnu.org>
a2930e43
EL
7200
7201 Update to CEDET 1.0's version of EIEIO.
7202
9e0d4f9e
SM
7203 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
7204 New function.
a2930e43
EL
7205 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
7206 (eieio-default-eval-maybe): Eval val instead of unquoting only.
7207 (class-precedence-list): If class is nil, return nil.
7208 (eieio-generic-call): If class of first input arg is nil, don't
7209 look up static methods, and do check for primary methods.
7210 (initialize-instance): See if the default needs to be evaluated
7211 during the constructor.
7212 (eieio-perform-slot-validation-for-default): Don't do the check
7213 for values that will eventually be evaluated.
7214 (eieio-eval-default-p): New function.
7215 (eieio-default-eval-maybe): Use it.
7216
27ffea71 72172010-09-23 Jan Moringen <jan.moringen@uni-bielefeld.de>
a2930e43
EL
7218
7219 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
7220 method-invocation-order.
7221 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
7222 (eieio-class-precedence-dfs): Compute class precedence list using
7223 dfs algorithm.
7224 (eieio-class-precedence-bfs): Compute class precedence list using
7225 bfs algorithm.
9e0d4f9e 7226 (eieio-class-precedence-c3): Compute class precedence list using
a2930e43
EL
7227 c3 algorithm.
7228 (class-precedence-list): New function.
7229 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
7230 (inconsistent-class-hierarchy): New error symbol.
7231 (call-next-method): Stow the replacement argument list for future
7232 call-next-method invocations.
7233
266a86bd 72342010-09-23 Glenn Morris <rgm@gnu.org>
87e798a7 7235
ea7f9ebf
GM
7236 * calendar/appt.el (appt-check): If not displaying the diary,
7237 use (diary 1) to only get the entries we need.
7238 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
7239 that it is in day order. (Bug#7019)
7240
1bf6d075
GM
7241 * calendar/appt.el (appt-check): Rather than showing the diary,
7242 just turn off invisible display, and only if needed.
7243
87e798a7
GM
7244 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
7245
1fc7dabf
GM
72462010-09-23 Glenn Morris <rgm@gnu.org>
7247
7a16788b
GM
7248 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
7249 (byte-compile-defvar, byte-compile-cl-warn):
27ffea71 7250 Start warnings with lower-case, like the majority.
7a16788b 7251
19543b17
GM
7252 * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
7253
54238e6d
GM
7254 * files.el (auto-mode-alist): Prefer C-mode for .xs. (Bug#7071)
7255
ce009d0b
GM
7256 * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
7257 * files.el (auto-mode-alist): Move ld-script entries here, further down
7258 the list.
7259
7b344dfe
GM
7260 * vc/add-log.el: Don't require timezone when compiling.
7261 (timezone-make-date-sortable): Autoload it.
7262 (change-log-sortable-date-at): Don't require timezone.
7263 Use `ignore-errors'.
7264
d9703498
GM
7265 * comint.el (comint-use-prompt-regexp-instead-of-fields):
7266 Move alias before definition, so it does not need autoloading.
7267
1fc7dabf
GM
7268 * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
7269 * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
7270 * international/kkc.el, international/ogonek.el, mail/feedmail.el:
7271 * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
7272 * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
7273 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
7274 * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
7275 * textmodes/tex-mode.el, textmodes/two-column.el:
7276 Remove leading `*' from docs of defcustoms etc.
7277
7676efad
TZ
72782010-09-23 Teodor Zlatanov <tzz@lifelogs.com>
7279
7280 * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
7281
b069e5a6
G
72822010-09-22 Dan Christensen <jdc@uwo.ca>
7283
7284 * calendar/time-date.el (date-to-time): Try using parse-time-string
7285 first before using the slower timezone-make-date-arpa-standard.
7286
1bf68d53
KY
72872010-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
7288
7289 * calendar/time-date.el (format-seconds): Comment fix.
7290
cd205c76
GM
72912010-09-22 Glenn Morris <rgm@gnu.org>
7292
7293 * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
7294 is not automatically buffer-local.
7295
4ddea91b
SM
72962010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
7297
7298 * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
7299 (smie-indent-comment): Be more careful with comment-start-skip.
7300 (smie-indent-comment-close, smie-indent-comment-inside): New funs.
7301 (smie-indent-functions): Use them.
7302
b0f037ed
MA
73032010-09-21 Michael Albinus <michael.albinus@gmx.de>
7304
7305 * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
7306
8cf1771a
JD
73072010-09-21 Jan Djärv <jan.h.d@swipnet.se>
7308
36a1b6db
JD
7309 * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
7310 tool-bar-position. Don't modify frame parameters here.
180fb94a 7311 (menu-bar-options-save): Add tool-bar-position.
36a1b6db 7312
8cf1771a
JD
7313 * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
7314
0097720d
SM
73152010-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
7316
5d8e0d5d
SM
7317 * textmodes/reftex-parse.el (reftex-what-macro)
7318 (reftex-context-substring): Let-bind forward-sexp-function to nil
7319 since we don't need/want to treat \begin...\end as a block (bug#7053).
7320
984edd22
SM
7321 * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
7322
7323 * simple.el (blink-matching-open): Use syntax-class.
7324
3672149f
SM
7325 * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
7326 Set invisibility spec for pascal's outline mode.
7327 (pascal-outline-change): Clean up calling convention.
7328 (pascal-show-all, pascal-hide-other-defuns): Update callers.
7329
549d0e1e
SM
7330 * progmodes/prolog.el (prolog-smie-forward-token)
7331 (prolog-smie-backward-token): New functions.
7332 (prolog-mode-variables): Use them to parse "!," correctly.
7333 Set up smie-blink-matching for ".".
7334
a9cb95dd
SM
7335 * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
7336 and `end'.
7337 (ispell-region, ispell-process-line): Update users.
7338
de558d10
SM
7339 * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
7340 point-min==1.
7341
94eb3112
SM
7342 * textmodes/ispell.el: Fix commenting convention.
7343 (ispell-parse-output): Simplify, use push.
7344 (ispell-region): Use match-string-no-properties.
7345 (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
7346 (ispell-minor-mode): Use define-minor-mode.
7347 (ispell-message): Remove unused var `skip-regexp'.
7348 (ispell-add-per-file-word-list): Use dynamic let-binding.
7349 Try and use the proper comment marker.
7350
1f7f45a5
SM
7351 * mail/sendmail.el: Fix commenting convention.
7352 (sendmail-send-it): Use line-beginning-position.
7353
0097720d
SM
7354 * help-fns.el (describe-variable): Add original value, if applicable.
7355
596880ea
JB
73562010-09-20 Juanma Barranquero <lekktu@gmail.com>
7357
f0713411
JB
7358 * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
7359
596880ea
JB
7360 * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
7361
37c0347e
SM
73622010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7363
2bc01104
SM
7364 * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
7365 (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
7366 (smie-prec2-levels): Use them to better diagnose precedence cycles.
7367 (smie-blink-matching-check): Don't signal a mismatch if car is t.
7368 (smie-blink-matching-open): Rewrite to remove assumptions, so that
7369 something like "." can also be a closer.
7370 (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
7371 (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
7372 Rename internal functions to use "--". Update callers.
7373
e2c3f530
SM
7374 * frame.el (make-frame-names-alist): Don't list frames on other displays.
7375
37c0347e
SM
7376 * fringe.el (fringe-styles): New var.
7377 (fringe-mode, fringe-query-style): Use it.
7378
74790210
MM
73792010-09-18 Michael R. Mauger <mmaug@yahoo.com>
7380
7381 * progmodes/sql.el: Version 2.8
93acd23d 7382 (sql-login-params): Update widget structure; changes still needed.
74790210
MM
7383 (sql-product-alist): Add :list-all and :list-table features for
7384 SQLite, Postgres and MySQL products.
7385 (sql-redirect): Handle default value.
7386 (sql-execute, sql-execute-feature): New functions.
7387 (sql-read-table-name): New function.
93acd23d 7388 (sql-list-all, sql-list-table): New functions. User API.
74790210
MM
7389 (sql-mode-map, sql-interactive-mode-map): Add key definitions
7390 for above functions.
7391 (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
7392 for above functions.
7393 (sql-postgres-login-params): Add user and database defaults.
7394 (sql-buffer-live-p): Bug fix.
93acd23d 7395 (sql-product-history): New variable.
35f52ed6 7396 (sql-read-product): New function. Use it.
74790210
MM
7397 (sql-set-product, sql-product-interactive): Use it.
7398 (sql-connection-history): New variable.
93acd23d 7399 (sql-read-connection): New function. Use it.
74790210
MM
7400 (sql-connect): New function.
7401 (sql-for-each-login): Redesign function interface.
7402 (sql-make-alternate-buffer-name, sql-save-connection): Use it.
93acd23d
JB
7403 (sql-get-login-ext, sql-get-login): Use it. Handle default values.
7404 (sql-comint): Check for program. Existing live buffer.
74790210
MM
7405 (sql-comint-postgres): Add port parameter.
7406
cec01cd2
SM
74072010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7408
7409 * emacs-lisp/warnings.el: Fix commenting convention.
7410 (display-warning): Use special mode and make the buffer read-only.
7411
c2a845b5
JB
74122010-09-18 Jay Belanger <jay.p.belanger@gmail.com>
7413
7414 * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
7415 empty string when it follows a repeated or optional pattern.
7416
f5632fb6
SM
74172010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
7418
7419 * indent.el (indent-according-to-mode): Apply syntax-propertize.
7420 (indent-region): Use indent-according-to-mode.
7421
71b961e8
EZ
74222010-09-18 Eli Zaretskii <eliz@gnu.org>
7423
7424 * fringe.el (fringe-mode): Doc fix.
7425
dbbd7ad4
KRC
74262010-09-14 Kan-Ru Chen <kanru@kanru.info> (tiny change)
7427
7428 * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
7429 refreshing the preview buffer.
7430
b879a6e2
SM
74312010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
7432
7433 * textmodes/tex-mode.el (tex-syntax-propertize-rules)
7434 (latex-syntax-propertize-rules): New consts; replace
7435 tex-font-lock-syntactic-keywords.
7436 (tex-env-mark, latex-env-before-change): New functions.
7437 (latex-electric-env-pair-mode): New minor mode.
7438 (tex-font-lock-verb): Change arguments; do move point.
7439 (tex-font-lock-syntactic-face-function): Adjust to new verbatim
7440 representation as a form of comment.
7441 (tex-font-lock-keywords-1): Remove workaround, now unneeded.
7442 (doctex-syntax-propertize-rules): New const; replaces
7443 doctex-font-lock-syntactic-keywords.
7444 (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
7445
7446 * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
7447 (fortran-make-syntax-propertize-function): New function; replaces
7448 fortran-font-lock-syntactic-keywords.
7449 (fortran-mode): Use it.
7450 (fortran-line-length): Use it. Improve interactive spec.
7451
7452 * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
7453 (syntax-propertize-rules): Add var-ref case. Fix offset computation
7454 when adding surrounding \(..\).
7455
7456 * progmodes/js.el (js-mode): Fix last change (bug#7054).
7457
4be520fb
SM
74582010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7459
269c197e
SM
7460 * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
7461 Use with-current-buffer.
7462
4be520fb
SM
7463 * isearch.el (isearch-face): Rename from `isearch'.
7464 (isearch-highlight): Use new name.
7465
a67597d6
EZ
74662010-09-17 Eli Zaretskii <eliz@gnu.org>
7467
7468 * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
7469 5, for `half' width fringes. (Bug#6933)
7470
31c381e8
SM
74712010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7472
3fe6ef4e
SM
7473 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
7474 (byte-compile-defvar): "foo/bar" does not lack a prefix.
7475
31c381e8
SM
7476 * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
7477
fb0cf781
J
74782010-09-17 Stephen Berman <stephen.berman@gmx.net>
7479
7480 * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
7481 in calculating new frame position. Add more space between new and
7482 parent on the left (Bug#7048).
7483
1a9dc3b5
MA
74842010-09-17 Michael Albinus <michael.albinus@gmx.de>
7485
7486 * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
7487 defmacro.
7488
dff0fdc3
CY
74892010-09-16 Chong Yidong <cyd@stupidchicken.com>
7490
31c381e8 7491 * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
6e23d4a4 7492
117c96c7
CY
7493 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
7494 obsolete alias for x-selection-value.
7495
dff0fdc3
CY
7496 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
7497
c6f2191f
MA
74982010-09-16 Michael Albinus <michael.albinus@gmx.de>
7499
7500 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
7501 cookie.
7502
6139f995
MA
75032010-09-15 Michael Albinus <michael.albinus@gmx.de>
7504
7505 * net/tramp-compat.el (tramp-compat-with-temp-message)
7506 (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
7507 (tramp-compat-process-put): New defuns.
7508
7509 * net/tramp.el (top):
7510 * net/tramp-gvfs.el (top):
7511 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
7512
31c381e8
SM
7513 * net/tramp.el (tramp-progress-reporter-update):
7514 Use `tramp-compat-funcall'.
6139f995
MA
7515
7516 * net/tramp.el (tramp-process-actions):
0dc3e410
MA
7517 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion):
7518 * net/tramp-sh.el (tramp-handle-vc-registered)
31c381e8
SM
7519 (tramp-get-remote-stat, tramp-get-remote-readlink):
7520 Use `tramp-compat-with-temp-message'.
6139f995
MA
7521
7522 * net/tramp-sh.el (top): Require 'cl.
7523 (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
31c381e8
SM
7524 (tramp-open-connection-setup-interactive-shell):
7525 Use `tramp-compat-process-put'.
6139f995 7526
22c3ce97
AM
75272010-09-15 Alan Mackenzie <acm@muc.de>
7528
7529 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
7530 indentation.
a4ee83cc 7531 (c-forward-<>-arglist-recur): Fix an infinite recursion.
22c3ce97 7532
4f1e9960
SM
75332010-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
7534
7535 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
7536 `lexical' for warnings related to lexical scoping.
7537 (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
7538 global vars which don't have a prefix and could hence affect lexical
7539 scoping in unrelated files.
7540
01e80360
LMI
75412010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
7542
7543 * net/imap.el: Revert back to version
7544 cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
7545 seem problematic.
7546
5e2a84e3
JB
75472010-09-14 Juanma Barranquero <lekktu@gmail.com>
7548
7549 * obsolete/old-whitespace.el (whitespace-unload-function):
7550 Explicitly pass `obarray' to `unintern' to avoid a warning.
7551
f3a30a50
SM
75522010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7553
7554 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
7555 Add `when' argument. Update callers.
7556
7557 * subr.el (unintern): Declare the obarray arg mandatory.
7558
92b99a01
GM
75592010-09-14 Glenn Morris <rgm@gnu.org>
7560
67ae9766
GM
7561 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
7562 Doc fixes.
7563
92b99a01
GM
7564 * calendar/diary-lib.el (diary-included-files): New variable.
7565 (diary-list-entries): Maybe initialize diary-included-files.
7566 (diary-include-other-diary-files): Append to diary-included-files.
7567 * calendar/appt.el (appt-update-list): Also check the members of
7568 diary-included-files. (Bug#6999)
08151ec5 7569 (appt-check): Doc fix.
92b99a01 7570
6664fc59 75712010-09-14 David Reitter <david.reitter@gmail.com>
5a66ed0f
DR
7572
7573 * simple.el (line-move-visual): Do not truncate goal column to
7574 integer size. (Bug#7020)
7575
6664fc59 75762010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
dba28758
SM
7577
7578 * repeat.el (repeat): Allow repeating when the last event is a click.
7579 Suggested by Drew Adams (bug#6256).
7580
6664fc59 75812010-09-14 Sascha Wilde <wilde@sha-bang.de>
681b88dd 7582
01c35094 7583 * vc/vc-hg.el (vc-hg-state, vc-hg-working-revision):
681b88dd
SM
7584 Replace setting HGRCPATH to "" by some less invasive --config options.
7585
6664fc59 75862010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
71e657fc
SM
7587
7588 * font-lock.el (font-lock-beginning-of-syntax-function):
7589 Mark as obsolete.
7590
6664fc59 75912010-09-14 Glenn Morris <rgm@gnu.org>
639b9d87
GM
7592
7593 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
7594 and tool-bar modes. (Bug#6211)
7595 (menu-bar-mode): Move setting of standard-value after the
7596 minor-mode definition, otherwise it seems to have no effect.
7597
6664fc59 75982010-09-14 Masatake YAMATO <yamato@redhat.com>
33bd47be
MY
7599
7600 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
7601 Fix typo. (Bug#6976)
7602
6664fc59 76032010-09-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9c405a86
CY
7604
7605 * whitespace.el: Allow cleaning up blanks without blank
7606 visualization (Bug#6651). Adjust help window for
7607 whitespace-toggle-options (Bug#6479). Allow to use fill-column
71e657fc
SM
7608 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
7609 (whitespace-style): Add new value 'face. Adjust docstring.
7610 (whitespace-space, whitespace-hspace, whitespace-tab):
7611 Adjust foreground property face.
9c405a86
CY
7612 (whitespace-line-column): Adjust docstring and type declaration.
7613 (whitespace-style-value-list, whitespace-toggle-option-alist)
7614 (whitespace-help-text): Adjust const initialization.
7615 (whitespace-toggle-options, global-whitespace-toggle-options):
7616 Adjust docstring.
7617 (whitespace-display-window, whitespace-interactive-char)
7618 (whitespace-style-face-p, whitespace-color-on): Adjust code.
7619 (whitespace-help-scroll): New fun.
7620
ba96ddf5
KY
76212010-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
7622
7623 * calendar/time-date.el (format-seconds): Comment fix.
7624
a386ac70
MM
76252010-09-13 Michael R. Mauger <mmaug@yahoo.com>
7626
7627 * progmodes/sql.el: Version 2.7.
7628 (sql-buffer-live-p): Improve detection.
7629 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
7630 (sql-set-sqli-buffer): Use it.
7631 (sql-product-interactive): Run `sql-set-sqli-hook'.
7632 (sql-rename-buffer): Code cleanup.
7633 (sql-redirect, sql-redirect-value): New functions. More to come.
7634
5d921df2
JB
76352010-09-13 Juanma Barranquero <lekktu@gmail.com>
7636
7637 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.
7638 * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
7639 (TRAMP_SRC): New macro.
7640 ($(lisp)/net/tramp-loaddefs.el): New target.
7641
03c1ad43
MA
76422010-09-13 Michael Albinus <michael.albinus@gmx.de>
7643
7644 Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el.
7645
7646 * Makefile.in (TRAMP_SRC): Remove tramp-fish.el. Add tramp-sh.el.
7647
7648 * net/tramp.el (top): Don't show loading message. Require just
4f1e9960
SM
7649 'tramp-compat, everything else is required there.
7650 Use `ignore-errors' where appropriate.
03c1ad43
MA
7651 (tramp-inline-compress-start-size, tramp-copy-size-limit)
7652 (tramp-terminal-type, tramp-end-of-output)
7653 (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
7654 (tramp-completion-function-alist-ssh)
7655 (tramp-completion-function-alist-telnet)
7656 (tramp-completion-function-alist-su)
7657 (tramp-completion-function-alist-putty, tramp-remote-path)
7658 (tramp-remote-process-environment, tramp-sh-extra-args)
7659 (tramp-actions-before-shell, tramp-uudecode)
7660 (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
7661 (tramp-perl-file-attributes)
7662 (tramp-perl-directory-files-and-attributes)
7663 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
7664 (tramp-perl-encode, tramp-perl-decode)
7665 (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
7666 (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
7667 (tramp-handle-make-symbolic-link, tramp-handle-load)
7668 (tramp-handle-file-name-as-directory)
7669 (tramp-handle-file-name-directory)
7670 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
7671 (tramp-handle-file-exists-p, tramp-handle-file-attributes)
7672 (tramp-do-file-attributes-with-ls)
7673 (tramp-do-file-attributes-with-perl)
7674 (tramp-do-file-attributes-with-stat)
7675 (tramp-handle-set-visited-file-modtime)
7676 (tramp-handle-verify-visited-file-modtime)
7677 (tramp-handle-set-file-modes, tramp-handle-set-file-times)
7678 (tramp-set-file-uid-gid, tramp-remote-selinux-p)
7679 (tramp-handle-file-selinux-context)
7680 (tramp-handle-set-file-selinux-context)
7681 (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
7682 (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
7683 (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
7684 (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
7685 (tramp-handle-file-ownership-preserved-p)
7686 (tramp-handle-directory-file-name, tramp-handle-directory-files)
7687 (tramp-handle-directory-files-and-attributes)
7688 (tramp-do-directory-files-and-attributes-with-perl)
7689 (tramp-do-directory-files-and-attributes-with-stat)
7690 (tramp-handle-file-name-all-completions)
7691 (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
7692 (tramp-handle-copy-file, tramp-handle-copy-directory)
7693 (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
7694 (tramp-do-copy-or-rename-file-via-buffer)
7695 (tramp-do-copy-or-rename-file-directly)
7696 (tramp-do-copy-or-rename-file-out-of-band)
7697 (tramp-handle-make-directory, tramp-handle-delete-directory)
7698 (tramp-handle-delete-file)
7699 (tramp-handle-dired-recursive-delete-directory)
7700 (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
7701 (tramp-handle-insert-directory)
7702 (tramp-handle-unhandled-file-name-directory)
7703 (tramp-handle-expand-file-name)
7704 (tramp-handle-substitute-in-file-name)
7705 (tramp-handle-executable-find, tramp-process-sentinel)
7706 (tramp-handle-start-file-process, tramp-handle-process-file)
7707 (tramp-handle-call-process-region, tramp-handle-shell-command)
7708 (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
7709 (tramp-handle-insert-file-contents)
7710 (tramp-handle-insert-file-contents-literally)
7711 (tramp-handle-find-backup-file-name)
7712 (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
7713 (tramp-vc-registered-file-names, tramp-handle-vc-registered)
7714 (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
7715 (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
7716 (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
7717 (tramp-find-file-exists-command, tramp-open-shell)
7718 (tramp-find-shell, tramp-barf-if-no-shell-prompt)
7719 (tramp-open-connection-setup-interactive-shell)
7720 (tramp-local-coding-commands, tramp-remote-coding-commands)
7721 (tramp-find-inline-encoding, tramp-call-local-coding-command)
7722 (tramp-inline-compress-commands, tramp-find-inline-compress)
7723 (tramp-compute-multi-hops, tramp-maybe-open-connection)
1fc7dabf 7724 (tramp-send-command, tramp-wait-for-output)
03c1ad43
MA
7725 (tramp-send-command-and-check, tramp-barf-unless-okay)
7726 (tramp-send-command-and-read, tramp-mode-string-to-int)
7727 (tramp-convert-file-attributes, tramp-check-cached-permissions)
7728 (tramp-file-mode-from-int, tramp-file-mode-permissions)
7729 (tramp-shell-case-fold, tramp-make-copy-program-file-name)
7730 (tramp-method-out-of-band-p, tramp-local-host-p)
7731 (tramp-get-remote-path, tramp-get-remote-tmpdir)
7732 (tramp-get-ls-command, tramp-get-ls-command-with-dired)
7733 (tramp-get-test-command, tramp-get-test-nt-command)
7734 (tramp-get-file-exists-command, tramp-get-remote-ln)
7735 (tramp-get-remote-perl, tramp-get-remote-stat)
7736 (tramp-get-remote-readlink, tramp-get-remote-trash)
7737 (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
7738 (tramp-get-local-uid, tramp-get-local-gid)
6664fc59 7739 (tramp-get-inline-compress, tramp-get-inline-coding): Move to
03c1ad43
MA
7740 tramp-sh.el.
7741 (tramp-methods, tramp-default-method-alist)
7742 (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
7743 Move initialization to tramp-sh.el.
7744 (tramp-temp-name-prefix): Make it a defconst.
7745 (tramp-dissect-file-name): Don't check anymore for multi-hop
7746 methods.
7747 (tramp-debug-outline-regexp): Add a docstring.
31c381e8 7748 (tramp-debug-outline-level): Rename from `tramp-outline-level'.
03c1ad43
MA
7749 (tramp-get-debug-buffer): Use it.
7750
7751 * net/tramp-cache.el (top): Set tramp-autoload cookie for
7752 initialization forms.
7753 (tramp-set-connection-property): Don't protect `tramp-message'
7754 call, it isn't necessary any longer.
7755 (tramp-dump-connection-properties): Use `ignore-errors'.
7756
7757 * net/tramp-compat.el (top): Require 'advice, 'format-spec,
7758 'password-cache and 'auth-source.
7759
7760 * net/tramp-gvfs.el (top):
7761 * net/tramp-smb.el (top): Require 'tramp-sh.
7762
7763 * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
7764
7765 * net/tramp-sh.el: New file, derived from tramp.el.
7766 (top): Initialize `tramp-methods', `tramp-default-method-alist',
6139f995 7767 `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
31c381e8
SM
7768 Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
7769 Use `ignore-errors' where appropriate.
7770 (tramp-sh-file-name-handler-alist): Rename from
03c1ad43
MA
7771 `tramp-file-name-handler-alist'.
7772 (tramp-send-command-and-check): Return t or nil. Remove all
7773 `zerop' checks, where called.
7774 (tramp-handle-set-file-modes)
7775 (tramp-do-copy-or-rename-file-directly)
7776 (tramp-handle-delete-directory, tramp-handle-delete-file)
93acd23d 7777 (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
03c1ad43
MA
7778 (tramp-sh-file-name-handler, tramp-send-command-and-check)
7779 (tramp-get-remote-ln): Set tramp-autoload cookie.
7780
7781 * net/tramp-fish.el: Remove file.
7782
c5fe4acb
DU
77832010-09-13 Daiki Ueno <ueno@unixuser.org>
7784
7785 * epa-file.el (epa-file-insert-file-contents): If visiting, bind
7786 buffer-file-name to avoid file-locking. (Bug#7026)
7787
7ea2d383
MA
77882010-09-13 Julien Danjou <julien@danjou.info>
7789
7790 * notifications.el (notifications-notify): Add support for
7791 image-path and sound-name.
7792 (notifications-specification-version): Add this variable.
7793
5616cc54
SM
77942010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7795
31c381e8 7796 * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
5616cc54 7797
94c7243b
LL
77982010-09-12 Leo <sdl.web@gmail.com>
7799
7800 * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
7801 (rcirc-completion-start): New variables.
7802 (rcirc-nick-completions): Rename to rcirc-completions.
7803 (rcirc-nick-completion-start-offset): Delete.
7804 (rcirc-completion-at-point): New function for constructing
7805 completion data for both nicks and irc commands. Add to
7806 completion-at-point-functions in rcirc mode.
7807 (rcirc-complete): Rename from rcirc-nick-complete; use
7808 rcirc-completion-at-point.
7809 (defun-rcirc-command): Update rcirc-client-commands.
7810
0f34ae28
GM
78112010-09-11 Glenn Morris <rgm@gnu.org>
7812
7813 * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
7814 atomically, to avoid parallel build errors. (Bug#4196)
7815
9250002f
MM
78162010-09-11 Michael R. Mauger <mmaug@yahoo.com>
7817
7818 * progmodes/sql.el: Version 2.6
7819 (sql-dialect): Synonym for "sql-product".
7820 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
7821 (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
7822 Set "sql-buffer" to buffer name not buffer object so multiple sql
7823 interactive buffers work properly. Reverts misguided changes in
7824 earlier work.
7825 (sql-comint): Make sure different buffer name is used if "*SQL*"
7826 buffer is for a different product.
7827 (sql-make-alternate-buffer-name): Fix bug with "sql-database"
7828 login param.
7829 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
7830 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
7831 (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
7832 Accept new buffer name or prompt for one.
7833 (sql-port): Default to zero.
7834 (sql-comint-mysql): Handle "sql-port" as a numeric.
7835 (sql-port-history): Delete unused variable.
7836 (sql-get-login): Default "sql-port" to a number.
31c381e8 7837 (sql-product-alist): Correct Postgres prompt and terminator regexp.
9250002f
MM
7838 (sql-sqlite-program): Dynamically detect presence of "sqlite" or
7839 "sqlite3" executables.
31c381e8 7840 (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
9250002f
MM
7841 (sql-buffer-live-p): New function.
7842 (sql-mode-menu, sql-send-string): Use it.
7843 (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
7844 syntax pattern.
7845 (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
7846 (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
7847
a9ec34f4
LMI
78482010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
7849
31c381e8 7850 * net/netrc.el (netrc-credentials): New convenience function.
a9ec34f4 7851
cf38dd42
SM
78522010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
7853
7854 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
7855 to replace texinfo-font-lock-syntactic-keywords.
7856 (texinfo-mode): Use it.
7857
7858 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
7859 Use syntax-propertize-function.
7860
7861 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
7862 replace sgml-font-lock-syntactic-keywords.
7863 (sgml-mode): Use it.
7864
7865 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
7866 since we don't use it.
7867
7868 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
7869
7870 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
7871 if available.
7872 (vhdl-fontify-buffer): Adjust.
7873
7874 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
7875 replace tcl-font-lock-syntactic-keywords.
7876 (tcl-mode): Use it.
7877
7878 * progmodes/simula.el (simula-syntax-propertize-function): New var to
7879 replace simula-font-lock-syntactic-keywords.
7880 (simula-mode): Use it.
7881
7882 * progmodes/sh-script.el (sh-st-symbol): Remove.
7883 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
7884 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
7885 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
7886 (sh-font-lock-paren): Set syntax-multiline.
7887 (sh-font-lock-syntactic-keywords): Remove.
7888 (sh-syntax-propertize-function): New function to replace it.
7889 (sh-mode): Use it.
7890
7891 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
7892 Define while compiling.
7893 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
7894 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
7895 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
7896 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
7897 (ruby-here-doc-end-syntax): Only define when
7898 syntax-propertize is not available.
7899 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
7900 New functions.
7901 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
7902 (electric-indent-chars): Silence bytecompiler.
7903 (ruby-mode): Use prog-mode, syntax-propertize-function, and
7904 electric-indent-chars.
7905
7906 * progmodes/python.el (python-syntax-propertize-function): New var to
7907 replace python-font-lock-syntactic-keywords.
7908 (python-mode): Use it.
7909 (python-quote-syntax): Simplify and adjust to new use.
7910
7911 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
7912 replace perl-font-lock-syntactic-keywords.
7913 (perl-syntax-propertize-special-constructs): New fun to replace
7914 perl-font-lock-special-syntactic-constructs.
7915 (perl-font-lock-syntactic-face-function): New fun.
7916 (perl-mode): Use it.
7917
7918 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
7919 to replace octave-font-lock-close-quotes.
7920 (octave-syntax-propertize-function): New function to replace
7921 octave-font-lock-syntactic-keywords.
7922 (octave-mode): Use it.
7923
7924 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
7925 replaces mixal-font-lock-syntactic-keywords.
7926 (mixal-mode): Use it.
7927
7928 * progmodes/make-mode.el (makefile-syntax-propertize-function):
7929 New var; replaces makefile-font-lock-syntactic-keywords.
7930 (makefile-mode): Use it.
7931 (makefile-imake-mode): Adjust.
7932
7933 * progmodes/js.el (js--regexp-literal): Define while compiling.
7934 (js-syntax-propertize-function): New var; replaces
7935 js-font-lock-syntactic-keywords.
7936 (js-mode): Use it.
7937
7938 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
7939 replaces gdb-script-font-lock-syntactic-keywords.
7940 (gdb-script-mode): Use it.
7941
7942 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
7943 (fortran--font-lock-syntactic-keywords): New var.
7944 (fortran-line-length): Update syntax-propertize-function and
7945 fortran--font-lock-syntactic-keywords.
7946
7947 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
7948
7949 * progmodes/cfengine.el (cfengine-mode):
7950 Use syntax-propertize-function.
7951 (cfengine-font-lock-syntactic-keywords): Remove.
7952
7953 * progmodes/autoconf.el (autoconf-mode):
7954 Use syntax-propertize-function.
7955 (autoconf-font-lock-syntactic-keywords): Remove.
7956
7957 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
7958 (ada-after-change-function, ada-initialize-syntax-table-properties)
7959 (ada-handle-syntax-table-properties): Only define when
7960 syntax-propertize is not available.
7961 (ada-mode): Use syntax-propertize-function.
7962
7963 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
7964 (font-lock-fontify-syntactic-keywords-region): Move handling of
7965 font-lock-syntactically-fontified to...
7966 (font-lock-default-fontify-region): ...here.
7967 Let syntax-propertize-function take precedence.
7968 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
7969
7970 * emacs-lisp/syntax.el (syntax-propertize-function)
7971 (syntax-propertize-chunk-size, syntax-propertize--done)
7972 (syntax-propertize-extend-region-functions): New vars.
7973 (syntax-propertize-wholelines, syntax-propertize-multiline)
7974 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
7975 (syntax-propertize): New functions.
7976 (syntax-propertize-rules): New macro.
7977 (syntax-ppss-flush-cache): Set syntax-propertize--done.
7978 (syntax-ppss): Call syntax-propertize.
7979
7980 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
7981
36f7d366
AM
79822010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
7983
7984 * textmodes/ispell.el (ispell-init-process): Improve comments.
7985 XEmacs compatibility changes regarding (add-hook) 'local option
7986 and (set-process-query-on-exit-flag).
7987
8fca3921
MA
79882010-09-09 Michael Albinus <michael.albinus@gmx.de>
7989
cf38dd42
SM
7990 * net/tramp-cache.el (tramp-parse-connection-properties):
7991 Set tramp-autoload cookie.
8fca3921 7992
399653d6
GM
79932010-09-09 Glenn Morris <rgm@gnu.org>
7994
7995 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
7996 (imagemagick-register-types): Doc fix.
7997
c34a9669
SM
79982010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
7999
b073dc4b
SM
8000 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
8001
8002 * progmodes/js.el (require): Require is already "eval-and-compile".
8003 (js--re-search-forward): Avoid `eval'. Preserve the error data.
8004 (js--re-search-backward): Use js--re-search-forward.
8005
8006 * progmodes/fortran.el (fortran-line-length): Don't recompute
8007 syntactic keywords redundantly a second time.
8008
8009 * progmodes/ada-mode.el: Replace "(set '" with setq.
8010 (ada-mode): Simplify.
8011 (ada-create-case-exception, ada-adjust-case-interactive)
8012 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
8013 (ada-search-ignore-string-comment, ada-move-to-start)
8014 (ada-move-to-end): Use with-syntax-table.
8015
8016 * font-lock.el (save-buffer-state): Remove `varlist' arg.
8017 (font-lock-unfontify-region, font-lock-default-fontify-region):
8018 Update usage correspondingly.
8019 (font-lock-fontify-syntactic-keywords-region):
8020 Set parse-sexp-lookup-properties buffer-locally here.
8021 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
8022
c34a9669
SM
8023 * simple.el (blink-matching-open): Don't burp if we can't find a match.
8024
13639aab
GM
80252010-09-08 Glenn Morris <rgm@gnu.org>
8026
5a972c36
GM
8027 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
8028 Error if not compiled with -DBYTE_CODE_METER.
8029
13639aab
GM
8030 * emacs-lisp/bytecomp.el (byte-recompile-directory):
8031 Ignore dir-locals-file.
8032
331b2b90
SM
80332010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
8034
8035 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8036 Not a const.
8037 (compilation-error-regexp-alist-alist): Rule out ": " in file names
8038 for the `gnu' messages.
8039 (compilation-set-skip-threshold): New command.
8040 (compilation-start): Use \' rather than $.
8041 (compilation-forget-errors): Use clrhash.
8042
73b4d51a
AM
80432010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
8044
8045 * textmodes/ispell.el (ispell-valid-dictionary-list):
8046 Simplify logic.
8047
0f34aa77
MA
80482010-09-08 Michael Albinus <michael.albinus@gmx.de>
8049
8050 Migrate to Tramp 2.2. Rearrange load dependencies.
8051 (Bug#1529, Bug#5448, Bug#5705)
8052
8053 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
8054 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
8055 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
8056
8057 * net/tramp.el (top): Remove all other tramp-* loads except
8058 tramp-compat.el. Remove all changes to tramp-unload-hook for
8059 other tramp-* packages. Rearrange defun order. Change calls of
8060 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
8061 `tramp-compat-octal-to-decimal' to new function names.
8062 (tramp-terminal-type, tramp-initial-end-of-output)
8063 (tramp-methods, tramp-foreign-file-name-handler-alist)
8064 (tramp-tramp-file-p, tramp-completion-mode-p)
8065 (tramp-send-command-and-check, tramp-get-remote-path)
8066 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
8067 (tramp-shell-quote-argument): Set tramp-autoload cookie.
8068 (with-file-property, with-connection-property): Move to
8069 tramp-cache.el.
8070 (tramp-local-call-process, tramp-decimal-to-octal)
8071 (tramp-octal-to-decimal): Move to tramp-compat.el.
8072 (tramp-handle-shell-command): Do not require 'shell.
8073 (tramp-compute-multi-hops): No special handling for tramp-gw-*
8074 symbols.
8075 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
8076
8077 * net/tramp-cache.el (top): Require 'tramp. Add to
8078 `tramp-unload-hook'.
8079 (tramp-cache-data, tramp-get-file-property)
8080 (tramp-set-file-property, tramp-flush-file-property)
8081 (tramp-flush-directory-property, tramp-get-connection-property)
8082 (tramp-set-connection-property, tramp-flush-connection-property)
8083 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
8084 cookie.
8085 (with-file-property, with-connection-property): New defuns, moved
8086 from tramp.el.
8087 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
8088 macro.
8089
8090 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
8091 (tramp-version): Set tramp-autoload cookie.
8092
8093 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
8094 changes to tramp-unload-hook for other tramp-* packages. Add to
8095 `tramp-unload-hook'.
8096 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
8097 (tramp-compat-call-process): New defuns, moved from tramp.el.
8098
8099 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
6a7662bb
BR
8100 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
8101 Add to `tramp-unload-hook'. Change call of
0f34aa77
MA
8102 `tramp-compat-decimal-to-octal' to new function name.
8103 (tramp-fish-method): Make it a defconst.
8104 (tramp-fish-file-name-p): Make it a defsubst.
8105 (tramp-fish-method, tramp-fish-file-name-handler)
8106 (tramp-fish-file-name-p): Set tramp-autoload cookie.
8107
8108 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
8109 `tramp-foreign-file-name-handler-alist'. Add to
8110 `tramp-unload-hook'.
8111 (tramp-ftp-method): Make it a defconst.
8112 (tramp-ftp-file-name-p): Make it a defsubst.
8113 (tramp-ftp-method, tramp-ftp-file-name-handler)
8114 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
8115
8116 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
8117 `tramp-foreign-file-name-handler-alist'. Add to
8118 `tramp-unload-hook'. Change checks, whether package can be
8119 loaded.
8120 (tramp-gvfs-file-name-p): Make it a defsubst.
8121 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
8122 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
8123 (tramp-gvfs-handle-file-directory-p): New defun.
8124 (tramp-gvfs-file-name-handler-alist): Use it.
8125
8126 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
8127 `tramp-foreign-file-name-handler-alist'. Add to
8128 `tramp-unload-hook'.
8129 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
8130 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
8131 defconst.
8132 (tramp-gw-tunnel-method, tramp-gw-socks-method)
8133 (tramp-gw-open-connection): Set tramp-autoload cookie.
8134
8135 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
6a7662bb
BR
8136 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
8137 Add to `tramp-unload-hook'. Change checks, whether package can be
0f34aa77
MA
8138 loaded.
8139 (tramp-imap-file-name-p): Make it a defsubst.
8140 (tramp-imap-method, tramp-imaps-method)
8141 (tramp-imap-file-name-handler)
8142 (tramp-imap-file-name-p): Set tramp-autoload cookie.
8143
8144 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
6a7662bb
BR
8145 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
8146 Add to `tramp-unload-hook'. Change checks, whether package can be
0f34aa77
MA
8147 loaded. Change call of `tramp-compat-decimal-to-octal' to new
8148 function name.
8149 (tramp-smb-tunnel-method): Make it a defconst.
8150 (tramp-smb-file-name-p): Make it a defsubst.
8151 (tramp-smb-method, tramp-smb-file-name-handler)
8152 (tramp-smb-file-name-p): Set tramp-autoload cookie.
8153
8154 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
8155 (tramp-uuencode-region): Set tramp-autoload cookie.
8156
8157 * net/trampver.el (top) Add to `tramp-unload-hook'.
8158 (tramp-version, tramp-bug-report-address): Set tramp-autoload
8159 cookie. Update release number.
8160
308e764f
AM
81612010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
8162
8163 * textmodes/ispell.el (ispell-start-process): Make sure original
8164 arg list is properly initialized (Bug#6993, Bug#6994).
8165
10999305 81662010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
3fa0dc8f
AK
8167
8168 * files.el (directory-abbrev-alist): Use \` as default regexp.
19fe13df
SM
8169
8170 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
8171 chars like - or ] (bug#6984).
8172 (rx-any-condense-range): Explode 2-char ranges.
8173
10999305
CY
81742010-09-06 Glenn Morris <rgm@gnu.org>
8175
8176 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
8177
81782010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1e05f387
SM
8179
8180 * textmodes/bibtex.el:
8181 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
8182
f292afe5
LMI
81832010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
8184
331b2b90 8185 * net/imap.el (imap-message-map): Remove optional buffer parameter,
f292afe5
LMI
8186 since no callers use it.
8187 (imap-message-get): Ditto.
8188 (imap-message-put): Ditto.
8189 (imap-mailbox-map): Ditto.
8190 (imap-mailbox-put): Ditto.
8191 (imap-mailbox-get): Ditto.
a131b9b8 8192 (imap-mailbox-get): Revert last change for this function.
f292afe5 8193
dfe1285d
LMI
81942010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
8195
331b2b90 8196 * net/imap.el (imap-fetch-safe): Remove function, and alter all
31b5f292
LMI
8197 callers to use `imap-fetch' instead. According to the comments, this
8198 should be safe, since all other IMAP clients use the 1:* syntax.
331b2b90
SM
8199 (imap-enable-exchange-bug-workaround): Remove.
8200 (imap-debug): Remove -- doesn't seem very useful.
dfe1285d 8201
3ff31c90
LMI
82022010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
8203
8204 * net/imap.el (imap-log): New convenience function used throughout
8205 instead of repeating the same code all over the place.
8206
dfe1285d 82072010-09-05 David De La Harpe Golden <david@harpegolden.net>
93d68d4f
DDLHG
8208
8209 * mouse.el (mouse-save-then-kill): Save region to kill-ring
8210 when mouse-drag-copy-region is non-nil (Bug#6956).
8211
93a596e1
CY
82122010-09-05 Chong Yidong <cyd@stupidchicken.com>
8213
8d76af4a
CY
8214 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
8215 Improve regexps (Bug#6987).
8216 (dired-sort-toggle): Search more robustly for -t flag.
8217
93a596e1
CY
8218 * files.el (get-free-disk-space): Search more robustly for
8219 "available" column. Suggested by Ehud Karni
8220 <ehud@unix.mvs.co.il>.
8221
733946e7
JB
82222010-09-05 Juanma Barranquero <lekktu@gmail.com>
8223
8224 * international/uni-bidi.el:
8225 * international/uni-category.el:
8226 * international/uni-combining.el:
8227 * international/uni-decimal.el:
8228 * international/uni-mirrored.el:
8229 * international/uni-name.el: Regenerate.
8230
2e664aab
SM
82312010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
8232
6aeafb34
SM
8233 * electric.el (electric-indent-post-self-insert-function):
8234 Don't reindent with a sloppy indentation function.
8235
2e664aab
SM
8236 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
8237 border case in change-log-mode.
8238
13ef65a4
CY
82392010-09-04 Chong Yidong <cyd@stupidchicken.com>
8240
8241 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8242 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
8243 Recognize leading tab in gcc-include regexp. Ignore names with
8244 leading "from" or "in" in gnu regexp (Bug#6937).
8245
5abf1556
SM
82462010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
8247
6aeafb34 8248 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
5abf1556
SM
8249 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
8250 (ispell-start-process): Avoid setq and simplify logic.
8251 (ispell-init-process): Setup kill-buffer-hook locally when needed.
8252 (kill-buffer-hook): Don't use it globally with code that uses
8253 expand-file-name since that may call kill-buffer via
8254 code_conversion_restore.
8255
0be01d2c
CY
82562010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
8257
8258 * emacs-lisp/package.el (package-directory-list): Only call
8259 file-name-nondirectory on a string.
8260
ebf662f4
CY
82612010-09-02 Chong Yidong <cyd@stupidchicken.com>
8262
5abf1556
SM
8263 * emacs-lisp/package.el (package--download-one-archive):
8264 Ensure that archive-contents is valid before saving it.
ebf662f4
CY
8265 (package-activate-1, package-mark-obsolete, define-package)
8266 (package-compute-transaction, package-list-maybe-add): Use push.
8267
e5eddfd1
SM
82682010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
8269
89acf735
SM
8270 Use SMIE's blink-paren for octave-mode.
8271 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
8272 Backslashes do not escape single-quotes, single-quotes do.
8273 (octave-block-else-regexp, octave-block-end-regexp)
8274 (octave-block-match-alist): Remove.
8275 (octave-smie-bnf-table): New var, with old content.
8276 (octave-smie-op-levels): Use it.
8277 (octave-smie-closer-alist): New var.
8278 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
8279 (octave-blink-matching-block-open): Remove.
8280 (octave-reindent-then-newline-and-indent, octave-electric-semi)
8281 (octave-electric-space): Let self-insert-command run expand-abbrev and
8282 blink parens.
8283
3b843809
SM
8284 * electric.el (electricity): New group.
8285 (electric-indent-chars): New var.
8286 (electric-indent-post-self-insert-function): New fun.
8287 (electric-indent-mode): New minor mode.
8288 (electric-pair-skip-self): New custom.
8289 (electric-pair-post-self-insert-function): New function.
8290 (electric-pair-mode): New minor mode.
8291
0da20854
SM
8292 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
8293 calcAlg-blink-matching-open.
8294 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
8295 (calc-do-alg-entry): Only touch the part of the keymap that varies.
8296 Use the new blink-matching-check-function.
8297
a49e651e
SM
8298 Provide blink-matching support to SMIE.
8299 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
8300 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
8301 (smie-blink-matching-check, smie-blink-matching-open): New functions.
8302
e5eddfd1
SM
8303 * simple.el (newline): Fix last change to properly remove itself from
8304 the hook.
8305
b13ebb5c
SM
83062010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
8307
8308 * simple.el (newline): Eliminate optimization.
8309 Use post-self-insert-hook to set hard-newline and things before
8310 running post-self-insert-hook.
8311 (blink-matching-check-mismatch): New function.
8312 (blink-matching-check-function): New variable.
8313 (blink-matching-open): Use them.
8314 Skip back forward over prefix chars skipped by forward-sexp.
8315 Don't check if the parens are backslash escaped.
8316 (blink-paren-post-self-insert-function): Check backslash escaping here.
8317
e687c2cd
CY
83182010-09-02 Chong Yidong <cyd@stupidchicken.com>
8319
b13ebb5c
SM
8320 * emacs-lisp/package.el (package-menu-mode-map):
8321 Change package-menu-revert bindings to revert-buffer.
e687c2cd
CY
8322 (package-menu-mode): Set revert-buffer-function.
8323 (package-menu-revert): Doc fix.
8324
567efba9
AM
83252010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
8326
8327 * textmodes/ispell.el (ispell-init-process): Use "~/" as
8328 `default-directory' unless using Ispell per-directory personal
8329 dictionaries and not in a mini-buffer under XEmacs.
8330 (kill-buffer-hook): Do not kill ispell process on exit when
93acd23d 8331 `ispell-process-directory' is "~/". (Bug#6143)
567efba9 8332
6d7cc563
JD
83332010-09-02 Jan Djärv <jan.h.d@swipnet.se>
8334
08d4877e
J
8335 * simple.el (kill-new): Call interprogram-cut-function with only
8336 one argument.
8337
45240125
JD
8338 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
8339 Remove cut buffer from error message.
8340
8341 * term/x-win.el (x-select-text):
8342 * term/pc-win.el (x-selection-value):
8343 * term/ns-win.el (x-selection-value):
8344 * eshell/em-term.el:
8345 * w32-fns.el (x-get-selection-value):
8346 * mouse-sel.el (mouse-sel-set-selection-function):
8347 * frame.el (display-selections-p): Remove cut-buffer in documentation.
8348
6d7cc563
JD
8349 * term/x-win.el: Update documentation for x-last-selected-text-*.
8350 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
8351 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
6a7662bb
BR
8352 (x-select-text): Remove argument PUSH, update documentation.
8353 Remove cut-buffer code.
6d7cc563 8354 (x-selection-value-internal): Was previously x-selection-value.
5986b97d 8355 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
6a7662bb
BR
8356 Update documentation, remove cut-buffer code.
8357 Call x-selection-value-internal.
6d7cc563
JD
8358 (x-clipboard-yank): Call x-selection-value-internal.
8359 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
8360
8361 * term/pc-win.el (x-last-selected-text):
8362 x-cut-buffer-or-selection-value renamed to x-selection-value
8363 (x-select-text): Remove argument PUSH, update documentation.
8364
8365 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
8366 x-cut-buffer-or-selection-value renamed to x-selection-value
88b5a757 8367 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
6d7cc563
JD
8368 (x-select-text): Remove argument PUSH, update documentation.
8369
8370 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
8371
8372 * w32-fns.el (x-last-selected-text):
8373 x-cut-buffer-or-selection-value renamed to x-selection-value.
8374 (x-cut-buffer-max): Remove.
8375 (x-select-text): Remove argument PUSH, update documentation.
8376
8377 * simple.el (interprogram-cut-function): Remove mention of PUSH.
8378
8379 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
8380
8381 * mouse-sel.el (mouse-sel-get-selection-function):
8382 x-cut-buffer-or-selection-value renamed to x-selection-value.
5986b97d 8383 (x-select-text): Remove optional push.
6d7cc563 8384
4de81ee0
SM
83852010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
8386
8f4e9110
SM
8387 * simple.el (blink-paren-function): Move from C to here.
8388 (blink-paren-post-self-insert-function): New function.
8389 (post-self-insert-hook): Use it.
8390
4de81ee0
SM
8391 * emacs-lisp/pcase.el (pcase-split-memq):
8392 Fix overenthusiastic optimisation.
8393 (pcase-u1): Handle the case of a lambda pred.
8394
d419e1d9
KH
83952010-08-31 Kenichi Handa <handa@m17n.org>
8396
8397 * international/mule-cmds.el (standard-display-european-internal):
8398 Setup standard-display-table for 8-bit characters by storing 8-bit
8399 characters in the element vector.
8400
1e05f387
SM
8401 * disp-table.el (standard-display-8bit):
8402 Setup standard-display-table for 8-bit characters by storing 8-bit
d419e1d9
KH
8403 characters in the element vector.
8404 (standard-display-european): Likewise.
8405
61f7096c
CY
84062010-08-31 Masatake YAMATO <yamato@redhat.com>
8407
8408 * textmodes/nroff-mode.el (nroff-view): New command.
8409 (nroff-mode-map): Bind it to C-c C-c.
8410
ec5d3ff7
SM
84112010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
8412
c8977b2e
SM
8413 * emacs-lisp/smie.el (smie-down-list): New command.
8414
ec5d3ff7
SM
8415 Remove old indentation and navigation code on octave-mode.
8416 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
8417 smie-down-list rather than add a binding for octave-down-block.
8418 (octave-mark-block, octave-blink-matching-block-open):
8419 Rely on forward-sexp-function.
8420 (octave-fill-paragraph): Don't narrow, so you can use
8421 indent-according-to-mode.
8422 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
8423 (octave-in-block-p, octave-re-search-forward-kw)
8424 (octave-re-search-backward-kw, octave-indent-calculate)
8425 (octave-end-as-array-index-p, octave-block-end-offset)
8426 (octave-scan-blocks, octave-forward-block, octave-backward-block)
8427 (octave-down-block, octave-backward-up-block, octave-up-block)
8428 (octave-before-magic-comment-p, octave-indent-line): Remove.
8429
187d3296
CY
84302010-08-31 Chong Yidong <cyd@stupidchicken.com>
8431
8432 * emacs-lisp/package.el (package--read-archive-file): Just use
8433 `read', to avoid copying an additional string.
8434 (package-menu-mode): Set header-line-format here.
8435 (package-menu-refresh, package-menu-revert): Signal an error if
8436 not in the Package Menu.
8437 (package-menu-package-list): New var.
8438 (package--generate-package-list): Operate on the current buffer;
8439 don't assume that it is *Packages*, since the user may rename it.
8440 Allow persistent package listings and sort keys using
8441 package-menu-package-list and package-menu-package-sort-key.
8442 (package-menu--version-predicate): Fix version calculation.
8443 (package-menu-sort-by-column): Don't select the window.
ec5d3ff7
SM
8444 (package--list-packages): Create the *Packages* buffer.
8445 Set package-menu-package-list-key.
187d3296
CY
8446 (list-packages): Sorting by status is now the default.
8447 (package-buffer-info): Use match-string-no-properties.
8448 (define-package): Add a &rest argument for future proofing, but
8449 don't use it yet.
8450 (package-install-from-buffer, package-install-buffer-internal):
ec5d3ff7
SM
8451 Merge into a single function, package-install-from-buffer.
8452 (package-install-file): Change caller.
187d3296
CY
8453
8454 * finder.el: Load finder-inf using `require'.
8455 (finder-list-matches): Sorting by status is now the default.
8456 (finder-compile-keywords): Simpify printing.
8457
e17b68ed
SM
84582010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
8459
8460 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
8461 (octave-mode-map): Remove special bindings for forward/backward-block
8462 and octave-backward-up-block. Use smie-close-block.
8463 (octave-continuation-marker-regexp): New var.
8464 (octave-continuation-regexp): Use it.
8465 (octave-operator-table, octave-smie-op-levels)
8466 (octave-operator-regexp, octave-smie-indent-rules): New vars.
8467 (octave-smie-backward-token, octave-smie-forward-token): New funs.
8468 (octave-mode): Use SMIE.
8469 (octave-close-block): Delete.
8470
42b6a73b
EZ
84712010-08-30 Eli Zaretskii <eliz@gnu.org>
8472
8473 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
8474 CLIPBOARD, not in PRIMARY. (Bug#6944)
8475
f291fe60
SM
84762010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
8477
ee992a8c
SM
8478 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
8479 a list of parents.
8480 (smie-indent-column): Allow indirection through variables.
8481
d36b74ca
SM
8482 * composite.el (save-buffer-state): Delete, unused.
8483 * font-lock.el (save-buffer-state): Use with-silent-modifications.
8484 (font-lock-default-fontify-region): Use with-syntax-table.
8485 * jit-lock.el (with-buffer-unmodified): Remove.
8486 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
8487
f291fe60
SM
8488 Use `declare' in defmacros.
8489 * window.el (save-selected-window):
8490 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
8491 * progmodes/python.el (def-python-skeleton):
8492 * net/dbus.el (dbus-ignore-errors):
8493 * jka-cmpr-hook.el (with-auto-compression-mode):
8494 * international/mule.el (with-category-table):
8495 * emacs-lisp/timer.el (with-timeout):
8496 * emacs-lisp/lisp-mnt.el (lm-with-file):
8497 * emacs-lisp/eieio.el (with-slots):
8498 * emacs-lisp/easymenu.el (easy-menu-define):
8499 * emacs-lisp/debug.el (debugger-env-macro):
8500 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
8501 (Multiple-value-call, Multiple-value-prog1):
8502 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
8503 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
8504 edebug rule to definition.
8505 * emacs-lisp/lisp-mode.el (save-selected-window)
8506 (with-current-buffer, combine-after-change-calls)
8507 (with-output-to-string, with-temp-file, with-temp-buffer)
8508 (with-temp-message, with-syntax-table, read-if, eval-after-load)
8509 (dolist, dotimes, when, unless):
8510 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
8511
96ae4c8f
CY
85122010-08-29 Chong Yidong <cyd@stupidchicken.com>
8513
8514 * finder.el: Require `package'.
8515 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
8516 (finder-package-info): Var deleted.
8517 (finder-keywords-hash, finder--builtins-alist): New vars.
8518 (finder-compile-keywords): Compute package--builtins and
8519 finder-keywords-hash instead of finder-keywords-hash, respecting
8520 the "Package" header.
f291fe60
SM
8521 (finder-unknown-keywords, finder-list-matches):
8522 Use finder-keywords-hash and package--list-packages.
96ae4c8f
CY
8523 (finder-mode): Don't set font-lock-defaults.
8524 (finder-exit): We don't use "*Finder-package*" and "*Finder
8525 Category*" buffers anymore.
8526
8527 * emacs-lisp/package.el (package--builtins-base): Var deleted.
8528 (package--builtins): Set default value to nil.
8529 (package-initialize): Load precomputed value of package--builtins
8530 from finder-inf.el.
8531 (package-alist, package-compute-transaction)
8532 (package-download-transaction): Improve docstring.
8533 (package-read-all-archive-contents): Do not change
8534 package--builtins here.
8535 (list-packages): Make package-list-packages an alias for this.
8536 Sort by status by default.
8537 (package--list-packages): Add optional PACKAGES arg.
8538 (describe-package-1): Use font-lock-face property. For built-in
8539 packages, insert file commentary.
8540 (package--generate-package-list): Rename from
8541 package-list-packages-internal; all callers changed. Add optional
8542 PACKAGES arg. Add alphabetical sort fallbacks.
8543 (package-menu--version-predicate, package-menu--status-predicate)
8544 (package-menu--description-predicate)
8545 (package-menu--name-predicate): New functions.
8546
8547 * info.el (Info-finder-find-node): Search package-alist instead of
8548 finder-package-info.
8549
e2046ecf
CY
85502010-08-29 Chong Yidong <cyd@stupidchicken.com>
8551
8552 * subr.el (version-regexp-alist): Don't use "a" and "b" for
8553 "alpha" and "beta".
8554 (version-to-list): Handle versions like "10.3d".
8555
6fe79b7c
SM
85562010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8557
8558 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
8559 (macroexp-accumulate): Use `declare'.
8560
1a868076
VJL
85612010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8562
8563 * whitespace.el (whitespace-style): Adjust type declaration.
8564
9e69cb05
KH
85652010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
8566
8567 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
8568
85692010-08-26 Chong Yidong <cyd@stupidchicken.com>
8570
8571 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
8572 (Bug#6907).
8573
4142607e
NW
85742010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
8575
8576 * progmodes/js.el: Make indentation more customizable (Bug#6914).
8577 (js-paren-indent-offset, js-square-indent-offset)
8578 (js-curly-indent-offset): New options.
8579 (js--proper-indentation): Use them.
8580
88a36e60
DC
85812010-08-26 Daniel Colascione <dan.colascione@gmail.com>
8582
8583 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
8584 instead of inspecting font-lock properties (Bug#6916).
8585
38dbc4d8
DR
85862010-08-26 David Reitter <david.reitter@gmail.com>
8587
8588 * server.el (server-visit-files): Run pre-command-hook and
76e3243a 8589 post-command-hook for each buffer while it is current (Bug#6910).
38dbc4d8
DR
8590 (server-execute): Do not run hooks here.
8591
44ffae96
MA
85922010-08-26 Michael Albinus <michael.albinus@gmx.de>
8593
8594 Sync with Tramp 2.1.19.
8595
d86d2721
SM
8596 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region):
8597 Protect deleting tmpfile.
0dc3e410 8598 (tramp-gvfs-maybe-open-connection): Use `tramp-compat-funcall'.
20b8ac83 8599
0dc3e410 8600 * net/tramp.el (tramp-handle-expand-file-name)
20b8ac83 8601 (tramp-completion-handle-file-name-all-completions)
1e05f387
SM
8602 (tramp-completion-handle-file-name-completion):
8603 Use `tramp-connectable-p'.
20b8ac83 8604
44ffae96
MA
8605 * net/trampver.el: Update release number.
8606
cb6c4991
CY
86072010-08-26 Chong Yidong <cyd@stupidchicken.com>
8608
8609 * help.el (help-map): Bind `C-h P' to describe-package.
8610
8611 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
8612
8613 * emacs-lisp/package.el (package-refresh-contents): Catch errors
8614 when downloading archives.
8615 (describe-package-1): Add package commentary.
8616 (package-install-button-action): New function.
8617 (package-menu-mode-map): Bind ? to package-menu-describe-package.
8618 (package-menu-view-commentary): Function removed.
8619 (package-list-packages-internal): Hide the `package' package too.
8620
b60f961f
KH
86212010-08-25 Kenichi Handa <handa@m17n.org>
8622
8623 * language/misc-lang.el ("Arabic"): New language environment.
8624 Setup composition-function-table for Arabic characters.
8625
8626 * international/fontset.el (setup-default-fontset): Fix typo for
8627 arabic OTF spec (fini->fina).
8628
a0c16be4
J
86292010-08-25 Jan Djärv <jan.h.d@swipnet.se>
8630
8631 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
8632 on all frames.
8633
85cc3d4f
VJL
86342010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8635
8636 * whitespace.el: Allow cleaning up blanks without blank
8637 visualization (Bug#6651). Adjust help window for
8638 whitespace-toggle-options (Bug#6479). Allow to use fill-column
8639 instead of whitespace-line-column (from EmacsWiki). New version
8640 13.1.
88b5a757 8641 (whitespace-style): Add new value 'face. Adjust docstring.
6a7662bb
BR
8642 (whitespace-space, whitespace-hspace, whitespace-tab):
8643 Adjust foreground property face.
85cc3d4f
VJL
8644 (whitespace-line-column): Adjust docstring and type declaration.
8645 (whitespace-style-value-list, whitespace-toggle-option-alist)
8646 (whitespace-help-text): Adjust const initialization.
8647 (whitespace-toggle-options, global-whitespace-toggle-options):
8648 Adjust docstring.
8649 (whitespace-display-window, whitespace-interactive-char)
8650 (whitespace-style-face-p, whitespace-color-on): Adjust code.
8651 (whitespace-help-scroll): New fun.
8652
cb8759ca
CY
86532010-08-24 Chong Yidong <cyd@stupidchicken.com>
8654
8655 * emacs-lisp/package.el (list-packages): Alias for
8656 package-list-packages.
8657
44a41a47
KR
86582010-08-24 Kevin Ryde <user42@zip.com.au>
8659
be7748e7
KR
8660 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
8661 (Bug#5651).
8662
44a41a47
KR
8663 * progmodes/ruby-mode.el (ruby): Add defgroup.
8664
edfd00fa
CY
86652010-08-24 Chong Yidong <cyd@stupidchicken.com>
8666
8667 * progmodes/python.el: Add Ipython support (Bug#5390).
8668 (python-shell-prompt-alist)
8669 (python-shell-continuation-prompt-alist): New options.
8670 (python--set-prompt-regexp): New function.
6a7662bb
BR
8671 (inferior-python-mode, run-python, python-shell):
8672 Require ansi-color. Use python--set-prompt-regexp to set the comint
edfd00fa
CY
8673 prompt based on the Python interpreter.
8674 (python--prompt-regexp): New var.
8675 (python-check-comint-prompt)
8676 (python-comint-output-filter-function): Use it.
8677 (run-python): Use a pipe (Bug#5694).
8678
86792010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
8680
8681 * progmodes/python.el (python-send-region): Send a different
8682 Python command if Ipython is in use.
8683 (python-check-version): Use a Python command to find the version.
8684
1c409d0b
CY
86852010-08-24 Chong Yidong <cyd@stupidchicken.com>
8686
8687 * mouse.el (mouse-yank-primary): Avoid setting primary when
8688 deactivating the mark (Bug#6872).
8689
733946e7 86902010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
9027027d
CF
8691
8692 * progmodes/python.el (python-block-pairs): Allow use of "finally"
8693 with "else" (Bug#3991).
8694
e73f184c
MA
86952010-08-23 Michael Albinus <michael.albinus@gmx.de>
8696
8697 * net/dbus.el: Accept UNIX domain sockets as bus address.
8698 (top): Don't initialize `dbus-registered-objects-table' anymore,
01c35094 8699 this is done in dbusbind.c.
e73f184c
MA
8700 (dbus-check-event): Adapt test for bus.
8701 (dbus-return-values-table, dbus-unregister-service)
8702 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
8703 Adapt doc string.
8704
1a140747
JB
87052010-08-23 Juanma Barranquero <lekktu@gmail.com>
8706
8707 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
8708
7133b7ee
JL
87092010-08-22 Juri Linkov <juri@jurta.org>
8710
8711 * simple.el (read-extended-command): New function with the logic
8712 for `completing-read' moved to Elisp from `execute-extended-command'.
8713 Use `function-called-at-point' in `minibuffer-default-add-function'
8714 to get a command name for M-n (bug#5364, bug#5214).
8715
198a7a97
CY
87162010-08-22 Chong Yidong <cyd@stupidchicken.com>
8717
8718 * startup.el (command-line-1): Issue warning for ignored arguments
8719 --unibyte, etc (Bug#6886).
8720
c00725d7
LL
87212010-08-22 Leo <sdl.web@gmail.com>
8722
8723 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
8724 (ignore, bright, dim, keyword): Split list of nicknames before
8725 passing to rcirc-add-or-remove (Bug#6894).
8726
bc7d7ea6
CY
87272010-08-22 Chong Yidong <cyd@stupidchicken.com>
8728
8729 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
8730
b0126eac 87312010-08-22 Leo <sdl.web@gmail.com>
e0143335 8732
\81ukasz Stelmach, 2010-08-26 17:33:52 +0200">d5720b4c 8733 Fix buffer-list rename&refresh after killing a buffer in ido.
76e3243a 8734 * ido.el: Revert Óscar's.
e0143335
LL
8735 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
8736 Remember the buffers at head, rather than their name.
76e3243a 8737 * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
e0143335 8738
b0126eac 87392010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
8f081e96
SM
8740 Stefan Monnier <monnier@iro.umontreal.ca>
8741
8742 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
8743 extra backslash added to each line (bug#6890).
8744
b0126eac 87452010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
3ff78624
SM
8746
8747 * subr.el (read-key): Don't echo keystrokes (bug#6883).
8748
b0126eac 87492010-08-22 Glenn Morris <rgm@gnu.org>
635f7282
GM
8750
8751 * menu-bar.el (menu-bar-games-menu): Add landmark.
8752
b0126eac 87532010-08-22 Glenn Morris <rgm@gnu.org>
fb89a654 8754
9130a2d6
GM
8755 * align.el (align-regexp): Make group and spacing arguments
8756 use the interactive defaults when non-interactive. (Bug#6698)
8757
fb89a654
GM
8758 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
8759 expansion, so as not to need sendmail.
8760 (mail-text-start): Remove declaration.
8761 (rmail-retry-failure): Require sendmail.
8762
b0126eac 87632010-08-22 Chong Yidong <cyd@stupidchicken.com>
186e86db
SM
8764
8765 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
8766
b0126eac 87672010-08-22 Michael Albinus <michael.albinus@gmx.de>
a67e6f13 8768
186e86db
SM
8769 * progmodes/flymake.el (flymake-start-syntax-check-process):
8770 Use `start-file-process' in order to let it run also on remote hosts.
a67e6f13 8771
b0126eac 87722010-08-22 Kenichi Handa <handa@m17n.org>
f3cc64f8
KH
8773
8774 * files.el: Add `word-wrap' as safe local variable.
8775
b0126eac 87762010-08-22 Glenn Morris <rgm@gnu.org>
bb25c8d7
GM
8777
8778 * woman.el (woman-translate): Case matters. (Bug#6849)
8779
b0126eac 87802010-08-22 Chong Yidong <cyd@stupidchicken.com>
a4aae1a5
CY
8781
8782 * simple.el (kill-region): Doc fix (Bug#6787).
8783
b0126eac 87842010-08-22 Glenn Morris <rgm@gnu.org>
721dce17
GM
8785
8786 * calendar/diary-lib.el (diary-header-line-format):
8787 Fit it to the window, not the frame.
8788
b0126eac 87892010-08-22 Andreas Schwab <schwab@linux-m68k.org>
7467d0a8
AS
8790
8791 * subr.el (ignore-errors): Add debug declaration.
8792
b0126eac 87932010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
1fcf76af
GG
8794
8795 * whitespace.el (whitespace-color-off): Remove post-command-hook
8796 locally.
8797
537ffaf3
SM
87982010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
8799
8800 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
8801
d64b8a68
CY
88022010-08-21 Chong Yidong <cyd@stupidchicken.com>
8803
8804 * cus-edit.el (custom-group-value-create): Add extra newline
8805 before end line (Bug#6876).
8806
d2625c3d
CY
88072010-08-21 Chong Yidong <cyd@stupidchicken.com>
8808
8809 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
8810 when extending it. Before killing on the second click, check if
8811 the buffer is the correct one. Doc fix.
8812 (mouse-secondary-save-then-kill): Allow usage without first
8813 calling mouse-start-secondary, by defaulting to point. Don't save
8814 an empty secondary selection. Doc fix.
8815
80525855
VJL
88162010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8817
91bdeb66
VJL
8818 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
8819 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
537ffaf3 8820 New version 13.0.
80525855
VJL
8821 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
8822 Adjust initialization.
8823 (whitespace-bob-marker, whitespace-eob-marker)
8824 (whitespace-buffer-changed): New vars.
8825 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
8826 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
537ffaf3
SM
8827 (whitespace-post-command-hook, whitespace-display-char-on):
8828 Adjust code.
80525855 8829 (whitespace-looking-back, whitespace-buffer-changed): New funs.
85cc3d4f 8830 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
80525855 8831
4b9c0a49
SM
88322010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
8833
118cf454
SM
8834 * files.el (locate-file-completion-table): Only list the .el and .elc
8835 extensions if there's no other choice (bug#5955).
8836
a2e5caf7
SM
8837 * facemenu.el (facemenu-self-insert-data): New var.
8838 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
8839 New functions.
8840 (facemenu-add-face): Use them.
8841
4b9c0a49
SM
8842 * simple.el (blink-matching-open): Obey forward-sexp-function.
8843
0193499f
SM
88442010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
8845
b2a15250
SM
8846 * simple.el (prog-mode-map): New var.
8847 (prog-indent-sexp): New command.
8848
b5ba2d6f
SM
8849 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
8850
9acd1bdc
SM
8851 * progmodes/prolog.el (smie): Require.
8852
8723cfa4
SM
8853 * emacs-lisp/smie.el (smie-default-backward-token)
8854 (smie-default-forward-token): Strip properties.
8855 (smie-next-sexp): Be more careful with associative operators.
8856 (smie-forward-sexp-command): Generalize.
8857 (smie-backward-sexp-command): Simplify.
8858 (smie-closer-alist): New var.
8859 (smie-close-block): New command.
8860 (smie-indent-debug-log): New var.
8861 (smie-indent-offset-rule): Add a few more cases.
8862 (smie-indent-column): New function.
8863 (smie-indent-after-keyword): Use it.
8864 (smie-indent-keyword): Use it.
8865 Fix up the opener code's point position.
8866 (smie-indent-comment): Only applies at BOL.
8867 (smie-indent-debug): New command.
8868
0193499f
SM
8869 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
8870 declarations that are useful before running the macro.
8871
0c9b8993
GM
88722010-08-18 Joakim Verona <joakim@verona.se>
8873
8874 * image.el (imagemagick-types-inhibit): New variable.
8875 (imagemagick-register-types): New function.
8876 * image-mode.el (image-transform-properties): New function.
ccd80618
JV
8877 (image-transform-set-scale, image-transform-fit-to-height)
8878 (image-transform-set-rotation, image-transform-set-resize)
0c9b8993
GM
8879 (image-transform-fit-to-width, image-transform-fit-to-height):
8880 New functions.
ccd80618
JV
8881 (image-toggle-display-image): Support image transforms.
8882
1075cd61
KY
88832010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
8884
8885 * image.el (create-animated-image): Don't add heuristic mask to image
8886 (Bug#6839).
8887
64cb6c78
J
88882010-08-18 Jan Djärv <jan.h.d@swipnet.se>
8889
0193499f
SM
8890 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
8891 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
64cb6c78 8892
ff80a446
SM
88932010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
8894
afa22f7c
SM
8895 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
8896
ff80a446
SM
8897 Font-lock '...' strings, plus various simplifications and fixes.
8898 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
8899 (octave-font-lock-close-quotes): New function.
8900 (octave-font-lock-syntactic-keywords): New var.
8901 (octave-mode): Use it. Set beginning-of-defun-function.
8902 (octave-mode-map): Don't override the <foo>-defun commands.
8903 (octave-mode-menu): Pass it directly to easy-menu-define;
8904 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
8905 (octave-block-match-alist): Fix up last change so that
8906 octave-close-block uses the more specific keyword.
8907 (info-lookup-mode): Silence byte-compiler.
8908 (octave-beginning-of-defun): Not interactive any more.
8909 Optimize slightly.
8910 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
8911 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
8912 (octave-completion-at-point-function): Make sure point is within
8913 beg..end.
8914 (octave-reindent-then-newline-and-indent):
8915 Use reindent-then-newline-and-indent.
8916 (octave-add-octave-menu): Remove.
8917
2269b349
JD
89182010-08-17 Jan Djärv <jan.h.d@swipnet.se>
8919
489cd5bd
JD
8920 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
8921 (report-emacs-bug-can-use-xdg-email): New functions.
8922 (report-emacs-bug): Set can-xdg-email to result of
8923 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
8924 \C-cm to report-emacs-bug-insert-to-mailer and add help text
8925 about it.
30ebab6d 8926
a2fb159c
GM
8927 * net/browse-url.el (browse-url-default-browser): Add cond
8928 for browse-url-xdg-open.
8929 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
8930
89312010-08-17 Glenn Morris <rgm@gnu.org>
8932
8933 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
8934 (c-fontify-recorded-types-and-refs): Define for compiler.
8935 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
8936 before use.
8937
8938 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
8939 Fix format call.
8940
bb6aba9c
MA
89412010-08-17 Michael Albinus <michael.albinus@gmx.de>
8942
8943 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
8944 properties.
8945 (tramp-handle-process-file): Call the program in a subshell, in
8946 order to preserve working directory.
8947 (tramp-action-password): Hide password prompt before next run.
8948 (tramp-process-actions): Widen connection buffer for the trace.
8949
8f10c937
DD
89502010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
8951
8952 * net/rcirc.el (rcirc-log-process-buffers): New option.
8953 (rcirc-print): Use it.
8954 (rcirc-generate-log-filename): New function.
8955 (rcirc-log-filename-function): Change default to
8956 rcirc-generate-log-filename (Bug#6828).
8957
7c23dd44
CY
89582010-08-16 Chong Yidong <cyd@stupidchicken.com>
8959
8960 * simple.el (deactivate-mark): If select-active-regions is `only',
8961 only set selection for temporarily active regions.
8962
8963 * cus-start.el: Change defcustom for select-active-regions.
8964
6d3e82d2
CY
89652010-08-15 Chong Yidong <cyd@stupidchicken.com>
8966
8967 * mouse.el (mouse--drag-set-mark-and-point): New function.
ff80a446
SM
8968 (mouse-drag-track): Use LOCATION arg to push-mark.
8969 Use mouse--drag-set-mark-and-point to take click-count into
6d3e82d2
CY
8970 consideration when updating point and mark (Bug#6840).
8971
c68263b1
CY
89722010-08-15 Chong Yidong <cyd@stupidchicken.com>
8973
8974 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8975 Give the Ruby rule a lower priority than Gnu (Bug#6778).
8976
456f369a
ŠN
89772010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
8978
ff80a446
SM
8979 * font-lock.el (lisp-font-lock-keywords-2):
8980 Add combine-after-change-calls, condition-case-no-debug,
456f369a
ŠN
8981 with-demoted-errors, and with-silent-modifications (Bug#6025).
8982
c22e18f5
KR
89832010-08-14 Kevin Ryde <user42@zip.com.au>
8984
8985 * emacs-lisp/copyright.el (copyright-update-year)
b7716b25
CY
8986 (copyright-update): Temporary switch-to-buffer to ensure the
8987 buffer change being queried is visible (Bug#5394).
c22e18f5 8988
6f1a6faf
TT
89892010-08-14 Tom Tromey <tromey@redhat.com>
8990
8991 * progmodes/etags.el (tags-file-name): Mark safe if stringp
8992 (Bug#6733).
8993
e7afcf30
EZ
89942010-08-14 Eli Zaretskii <eliz@gnu.org>
8995
8996 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
8997 MS-DOS. (Bug#6689)
8998
2b4e6277
J
89992010-08-13 Jan Djärv <jan.h.d@swipnet.se>
9000
9001 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
9002 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
9003 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
9004 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
ff80a446
SM
9005 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
9006 Call menu-bar-set-tool-bar-position.
2b4e6277 9007
dc94fc85
SM
90082010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
9009
c5683ceb
SM
9010 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
9011 comment style (bug#6834).
9012 * progmodes/scheme.el (scheme-mode-syntax-table):
9013 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
9014 "b" flag in "' 14b" syntax.
9015
c82d5b11
SM
9016 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
9017 for (un)commenting the region and performing completion.
9018 (octave-mode-menu): Use standard commands for help and completion.
9019 (octave-mode-syntax-table): Support %{..%} comments (sort of).
9020 (octave-mode): Use define-derived-mode.
9021 Set completion-at-point-functions and don't set columns.
9022 Don't disable adaptive-fill-regexp.
9023 (octave-describe-major-mode, octave-comment-region)
9024 (octave-uncomment-region, octave-comment-indent)
9025 (octave-indent-for-comment): Remove.
9026 (octave-indent-calculate): Rename from calculate-octave-indent.
7e82caa7 9027 (octave-indent-line, octave-fill-paragraph): Update caller.
c82d5b11
SM
9028 (octave-initialize-completions): No need to make an alist.
9029 (octave-completion-at-point-function): New function.
9030 (octave-complete-symbol): Use it.
9031 (octave-insert-defun): Use define-skeleton.
9032
9033 * progmodes/octave-mod.el (octave-mode): Set comment-add.
9034 (octave-mode-map): Use comment-dwim (bug#6829).
dc94fc85 9035
abec5126 90362010-08-12 Antoine Levitt <antoine.levitt@gmail.com>
61b6abbd
AL
9037
9038 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
9039 indentation of inserted comment.
9040
3a46642b
J
90412010-08-11 Jan Djärv <jan.h.d@swipnet.se>
9042
9043 * faces.el (region): Add type gtk that uses gtk colors.
9044
9045 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
9046 Handle theme-name change.
9047
3bd2cfef
MM
90482010-08-10 Michael R. Mauger <mmaug@yahoo.com>
9049
9050 * progmodes/sql.el: Version 2.5
9051 (sql-product-alist): Add :prompt-cont-regexp property for several
9052 database products.
9053 (sql-prompt-cont-regexp): New variable.
61b6abbd
AL
9054 (sql-output-newline-count, sql-output-by-send):
9055 New variables. Record number of newlines in input text.
3bd2cfef
MM
9056 (sql-send-string): Handle multiple filters and count newlines.
9057 (sql-send-magic-terminator): Count terminator newline.
9058 (sql-interactive-remove-continuation-prompt): Filters output to
9059 remove continuation prompts; one for each newline.
9060 (sql-interactive-mode): Set up new variables, prompt regexp and
9061 output filter.
9062 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
61b6abbd 9063 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
3bd2cfef 9064
d02c9bcd
SM
90652010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
9066
9067 * emacs-lisp/pcase.el: New file.
9068
80ca4f1e
MA
90692010-08-10 Michael Albinus <michael.albinus@gmx.de>
9070
9071 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
9072 as here-document, otherwise the command could exceed maximum
9073 length of command line.
d02c9bcd
SM
9074 (tramp-handle-vc-registered): Call script accordingly.
9075 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
80ca4f1e 9076
2948599b
KH
90772010-08-10 Kenichi Handa <handa@m17n.org>
9078
9079 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
9080 composable pattern.
9081
148cef8e
CY
90822010-08-09 Chong Yidong <cyd@stupidchicken.com>
9083
9084 * emacs-lisp/package.el (package-version-split)
9085 (package--version-first-nonzero, package-version-compare):
9086 Functions removed.
9087 (package-directory-list, package-load-all-descriptors)
9088 (package--built-in, package-activate, define-package)
9089 (package-installed-p, package-compute-transaction)
9090 (package-read-all-archive-contents)
9091 (package--add-to-archive-contents, package-buffer-info)
d02c9bcd
SM
9092 (package-tar-file-info, package-list-packages-internal):
9093 Use version-to-list and version-list-*.
148cef8e 9094
d02c9bcd
SM
9095 * emacs-lisp/package-x.el (package-upload-buffer-internal):
9096 Use version-to-list.
148cef8e
CY
9097 (package-upload-buffer-internal): Use version-list-<=.
9098
82a9ce0f
KH
90992010-08-09 Kenichi Handa <handa@m17n.org>
9100
231e5e5f 9101 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
82a9ce0f
KH
9102 composable pattern.
9103
7adf5fdc
CY
91042010-08-08 Chong Yidong <cyd@stupidchicken.com>
9105
fc560445
CY
9106 * tutorial.el (tutorial--default-keys): C-d is now bound to
9107 delete-forward-char (Bug#6826).
9108
7adf5fdc
CY
9109 * mouse.el (mouse-drag-track): Remove accidentally-removed check
9110 for `double' value of mouse-1-click-follows-link (Bug#6807).
9111
e54a1075
JB
91122010-08-08 Johan Bockgård <bojohan@gnu.org>
9113
9114 * replace.el (replace-highlight): Bind isearch-forward and
9115 isearch-error, ensuring that highlighting is updated if the user
9116 switches the search direction (Bug#6808).
9117
9118 * isearch.el (isearch-lazy-highlight-forward): New var.
9119 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
9120 (isearch-lazy-highlight-update): Use it.
9121
7815fe19 91222010-08-08 Kenichi Handa <handa@m17n.org>
7a84eee5 9123
8d9e03e4
JB
9124 * international/mule.el (define-charset): Store NAME as :base property.
9125 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
7a84eee5
KH
9126 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
9127 current priority. Force using the designation of the specific
8d9e03e4 9128 charset by adding `charset' text property. Improve the whole algorithm.
7a84eee5 9129
7815fe19 91302010-08-08 Juanma Barranquero <lekktu@gmail.com>
f6b55526
JB
9131
9132 * emulation/pc-select.el (pc-selection-mode-hook)
9133 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
9134 (pc-selection-mode): Fix typos in docstrings.
9135
7815fe19 91362010-08-08 Kenichi Handa <handa@m17n.org>
6b4d96c2
KH
9137
9138 * language/cyrillic.el: Don't add "microsoft-cp1251" to
9139 ctext-non-standard-encodings-alist here.
9140
8d9e03e4
JB
9141 * international/mule.el (ctext-non-standard-encodings-alist):
9142 Add "koi8-r" and "microsoft-cp1251".
6b4d96c2
KH
9143 (ctext-standard-encodings): New variable.
9144 (ctext-non-standard-encodings-table): List only elements for
9145 non-standard encodings.
186e86db 9146 (ctext-pre-write-conversion): Adjust for the above change.
6b4d96c2
KH
9147 Check ctext-standard-encodings.
9148
9149 * international/mule-conf.el (compound-text): Doc fix.
9150 (ctext-no-compositions): Doc fix.
9151 (compound-text-with-extensions): Doc fix.
9152
7815fe19 91532010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
c613687b
SM
9154
9155 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
9156
8d9e03e4 91572010-08-08 Juanma Barranquero <lekktu@gmail.com>
d5b8058f 9158
9ebc731b
JB
9159 * progmodes/which-func.el (which-func-format): Split help-echo text
9160 into lines, like other mode-line tooltips.
9161
d5b8058f
JB
9162 * server.el (server-start): When using TCP sockets, force IPv4
9163 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
9164
8d9e03e4 91652010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
a2077b7f
SM
9166
9167 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
9168
8d9e03e4 91692010-08-08 Juanma Barranquero <lekktu@gmail.com>
f63a7652
JB
9170
9171 * term.el (term-delimiter-argument-list): Reflow docstring.
9172 (term-read-input-ring, term-write-input-ring, term-send-input)
9173 (term-bol, term-erase-in-display, serial-supported-or-barf):
9174 Fix typos in docstrings.
9175
8d9e03e4 91762010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
a7e26d8b
SM
9177
9178 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
9179
8d9e03e4 91802010-08-08 Juanma Barranquero <lekktu@gmail.com>
bbc4e17c
JB
9181
9182 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
9183
8d9e03e4 91842010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
9aea20c9
MK
9185
9186 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
9187 Fix typo in docstring (bug#6747).
9188
7815fe19 91892010-08-08 Leo <sdl.web@gmail.com>
16b0b347
LL
9190
9191 * eshell/esh-io.el (eshell-get-target): Better detection of
9192 read-only file (Bug#6762).
9193
7815fe19 91942010-08-08 Juanma Barranquero <lekktu@gmail.com>
ad9ae065
JB
9195
9196 * align.el (align-default-spacing): Doc fix.
9197 (align-region-heuristic, align-regexp): Fix typos in docstrings.
9198
733946e7 91992010-08-08 Stephen Peters <speters@itasoftware.com>
81ee9410 9200
490b89ac 9201 * calendar/icalendar.el
93acd23d
JB
9202 (icalendar--split-value): Fix splitting regexp. (Bug#6766)
9203 (icalendar--get-weekday-numbers): New.
81ee9410 9204 (icalendar--convert-recurring-to-diary): Handle multiple byday
93acd23d 9205 values in weekly rules. (Bug#6766)
81ee9410 9206
490b89ac
UJ
92072010-08-08 Ulf Jasper <ulf.jasper@web.de>
9208
9209 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
9210 (icalendar--create-uid, icalendar-export-region)
9211 (icalendar--parse-summary-and-rest): Code formatting.
9212
2c695727
JB
92132010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
9214
01c35094 9215 * calc/calc.el (calc-trail-mode, calc-refresh): Use `face' property
2c695727
JB
9216 to italicize headers.
9217 (calc-highlight-selections-with-faces): New variable.
9218 (calc-selected-face, calc-nonselected-face): New faces.
9219
9220 * calc/calccomp.el (math-comp-highlight-string): Use
9221 `calc-highlight-selections-with-faces' to determine how to highlight
9222 sub-formulas.
9223
9224 * calc/calc-sel.el (calc-show-selections): Change message to when
9225 using faces to highlight selections.
9226
b93d4f22
MM
92272010-08-07 Michael R. Mauger <mmaug@yahoo.com>
9228
8d9e03e4
JB
9229 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
9230 Add SQLite 3 keywords, functions and datatypes.
9231 (sql-interactive-mode): Remove `comint-process-echoes' set to t
b93d4f22
MM
9232 (Bug#6686).
9233
9852377f
CY
92342010-08-07 Chong Yidong <cyd@stupidchicken.com>
9235
9236 * simple.el (select-active-regions): Move to keyboard.c.
9237 (deactivate-mark): Used saved-region-selection.
9238 (select-active-region): Function removed.
9239 (activate-mark, set-mark, push-mark-command)
9240 (handle-shift-selection): Don't call it.
9241 (keyboard-quit): Avoid adding the region to the window selection.
9242
9243 * mouse.el (mouse-drag-track): Remove hacks to deal with old
9244 select-active-regions implementation.
9245 (mouse-yank-at-click): Doc fix.
9246
9247 * cus-start.el: Add custom declaration for select-active-regions.
9248
822775bf
EZ
92492010-08-07 Eli Zaretskii <eliz@gnu.org>
9250
4c5130d6
EZ
9251 * simple.el (delete-forward-char): Doc fix.
9252
822775bf
EZ
9253 * tutorial.el (help-with-tutorial): Hack safe file-local variables
9254 after reading the tutorial.
9255
bd4c5e3e
AM
92562010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
9257
6a7662bb
BR
9258 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph):
9259 Fix for the case that a C style comment has its delimiters alone on
cb6fa1ad 9260 their respective lines. (Bug#193)
bd4c5e3e 9261
d00fa9b6
MA
92622010-08-06 Michael Albinus <michael.albinus@gmx.de>
9263
8d9e03e4 9264 * net/tramp.el (tramp-handle-start-file-process): Set connection
d00fa9b6 9265 property "vec".
6a7662bb
BR
9266 (tramp-process-sentinel): Use it for flushing the cache.
9267 We cannot do it via the process buffer, the buffer could be deleted
d00fa9b6
MA
9268 already when running the sentinel.
9269
92702010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
942415f3
MA
9271
9272 * comint.el (comint-mode): Make directory tracking functions
9273 functional on remote files. (Bug#6764)
9274
b3d42406
DN
92752010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
9276
9277 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
9278
29cf3e20
EZ
92792010-08-05 Eli Zaretskii <eliz@gnu.org>
9280
6a7662bb
BR
9281 * emacs-lisp/find-gc.el (find-gc-source-files):
9282 Rename unexec.c => unexcoff.c.
29cf3e20 9283
6a7662bb
BR
9284 * emacs-lisp/authors.el (authors-fixed-entries):
9285 Rename unexec.c => unexcoff.c.
29cf3e20 9286
39e1bf0b
MA
92872010-08-05 Michael Albinus <michael.albinus@gmx.de>
9288
9289 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
9290 cache, not only file cache.
9291 (tramp-process-sentinel): New defun.
9292 (tramp-handle-start-file-process): Use it, in order to invalidate
9293 file caches.
9294
9f982e22
LL
92952010-08-03 Leo <sdl.web@gmail.com>
9296
9297 * server.el (server-start): Simplify loop.
9298
0798a8d8
SM
92992010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
9300
548c5c47
SM
9301 * frame.el (screen-height, screen-width, set-screen-width)
9302 (set-screen-height): Remove ancient compatibility aliases.
9303
3311d1c2
SM
9304 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
9305 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
9306
0798a8d8
SM
9307 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
9308 that change current buffer.
9309
26ee77a6
YM
93102010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9311
9312 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
9313 beginning of the string. Use `string-match-p'. (Bug#6765)
9314
aa1859f5
J
93152010-08-01 Jan Djärv <jan.h.d@swipnet.se>
9316
9317 * cus-start.el (x-gtk-use-system-tooltips): New variable.
9318
376c2b6b
CY
93192010-08-01 Chong Yidong <cyd@stupidchicken.com>
9320
0798a8d8 9321 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
376c2b6b 9322 (package--builtins): Tweak descriptions.
0798a8d8
SM
9323 (package-print-package): Upcase descriptions if necessary.
9324 Show all built-in packages in font-lock-builtin-face.
9325 (package-list-packages-internal): Omit "emacs" package.
9326 Show status of built-in packages as "built-in".
376c2b6b 9327
16041401
CY
93282010-07-31 Chong Yidong <cyd@stupidchicken.com>
9329
9330 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
9331 before killing to preserve the primary selection (Bug#6701).
9332
9333 * term/x-win.el (x-select-text): Doc fix.
9334
0798a8d8
SM
93352010-07-31 Nathaniel Flath <flat0103@gmail.com>
9336
452ea855
AM
9337 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
9338 (objc-font-lock-extra-types):
452ea855 9339 * progmodes/cc-mode.el (c-basic-common-init):
452ea855
AM
9340 * progmodes/cc-langs.el (c-make-mode-syntax-table)
9341 (c++-make-template-syntax-table)
9342 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
9343 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
9344 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
9345 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
452ea855
AM
9346 * progmodes/cc-fonts.el (c-make-inverse-face)
9347 (c-basic-matchers-after):
452ea855
AM
9348 * progmodes/cc-engine.el (c-forward-keyword-clause)
9349 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
9350 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
9351 (c-guess-continued-construct, c-guess-basic-syntax):
2f5e7c6f
GM
9352 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
9353 The above functions were modified or created.
452ea855 9354
37766706
J
93552010-07-31 Jan Djärv <jan.h.d@swipnet.se>
9356
0798a8d8 9357 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
37766706 9358
cd83d522
EZ
93592010-07-31 Eli Zaretskii <eliz@gnu.org>
9360
9361 * files.el (bidi-paragraph-direction): Define safe local values.
9362
9363 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
9364 language-info-alist. Remove outdated FIXME in a comment.
9365
28e5cf7c
AM
93662010-07-31 Alan Mackenzie <acm@muc.de>
9367
9368 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
9369 Auto-fill broken in C/C++ modes.
9370
bfeabdc3
JD
93712010-07-29 Jan Djärv <jan.h.d@swipnet.se>
9372
9373 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
9374 (menu-bar-showhide-tool-bar-menu-customize-disable)
9375 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
0798a8d8
SM
9376 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
9377 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
bfeabdc3
JD
9378 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
9379 make a menu for Options => toolbar that can move it.
9380
063e5294
CY
93812010-07-29 Chong Yidong <cyd@stupidchicken.com>
9382
9383 * emacs-lisp/package-x.el (package--make-rss-entry):
9384 (package-maint-add-news-item, package--update-news)
9385 (package-upload-buffer-internal): New arg ARCHIVE-URL.
9386
9387 * emacs-lisp/package.el (package-archive-url): Rename from
9388 package-archive-id.
9389 (package-install): Doc fix.
9390 (package-download-single, package-download-tar, package-install)
9391 (package-menu-view-commentary): Callers changed.
9392
683cc385
MA
93932010-07-29 Michael Albinus <michael.albinus@gmx.de>
9394
9395 * net/tramp.el (tramp-handle-start-file-process): Check only for
9396 `remote-tty' process property.
9397 (tramp-open-shell): Don't check for tty.
9398 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
9399 process property.
9400
9401 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
9402 host.
9403
bc44bef7
PH
94042010-07-28 Chong Yidong <cyd@stupidchicken.com>
9405
9406 * emacs-lisp/package.el (package-load-list, package-archives)
9407 (package-archive-contents, package-user-dir)
9408 (package-directory-list, package--builtins, package-alist)
9409 (package-activated-list, package-obsolete-alist): Mark as risky.
9410
94112010-07-28 Phil Hagelberg <phil@evri.com>
9412
9413 Add support for non-default package repositories.
9414 * emacs-lisp/package.el (package-archive-base): Var deleted.
9415 (package-archives): New variable.
9416 (package-archive-contents): Doc fix.
0798a8d8 9417 (package-load-descriptor): Do nothing if descriptor file is missing.
bc44bef7
PH
9418 (package--write-file-no-coding): New function.
9419 (package-unpack-single): Use it.
9420 (package-archive-id): New function.
9421 (package-download-single, package-download-tar)
9422 (package-menu-view-commentary): Use it.
9423 (package-installed-p): Make second argument optional.
9424 (package-read-all-archive-contents): New function.
9425 (package-initialize): Use it.
9426 (package-read-archive-contents): Add ARCHIVE argument.
9427 (package--add-to-archive-contents): New function.
9428 (package-install): Don't call package-read-archive-contents.
9429 (package--download-one-archive): Store archive file in a
9430 subdirectory of package-user-dir.
9431 (package-menu-execute): Remove spurious line movement.
9432
8a52f00a
JD
94332010-07-28 Jan Djärv <jan.h.d@swipnet.se>
9434
9435 * cus-start.el (tool-bar-style): Add text-image-horiz.
9436
b21d3ceb
MA
94372010-07-28 Michael Albinus <michael.albinus@gmx.de>
9438
9439 * progmodes/gud.el (gud-common-init): Check for remoteness of
9440 `file', and not of `default-directory'.
9441
8fbcce2d
MA
94422010-07-28 Michael Albinus <michael.albinus@gmx.de>
9443
9444 * net/tramp.el (tramp-methods): Move hostname to the end in all
9445 ssh `tramp-login-args'.
9446 (tramp-verbose): Describe verbose level 9.
9447 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
9448 (tramp-open-connection-setup-interactive-shell): Trace stty
9449 settings if `tramp-verbose' >= 9.
9450 (tramp-handle-start-file-process): Implement tty setting.
9451 (Bug#4604, Bug#6360)
9452
9453 * net/tramp-cmds.el (tramp-bug): Recommend setting of
9454 `tramp-verbose' to 9.
9455
128440c9
AH
94562010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
9457
9458 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
9459 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
9460 Remove references to package `lisp-re' (bug#4369).
9461
ae0c2494
TT
94622010-07-27 Tom Tromey <tromey@redhat.com>
9463
9464 * progmodes/js.el (js-mode):
9465 * progmodes/make-mode.el (makefile-mode):
9466 * progmodes/simula.el (simula-mode):
9467 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
9468
0ed082fe 94692010-07-27 Juanma Barranquero <lekktu@gmail.com>
fe4be04c
JB
9470
9471 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
9472
7c7c04c0
JB
9473 * time.el (display-time-day-and-date): Remove spurious * in docstring.
9474 (display-time-world-buffer-name, display-time-world-mode-map):
9475 Fix typos in docstrings.
9476
0ed082fe 94772010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
c9088194
SK
9478
9479 * image-mode.el (image-display-size): New function.
9480 (image-forward-hscroll, image-next-line, image-eol, image-eob)
9481 (image-mode-fit-frame): Use it (Bug#6639).
9482
0ed082fe 94832010-07-27 Chong Yidong <cyd@stupidchicken.com>
dad7c716
CY
9484
9485 * dired.el (dired-buffers-for-dir): Handle list values of
9486 dired-directory (Bug#6636).
9487
aa2d4bd3
SS
94882010-07-26 Sam Steingold <sds@gnu.org>
9489
9490 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
9491 Do not call `x-get-selection' the second time, reuse the value.
9492
78b84da3
DU
94932010-07-26 Daiki Ueno <ueno@unixuser.org>
9494
9495 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
0798a8d8 9496 which consist of control chars only. Suggested by Richard Stallman.
78b84da3 9497
4f195cf7
DU
94982010-07-25 Daiki Ueno <ueno@unixuser.org>
9499
9500 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
9501 exists before passing an error to find-file-not-found-functions
9502 (bug#6723).
9503
195e19e4
LH
95042010-07-23 Lukas Huonker <l.huonker@gmail.com>
9505
9506 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
9507 Remove leading nil element, adjust values.
9508 (tetris-shapes, tetris-shape-scores):
9509 Change representation of shapes and remove some redundancy.
9510 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
9511 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
9512 Adjust for working with new representation of shapes.
9513 (tetris-shape-rotations): New function.
9514 (tetris-move-bottom, tetris-move-left, tetris-move-right)
9515 (tetris-rotate-prev, tetris-rotate-next):
9516 Adjust for working with the new version of tetris-test-shape.
9517
9cf2db99
MT
95182010-07-23 Markus Triska <markus.triska@gmx.at>
9519
9520 * progmodes/ps-mode.el: Use comint (bug#5954).
9521 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
9522 (ps-mode-other-newline): Simplify.
9523 (ps-run-mode): Derive from comint-mode instead of
9524 fundamental-mode, yielding input history etc.
9525 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
9526 (ps-run-send-string): Adapt for comint-mode.
9527 (ps-run-newline): Remove now unneeded function.
9528
225d5e9e
MA
95292010-07-23 Michael Albinus <michael.albinus@gmx.de>
9530
9531 * net/tramp.el (tramp-methods): Move hostname to the end in all
9532 plink `tramp-login-args'.
9533
84bc68f2
MA
95342010-07-23 Michael Albinus <michael.albinus@gmx.de>
9535
9536 * net/tramp.el (tramp-open-shell): New defun.
9537 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
9538 Use it.
9539
1eb5ca1c
MA
95402010-07-23 Michael Albinus <michael.albinus@gmx.de>
9541
9542 * net/tramp.el (tramp-file-name-regexp-unified)
9543 (tramp-completion-file-name-regexp-unified): On W32 systems, do
9544 not regard the volume letter as remote filename. (Bug#5447)
9545
440735a7
JB
95462010-07-23 Juanma Barranquero <lekktu@gmail.com>
9547
9548 * custom.el (custom-declare-variable): Give a clearer error message
9549 when the docstring is missing (bug#6476).
9550
5474c40f
MM
95512010-07-22 Michael R. Mauger <mmaug@yahoo.com>
9552
9553 * progmodes/sql.el: Version 2.4. Improved Login prompting.
9554 (sql-login-params): New widget definition.
9555 (sql-oracle-login-params, sql-mysql-login-params)
9556 (sql-solid-login-params, sql-sybase-login-params)
9557 (sql-informix-login-params, sql-ingres-login-params)
9558 (sql-ms-login-params, sql-postgres-login-params)
9559 (sql-interbase-login-params, sql-db2-login-params)
9560 (sql-linter-login-params): Use it.
9561 (sql-sqlite-login-params): Use it; Define "database" parameter as
9562 a file name.
c4cc8b9a 9563 (sql-sqlite-program): Change to "sqlite3".
5474c40f
MM
9564 (sql-comint-sqlite): Make sure database name is complete.
9565 (sql-for-each-login): New function.
9566 (sql-connect, sql-save-connection): Use it.
9567 (sql-get-login-ext): New function.
9568 (sql-get-login): Use it.
9569 (sql-make-alternate-buffer-name): Handle :file parameters.
9570
9c0deccb
JB
95712010-07-22 Juanma Barranquero <lekktu@gmail.com>
9572
9573 * dired.el (dired-no-confirm): Document value t and fix defcustom to
9574 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
9575
aac818a8
TL
95762010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
9577
9578 * dired.el (dired-mode-map): Use command remapping (bug#6632).
9579
47d2734f
LM
95802010-07-22 Lawrence Mitchell <wence@gmx.li>
9581
9582 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
9583
10e73994
MA
95842010-07-21 Michael Albinus <michael.albinus@gmx.de>
9585
9586 * net/tramp.el (tramp-get-ls-command)
9587 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
9588 instead of "/".
9589
d26b0ea9
MM
95902010-07-20 Michael R. Mauger <mmaug@yahoo.com>
9591
9592 * progmodes/sql.el: Version 2.3.
f49d1f52 9593 (sql-connection-alist): Change keys from symbols to strings;
d26b0ea9 9594 enhanced the widget definition.
88b5a757
DD
9595 (sql-mode-menu): Add submenu to select connections.
9596 (sql-interactive-mode-menu): Add "Save Connection" item.
9597 (sql-add-product): Fix menu item.
d26b0ea9 9598 (sql-get-product-feature): Improved error handling.
5f9d345c 9599 (sql--alt-buffer-part, sql--alt-if-not-empty): Remove.
d26b0ea9
MM
9600 (sql-make-alternate-buffer-name): Simplified.
9601 (sql-product-interactive): Handle missing product.
9602 (sql-connect): Support string keys, minor improvements.
9603 (sql-save-connection): New function.
9604 (sql-connection-menu-filter): New function.
9605
af4b9ae5
MA
96062010-07-20 Michael Albinus <michael.albinus@gmx.de>
9607
9608 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
6a7662bb
BR
9609 (tramp-open-connection-setup-interactive-shell):
9610 Apply workaround for IRIX64 bug. Move argument of last
af4b9ae5
MA
9611 `tramp-send-command' where it belongs to.
9612
da040a16
MA
96132010-07-20 Michael Albinus <michael.albinus@gmx.de>
9614
9615 * net/tramp.el (tramp-perl-file-attributes)
9616 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
9617 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
9618 front of `login-args'.
9619
16f3ade5
JB
96202010-07-19 Juanma Barranquero <lekktu@gmail.com>
9621
9622 * time.el (display-time-world-mode): Define with `define-derived-mode'.
9623 Set `show-trailing-whitespace' to nil.
9624 (display-time-world-display): Simplify.
9625
00af0b67
AM
96262010-07-18 Alan Mackenzie <acm@muc.de>
9627
9628 Enhance `c-file-style' in file/directory local variables.
a628ad9d 9629 * progmodes/cc-mode.el (c-count-cfss): New function.
00af0b67
AM
9630 (c-before-hack-hook): Call `c-set-style' differently according to
9631 whether c-file-style was set in file or directory local
9632 variables.
9633
30c4d8dc
MM
96342010-07-18 Michael R. Mauger <mmaug@yahoo.com>
9635
9636 * progmodes/sql.el: Version 2.2.
6a7662bb
BR
9637 (sql-product, sql-user, sql-database, sql-server, sql-port):
9638 Use defcustom :safe keyword rather than putting safe-local-variable
30c4d8dc
MM
9639 property.
9640 (sql-password): Use defcustom :risky keyword rather than putting
9641 risky-local-variable property.
9642 (sql-oracle-login-params, sql-sqlite-login-params)
9643 (sql-solid-login-params, sql-sybase-login-params)
9644 (sql-informix-login-params, sql-ingres-login-params)
9645 (sql-ms-login-params, sql-postgres-login-params)
9646 (sql-interbase-login-params, sql-db2-login-params)
c4cc8b9a 9647 (sql-linter-login-params): Add `port' option.
88b5a757 9648 (sql-get-product-feature): Add NO-INDIRECT parameter.
30c4d8dc
MM
9649 (sql-comint-oracle, sql-comint-sybase)
9650 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
9651 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
9652 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
88b5a757 9653 (sql-comint-linter): Rename sql-connect-* functions to
30c4d8dc 9654 sql-comint-*.
88b5a757 9655 (sql-product-alist, sql-mode-menu): Rename as above and
30c4d8dc 9656 :sqli-connect-func to :sqli-comint-func.
c4cc8b9a 9657 (sql-connection): New variable.
30c4d8dc
MM
9658 (sql-interactive-mode): Set it.
9659 (sql-connection-alist): New variable.
9660 (sql-connect): New function.
9661 (sql--alt-buffer-part, sql--alt-if-not-empty)
a628ad9d 9662 (sql-make-alternate-buffer-name): Improved alternative buffer name.
30c4d8dc 9663
f12492c8
TV
96642010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9665
9666 * image-mode.el (image-bookmark-make-record): Do not set context
9667 in an image (Bug#6650).
9668
91023c68
CY
96692010-07-17 Chong Yidong <cyd@stupidchicken.com>
9670
9671 * simple.el (select-active-region): New function.
9672 (push-mark-command, set-mark, activate-mark)
9673 (handle-shift-selection): Use it.
9674 (deactivate-mark): Don't check for size of region.
9675
9676 * mouse.el (mouse-drag-track): Use select-active-region.
9677
1c0e8f0e
MA
96782010-07-17 Michael Albinus <michael.albinus@gmx.de>
9679
9680 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
9681 "--dired" stronger.
9682
2490cbbc
CY
96832010-07-17 Chong Yidong <cyd@stupidchicken.com>
9684
9685 * term/x-win.el (x-select-enable-primary): Change default to nil.
9686 (x-select-enable-clipboard): Add :version keyword.
9687
9688 * mouse.el (mouse-drag-copy-region):
9689 * simple.el (select-active-regions): Likewise.
9690
f253ef6a
RS
96912010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
9692
a628ad9d 9693 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
f253ef6a
RS
9694 (vc-coding-system-for-diff): Use it to decide whether to inherit
9695 from the file the EOL format for reading the diffs of that file.
9696 (Bug#4451)
9697
134a027f
EZ
96982010-07-16 Eli Zaretskii <eliz@gnu.org>
9699
9700 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
9701 unibyte, so compressed attachments are not compressed again.
9702
7e4289ad
MA
97032010-07-16 Michael Albinus <michael.albinus@gmx.de>
9704
9705 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
9706 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
9707 (tramp-find-shell): Simplify setting connection property.
9708 (tramp-get-ls-command): Make test for "--color=never" stronger.
9709
7473fff9 97102010-07-15 Simon South <ssouth@member.fsf.org>
2c6a779a
SS
9711
9712 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
9713 blocks within record declarations (i.e. variant parts) correctly.
9714
a11b38ee
SS
97152010-07-15 Simon South <ssouth@member.fsf.org>
9716
9717 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
9718 over literal tokens when parsing so newlines aren't "absorbed" by
9719 single-line comments. Corrects the indentation of case blocks
9720 that have a comment on the first line.
9721
077e0753
KF
97222010-07-14 Karl Fogel <kfogel@red-bean.com>
9723
9724 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
9725 by Drew Adams (Bug#5504).
9726
243881ed
J
97272010-07-14 Jan Djärv <jan.h.d@swipnet.se>
9728
9729 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
dd86ea11 9730 now that Unicode is used (Bug#6594).
243881ed 9731
f9d71b42
CY
97322010-07-14 Chong Yidong <cyd@stupidchicken.com>
9733
9734 * term/x-win.el (x-select-enable-clipboard): Default to t.
9735 (x-initialize-window-system): Don't overwrite Paste menu item.
9736
9737 * simple.el (select-active-regions): Default to t.
9738 (push-mark-command): Don't overwrite primary with empty string.
9739
9740 * mouse.el: Bind mouse-2 to mouse-yank-primary.
9741 (mouse-drag-copy-region): Default to nil.
9742
9743 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
9744 Cut/Copy/Paste menu bar items.
9745
a628ad9d 97462010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8f2eaa8a
TV
9747
9748 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
9749 Patch applied by Karl Fogel.
9750
9751 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
9752 and `bookmark-current-buffer' if they have been already set in
9753 another buffer (e.g gnus-art).
9754
e44fa724 97552010-07-13 Karl Fogel <kfogel@red-bean.com>
a628ad9d 9756 Thierry Volpiatto <thierry.volpiatto@gmail.com>
e44fa724
KF
9757
9758 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
9759
9760 * bookmark.el (bookmark-make-record-default): Allow unneeded
9761 information to be omitted from the record.
9762
9763 Adjust declarations and calls:
9764
9765 * info.el (bookmark-make-record-default): Adjust declaration.
9766 (Info-bookmark-make-record): Adjust call.
9767
9768 * woman.el (bookmark-make-record-default): Adjust declaration.
9769 (woman-bookmark-make-record): Adjust call.
9770
9771 * man.el (bookmark-make-record-default): Adjust declaration.
9772 (Man-bookmark-make-record): Adjust call.
9773
9774 * image-mode.el (bookmark-make-record-default): Adjust declaration.
9775
9776 * doc-view.el (bookmark-make-record-default): Adjust declaration.
9777
0c4371fe
KF
97782010-07-13 Karl Fogel <kfogel@red-bean.com>
9779
9780 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
9781 This is also from Thierry Volpiatto's patch in bug #6444. However,
9782 because it was extraneous to the functional change in that patch,
9783 and causes a re-indendation, I am committing it separately.
9784
2bb8db3e 97852010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
068a0233
KF
9786
9787 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
9788 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
2bb8db3e 9789 Patch applied by Karl Fogel (Bug#6444).
068a0233 9790
21bd02a6
CY
97912010-07-13 Chong Yidong <cyd@stupidchicken.com>
9792
9793 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
9794
79cb9c05
AR
97952010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
9796
9797 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
9798 Dempsky; bug#5084). Remove incorrect binding for S-tab.
9799 (ns-alternatives-map): Change S-tab binding to backtab
9800 (bug#6616).
9801
9802 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
9803 under ns.
9804
beb000f9
AS
98052010-07-12 Andreas Schwab <schwab@linux-m68k.org>
9806
dd86ea11
JB
9807 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
9808 (Bug#5806)
e9952282 9809
beb000f9
AS
9810 * language/tv-util.el (tai-viet-re): Remove format.
9811
6f2cdcd1
KH
98122010-07-12 Kenichi Handa <handa@m17n.org>
9813
dd86ea11
JB
9814 * language/hebrew.el: Remove no-byte-compile declaration.
9815 Change coding: tag to utf-8. Register hebrew-shape-gstring in
6f2cdcd1
KH
9816 composition-function-table for 3-character looking back.
9817 (hebrew-font-get-precomposed): New function.
9818 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
9819
f479ef6e
CY
98202010-07-11 Chong Yidong <cyd@stupidchicken.com>
9821
9822 * mouse.el (mouse-drag-track): Handle select-active-regions
9823 (Bug#6612).
9824
3277c1ee
MA
98252010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
9826
9827 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
9828 empty argument to gvfs-copy.
9829
3260caf8
GM
98302010-07-10 Glenn Morris <rgm@gnu.org>
9831
9832 * calendar/calendar.el (calendar-week-end-day): New function.
9833 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
9834 Respect calendar-week-start-day. (Bug#6606)
9835 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
9836 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
9837 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
9838 respect calendar-week-start-day.
9839
c876b263
CY
98402010-07-10 Chong Yidong <cyd@stupidchicken.com>
9841
9842 * simple.el (use-region-p): Doc fix (Bug#6607).
9843
dce34635
AG
98442010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
9845
6a7662bb
BR
9846 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9847 Add regexps for cucumber and ruby.
dce34635 9848
c0397930
DU
98492010-07-08 Daiki Ueno <ueno@unixuser.org>
9850
9851 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
9852 (epa-file-insert-file-contents): Hack to prevent
192cfe77 9853 find-file from opening empty buffer when decryption failed
c0397930
DU
9854 (bug#6568).
9855
fd5539c6
AM
98562010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
9857
a628ad9d
JB
9858 * textmodes/ispell.el (ispell-alternate-dictionary):
9859 Use file-readable-p.
fd5539c6
AM
9860 Return nil if no word-list is found at default locations.
9861 (ispell-complete-word-dict): Default to nil.
9862 (ispell-command-loop): Use 'word-list' when using lookup-words.
9863 (lookup-words): Use ispell-complete-word-dict or
9864 ispell-alternate-dictionary. Check for word-list availability
9865 and handle errors if needed with better messages (Bug#6539).
9866 (ispell-complete-word): Use ispell-complete-word-dict or
9867 ispell-alternate-dictionary.
9868
4565b08e
CS
98692010-07-07 Christoph Scholtes <cschol2112@gmail.com>
9870
9871 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
9872 builtins (BufferError, BytesWarning, WindowsError; callables
9873 bin, bytearray, bytes, format, memoryview, next, print; __package__).
9874
a2c270e7
GM
98752010-07-07 Glenn Morris <rgm@gnu.org>
9876
9877 * play/zone.el (top-level): Do not require timer, tabify, or cl.
9878 (zone-shift-left): Ignore intangibility, and any errors from
9879 forward-char.
9880 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
9881 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
9882 deleting, and copying text properties.
9883 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
9884 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
9885 to point-max is hard.
9886 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
9887 (zone-fill-out-screen): Ignore intangibility.
9888
81133808
CY
98892010-07-05 Chong Yidong <cyd@stupidchicken.com>
9890
4ad11f8c
CY
9891 * menu-bar.el (menu-bar-mode):
9892 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
9893 if it has been set.
9894
81133808
CY
9895 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
9896 word/line selection (Bug#6565).
9897
b24344ca
JB
98982010-07-04 Juanma Barranquero <lekktu@gmail.com>
9899
9900 * net/dbus.el (dbus-send-signal): Declare function.
9901
b1ce08da
MA
99022010-07-04 Michael Albinus <michael.albinus@gmx.de>
9903
9904 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
9905 (dbus-register-property): New optional argument EMITS-SIGNAL.
9906 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
9907
5592c08f
CY
99082010-07-03 Chong Yidong <cyd@stupidchicken.com>
9909
9910 * mouse.el (mouse-drag-overlay): Variable deleted.
9911 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
9912 (mouse--remap-link-click-p): New function.
9913 (mouse-drag-track): Handle dragging by using temporary Transient
9914 Mark mode, instead of a special overlay.
9915 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
9916 mouse-show-mark.
9917
9918 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
9919 deleted.
9920
a6ed0e28
JL
99212010-07-02 Juri Linkov <juri@jurta.org>
9922
9923 * autoinsert.el (auto-insert-alist): Fix readability
9924 by using dotted pair notation for lambda.
9925
c91e692b
JL
99262010-07-02 Juri Linkov <juri@jurta.org>
9927
9928 * faces.el (read-face-name): Rename arg `string-describing-default'
9929 to `default'. Doc fix. Display the default value in quotes
9930 in the prompt. With empty input, return the `default' arg,
9931 unless the default value is a string (in which case return nil).
9932 (describe-face): Replace the string `default' arg of `read-face-name'
9933 with the symbol `default'.
9934
23640f8f
CY
99352010-07-02 Chong Yidong <cyd@stupidchicken.com>
9936
9937 * emulation/viper-cmd.el (viper-delete-backward-char)
9938 (viper-del-backward-char-in-insert)
9939 (viper-del-backward-char-in-replace, viper-change)
9940 (viper-backward-indent): Replace delete-backward-char with
9941 delete-char (Bug#6552).
9942
b32d1614
CY
99432010-07-01 Chong Yidong <cyd@stupidchicken.com>
9944
9945 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
9946
c1ef4455
CY
99472010-06-30 Chong Yidong <cyd@stupidchicken.com>
9948
9949 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
9950 argument passed to frame-creation-function (Bug#5378).
9951
9952 * faces.el (x-handle-named-frame-geometry)
9953 (x-handle-reverse-video, x-create-frame-with-faces)
6a7662bb
BR
9954 (face-set-after-frame-default, tty-create-frame-with-faces):
9955 Don't separately consult default-frame-alist. It is now passed as the
c1ef4455
CY
9956 PARAMETER argument.
9957
55702e89
AS
99582010-06-30 Andreas Schwab <schwab@linux-m68k.org>
9959
9960 * startup.el (command-line): Don't call tool-bar-setup in a
9961 tty-only build.
9962
dc9a226c
CY
99632010-06-30 Chong Yidong <cyd@stupidchicken.com>
9964
9965 * ruler-mode.el (ruler--save-header-line-format): New fun.
9966 (ruler-mode): Use it as a setter function, so as not to overwrite
9967 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
9968
a2f043d3
CY
99692010-06-29 Chong Yidong <cyd@stupidchicken.com>
9970
9971 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
9972 (vc-root-diff, vc-print-root-log, vc-log-incoming)
9973 (vc-log-outgoing): Use it.
9974 (vc-diff-internal): Set diff-vc-backend.
9975
9976 * vc/diff-mode.el (diff-vc-backend): New var.
9977
62d115ef
J
99782010-06-28 Jan Djärv <jan.h.d@swipnet.se>
9979
6a7662bb
BR
9980 * dynamic-setting.el (font-setting-change-default-font):
9981 Remove call to message.
62d115ef 9982
1180f752
KH
99832010-06-28 Kenichi Handa <handa@m17n.org>
9984
9985 * international/quail.el (quail-insert-kbd-layout): Fix the
9986 showing of untranslated characters.
9987
b9229673
CY
99882010-06-28 Chong Yidong <cyd@stupidchicken.com>
9989
9990 * simple.el (delete-active-region): New option.
9991 (delete-backward-char): Implement in Lisp.
9992 (delete-forward-char): New command.
9993
5f9d345c 9994 * mouse.el (mouse-region-delete-keys): Delete.
b9229673
CY
9995 (mouse-show-mark): Simplify.
9996
9997 * bindings.el (global-map): Bind delete and DEL, the former to
9998 delete-forward-char.
9999
a628ad9d 100002010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
2286174e
CY
10001
10002 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
10003 (ruby-mode): Bind indent-line-function (Bug#5119).
10004
3468f435
CY
100052010-06-27 Chong Yidong <cyd@stupidchicken.com>
10006
10007 * startup.el (command-line): Recognize "0" X resource value.
10008
6431f2e6
CY
100092010-06-27 Chong Yidong <cyd@stupidchicken.com>
10010
10011 * startup.el (command-line): Use X resources to set the value of
10012 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
10013
10014 * menu-bar.el (menu-bar-mode):
10015 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
10016 Set init-value to t.
10017
10018 * frame.el (frame-notice-user-settings): Don't change
10019 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
10020 vice versa (Bug#2249).
10021
b61dfbe2
EZ
100222010-06-26 Eli Zaretskii <eliz@gnu.org>
10023
10024 * w32-fns.el (w32-convert-standard-filename): Doc fix.
10025
f5cbf40e
AM
100262010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
10027
a628ad9d
JB
10028 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
10029 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
f5cbf40e 10030
a628ad9d 10031 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
dd86ea11 10032 default directories are expanded (Bug#6143).
f5cbf40e 10033
8f3b8a5f
JL
100342010-06-24 Juri Linkov <juri@jurta.org>
10035
10036 * minibuffer.el (completions-format): Change default from nil to
10037 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
10038
5af72a47
JL
100392010-06-24 Juri Linkov <juri@jurta.org>
10040
10041 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
10042 buffer-locally to lambda that re-runs the vc diff command.
10043 (Bug#6447)
10044
8f804316
CY
100452010-06-24 Chong Yidong <cyd@stupidchicken.com>
10046
10047 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
10048 echo area is in use (Bug#3412).
10049
be19ef0b
GM
100502010-06-22 Glenn Morris <rgm@gnu.org>
10051
6555773f
GM
10052 * textmodes/texinfmt.el (texinfo-format-region)
10053 (texinfo-raise-lower-sections, texinfo-format-separate-node)
10054 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
10055 (texinfo-format-option, texinfo-noindent):
10056 Use line-beginning-position and line-end-position.
10057
be19ef0b
GM
10058 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
10059 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
10060 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
10061 utf-8 characters.
10062
7f0b7b3e
KF
100632010-06-21 Karl Fogel <kfogel@red-bean.com>
10064
49554388
GM
10065 * play/zone.el (zone-fall-through-ws): Fix next-line ->
10066 forward-line fallout.
10067
e8579ebc
CY
100682010-07-06 Chong Yidong <cyd@stupidchicken.com>
10069
10070 * mouse.el (mouse-appearance-menu): Add docstring.
10071
10072 * help.el (describe-key): Print up-event using key-description.
10073
5d1cd8bd
MA
100742010-07-03 Michael Albinus <michael.albinus@gmx.de>
10075
10076 * net/zeroconf.el (zeroconf-resolve-service)
95b6d681 10077 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
5d1cd8bd
MA
10078 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
10079
112dbc0e
MA
100802010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
10081
10082 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
10083
d0cb23ca
DN
100842010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
10085
10086 Avoid displaying files with a nil state in vc-dir.
a628ad9d 10087 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
d0cb23ca
DN
10088 cases that cause insertion.
10089 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
10090 with a nil state.
10091
01b229d1
CY
100922010-06-30 Chong Yidong <cyd@stupidchicken.com>
10093
10094 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
10095
8bf1c786 100962010-06-29 Leo <sdl.web@gmail.com>
a354ac6a
LL
10097
10098 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
10099
dfc6544c
CY
101002010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
10101
10102 * generic-x.el (bat-generic-mode): Fix regexp for command line
10103 switches (Bug#5719).
10104
b7d4de51
CY
101052010-06-27 Masatake YAMATO <yamato@redhat.com>
10106
dfc6544c
CY
10107 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
10108 of nconc to avoid pure storage error (Bug#6239).
b7d4de51 10109
53cfe624 101102010-06-27 Christoph Scholtes <cschol2112@googlemail.com>
3726248f 10111
8bf1c786 10112 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
3726248f
CY
10113 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
10114 bindings of bookmark-automatically-show-annotations (Bug#6515).
10115
aca54191
EZ
101162010-06-25 Eli Zaretskii <eliz@gnu.org>
10117
10118 * arc-mode.el (archive-zip-extract): Don't quote the file name on
10119 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
10120
2330fa87
ŠN
101212010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
10122
10123 * comint.el (make-comint, make-comint-in-buffer): Mention return
10124 value in the docstrings. (Bug#6498)
10125
29115ca9
YR
101262010-06-24 Yoni Rabkin <yoni@rabkins.net>
10127
10128 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
10129 since it is not present when using some non-default switches.
10130
2c79f053
KF
101312010-06-23 Karl Fogel <kfogel@red-bean.com>
10132
7f0b7b3e
KF
10133 * simple.el (compose-mail): Fix doc string to refer to
10134 `compose-mail-user-agent-warnings', instead of to the
10135 nonexistent `compose-mail-check-user-agent'.
10136
43a91810
AM
101372010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
10138
10139 Fix an indentation bug:
10140
10141 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
10142 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
10143 of existing values.
10144
10145 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
10146 (c-clear->-pair-props-if-match-before): now return t when they've
10147 cleared properties, nil otherwise.
10148 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
10149 by taking account of the existing value.
10150
10151 * progmodes/cc-defs.el
10152 (c-clear-char-property-with-value-function): Fix this to clear the
10153 property rather than overwriting it with nil.
10154
8adb4c33
CY
101552010-06-20 Chong Yidong <cyd@stupidchicken.com>
10156
10157 * emacs-lisp/package.el (package-print-package): Add link to
10158 package description via describe-package.
10159 (describe-package-1): List package requirements. Add button to
10160 perform installation.
10161 (package-menu-describe-package): New command.
10162
10163 * help-mode.el (help-package): New button type.
10164
cced7584
CY
101652010-06-19 Chong Yidong <cyd@stupidchicken.com>
10166
10167 * emacs-lisp/package.el: Move package-list-packages binding to
10168 menu-bar.el.
10169 (describe-package, describe-package-1, package--dir): New funs.
10170 (package-activate-1): Use package--dir.
10171
10172 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
10173
10174 * help-mode.el (help-package-def): New button type.
10175
10176 * menu-bar.el: Move package-list-packages binding here from
10177 package.el.
10178
d148e8f9
GH
101792010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
10180
10181 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
10182
b1a03ef6
SM
101832010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10184
10185 * emacs-lisp/edebug.el (edebug-read-list):
10186 Phase out old-style backquotes.
10187
dbd6da78
JL
101882010-06-17 Juri Linkov <juri@jurta.org>
10189
10190 * help-mode.el (help-mode): Set buffer-local variable
10191 revert-buffer-function to help-mode-revert-buffer.
10192 (help-mode-revert-buffer): New function.
10193
10194 * info.el (Info-revert-find-node): Check for major-mode Info-mode
10195 before popping to "*info*" (like in other Info functions).
10196 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
10197 old-history-forward. Pop to old-buffer-name or "*info*" to
10198 recreate the killed buffer. Set Info-history-forward from
10199 old-history-forward.
10200 (Info-breadcrumbs-depth): Add :group and :version.
10201
64eba874
DN
102022010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
10203
10204 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
10205
26508c03
AM
102062010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
10207
a628ad9d
JB
10208 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
10209 for languages like Portuguese with pt_{BR,PT} and no plain pt.
26508c03 10210
69582fcd
JB
102112010-06-17 Juanma Barranquero <lekktu@gmail.com>
10212
54ea2a0d
JB
10213 * emacs-lisp/package.el (package-menu-mode-map):
10214 Move initialization into declaration.
10215
69582fcd
JB
10216 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
10217
44198b6e
CY
102182010-06-17 Chong Yidong <cyd@stupidchicken.com>
10219
10220 * emacs-lisp/package.el (package-archive-base): Point to
10221 elpa.gnu.org.
10222 (package-enable, package-load-list): New defcustoms.
10223 (package-user-dir, package-directory-list): Turn into defcustoms.
10224 Don't include package-user-dir in package-directory-list.
10225 (package--builtins-base): Don't include Emacs as a "package".
10226 (package-subdirectory-regexp): New var.
10227 (package-load-all-descriptors, package-compute-transaction)
10228 (package-download-transaction): Obey package-load-list.
10229 (package-activate-1): Rename from package-do-activate.
10230 (package-list-packages-internal): Check package-load-list.
10231 (package-load-descriptor, package-generate-autoloads)
10232 (package-unpack, package-unpack-single)
6a7662bb
BR
10233 (package--read-archive-file, package-delete):
10234 Use expand-file-name.
44198b6e
CY
10235
10236 * emacs-lisp/package-x.el: New file. Package uploading
10237 functionality split out from package.el.
10238
95b6d681 10239 * startup.el (command-line): Load packages after reading init file.
44198b6e
CY
10240
102412010-06-17 Tom Tromey <tromey@redhat.com>
10242
10243 * emacs-lisp/package.el: New file.
10244
50d76a9f
DN
102452010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
10246
10247 Fix vc-annotate for renamed files when using Git.
76e3243a 10248 * vc/vc-git.el (vc-git-find-revision): Deal with empty results from
50d76a9f
DN
10249 ls-files. Doe not pass the object as a file name to cat-file, it
10250 is not a file name.
10251 (vc-git-annotate-command): Pass the file name using -- to avoid
10252 ambiguity with the revision.
10253 (vc-git-previous-revision): Pass a relative file name.
10254
6095a05b
GM
102552010-06-22 Glenn Morris <rgm@gnu.org>
10256
943375a6
GM
10257 * progmodes/js.el (js-mode-map): Use standard capitalization and
10258 ellipses for menu entries.
10259
6095a05b
GM
10260 * wid-edit.el (widget-complete): Doc fix.
10261
4514199e
JH
102622010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
10263
10264 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
10265
c4786d60
DN
102662010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
10267
11c46b39 10268 Fix annotating other revisions for renamed files in vc-annotate.
76e3243a 10269 * vc/vc-annotate.el (vc-annotate): Add an optional argument for the
11c46b39 10270 VC backend. Use it when non-nil.
a628ad9d 10271 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
07976ae3 10272 (Bug#6487).
11c46b39 10273
c4786d60 10274 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
76e3243a 10275 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
c4786d60
DN
10276 Do not pass the file name to the 'previous-revision call when we
10277 don't want a file diff. (Bug#6489)
10278
04ec0963
DN
102792010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
10280
11c46b39 10281 Fix finding revisions for renamed files in vc-annotate.
76e3243a 10282 * vc/vc.el (vc-find-revision): Add an optional argument for
04ec0963 10283 the VC backend. Use it when non-nil.
76e3243a 10284 * vc/vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
04ec0963
DN
10285 backend to vc-find-revision. (Bug#6487)
10286
c036381c
DN
102872010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
10288
10289 Fix reading file names in Git annotate buffers.
95b6d681
JB
10290 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line):
10291 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
c036381c 10292
05c123e6
AM
102932010-06-20 Alan Mackenzie <acm@muc.de>
10294
10295 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
10296 in file local variables, set it first.
10297
4111f0c7
GM
102982010-06-19 Glenn Morris <rgm@gnu.org>
10299
74739ffd
GM
10300 * descr-text.el (describe-char-unicode-data): Insert separating
10301 space when needed. (Bug#6422)
10302
4111f0c7
GM
10303 * progmodes/idlwave.el (idlwave-action-and-binding):
10304 Fix typo in 2009-12-03 change. (Bug#6450)
10305
e20f0421
SM
103062010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
10307
10308 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
10309 handling for `lambda' (misunderstanding).
10310
fb3e306a
JB
103112010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
10312
dd86ea11 10313 * calc/calc-poly.el (math-accum-factors): Make sure that
fb3e306a
JB
10314 constants aren't distributed after they are factored out.
10315
e020fb59
JL
103162010-06-16 Juri Linkov <juri@jurta.org>
10317
10318 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
10319 `list-colors-print'. (Bug#6332)
10320
b8add347
SM
10321 * subr.el (read-quoted-char): Fix up last change (bug#6290).
10322
36901266
SM
103232010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
10324
49b2e83d
SM
10325 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
10326 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
10327
36901266
SM
10328 * font-lock.el (font-lock-major-mode): Rename from
10329 font-lock-mode-major-mode to distinguish it from
10330 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
10331 (font-lock-set-defaults):
10332 * font-core.el (font-lock-default-function): Adjust users.
10333 (font-lock-mode): Don't set it at all.
10334
2a64315a 103352010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
12755d08 10336
76e3243a 10337 * vc/vc-annotate.el (vc-annotate): Use vc-read-revision.
12755d08 10338
2a64315a 103392010-06-16 Glenn Morris <rgm@gnu.org>
d7cd4abb
GM
10340
10341 * calendar/appt.el (appt-time-msg-list): Doc fix.
10342 (appt-check): Let-bind appt-warn-time.
10343 (appt-add): Make the 3rd argument optional.
10344 Simplify argument names. Doc fix. Check for integer WARNTIME.
10345 Only add WARNTIME to the output list if non-nil.
10346
2a64315a 103472010-06-16 Ivan Kanis <apple@kanis.eu>
a675c749
IK
10348
10349 * calendar/appt.el (appt-check): Let the 3rd element of
10350 appt-time-msg-list specify the warning time.
10351 (appt-add): Add new argument with the warning time. (Bug#5176)
10352
6a7662bb 103532010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
a9de35fe 10354
76e3243a 10355 * vc/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
a9de35fe
BR
10356 older than version 1.6. (Bug#6361)
10357
2a64315a 103582010-06-16 Helmut Eller <eller.helmut@gmail.com>
37a7e764
HE
10359
10360 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
10361 used by cl-do-arglist. (Bug#6408)
10362
30d7ac37
AM
103632010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
10364
6a7662bb
BR
10365 * textmodes/ispell.el (ispell-dictionary-base-alist):
10366 Fix portuguese casechars/not-casechars for missing 'çÇ'.
30d7ac37
AM
10367 Suggested by Rolando Pereira (bug#6434).
10368
8fd02581
JB
103692010-06-15 Juanma Barranquero <lekktu@gmail.com>
10370
10371 * facemenu.el (list-colors-sort): Doc fix.
10372
6a7662bb 103732010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
b15922cc
BR
10374
10375 * progmodes/sql.el (sql-connect-mysql): Fix typo.
10376
f0bf7c8e
JL
103772010-06-14 Juri Linkov <juri@jurta.org>
10378
10379 Add sort option `list-colors-sort'. (Bug#6332)
10380 * facemenu.el (color-rgb-to-hsv): New function.
10381 (list-colors-sort): New defcustom.
10382 (list-colors-sort-key): New function.
10383 (list-colors-display): Doc fix. Sort list according to the option
10384 `list-colors-sort'.
10385 (list-colors-print): Add HSV values to `help-echo' property of
10386 RGB strings.
10387
c42fe9a5
JL
103882010-06-14 Juri Linkov <juri@jurta.org>
10389
10390 * compare-w.el: Move to the "vc" subdirectory.
10391
b263a4c4
SM
103922010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
10393
d8b0cddd
SM
10394 * image-mode.el (image-mode-map): Remap left-char and right-char.
10395
b263a4c4
SM
10396 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
10397
89877f5f
CY
103982010-06-12 Chong Yidong <cyd@stupidchicken.com>
10399
133a8d82
CY
10400 * term/common-win.el (x-colors): Add all the color names defined
10401 in rgb.txt (Bug#6332).
10402
89877f5f
CY
10403 * facemenu.el (list-colors-print): Don't print extra names if it
10404 will overflow the window width.
10405
10406 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
133a8d82 10407 change (Bug#6343).
89877f5f 10408
9d1f18b5
EZ
104092010-06-12 Eli Zaretskii <eliz@gnu.org>
10410
10411 * files.el (make-directory): Doc fix (bug#6396).
10412
b81a0b56
MA
104132010-06-12 Michael Albinus <michael.albinus@gmx.de>
10414
10415 * net/tramp.el (tramp-remote-process-environment): Protect version
10416 string by apostroph.
10417 (tramp-shell-prompt-pattern): Do not use a shy group in case of
10418 XEmacs.
10419 (tramp-file-name-for-operation): Add `call-process-region'.
10420 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
10421
10422 * net/tramp-compat.el (top): Do not autoload
10423 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
10424 only when `start-file-process' is not bound.
10425 (tramp-advice-file-expand-wildcards): Do not use
10426 `tramp-handle-file-remote-p'.
10427 (tramp-compat-make-temp-file): Handle the case, that
10428 `make-temp-file' has no third argument EXTENSION.
10429
69f18acc
JB
104302010-06-11 Juanma Barranquero <lekktu@gmail.com>
10431
5fee75d4
JB
10432 * makefile.w32-in (WINS_BASIC): Include new directory vc.
10433
69f18acc
JB
10434 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
10435
9766adfb
JL
104362010-06-11 Juri Linkov <juri@jurta.org>
10437
10438 * finder.el (finder-known-keywords): Add keyword "vc"
10439 for version control.
10440
10441 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
10442 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
10443 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
10444 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
10445
56b2854f
JL
104462010-06-11 Juri Linkov <juri@jurta.org>
10447
10448 Move version control related files to the "vc" subdirectory.
10449 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
10450 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
10451 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
10452 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
10453 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
10454 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
10455 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
10456 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
10457 Move files to the "vc" subdirectory.
10458
6534e58a
CY
104592010-06-11 Chong Yidong <cyd@stupidchicken.com>
10460
10461 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
10462 (Bug#6367).
10463
84d9562f
SE
104642010-06-11 Stephen Eglen <stephen@gnu.org>
10465
10466 * shell.el: Bind `shell-resync-dirs' to M-RET.
10467
3ef0a6a5
MA
104682010-06-10 Michael Albinus <michael.albinus@gmx.de>
10469
10470 * notifications.el: Move file from lisp/net, because it is
10471 supposed to talk locally to the user.
10472
fa4003da
MA
104732010-06-10 Julien Danjou <julien@danjou.info>
10474
10475 * net/notifications.el (notifications-on-action-signal)
10476 (notifications-on-closed-signal): Pass notification id as first
b81a0b56 10477 argument to the callback functions. Add docstrings.
fa4003da
MA
10478 (notifications-notify): Fix docstring.
10479
46e6650e
GM
104802010-06-10 Glenn Morris <rgm@gnu.org>
10481
10482 * emacs-lisp/authors.el (authors-ignored-files)
10483 (authors-valid-file-names): Add some files.
10484
a71832f7
SM
104852010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
10486
10487 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
10488 merge conflict, giving preference to the emacs-23 version of the code.
10489
8c6eab5a
SM
104902010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
10491
989bc97f
SM
10492 * emacs-lisp/advice.el (ad-compile-function):
10493 Define warning-suppress-types before we let-bind it (bug#6275).
10494
8c6eab5a
SM
10495 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
10496 declare it, make it buffer-local and permanent-local (bug#6324).
10497 (vc-resynch-window): Adjust name.
10498 * vc-hooks.el (vc-find-file-hook): Adjust name.
10499
890a18d6
MA
105002010-06-09 Michael Albinus <michael.albinus@gmx.de>
10501
10502 * net/notifications.el (notifications-notify): Fix docstring.
10503
bf3e70eb
JB
105042010-06-09 Juanma Barranquero <lekktu@gmail.com>
10505
10506 Update to Unicode 6.0.0 beta.
10507 * international/charprop.el: Update copyright.
10508 * international/mule-cmds.el (ucs-names): Update character ranges.
10509 * international/uni-bidi.el:
10510 * international/uni-category.el:
10511 * international/uni-combining.el:
10512 * international/uni-comment.el:
10513 * international/uni-decimal.el:
10514 * international/uni-decomposition.el:
10515 * international/uni-digit.el:
10516 * international/uni-lowercase.el:
10517 * international/uni-mirrored.el:
10518 * international/uni-name.el:
10519 * international/uni-numeric.el:
10520 * international/uni-old-name.el:
10521 * international/uni-titlecase.el:
10522 * international/uni-uppercase.el: Regenerate.
10523
b978141d
JB
105242010-06-09 Juanma Barranquero <lekktu@gmail.com>
10525
ee8359ba
JB
10526 * emacs-lisp/smie.el (comment-string-strip): Declare function.
10527 (smie-precs-precedence-table): Fix typo in docstring.
10528
f64ab8fb
JB
10529 * vc-mtn.el (log-edit-extract-headers): Declare function.
10530
883ffa8c
JB
10531 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
10532
b978141d
JB
10533 * net/notifications.el (dbus-register-signal): Declare function.
10534 (notifications-notify): Fix typos and reflow docstring.
10535
5f4f2ae4
DN
105362010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
10537
10538 Improve VC create/retrieve tag/branch.
10539 * vc.el (vc-create-tag): Do not read the directory name for VCs
10540 with repository revision granularity. Adjust the tag/branch
10541 prompt. Reset VC properties.
10542 (vc-retrieve-tag): Do not read the directory name for VCs
10543 with repository revision granularity. Reset VC properties.
10544
41a86354
MA
105452010-06-09 Julien Danjou <julien@danjou.info>
10546
ef33fd34 10547 * net/notifications.el: New file.
41a86354 10548
fab43c76
DN
105492010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
10550
00fd1147
DN
10551 Add optional support for resetting VC properties.
10552 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
10553 call vc-file-clearprops when true.
10554 (vc-resynch-buffer): Add new optional argument, pass it down.
10555 (vc-resynch-buffers-in-directory): Likewise.
10556
fab43c76
DN
10557 Improve support for special markup in the VC commit message.
10558 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
10559 * vc-hg.el (vc-hg-checkin): Add support for Date:.
10560 * vc-git.el (vc-git-checkin):
10561 * vc-bzr.el (vc-bzr-checkin): Likewise.
10562
e7d67e73
SM
105632010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
10564
10565 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
10566 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
10567
277e6741
MP
105682010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
10569
10570 * iimage.el: Remove images as soon as the underlying text is modified.
10571 (iimage-modification-hook): New function.
10572 (iimage-mode-buffer): Use it.
10573
83156c18
SM
105742010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10575
10576 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
10577 smie-indent-offset-after. Add :prev case. Make a bit more generic.
10578 (smie-indent-virtual): Remove `virtual' arg. Update callers.
10579 (smie-indent-keyword): Add handling of open-paren keywords.
10580 (smie-indent-comment-continue): Don't assume comment-continue.
10581
13b5221f
MR
105822010-06-07 Martin Rudalics <rudalics@gmx.at>
10583
10584 * window.el (pop-to-buffer): Remove the conditional that
10585 compares new-window and old-window, so it will reselect
10586 the selected window unconditionally.
10587 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
10588
c2ea5810
SM
105892010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10590
10591 * emacs-lisp/smie.el (smie-indent-offset-after)
10592 (smie-indent-forward-token, smie-indent-backward-token): New functions.
10593 (smie-indent-after-keyword): Use them.
10594 (smie-indent-fixindent): Only applies to the indentation of the BOL.
10595 (smie-indent-keyword): Tweak the black magic.
10596 (smie-indent-comment-continue): Strip comment-continue before use.
10597 (smie-indent-functions): Indent comments before keywords.
10598
27dd3c11
JL
105992010-06-06 Juri Linkov <juri@jurta.org>
10600
10601 * isearch.el (isearch-lazy-highlight-search): Fix looping
10602 by checking for empty match. This syncs this loop with the
10603 similar loop in `isearch-search'. (Bug#6362)
10604
35b148ee
JB
106052010-06-05 Juanma Barranquero <lekktu@gmail.com>
10606
10607 * net/dbus.el (dbus-register-method): Declare function.
10608 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
10609 (dbus-introspect): Doc fix.
10610 (dbus-event-bus-name, dbus-introspect-get-interface)
10611 (dbus-introspect-get-argument): Reflow docstrings.
10612
eccdfe5f
DN
106132010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
10614
10615 vc-log-incoming/vc-log-outgoing fixes for Git.
10616 * vc-git.el (vc-git-log-view-mode): Fix font lock for
10617 incoming/outgoing logs.
10618 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
10619 instead of vc-git-compute-remote.
10620 (vc-git-compute-remote): Remove.
10621
86253dc0
CY
106222010-06-04 Chong Yidong <cyd@stupidchicken.com>
10623
10624 * term/common-win.el (x-colors): Add "dark green" and "dark
10625 turquoise" (Bug#6332).
10626
0665f661
JL
106272010-06-04 Juri Linkov <juri@jurta.org>
10628
10629 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
10630 Instead of setting `replace' to t and replacing the same string
10631 with itself, don't do certain actions when
10632 kill-do-not-save-duplicates is non-nil and string is equal to car
10633 of kill-ring: don't call menu-bar-update-yank-menu, don't push
10634 interprogram-paste strings to kill-ring, and don't push the input
10635 argument `string' to kill-ring.
10636 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
10637
087fc47a
JB
106382010-06-04 Juanma Barranquero <lekktu@gmail.com>
10639
10640 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
10641
4f201088
MA
106422010-06-04 Michael Albinus <michael.albinus@gmx.de>
10643
10644 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
10645 (tramp-gvfs-handler-mounted-unmounted)
10646 (tramp-gvfs-connection-mounted-p): Handle default-location.
10647
10648 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
10649 move files to trash.
10650
18ccd78a
JB
106512010-06-04 Juanma Barranquero <lekktu@gmail.com>
10652
10653 * international/mule-cmds.el (nonascii-insert-offset)
10654 (nonascii-translation-table): Add obsolescence information.
10655
10656 * international/mule.el (make-translation-table-from-vector): Doc fix.
10657
3845c322
GM
106582010-06-03 Glenn Morris <rgm@gnu.org>
10659
10660 * desktop.el (desktop-clear-preserve-buffers):
10661 Add "*Warnings*" buffer. (Bug#6336)
10662
54d3626e
DN
106632010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
10664
6941ffec
DN
10665 vc-log-incoming/vc-log-outgoing improvements for Git.
10666 * vc-git.el (vc-git-log-outgoing): Use the same format as the
10667 short log.
10668 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
10669
54d3626e
DN
10670 Add bindings for vc-log-incoming and vc-log-outgoing.
10671 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
10672 and vc-log-outgoing.
10673 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
10674 and vc-log-outgoing.
10675
aa1bc616
CY
106762010-06-03 Chong Yidong <cyd@stupidchicken.com>
10677
10678 * net/rcirc.el (rcirc-sort-nicknames): Remove.
10679 (rcirc-handler-366): Always sort nicknames.
10680
e2d2a205
JB
106812010-06-03 Juanma Barranquero <lekktu@gmail.com>
10682
10683 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
10684
44ea155d
CY
106852010-06-03 Chong Yidong <cyd@stupidchicken.com>
10686
a628ad9d 10687 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
44ea155d 10688
a91dedc4
SM
106892010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
10690
10691 * net/rcirc.el (rcirc-sort-nicknames): Change default.
10692 (rcirc-sort-nicknames-join): Avoid setq.
10693
c62bf05a
DD
106942010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
10695
10696 * net/rcirc.el (rcirc-sort-nicknames): New custom.
10697 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
10698 (rcirc-handler-366): Use them.
10699
dd2c3c92
SM
107002010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
10701
10702 Split smie-indent-calculate into more manageable chunks.
10703 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
10704 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
10705 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
10706 (smie-indent-exps): Extract from smie-indent-calculate.
10707 (smie-indent-functions): New var.
10708 (smie-indent-functions): Use them.
10709
927c346b
SM
107102010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
10711
10712 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
10713 (smie-indent-calculate): Simplify and cleanup.
10714
1efeec86
MA
107152010-06-02 Michael Albinus <michael.albinus@gmx.de>
10716
10717 * net/tramp-gvfs.el (top): Require url-util.
927c346b
SM
10718 (tramp-gvfs-mount-point): Remove.
10719 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
10720 New defuns.
1efeec86
MA
10721 (with-tramp-dbus-call-method): Format trace message.
10722 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
927c346b
SM
10723 Implement backup call, when operation on local files fails.
10724 Use progress reporter. Flush properties of changed files.
1efeec86
MA
10725 (tramp-gvfs-handle-make-directory): Make more traces.
10726 (tramp-gvfs-url-file-name): Hexify file name in url.
10727 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
10728 into account for the resulting file name.
10729 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
10730 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
10731 (tramp-gvfs-handler-mounted-unmounted)
10732 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
10733 attribute "default_location". Set "prefix" property.
10734 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
10735 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
10736 exists. Raise an error, if not (due to a corresponding answer
10737 "no" in interactive questions, for example).
10738
89877f5f 107392010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
9cac248c
DN
10740
10741 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
10742
24f574a9
JB
107432010-06-01 Juanma Barranquero <lekktu@gmail.com>
10744
10745 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
10746 right-*. (Bug#6265)
10747
290736f2
DN
107482010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
10749
61158bfa
DN
10750 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
10751 * vc-git.el (vc-git-compute-remote): New function.
10752 (vc-git-log-outgoing): Use it instead of hard coding a value.
10753 (vc-git-log-incoming): New function.
10754
5828f6ca
DN
10755 Improve state updating for VC tag commands.
10756 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
10757 to update the state of all buffers in the directory.
10758
290736f2
DN
10759 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
10760
feceda26
SM
107612010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
10762
10763 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
10764 `file-directory-p' to the filename part rather than to the whole text.
10765
896114cf
SM
107662010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10767
10768 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
10769
1603358c
DA
107702010-05-31 Drew Adams <drew.adams@oracle.com>
10771
10772 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
10773
fe40dc63
JB
107742010-05-31 Juanma Barranquero <lekktu@gmail.com>
10775
10776 * subr.el (momentary-string-display): Just use read-event to read
10777 the exit event (Bug#6238).
10778
9e8014c6
EZ
107792010-05-30 Eli Zaretskii <eliz@gnu.org>
10780
10781 * international/mule.el (define-coding-system): Doc fix (bug#6313).
10782
61a08071
JB
107832010-05-30 Juanma Barranquero <lekktu@gmail.com>
10784
10785 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
10786 Suggested by Eli Zaretskii <eliz@gnu.org>.
10787
5feec8ca
SM
107882010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10789
10790 * minibuffer.el (completion-file-name-table): Don't return a boundary
10791 past the end of `string' (bug#6299).
10792 (completion--file-name-table): Delegate to completion-file-name-table
10793 for the `boundaries' case.
10794
8175cb90
JB
107952010-05-30 Juanma Barranquero <lekktu@gmail.com>
10796
2b94133f
JB
10797 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
10798 movement commands.
10799
8175cb90
JB
10800 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
10801 `path-separator', but maintain compatibility with Emacs 20.2.
10802
0191e222
CY
108032010-05-29 Chong Yidong <cyd@stupidchicken.com>
10804
10805 * server.el (server-process-filter): Receive parent-id argument
10806 from emacsclient.
10807 (server-create-window-system-frame): New arg. Pass parent-id as
10808 frame parameter.
10809
9b655a0a
EZ
108102010-05-29 Eli Zaretskii <eliz@gnu.org>
10811
db5dce9d
EZ
10812 Bidi-sensitive word movement with arrow keys.
10813 * subr.el (right-arrow-command, left-arrow-command): Move to
10814 bindings.el.
10815
10816 * bindings.el (right-char, left-char): Move from subr.el and
10817 rename from right-arrow-command and left-arrow-command.
10818 (right-word, left-word): New functions.
10819 (global-map) <right>: Bind to right-char.
10820 (global-map) <left>: Bind to left-char.
10821 (global-map) <C-right>: Bind to right-word.
10822 (global-map) <C-left>: Bind to left-word.
10823
9b655a0a
EZ
10824 * ls-lisp.el (ls-lisp-classify-file): New function.
10825 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
10826 (ls-lisp-classify): Call ls-lisp-classify-file.
10827 (insert-directory): Remove blanks from switches.
10828
fcb52808
CY
108292010-05-29 Chong Yidong <cyd@stupidchicken.com>
10830
10831 * ansi-color.el: Delete unused escape sequences (Bug#6085).
10832 (ansi-color-drop-regexp): New constant.
10833 (ansi-color-apply, ansi-color-filter-region)
896114cf 10834 (ansi-color-apply-on-region): Delete unrecognized control sequences.
fcb52808
CY
10835 (ansi-color-apply): Build string list before calling concat.
10836
0040735a
JL
108372010-05-28 Juri Linkov <juri@jurta.org>
10838
10839 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
10840 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
10841 (Bug#5270)
10842
b6827fff
MA
108432010-05-28 Michael Albinus <michael.albinus@gmx.de>
10844
10845 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
10846 to ignored backtrace functions.
10847 (with-progress-reporter): Expand docstring.
10848 (tramp-handle-delete-file): Implement TRASH argument.
10849 (tramp-get-remote-trash): New defun.
10850
eba082a2
MA
108512010-05-28 Michael Albinus <michael.albinus@gmx.de>
10852
6a7662bb
BR
10853 * net/tramp-compat.el (tramp-compat-delete-file):
10854 Use `symbol-value' for backward compatibility.
eba082a2
MA
10855
10856 * net/tramp.el (tramp-handle-make-symbolic-link)
10857 (tramp-handle-load)
10858 (tramp-do-copy-or-rename-file-via-buffer)
10859 (tramp-do-copy-or-rename-file-directly)
10860 (tramp-do-copy-or-rename-file-out-of-band)
10861 (tramp-handle-process-file, tramp-handle-call-process-region)
10862 (tramp-handle-shell-command, tramp-handle-file-local-copy)
10863 (tramp-handle-insert-file-contents, tramp-handle-write-region)
10864 (tramp-delete-temp-file-function): Use `delete-file' instead
10865 of `tramp-compat-delete-file'.
10866
10867 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
10868 (tramp-fish-handle-make-symbolic-link)
10869 (tramp-fish-handle-process-file): Use `delete-file' instead
10870 of `tramp-compat-delete-file'.
10871
6a7662bb
BR
10872 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
10873 Use `delete-file' instead of `tramp-compat-delete-file'.
eba082a2 10874
d86d2721
SM
10875 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region):
10876 Use `delete-file' instead of `tramp-compat-delete-file'.
eba082a2 10877
6a7662bb
BR
10878 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file):
10879 Use `delete-file' instead of `tramp-compat-delete-file'.
eba082a2
MA
10880
10881 * net/tramp-smb.el (tramp-smb-handle-copy-file)
10882 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
10883 (tramp-smb-handle-write-region): Use `delete-file' instead of
10884 `tramp-compat-delete-file'.
10885 (tramp-smb-handle-delete-directory): Use 'trash as arg.
10886
f1a5d776
CY
108872010-05-27 Chong Yidong <cyd@stupidchicken.com>
10888
10889 * dired.el (dired-delete-file): New arg TRASH.
c4ce1145 10890 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
f1a5d776
CY
10891 (dired-do-flagged-delete, dired-do-delete): Use trash.
10892
10893 * speedbar.el (speedbar-item-delete): Allow trashing.
10894
10895 * files.el (delete-directory): New arg TRASH.
10896
10897 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
10898 (ange-ftp-rename-remote-to-remote)
10899 (ange-ftp-rename-local-to-remote)
10900 (ange-ftp-rename-remote-to-local, ange-ftp-load)
10901 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
10902 `delete-file'.
10903 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
10904 allow trashing.
10905
10906 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
10907 handle new TRASH arg of `delete-file'.
10908
c4ce1145 10909 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
f1a5d776
CY
10910 (tramp-handle-make-symbolic-link, tramp-handle-load)
10911 (tramp-do-copy-or-rename-file-via-buffer)
10912 (tramp-do-copy-or-rename-file-directly)
10913 (tramp-do-copy-or-rename-file-out-of-band)
10914 (tramp-handle-process-file, tramp-handle-call-process-region)
10915 (tramp-handle-shell-command, tramp-handle-file-local-copy)
10916 (tramp-handle-insert-file-contents, tramp-handle-write-region)
10917 (tramp-delete-temp-file-function): Use null TRASH arg in
10918 tramp-compat-delete-file call.
10919
10920 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
10921 (tramp-fish-handle-delete-file)
10922 (tramp-fish-handle-make-symbolic-link)
10923 (tramp-fish-handle-process-file): Use null TRASH arg in
10924 `tramp-compat-delete-file' call.
10925
10926 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
10927 arg in `tramp-compat-delete-file' call.
10928
10929 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
10930 (tramp-gvfs-handle-write-region): Use null TRASH arg in
10931 `tramp-compat-delete-file' call.
10932
10933 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
10934 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
10935 `tramp-compat-delete-file' call.
10936
10937 * net/tramp-smb.el (tramp-smb-handle-copy-file)
10938 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
10939 (tramp-smb-handle-write-region): Use null TRASH arg in
10940 tramp-compat-delete-file call.
10941 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
10942 (tramp-smb-handle-delete-file): Rename arg.
10943
10944 * diff.el (diff-sentinel):
10945 * epg.el (epg--make-temp-file, epg-decrypt-string)
10946 (epg-verify-string, epg-sign-string, epg-encrypt-string):
10947 * jka-compr.el (jka-compr-partial-uncompress)
10948 (jka-compr-call-process, jka-compr-write-region):
10949 * server.el (server-sentinel): Remove optional arg from
10950 delete-file, reverting 2010-05-03 change.
10951
ecb0ab90
CY
109522010-05-27 Chong Yidong <cyd@stupidchicken.com>
10953
6a7662bb
BR
10954 * progmodes/verilog-mode.el (verilog-type-font-keywords):
10955 Use font-lock-constant-face, not obsolete font-lock-reference-face.
ecb0ab90 10956
2b25da45
KH
109572010-05-27 Kenichi Handa <handa@m17n.org>
10958
10959 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
10960 element of GSTRING is nil.
10961
11e4d8c0
SM
109622010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
10963
10964 * emacs-lisp/smie.el (smie-forward-token-function)
10965 (smie-backward-token-function): New vars.
10966 (smie-backward-sexp, smie-forward-sexp)
10967 (smie-indent-hanging-p, smie-indent-calculate): Use them.
10968 (smie-default-backward-token): Rename from smie-backward-token and
10969 skip comments.
10970 (smie-default-forward-token): Rename from smie-forward-token and
10971 skip comments.
10972 (smie-next-sexp): Handle nil results from next-token.
10973 (smie-indent-calculate): Add a new case for special `fixindent' comments.
10974
4da3541b
CY
109752010-05-27 Chong Yidong <cyd@stupidchicken.com>
10976
896114cf
SM
10977 * progmodes/verilog-mode.el (verilog-type-font-keywords):
10978 Use font-lock-constant-face, not obsolete font-lock-reference-face.
4da3541b
CY
10979
109802010-05-27 Masatake YAMATO <yamato@redhat.com>
10981
10982 * htmlfontify.el (hfy-face-resolve-face): New function.
10983 (hfy-face-to-style): Use it (Bug#6279).
10984
6dc439cb
SM
109852010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
10986
10987 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
10988 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
10989
021eb8d7
GM
109902010-05-26 Glenn Morris <rgm@gnu.org>
10991
10992 * emulation/edt.el (edt-load-keys): Use locate-library.
10993
bef4957b
CY
109942010-05-25 Chong Yidong <cyd@stupidchicken.com>
10995
10996 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
10997 (log-edit-changelog-entries): Doc fix.
6dc439cb
SM
10998 (log-edit-changelog-insert-entries): Args changed.
10999 Rename relative filenames in ChangeLog entries. Delete tabs.
bef4957b
CY
11000 (log-edit-insert-changelog-entries): Reorganize return value of
11001 `log-edit-changelog-entries' to pass filenames to
11002 log-edit-changelog-insert-entries.
11003
84fb0956
TV
110042010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11005
11006 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
11007 `image-dired-dired-insert-marked-thumbs' to
11008 `image-dired-dired-toggle-marked-thumbs'.
11009
11010 * image-dired.el: Require cl when compiling.
11011 (image-dired-dired-toggle-marked-thumbs): Rename from
11012 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
11013 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
11014 to 'no-dir. Skip files whose names don't match
11015 `image-file-name-regexp'. When file has a thumbnail overlay,
11016 delete it. (Bug#5270)
11017
0fb1193d
JL
110182010-05-25 Juri Linkov <juri@jurta.org>
11019
11020 * image-mode.el (image-mode): Add image-after-revert-hook to
11021 after-revert-hook.
11022 (image-after-revert-hook): New function. (Bug#5669)
11023
fc937924
JL
110242010-05-25 Juri Linkov <juri@jurta.org>
11025
11026 * image.el (image-animated-p): When delay between animated images
11027 is 0, set it to 10 (0.1 sec). (Bug#6258)
11028
fa9ba953
MA
110292010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
11030
11031 * net/tramp.el (tramp-handle-insert-directory): Don't use
f5c8afe6 11032 `forward-word', its default syntax could be changed.
fa9ba953 11033
9e021389
MA
110342010-05-25 Michael Albinus <michael.albinus@gmx.de>
11035
11036 * net/tramp.el (tramp-progress-reporter-update): New defun.
11037 (with-progress-reporter): Use it.
11038 (tramp-process-actions):
6a7662bb
BR
11039 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion):
11040 Preserve current message, in order to let progress reporter continue
9e021389
MA
11041 afterwards. (Bug#6257)
11042
6169260b
GM
110432010-05-25 Glenn Morris <rgm@gnu.org>
11044
11045 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
11046 Add :version.
11047
d26781af
RY
110482010-05-25 Ryan Yeske <rcyeske@gmail.com>
11049
8826afe3 11050 * net/rcirc.el (rcirc-default-user-name): Change to "user".
d26781af
RY
11051 (rcirc-default-full-name): Change to "unknown".
11052 (rcirc-user-name-history): Add variable.
8826afe3
GM
11053
110542010-05-25 Ryan Yeske <rcyeske@gmail.com>
acd0102a 11055 Jonathan Rockway <jon@jrock.us>
8826afe3
GM
11056
11057 * net/rcirc.el (rcirc-server-alist): Add :pass.
11058 (rcirc): When prompting for connection parameters, also prompt for
d26781af 11059 username and password.
a628ad9d 11060 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
d26781af
RY
11061 value to server when connecting.
11062
d355a0b7
SM
110632010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11064
f5228f84
SM
11065 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
11066 (smie-merge-prec2s): Pass the tables as separate args.
11067 (smie-bnf-precedence-table): Adjust call accordingly.
11068 (smie-prec2-levels): Set levels at the end.
11069
d355a0b7
SM
11070 Replace Lisp calls to delete-backward-char by delete-char.
11071 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
f5c8afe6
JB
11072 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
11073 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
76e3243a 11074 * calc/calc.el, emacs-lisp/cl-extra.el, emacs-lips/cl-loaddefs.el,
f5c8afe6
JB
11075 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
11076 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
11077 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
11078 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
11079 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
11080 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
11081 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
11082 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
11083 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
11084 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
d355a0b7
SM
11085 delete-backward-char by calls to delete-char.
11086
f668ef02
KH
110872010-05-25 Kenichi Handa <handa@m17n.org>
11088
11089 * language/hebrew.el (hebrew-shape-gstring): New function.
11090 Register it in composition-function-table for all Hebrew combining
11091 characters.
11092
397eb3f3
SM
110932010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11094
11095 * epa.el (epa--select-keys): Don't explicitly delete the window since
11096 that can fail (e.g. sole window in frame). Use dedication instead.
11097
171eda53 110982010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
ab0c07c0
SM
11099
11100 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
11101
110683ad
CY
111022010-05-22 Chong Yidong <cyd@stupidchicken.com>
11103
11104 * image.el (image-refresh): Define as an alias for image-flush.
11105
11106 * image-mode.el (image-toggle-display-image): Caller changed.
11107
df9db151
JL
111082010-05-21 Juri Linkov <juri@jurta.org>
11109
11110 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
11111 Remove "all" from grep-files-aliases. Split grep-files-aliases by
11112 whitespace, call wildcard-to-regexp on substrings and concat them
11113 with "\\|". (Bug#6114)
11114
c0209c2c
AM
111152010-05-21 Alan Mackenzie <acm@muc.de>
11116
171eda53
SM
11117 * progmodes/cc-engine.el (c-parse-state-get-strategy):
11118 Replace parameter `here' with `here-' and `here-plus', which sandwich
11119 any pertinent CPP construct.
c0209c2c
AM
11120 (c-remove-stale-state-cache-backwards): Fix a bug which happens
11121 when doing (c-parse-state) in a CPP construct: Exclude any "new"
11122 CPP construct from taking part in the scanning.
11123
655bded0
MA
111242010-05-21 Michael Albinus <michael.albinus@gmx.de>
11125
11126 * net/tramp.el (tramp-do-copy-or-rename-file)
171eda53
SM
11127 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
11128 Tune `with-progress-reporter' messages.
655bded0
MA
11129 (tramp-handle-vc-registered):
11130 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
11131 (tramp-fish-handle-insert-file-contents)
11132 (tramp-fish-maybe-open-connection):
11133 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
11134 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
11135 (tramp-imap-handle-insert-file-contents)
11136 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
11137
3e17a1a7
JB
111382010-05-21 Juanma Barranquero <lekktu@gmail.com>
11139
bf1e8d4a
JB
11140 * add-log.el (change-log-font-lock-keywords):
11141 Highlight all authors in multi-author entries.
11142
3e17a1a7
JB
11143 * smerge-mode.el (smerge-refine-ignore-whitespace)
11144 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
11145 Fix typos in docstrings.
11146 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
11147
969e684a
GM
111482010-05-21 Glenn Morris <rgm@gnu.org>
11149
e75c1e7d
GM
11150 * progmodes/fortran.el (fortran-mode):
11151 * progmodes/f90.el (f90-mode): Derive from prog-mode.
11152
969e684a
GM
11153 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
11154 having a relative path in src/Makefile.in.
11155
a50878fa
KR
111562010-05-20 Kevin Ryde <user42@zip.com.au>
11157
11158 * help-mode.el (help-make-xrefs): For Info node links turn
11159 newlines into spaces. Link node names with newlines are matched
11160 by help-xref-info-regexp and buttonized, this change ensures they
11161 can be followed successfully with RET. (Bug#6206)
11162
f66a2f90
JL
111632010-05-20 Juri Linkov <juri@jurta.org>
11164
11165 * locate.el (locate): Use pop-to-buffer instead of
11166 switch-to-buffer-other-window. (Bug#6204)
11167
201d895a
JL
111682010-05-20 Juri Linkov <juri@jurta.org>
11169
11170 * replace.el (replace-highlight): Fix lazy-highlighting
11171 for `M-s w str M-% str RET'.
11172
1ddb2ea0
MY
111732009-12-15 Masatake YAMATO <yamato@redhat.com>
11174
11175 * isearch.el (isearch-yank-word-or-char): Pull next subword
11176 when `subword-mode' is activated. (Bug#6220)
11177
a6020335
MH
111782010-05-20 Mark A. Hershberger <mah@everybody.org>
11179
11180 * isearch.el (isearch-update-post-hook): New hook.
11181 (isearch-update): Use the new hook. (Bug#6225)
11182
50de6a38
JL
111832010-05-20 Juri Linkov <juri@jurta.org>
11184
11185 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
11186 [f1], [help], and (char-to-string help-char) instead of "\C-h".
11187 (Bug#6222)
11188
5d944a8f
JL
111892010-05-20 Juri Linkov <juri@jurta.org>
11190
11191 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
11192 (Bug#6223)
11193
f5d6548a
JL
111942010-05-20 Juri Linkov <juri@jurta.org>
11195
11196 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
11197 FILE-NAME to read from the minibuffer when called interactively
11198 with prefix argument instead of using buffer-file-name.
11199 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
11200
11201 * dired.el: Update autoloads.
11202
f8e63691
CY
112032010-05-20 Chong Yidong <cyd@stupidchicken.com>
11204
11205 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
11206 nxml-finish-element, for consistency with SGML mode.
11207
11208 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
11209 octave-close-block.
11210
07d7c3bd
JB
112112010-05-20 Juanma Barranquero <lekktu@gmail.com>
11212
11213 * composite.el: Require cl when compiling.
11214 (reference-point-alist, compose-gstring-for-graphic)
11215 (compose-gstring-for-terminal): Fix typos in docstrings.
11216
7bce8510
JL
112172010-05-19 Juri Linkov <juri@jurta.org>
11218
11219 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
11220 set-window-parameter.
11221
a7723e05
MA
112222010-05-19 Michael Albinus <michael.albinus@gmx.de>
11223
11224 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
11225 where appropriate.
11226 (tramp-maybe-open-connection): Use it.
11227
3f2e7735
EZ
112282010-05-19 Eli Zaretskii <eliz@gnu.org>
11229
11230 * simple.el (move-end-of-line): Make sure we are at line beginning
11231 before backing up to end of previous line.
11232
8d9181c7
MA
112332010-05-19 Michael Albinus <michael.albinus@gmx.de>
11234
8c4ec20f
MA
11235 * password-cache.el (password-cache-remove): Fix docstring.
11236
8d9181c7
MA
11237 * net/secrets.el: Autoload the widget functions.
11238 (secrets-search-items, secrets-create-item)
11239 (secrets-get-attributes, secrets-expand-item): Attributes will be
11240 stored on the password database without leading ":", as all other
11241 clients do as well.
11242 (secrets-mode): Fix docstring.
11243 (secrets-show-secrets): Provide it as autoloaded command only when
11244 D-Bus support is available. Check existence of Secret Service API.
11245
2a96c2a7
SM
112462010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11247
11248 * indent.el (indent-region): Deactivate region (bug#6200).
11249
d24e10b1
GM
112502010-05-19 Glenn Morris <rgm@gnu.org>
11251
11252 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
11253
2833d915
KH
112542010-05-19 Kenichi Handa <handa@m17n.org>
11255
11256 * composite.el: Register compose-gstring-for-graphic in
d24e10b1 11257 composition-function-table only for combining characters (Mn, Mc, Me).
2833d915 11258
134c2f29
JB
112592010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
11260
11261 * calc/calc-trail.el (calc-trail-isearch-forward)
11262 (calc-trail-isearch-backward): Ensure that the new window
11263 point is set correctly.
11264
278847cd
SM
112652010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11266
11267 * subr.el (read-quoted-char): Resolve modifiers after key
11268 remapping (bug#6212).
11269
3a8e7cbd
MA
112702010-05-18 Michael Albinus <michael.albinus@gmx.de>
11271
11272 Add visualization code for secrets.
11273 * net/secrets.el (secrets-mode): New major mode.
11274 (secrets-show-secrets, secrets-show-collections)
11275 (secrets-expand-collection, secrets-expand-item)
11276 (secrets-tree-widget-after-toggle-function)
11277 (secrets-tree-widget-show-password): New defuns.
11278
472e7ec1
SM
112792010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11280
224b70cb
SM
11281 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
11282 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
11283 handled in smie-next-sexp.
11284 (smie-indent-calculate): Provide a starting indentation (so the
11285 recursion is well-founded ;-).
11286
472e7ec1
SM
11287 Fix handling of non-associative equal levels.
11288 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
11289 when it's not needed.
11290 (smie-op-left, smie-op-right): New functions.
11291 (smie-next-sexp): New function, extracted from smie-backward-sexp.
11292 Better handle equal levels to distinguish the associative case from
11293 the "multi-keyword construct" case.
11294 (smie-backward-sexp, smie-forward-sexp): Use it.
11295
35e53abd
JB
112962010-05-18 Juanma Barranquero <lekktu@gmail.com>
11297
5d8fe0ba
JB
11298 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
11299
35e53abd
JB
11300 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
11301 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
11302
5ad4bef5
SM
113032010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11304
11305 Provide a simple generic indentation engine and use it for Prolog.
11306 * emacs-lisp/smie.el: New file.
11307 * progmodes/prolog.el (prolog-smie-op-levels)
11308 (prolog-smie-indent-rules): New var.
11309 (prolog-mode-variables): Use them to configure SMIE.
11310 (prolog-indent-line, prolog-indent-level): Remove.
11311
00681a3c
JB
113122010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
11313
560bb7ae 11314 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
00681a3c
JB
11315 order before computing the averages.
11316
eba62f7a
JB
113172010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
11318
597517ef 11319 * calc/calc-vec.el (calc-histogram):
5ad4bef5 11320 (calcFunc-histogram): Allow vectors as inputs.
597517ef
JB
11321 (math-vector-avg): New function.
11322
560bb7ae 11323 * calc/calc-ext.el (math-group-float): Have the number of digits
eba62f7a
JB
11324 being grouped depend on the radix (Bug#6189).
11325
8c5ff6dd
KR
113262010-05-15 Ken Raeburn <raeburn@raeburn.org>
11327
11328 * version.el (emacs-copyright, emacs-version): Don't define here,
11329 now that emacs.c defines it.
11330
98d8b17e
EZ
113312010-05-15 Eli Zaretskii <eliz@gnu.org>
11332
71078429
EZ
11333 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
11334 "Describe Language Environment" menu item.
11335
ce6233c1
EZ
11336 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
11337
d20e1419
EZ
11338 Bidi-sensitive movement with arrow keys.
11339 * subr.el (right-arrow-command, left-arrow-command): New functions.
11340
11341 * bindings.el (global-map): Bind them to right and left arrow keys.
11342
98d8b17e 11343 Don't override standard definition of convert-standard-filename.
6a7662bb
BR
11344 * files.el (convert-standard-filename):
11345 Call w32-convert-standard-filename and dos-convert-standard-filename on
98d8b17e
EZ
11346 the corresponding systems.
11347
11348 * w32-fns.el (w32-convert-standard-filename): Rename from
11349 convert-standard-filename. Doc fix.
11350
11351 * dos-fns.el (dos-convert-standard-filename): Doc fix.
11352 (convert-standard-filename): Don't defalias.
11353 (register-name-alist, make-register, register-value)
11354 (set-register-value, intdos): Obsolete aliases for the
11355 corresponding dos-* functions and variables.
11356 (dos-intdos): Add a doc string.
11357
ae6bc504
JB
113582010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
11359
11360 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
11361 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
11362 (math-compose-tex-func):
11363 * calc/calccomp.el (math-compose-expr):
11364 * calc/calc-ext.el (math-format-flat-expr-fancy):
11365 * calc/calc-store.el (calc-read-var-name):
11366 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
11367
11368 * calc/calc.el (var-π, var-φ, var-γ): New variables.
560bb7ae 11369 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
ae6bc504 11370 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
560bb7ae 11371 (math-standard-units): Add units.
ae6bc504 11372
c26ea4b2
SM
113732010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
11374
7aefa445 11375 * progmodes/asm-mode.el (asm-mode):
13973643
SM
11376 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
11377
c26ea4b2
SM
11378 * pcomplete.el (pcomplete-completions-at-point): New function,
11379 extracted from pcomplete-std-complete.
11380 (pcomplete-std-complete): Use it.
11381
02be533b
GM
113822010-05-15 Glenn Morris <rgm@gnu.org>
11383
11384 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
11385 Remove references to CVS, RCS and Old directories.
11386
78ed0efc
JB
113872010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
11388
ae6bc504 11389 * calc/calc-bin.el (math-format-twos-complement): Group digits when
78ed0efc
JB
11390 appropriate.
11391
10dcc561
SM
113922010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
11393
5ccaa359
SM
11394 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
11395 (sh-mode-syntax-table): Give it a default value instead.
11396 (sh-header-marker): Make buffer-local.
11397 (sh-mode): Move make-local-variable to the corresponding setq.
11398 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
11399 Use complete-with-action.
11400
10dcc561
SM
11401 * simple.el (prog-mode): New (abstract) major mode.
11402 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
11403 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
11404
c38762fd
JB
114052010-05-14 Juanma Barranquero <lekktu@gmail.com>
11406
11407 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
11408 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
11409 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
11410 (sql-make-alternate-buffer-name, sql-placeholders-filter)
11411 (sql-escape-newlines-filter, sql-input-sender)
11412 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
11413
2ef3c144
CY
114142010-05-13 Chong Yidong <cyd@stupidchicken.com>
11415
560bb7ae 11416 Add TeX open-block and close-block keybindings to SGML, and vice versa.
2ef3c144
CY
11417
11418 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
11419 latex-open-block and C-c / to latex-close-block.
11420
11421 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
11422 and C-c C-e to sgml-close-tag.
11423
3b30ccda
MA
114242010-05-13 Michael Albinus <michael.albinus@gmx.de>
11425
11426 * net/tramp.el (with-progress-reporter): Create reporter object
3a8e7cbd 11427 only when the message would be displayed. Handle nested calls.
3b30ccda
MA
11428 (tramp-handle-load, tramp-handle-file-local-copy)
11429 (tramp-handle-insert-file-contents, tramp-handle-write-region)
10dcc561
SM
11430 (tramp-maybe-send-script, tramp-find-shell):
11431 Use `with-progress-reporter'.
3b30ccda
MA
11432 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
11433 Fix message text.
11434
11435 * net/tramp-smb.el (tramp-smb-handle-copy-file)
11436 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
11437 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
11438 Use `with-progress-reporter'.
11439
57ff5d7b
AM
114402010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
11441
a628ad9d
JB
11442 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
11443 process everytime when spellchecking from the minibuffer (bug#6143).
57ff5d7b 11444
5a70d10f
SM
114452010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
11446
791ffe1c
SM
11447 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
11448
5a70d10f
SM
11449 * dos-fns.el: Add "dos-" prefix for namespace control.
11450 (convert-standard-filename): Define as alias for
11451 dos-convert-standard-filename but only if applicable.
11452
38d93f03
AM
114532010-05-12 Alan Mackenzie <acm@muc.de>
11454
11455 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
11456 Push the mark at the start of these functions when appropriate.
11457
902a6d8d
SM
114582010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
11459
11460 * minibuffer.el (completion-cycle-threshold): New custom var.
11461 (completion--do-completion): Use it.
11462 (minibuffer-complete): Use cycling if appropriate.
11463
9ee120ba
JB
114642010-05-11 Juanma Barranquero <lekktu@gmail.com>
11465
11466 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
11467 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
11468
841c4085
JL
114692010-05-11 Juri Linkov <juri@jurta.org>
11470
11471 * scroll-all.el (scroll-all-check-to-scroll):
11472 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
11473
8a67c70e
SM
114742010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
11475
f2b9ed18
SM
11476 * iimage.el (iimage-mode-map): Move initialization into declaration.
11477 (iimage-mode-buffer): Use with-silent-modifications.
11478 Simplify calling convention. Adjust callers.
11479 (iimage-mode): Don't run hook redundantly.
11480
8a67c70e
SM
11481 * minibuffer.el (completion-pcm--pattern->regex):
11482 Fix last change (bug#6160).
11483
4bbedd98
JL
114842010-05-10 Juri Linkov <juri@jurta.org>
11485
11486 Remove nodes visited during Isearch from the Info history.
11487 * info.el (Info-isearch-initial-history)
11488 (Info-isearch-initial-history-list): New variables.
11489 (Info-isearch-start): Record initial values of
11490 Info-isearch-initial-history and Info-isearch-initial-history-list.
11491 Add Info-isearch-end to isearch-mode-end-hook.
11492 (Info-isearch-end): New function.
11493
94ecf5da
MA
114942010-05-10 Michael Albinus <michael.albinus@gmx.de>
11495
11496 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
8a67c70e
SM
11497 format string, in order to work around a bug in pdksh.
11498 Reported by Gilles Pion <gpion@lfdj.com>.
94ecf5da
MA
11499 (tramp-handle-verify-visited-file-modtime): Do not send a command
11500 when the connection is not established.
11501 (tramp-handle-set-file-times): Simplify the check for utc.
11502
c5eb971b
JB
115032010-05-10 Juanma Barranquero <lekktu@gmail.com>
11504
11505 Fix use of `filter-buffer-substring' (rework previous change).
11506 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
11507 (cua-repeat-replace-region):
11508 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
11509 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
11510 (cua-cut-region-to-global-mark): Use it.
11511
7492acc9
MM
115122010-05-09 Michael R. Mauger <mmaug@yahoo.com>
11513
77e2fc7a
JB
11514 * progmodes/sql.el: Version 2.1.
11515 (sql-product-alist): Redesign structure of product info.
11516 (sql-product, sql-user, sql-server, sql-database): Safe variables.
7492acc9
MM
11517 (sql-port, sql-port-history): New variables.
11518 (sql-interactive-product): New variable.
11519 (sql-send-terminator): New variable.
77e2fc7a 11520 (sql-imenu-generic-expression): Add "Types" imenu entry.
7492acc9
MM
11521 (sql-oracle-login-params, sql-sqlite-login-params)
11522 (sql-mysql-login-params, sql-solid-login-params)
11523 (sql-sybase-login-params, sql-informix-login-params)
11524 (sql-ingres-login-params, sql-ms-login-params)
11525 (sql-postgres-login-params, sql-interbase-login-params)
11526 (sql-db2-login-params, sql-linter-login-params)
11527 (sql-oracle-scan-on): New variables.
77e2fc7a
JB
11528 (sql-mode-map): Add C-c C-i to start interactive mode.
11529 (sql-mode-menu): Update existing menu entries.
11530 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
7492acc9
MM
11531 (sql-mode-oracle-font-lock-keywords)
11532 (sql-mode-postgres-font-lock-keywords)
11533 (sql-mode-ms-font-lock-keywords)
11534 (sql-mode-sybase-font-lock-keywords)
11535 (sql-mode-informix-font-lock-keywords)
11536 (sql-mode-interbase-font-lock-keywords)
11537 (sql-mode-ingres-font-lock-keywords)
11538 (sql-mode-solid-font-lock-keywords)
11539 (sql-mode-mysql-font-lock-keywords)
11540 (sql-mode-sqlite-font-lock-keywords)
11541 (sql-mode-db2-font-lock-keywords)
77e2fc7a 11542 (sql-mode-linter-font-lock-keywords): Update initialization to
7492acc9
MM
11543 reduce run-time complexity.
11544 (sql-add-product, sql-del-product): New functions.
11545 (sql-set-product-feature, sql-get-product-feature): New functions.
11546 (sql-product-font-lock): Update product API.
11547 (sql-add-product-keywords): New function.
11548 (sql-highlight-product): Update product API.
11549 (sql-help-list-products): New function.
11550 (sql-help): Dynamically lists free and non-free products.
77e2fc7a 11551 (sql-get-login): Correct bug in handling history and added
7492acc9
MM
11552 prompt for port.
11553 (sql-copy-column): Copy without properties.
11554 (sqli-input-sender): Apply filters to SQLi input.
77e2fc7a
JB
11555 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
11556 Implement as a filter.
7492acc9
MM
11557 (sql-escape-newlines-filter): Implement as a filter.
11558 (sql-remove-tabs-filter): New function.
11559 (sql-send-magic-terminator): New function.
11560 (sql-send-string): Implement magic terminator.
11561 (sql-send-region): Use `sql-send-string'.
11562 (sql-interactive-mode): Use product API.
11563 (sql-product-interactive): Use product API.
11564 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
11565 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
11566 (sql-db2, sql-linter): Use `sql-product-interactive'.
11567 (sql-connect): New function.
11568 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
11569 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
11570 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
77e2fc7a
JB
11571 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
11572 Use `sql-connect'.
7492acc9 11573
79ccd68f
SM
115742010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
11575
11576 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
11577 New custom variable.
11578 (completion-pcm--string->pattern): Use it.
11579 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
11580 Make it handle any symbol as `any'.
11581 (completion-pcm--merge-completions): Extract common suffix for the new
11582 `prefix' symbol as well.
11583 (completion-substring--all-completions): Use the new `prefix' symbol.
11584
0d5852cf
MA
115852010-05-09 Michael Albinus <michael.albinus@gmx.de>
11586
11587 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
11588 not bound.
11589 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
11590 (tramp-compat-funcall): New defmacro.
11591 (tramp-compat-line-beginning-position)
11592 (tramp-compat-line-end-position)
11593 (tramp-compat-temporary-file-directory)
11594 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
11595 (tramp-compat-copy-file, tramp-compat-copy-directory)
11596 (tramp-compat-delete-file, tramp-compat-delete-directory)
11597 (tramp-compat-number-sequence, tramp-compat-process-running-p)
11598 * net/tramp.el (top, with-progress-reporter)
11599 (tramp-rfn-eshadow-setup-minibuffer)
11600 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
11601 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
11602 (tramp-completion-mode-p, tramp-check-for-regexp)
11603 (tramp-open-connection-setup-interactive-shell)
11604 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
11605 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
11606 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
11607 * net/tramp-cmds.el (tramp-cleanup-all-connections)
11608 (tramp-reporter-dump-variable, tramp-load-report-modules)
11609 (tramp-append-tramp-buffers)
11610 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
11611
11612 * net/tramp-imap.el (top): Autoload `epg-make-context'.
11613
f913fe7d
SM
116142010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
11615
11616 * progmodes/compile.el (compilation-buffer-modtime): Rename from
11617 buffer-modtime. Adjust users.
11618
0235128c 116192010-05-08 Chong Yidong <cyd@stupidchicken.com>
f034e176 11620
77e2fc7a 11621 * international/mule.el (auto-coding-alist): Only purecopy
3b180a24 11622 car of each item, not the whole list (Bug#6083).
f034e176 11623
0235128c 116242010-05-08 Chong Yidong <cyd@stupidchicken.com>
f5d6ff44
CY
11625
11626 * progmodes/js.el (js-mode): Make paragraph variables local before
11627 calling c-setup-paragraph-variables (Bug#6071).
11628
0235128c 116292010-05-08 Eli Zaretskii <eliz@gnu.org>
aa4d4e4a
EZ
11630
11631 * composite.el (compose-region, reference-point-alist): Fix typos
11632 in the doc strings.
11633
77e2fc7a 116342010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
9822590b
AK
11635
11636 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
11637 gnuplot's "set" command.
11638
0235128c 116392010-05-08 Juanma Barranquero <lekktu@gmail.com>
29c48340
JB
11640
11641 * abbrev.el (last-abbrev-text): Doc fix.
11642 (abbrev-prefix-mark): Don't escape parenthesis.
11643
0235128c 116442010-05-08 Andreas Schwab <schwab@linux-m68k.org>
8ed6fc47
AS
11645
11646 * composite.el (find-composition): Doc fix.
11647
0235128c 116482010-05-08 Juanma Barranquero <lekktu@gmail.com>
063c6324
JB
11649
11650 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
11651 (sql-oracle-program, sql-sqlite-options)
11652 (sql-query-placeholders-and-send): Doc fixes.
11653 (sql-set-product, sql-interactive-mode): Reflow docstrings.
11654 (sql-imenu-generic-expression, sql-buffer)
11655 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
11656 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
11657 (sql-mode-sybase-font-lock-keywords)
11658 (sql-mode-informix-font-lock-keywords)
11659 (sql-mode-interbase-font-lock-keywords)
11660 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
11661 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
11662 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
11663 (sql-product-feature, sql-highlight-product)
11664 (comint-line-beginning-position, sql-rename-buffer)
0235128c
SM
11665 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
11666 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
063c6324
JB
11667 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
11668 Fix typos in docstrings.
11669
0235128c 116702010-05-08 Juri Linkov <juri@jurta.org>
e89dee79
JL
11671
11672 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
11673 property instead of `invisible' and `after-string' (bug#5998).
11674
0235128c 116752010-05-08 Juri Linkov <juri@jurta.org>
316d12fb
JL
11676
11677 * image-mode.el (image-mode-as-text): Fix typo in docstring.
11678
0235128c 116792010-05-08 Juanma Barranquero <lekktu@gmail.com>
770255e9
JB
11680
11681 * filecache.el (file-cache-add-directory-list)
11682 (file-cache-add-directory-recursively): Fix typos in docstrings.
11683
0235128c 116842010-05-08 Kenichi Handa <handa@m17n.org>
ece33a6e
KH
11685
11686 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
b106e264 11687 (gujarati-composable-pattern): Fix typo.
ece33a6e 11688
0235128c 116892010-05-08 Kenichi Handa <handa@m17n.org>
771533aa
KH
11690
11691 * language/indian.el (oriya-composable-pattern)
0235128c
SM
11692 (tamil-composable-pattern, malayalam-composable-pattern):
11693 Add two-part vowels to "v" (vowel sign).
771533aa 11694
0235128c 116952010-05-08 Chong Yidong <cyd@stupidchicken.com>
790c2e44 11696
99833607
CY
11697 * files.el (copy-directory): Handle symlinks (Bug#5982).
11698
0235128c 116992010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
808ecc4e
CY
11700
11701 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
11702 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
11703 (Bug#5846).
11704
0235128c 117052010-05-08 Glenn Morris <rgm@gnu.org>
d2c7b917 11706
0ca12598
GM
11707 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
11708
d2c7b917
GM
11709 * minibuffer.el (completion-at-point): Doc fix.
11710
ba5bf5f0
SM
117112010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
11712
11713 * electric.el (Electric-command-loop): Minor tweak.
11714
11715 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
11716 better with dedicated windows.
11717
0235128c
SM
117182010-05-07 Chong Yidong <cyd@stupidchicken.com>
11719
11720 * Version 23.2 released.
11721
560bb7ae 117222010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
4e2af782 11723 Stefan Monnier <monnier@iro.umontreal.ca>
5b3a105e
SM
11724
11725 Highlight vendor specific properties.
11726 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
11727 (css-proprietary-property): New face.
11728 (css-font-lock-keywords): Use them.
11729
c0162ade
EZ
117302010-05-07 Eli Zaretskii <eliz@gnu.org>
11731
11732 * cus-start.el (all): Add native condition for tool-bar-* symbols.
11733
f3ee9200
SM
117342010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11735
05623156
SM
11736 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
11737 * files.el (auto-mode-alist): Remove redundant entries.
11738
f3ee9200
SM
11739 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
11740 * simple.el (auto-save-mode): Move from files.el.
11741 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
11742
560bb7ae 117432010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
5146e84c 11744
76e3243a 11745 * epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
5146e84c 11746
765d4319
KY
117472010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
11748
11749 * mail/binhex.el (binhex-decode-region-internal)
11750 * mail/uudecode.el (uudecode-decode-region-internal)
11751 * net/dns.el (dns-read-string-name, dns-write, dns-read)
11752 (dns-read-type, dns-query)
11753 * pgg-parse.el (pgg-parse-armor)
11754 * pgg.el (pgg-verify-region)
11755 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
11756 XEmacs.
11757
86d21cc0 11758 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
765d4319 11759
f83483ff
JB
117602010-05-07 Juanma Barranquero <lekktu@gmail.com>
11761
40ab7974
JB
11762 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
11763
f83483ff
JB
11764 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
11765 * emulation/cua-base.el (cua-repeat-replace-region):
11766 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
11767 (cua-cut-region-to-global-mark):
11768 Remove text properties with `set-text-properties'.
11769
9566840f
MA
117702010-05-06 Michael Albinus <michael.albinus@gmx.de>
11771
f3ee9200
SM
11772 * net/tramp.el (top, with-progress-reporter):
11773 Use `symbol-function' inside `funcall'.
9566840f
MA
11774
11775 * net/tramp-compat.el (tramp-compat-file-attributes)
f3ee9200
SM
11776 (tramp-compat-delete-file, tramp-compat-delete-directory):
11777 Handle only `wrong-number-of-arguments' error.
9566840f
MA
11778
11779 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
11780 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
11781 inside `funcall'.
11782
0c495c21
SM
117832010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
11784
1493963b
SM
11785 * minibuffer.el (completion--sreverse, completion--common-suffix):
11786 New functions.
11787 (completion-pcm--merge-completions): Extract common suffix when safe.
11788
0c495c21
SM
11789 * emacs-lisp/easy-mmode.el (define-minor-mode):
11790 Make :variable more flexible.
11791 * files.el (auto-save-mode): Use it to define using define-minor-mode.
11792
221a0647
JL
117932010-05-05 Juri Linkov <juri@jurta.org>
11794
11795 Add `slow' and `history' tags to the desktop data.
11796
11797 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
11798 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
11799 (Info-finder-find-node): Require `finder.el' to be able
11800 to restore node from the desktop.
11801 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
11802 data `Info-history' and `slow' tag in the assoc list.
11803 (Info-restore-desktop-buffer): Don't restore nodes with the
11804 `slow' tag. Restore `Info-history'.
11805
66bdc868
MA
118062010-05-05 Michael Albinus <michael.albinus@gmx.de>
11807
11808 Add FORCE argument to `delete-file'.
11809
11810 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
11811 forcing to delete the temporary file.
11812 (ange-ftp-delete-file): Add FORCE arg.
11813 (ange-ftp-rename-remote-to-remote)
11814 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
0c495c21
SM
11815 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
11816 Force file deletion.
66bdc868
MA
11817
11818 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
11819
11820 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
11821 (tramp-handle-make-symbolic-link, tramp-handle-load)
11822 (tramp-do-copy-or-rename-file-via-buffer)
11823 (tramp-do-copy-or-rename-file-directly)
11824 (tramp-do-copy-or-rename-file-out-of-band)
11825 (tramp-handle-process-file, tramp-handle-call-process-region)
11826 (tramp-handle-shell-command, tramp-handle-file-local-copy)
11827 (tramp-handle-insert-file-contents, tramp-handle-write-region)
11828 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
11829
11830 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
11831 (tramp-fish-handle-make-symbolic-link)
11832 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
11833
0c495c21
SM
11834 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
11835 Use `tramp-compat-delete-file'.
66bdc868
MA
11836
11837 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
11838 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
11839
11840 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
11841 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
11842
11843 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
11844 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
6a7662bb
BR
11845 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
11846 Use `tramp-compat-delete-file'.
66bdc868 11847
f44379e7
SM
118482010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
11849
365f8d85
SM
11850 Minor cleanups.
11851 * subr.el (add-minor-mode): Use push.
11852 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
11853 * emulation/edt.el (edt-select-mode): Simplify.
11854
80ac5d4d
SM
11855 Use define-minor-mode in more cases.
11856 * term/tvi970.el (tvi970-set-keypad-mode):
11857 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
11858 (normal-erase-is-backspace-mode):
11859 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
11860 (set-scroll-bar-mode-1): (Re)move to its sole caller.
11861 (get-scroll-bar-mode): New function.
11862 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
11863
11864 Use define-minor-mode for less obvious cases.
f44379e7
SM
11865 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
11866 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
11867 * international/iso-ascii.el (iso-ascii-mode):
11868 * frame.el (auto-raise-mode, auto-lower-mode):
11869 * composite.el (global-auto-composition-mode): Use define-minor-mode.
11870
c04b03f8
MA
118712010-05-04 Michael Albinus <michael.albinus@gmx.de>
11872
11873 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
11874 in order to see error messages for failed logins.
11875
53967e09
CY
118762010-05-03 Chong Yidong <cyd@stupidchicken.com>
11877
11878 * diff.el (diff-sentinel):
11879
11880 * epg.el (epg--make-temp-file, epg-decrypt-string)
11881 (epg-verify-string, epg-sign-string, epg-encrypt-string):
11882
11883 * jka-compr.el (jka-compr-partial-uncompress)
11884 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
11885
11886 * server.el (server-sentinel): Use delete-file's new FORCE arg
11887 (Bug#6070).
11888
56eb0904
SM
118892010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11890
11891 Use define-minor-mode where applicable.
11892 * view.el (view-mode):
11893 * type-break.el (type-break-query-mode)
11894 (type-break-mode-line-message-mode):
11895 * textmodes/reftex.el (reftex-mode):
11896 * term/vt100.el (vt100-wide-mode):
11897 * tar-mode.el (tar-subfile-mode):
11898 * savehist.el (savehist-mode):
11899 * ibuf-ext.el (ibuffer-auto-mode):
11900 * composite.el (auto-composition-mode):
11901 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
11902 Use define-minor-mode.
11903 (vhdl-mode): Use static mode-line format.
11904 (vhdl-mode-line-update): Delete.
11905 (vhdl-create-mode-menu, vhdl-activate-customizations)
11906 (vhdl-hs-minor-mode): Don't bother calling it.
11907
672eb710
SM
119082010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
11909
8f92b8ad
SM
11910 * simple.el (with-wrapper-hook): Move.
11911 (buffer-substring-filters): Mark obsolete.
11912 (filter-buffer-substring-functions): New variable.
1fada563 11913 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
8f92b8ad 11914
c04b03f8 119152010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
4e2af782 11916 Michael Albinus <michael.albinus@gmx.de>
6a29a838
MA
11917
11918 Implement compression for inline methods.
11919
11920 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
11921 (tramp-copy-size-limit): Allow also nil.
11922 (tramp-inline-compress-commands): New defconst.
11923 (tramp-find-inline-compress, tramp-get-inline-compress)
11924 (tramp-get-inline-coding): New defuns.
cb7f3653 11925 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
c04b03f8 11926 replaced by `tramp-get-inline-coding'.
6a29a838
MA
11927 (tramp-handle-file-local-copy, tramp-handle-write-region)
11928 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
11929
8c0bf8b3
SM
119302010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
11931
07125a91
SM
11932 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
11933 Remove unused functions.
11934
f3a47002
SM
11935 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
11936 Set find-tag-default-function as a variable rather than a property.
11937
8c0bf8b3
SM
11938 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
11939 * progmodes/etags.el (tags-completion-at-point-function):
11940 Remove left over interactive spec. Add autoloading stub.
11941 (complete-tag): Use tags-completion-at-point-function.
11942
27601456
CY
119432010-04-30 Chong Yidong <cyd@stupidchicken.com>
11944
cb7f3653 11945 * minibuffer.el (tags-completion-at-point-function): Fix return value.
27601456 11946
09d0284d
CY
119472010-04-29 Chong Yidong <cyd@stupidchicken.com>
11948
27d3cd56
CY
11949 * ido.el (ido-init-completion-maps): Remove C-v binding.
11950 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
09d0284d 11951
3a07ffce
CY
119522010-04-29 Chong Yidong <cyd@stupidchicken.com>
11953
11954 * minibuffer.el (tags-completion-at-point-function): New function.
11955 (completion-at-point-functions): Use it.
11956
3a07ffce
CY
11957 * progmodes/etags.el (complete-tag): Revert last change.
11958
3d14bb73
AM
119592010-04-29 Alan Mackenzie <acm@muc.de>
11960
11961 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
11962 off-by-one error (in end of macro position).
11963
7d353d11
SM
119642010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
11965
11966 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
11967 firefox is absent. Don't autoload.
11968 (browse-url-galeon-program): Don't autoload.
11969
48111a85
CY
119702010-04-28 Chong Yidong <cyd@stupidchicken.com>
11971
11972 * bindings.el (complete-symbol): Move into minibuffer.el.
11973
11974 * minibuffer.el (complete-tag): Move from etags.el. If tags
11975 completion cannot be performed, return nil instead of signalling
11976 an error.
11977 (completion-at-point): Make it an alias for complete-symbol.
11978 (complete-symbol): Move from bindings.el, and replace with the
11979 body of completion-at-point.
11980
11981 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
11982
7ba94701
MA
119832010-04-28 Michael Albinus <michael.albinus@gmx.de>
11984
11985 * net/tramp.el (tramp-remote-selinux-p): New defun.
11986 (tramp-handle-file-selinux-context)
11987 (tramp-handle-set-file-selinux-context): Use it.
11988
95c6cc3e
SS
119892010-04-28 Sam Steingold <sds@gnu.org>
11990
11991 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
11992 `safe-local-variable' if the value is a string or a symbol with
11993 the property `bug-reference-url-format'.
11994
36045ff3
CY
119952010-04-28 Chong Yidong <cyd@stupidchicken.com>
11996
537ffaf3
SM
11997 * progmodes/bug-reference.el (bug-reference-url-format):
11998 Revert 2010-04-27 change due to security risk.
36045ff3 11999
56924d99
SM
120002010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
12001
12002 Make it possible to locally disable a globally enabled mode.
12003 * simple.el (fundamental-mode): Run fundamental-mode-hook.
12004 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
12005 rather than kill-all-local-variables so it runs fundamental-mode-hook.
12006 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
12007 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
12008 that subsequent hooks get a chance to disable it.
12009
ccaa4765
SM
120102010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
12011
17818d71
SM
12012 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
12013 Avoid re-enabling a minor mode after the user turned the minor mode
12014 off if MODE-enable-in-buffers is run twice (typically once from
12015 fundamental-mode's after-change-major-mode-hook and a second time from
12016 run-mode-hook's own after-change-major-mode-hook).
12017
ccaa4765
SM
12018 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
12019
2a6f654e
SS
120202010-04-27 Sam Steingold <sds@gnu.org>
12021
12022 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
12023 `safe-local-variable' if the value is a string or a function, as
12024 documented and implemented on 2010-04-02.
12025
cecaa674
JB
120262010-04-27 Juanma Barranquero <lekktu@gmail.com>
12027
12028 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
12029 when method is 'kill.
12030
120312010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
1e116bb3 12032
a628ad9d
JB
12033 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
12034 condition in default directory check.
01c35094 12035 (ispell-init-process, ispell-kill-ispell, kill-buffer-hook):
1e116bb3
AM
12036 Kill ispell process when killing its associated buffer.
12037
7dd7fbb9
JD
120382010-04-27 Jan Djärv <jan.h.d@swipnet.se>
12039
12040 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
12041 but we aren't using it.
12042
7ac82b84
J
120432010-04-25 Jan Djärv <jan.h.d@swipnet.se>
12044
12045 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
12046 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
12047
fea1add4
GM
120482010-04-24 Glenn Morris <rgm@gnu.org>
12049
12050 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
12051 Ignore VCS-ignore files, and deleted nextstep preferences files.
12052 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
12053 (authors-ambiguous-files): New list.
12054 (authors-valid-file-names): Add some deleted files.
12055 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
12056 (authors-disambiguate-file-name): New function. (Bug#5501)
12057 (authors-canonical-file-name): Doc fix.
12058 Don't warn about obsolete files.
12059 (authors-canonical-file-name, authors-scan-el):
12060 Use authors-disambiguate-file-name.
12061
cbcfee6e
GM
12062 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
12063 Add autoload cookies.
12064 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
12065 (generated-autoload-file): Set file-local value to "htmlfontify.el".
12066 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
12067 They have definitions / compiler macros in cl.el.
12068 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
12069 Replace manual autoloads with generated ones.
12070 (htmlfontify-unload-rgb-file): Remove autoload.
12071 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
12072
3b548e1b
SM
120732010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
12074
9ae0c310
SM
12075 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
12076 (byte-compile-setq-default): Optimize for the
12077 single-var case and don't call byte-compile-form in this case to avoid
12078 inf-loop with byte-compile-set-default.
12079
3b548e1b
SM
12080 * progmodes/compile.el (compilation-start): Abbreviate default directory.
12081
632c5478
MA
120822010-04-23 Michael Albinus <michael.albinus@gmx.de>
12083
12084 Implement SELINUX backends.
12085
3b548e1b
SM
12086 * net/tramp.el (tramp-file-name-handler-alist):
12087 Add `file-selinux-context' and `set-file-selinux-context'.
632c5478
MA
12088 (tramp-handle-file-selinux-context)
12089 (tramp-handle-set-file-selinux-context): New defuns.
3b548e1b
SM
12090 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
12091 Handle PRESERVE-SELINUX-CONTEXT.
632c5478 12092
3b548e1b
SM
12093 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
12094 Add `file-selinux-context' and `set-file-selinux-context'.
632c5478
MA
12095 (tramp-gvfs-handle-file-selinux-context)
12096 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
12097 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
12098
12099 * net/ange-ftp.el (ange-ftp-copy-file):
12100 * net/tramp-fish.el (tramp-fish-handle-copy-file):
12101 * net/tramp-imap.el (tramp-imap-handle-copy-file):
3b548e1b
SM
12102 * net/tramp-smb.el (tramp-smb-handle-copy-file):
12103 Add PRESERVE-SELINUX-CONTEXT.
632c5478 12104
a94d821f
MA
121052010-04-22 Michael Albinus <michael.albinus@gmx.de>
12106
12107 Synchronize with Tramp repository.
12108
12109 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
12110 (tramp-action-process-alive, tramp-action-out-of-band)
12111 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
12112 (tramp-exists-file-name-handler): Fix docstring.
12113 (with-progress-reporter): New defmacro.
12114 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
12115 (tramp-maybe-open-connection): Use it.
12116
a92375d9
MA
121172010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
12118
12119 Detect ssh 'ControlMaster' argument automatically in some cases.
12120
12121 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
12122 (tramp-default-method): Use it.
12123
489fe4c2
MA
121242010-04-22 Michael Albinus <michael.albinus@gmx.de>
12125
25f14cdb
MA
12126 * net/tramp.el (tramp-handle-copy-file): Add new optional
12127 parameter `preserve-selinux-context'.
12128 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
12129
a92375d9
MA
121302010-04-22 Michael Albinus <michael.albinus@gmx.de>
12131
489fe4c2
MA
12132 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
12133 Ensure, that non remote files are still checked. Oops.
12134
acd1f317
MA
121352010-04-21 Michael Albinus <michael.albinus@gmx.de>
12136
12137 Fix Bug#5840.
12138
12139 * icomplete.el (icomplete-completions): Use `non-essential'.
12140
12141 * net/tramp.el (tramp-connectable-p): New defun.
12142 (tramp-handle-expand-file-name)
12143 (tramp-completion-handle-file-name-all-completions)
12144 (tramp-completion-handle-file-name-completion): Use it.
12145
62c5b459
SM
121462010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
12147
12148 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
12149
f904c0f9
JD
121502010-04-21 Jan Djärv <jan.h.d@swipnet.se>
12151
12152 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
12153
12154 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
12155
12156 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
12157 is present.
12158
12159 * info.el (info-tool-bar-map): Add labels.
12160
12161 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
12162
12163 * cus-edit.el (custom-commands): Add labels for tool bar.
12164 (custom-buffer-create-internal, Custom-mode): Adjust for
12165 labels in custom-commands.
12166
12167 * dynamic-setting.el: Renamed from font-setting.el.
12168
c5cbeb12
LL
121692010-04-21 John Wiegley <jwiegley@gmail.com>
12170
12171 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
12172 toggles the use of virtual buffers.
537ffaf3 12173 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
c5cbeb12
LL
12174 (ido-toggle-virtual-buffers): New function.
12175
fcc93746
JB
121762010-04-21 Juanma Barranquero <lekktu@gmail.com>
12177
12178 Use `define-derived-mode'; fix window selection; doc fixes.
12179 * play/tetris.el (tetris, tetris-update-speed-function)
12180 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
12181 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
12182 (tetris-rotate-next, tetris-end-game, tetris-start-game)
12183 (tetris-pause-game): Fix typos in docstrings.
12184 (tetris-mode-map, tetris-null-map):
12185 Move initialization into declaration.
12186 (tetris-mode): Define with `define-derived-mode';
12187 set show-trailing-whitespace to nil.
12188 (tetris): Prefer window already displaying the "*Tetris*" buffer.
12189
574c05e2
KK
121902010-04-21 Karel Klíč <kklic@redhat.com>
12191
12192 * files.el (backup-buffer): Handle SELinux context, and return it
12193 if a backup was made by renaming.
12194 (backup-buffer-copy): Set SELinux context to the target file.
12195 (basic-save-buffer): Set SELinux context of the newly written file.
12196 (basic-save-buffer-1): Now it also returns any SELinux context.
12197 (basic-save-buffer-2): Set SELinux context of the newly created file,
12198 and return it.
12199 * net/tramp.el (tramp-file-name-for-operation):
12200 Add file-selinux-context.
12201
e97a42c1
SM
122022010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
12203
f2b9ed18
SM
12204 Make the log-edit comments use RFC822 format throughout.
12205
e97a42c1
SM
12206 * vc.el (vc-checkin, vc-modify-change-comment):
12207 Adjust to new vc-start/finish-logentry.
12208 (vc-find-conflicted-file): New command.
12209 (vc-transfer-file): Adjust to new vc-checkin.
12210 (vc-next-action): Improve scoping.
12211
12212 * vc-hg.el (vc-hg-log-edit-mode): Remove.
12213 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
12214
12215 * vc-git.el (vc-git-log-edit-mode): Remove.
12216 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
12217 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
12218
12219 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
12220 (vc-start-logentry): Remove argument `extra'.
12221 (vc-finish-logentry): Remove extra args.
12222
12223 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
12224 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
12225 (vc-bzr-conflicted-files): New function.
12226
12227 * log-edit.el (log-edit-extra-flags)
12228 (log-edit-before-checkin-process): Remove.
12229 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
12230 (log-edit-headers-alist): New var.
12231 (log-edit-header-contents-regexp): New const.
12232 (log-edit-match-to-eoh): New function.
12233 (log-edit-font-lock-keywords): Use them.
12234 (log-edit): Insert a "Summary:" header as default.
12235 (log-edit-mode): Mark font-lock rules as case-insensitive.
12236 (log-edit-done): Cleanup headers.
12237 (log-view-process-buffer): Remove.
12238 (log-edit-extract-headers): New function to replace it.
12239
938efb77
JB
122402010-04-20 Juanma Barranquero <lekktu@gmail.com>
12241
12242 * subr.el (default-direction-reversed): Remove obsolescence info.
12243
1cfb415b
SM
122442010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
12245
cb4f9513
SM
12246 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
12247 windows/frames.
12248
6e610c72
SM
12249 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
12250 I.e. include text after point in the completion region.
12251 Also, return nil when we're not after/in a symbol.
12252
1cfb415b
SM
12253 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
12254 default enable-multibyte-characters.
12255
c80fa13c
SM
122562010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12257
87926e02
SM
12258 * international/mule.el: Help the user choose a valid coding-system.
12259 (read-buffer-file-coding-system): New function.
12260 (set-buffer-file-coding-system): Use it. Prompt the user if the
12261 coding-system cannot encode all the chars.
12262
c80fa13c
SM
12263 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
12264 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
12265 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
12266 Don't use *vc-bzr-shelve*.
12267
6e104790 122682010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
bce31830
DN
12269
12270 Fix the version number for added files.
12271 * vc-hg.el (vc-hg-working-revision): Check if the file is
12272 registered after hg parent fails (Bug#5961).
12273
6e104790 122742010-04-19 Glenn Morris <rgm@gnu.org>
0433ffa6
GM
12275
12276 * htmlfontify.el (htmlfontify-buffer)
12277 (htmlfontify-copy-and-link-dir): Autoload entry points.
12278
6e104790 122792010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
8507c65c
CY
12280
12281 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
12282 name relative to the project root (Bug#5960).
12283
6e104790 122842010-04-19 Glenn Morris <rgm@gnu.org>
e9ef9777
GM
12285
12286 * vc-git.el (vc-git-print-log): Doc fix.
12287
6e104790 122882010-04-19 Óscar Fuentes <ofv@wanadoo.es>
3808c51f
CY
12289
12290 * ido.el (ido-file-internal): Fix 2009-12-02 change.
12291
53cfe624 122922010-04-19 Christoph Scholtes <cschol2112@googlemail.com>
7860d2e3
CY
12293
12294 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
12295 default settings (Bug#5928).
12296
6e104790 122972010-04-19 Glenn Morris <rgm@gnu.org>
119850e9
GM
12298
12299 * progmodes/fortran.el (fortran-match-and-skip-declaration):
12300 New function.
0a23b2c3 12301 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
119850e9 12302
6e104790 123032010-04-19 Kenichi Handa <handa@m17n.org>
86a366f4
KH
12304
12305 * language/indian.el (malayalam-composable-pattern): Fix previous
12306 change (add U+0D4D "SIGN VIRAMA").
12307 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
12308 (tamil-composable-pattern): Fix typo in the regexp.
12309 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
12310 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
12311 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
12312
6e104790 123132010-04-19 Chong Yidong <cyd@stupidchicken.com>
8afe2ec6
CY
12314
12315 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
12316 paragraph-separate (Bug#5821).
12317
6e104790 123182010-04-19 Juri Linkov <juri@jurta.org>
3c5d6dfb
JL
12319
12320 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
12321
12322 * info.el (Info-find-node-2): Comment out code that skips
12323 breadcrumbs line.
12324 (Info-mouse-follow-link): New command.
12325 (Info-link-keymap): New keymap.
12326 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
12327 Return a string with links instead of inserting breadcrumbs
12328 to the Info buffer.
12329 (Info-fontify-node): Comment out code that inserts breadcrumbs.
12330 Instead of putting the `invisible' text property over the Info
12331 header, make an overlay over the Info header with the `invisible'
12332 property and `after-string' set to the string returned by
12333 `Info-breadcrumbs'.
12334
6e104790 123352010-04-19 Chong Yidong <cyd@stupidchicken.com>
6baa27a2
CY
12336
12337 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
12338 Reported by monkey@sandpframing.com.
12339
98923800
SM
123402010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12341
b5feea0f
SM
12342 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
12343 (tmm-get-keymap): Add key-binding shortcuts now that they're not
12344 available in the "keyseq cache" any more.
12345
98923800
SM
12346 * custom.el (defcustom): Add edebug spec.
12347
fd5c9dfa
JL
123482010-04-18 Juri Linkov <juri@jurta.org>
12349
12350 Test for special mode-class in view-buffer instead of view-file (bug#5513).
12351
12352 * view.el (view-file, view-buffer): Move test for special mode-class
12353 from view-file to view-buffer.
12354
12355 * tar-mode.el (tar-extract): Turn if's into one cond
12356 like in arc-mode.el.
12357
b3671a51
JL
123582010-04-18 Juri Linkov <juri@jurta.org>
12359
12360 Add 7z archive format support (bug#5475).
12361
12362 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
12363 (archive-7z-extract): New defcustom.
12364 (archive-find-type): Add magic string for 7z.
12365 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
12366 If `stderr-file' is non-nil, use `(t stderr-file)' for the
12367 `buffer' arg of `call-process'.
12368 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
12369 call the function `archive-7z-extract' with the variable
12370 `archive-7z-extract' let-bound to `archive-zip-extract'.
12371 (archive-7z-summarize, archive-7z-extract): New functions.
12372
12373 * international/mule.el (auto-coding-alist):
12374 * files.el (auto-mode-alist): Add 7z file extension.
12375
8a37fb25
SM
123762010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
12377
e9515805
SM
12378 * loadup.el: Setup hash-cons for pure data.
12379
f8ea0098
SM
12380 Fix duplicate entries in cedet's loaddefs.el files.
12381 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
12382 Should make most file-local generated-autoload-file unnecessary.
12383 (print-readably): Silence warnings.
12384 (autoload-find-destination): Take load-name as an arg to make sure
12385 it's the same as the one that will be in the file.
12386 (autoload-generate-file-autoloads): Adjust to above changes.
12387 Try to make the dataflow a bit simpler.
12388
8a37fb25
SM
12389 * cvs-status.el (cvs-refontify): Remove unused.
12390
f8b91752
JB
123912010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
12392
76e3243a 12393 * calc/calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
f8b91752 12394
76e3243a 12395 * calc/calc-bin.el (calc-radix): Have the "O" option turn on
f8b91752
JB
12396 twos-complement mode.
12397
d8b01fef
JB
123982010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
12399
76e3243a
JB
12400 * calc/calc-ext.el (calc-init-extensions): Add keybinding for
12401 'calc-option'. Add `calc-option-prefix-help' to calc-help autoloads.
d8b01fef
JB
12402 (calc-inverse): Add "Option" to message, as appropriate.
12403 (calc-hyperbolic): Add "Option" to message, as appropriate.
12404 (calc-option, calc-is-option): New functions.
12405
76e3243a 12406 * calc/calc-help.el (calc-full-help): Add `calc-option-help'.
d8b01fef
JB
12407 (calc-option-prefix-help): New function.
12408
76e3243a 12409 * calc/calc-misc.el (calc-help): Add "Option" entry.
d8b01fef 12410
76e3243a 12411 * calc/calc.el (calc-local-var-list): Add `calc-option-flag'.
d8b01fef
JB
12412 (calc-option-flag): New variable.
12413 (calc-do): Set `calc-option-flag to nil.
12414 (calc-set-mode-line): Add "Opt " as appropriate.
12415
74f806a1
JL
124162010-04-16 Juri Linkov <juri@jurta.org>
12417
12418 Move scrolling commands from simple.el to window.el
12419 because their primitives are implemented in window.c.
12420
12421 * simple.el (scroll-error-top-bottom)
12422 (scroll-up-command, scroll-down-command, scroll-up-line)
12423 (scroll-down-line, scroll-other-window-down)
12424 (beginning-of-buffer-other-window, end-of-buffer-other-window):
12425 * window.el (scroll-error-top-bottom)
12426 (scroll-up-command, scroll-down-command, scroll-up-line)
12427 (scroll-down-line, scroll-other-window-down)
12428 (beginning-of-buffer-other-window, end-of-buffer-other-window):
12429 Move from simple.el to window.el because their primitives are
12430 implemented in window.c.
12431
ad40eec5
JL
124322010-04-16 Juri Linkov <juri@jurta.org>
12433
12434 * isearch.el (isearch-lookup-scroll-key): Check both
12435 `isearch-scroll' and `scroll-command' properties.
12436 (scroll-up, scroll-down): Remove `isearch-scroll' property.
12437
12438 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
12439
12440 * simple.el (scroll-up-command, scroll-down-command)
12441 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
12442
a4b000fb
JL
124432010-04-15 Juri Linkov <juri@jurta.org>
12444
12445 * simple.el (scroll-up-command, scroll-down-command)
12446 (scroll-up-line, scroll-down-line): Put `scroll-command'
12447 property on the these symbols. Remove them from
12448 `scroll-preserve-screen-position-commands'.
12449
12450 * mwheel.el (mwheel-scroll): Put `scroll-command' and
12451 `isearch-scroll' properties on the `mwheel-scroll' symbol.
12452 Remove it from `scroll-preserve-screen-position-commands'.
12453
12454 * isearch.el (isearch-allow-scroll): Doc fix.
12455
4874f5e6
MA
124562010-04-15 Michael Albinus <michael.albinus@gmx.de>
12457
12458 * net/tramp.el (tramp-error-with-buffer): Don't show the
12459 connection buffer when we are in completion mode.
12460 (tramp-file-name-handler): Catch the error for some operations
12461 when we are in completion mode. This gives the user the chance to
12462 correct the file name in the minibuffer.
12463
82883f0a
GM
124642010-04-15 Glenn Morris <rgm@gnu.org>
12465
12466 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
12467
528b9ea9
JB
124682010-04-15 Juanma Barranquero <lekktu@gmail.com>
12469
12470 Simplify by using `define-derived-mode'.
12471 * info.el (Info-mode):
12472 * calendar/todo-mode.el (todo-mode):
12473 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
12474 (gomoku-mode-map): Move initialization into declaration.
12475
5f2b693f
MA
124762010-04-14 Michael Albinus <michael.albinus@gmx.de>
12477
12478 Fix Bug#5840.
12479 * ido.el (ido-file-name-all-completions-1):
12480 * minibuffer.el (minibuffer-completion-help):
12481 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
12482
ebb9641f
SM
124832010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12484
38111a5a
SM
12485 * simple.el (non-essential): New var.
12486
ebb9641f
SM
12487 Add a new field `location' to bookmarks for non-file bookmarks.
12488 * bookmark.el (bookmark-location): Use the new field, if present.
12489 (bookmark-insert-location): Undo last change, not needed any more.
12490 * man.el (Man-bookmark-make-record):
12491 * woman.el (woman-bookmark-make-record): Add `location' field.
12492
7b05466f
JL
124932010-04-14 Juri Linkov <juri@jurta.org>
12494
12495 * simple.el (scroll-error-top-bottom): New defcustom.
12496 (scroll-up-command, scroll-down-command): Use it. Doc fix.
12497
12498 * emulation/pc-select.el (pc-select-override-scroll-error):
12499 Obsolete in favor of `scroll-error-top-bottom'.
12500
32129746
JL
125012010-04-14 Juri Linkov <juri@jurta.org>
12502
12503 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
12504 `scroll-up-command' and `M-v' to `scroll-down-command'.
12505
12506 * emulation/cua-rect.el (cua--init-rectangles):
12507 * forms.el (forms--change-commands):
12508 * image-mode.el (image-mode-map):
12509 Remap scroll-down-command and scroll-up-command
12510 in addition to scroll-down and scroll-up.
12511
9013a7f8
JL
125122010-04-14 Juri Linkov <juri@jurta.org>
12513
12514 * mwheel.el (scroll-preserve-screen-position-commands):
12515 Add mwheel-scroll to this list of commands.
12516
12517 * simple.el (scroll-preserve-screen-position-commands):
12518 Add scroll-up-command, scroll-down-command, scroll-up-line,
12519 scroll-down-line to this list of commands.
12520
3b7e1d5f
SM
125212010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
12522
c1e25821
SM
12523 * obsolete/complete.el: Move from lisp/complete.el.
12524
5b31b787
SM
12525 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
12526
3b7e1d5f
SM
12527 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
12528 to the minor mode function now turns the mode ON unconditionally.
12529
398a825b
SM
125302010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
12531
a544e7c1
SM
12532 * vc-dir.el (vc-dir-kill-line): New command.
12533 (vc-dir-mode-map): Bind it to C-k.
12534
a1979d8e
SM
12535 * bookmark.el (bookmark-insert-location): Handle a nil filename.
12536
398a825b
SM
12537 * woman.el: Add bookmark declarations to silence the compiler.
12538 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
12539 step to compatibility between man and woman bookmarks.
12540 Adjust for Man-default-bookmark-title renaming.
12541 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
12542
12543 * man.el: Add bookmark declarations to silence the compiler.
12544 (Man-name-local-regexp): Make it match NAME as well.
12545 (Man-getpage-in-background): Return the buffer.
12546 (Man-notify-when-ready): Use `case'.
12547 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
12548 Don't hardcode "NAME". Simplify.
12549 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
12550 Rename from Man-bookmark-make-record.
12551 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
12552 we have the actual man-args. Use Man-getpage-in-background rather
12553 than `man' since the arg is already processed. Let bookmark.el do the
12554 window handling. Only wait for the relevant process.
12555 Don't forget to autoload.
12556
12557 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
12558
45be326a
TV
125592010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12560
12561 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
12562 New functions.
12563 (woman-mode): Setup bookmark support.
12564
12565 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
12566 (man-bookmark-jump): New functions.
12567 (Man-mode): Setup bookmark support.
12568
3acb4c93
CY
125692010-04-10 Jari Aalto <jari.aalto@cante.net>
12570
12571 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
12572 recognize ssh-keygen prompt (Bug#2817).
12573
b6bbb65e
MA
125742010-04-10 Michael Albinus <michael.albinus@gmx.de>
12575
12576 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
12577
b533bc97
MA
125782010-04-10 Michael Albinus <michael.albinus@gmx.de>
12579
12580 Synchronize with Tramp repository.
12581
12582 * net/tramp.el (tramp-completion-function-alist)
12583 (tramp-file-name-regexp, tramp-chunksize)
45be326a
TV
12584 (tramp-local-coding-commands, tramp-remote-coding-commands):
12585 Fix docstring.
12586 (tramp-remote-process-environment): Use `format' instead of `concat'.
b533bc97
MA
12587 (tramp-handle-directory-files-and-attributes)
12588 (tramp-get-remote-path): Use `copy-tree'.
12589 (tramp-handle-file-name-all-completions): Backward/ XEmacs
12590 compatibility: Use `completion-ignore-case' if
12591 `read-file-name-completion-ignore-case' does not exist.
12592 (tramp-do-copy-or-rename-file-directly): Do not use
12593 `tramp-handle-file-remote-p'.
45be326a
TV
12594 (tramp-do-copy-or-rename-file-out-of-band):
12595 Use `tramp-compat-delete-directory'.
b533bc97 12596 (tramp-do-copy-or-rename-file-out-of-band)
45be326a
TV
12597 (tramp-compute-multi-hops, tramp-maybe-open-connection):
12598 Use `format-spec-make'.
b533bc97
MA
12599 (tramp-find-foreign-file-name-handler)
12600 (tramp-advice-make-auto-save-file-name)
12601 (tramp-set-auto-save-file-modes): Remove superfluous check for
12602 `stringp'. This is done inside `tramp-tramp-file-p'.
12603 (tramp-debug-outline-regexp): New defconst.
12604 (tramp-get-debug-buffer): Use it.
12605 (tramp-check-for-regexp): Use (forward-line 1).
12606 (tramp-set-auto-save-file-modes): Adapt version check.
12607
45be326a
TV
12608 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
12609 Wrap call of `featurep' for 2nd argument.
b533bc97
MA
12610 (tramp-compat-make-temp-file): Simplify fallback implementation.
12611 (tramp-compat-copy-tree): Remove function.
12612 (tramp-compat-delete-directory): Provide implementation for older
12613 Emacsen.
12614
12615 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
12616 Do not use `tramp-fish-handle-file-attributes.
12617
12618 * net/trampver.el: Update release number.
12619
ba33df00
GM
126202010-04-10 Glenn Morris <rgm@gnu.org>
12621
12622 * progmodes/compile.el (compilation-save-buffers-predicate):
12623 Add missing :version tag.
12624
4a8ae76f
SS
126252010-04-09 Sam Steingold <sds@gnu.org>
12626
12627 * progmodes/compile.el (compilation-save-buffers-predicate):
12628 Remove the "autoload" cookie.
12629
0880716f
SS
12630 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
12631 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
12632 and `bug-reference-prog-mode' can be used in hooks directly.
12633
6aebd58c
DN
126342010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
12635
12636 Add --author support to git commit.
12637 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
12638 (vc-git-log-edit-mode): New minor mode.
45be326a
TV
12639 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
12640 New declarations.
6aebd58c 12641
f6d90772
ER
126422010-04-09 Eric Raymond <esr@snark.thyrsus.com>
12643
12644 * vc-hooks.el, vc-git.el: Improve documentation comments.
12645
e754e83b
SM
126462010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
12647
12648 Fix some of the problems in defsubst* (bug#5728).
12649 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
12650 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
12651
9e86ab0b
SS
126522010-04-07 Sam Steingold <sds@gnu.org>
12653
e754e83b
SM
12654 * progmodes/compile.el (compilation-save-buffers-predicate):
12655 New custom variable.
9e86ab0b
SS
12656 (compile, recompile): Pass it to `save-some-buffers'.
12657
b0c8b840
JD
126582010-04-07 Jan Djärv <jan.h.d@swipnet.se>
12659
12660 * wid-edit.el (widget-choose): Move cursor to the second line of
12661 the buffer (Bug#5695).
12662
31527c56
DN
126632010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
12664
12665 Add new VC methods: vc-log-incoming and vc-log-outgoing.
12666 * vc.el (vc-print-log-setup-buttons): New function split out from
12667 vc-print-log-internal.
12668 (vc-log-internal-common): New function, a parametrized version of
12669 vc-print-log-internal.
12670 (vc-print-log-internal): Just call vc-log-internal-common with the
12671 right arguments.
12672 (vc-incoming-outgoing-internal):
12673 (vc-log-incoming, vc-log-outgoing): New functions.
12674 (vc-log-view-type): New permanent local variable.
12675
12676 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
12677
12678 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
12679 of the dynamic bound vc-short-log.
12680 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
12681
12682 * vc-git.el (vc-git-log-outgoing): New function.
12683 (vc-git-log-view-mode): Use vc-log-view-type instead
12684 of the dynamic bound vc-short-log.
12685
12686 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
12687 of the dynamic bound vc-short-log. Highlight the tag.
12688 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
12689 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
12690 (vc-hg-incoming-mode): Remove.
12691 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
12692
7ec69e2b
DN
126932010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
12694
12695 Fix default-directory for vc-root-diff.
12696 * vc.el (vc-root-diff): Bind default-directory to the root
12697 directory for the diff command.
12698
fd9ea9d3
WS
126992010-04-07 Michael McNamara <mac@mail.brushroad.com>
12700
6e104790 12701 * progmodes/verilog-mode.el (verilog-forward-sexp):
31527c56
DN
12702 (verilog-calc-1): Support "disable fork" and "fork wait" multi
12703 word keywords, suggested by Steve Pearlmutter.
6e104790 12704 (verilog-pretty-declarations): Support lineup of declarations in
fd9ea9d3 12705 port lists.
6e104790 12706 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
c4cc8b9a 12707 fix bug for /* / comments.
6e104790 12708 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
fd9ea9d3 12709 Speed up and simplfy as this is never called with a bound.
6e104790
SM
12710 (verilog-pretty-declarations): Enhance to line up declarations
12711 inside a parameter list, suggested by Alan Morgan.
12712 (verilog-pretty-expr): Tune assignment regular expression match
12713 string for corner cases; also use markers instead of character
12714 number as indent changes the later.
fd9ea9d3
WS
12715
127162010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
12717
6e104790
SM
12718 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
12719 as missing keyword.
12720 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
12721 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
12722 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
12723 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
12724 Tennant.
12725 (verilog-keywords):
fd9ea9d3
WS
12726 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
12727 1800-2009 keywords, including "global.".
12728
2a07afc5
JW
127292010-04-06 John Wiegley <jwiegley@gmail.com>
12730
8b32731a 12731 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
2a07afc5 12732 appearing in buffer list (if a live buffer name matched a recentf
8b32731a 12733 file basename). Should use uniquify to offer a real solution.
2a07afc5 12734
f9a27d86
JW
127352010-04-06 John Wiegley <jwiegley@gmail.com>
12736
8b32731a
JB
12737 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
12738 comment to code, and add a :version tag.
12739 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
f9a27d86 12740
9caf8a8f
JB
127412010-04-06 Juanma Barranquero <lekktu@gmail.com>
12742
12743 Enable recentf-mode if using virtual buffers.
12744 * ido.el (recentf-list): Declare for byte-compiler.
93acd23d 12745 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
9caf8a8f
JB
12746 (ido-make-buffer-list): Simplify.
12747 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
12748
5a97d2da
JL
127492010-04-05 Juri Linkov <juri@jurta.org>
12750
12751 Scrolling commands which scroll a line instead of full screen.
12752 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
12753
12754 * simple.el (scroll-up-line, scroll-down-line): New commands.
12755 Put property isearch-scroll=t on them.
12756
12757 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
12758 Remove commands.
12759
79ce172a
JL
127602010-04-05 Juri Linkov <juri@jurta.org>
12761
8b32731a 12762 Scrolling commands which do not signal errors at top/bottom.
79ce172a
JL
12763 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
12764
12765 * simple.el (scroll-up-command, scroll-down-command): New commands.
12766 Put property isearch-scroll=t on them.
12767
12768 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
12769 `scroll-down-command' and [next] from `scroll-up' to
12770 `scroll-up-command'.
12771
12772 * emulation/cua-base.el: Put property CUA=move on
12773 `scroll-up-command' and `scroll-down-command'.
12774 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
12775 and `scroll-down-command' to `cua-scroll-down'.
12776
309d5b43
JB
127772010-04-05 Juanma Barranquero <lekktu@gmail.com>
12778
6460e534 12779 * help.el (describe-mode): Return nil.
309d5b43 12780
0523d117
JW
127812010-04-04 John Wiegley <jwiegley@gmail.com>
12782
12783 * ido.el (ido-use-virtual-buffers): New variable to indicate
f9a27d86 12784 whether "virtual buffer" support is enabled for IDO.
0523d117
JW
12785 (ido-virtual): Face used to indicate virtual buffers in the list.
12786 (ido-buffer-internal): If a buffer is chosen, and no such buffer
12787 exists, but a virtual buffer of that name does (which would be why
12788 it was in the list), recreate the buffer by reopening the file.
12789 (ido-make-buffer-list): If virtual buffers are being used, call
12790 `ido-add-virtual-buffers-to-list' before the make list hook.
12791 (ido-virtual-buffers): New variable which contains a copy of the
12792 current contents of the `recentf-list', albeit pared down for the
12793 sake of speed, and with proper faces applied.
12794 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
12795 create a list of "virtual buffers" to present to the user in
12796 addition to the currently open set. Note that this logic could
12797 get rather slow if that list is too large. With the default
12798 `recentf-max-saved-items' of 200, there is little speed penalty.
12799
202ff0d6
SM
128002010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
12801
12802 * font-lock.el: Require CL when compiling.
12803 (font-lock-turn-on-thing-lock): Use `case'.
12804
ef43a0f4
EZ
128052010-04-03 Eli Zaretskii <eliz@gnu.org>
12806
12807 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
12808 Zaretskii.
ef43a0f4 12809
9c13a46e
JL
128102010-04-02 Juri Linkov <juri@jurta.org>
12811
12812 * ehelp.el (electric-help-orig-major-mode):
12813 New buffer-local variable.
12814 (electric-help-mode): Set it to original major-mode. Doc fix.
12815 (with-electric-help): Use `electric-help-orig-major-mode' instead
12816 of (default-value 'major-mode). Doc fix.
12817 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
12818
3fb87bf5
SS
128192010-04-02 Sam Steingold <sds@gnu.org>
12820
12821 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
12822 `vc-hg-command' with a list of flags.
12823
202ff0d6
SM
12824 * progmodes/bug-reference.el (bug-reference-bug-regexp):
12825 Also accept "patch" and "RFE".
dbb5e44a
SS
12826 (bug-reference-fontify): `bug-reference-url-format' can also be a
12827 function to be able to handle the bug kind.
202ff0d6 12828 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
dbb5e44a 12829
d0b22876
JD
128302010-04-02 Jan Djärv <jan.h.d@swipnet.se>
12831
12832 * tmm.el (tmm-get-keymap): Check with symbolp before passing
12833 value to fboundp, it may not be a symbol.
12834
1625d379
CY
128352010-03-31 Chong Yidong <cyd@stupidchicken.com>
12836
202ff0d6 12837 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
1625d379 12838
1cd095c6
JL
128392010-03-31 Juri Linkov <juri@jurta.org>
12840
12841 * simple.el (next-line, previous-line): Re-throw a signal
12842 with `signal' instead of using `ding'.
12843 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
12844
67189e62
JL
128452010-03-31 Juri Linkov <juri@jurta.org>
12846
12847 * simple.el (keyboard-escape-quit): Raise deselecting the active
12848 region higher than exiting the minibuffer.
12849 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
12850
1546c559
JL
128512010-03-31 Juri Linkov <juri@jurta.org>
12852
12853 * image.el (image-animated-p): Use `image-metadata' instead of
12854 `image-extension-data'. Get GIF extenstion data from metadata
12855 property `extension-data'.
12856
85626eef
SM
128572010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12858
12859 * simple.el (append-to-buffer): Simplify.
12860
85738751 128612010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
b42da387
TA
12862
12863 * textmodes/artist.el (artist-mode): Fix typo in docstring.
12864 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
12865
85738751 128662010-03-31 Kenichi Handa <handa@m17n.org>
42763dda
KH
12867
12868 * language/sinhala.el (composition-function-table): Fix regexp for
12869 the new Unicode specification.
12870
12871 * language/indian.el (devanagari-composable-pattern)
12872 (tamil-composable-pattern, kannada-composable-pattern)
85626eef 12873 (malayalam-composable-pattern): Adjust for the new Unicode
42763dda
KH
12874 specification.
12875 (bengali-composable-pattern, gurmukhi-composable-pattern)
12876 (gujarati-composable-pattern, oriya-composable-pattern)
12877 (telugu-composable-pattern): New variables to cope with the new
12878 Unicode specification. Use them in composition-function-table.
12879
85738751 128802010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
fe59d705 12881
79d74ac5 12882 Make tmm-menubar work for the Buffers menu again (bug#5726).
fe59d705
SM
12883 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
12884 vectors rather than cons cells, as used in menu-bar-update-buffers.
12885
85738751 128862010-03-31 Chong Yidong <cyd@stupidchicken.com>
03ffe8be 12887
2a793f7f
CY
12888 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
12889 (js-insert-and-indent): Revert 2009-08-15 change, restoring
12890 electric punctuation for "{}();,:" (Bug#5586).
12891
03ffe8be
CY
12892 * mail/sendmail.el (mail-default-directory): Doc fix.
12893
85738751 128942010-03-31 Chong Yidong <cyd@stupidchicken.com>
03ffe8be
CY
12895
12896 * mail/sendmail.el (mail-default-directory): Doc fix.
12897
85738751 128982010-03-31 Eli Zaretskii <eliz@gnu.org>
94785022
EZ
12899
12900 * subr.el (version-regexp-alist, version-to-list)
12901 (version-list-<, version-list-=, version-list-<=)
12902 (version-list-not-zero, version<, version<=, version=): Doc fix.
12903 (Bug#5744).
12904
85738751 129052010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
431af6a4
DN
12906
12907 * vc.el (vc-root-diff): Doc fix.
12908
85738751 129092010-03-31 Chong Yidong <cyd@stupidchicken.com>
9d30a9f4 12910
9aa2c576
CY
12911 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
12912
9d30a9f4
CY
12913 * simple.el (append-to-buffer): Fix last change.
12914
85738751 129152010-03-31 Chong Yidong <cyd@stupidchicken.com>
d0fba174
CY
12916
12917 * simple.el (append-to-buffer): Ensure that point is preserved if
12918 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
12919 (Bug#5749)
12920
2372f278
SM
129212010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12922
12923 * files.el (auto-mode-case-fold): Change default to t.
12924
2223a1b3
JL
129252010-03-30 Juri Linkov <juri@jurta.org>
12926
12927 * dired-x.el (dired-omit-mode): Doc fix.
12928
0ef84fc8
JL
129292010-03-30 Juri Linkov <juri@jurta.org>
12930
12931 * replace.el (occur-accumulate-lines): Move occur-engine related
12932 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
12933 to be located after `occur-engine'.
12934
dc2d2590
JL
129352010-03-30 Juri Linkov <juri@jurta.org>
12936
12937 Make occur handle multi-line matches cleanly with context.
12938 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
12939
12940 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
12941 (occur-engine): Add local variables `ret', `prev-after-lines',
12942 `prev-lines'. Use more arguments for `occur-context-lines'.
12943 Set first elem of its returned list to `data', and the second elem
12944 to `prev-after-lines'. Don't print the separator line.
12945 In the end, print remaining context after-lines.
12946 (occur-context-lines): Add new arguments `begpt', `endpt',
12947 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
12948 after-lines of the previous match with before-lines of the
12949 current match and not overlap them. Return a list with two
12950 values: the output line and the list of context after-lines.
12951
47c88c06
JL
129522010-03-30 Juri Linkov <juri@jurta.org>
12953
12954 * replace.el (occur-accumulate-lines): Fix a bug where the first
12955 context line at the beginning of the buffer was missing.
12956
a7b02820
EZ
129572010-03-30 Eli Zaretskii <eliz@gnu.org>
12958
12959 * files.el: Make bidi-display-reordering safe variable for boolean
12960 values.
12961
9326ba26 129622010-03-29 Phil Hagelberg <phil@evri.com>
4e2af782 12963 Chong Yidong <cyd@stupidchicken.com>
9326ba26
CY
12964
12965 * subr.el: Extend progress reporters to perform "spinning".
85626eef
SM
12966 (progress-reporter-update, progress-reporter-do-update):
12967 Handle non-numeric value arguments.
9326ba26
CY
12968 (progress-reporter--pulse-characters): New var.
12969
f6f8aa12
CY
129702010-03-28 Chong Yidong <cyd@stupidchicken.com>
12971
12972 * progmodes/compile.el (compilation-start): Fix regexp detection
12973 of initial cd command (Bug#5771).
12974
7ed287b5
CY
129752010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
12976
12977 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
12978
146b8b16
NR
129792010-03-27 Nick Roberts <nickrob@snap.net.nz>
12980
12981 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
76e3243a
JB
12982 * progmodes/gdb-mi.el: Restore.
12983 * progmodes/gdb-ui.el: Remove.
12984 * progmodes/gud.el: Re-accommodate for gdb-mi.el.
146b8b16 12985
b23caf75
GM
129862010-03-25 Glenn Morris <rgm@gnu.org>
12987
12988 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
12989 all dired buffers, even tramp ones. (Bug#5755)
12990
18c812bd
SM
129912010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
12992
12993 Add "union tags" in mpc.el.
12994 * mpc.el: Remove backward compatibility code.
12995 (mpc-browser-tags): Change default.
12996 (mpc--find-memoize-union-tags): New var.
12997 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
12998 (mpc-cmd-find): Handle the case where the playlist does not exist.
12999 Handle union-tags.
13000 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
13001 (mpc-cmd-add): Use mpc-cmd-flush.
13002 (mpc-tagbrowser-tag-name): New fun.
13003 (mpc-tagbrowser-buf): Use it.
13004 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
13005
efee6a6d
SM
130062010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
13007
9586c41a
SM
13008 Misc cleanup.
13009 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
13010 Use replace-regexp-in-string.
13011 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
13012 (makefile-imake-mode-syntax-table): Move init into defvar.
13013 (makefile-mode): Use define-derived-mode.
13014
efee6a6d
SM
13015 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
13016 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
13017 not be present any more.
13018
c6f3804c
JB
130192010-03-24 Juanma Barranquero <lekktu@gmail.com>
13020
13021 * faces.el (set-face-attribute): Fix typo in docstring.
13022 (face-valid-attribute-values): Reflow docstring.
13023
e867cb5d 130242010-03-24 Glenn Morris <rgm@gnu.org>
4c3a215a 13025
efee6a6d 13026 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
4c3a215a 13027
e867cb5d 130282010-03-24 Chong Yidong <cyd@stupidchicken.com>
e9ba3e26
CY
13029
13030 * indent.el (indent-for-tab-command): Doc fix.
13031
e867cb5d 130322010-03-24 Alan Mackenzie <acm@muc.de>
657071fc 13033
efee6a6d
SM
13034 * progmodes/cc-engine.el (c-remove-stale-state-cache):
13035 Fix off-by-one error. Fixes bug #5747.
657071fc 13036
e867cb5d 130372010-03-24 Juanma Barranquero <lekktu@gmail.com>
c8de140b
JB
13038
13039 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
13040 (image-dired-read-comment): Doc fix.
13041
efee6a6d
SM
13042 * json.el (json-object-type, json-array-type, json-key-type)
13043 (json-false, json-null, json-read-number):
c8de140b
JB
13044 * minibuffer.el (completion-in-region-functions):
13045 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
13046 (cal-tex-cursor-week):
13047 * emacs-lisp/trace.el (trace-function):
13048 * eshell/em-basic.el (eshell/printnl):
13049 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
13050 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
13051 * obsolete/levents.el (allocate-event, event-key, event-object)
13052 (event-point, event-process, event-timestamp, event-to-character)
13053 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
13054 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
13055 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
13056 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
13057 (reftex-highlight-selection): Fix typos in docstrings.
13058
e867cb5d 130592010-03-24 Juanma Barranquero <lekktu@gmail.com>
d1200087
JB
13060
13061 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
13062
e867cb5d 130632010-03-24 Glenn Morris <rgm@gnu.org>
f454672b
GM
13064
13065 * mail/rmail.el (rmail-highlight-face): Restore option deleted
13066 2008-02-13 without comment; mark it obsolete.
13067 (rmail-highlight-headers): Use rmail-highlight-face once more.
13068
e867cb5d 130692010-03-24 Chong Yidong <cyd@stupidchicken.com>
d5704d66
CY
13070
13071 * woman.el (woman2-process-escapes): Only consume the newline if
13072 the filler character is on a line by itself (Bug#5729).
13073
e867cb5d 130742010-03-24 Kenichi Handa <handa@m17n.org>
fade35dd
KH
13075
13076 * language/indian.el (devanagari-composable-pattern): Add more
13077 consonants.
13078
e867cb5d 130792010-03-24 Michael Albinus <michael.albinus@gmx.de>
c8215db1
MA
13080
13081 * net/trampver.el: Update release number.
13082
e867cb5d 130832010-03-24 Michael Albinus <michael.albinus@gmx.de>
c0e17ff2 13084
efee6a6d
SM
13085 * net/tramp.el (tramp-find-executable):
13086 Use `tramp-get-connection-buffer'. Make the regexp for checking
c0e17ff2
MA
13087 output of "wc -l" more robust.
13088 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
13089 (tramp-open-connection-setup-interactive-shell): Remove workaround
13090 for OpenSolaris bug, it is not needed anymore.
13091
e867cb5d 130922010-03-24 Glenn Morris <rgm@gnu.org>
eb123b12
GM
13093
13094 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
13095
e867cb5d 130962010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
5f8d2ce0
WS
13097
13098 * files.el (auto-mode-alist): Accept more verilog file patterns.
13099
b2b8574b
SM
131002010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
13101
13102 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
13103
1d94ebb0
GM
131042010-03-24 Glenn Morris <rgm@gnu.org>
13105
7e263967
GM
13106 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
13107 log-edit-before-checkin-process.
13108
5ac92c5f
GM
13109 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
13110
13111 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
ebbe23dd 13112
549f324a
GM
13113 * vc-dispatcher.el (vc-start-logentry): Doc fix.
13114 (log-view-process-buffer, log-edit-extra-flags): Declare.
13115
495b517c
GM
13116 * log-edit.el (log-edit-before-checkin-process): Doc fix.
13117
f4087766
SS
131182010-03-23 Sam Steingold <sds@gnu.org>
13119
13120 Fix bug#5620: recalculate all markers on compilation buffer
13121 modifications, not on file modifications.
38e9aa53
GM
13122 * progmodes/compile.el (compilation-buffer-modtime): New buffer-local
13123 variable: the buffer modification time, for buffers not associated with
13124 files.
f4087766
SS
13125 (compilation-mode): Create it.
13126 (compilation-filter): Update it.
13127 (compilation-next-error-function): Use it instead of
13128 `visited-file-modtime' for timestamp.
13129
774642e5
JL
131302010-03-23 Juri Linkov <juri@jurta.org>
13131
13132 Implement Occur multi-line matches.
13133 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
13134
13135 * replace.el (occur): Doc fix.
13136 (occur-engine): Set `begpt' to the beginning of the first line.
13137 Set `endpt' to the end of the last match line. At first, count
13138 line numbers between `origpt' and `begpt'. Split out code from
13139 `out-line' variable to new let-bindings `match-prefix' and
13140 `match-str'. In `out-line' add non-numeric prefix to all
13141 non-first lines of multi-line matches. Finally, count lines
13142 between `begpt' and `endpt' and add to `lines'.
13143
f14d1172
JL
131442010-03-23 Juri Linkov <juri@jurta.org>
13145
13146 * replace.el (occur-accumulate-lines, occur-engine):
13147 Use `occur-engine-line' instead of duplicate code.
13148 (occur-engine-line): New function created from duplicate code
13149 in `occur-accumulate-lines' and `occur-engine'.
13150
53e87c57
JL
13151 * replace.el (occur-engine-line): Add optional arg `keep-props'.
13152 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
13153
75a3ff20
JL
131542010-03-23 Juri Linkov <juri@jurta.org>
13155
13156 * finder.el: Remove TODO tasks.
13157
13158 * info.el (Info-finder-find-node): Add node "all"
13159 with all package info. Handle a list of multiple keywords
13160 separated by comma.
13161 (info-finder): In interactive use with a prefix argument,
13162 use `completing-read-multiple' to read a list of keywords
13163 separated by comma.
13164
00278747
SM
131652010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
13166
13167 Add a new completion style `substring'.
13168 * minibuffer.el (completion-basic--pattern): New function.
13169 (completion-basic-try-completion, completion-basic-all-completions):
13170 Use it.
13171 (completion-substring--all-completions)
13172 (completion-substring-try-completion)
13173 (completion-substring-all-completions): New functions.
13174 (completion-styles-alist): New style `substring'.
13175
64cb11cc
SM
131762010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
13177
13178 Get rid of .elc files after removal of the corresponding .el.
13179 * Makefile.in (compile-clean): New target.
13180 (compile-main): Use it.
13181
835e2c65
JD
131822010-03-22 Jan Djärv <jan.h.d@swipnet.se>
13183
13184 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
13185 don't do make there. When compiling with separate object dir, there
13186 is no Makefile there.
13187
111a9dff
SM
131882010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
13189
13190 Get rid of the ELCFILES abomination, again.
13191 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
13192 (all, compile): Don't call compile-last.
13193 (compile-main): Build the "elcfiles" list dynamically.
13194 (compile-targets): New (internal) target.
13195
82c3d67a
AS
131962010-03-21 Andreas Schwab <schwab@linux-m68k.org>
13197
13198 * Makefile.in (top_srcdir): Define.
13199 (abs_top_builddir): Define.
13200 (srcdir): Don't append `/..'.
13201 (EMACS): Use ${abs_top_builddir}.
13202 (all, compile, compile-always, compile-last): Don't set emacswd.
64cb11cc
SM
13203 (update-subdirs, update-authors): Use $(top_srcdir) instead of
13204 $(srcdir).
82c3d67a
AS
13205 (lisp): Use $(srcdir) instead of @srcdir@.
13206
d66ecdbb
JL
132072010-03-21 Juri Linkov <juri@jurta.org>
13208
13209 Fix message of multi-line occur regexps and multi-buffer header lines.
13210 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
13211
13212 * replace.el (occur-1): Don't display regexp if it is longer
13213 than window-width. Use `query-replace-descr' to display regexp.
13214 (occur-engine): Don't display regexp in the buffer header for
13215 multi-buffer occur. Display a separate header line with total
13216 match count and regexp for multi-buffer occur.
13217 Use `query-replace-descr' to display regexp.
13218
f05e1b94
TZ
132192010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
13220
13221 * net/secrets.el: Fix parenthesis.
13222 (secrets-enabled): Fix parenthesis.
13223
801ba3ba
SM
132242010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
13225
3613edce
SM
13226 Use more relative file and directory names.
13227 * Makefile.in (EMACS): Arrange for it to work when we chdir.
13228 (setwins, setwins_almost, setwins_for_subdirs):
13229 Don't `cd'; output relative names.
13230 (all, compile, compile-always, compile-last): Set emacswd.
13231 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
13232 Just cd to the lisp source dir so we can use relative file names.
13233
801ba3ba
SM
13234 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
13235
2b1400b9
GM
132362010-03-20 Glenn Morris <rgm@gnu.org>
13237
13238 * textmodes/rst.el: Use faces for font-lock customization, and make the
13239 old -face variables obsolete.
13240 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
13241 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
13242 (rst-block-face, rst-external-face, rst-definition-face)
13243 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
13244 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
13245 Make obsolete.
13246 (rst-font-lock-keywords-function): Update for above changes.
13247
5e418f17
JL
132482010-03-20 Juri Linkov <juri@jurta.org>
13249
13250 * s-region.el:
13251 * obsolete/s-region.el: Move to obsolete.
13252
b0287b39
JB
132532010-03-19 Juanma Barranquero <lekktu@gmail.com>
13254
13255 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
13256
3c95bbb6
DN
132572010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
13258
13259 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
13260
09158997
DN
132612010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
13262
13263 Add special markup processing for commit logs.
13264 * log-edit.el (log-edit-extra-flags): New variable.
13265 (log-edit): Add new argument MODE. Use that mode when non-nil
13266 instead of the log-view-mode.
13267 (log-view-process-buffer): New function.
13268
13269 * vc.el: Document that the checkin method takes optional
13270 arguments. Document new backend specific method: log-view-mode.
13271 (vc-default-log-edit-mode): New function.
13272 (vc-checkin): Use a backend specific log-view-mode.
13273 Pass extra arguments to the checkin method.
13274 (vc-modify-change-comment): Pass a dummy extra argument.
13275
13276 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
13277 log-edit.
13278 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
13279 (vc-finish-logentry): Process the log buffer before passing it
13280 down. Pass log-edit-extra-flags.
13281
13282 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
13283 command.
85626eef
SM
13284 (log-edit-extra-flags, log-edit-before-checkin-process):
13285 New declarations.
09158997
DN
13286
13287 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
13288 command.
85626eef
SM
13289 (log-edit-extra-flags, log-edit-before-checkin-process):
13290 New declarations.
09158997
DN
13291 (vc-hg-log-edit-mode): New derived mode.
13292
13293 * vc-arch.el (vc-arch-checkin):
13294 * vc-cvs.el (vc-cvs-checkin):
13295 * vc-git.el (vc-git-checkin):
13296 * vc-mtn.el (vc-mtn-checkin):
13297 * vc-rcs.el (vc-rcs-checkin):
13298 * vc-sccs.el (vc-sccs-checkin):
13299 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
13300
f430423d
SM
133012010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
13302
13303 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
13304 parent typo).
13305
aa8f8277
GM
133062010-03-19 Glenn Morris <rgm@gnu.org>
13307
f430423d 13308 * password-cache.el (password-cache, password-cache-expiry): Autoload.
aa8f8277 13309
04525749
GM
133102010-03-18 Glenn Morris <rgm@gnu.org>
13311
c70815f1
GM
13312 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
13313
84d0a5f8
GM
13314 * replace.el (query-replace-history): Give it a doc string.
13315 (map-query-replace-regexp): Use query-replace-from-history-variable
13316 and query-replace-to-history-variable.
13317
e3a15161
GM
13318 * mail/hashcash.el (declare-function): Remove duplicate definition.
13319
27be0364
GM
13320 * mail/emacsbug.el (report-emacs-bug-pretest-address):
13321 Make it an obsolete alias for report-emacs-bug-address.
13322 (message-strip-special-text-properties): Declare.
13323 (report-emacs-bug): Remove test for a pretest bug address.
13324 Combine message-mode-specific code.
13325
88b8d18e
GM
13326 * mail/supercite.el: Don't require sendmail.
13327 (mh-in-header-p): Declare rather than using with-no-warnings.
13328 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
13329 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
13330
1a355d09
GM
13331 * calendar/cal-french.el: Convert to utf-8.
13332
04525749
GM
13333 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
13334 Emacs scripts.
13335
ae84eb97
MA
133362010-03-16 Michael Albinus <michael.albinus@gmx.de>
13337
13338 * net/secrets.el (secrets-enabled): New variable. Use it instead
13339 of a subfeature.
13340
7c75524e
MA
133412010-03-15 Michael Albinus <michael.albinus@gmx.de>
13342
13343 * net/secrets.el (top): Register the D-Bus signals only when the
f430423d
SM
13344 service "org.freedesktop.secrets" can be pinged.
13345 Provide subfeature `enabled'.
7c75524e 13346
57938a79
JL
133472010-03-14 Juri Linkov <juri@jurta.org>
13348
13349 Add finder unknown keywords.
13350
13351 * finder.el (finder-unknown-keywords): New function.
13352
13353 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
13354 to create a Finder node with unknown keywords.
13355
88f4758e
JL
133562010-03-14 Juri Linkov <juri@jurta.org>
13357
13358 * finder.el (finder-compile-keywords): Replace `princ' with
13359 `prin1' on a list of symbols interned from keyword strings.
13360
13361 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
13362 a comma, then split keywords using a comma and optional whitespace.
13363 Otherwise, split by whitespace.
13364
13365 * complete.el:
13366 * face-remap.el:
13367 * log-view.el:
13368 * net/hmac-def.el:
13369 * net/hmac-md5.el:
13370 * net/netrc.el:
13371 * progmodes/mixal-mode.el: Fix keywords.
13372
7725ebb7
MA
133732010-03-13 Michael Albinus <michael.albinus@gmx.de>
13374
13375 * Makefile.in (ELCFILES): Add net/secrets.elc.
13376
13377 * net/secrets.el: New file.
13378
6f320937
CY
133792010-03-12 Chong Yidong <cyd@stupidchicken.com>
13380
13381 * facemenu.el (list-colors-display, list-colors-print): New arg
13382 callback. Use it to allow selecting colors.
13383
13384 * wid-edit.el (widget-image-insert): Insert image prop even if the
13385 current display is non-graphic.
13386 (widget-field-value-set): New fun.
13387 (editable-field): Use it.
13388 (widget-field-value-get): Clean up unused var.
85626eef
SM
13389 (widget-color-value-create, widget-color--choose-action):
13390 New funs. Allow using list-colors-display to choose color.
6f320937 13391
647f9993
CY
133922010-03-12 Chong Yidong <cyd@stupidchicken.com>
13393
13394 * cus-edit.el: Resort topmost custom groups.
13395 (custom-buffer-sort-alphabetically): Default to t.
13396 (customize-apropos): Use apropos-parse-pattern.
13397 (custom-search-field): New var.
13398 (custom-buffer-create-internal): Add custom-apropos search field.
13399 (custom-add-parent-links): Don't display parent doc.
13400 (custom-group-value-create): Don't sort top-level custom group.
85626eef 13401 (custom-magic-value-create): Show visibility button before option name.
647f9993
CY
13402
13403 (custom-variable-state): New fun, from custom-variable-state-set.
13404 (custom-variable-state-set): Use it.
13405 (custom-group-value-create): Hide options with standard values
13406 using the :hidden-states property. Use progress reporter.
13407
13408 (custom-show): Simplify.
13409 (custom-visibility): Disable images by default.
13410 (custom-variable): New property :hidden-states.
13411 (custom-variable-value-create): Enable images for
13412 custom-visibility widgets. Use :hidden-states property to
13413 determine initial visibility.
13414
13415 * wid-edit.el (widget-image-find): Give images center ascent.
13416 (visibility): Add :on-image and :off-image properties.
13417 (widget-visibility-value-create): Use them.
13418
eba5b4dd
CY
134192010-03-12 Chong Yidong <cyd@stupidchicken.com>
13420
13421 * cus-edit.el (processes): Remove from development group.
13422 (oop, hypermedia): Delete group.
26f4b8ab 13423 (comm): Promote to top-level group.
eba5b4dd
CY
13424
13425 * net/browse-url.el (browse-url):
13426 * net/xesam.el (xesam):
13427 * net/tramp.el (tramp):
13428 * net/goto-addr.el (goto-address):
26f4b8ab 13429 * net/ange-ftp.el (ange-ftp): Put in comm group.
eba5b4dd
CY
13430
13431 * view.el (view): Remove from editing group.
13432
13433 * uniquify.el (uniquify): Put in files group.
13434
13435 * net/browse-url.el (browse-url):
13436 * ps-print.el (postscript): Put in external group.
13437
13438 * cus-edit.el (outlines):
13439 * textmodes/text-mode.el (text-mode-hook):
13440 * textmodes/table.el (table):
13441 * textmodes/picture.el (picture):
13442 * outline.el (outlines): Put in wp group.
13443
13444 * nxml/nxml-mode.el (nxml): Remove from wp group.
13445
13446 * net/tramp-imap.el (tramp-imap): Put in tramp group.
13447
13448 * mail/metamail.el (metamail): Remove from hypermedia group.
13449
13450 * cus-edit.el (abbrev):
13451 * whitespace.el (whitespace):
13452 * vcursor.el (vcursor):
13453 * reveal.el (reveal):
13454 * hl-line.el (hl-line): Put in convenience group.
13455
13456 * epg-config.el (epg): Put in data group.
13457
13458 * emulation/pc-select.el (pc-select): Put in emulations group.
13459
13460 * calculator.el (calculator): Put in applications group.
13461
8117868f
DN
134622010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
13463
13464 Add .dir-locals.el support for file-less buffers.
13465 * files.el (hack-local-variables): Split out code to apply local
13466 variable settings ...
13467 (hack-local-variables-apply): ... here. New function.
13468 (hack-dir-local-variables): Use the default directory for when the
13469 buffer does not have an associated file.
13470 (hack-dir-local-variables-non-file-buffer): New function.
13471 * diff-mode.el (diff-mode):
13472 * vc-annotate.el (vc-annotate-mode):
13473 * vc-dir.el (vc-dir-mode):
13474 * log-edit.el (log-edit-mode):
13475 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
13476
855a2294
DN
134772010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
13478
13479 Add support for shelving snapshots and for showing shelves.
13480 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
13481 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
13482 New functions.
13483 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
13484 (vc-bzr-extra-menu-map): Map them.
13485
3e5b7009
GM
134862010-03-11 Glenn Morris <rgm@gnu.org>
13487
0dcf7d7e
GM
13488 * cus-edit.el (customize-changed-options-previous-release):
13489 Bump to 23.1.
13490
3e5b7009
GM
13491 * image.el (image-animate-max-time): Fix :version tag.
13492
288f9fc0
CY
134932010-03-10 Chong Yidong <cyd@stupidchicken.com>
13494
13495 * Branch for 23.2.
13496
53ef91b1
SM
134972010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
13498
13499 * vc-git.el (vc-git-revision-table): Include remote branches.
13500
b41460ae 135012010-03-10 Kim F. Storm <storm@cua.dk>
0608aa45
KS
13502
13503 Animated image API.
13504 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
13505
13506 * image.el (image-animate-max-time): New defcustom.
13507 (image-animated-types): New defconst.
13508 (create-animated-image, image-animate-timer)
13509 (image-animate-start, image-animate-stop, image-animate-timeout)
13510 (image-animated-p): New functions.
13511
13512 * image-mode.el (image-toggle-display-image):
13513 Replace `create-image' with `create-animated-image'.
13514
e5d1fb10 135152010-03-09 Miles Bader <miles@gnu.org>
25344b05
MB
13516
13517 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
13518 instead of "format:"; this ensures that the output is
13519 newline-terminated.
13520
4e7cafbe
CY
135212010-03-08 Chong Yidong <cyd@stupidchicken.com>
13522
13523 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
13524 that all errors are caught, and that the return value is always a
13525 list (Bug#5692).
13526
aec66319
KH
135272010-03-08 Kenichi Handa <handa@m17n.org>
13528
13529 * language/misc-lang.el (windows-1256): New coding system.
ebc3ea5c 13530 (cp1256): New alias of windows-1256 (bug#5690).
aec66319 13531
b327c975
AS
135322010-03-07 Andreas Schwab <schwab@linux-m68k.org>
13533
13534 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
13535 call to rfc822-bad-address. (Bug#5692)
13536
1c465a6a
CY
135372010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
13538
85626eef
SM
13539 * vc-git.el (vc-git-annotate-extract-revision-at-line):
13540 Use vc-git-root as default directory for revision path (Bug#5657).
1c465a6a 13541
a4e32226
CY
135422010-03-06 Chong Yidong <cyd@stupidchicken.com>
13543
13544 * calculator.el (calculator): Don't bind split-window-keep-point
13545 (Bug#5674).
13546
4c83ed3d
SM
135472010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
13548
13549 * vc-git.el: Re-flow to fit into 80 columns.
13550 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
13551 Remove spurious `quote' element in each case alternative.
13552 (vc-git-show-log-entry): Use prog1.
13553 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
13554
e8defde3
SM
135552010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
13556
13557 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
13558
233f0c9f
CY
135592010-03-03 Chong Yidong <cyd@stupidchicken.com>
13560
13561 * macros.el (insert-kbd-macro): Look up keyboard macro using the
13562 definition, not the name (Bug#5481).
13563
254bedef 135642010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
bc91aee9
ŠN
13565
13566 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
13567 argument with a local variable. (Bug#5670)
13568
7187cdae
JL
135692010-03-02 Juri Linkov <juri@jurta.org>
13570
13571 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
13572
9cf3544e
MA
135732010-03-02 Michael Albinus <michael.albinus@gmx.de>
13574
13575 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
13576 error when FILENAME and NEWNAME are existing remote directories.
13577
13578 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
13579 parameter DIR-FLAG.
13580
33f77982
GM
135812010-03-02 Glenn Morris <rgm@gnu.org>
13582
13583 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
13584 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
13585
d99ea08e
KH
135862010-03-01 Kenichi Handa <handa@m17n.org>
13587
e8defde3 13588 * language/burmese.el (burmese-composable-pattern): Rename from
d99ea08e
KH
13589 myanmar-composable-pattern.
13590
e8defde3
SM
13591 * international/characters.el (script-list):
13592 * international/fontset.el (script-representative-chars):
13593 Change myanmar to burmese.
d99ea08e 13594 (otf-script-alist): Likewise.
4aa2c3b2
KH
13595 (setup-default-fontset): Likewise. Re-fix :otf spec.
13596
b374f54d
KY
135972010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
13598
13599 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
13600
71572c03
JD
136012010-02-28 Jan Djärv <jan.h.d@swipnet.se>
13602
13603 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
13604
00cffdeb
MA
136052010-02-28 Michael Albinus <michael.albinus@gmx.de>
13606
13607 * net/tramp.el (tramp-handle-write-region): START can be a string.
13608 Take care in the checks. Reported by Dan Davison
13609 <davison@stats.ox.ac.uk>.
13610
d4b06783
MA
136112010-02-28 Michael Albinus <michael.albinus@gmx.de>
13612
13613 * net/dbus.el (dbus-introspect, dbus-get-property)
85626eef
SM
13614 (dbus-set-property, dbus-get-all-properties):
13615 Use `dbus-call-method' when noninteractive. (Bug#5645)
d4b06783 13616
8c3e96d2
CY
136172010-02-28 Chong Yidong <cyd@stupidchicken.com>
13618
de3a1fe9
CY
13619 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
13620 * emacs-lisp/elint.el (elint-add-required-env):
de3a1fe9
CY
13621 * calendar/icalendar.el (icalendar--add-diary-entry):
13622 * calc/calcalg2.el (math-tracing-integral):
8c3e96d2
CY
13623 * files.el (recover-session-finish): Use with-current-buffer
13624 instead of save-excursion.
13625
c53b9c3b
SM
136262010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
13627
13628 Fix in-buffer completion when after-change-functions modify the buffer.
13629 * minibuffer.el (completion--replace): New function.
13630 (completion--do-completion): Use it and use relative movement.
13631
4a16bdc6
CY
136322010-02-27 Chong Yidong <cyd@stupidchicken.com>
13633
13634 * international/fontset.el (setup-default-fontset): Fix :otf spec.
d99ea08e 13635
b8280f39
CY
136362010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
13637
c53b9c3b
SM
13638 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
13639 Allow the characters _<> in the stack entry (Bug#5653).
b8280f39 13640
f88cc4d6
KH
136412010-02-26 Kenichi Handa <handa@m17n.org>
13642
13643 * language/burmese.el: Fix entries in composition-function-table.
13644 (myanmar-composable-pattern): New variable.
13645
13646 * international/fontset.el (setup-default-fontset): Add an entry
13647 for myanmar.
13648
13649 * international/characters.el (script-list): Add Myanmar
13650 Extended-A.
13651
cdbf9100
GM
136522010-02-26 Glenn Morris <rgm@gnu.org>
13653
90a94603
GM
13654 * custom.el (custom-initialize-delay): Doc fix.
13655
cdbf9100
GM
13656 * mail/sendmail.el (send-mail-function): Autoload the call
13657 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
13658
f95a5fd0
CY
136592010-02-24 Chong Yidong <cyd@stupidchicken.com>
13660
13661 * files.el (hack-local-variables-filter): For eval forms, also
13662 check safe-local-variable-p (Bug#5636).
13663
459a5f4b
MA
136642010-02-22 Michael Albinus <michael.albinus@gmx.de>
13665
13666 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
13667 setting the modes by `ignore-errors'. It might fail, for example
13668 if the file is not owned by the user but the group.
13669 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
13670
bb23f6e8
CY
136712010-02-21 Chong Yidong <cyd@stupidchicken.com>
13672
6a7662bb
BR
13673 * files.el (directory-listing-before-filename-regexp):
13674 Use stricter matching for iso-style dates, to avoid false matches with
50c58e27
CY
13675 date-like filenames (Bug#5597).
13676
b660eb70
CY
13677 * htmlfontify.el (htmlfontify): Doc fix.
13678
13679 * eshell/eshell.el (eshell): Doc fix.
13680
bb23f6e8
CY
13681 * startup.el (fancy-about-screen): In mode-line, apply
13682 mode-line-buffer-id face only to the buffer name (Bug#5613).
13683
3e39928c
CY
136842010-02-20 Kevin Ryde <user42@zip.com.au>
13685
f7e0618c
JB
13686 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13687 In `watcom' anchor regexp to start of line, to avoid slowness
3e39928c
CY
13688 (Bug#5599).
13689
0f00e948
EZ
136902010-02-20 Eli Zaretskii <eliz@gnu.org>
13691
13692 * subr.el (remove-yank-excluded-properties): Explain in a comment
13693 why `category' property is removed.
13694
3513efb2
CY
136952010-02-19 Chong Yidong <cyd@stupidchicken.com>
13696
6a7662bb
BR
13697 * isearch.el (isearch-update-post-hook, isearch-update):
13698 Revert 2010-02-17 change.
3513efb2 13699
b4340b3f
UJ
137002010-02-19 Ulf Jasper <ulf.jasper@web.de>
13701
13702 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
13703 (icalendar--convert-weekly-to-ical)
13704 (icalendar--convert-yearly-to-ical)
13705 (icalendar--convert-block-to-ical)
13706 (icalendar--convert-cyclic-to-ical)
13707 (icalendar--convert-anniversary-to-ical): Take care of time
13708 specifications where hour has 1-digit only (Bug#5549).
13709
8cfae03d
NR
137102010-02-19 Nick Roberts <nickrob@snap.net.nz>
13711
13712 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
13713 of disassemble output in GDB 7.1.
13714
055e4eea
GM
137152010-02-19 Glenn Morris <rgm@gnu.org>
13716
13717 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
13718 property. (Bug#5593)
13719
ff6b00de
SS
137202010-02-18 Sam Steingold <sds@gnu.org>
13721
13722 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
13723
fe8c0b47
SM
137242010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
13725
13726 Use abbreviated file names in bookmarks (bug#5591).
13727 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
13728 calls to expand-file-name.
13729 (bookmark-relocate): Use abbreviated file names in bookmarks.
13730 (bookmark-load): Use abbreviated file names in messages.
13731
73a37a69
MA
137322010-02-18 Michael Albinus <michael.albinus@gmx.de>
13733
13734 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
13735 expand "." and "..". Reported by Thierry Volpiatto
13736 <thierry.volpiatto@gmail.com>.
13737
6e4f5731
MA
137382010-02-18 Michael Albinus <michael.albinus@gmx.de>
13739
13740 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
13741 permissions of the temporary file to "0600". In case the remote
13742 file has no read permissions for the owner, there might be
13743 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
13744
1374522010-02-18 Glenn Morris <rgm@gnu.org>
b788a98d
GM
13746
13747 * emacs-lisp/authors.el (authors-renamed-files-alist):
13748 Add entries for INSTALL.CVS.
13749
ba5bf642
MH
137502010-02-17 Mark A. Hershberger <mah@everybody.org>
13751
f7e0618c 13752 * vc-bzr.el: Fix typo in Known Bugs section.
ba5bf642 13753
f7e0618c 13754 * isearch.el (isearch-update-post-hook): New hook.
ba5bf642
MH
13755 (isearch-update): Use the new hook.
13756
aac0b0f2
MA
137572010-02-16 Michael Albinus <michael.albinus@gmx.de>
13758
fe8c0b47
SM
13759 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
13760 Fix errors in copying directories.
aac0b0f2
MA
13761 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
13762 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
13763 (tramp-handle-delete-file)
13764 (tramp-handle-dired-recursive-delete-directory)
13765 (tramp-handle-write-region): Flush also the cache for the upper
13766 directory.
13767
05bbe066
CY
137682010-02-16 Chong Yidong <cyd@stupidchicken.com>
13769
e8ab3908
CY
13770 * simple.el (save-interprogram-paste-before-kill): Doc fix.
13771
ff90f4b0
CY
13772 * cus-edit.el (hardware): Doc fix.
13773
13774 * man.el (man): Add to external custom group.
13775
13776 * delim-col.el (columns): Move to wp custom group.
13777
13778 * doc-view.el (doc-view): Add to data custom group.
13779
fe8c0b47 13780 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
ff90f4b0 13781
05bbe066
CY
13782 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
13783 by ispell-parse-output (Bug#5575).
13784
fa6ea913
KH
137852010-02-16 Kenichi Handa <handa@m17n.org>
13786
13787 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
13788 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
13789 (skkdic-convert): Use `euc-japan' coding system for writing.
13790
88fd78ae
GM
137912010-02-16 Glenn Morris <rgm@gnu.org>
13792
13793 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
13794 tex-main-file before using it. (Bug#5562)
13795
2b8c974a
SM
137962010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
13797
13798 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
13799 warnings, since it is annoying for the user to see them each time he
13800 runs the code.
13801
7540f029
MA
138022010-02-15 Michael Albinus <michael.albinus@gmx.de>
13803
13804 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
13805 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
13806 instead of PROC for caching "first-password-request". Otherwise,
13807 new processes would not profit from passwords already entered.
13808
2b8c974a
SM
13809 * net/tramp-cache.el (tramp-dump-connection-properties):
13810 Don't save "first-password-request" property.
7540f029 13811
fa5f7c5f
JB
138122010-02-14 Juanma Barranquero <lekktu@gmail.com>
13813
13814 * outline.el (outline-head-from-level):
13815 * simple.el (with-wrapper-hook):
fa5f7c5f
JB
13816 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
13817 (elint-defun, elint-buffer-env, elint-top-form-logged)
13818 (elint-unbound-variable):
13819 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
13820 Fix typos in docstrings.
13821
ecbaeb7b
MA
138222010-02-14 Michael Albinus <michael.albinus@gmx.de>
13823
13824 * files.el (insert-directory): When WILDCARD-REGEXP and
13825 FULL-DIRECTORY-P are nil, insert the file entry instead of the
13826 whole directory. (Bug#5551)
13827
13828 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
13829 dired's alignment sanity. (Bug#5516)
13830
91e3333f
JL
138312010-02-14 Juri Linkov <juri@jurta.org>
13832
13833 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
13834 Remove remaining ^H with their preceding chars. (Bug#5566)
13835
36020642
GM
138362010-02-13 Glenn Morris <rgm@gnu.org>
13837
13838 * simple.el (transpose-subr): Give it a doc-string.
13839
13840 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
13841 Doc fixes.
13842
f5952338
JL
138432010-02-12 Juri Linkov <juri@jurta.org>
13844
13845 * arc-mode.el (archive-unique-fname): Make directories for nested
13846 archives. (Bug#5540)
13847
918fe50f
JL
138482010-02-12 Juri Linkov <juri@jurta.org>
13849
13850 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
13851
c07ff221
SM
138522010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
13853
48b1e7cf
SM
13854 * subr.el (copy-overlay): Handle deleted overlays.
13855
c07ff221
SM
13856 * man.el (Man-completion-table): Don't signal an error if we can't run
13857 manual-program (bug#4056).
13858
0e374247
JB
138592010-02-10 Juanma Barranquero <lekktu@gmail.com>
13860
13861 * textmodes/artist.el (artist-mt): Fix typos in docstring.
13862
dbf8402b
SM
138632010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13864
348d1e60
SM
13865 * info.el (Info-bookmark-jump): Simplify.
13866
dbf8402b
SM
13867 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
13868 (bookmark-default-handler): Accept new bookmark field `buffer'.
13869
e6d23bb5
CY
138702010-02-10 Chong Yidong <cyd@stupidchicken.com>
13871
13872 * iswitchb.el (iswitchb-completions): Revert last change.
13873
a8e4290b
MA
138742010-02-10 Michael Albinus <michael.albinus@gmx.de>
13875
2b23acde 13876 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
348d1e60
SM
13877 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
13878 This prevents file names like "~/" being listed literally.
a8e4290b 13879
c59d6fad
DN
138802010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
13881
348d1e60
SM
13882 * term/xterm.el (xterm-maybe-set-dark-background-mode):
13883 Remove dead code. (Bug#5546)
c59d6fad 13884
3a66e78f
CY
138852010-02-09 Chong Yidong <cyd@stupidchicken.com>
13886
13887 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
13888 correctly (Bug#5548).
13889
f29fd869
CY
138902010-02-08 Jose E. Marchesi <jemarch@gnu.org>
13891
13892 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
fe8c0b47 13893 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
f29fd869 13894
7fad1447
KH
138952010-02-08 Kenichi Handa <handa@m17n.org>
13896
13897 * international/mule-util.el (with-coding-priority): Add autoload
48c2d18a 13898 cookie for putting `lisp-indent-function'.
7fad1447 13899
50e4518b
GM
139002010-02-07 Glenn Morris <rgm@gnu.org>
13901
13902 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
13903 Move F2003 named interfaces from keywords-2 to keywords-1, and
13904 use function-name-face rather than constant-face.
13905 Simplify "abstract interface" regexp.
13906
a4cc44cf
CY
139072010-02-07 Chong Yidong <cyd@stupidchicken.com>
13908
13909 * eshell/esh-util.el (eshell-file-attributes): New optional arg
13910 ID-FORMAT. Pass it to `file-attributes'.
13911
13912 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
13913
c917476d
CY
139142010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
13915
13916 * faces.el (set-face-attribute): Allow calling
13917 internal-set-lisp-face-attribute with 'unspecified family and
13918 foundry argument (Bug#5536).
13919
7cf3f3d6
GM
139202010-02-07 Glenn Morris <rgm@gnu.org>
13921
13922 * progmodes/f90.el (f90-font-lock-keywords-2)
13923 (f90-looking-at-type-like, f90-looking-at-program-block-end):
13924 Handle F2003 named interfaces.
13925
ffe87109
CY
139262010-02-06 Chong Yidong <cyd@stupidchicken.com>
13927
13928 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
13929 beg and end before calling c-get-state-before-change-functions.
13930
4775ecad
DN
139312010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
13932
33aeea0e
SM
13933 * vc-bzr.el (vc-bzr-dir-extra-headers):
13934 Disable the pending merges header.
4775ecad 13935
0d17c4b9
JL
139362010-02-05 Juri Linkov <juri@jurta.org>
13937
13938 * doc-view.el (doc-view-mode):
13939 * image-mode.el (image-mode): Put property mode-class=special.
13940 (Bug#4896)
13941
8228a275
MH
139422010-02-05 Mark A. Hershberger <mah@everybody.org>
13943
13944 * vc-svn.el (vc-svn-revision-table): New function.
13945
d9320986
MA
139462010-02-05 Michael Albinus <michael.albinus@gmx.de>
13947
13948 * net/ange-ftp.el (ange-ftp-insert-directory):
13949 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
13950 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
13951 Handle also directories. (Bug#5478)
13952
f43d8ecc
GM
139532010-02-05 Glenn Morris <rgm@gnu.org>
13954
13955 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
13956
ce3a988d
CY
139572010-02-05 Chong Yidong <cyd@stupidchicken.com>
13958
13959 * startup.el (command-line-1): Convert options beginning with a
13960 single dash as well (Bug#5519).
13961
bdd42899
SM
139622010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
13963
51b23c44
SM
13964 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
13965 * minibuffer.el (completion-initials-expand): Only check the presence
13966 of delims *within* the boundaries, since otherwise the / delim is
13967 always found for files.
13968
bdd42899
SM
13969 Fix up various corner case problems.
13970 * doc-view.el (doc-view-last-page-number): New function.
13971 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
13972 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
13973 (doc-view-kill-proc): Avoid inf-loop in freak cases.
13974 (doc-view-reconvert-doc): Use the new recursive delete-directory.
13975 (doc-view-convert-current-doc): Don't create the resolution.el file
13976 here any more.
13977 (doc-view-pdf/ps->png): Do it here instead.
13978 (doc-view-already-converted-p): Check that resolution.el is present.
13979 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
13980 windows that are not yet showing images.
13981
d5b3979c
MA
139822010-02-04 Michael Albinus <michael.albinus@gmx.de>
13983
13984 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
13985 `dired-uncache' for every elemnt which is an absolute file name.
13986
13987 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
13988 directory, handle its directory component.
13989 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
13990 function is called permanently and creates noise, otherwise.
13991
13992 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
13993 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
13994 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
13995
b003beb1
DB
139962010-02-04 David Burger <dburger@google.com> (tiny change)
13997
13998 * macros.el (apply-macro-to-region-lines):
13999 Minor simplification. (Bug#5485)
14000
ea92f9f3
GM
140012010-02-04 Glenn Morris <rgm@gnu.org>
14002
a03ae20d
GM
14003 * mail/rmail.el (rmail-show-message-1): Handle malformed
14004 quoted-printable text. (Bug#5441)
14005
4d01b827
GM
14006 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
14007
ea92f9f3
GM
14008 * simple.el (visual-line-mode): Capitalize lighter.
14009
82055bb7
JW
140102010-02-03 John Wiegley <jwiegley@gmail.com>
14011
14012 * iswitchb.el (iswitchb-completions): Add bookmark files to the
14013 list of files considered for "virtual buffer" completions.
14014
8214b6e4
MA
140152010-02-03 Michael Albinus <michael.albinus@gmx.de>
14016
14017 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
dd86ea11 14018 also in case of (and (not full) (not wildcard)). This is needed
8214b6e4
MA
14019 when dired is called with a list of files, which are not in
14020 `default-directory'. (Bug#5478)
14021
1df9718f
SM
140222010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
14023
14024 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
14025
02ba1267
JL
140262010-02-02 Juri Linkov <juri@jurta.org>
14027
14028 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
14029 from unidiff to allow function-line after @@.
14030
a0c6a0fb
JL
140312010-02-02 Juri Linkov <juri@jurta.org>
14032
14033 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
14034 '(RCS SCCS) with inverted condition.
14035
c35fcd52
MA
140362010-02-02 Michael Albinus <michael.albinus@gmx.de>
14037
14038 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
14039 messages.
14040
6ba973c1
JL
140412010-02-01 Juri Linkov <juri@jurta.org>
14042
14043 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
14044 compare with "pkunzip" and "pkzip" instead of only "pkzip".
14045 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
14046 only when (car archive-zip-extract) is "unzip". (Bug#5475)
14047
0bca393f
SM
140482010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
14049
14050 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
14051 (doc-view-revert-buffer): New command.
14052 (doc-view-mode-map): Use it.
14053
7a444e2a
DN
140542010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
14055
14056 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
14057 pending merge is detected.
14058
ad6fc8f4
JL
140592010-01-31 Juri Linkov <juri@jurta.org>
14060
14061 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
14062 beginning of interactive spec like all other grep commands do.
14063 Put "all" in front of "gz". (Bug#5260)
14064
b9236874
DN
140652010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
14066
14067 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
14068
1e868757
CY
140692010-01-29 Chong Yidong <cyd@stupidchicken.com>
14070
14071 * dirtrack.el (dirtrack): Warn instead of signalling error if the
14072 regexp is incorrect (Bug#5476).
14073
e5c70c41
MA
140742010-01-29 Michael Albinus <michael.albinus@gmx.de>
14075
14076 * net/tramp.el (tramp-handle-insert-directory): Handle also
14077 symlinks, when FILENAME is not in `default-directory'.
14078
0c0b61f1
MA
140792010-01-28 Michael Albinus <michael.albinus@gmx.de>
14080
14081 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
e5c70c41 14082 FILE is not in `default-directory'. (Bug#5478)
0c0b61f1
MA
14083
14084 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
14085 of SWITCHES. Handle the case, FILENAME is not in
14086 `default-directory'. (Bug#5478)
14087 (tramp-register-file-name-handlers): Add safe-magic property.
14088
763f325e
CY
140892010-01-28 Chong Yidong <cyd@stupidchicken.com>
14090
14091 * arc-mode.el (archive-zip-extract): Quote the argument passed to
14092 unzip (Bug#5475).
14093
fd09a83f
CY
140942010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
14095
14096 * progmodes/flymake.el (flymake-allowed-file-name-masks)
14097 (flymake-master-make-header-init): Add other C++ filename masks.
14098 (flymake-find-possible-master-files)
14099 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
14100
7e5686f0
MA
141012010-01-28 Michael Albinus <michael.albinus@gmx.de>
14102
14103 Fix some busybox annoyances.
14104
14105 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
14106 not responding." string.
14107 (tramp-open-connection-setup-interactive-shell): Dump stty
14108 settings. Enable "neveropen" arg for all `tramp-send-command'
14109 calls. Handle "=" in variable values properly.
14110 (tramp-find-inline-encoding): Raise an error, when no encoding is
14111 found.
14112 (tramp-wait-for-output): Check, whether PROC buffer is available.
14113 Remove spurious " ^H" sequences, sent by busybox.
14114 (tramp-get-ls-command): Suppress coloring, if possible.
14115
c6265c10
GM
141162010-01-28 Glenn Morris <rgm@gnu.org>
14117
c85a168b
GM
14118 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
14119
c6265c10
GM
14120 * log-edit.el (log-edit-strip-single-file-name): Add missing
14121 :safe, :group, and :version tags.
14122
7d82a738
SB
141232010-01-27 Stephen Berman <stephen.berman@gmx.net>
14124
14125 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
14126 buffers. (Bug#5477)
14127
8b0e68ea
CY
141282010-01-27 David De La Harpe Golden <david@harpegolden.net>
14129
14130 * files.el (delete-directory): Handle moving to trash without
14131 first doing recursion (Bug#5436).
14132
368d3208
DN
141332010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
14134
14135 * vc-hooks.el (vc-path): Mark as obsolete.
14136
755da7fa
DN
141372010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
14138
e2396d80
DN
14139 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
14140 names too.
14141
755da7fa
DN
14142 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
14143 for the short log.
14144 (vc-bzr-log-view-mode): Adjust regexp for the above change.
14145
6a6d15ab 141462010-01-25 Mark A. Hershberger <mah@everybody.org>
aaef4f91 14147
ac9ffe99 14148 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
d9de6d6f 14149
48c2d18a 14150 * vc-bzr.el (vc-bzr-revision-table): New function.
aaef4f91 14151
25f38310 141522010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com>
504dcc71
EH
14153
14154 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
14155 diff-index command. This requires at least git-1.5.5. (Bug#1589).
14156
51850286
DN
141572010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
14158
c2f1d6d8
DN
14159 Remove support for adding --signoff on commit.
14160 Future support will use an incompatible generic mechanism.
14161 * vc-git.el (vc-git-add-signoff): Remove variable.
14162 (vc-git-toggle-signoff): Remove function.
14163 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
14164
6a7662bb
BR
14165 * term/xterm.el (xterm-maybe-set-dark-background-mode):
14166 Rename from xterm-set-background-mode. Return t if the background mode
51850286
DN
14167 was set.
14168 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
14169 earlier, call it again in case the background mode has changed.
14170
02c6d0d0
CY
141712010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
14172
14173 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
14174 (Bug#3541).
14175
064eee03
CY
141762010-01-23 Chong Yidong <cyd@stupidchicken.com>
14177
02c6d0d0
CY
14178 * emacs-lisp/assoc.el (aelement): Doc fix.
14179 (aput, adelete, amake): Use lexical-let (Bug#5450).
064eee03 14180
5336c3ec 141812010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
afb5d709 14182
48c2d18a 14183 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
afb5d709
SL
14184 is the same as subprogram call, not declaration. (Bug#5435).
14185
0536254e
MA
141862010-01-23 Michael Albinus <michael.albinus@gmx.de>
14187
14188 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
14189 (tramp-smb-maybe-open-connection): Use it.
14190
411d06c2
MA
141912010-01-22 Michael Albinus <michael.albinus@gmx.de>
14192
0536254e 14193 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
411d06c2 14194
c893016b
SM
141952010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
14196
14197 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
14198 just because we see "encoding: 8bit".
14199 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
14200
9425f8e1
CY
142012010-01-22 Chong Yidong <cyd@stupidchicken.com>
14202
14203 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
14204
6a801864
EZ
142052010-01-22 Eli Zaretskii <eliz@gnu.org>
14206
14207 * jka-compr.el (jka-compr-load): If load-file is not in
14208 load-history, try its file-truename version. (bug#5447)
14209
3e8f7d91
AM
142102010-01-21 Alan Mackenzie <acm@muc.de>
14211
14212 Fix a situation where deletion of a cpp construct throws an error.
537ffaf3
SM
14213 * progmodes/cc-engine.el (c-invalidate-state-cache):
14214 Before invoking c-with-all-but-one-cpps-commented-out, check that the
3e8f7d91
AM
14215 special cpp construct is still in the buffer.
14216 (c-parse-state): Record the special cpp with markers, not numbers.
14217
f0bd0ad5
CY
142182010-01-21 Kenichi Handa <handa@m17n.org>
14219
14220 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
14221 process last-command-event, as it is now decoded first (Bug#5380).
14222
5189d95b
CY
142232010-01-20 Chong Yidong <cyd@stupidchicken.com>
14224
14225 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
14226
e073d74a
GM
142272010-01-20 Glenn Morris <rgm@gnu.org>
14228
14229 * indent.el (tab-always-indent): Fix custom-type.
14230
8ee04f3a
AM
142312010-01-19 Alan Mackenzie <acm@muc.de>
14232
14233 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
14234 buffer throws "args out of range".
14235 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
14236 playing the role of delimiter.
14237
6a47c86a
SL
142382010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
14239
bf0b361c 14240 * progmodes/ada-mode.el: Fix bug#5400.
6a47c86a
SL
14241 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
14242 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
14243 changed. Delete RECURSIVE parameter; never used. Improve doc string.
14244 Improve comments in "is" portion. Handle null procedure declaration.
14245 (ada-move-to-end): Improve doc string.
14246
2acfb954
ÓF
142472010-01-18 Óscar Fuentes <ofv@wanadoo.es>
14248
e90d57c0 14249 * ido.el (ido-cur-list): Initialize to nil.
2acfb954 14250 Remove obsolete information from commentary.
e90d57c0
JB
14251 (ido-choice-list): Initialize to nil.
14252 (ido-get-bufname): Reject minibuffers.
14253 (ido-make-buffer-list): If "default" is a nonexistent
14254 buffer, ignore it, as per the function's comment.
14255 (ido-kill-buffer-internal): New function.
14256 (ido-kill-buffer-at-head): Use it.
14257 (ido-visit-buffer): Likewise.
2acfb954 14258
244b023e
CY
142592010-01-18 Chong Yidong <cyd@stupidchicken.com>
14260
14261 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
14262
db9e401b
JB
142632010-01-18 Juanma Barranquero <lekktu@gmail.com>
14264
db9e401b
JB
14265 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
14266 Fix typos in chart titles.
14267
14268 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
db9e401b
JB
14269 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
14270 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
14271 (describe-class, eieio-describe-generic, describe-generic):
14272 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
14273 (eieio-speedbar-expand):
14274 * emulation/viper-cmd.el (viper-exec-form-in-vi)
14275 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
14276 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
14277 (viper-del-backward-char-in-replace, viper-backward-indent)
14278 (viper-brac-function, viper-register-to-point, viper-submit-report):
14279 * net/tramp.el (tramp-remote-coding-commands):
14280 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
14281 Fix typos in docstrings.
14282
9295137d
CY
142832010-01-17 Chong Yidong <cyd@stupidchicken.com>
14284
14285 * mail/sendmail.el (mail-yank-original): Set the mark if the
14286 specified function for yanking does not do it.
14287
4d0bbcb6
DN
142882010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
14289
7902c120
DN
14290 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
14291
4d0bbcb6
DN
14292 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
14293 resyncing a directory.
14294
0b702bc1
SL
142952010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
14296
6a47c86a 14297 * progmodes/ada-mode.el: Fix bug#1920.
0b702bc1
SL
14298 (ada-ident-re): Delete ., allow multibyte characters.
14299 (ada-goto-label-re): New; matches goto labels.
14300 (ada-block-label-re): New; matches block labels.
14301 (ada-label-re): New; matches both.
5f9d345c 14302 (ada-named-block-re): Delete; callers changed to use
0b702bc1
SL
14303 `ada-block-label-re' instead.
14304 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
14305 Use `ada-block-label-re'.
14306 (ada-indent-on-previous-lines): Improve handling of goto labels.
14307 (ada-get-indent-block-start): Special-case block label.
14308 (ada-get-indent-label): Split into `ada-indent-block-label' and
14309 `ada-indent-goto-label'.
14310 (ada-goto-stmt-start, ada-goto-next-non-ws):
14311 Optionally ignore goto labels.
14312 (ada-goto-next-word): Simplify.
14313 (ada-indent-newline-indent-conditional): Insert newline before
14314 trying to fix indentation; doc fix.
14315
05287c49
JB
143162010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
14317
14318 * calc/calc.el (calc-command-flags): Give it an initial value.
14319
4963739e
JB
143202010-01-17 Juanma Barranquero <lekktu@gmail.com>
14321
4963739e
JB
14322 * files.el (minibuffer-with-setup-hook):
14323 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
14324 (artist-key-draw-continously, artist-key-do-continously-continously)
14325 (artist-key-set-point-continously, artist-mouse-draw-continously):
14326 Fix typos in docstrings.
14327
116bd1ee
CY
143282010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
14329
6a7662bb
BR
14330 * nxml/nxml-mode.el (nxml-extend-after-change-region):
14331 Never return t (Bug#3898).
116bd1ee 14332
2784cd7a 143332010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
d4efdaea
CY
14334
14335 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
14336 can parse the output of the external commands (Bug#5279).
14337
abd5cfe8
CY
143382010-01-16 Jari Aalto <jari.aalto@cante.net>
14339
14340 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
14341
4fe22cdf
CY
143422010-01-16 Chong Yidong <cyd@stupidchicken.com>
14343
bbdc98ef
CY
14344 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
14345
c7dc1ac1
CY
14346 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
14347
4fe22cdf
CY
14348 * startup.el (command-line): Remove unused --icon-type arg.
14349 Handle --display arg, passing it to command-line-1 (Bug#5392).
14350
045b9da7
ML
143512010-01-16 Mario Lang <mlang@delysid.org>
14352
045b9da7
ML
14353 * emacs-lisp/chart.el (chart-translate-namezone):
14354 * textmodes/artist.el (artist-compute-popup-menu-table):
14355 Remove duplicated words in doc-strings.
14356
6554a5df
CY
143572010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
14358
14359 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
14360 to mairix-search to suppress threading (Bug#5342).
14361
ca4f0e9a
KH
143622010-01-15 Kenichi Handa <handa@m17n.org>
14363
14364 * international/mule-cmds.el (canonicalize-coding-system-name):
b7235808 14365 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
ca4f0e9a 14366
1db3226b
GM
143672010-01-15 Glenn Morris <rgm@gnu.org>
14368
56a03f46
GM
14369 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
14370
14371 * wid-edit.el (widget-keymap): Doc fix.
14372
1db3226b
GM
14373 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
14374 former seems to be more widely accepted by various svn versions.
14375
80cd4bb4
JB
143762010-01-14 Juanma Barranquero <lekktu@gmail.com>
14377
d1f18ec0
JB
14378 * find-cmd.el (find-constituents):
14379 * vc-arch.el (vc-arch-root):
14380 * window.el (window-body-height, pop-up-frames):
d1f18ec0
JB
14381 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
14382 * progmodes/ada-stmt.el (ada-if):
14383 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
14384 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
14385 (ispell-encoding8-command, ispell-aspell-supports-utf8)
14386 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
14387
80cd4bb4
JB
14388 * progmodes/flymake.el (flymake-post-syntax-check):
14389 Fix typo in error message.
14390
9c23ca47
JB
143912010-01-14 Juanma Barranquero <lekktu@gmail.com>
14392
14393 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
14394 which is always a string. (Bug#5313)
14395
8794c483
JB
143962010-01-14 Juanma Barranquero <lekktu@gmail.com>
14397
14398 * progmodes/ada-xref.el (ada-default-prj-properties):
14399 Simplify previous change.
14400
95005d39
SL
144012010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14402
14403 * progmodes/ada-xref.el (ada-default-prj-properties):
14404 Default ada_project_path to $ADA_PROJECT_PATH.
14405
144062010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
80e18d20
SL
14407
14408 * progmodes/ada-mode.el (ada-create-keymap):
14409 Override `narrow-to-defun' with `ada-narrow-to-defun'.
14410
fb0d1545
SL
144112010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14412
14413 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
14414 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
14415 (ada-get-current-indent, ada-imenu-generic-expression)
14416 (ada-which-function): Check for it.
14417
5c9434d0
SL
144182010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
14419
14420 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
14421 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
14422
3a4f3a3b
GM
144232010-01-14 Glenn Morris <rgm@gnu.org>
14424
14425 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
14426
d9a7c140
KH
144272010-01-14 Kenichi Handa <handa@m17n.org>
14428
14429 * composite.el (auto-composition-mode): Make it a buffer local
14430 variable (permanent-local).
14431 (auto-composition-function): Set the default value to
14432 auto-compose-chars.
49caf252 14433 (auto-composition-mode): Make it a simple function, not a minor mode.
d9a7c140
KH
14434 (global-auto-composition-mode): Likewise.
14435 (turn-on-auto-composition-if-enabled): Delete it.
49caf252 14436
38bee102
KF
144372010-01-13 Karl Fogel <kfogel@red-bean.com>
14438
14439 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
d9a7c140 14440
b8b45afc
MA
144412010-01-12 Michael Albinus <michael.albinus@gmx.de>
14442
14443 * files.el (copy-directory): Compute target for recursive
14444 directories with identical names. (Bug#5343)
14445
893db5bc
GM
144462010-01-12 Glenn Morris <rgm@gnu.org>
14447
6a7662bb
BR
14448 * mail/emacsbug.el (report-emacs-bug-pretest-address):
14449 Set it to bug-gnu-emacs rather than emacs-pretest-bug.
893db5bc 14450
d8b8451f
SS
144512010-01-11 Sam Steingold <sds@gnu.org>
14452
14453 * imenu.el (imenu-default-create-index-function): Detect infinite
14454 loops caused by imenu-prev-index-position-function.
14455
30afcdff
JB
144562010-01-11 Juanma Barranquero <lekktu@gmail.com>
14457
14458 * htmlfontify.el (htmlfontify-load-rgb-file)
14459 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
14460 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
14461 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
14462 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
14463 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
14464 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
14465 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
14466 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
14467 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
14468 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
14469 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
14470 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
14471 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
14472 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
14473 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
14474 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
14475 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
14476 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
14477 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
14478 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
14479 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
14480 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
14481 backslash-quoting from parentheses, etc.
14482
92b1c416
CY
144832010-01-11 Chong Yidong <cyd@stupidchicken.com>
14484
14485 * progmodes/js.el: Autoload javascript-mode alias.
14486
4454adab
JB
144872010-01-11 Juanma Barranquero <lekktu@gmail.com>
14488
14489 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
14490 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
14491 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
14492 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
14493 Fix typos in docstrings.
14494 (ffap-url-regexp): Doc fix.
14495 (ffap-at-mouse): Fix typo in message.
14496
6589a2f9
GM
144972010-01-11 Glenn Morris <rgm@gnu.org>
14498
14499 * version.el (emacs-copyright): Set copyright year to 2010.
14500
4e5617ee
SM
145012010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
14502
14503 * format.el (format-annotate-function): Only set
14504 write-region-post-annotation-function after running to-fn so as not to
14505 affect nested write-region calls (bug#5273).
14506
52bee098
CY
145072010-01-10 Chong Yidong <cyd@stupidchicken.com>
14508
a069f067
CY
14509 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
14510 wisent/python.el.
14511
e709e39d
CY
145122010-01-09 Chong Yidong <cyd@stupidchicken.com>
14513
14514 * man.el (Man-goto-section): Signal error if the section is not
14515 found (Bug#5317).
14516
6ee86780
JB
145172010-01-09 Juanma Barranquero <lekktu@gmail.com>
14518
14519 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
14520 URLs with a leading triple slash in the file: scheme. (Bug#5345)
14521
fa7b5f7b
CY
145222010-01-09 Chong Yidong <cyd@stupidchicken.com>
14523
14524 * progmodes/compile.el: Don't treat compile-command as safe if
14525 compilation-read-command might be nil (Bug#4218).
14526
de62c4d9
JD
145272010-01-09 Jan Djärv <jan.h.d@swipnet.se>
14528
14529 * startup.el (command-line-1): Use orig-argi to check for ignored X and
14530 NS options.
14531
e94be827
KH
145322010-01-08 Kenichi Handa <handa@m17n.org>
14533
4e5617ee
SM
14534 * international/fontset.el (build-default-fontset-data):
14535 Exclude characters in scripts kana, hangul, han, or cjk-misc.
e94be827 14536
1dfae2a2
JB
145372010-01-07 Juanma Barranquero <lekktu@gmail.com>
14538
14539 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
14540 to `create-file-buffer' as it expects, not just a buffer name.
14541 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
14542 to help uniquify. (Bug#3224)
14543
d0cf45b7
JD
145442010-01-06 Jan Djärv <jan.h.d@swipnet.se>
14545
14546 * font-setting.el (font-setting-change-default-font): Use user-spec
14547 instead of name.
14548
7534fa5e
DN
145492010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
14550
14551 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
14552
fd579fdc
CY
145532010-01-05 Tom Tromey <tromey@redhat.com>
14554
4e5617ee
SM
14555 * progmodes/python.el (python-font-lock-keywords):
14556 Handle qualified decorators (Bug#881).
fd579fdc 14557
37860caf
DN
145582010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
14559
14560 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
14561 in a lightweight checkout.
14562
69db641d
KH
145632010-01-05 Kenichi Handa <handa@m17n.org>
14564
4e5617ee 14565 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
69db641d 14566
b25d6a02
DN
145672010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
14568
14569 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
14570
137d88ca
DN
145712010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
14572
14573 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
14574 checkouts. (Bug#618)
3d5d0aa9 14575 (vc-bzr-log-view-mode): Also highlight the author.
8e7e2286
DN
14576 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
14577 (vc-bzr-shelve-menu-map):
14578 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
14579 (vc-bzr-shelve-apply): Make prompt more explicit.
137d88ca 14580
da76998b
CY
145812010-01-02 Chong Yidong <cyd@stupidchicken.com>
14582
14583 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
14584 They are valid characters in URL paths (rfc3986), and at least
14585 Firefox does not understand the encoded version (Bug#3166).
14586
b2ad70b6
CY
145872010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
14588
14589 * progmodes/octave-mod.el (octave-end-keywords)
4e5617ee
SM
14590 (octave-block-begin-or-end-regexp, octave-block-match-alist):
14591 Add "end" keyword (Bug#3061).
b2ad70b6
CY
14592 (octave-end-as-array-index-p): New function.
14593 (calculate-octave-indent): Use it.
14594
54136282
KF
145952010-01-02 Karl Fogel <kfogel@red-bean.com>
14596
14597 * bookmark.el: Consistently put the text property on the bookmark name.
14598 (bookmark-bmenu-marks-width): Bump back to 2, to include
14599 annotation marks.
14600 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
14601 property on the bookmark name, instead of not putting it at all.
14602 (bookmark-bmenu-list): Fix where we put the text property.
14603
cc4d3cad
KF
146042010-01-02 Karl Fogel <kfogel@red-bean.com>
14605
14606 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
14607 for showing buffer modified state (as added in the previous change).
14608
b894c439
KF
146092010-01-02 Karl Fogel <kfogel@red-bean.com>
14610
14611 * bookmark.el: Show modified state of bookmark buffer more accurately.
14612 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
14613 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
14614 (with-buffer-modified-unmodified): New macro.
14615 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
14616 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
cc4d3cad 14617 Use new macro to preserve the buffer modified state.
b894c439 14618
3a69db53
KF
146192010-01-02 Karl Fogel <kfogel@red-bean.com>
14620
4e5617ee 14621 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
3a69db53
KF
14622 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
14623 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
14624 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
14625 (bookmark-bmenu-rename, bookmark-bmenu-locate)
4e5617ee
SM
14626 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
14627 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
3a69db53 14628
af414f10
EZ
146292010-01-02 Eli Zaretskii <eliz@gnu.org>
14630
4e5617ee
SM
14631 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
14632 Make the lines in the generated doc string shorter. (Bug#4668)
af414f10 14633
f2ec0e5e
CY
146342010-01-02 Ryan Yeske <rcyeske@gmail.com>
14635
14636 * net/rcirc.el: Add follow-link binding (Bug#4738).
14637
38c1ba62
EZ
146382010-01-02 Eli Zaretskii <eliz@gnu.org>
14639
4e5617ee 14640 * Makefile.in (bzr-update): Rename from cvs-update.
38c1ba62
EZ
14641 (cvs-update): New target for backward compatibility.
14642
4e5617ee 14643 * makefile.w32-in (bzr-update): Rename from cvs-update.
38c1ba62
EZ
14644 (cvs-update): New target for backward compatibility.
14645
ea2c0f5b
KF
146462010-01-02 Karl Fogel <kfogel@red-bean.com>
14647
14648 * bookmark.el: Remove gratuitous gratitude.
14649
5ae329f4
KF
146502010-01-02 Karl Fogel <kfogel@red-bean.com>
14651
c4cc8b9a 14652 * bookmark.el (bookmark-bmenu-any-marks): New function.
47989945
KF
14653 (bookmark-bmenu-save): Clear buffer modification if no marks.
14654
146552010-01-02 Karl Fogel <kfogel@red-bean.com>
14656
14657 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
5ae329f4
KF
14658 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
14659 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
14660 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
14661
14662 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
14663 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
14664 To: emacs-devel {_AT_} gnu.org
14665 Subject: bookmark.el bug report
14666 Date: Mon, 28 Dec 2009 14:19:16 +0800
14667 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
14668
aef053eb
KF
146692010-01-02 Karl Fogel <kfogel@red-bean.com>
14670
14671 * bookmark.el: Improvements suggested by Drew Adams:
14672 (bookmark-bmenu-ensure-position): New name for
14673 `bookmark-bmenu-check-position'. Just ensure the position,
14674 don't return any meaningful value.
14675 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
14676 New constants.
14677
0472835f
JB
146782010-01-02 Juanma Barranquero <lekktu@gmail.com>
14679
14680 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
14681 (bookmark-yank-point, bookmark-bmenu-check-position):
14682 Fix typos in docstrings.
14683 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
14684 (bookmark-name-from-full-record, bookmark-get-position)
14685 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
14686 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
14687 Remove useless quoting of parenthesis, etc. in docstrings.
14688
14689 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
14690 (ediff-append-custom-diff): Fix typo in error message.
14691 (ediff-meta-mark-equal-files): Fix typos in messages.
14692
14693 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
14694
0472835f
JB
14695 * net/imap-hash.el (imap-hash-make): Doc fix.
14696 (imap-hash-test): Fix typo in error message; reflow docstring.
14697 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
14698 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
14699 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
14700 Fix typos in docstrings.
14701 (imap-hash-open-connection): Fix typo in error message.
14702
14703 * play/gomoku.el (gomoku): Fix typos in docstring.
14704
14705 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
14706 (gdb-jsonify-buffer): Fix typos in docstring.
14707 (gdb-goto-breakpoint): Fix typo in error message.
14708 ("Display Other Windows"): Fix typo in help message.
14709 (gdb-speedbar-expand-node): Fix typo in question.
14710
14711 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
14712 (idlwave-html-system-help-location, idlwave-html-help-location)
14713 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
14714 (idlwave-help-browser-generic-args, idlwave-help-directory)
14715 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
14716 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
14717 (idlwave-online-help, idlwave-help-html-link)
14718 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
14719 Fix typos in docstrings.
14720 (idlwave-help-with-source, idlwave-help-find-routine-definition):
14721 Reflow docstrings.
14722 (idlwave-help-assistant-start): Fix typo in error message.
14723
14724 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
14725 (octave-electric-space): Fix typos in docstrings.
14726
9bbe0828
CY
147272010-01-01 Chong Yidong <cyd@stupidchicken.com>
14728
14729 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
14730
a88c46c3
CY
147312010-01-01 Juri Linkov <juri@jurta.org>
14732
14733 * comint.el (comint-input-ring-size): Make it a defcustom and
918fa8ba 14734 increase the default to 500 (Bug#5148).
a88c46c3 14735
7ee6c59b
NR
147362009-12-31 Nick Roberts <nickrob@snap.net.nz>
14737
14738 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
14739 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
14740 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
14741
a9c8a2cd
NR
147422009-12-30 Nick Roberts <nickrob@snap.net.nz>
14743
14744 Show working revision correctly for mercurial.
14745 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
d8c75479 14746 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
a9c8a2cd 14747
659e4408
JB
147482009-12-29 Juanma Barranquero <lekktu@gmail.com>
14749
14750 Declare some functions for the byte-compiler.
14751 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
14752 (speedbar-timer-fn, speedbar-change-expand-button-char)
14753 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
14754
7ee6c59b
NR
147552009-12-29 Nick Roberts <nickrob@snap.net.nz>
14756
14757 This changeset reverts GDB Graphical Interface to use annotations.
14758 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
14759
460f6e7c
DN
147602009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
14761
14762 Make vc-dir work on subdirectories of the bzr root.
6a7662bb
BR
14763 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.
14764 Return file names relative to it.
460f6e7c
DN
14765 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
14766 relative directory to vc-bzr-after-dir-status.
14767
543f553a
TH
147682009-12-28 Tassilo Horn <tassilo@member.fsf.org>
14769
14770 * font-lock.el (font-lock-refresh-defaults): New function, which
14771 can be used to let font-lock react to external changes in
14772 variables like font-lock-defaults and keywords.
14773 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
14774
2592ab76
DN
147752009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
14776
ac859983
DN
14777 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
14778
2592ab76
DN
14779 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
14780
58941d03
JB
147812009-12-28 Juanma Barranquero <lekktu@gmail.com>
14782
14783 Supersede color.diff settings in git log (bug#5211).
14784
14785 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
14786 escape chars in its output when the user has color.diff set to `always'.
14787 This fix works on git 1.4.2 and newer (released on 2006-08-13).
14788
39764e76
KR
147892009-12-26 Kevin Ryde <user42@zip.com.au>
14790
14791 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
14792 node. Keep previous "Index" name to work with past coreutils too.
14793
91c4831e
KR
14794 * man.el (man): Revise docstring a bit to show -a and -l as
14795 examples. Add -k description since support for it has otherwise
14796 been a secret. (Further to bug#3717.)
651e932e
KR
14797 (Man-bgproc-sentinel): When "-k foo" produces no output show error
14798 "no matches" rather than "Can't find manpage", as the latter reads
d8c75479 14799 like -k was interpreted as a page name, which is not so. (Bug#5431)
91c4831e 14800
7f4d4a97
MA
148012009-12-26 Michael Albinus <michael.albinus@gmx.de>
14802
14803 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
14804 switches. Check also for //SUBDIRED// line.
14805
bcffff46
KH
148062009-12-25 Kenichi Handa <handa@m17n.org>
14807
88b5a757 14808 * language/indian.el (devanagari-composable-pattern): Fix to
bcffff46
KH
14809 handle ZWNJ and ZWJ. Use it in composition-function-table for
14810 Devanagari.
14811 (malayalam-composable-pattern): Fix previous change.
14812
dc1dcfa4
VJL
148132009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14814
14815 * ps-print.el (ps-face-attributes): It was not returning the
14816 attribute face for faces specified as string. Reported by harven
80525855 14817 <harven@free.fr>. (Bug#5254)
dc1dcfa4
VJL
14818 (ps-print-version): New version 7.3.5.
14819
6fe539d2
UJ
148202009-12-18 Ulf Jasper <ulf.jasper@web.de>
14821
85626eef 14822 * calendar/icalendar.el (icalendar--convert-tz-offset):
88b5a757
DD
14823 Fix timezone names.
14824 (icalendar--convert-tz-offset): Fix the "last-day-problem".
6fe539d2
UJ
14825 (icalendar--add-diary-entry): Remove the trailing blank that
14826 diary-make-entry inserts.
14827
1f3611c6
MA
148282009-12-17 Michael Albinus <michael.albinus@gmx.de>
14829
14830 Make `file-expand-wildcards' work for remote files.
14831
14832 * files.el (file-expand-wildcards): In case of remote files, check
14833 only local file name part for wildcards. Provide feature 'files
14834 and subfeature 'remote-wildcards. (Bug#5198)
14835
14836 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
14837 if there is already an established connection.
14838 (tramp-advice-file-expand-wildcards): Remove it.
14839
14840 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
85626eef 14841 (tramp-advice-file-expand-wildcards): Move from tramp.el.
1f3611c6
MA
14842 Activate advice for older GNU Emacs versions. (Bug#5237)
14843
9762b219
JB
148442009-12-17 Juanma Barranquero <lekktu@gmail.com>
14845
14846 Some doc fixes (more needed).
14847
14848 * find-cmd.el (find-constituents): Reflow docstring.
14849 (find-cmd, find-prune, find-command): Fix typos in docstrings.
14850 (find-generic): Doc fix.
14851
cfb54897
JL
148522009-12-17 Juri Linkov <juri@jurta.org>
14853
14854 Fix regression from 23.1 to allow multiple modes in Local Variables.
14855
14856 * files.el (hack-local-variables-filter): While ignoring duplicates,
14857 don't take `mode' into account.
85626eef
SM
14858 (hack-local-variables-filter, hack-dir-local-variables):
14859 Don't remove duplicate `mode' from local-variables-alist (like `eval').
cfb54897 14860
ad974e9e
JL
148612009-12-17 Juri Linkov <juri@jurta.org>
14862
85626eef 14863 Make `dired-diff' safer. (Bug#5225)
ad974e9e
JL
14864
14865 * dired-aux.el (dired-diff): Signal an error when `file' equals to
14866 `current' or when `file' is a directory of the `current' file.
14867
3616e0b9
AS
148682009-12-17 Andreas Schwab <schwab@linux-m68k.org>
14869
14870 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
14871 unconditionally preloaded files.
14872
72b57560
JL
148732009-12-16 Juri Linkov <juri@jurta.org>
14874
14875 Revert to old 23.1 logic of using the file at the mark as default.
14876 * dired-aux.el (dired-diff): Use the file at the mark as default
14877 if it's not the same as the current file, and the target dir is
14878 the current dir or the mark is active. Add the current file
14879 as the arg of `dired-dwim-target-defaults'. Use the default file
14880 in the prompt. (Bug#5225)
14881
68712eb6
MA
148822009-12-15 Michael Albinus <michael.albinus@gmx.de>
14883
14884 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
14885 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
14886 (tramp-check-for-regexp): Check also, when an echoing shell stops
14887 to echo sent commands.
14888
fd471993
CY
148892009-12-14 Chong Yidong <cyd@stupidchicken.com>
14890
14891 * Makefile.in: Revert last change (Bug#5191).
14892
86b5e14c
DN
148932009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
14894
14895 * vc-hg.el (vc-hg-print-log): Fix argument order.
110de3bb
DN
14896 (vc-hg-working-revision): Make sure the command is executed in a
14897 known environment so that we can parse the output. (Bug#4417)
86b5e14c 14898
8cffbb75
CY
148992009-12-14 Chong Yidong <cyd@stupidchicken.com>
14900
14901 * progmodes/python.el (python-symbol-completions): Remove text
14902 properties from symbol string before calling python-send-receive.
14903
6c2b67ad
NR
149042009-12-14 Nick Roberts <nickrob@snap.net.nz>
14905
14906 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
5ce6e4f4 14907 when there are values for both file and line. (Bug#5060)
6c2b67ad 14908
ff6f4585
JL
149092009-12-14 Juri Linkov <juri@jurta.org>
14910
14911 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
14912 whitespace after the file name of the first line of unified format,
14913 because git-diff doesn't output whitespace and file modification time
14914 after the file name.
14915
d3de1c8e
JL
149162009-12-14 David Kastrup <dak@gnu.org>
14917
14918 * info.el (Info-hide-cookies-node): Before hiding a cookie,
14919 check if it already has the `display' property added by
14920 `Info-display-images-node', and not put the `invisible' property
14921 in this case.
14922
2f1b7dc4
GM
149232009-12-13 Glenn Morris <rgm@gnu.org>
14924
a0cefee5
GM
14925 * mail/emacsbug.el (message-sort-headers): Define for compiler.
14926 (report-emacs-bug): In message-mode, sort manually before storing
14927 original report text. (Bug#5178)
2f1b7dc4
GM
14928 Remove superfluous save-excursion.
14929
31bb373f
MA
149302009-12-12 Michael Albinus <michael.albinus@gmx.de>
14931
14932 * net/dbus.el (dbus-property-handler): Filter lambda forms out
14933 when responding to "GetAll" properties.
14934
5e1d4968
CY
149352009-12-12 Chong Yidong <cyd@stupidchicken.com>
14936
14937 * simple.el (compose-mail): Remove mail-setup-with-from from
14938 customization checks.
14939
097d86f9
EZ
149402009-12-12 Eli Zaretskii <eliz@gnu.org>
14941
14942 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
14943 RAR archives created on Unix systems.
14944
1d4adede
SM
149452009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
14946
14947 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
14948 the varalias that was accidentally removed by the 2009-11-19 change
14949 (bug#5186).
14950
3ff3655c
KH
149512009-12-12 Kenichi Handa <handa@m17n.org>
14952
14953 * language/indian.el (indian-compose-regexp): New function.
14954 (malayalam-composable-pattern): Fix the pattern.
14955 (composition-function-table): Set malayalam-composable-pattern for
14956 Malayalam characters.
14957
82d3343c
CY
149582009-12-11 Chong Yidong <cyd@stupidchicken.com>
14959
315eb96d
CY
14960 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
14961 rather than down-mouse-1, based on follow-link conventions.
14962
82d3343c
CY
14963 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
14964 are compiled.
14965
86a4c7ac
DN
149662009-12-11 Michael McNamara <mac@mail.brushroad.com>
14967
bf0b361c 14968 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
1d4adede
SM
14969 (verilog-vmm-statement-re, verilog-ovm-statement-re)
14970 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
14971 (verilog-leap-to-head, verilog-backward-token):
14972 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
86a4c7ac
DN
14973
149742009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
14975
bf0b361c
JB
14976 * progmodes/verilog-mode.el (verilog-auto-lineup)
14977 (verilog-nameable-item-re): Cleanup user-visible spelling and
14978 documentation errors. One reported by Gary Delp.
1d4adede 14979 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
86a4c7ac
DN
14980 (verilog-read-decls): Fix AUTOWIRE with types declared in a
14981 package, bug195. Reported by Pierre-David Pfister.
14982
fe03f49a
GM
149832009-12-11 Glenn Morris <rgm@gnu.org>
14984
47641aac
GM
14985 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
14986
85094855
GM
14987 * mail/emacsbug.el: No longer require sendmail.
14988 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
14989 (report-emacs-bug-orig-text): Doc fix.
14990 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
14991 New local variables, to adapt to different mail-user-agents.
14992 (report-emacs-bug): Fix test for a gnu.org address.
14993 Use overlays for emphasis, since font-lock defeats 'face property.
14994 Pretest bugs also end up at the newsgroup these days.
14995 Stop message-mode stripping text properties.
14996 Set and use the new buffer-local variables.
14997 (report-emacs-bug-hook): Add doc-string.
14998 Remove some unnecessary save-excursions and simplify.
14999 Use the appropriate hook and send-command.
15000
fe03f49a
GM
15001 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
15002 capitalization of some menu entries.
15003
345427f0
VJL
150042009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15005
277e6741
MP
15006 * whitespace.el (whitespace-display-char-on):
15007 Ensure `buffer-display-table' is unique when two or more windows are
345427f0
VJL
15008 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
15009 New version 12.1.
15010
c70ccbba
EZ
150112009-12-10 Eli Zaretskii <eliz@gnu.org>
15012
15013 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
15014 characters in the Attribute field.
15015
f1943c1b
DN
150162009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
15017
15018 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
15019
1c67aeaa
SM
150202009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
15021
15022 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
15023 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
15024 Disregard autoload-excludes.
15025 (update-directory-autoloads): Obey autoload-excludes here instead.
15026 But don't store its contents in no-autoloads and remove entries that
15027 refer to excludes files.
15028
d8194864
GM
150292009-12-10 Glenn Morris <rgm@gnu.org>
15030
8c0171c0
GM
15031 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
15032 (expand-mail-aliases): Define for compiler.
15033
dba372dd
GM
15034 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
15035 Define for compiler.
15036
d8194864
GM
15037 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
15038 appropriate for the mail-user-agent in use.
15039
fe5facd3
MA
150402009-12-09 Michael Albinus <michael.albinus@gmx.de>
15041
15042 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
15043
99999a1d
DN
150442009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
15045
15046 Fix short log parsing and fontification.
15047 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
15048 Fix fontification for the [merge] label.
15049
2ea1c4aa
SM
150502009-12-09 Vivek Dasmohapatra <vivek@etla.org>
15051
85626eef 15052 Drop some properties to avoid surprises (bug#5002).
2ea1c4aa
SM
15053 * htmlfontify.el (hfy-ignored-properties): New defcustom.
15054 (hfy-fontify-buffer): Use it.
15055
9840deb6
SM
150562009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
15057
a0d1aadf
SM
15058 Minor cleanup.
15059 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
15060 Adjust all callers.
15061 (ffap-locate-file): Remove unused arg `dir-ok' and make other
15062 args compulsory. Adjust callers.
15063 (ffap-gopher-at-point): Remove unused var `name'.
15064
9840deb6
SM
15065 Get rid of the ELCFILES abomination.
15066 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
15067 (compile-elcfiles): New phony target.
15068 (compile-main): Compute ELCFILES dynamically.
15069 (compile-clean): New target to remove left-over elc files.
15070 (compile, all): Use it.
15071
7eb3f9a8
KH
150722009-12-09 Kenichi Handa <handa@etlken>
15073
15074 * international/mule-diag.el: Require help-mode instead of help-fns.
15075
ae63e572
KH
150762009-12-09 Kenichi Handa <handa@m17n.org>
15077
5ce6e4f4 15078 * international/mule-cmds.el (ucs-names): Supply sufficiently
a0d1aadf
SM
15079 fine ranges instead of pre-calculating accurate ranges.
15080 Iterate with bigger gc-cons-threshold.
ae63e572 15081
e2f3c692
DN
150822009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
15083
15084 Add support for stashing a snapshot of the current tree.
15085 * vc-git.el (vc-git-stash-snapshot): New function.
15086 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
15087
cf6d0352
JB
150882009-12-08 Jose E. Marchesi <jemarch@gnu.org>
15089
15090 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
15091 instead of `(beginning|end)-of-line'.
15092
48e4acc9
GM
150932009-12-08 Glenn Morris <rgm@gnu.org>
15094
6e890faa
GM
15095 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
15096
48e4acc9
GM
15097 * Makefile.in (ELCFILES): Regenerate.
15098
d2a1dc7b
JL
150992009-12-07 Juri Linkov <juri@jurta.org>
15100
15101 Don't lazy-highlight the comint output in history Isearch mode.
15102
15103 * comint.el (comint-history-isearch-search): Instead of
15104 `comint-line-beginning-position', use `comint-after-pmark-p'
15105 to check if point if before the process mark, and go to
15106 `process-mark' in this case.
15107
51ef56c4
SM
151082009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
15109
fb10ee4a
SM
15110 * textmodes/tex-mode.el (latex-complete)
15111 (latex-indent-or-complete): Remove.
15112 (latex-mode): Set completion-at-point-functions instead.
15113
15114 Provide a standard completion command and hook it into TAB.
51ef56c4
SM
15115 * minibuffer.el (completion-at-point-functions): New var.
15116 (completion-at-point): New command.
fb10ee4a 15117 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
51ef56c4
SM
15118 * progmodes/python.el (python-mode-map): Use completion-at-point.
15119 (python-completion-at-point): Rename from python-partial-symbol and
15120 adjust for use in completion-at-point-functions.
15121 (python-mode): Setup completion-at-point for Python completion.
15122 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
15123 extracted from lisp-complete-symbol.
15124 (lisp-complete-symbol): Use it.
15125 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
15126 setup completion-at-point for Elisp completion.
fb10ee4a
SM
15127 (emacs-lisp-mode-map, lisp-interaction-mode-map):
15128 Use completion-at-point.
51ef56c4 15129 * ielm.el (ielm-map): Use completion-at-point.
fb10ee4a 15130 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
51ef56c4
SM
15131 * progmodes/sym-comp.el: Move to...
15132 * obsolete/sym-comp.el: Move from progmodes.
15133
5e7a9022
EZ
151342009-12-07 Eli Zaretskii <eliz@gnu.org>
15135
15136 Prevent save-buffer in Rmail buffers from using the coding-system
15137 of the current message, and from clobbering the encoding mnemonics
15138 in the mode line (Bug#4623).
15139
15140 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
15141 flag, too.
15142 (rmail-message-encoding): New variable.
15143 (rmail-write-region-annotate): Record the encoding of the current
15144 message in rmail-message-encoding.
15145 (rmail-after-save-hook): New function, restores the encoding of
15146 the current message after the message collection is saved.
15147
9136e895
JL
151482009-12-07 Juri Linkov <juri@jurta.org>
15149
15150 * progmodes/grep.el (grep-read-files): Use `completing-read'
15151 instead of `read-string'. Set its `collection' arg to
15152 `read-file-name-internal'. (Bug#4301)
15153
40637410
JL
151542009-12-07 Juri Linkov <juri@jurta.org>
15155
15156 Correctly restore original Isearch point. (Bug#4994)
15157
15158 * isearch.el (isearch-mode): Move `isearch-push-state' after
15159 `(run-hooks 'isearch-mode-hook)'.
15160 (isearch-cancel): When `isearch-push-state-function' is defined,
15161 let-bind `isearch-cmds' to the first state (the last element of
15162 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
15163 function and restores the original point). Otherwise, move point
15164 to `isearch-opoint'.
15165
da10ce2b
SM
151662009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
15167
15168 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
15169 chars that don't have names, so the table can be built much faster at
15170 run-time.
15171
3d68fa99
CY
151722009-12-07 Chong Yidong <cyd@stupidchicken.com>
15173
f82b1493
CY
15174 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
15175 change. Suggested by David Kastrup.
15176
3d68fa99
CY
15177 * simple.el (compose-mail): Check for incompatibilities and warn.
15178 (compose-mail-user-agent-warnings): New option.
15179
662c5698
DN
151802009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
15181
15182 Support showing a single log entry from vc-annotate.
15183 * vc.el (print-log): Add a new argument: START-REVISION.
15184 (vc-print-log-internal): Add a new optional argument and
15185 pass it to the backend.
15186 (vc-print-log, vc-print-root-log): Adjust callers.
15187 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
15188 buffer already displays the requested log entry, use it.
15189 Otherwise display only the log entry in question.
15190 * vc-svn.el (vc-svn-print-log):
e4070cdc 15191 * vc-mtn.el (vc-mtn-print-log):
662c5698
DN
15192 * vc-hg.el (vc-hg-state):
15193 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
15194 (vc-git-show-log-entry): Return t on success.
15195 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
15196 (vc-bzr-show-log-entry): Return t on success.
15197 * vc-rcs.el (vc-rcs-print-log):
15198 * vc-sccs.el (vc-sccs-print-log):
15199 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
15200
e4070cdc
GM
152012009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
15202
5ce6e4f4
JB
15203 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
15204 Add menus to the meta mode. (Bug#5043)
e4070cdc 15205
5ce6e4f4 152062009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
662c5698
DN
15207
15208 * ediff-init.el (ediff-event-key): Use event-to-character instead of
2de386ca 15209 event-key.
662c5698 15210
662c5698
DN
15211 * ediff.el (ediff-buffers-internal): Add unwind-protect.
15212
dab816a9
MA
152132009-12-07 Michael Albinus <michael.albinus@gmx.de>
15214
15215 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
15216 Berbain <raphael.berbain@gmail.com>.
15217
15218 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
15219 characters.
15220 (tramp-initial-end-of-output): New defconst.
15221 (tramp-methods, tramp-find-shell)
15222 (tramp-open-connection-setup-interactive-shell)
15223 (tramp-maybe-open-connection): Use it.
6a7662bb
BR
15224 (tramp-shell-prompt-pattern, tramp-wait-for-output):
15225 Handle existence of `#' and `$'.
dab816a9 15226
6a7662bb
BR
15227 * net/tramp-fish.el (tramp-fish-maybe-open-connection):
15228 Use `tramp-initial-end-of-output'.
dab816a9 15229
a91e1f6b
DN
152302009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
15231
15232 Get the background mode from the terminal for xterm, and set
15233 faces accordingly.
15234 * term/xterm.el (xterm-set-background-mode): New function.
15235 (terminal-init-xterm): Use it in case xterm supports background
15236 color queries. Recompute faces after getting the background
15237 color.
15238
5fa9d1ec
GM
152392009-12-07 Ulrich Mueller <ulm@gentoo.org>
15240
15241 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
15242 number comment back on its own line, for easier parsing.
15243
5e9fde5e
SM
152442009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
15245
15246 Make it work for non-file buffers (bug#5102).
15247 * doc-view.el (doc-view-current-cache-dir):
15248 Use doc-view-buffer-file-name rather than buffer-file-name.
15249 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
15250
2f2f5242
CY
152512009-12-06 Óscar Fuentes <ofv@wanadoo.es>
15252
15253 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
15254 author field is too short.
15255
cebf8ec6
DN
152562009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
15257
5e9fde5e
SM
15258 * vc-git.el (vc-git-print-log): Handle a limit argument.
15259 Display the short log in graph form and with labels.
0d3f8a78
DN
15260 (vc-git-log-view-mode): Handle labels.
15261
cebf8ec6
DN
15262 Make vc-revert change VC state from 'added to 'unregistered.
15263 * vc-git.el (vc-git-revert): Call git reset first.
15264
8e39154d
UJ
152652009-12-06 Ulf Jasper <ulf.jasper@web.de>
15266
d8194864
GM
15267 * net/newst-backend.el, net/newst-plainview.el:
15268 * net/newst-reader.el, net/newst-ticker.el:
15269 * net/newst-treeview.el, net/newsticker.el:
15270 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
8e39154d 15271
ef187c24
CY
152722009-12-06 Chong Yidong <cyd@stupidchicken.com>
15273
238a0f3a
CY
15274 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
15275
2c6bb71a
CY
15276 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
15277 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
15278 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
15279 Update annotation regexp.
15280
ef187c24
CY
15281 * simple.el (beginning-of-visual-line): Constrain to field
15282 boundaries (Bug#5106).
15283
571855b6
UJ
152842009-12-06 Ulf Jasper <ulf.jasper@web.de>
15285
6a7662bb
BR
15286 * xml.el (xml-substitute-numeric-entities):
15287 Move newsticker--decode-numeric-entities in newst-backend.el to
d8194864 15288 xml-substitute-numeric-entities in xml.el. (Bug#5008)
571855b6
UJ
15289 * net/newst-backend.el (newsticker--parse-generic-feed)
15290 (newsticker--parse-generic-items)
6a7662bb
BR
15291 (newsticker--decode-numeric-entities):
15292 Move newsticker--decode-numeric-entities in newst-backend.el to
d8194864 15293 xml-substitute-numeric-entities in xml.el. (Bug#5008)
571855b6 15294
b857059c
CY
152952009-12-06 Daniel Colascione <dan.colascione@gmail.com>
15296
15297 * progmodes/js.el (js--js-not): Add null to the list of values.
15298
c2dae51b
CY
152992009-12-06 Chong Yidong <cyd@stupidchicken.com>
15300
d8194864 15301 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
c2dae51b 15302
ed0f72d2
RW
153032009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15304
15305 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
15306 delimiter if it is at the end of the current line.
15307 (bibtex-generate-url-list): Fix docstring.
15308
365b9a62
SM
153092009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
15310
15311 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
15312 minibuffer's content with itself.
15313 Fold the confirm-after-completion case into the `confirm' case.
15314 (completion-pcm-word-delimiters): Add : and / to the delimiters.
15315
990a9cb1
KR
153162009-12-06 Kevin Ryde <user42@zip.com.au>
15317
15318 * ffap.el (ffap-rfc-path): Make this a defcustom since
d8194864 15319 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
990a9cb1 15320
8b5a10db 15321 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
d8194864 15322 manuals, similar to existing setup for help-mode. (Bug#3913.)
8b5a10db 15323
065543e7
JL
153242009-12-05 Juri Linkov <juri@jurta.org>
15325
15326 Save and restore dired buffer's point positions too. (Bug#4880)
15327
15328 * dired.el (dired-save-positions): Return in the first element
15329 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
15330 Doc fix.
15331 (dired-restore-positions): First restore buffer's position.
15332 While restoring window's positions, check if window still displays
15333 the original buffer.
15334
503edac9
CY
153352009-12-05 Chong Yidong <cyd@stupidchicken.com>
15336
9a594ee6
CY
15337 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
15338 if possible.
15339
925f8c70
CY
15340 * shell.el (shell): Require ansi-color (Bug#5113).
15341
15342 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
15343
503edac9
CY
15344 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
15345
8fea6b33
AM
153462009-12-05 Alan Mackenzie <acm@muc.de>
15347
15348 * progmodes/cc-mode.el (c-before-hack-hook)
15349 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
15350 `c-file-style' to work again. This reversion restores the current
212c5aef 15351 software to its state in Emacs 23.1. (Bug#4146)
8fea6b33 15352
5d1fd962
CY
153532009-12-05 Kevin Ryde <user42@zip.com.au>
15354
6a7662bb
BR
15355 * textmodes/sgml-mode.el (sgml-lexical-context):
15356 Recognise comment-start-skip to comment-end-skip as comment (Bug#4781).
5d1fd962 15357
30760c8b
JL
153582009-12-05 Juri Linkov <juri@jurta.org>
15359
15360 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
15361 for virtual nodes. (Bug#4147)
15362 (Info-find-node-2): Set `Info-current-node-virtual' to nil
15363 when moving from a virtual node.
15364 (Info-mode-menu): Add `Info-virtual-index' to the menu.
15365 (Info-mode): Add `Info-virtual-index' to the docstring.
15366
403111a8
RW
153672009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15368
15369 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
15370 track of the buffer position of the end of a BibTeX entry as this
15371 position may change during reformatting.
15372 (bibtex-format-entry): Remove whitespace before processing
15373 numerical fields so that we recognize the latter properly.
15374 (bibtex-reformat): Do not use push which changes the global value
15375 of bibtex-entry-format.
15376 (bibtex-field-braces-alist, bibtex-field-strings-alist)
15377 (bibtex-field-re-init): Replace only space characters by regexp
15378 for whitespace.
365b9a62 15379 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
403111a8
RW
15380 (bibtex-initialize): Also update bibtex-strings.
15381 (bibtex-kill-field): Preserve white space at end of entry.
365b9a62
SM
15382 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
15383 Update bibtex-reference-keys.
403111a8 15384
25b54627
SM
153852009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
15386
15387 * minibuffer.el (completion-pcm--merge-try): Also consider placing
15388 point after a star, if that's the only place where modifications can
15389 make progress.
15390
35639eb4
DN
153912009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
15392
15393 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
15394 in docstrings.
15395
8b78760b
JL
153962009-12-04 Juri Linkov <juri@jurta.org>
15397
15398 * proced.el (proced): Call `(proced-update t)' to update process
15399 information instead of only running proced-post-display-hook.
15400 (proced-send-signal): Add a leading space to the buffer name
15401 " *Marked Processes*" to make this buffer ephemeral.
15402
2b3489a7
JL
154032009-12-04 Juri Linkov <juri@jurta.org>
15404
15405 * dired.el (dired-auto-revert-buffer): New defcustom.
15406 (dired-internal-noselect): Use it.
15407
9b9debd1
JL
154082009-12-04 Juri Linkov <juri@jurta.org>
15409
15410 Change roles of modes and functions in image-mode.el (Bug#5062).
15411
15412 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
15413 in `auto-mode-alist'.
15414 (image-mode-previous-major-mode): New variable.
15415 (image-minor-mode-map): Rename from `image-mode-text-map'.
15416 (image-mode): Move graceful error-handling code from
15417 `image-minor-mode' to here. On errors call `image-mode-as-text'.
15418 (image-minor-mode): Remove all image-handling code.
15419 Replace `image-mode-text-map' with `image-minor-mode-map'.
15420 Check for `image-type' in mode-line format string.
15421 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
15422 (image-mode-as-text): New function with most code from
15423 `image-mode-maybe'.
15424 (image-toggle-display-text): Move code that removes image
15425 properties from `image-toggle-display' to here.
15426 (image-toggle-display-image): New function with code that adds
15427 image properties copied from `image-toggle-display'.
15428 (image-toggle-display): Remove most code with leaving only code
15429 that toggles between `image-mode-as-text' and `image-mode'.
15430
0c74a301
UJ
154312009-12-04 Ulf Jasper <ulf.jasper@web.de>
15432
15433 * net/newst-treeview.el
15434 (newsticker--treeview-list-highlight-start): Restored call to
15435 save-excursion: Selected item was stuck.
15436 (newsticker--treeview-list-select): New.
15437 (newsticker--treeview-item-show-text)
15438 (newsticker--treeview-item-show)
15439 (newsticker--treeview-item-update): Use new
15440 newsticker-treeview-item-mode.
15441 (newsticker-treeview-update): Keep current item.
15442 (newsticker-treeview-next-new-or-immortal-item): Doc change.
15443 (newsticker--treeview-first-feed): Doc change.
15444 (newsticker-treeview-list-menu)
88b5a757 15445 (newsticker-treeview-item-menu): Add menu entries.
0c74a301
UJ
15446 (newsticker-treeview-item-mode): New.
15447
5ce6e4f4 15448 * net/newst-backend.el (newsticker-customize): Delete other
0c74a301
UJ
15449 windows.
15450
9eaeec5b
SS
154512009-12-04 Sam Steingold <sds@gnu.org>
15452
15453 * log-view.el (log-view-mode-map): "q" calls quit-window,
15454 like in all the other non-self-insert buffers.
15455
b2bf5be5
SM
154562009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
15457
15458 Minor cleanup.
15459 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
15460 key decoding rather than do it manually via last-input-event +
15461 ascii-character.
15462 (term-exec): Use delete-and-extract-region.
15463 (term-handle-ansi-terminal-messages): Remove unused var `end'.
15464 (term-process-pager): Remove unused var `i'.
15465 (term-dynamic-simple-complete): Make obsolete.
15466 (serial-update-config-menu): Remove unused vars `y' and `str'.
15467 (term-update-mode-line): Remove unused var `temp'.
15468
46e5c897
DN
154692009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15470
15471 Limit the number of log entries displayed by default.
15472 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
15473 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
15474 using a prefix argument.
15475
627e0a14
GM
154762009-12-03 Glenn Morris <rgm@gnu.org>
15477
15478 * progmodes/idlwave.el (class): Restore still useful declaration.
15479
8578c224
AM
154802009-12-03 Alan Mackenzie <acm@muc.de>
15481
4abc318c 15482 Enhance `c-parse-state' to run efficiently in "brace deserts".
8578c224 15483
b2bf5be5
SM
15484 * progmodes/cc-mode.el (c-basic-common-init):
15485 Call c-state-cache-init.
9762b219 15486 (c-neutralize-syntax-in-and-mark-CPP): Rename from
8578c224 15487 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
b2bf5be5 15488 placing `category' properties value 'c-cpp-delimiter at its boundaries.
8578c224
AM
15489
15490 * progmodes/cc-langs.el (c-before-font-lock-function):
15491 c-extend-and-neutralize-syntax-in-CPP has been renamed
15492 c-neutralize-syntax-in-and-mark-CPP.
15493
15494 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
15495 with `category' properties now, not `syntax-table' ones.
15496
15497 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
15498 enhanced (but slower) version of c-end-of-macro that won't land
15499 inside a literal or on another awkward character.
15500 (c-state-cache-too-far, c-state-cache-start)
15501 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
15502 (c-state-nonlit-pos-cache-limit, c-state-point-min)
15503 (c-state-point-min-lit-type, c-state-point-min-lit-start)
15504 (c-state-min-scan-pos, c-state-brace-pair-desert)
15505 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
15506 buffer local variables.
15507 (c-state-literal-at, c-state-lit-beg)
15508 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
15509 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
15510 (c-state-cache-top-paren, c-state-cache-after-top-paren)
15511 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
15512 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
15513 (c-renarrow-state-cache)
15514 (c-append-lower-brace-pair-to-state-cache)
15515 (c-state-push-any-brace-pair, c-append-to-state-cache)
15516 (c-remove-stale-state-cache)
15517 (c-remove-stale-state-cache-backwards, c-state-cache-init)
15518 (c-invalidate-state-cache-1, c-parse-state-1)
15519 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
b2bf5be5
SM
15520 (c-parse-state): Enhance and refactor.
15521 (c-debug-parse-state): Amend to deal with all the new variables.
8578c224
AM
15522
15523 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
15524 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
b2bf5be5
SM
15525 modify to use category text properties rather than syntax-table ones.
15526 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
8578c224
AM
15527 to switch off/on the syntactic paren property of C++ template
15528 delimiters using the category property.
15529 (c-with-<->-as-parens-suppressed): Macro to invoke code with
15530 template delims suppressed.
15531 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
15532 New constant/macros which apply category properties to the start
15533 and end of preprocessor constructs.
b2bf5be5 15534 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
8578c224
AM
15535 "comment out" the syntactic value of characters in preprocessor
15536 constructs.
15537 (c-with-cpps-commented-out)
15538 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
15539 with characters in all or all but one preprocessor constructs
15540 "commented out".
15541
0d4dc442
RW
155422009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15543
15544 * proced.el (proced-filter-alist): Use regexp-quote.
15545
a09dc9bf
MA
155462009-12-03 Michael Albinus <michael.albinus@gmx.de>
15547
15548 Cleanup.
15549 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
15550 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
15551 arguments. Expand `default-directory'.
15552
15553 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
15554 the benefit of returning an expanded localname.
15555 (tramp-tramp-file-p): Handle the case NAME is not a string.
15556
3f6bd790
DN
155572009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15558
4dfb3b9c
DN
15559 Add support for bzr shelve/unshelve.
15560 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
15561 (vc-bzr-extra-menu-map): New variables.
15562 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
15563 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
15564 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
15565 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
15566 (vc-bzr-dir-extra-headers): Display shelves.
15567
3f6bd790
DN
15568 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
15569
842d73a1
SM
155702009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15571
15572 * textmodes/bibtex.el (bibtex-complete-internal):
15573 Use completion-in-region.
15574 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
15575
7fa4876f
DN
155762009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15577
15578 Support applying stashes. Improve UI.
15579 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
15580 (vc-git-stash-apply, vc-git-stash-pop)
15581 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
15582 (vc-git-stash-menu): New functions.
15583 (vc-git-stash-menu-map): New variable.
15584 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
15585
d6e82452
GM
155862009-12-03 Glenn Morris <rgm@gnu.org>
15587
15588 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
15589 (vc-print-log-internal): Fix previous change.
15590 (vc-revert): Correct pluralization.
15591
8d222148
SM
155922009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15593
ea52206b
SM
15594 * progmodes/make-mode.el (makefile-special-targets-list): No need for
15595 it to be an alist any more.
15596 (makefile-complete): Use completion-in-region.
15597
69a94a37
SM
15598 * progmodes/octave-mod.el (octave-complete-symbol):
15599 Use completion-in-region.
15600
8d222148
SM
15601 Misc cleanup.
15602 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
15603 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
15604 (idlwave-complete-class): Don't quote lambda.
15605 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
15606 (idlwave-mode-map): Move initialization into declaration.
15607 (idlwave-action-and-binding): Use backquotes.
15608 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
15609 Simplify.
15610 (idlwave-is-pointer-dereference): Remove unused var `pos'.
15611 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
15612 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
15613 `parts', and `all-parts'.
15614 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
15615 (idlwave-convert-xml-system-routine-info): Remove unused string
15616 `version-string'.
15617 (idlwave-display-user-catalog-widget): Use dolist.
15618 (idlwave-scanning-lib): Declare dynamically-scoped var.
15619 (idlwave-scan-library-catalogs): Remove unused var `flags'.
15620 (completion-highlight-first-word-only): Declare to silence bytecomp.
15621 (idlwave-popup-select): Tighten scope of `resp'.
15622 (idlwave-find-struct-tag): Remove unused var `beg'.
15623 (idlwave-after-load-rinfo-hook): Declare.
15624 (idlwave-sintern-class-info): Remove unused var `taglist'.
15625 (idlwave-find-class-definition): Remove unused var `list'.
15626 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
15627 (idlwave-what-module-find-class): Remove unused var `classes'.
15628
3bb8691b
JB
156292009-12-03 Juanma Barranquero <lekktu@gmail.com>
15630
15631 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
15632
f72f0c23
SM
156332009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15634
15635 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
15636 buffers visited. Remove redundant current-buffer-saving.
15637
601a9508
SM
156382009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
15639
15640 Use completion-in-buffer and remove uses of dynamic scoping.
15641 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
15642 (pascal-buffer-to-use, pascal-flag): Don't declare.
15643 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
15644 (pascal-get-completion-decl, pascal-keyword-completion):
15645 Add `pascal-str' argument, save-excursion,
15646 return the found completions, and don't filter with pascal-pred.
15647 (pascal-completion-cache): New var.
15648 (pascal-completion): Don't switch buffer any more (it was never
15649 necessary). Don't save-excursion any more (it's done by the called
15650 subroutines). Use a cache to avoid redundant computations.
15651 Use complete-with-action rather than pascal-completion-response and
15652 let it apply the predicate as well.
15653 (pascal-complete-word): Use completion-in-buffer when
15654 pascal-toggle-completions is nil.
15655 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
15656 not used any more.
15657 (pascal-comp-defun): Don't change buffer any more.
15658 Use complete-with-action rather than pascal-completion-response and
15659 let it apply the predicate as well.
15660 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
15661 when neded.
15662
1ff4cb98
KH
156632009-12-02 Kenichi Handa <handa@m17n.org>
15664
15665 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
15666 shape for all Indic scripts.
15667
bb12edf1
SM
156682009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
15669
15670 Use completion-in-buffer.
15671 * wid-edit.el (widget-field-text-end): New function.
15672 (widget-field-value-get): Use it.
15673 (widget-string-complete, widget-file-complete)
15674 (widget-color-complete): Use it and completion-in-region.
15675 (widget-complete): Don't narrow the buffer.
15676
5813f6ef
GM
156772009-12-02 Glenn Morris <rgm@gnu.org>
15678
c920f222
GM
15679 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
15680 (rmail-select-summary): Use rmail-pop-to-buffer.
60f2013c
GM
15681 * mail/rmailsum.el: Replace all pop-to-buffer calls with
15682 rmail-pop-to-buffer, to prevent horizontal splits.
c920f222 15683
5813f6ef
GM
15684 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
15685 save-excursion with save-current-buffer.
15686 Widen before searching. (Bug#5093)
15687 (diary-list-sexp-entries): Remove superfluous save-excursion.
15688
34b1d750
GM
156892009-12-02 Michael Welsh Duggan <mwd@cert.org>
15690
15691 * woman.el (woman-make-bufname): Handle man-pages with "." in the
15692 name. (Bug#5038)
15693
b2d5f31a
GM
156942009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
15695
15696 * ido.el (ido-file-internal): Handle filenames at point that do
15697 not have a directory part. (Bug#5049)
15698
c710ac3c
JB
156992009-12-02 Juanma Barranquero <lekktu@gmail.com>
15700
15701 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
15702 (mpc-songs-jump-to, mpc-resume): Doc fixes.
15703
9946be46
SM
157042009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
15705
15706 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
15707 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
15708 any more.
15709
b08016f2
SM
157102009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15711
e7440df4
SM
15712 * comint.el (comint-insert-input): Ignore clicks to the right of
15713 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
15714
3bb8691b 15715 * vc.el (vc-print-log-internal): Don't wait for the process to
c767b665
SM
15716 terminate before setting up the major mode.
15717
f3b757f5
SM
15718 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
15719 in case.
15720
a2877f1d
SM
15721 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
15722 the last element.
15723
b08016f2
SM
15724 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
15725
782d6e30
GM
157262009-12-01 Glenn Morris <rgm@gnu.org>
15727
15728 * window.el (window--display-buffer-2): Fix previous changes.
15729
28f57f7e
CY
157302009-12-01 Chong Yidong <cyd@stupidchicken.com>
15731
15732 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
15733
c31a2fdc
GM
157342009-12-01 Glenn Morris <rgm@gnu.org>
15735
15736 * Makefile.in (ELCFILES): Add mpc.elc.
15737
e1ada222
SM
157382009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15739
15740 * mpc.el: New file.
15741
0c9ff2c5
GM
157422009-12-01 Glenn Morris <rgm@gnu.org>
15743
3689984f
GM
15744 * window.el (window-to-use): Define for compiler.
15745
3ab4308b
GM
15746 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
15747 consistent with others (no final period).
15748
0c9ff2c5
GM
15749 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
15750 (rmail-mime-show): Downcase the encoding. (Bug#5070)
15751
fb0c18ff
DN
157522009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
15753
15754 Make vc-print-log buttons work.
045b9da7 15755 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
fb0c18ff 15756
2ac7e73e
JB
157572009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
15758
15759 * savehist.el (savehist-autosave-interval): Allow setting to nil
15760 through customize. (Bug#5056)
15761
5237d741
JB
157622009-11-30 Juanma Barranquero <lekktu@gmail.com>
15763
15764 Fix references to jit-lock properties.
15765 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
15766 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
15767 (perl-font-lock-special-syntactic-constructs):
15768 Quote jit-lock-defer-multiline property.
15769
379241fa
DN
157702009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
15771
15772 * vc-git.el (vc-git-registered): Call vc-git-root only once.
15773
054ae856
JL
157742009-11-30 Juri Linkov <juri@jurta.org>
15775
15776 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
15777 value `buffer' of `multi-isearch-next-buffer-current-function'.
15778 Use `(current-buffer)' when `buffer' is nil.
15779 (multi-isearch-next-buffer-from-list): Don't fallback to
15780 `(current-buffer)' when `buffer' is nil. (Bug#4947)
15781
67296dda
JL
157822009-11-30 Juri Linkov <juri@jurta.org>
15783
15784 * misearch.el (multi-isearch-read-buffers): Move canonicalization
15785 of buffers with `get-buffer' to `multi-isearch-buffers'.
15786 (multi-isearch-buffers, multi-isearch-buffers-regexp):
15787 Canonicalize BUFFERS with `get-buffer'. Doc fix.
15788 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
15789 FILES with `expand-file-name' converting relative file names
15790 to absolute. Doc fix. (Bug#4727)
15791
c585bf32
JL
157922009-11-30 Juri Linkov <juri@jurta.org>
15793
15794 * misearch.el (multi-isearch-read-buffers)
15795 (multi-isearch-read-matching-buffers): New functions.
15796 (multi-isearch-buffers, multi-isearch-buffers-regexp):
15797 Use them in the `interactive' spec. Doc fix.
15798 (multi-isearch-read-files, multi-isearch-read-matching-files):
15799 New functions.
15800 (multi-isearch-files, multi-isearch-files-regexp):
15801 Use them in the `interactive' spec. Doc fix. (Bug#4725)
15802
0a745733
JL
158032009-11-30 Juri Linkov <juri@jurta.org>
15804
15805 * doc-view.el (doc-view-continuous):
15806 Rename from `doc-view-continuous-mode'.
15807 (doc-view-menu): Move "Toggle display" to the top.
15808 Add submenu "Continuous" with radio buttons "Off"/"On"
15809 and "Save as Default".
15810 (doc-view-scroll-up-or-next-page)
15811 (doc-view-scroll-down-or-previous-page)
15812 (doc-view-next-line-or-next-page)
6a7662bb
BR
15813 (doc-view-previous-line-or-previous-page):
15814 Rename `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
0a745733 15815
1f9689eb
JL
158162009-11-30 Juri Linkov <juri@jurta.org>
15817
15818 * comint.el (comint-mode-map): Rebind `M-r' from
15819 `comint-previous-matching-input' to
15820 `comint-history-isearch-backward-regexp'.
15821 Unbind `M-s' to allow global key binding `M-s'.
15822 Add menu items for `comint-history-isearch-backward' and
15823 `comint-history-isearch-backward-regexp'. (Bug#3746)
15824
2952b1ae
JL
158252009-11-30 Juri Linkov <juri@jurta.org>
15826
15827 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
15828 For def=recenter, replace `recenter' with `recenter-top-bottom'
15829 that is called with `this-command' and `last-command' let-bound
15830 to `recenter-top-bottom'. When the last `def' was not `recenter',
15831 set `recenter-last-op' to nil. (Bug#4981)
15832
7a9547ca
SM
158332009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
15834
20565545
SM
15835 Minor cleanup and simplification.
15836 * filecache.el (file-cache-add-directory)
15837 (file-cache-add-directory-recursively)
15838 (file-cache-add-from-file-cache-buffer)
15839 (file-cache-delete-file-regexp, file-cache-delete-directory)
15840 (file-cache-files-matching-internal, file-cache-display): Use dolist.
15841 (file-cache-temp-minibuffer-message): Delete function.
15842 (file-cache-minibuffer-complete): Use minibuffer-message instead.
15843
7a9547ca
SM
15844 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
15845 Don't signal an error when bumping into EOB in tr, s, or y.
15846
08e968f3
JL
158472009-11-29 Juri Linkov <juri@jurta.org>
15848
15849 * startup.el (fancy-about-text): Fix wording of Guided Tour.
15850 (Bug#4960)
15851
15852 * descr-text.el (describe-char-unidata-list): Use lowercase name
15853 for "Unicode name" like in other tags.
15854
f8d170a4
JL
158552009-11-29 Juri Linkov <juri@jurta.org>
15856
15857 * ediff-util.el (ediff-minibuffer-with-setup-hook):
15858 New compatibility macro.
7a9547ca 15859 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
f8d170a4 15860
0116abbd
JL
158612009-11-29 Juri Linkov <juri@jurta.org>
15862
15863 Add defcustom to define the cycling order of `recenter-top-bottom'.
15864 (Bug#4981)
15865
15866 * window.el (recenter-last-op): Doc fix.
15867 (recenter-positions): New defcustom.
15868 (recenter-top-bottom): Rewrite to use `recenter-positions'.
15869 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
15870
61eef560
MA
158712009-11-29 Michael Albinus <michael.albinus@gmx.de>
15872
15873 Improve integration of Tramp and ange-ftp in eshell.
15874
e4070cdc 15875 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
61eef560
MA
15876 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
15877 (eshell/sudo): Flatten args. Let-bind `default-directory'.
15878
15879 * eshell/esh-util.el (top): Require also Tramp when compiling.
15880 (eshell-directory-files-and-attributes): Check for FTP remote
15881 connection.
15882 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
15883 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
15884 (eshell-file-attributes): Handle ".". Return `entry'.
15885
15886 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
15887 (ange-ftp-directory-files-and-attributes)
15888 (ange-ftp-real-directory-files-and-attributes): New defuns.
15889
15890 * net/tramp.el (tramp-maybe-open-connection): Open the remote
15891 shell with "exec" when possible. This prevents trailing prompts
15892 in `start-file-process'.
15893
f5467d3f
SM
158942009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
15895
21f49db9
SM
15896 Try and remove assumptions about point-min==1.
15897 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
15898 (rng-compute-mode-line-string): Show the validation percentage in
15899 terms of the narrowed text, not the widened text.
15900 (rng-do-some-validation): Don't catch internal errors when debugging.
15901 (rng-first-error): Simplify.
15902 (rng-after-change-function): Remove work around. AFAIK the bug has
15903 been fixed a while ago.
15904
26224faf
SM
15905 * image-mode.el (image-minor-mode): Exit more gracefully when the image
15906 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
15907
d7117720
SM
15908 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
15909
f5467d3f
SM
15910 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
15911 `cd' doesn't always do it for us (bug#5067).
15912
15913 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
15914 on 2009-10-25 as part of some other change (bug#5067).
15915
c5269f1c
SM
159162009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
15917
62a258a7
SM
15918 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
15919 `suspicious'.
15920 (byte-compile-warnings): Use byte-compile-warning-types.
15921 (byte-compile-save-excursion): Warn about use of set-buffer right
15922 after save-excursion.
15923
c5269f1c
SM
15924 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
15925 the excursion as well.
15926
3ba30eb8
MA
159272009-11-27 Michael Albinus <michael.albinus@gmx.de>
15928
15929 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
15930 providing a Tramp related implementation of "su" and "sudo".
15931 (eshell-unix-initialize): Add "su" and "sudo".
15932
6c6f788d
DU
159332009-11-27 Daiki Ueno <ueno@unixuser.org>
15934
15935 * net/socks.el (socks-send-command): Convert binary request to
15936 unibyte before sending. This fixes mishandling of some port
15937 numbers such as 129.
15938
10c877fe
SM
159392009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
15940
6f06a171
SM
15941 * help.el (describe-bindings-internal): Remove `interactive'.
15942
10c877fe
SM
15943 * man.el (Man-completion-table): Trim a terminating "(".
15944 Remove the space between name page a section.
15945 Add the command's description on the `help-echo' property.
c5269f1c
SM
15946 Remove `process-connection-type' binding since it's unused by
15947 call-process.
10c877fe
SM
15948 Provide completion for the "<section> <name>" format as well.
15949 (Man-default-man-entry): Remove spurious var shadowing the argument.
15950
c44a4822
KR
159512009-11-26 Kevin Ryde <user42@zip.com.au>
15952
15953 * log-view.el: Add "Keywords: tools", since its other keywords
15954 aren't in finder-known-keywords, and following vc.el.
15955
9d58f081
KR
15956 * sha1.el (sha1-string-external): default-directory "/" in case
15957 otherwise non-existent. process-connection-type pipe for touch of
15958 efficiency recommended by elisp manual. (An aside in Bug#3911.)
15959
72fe6b25
SM
159602009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
15961
15962 Misc coding convention cleanups.
15963 * htmlfontify.el (hfy-init-kludge-hook): Rename from
15964 hfy-init-kludge-hooks.
15965 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
15966 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
15967 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
15968 and push.
15969 (hfy-slant, hfy-weight): Use tables rather than code.
15970 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
15971 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
15972 (hfy-face-attr-for-class): Initialize `face-spec' directly.
15973 (hfy-face-to-css): Remove `nconc' with single arg.
15974 (hfy-p-to-face-lennart): Use `or'.
15975 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
15976 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
15977 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
15978 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
15979 (hfy-force-fontification): Use run-hooks.
15980
85e0a536
SM
159812009-11-26 Vivek Dasmohapatra <vivek@etla.org>
15982
15983 Various minor fixes.
15984 * htmlfontify.el (hfy-default-header): Add toggle_invis since
15985 Javascript belongs in the header, not the body.
15986 (hfy-javascript): Remove.
15987 (hfy-fontify-buffer): Don't insert it any more.
15988 (hfy-face-at): Handle (face0 face1 face2) style face properties.
15989 Fix bug in invis handling when there were no invis props in a chunk.
15990
62ccc42c
SM
159912009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
15992
15993 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
15994
2643c7aa
DN
159952009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
15996
15997 * finder.el (finder-mode-map): Add a menu.
15998
0e5c8aed
DN
159992009-11-26 Michael McNamara <mac@mail.brushroad.com>
16000
bf0b361c 16001 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
0e5c8aed
DN
16002 "unsigned" structs.
16003
16004 (verilog-leap-to-head, verilog-backward-token): Handle "disable
16005 fork" statement better.
16006
160072009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
16008
bf0b361c
JB
16009 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
16010 (verilog-delete-auto, verilog-delete-empty-auto-pair)
16011 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
16012 Reported by Clay Douglass.
0e5c8aed
DN
16013
16014 (verilog-auto-inst, verilog-auto-star-safe)
62ccc42c 16015 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
6a7662bb
BR
16016 Fix removing "// Interfaces" when saving .* expansions.
16017 Reported by Pierre-David Pfister.
0e5c8aed 16018
7629c4e7
GM
160192009-11-26 Glenn Morris <rgm@gnu.org>
16020
62ccc42c
SM
16021 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
16022 the scope.
7629c4e7 16023
a5d358f8
JB
160242009-11-25 Johan Bockgård <bojohan@gnu.org>
16025
16026 * vc-annotate.el (vc-annotate-revision-previous-to-line):
16027 Really use previous revision.
16028
002cbde5
KR
160292009-11-25 Kevin Ryde <user42@zip.com.au>
16030
16031 * man.el (Man-completion-table): default-directory "/" in case
16032 doesn't otherwise exist. process-environment COLUMNS=999 so as
16033 not to truncate long names. process-connection-type pipe to avoid
573f4575
KR
16034 any chance of hitting the pseudo-tty TIOCGWINSZ.
16035 (man): completion-ignore-case t for friendliness and since man
16036 itself is case-insensitive on the command line.
16037 Further to Bug#3717.
002cbde5 16038
8cb5ffe8
KR
16039 * arc-mode.el: Add "Keywords: files", so the details in its
16040 commentary can be reached from finder-by-keyword.
34607612
KR
16041 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
16042 editing mode, but it's comms related and sgml-mode.el has "comm"
16043 on that basis too.
b8dfcf54 16044 * textmodes/bibtex-style.el: Add "Keywords: tex".
5cf751b4
GM
16045 * international/isearch-x.el, international/ja-dic-cnv.el:
16046 * international/ja-dic-utl.el, international/kkc.el:
b8dfcf54 16047 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
34607612 16048
1e2d9ba1
JL
160492009-11-25 Juri Linkov <juri@jurta.org>
16050
16051 * man.el (Man-completion-table): Modify regexp to include
16052 section names to completion strings. (Bug#3717)
16053
a601d313
JL
160542009-11-25 Juri Linkov <juri@jurta.org>
16055
16056 Search recursively in gzipped files. (Bug#4982)
16057
16058 * progmodes/grep.el (grep-highlight-matches): Add new options
16059 `always' and `auto'. Doc fix.
16060 (grep-process-setup): Check `grep-highlight-matches' for
16061 `auto-detect' to determine the need to compute grep defaults.
16062 Move Windows/DOS specific --colors settings handling
16063 to `grep-compute-defaults'. Check `grep-highlight-matches'
16064 to get the value of "--color=".
16065 (grep-compute-defaults): Compute `grep-highlight-matches' when it
16066 has the value `auto-detect'. Move Windows/DOS specific settings
16067 from `grep-process-setup'.
16068 (zrgrep): New command with alias `rzgrep'.
16069
bde04ea9
JL
160702009-11-25 Juri Linkov <juri@jurta.org>
16071
16072 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
16073 to nil instead of switching off view-mode. (Bug#4896)
16074
7d6b4d3c
JL
160752009-11-25 Juri Linkov <juri@jurta.org>
16076
16077 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
16078
16079 * mwheel.el (mwheel-scroll-up-function)
16080 (mwheel-scroll-down-function): New defvars.
16081 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
16082 `scroll-up', and `mwheel-scroll-down-function' instead of
16083 `scroll-down'.
16084
16085 * doc-view.el (doc-view-scroll-up-or-next-page)
16086 (doc-view-scroll-down-or-previous-page): Add optional ARG.
16087 Use this ARG in the call to image-scroll-up/image-scroll-down.
16088 Change `interactive' spec to "P". Goto next/previous page only
16089 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
16090 SPC/DEL case). Doc fix.
16091 (doc-view-next-line-or-next-page)
16092 (doc-view-previous-line-or-previous-page): Rename arg to ARG
16093 for consistency.
16094 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
16095 `doc-view-scroll-up-or-next-page', and buffer-local
16096 `mwheel-scroll-down-function' to
16097 `doc-view-scroll-down-or-previous-page'.
16098
e237085f
JL
160992009-11-25 Juri Linkov <juri@jurta.org>
16100
16101 Provide additional default values (directories at other Dired
16102 windows) via M-n in the minibuffer of some Dired commands.
16103
16104 * dired-aux.el (dired-diff, dired-compare-directories)
16105 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
16106 `minibuffer-default' in `minibuffer-with-setup-hook'.
16107 (dired-dwim-target-directory): Find a window that displays Dired
16108 buffer instead of failing when the next window is not Dired.
16109 Use `get-window-with-predicate' to find for the next Dired window.
16110 (dired-dwim-target-defaults): New function.
16111
16112 * ediff-util.el (ediff-read-file-name):
16113 Use `dired-dwim-target-defaults' to set `minibuffer-default'
16114 in `minibuffer-with-setup-hook'.
16115
7d371eac
JL
161162009-11-25 Juri Linkov <juri@jurta.org>
16117
16118 Provide additional default values (file name at point or at the
16119 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
16120
16121 * minibuffer.el (read-file-name-defaults): New function.
16122 (read-file-name): Reset `minibuffer-default' to nil when
16123 it duplicates initial input `insdef'.
16124 Bind `minibuffer-default-add-function' to lambda that
16125 calls `read-file-name-defaults' in `minibuffer-selected-window'.
16126 (minibuffer-insert-file-name-at-point): New command.
16127
16128 * files.el (file-name-at-point-functions): New defcustom.
16129 (find-file-default): Remove defvar.
16130 (find-file-read-args): Don't use `find-file-default'.
16131 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
16132 to `read-file-name'.
16133 (find-file-literally): Use `read-file-name' with
16134 `confirm-nonexistent-file-or-buffer'.
16135
16136 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
16137
16138 * dired.el (dired-read-dir-and-switches):
16139 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
16140 to `read-file-name'.
16141 (dired-file-name-at-point): New function.
16142 (dired-mode): Add hook `dired-file-name-at-point' to
16143 `file-name-at-point-functions'.
16144
04ae543a
SM
161452009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
16146
16147 Really make the *Completions* window soft-dedicated (bug#5030).
16148 * window.el (window--display-buffer-2): Add `dedicated' argument.
16149 (display-buffer): Pass it when needed so the dedicated flag is set
16150 after calling set-window-buffer, which would otherwise reset it.
16151
eb708e66
SM
161522009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
16153
d6b8d4e7
SM
16154 * progmodes/meta-mode.el (meta-complete-symbol):
16155 * progmodes/etags.el (complete-tag):
e2d4ea5a
SM
16156 * mail/mailabbrev.el (mail-abbrev-complete-alias):
16157 Use completion-in-region.
16158
5f24557b
SM
16159 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
16160 (dabbrev-completion): Use completion-in-region.
16161 (dabbrev--abbrev-at-point): Simplify regexp.
16162
fe4346f0
SM
16163 * abbrev.el (abbrev--before-point): Use word-motion functions
16164 if :regexp is not specified (bug#5031).
16165
cb190d7d
SM
16166 * subr.el (string-prefix-p): New function.
16167
e2ec6dd5
SM
16168 * man.el (Man-completion-cache): New var.
16169 (Man-completion-table): Use it.
16170
eb708e66
SM
16171 * vc.el (vc-print-log-internal): Make `limit' optional for better
16172 compatibility (e.g. with vc-annotate.el).
16173
4cf8971b
KR
161742009-11-24 Kevin Ryde <user42@zip.com.au>
16175
eb708e66 16176 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
d8194864 16177 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
f69c67b6 16178
4cf8971b
KR
16179 * emacs-lisp/elint.el (elint-add-required-env): Better error message
16180 when .el source file not found or other error.
16181
d204c46c
SM
161822009-11-24 Markus Triska <markus.triska@gmx.at>
16183
16184 * linum.el (linum-update-window): Ignore intangible (bug#4996).
16185
bb301b9a
SM
161862009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
16187
449c27f0
SM
16188 Handle the [back] button properly (bug#4979).
16189 * descr-text.el (describe-text-properties): Add a `buffer' argument.
16190 Use help-setup-xref, help-buffer, and with-help-window.
16191 (describe-char): Add `buffer' argument.
16192 Pass proper command to help-setup-xref. Don't meddle with
16193 help-xref-stack-item directly.
16194 (describe-text-category): Use with-help-window and help-buffer.
16195
32fe5377
SM
16196 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
16197 for the displayed buffer (bug#4887).
16198
bb301b9a
SM
16199 * man.el (Man-completion-table): New function.
16200 (man): Use it.
16201
35179414
DR
162022009-11-24 David Reitter <david.reitter@gmail.com>
16203
bb301b9a 16204 * vc-git.el (vc-git-registered): Use checkout directory (where
35179414
DR
16205 .git is) rather than the file's directory and a relative path spec
16206 to work around a bug in git.
16207
605a20a9
MA
162082009-11-24 Michael Albinus <michael.albinus@gmx.de>
16209
16210 Improve handling of processes on remote hosts.
16211
16212 * eshell/esh-util.el (eshell-path-env): New defvar.
16213 (eshell-parse-colon-path): New defun.
16214 (eshell-file-attributes): Use `eshell-parse-colon-path'.
16215
bb301b9a
SM
16216 * eshell/esh-ext.el (eshell-search-path):
16217 Use `eshell-parse-colon-path'.
605a20a9
MA
16218 (eshell-remote-command): Remove argument HANDLER.
16219 (eshell-external-command): Check for FTP remote connection.
16220
bb301b9a
SM
16221 * eshell/esh-proc.el (eshell-gather-process-output):
16222 Use `file-truename', in order to start also symlinked files.
16223 Apply `start-file-process' instead of `start-process'.
16224 Shorten `command' to the local file name part.
605a20a9 16225
bb301b9a
SM
16226 * eshell/em-cmpl.el (eshell-complete-commands-list):
16227 Use `eshell-parse-colon-path'.
605a20a9
MA
16228
16229 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
16230
16231 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
16232 to `eshell-directory-change-hook'.
16233
d1d33062
TH
162342009-11-24 Tassilo Horn <tassilo@member.fsf.org>
16235
16236 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
bb301b9a 16237 because it could be enabled automatically if view-read-only is non-nil.
d1d33062 16238
a34d8565 162392009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
d1d33062 16240
a34d8565
MK
16241 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
16242 made on 2009-11-22.
d1d33062 16243
c83b8d1b
GM
162442009-11-24 Glenn Morris <rgm@gnu.org>
16245
16246 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
16247 deleted variable bookmark-bmenu-bookmark-column.
16248
83505cfe
SM
162492009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
16250
16251 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
16252
5241b291
CY
162532009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
16254
16255 * net/browse-url.el (browse-url-filename-alist): On Windows, add
16256 two slashes to the "file:" prefix.
16257 (browse-url-file-url): De-munge Cygwin filenames before passing
16258 them to Windows browser.
16259 (browse-url-default-windows-browser): Use call-process.
16260
aefcadb6
JL
162612009-11-23 Juri Linkov <juri@jurta.org>
16262
16263 Implement DocView Continuous mode. (Bug#4896)
16264 * doc-view.el (doc-view-continuous-mode): New defcustom.
83505cfe
SM
16265 (doc-view-mode-map): Bind C-n/<down> to
16266 `doc-view-next-line-or-next-page', C-p/<up> to
16267 `doc-view-previous-line-or-previous-page'.
aefcadb6
JL
16268 (doc-view-next-line-or-next-page)
16269 (doc-view-previous-line-or-previous-page): New commands.
16270
0d62bcea
JL
162712009-11-23 Juri Linkov <juri@jurta.org>
16272
16273 Implement Isearch in comint input history. (Bug#3746)
16274 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
16275 `isearch-mode-hook'.
16276 (comint-history-isearch): New defcustom.
16277 (comint-history-isearch-backward)
16278 (comint-history-isearch-backward-regexp): New commands.
16279 (comint-history-isearch-message-overlay): New buffer-local variable.
16280 (comint-history-isearch-setup, comint-history-isearch-end)
16281 (comint-goto-input, comint-history-isearch-search)
16282 (comint-history-isearch-message, comint-history-isearch-wrap)
16283 (comint-history-isearch-push-state)
16284 (comint-history-isearch-pop-state): New functions.
16285
b593f105
MA
162862009-11-23 Michael Albinus <michael.albinus@gmx.de>
16287
16288 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
16289 return.
16290 (tramp-handle-make-symbolic-link)
16291 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
16292 Quote file names.
16293 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
16294 (tramp-handle-process-file): Use it.
16295
0f202d5d
SM
162962009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
16297
16298 * window.el (move-to-window-line-last-op): Remove.
16299 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
16300
216349f8
SM
163012009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
16302
0f202d5d 16303 Make M-r mirror the new cycling behavior of C-l.
216349f8
SM
16304 * window.el (move-to-window-line-last-op): New var.
16305 (move-to-window-line-top-bottom): New command.
16306 (global-map): Bind M-r move-to-window-line-top-bottom.
16307
c10e0633
GM
163082009-11-23 Sven Joachim <svenjoac@gmx.de>
16309
16310 * dired-x.el (dired-guess-shell-alist-default):
16311 Support xz format. (Bug#4953)
16312
953e0c1a
GM
163132009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
16314
16315 * emulation/viper-cmd.el: Use viper-last-command-char instead of
16316 last-command-char/last-command-event.
16317 (viper-prefix-arg-value): Do correct conversion of event-char for
16318 XEmacs.
16319
83505cfe
SM
16320 * emulation/viper-util.el, emulation/viper.el:
16321 Use viper-last-command-char instead of
16322 last-command-char/last-command-event.
953e0c1a 16323
83505cfe
SM
16324 * ediff-init.el, ediff-mult.el, ediff-util.el:
16325 Replace last-command-char and last-command-event
16326 with (ediff-last-command-char) everywhere.
953e0c1a
GM
16327
16328 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
16329 created in fundamental mode.
16330
16331 * ediff.el (ediff-version): Revert the change of interactive-p to
16332 called-interactively-p.
16333
9ee12eee
TH
163342009-11-22 Tassilo Horn <tassilo@member.fsf.org>
16335
16336 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
16337 generation from word-movement command names.
16338
8b571bf3
JD
163392009-11-21 Jan Djärv <jan.h.d@swipnet.se>
16340
16341 * cus-start.el (all): Add native condition for font-use-system-font.
16342
4121db47
AM
163432009-11-21 Nathaniel Flath <flat0103@gmail.com>
16344
83505cfe
SM
16345 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
16346 Correct the patch from 2009-11-18. (Bug#3910)
4121db47 16347
d71f5e0c
TH
163482009-11-21 Tassilo Horn <tassilo@member.fsf.org>
16349
16350 * progmodes/subword.el: Rename from lisp/subword.el.
16351
16352 * subword.el: Rename to progmodes/subword.el.
16353
16354 * Makefile.in (ELCFILES): Adapt to subword.el move.
16355
fc9d6ad6 163562009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4e2af782 16357 Stefan Monnier <monnier@iro.umontreal.ca>
fc9d6ad6
SM
16358
16359 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
16360 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
16361 (bookmark-bmenu-show-filenames): Use push.
16362 (bookmark-bmenu-hide-filenames): Use local var instead of
16363 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
16364 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
16365 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
16366 filenames now that the bookmark names are always available.
16367
26d9285f
SM
163682009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
16369
16370 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
16371 (bookmark-search-pattern): Move and leave unbound.
16372 (bookmark-bmenu-mode-map): Change binding.
16373 (bookmark-read-search-input): Simplify.
16374 Don't use text-char-description. Don't error on non-char events.
16375 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
16376 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
16377 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
16378 Use a local var for the timer.
16379 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
16380 (i.e. bookmark-bmenu-search).
16381
d73a0317
GM
163822009-11-21 Glenn Morris <rgm@gnu.org>
16383
16384 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
16385
e572025f
CY
163862009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
16387
26d9285f
SM
16388 * net/browse-url.el (browse-url-default-windows-browser):
16389 Use cygstart for cygwin.
e572025f 16390
6aeaa3dc
KF
163912009-11-20 Karl Fogel <karl.fogel@red-bean.com>
16392
e4070cdc 16393 * bookmark.el: Formatting and doc fixes only:
6aeaa3dc
KF
16394 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
16395 (bookmark-bmenu-search): Wrap to fit within 80 columns.
194d44e7 16396 Minor grammar and punctuation fixes in doc string.
6aeaa3dc
KF
16397 (bookmark-read-search-input): Adjust to fit within 80 columns.
16398
a9b76eec
TH
163992009-11-20 Tassilo Horn <tassilo@member.fsf.org>
16400
16401 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
16402 (c-backward-into-nomenclature): Adapt to subword renaming.
16403
16404 * subword.el (subword-forward, subword-backward, subword-mark)
16405 (subword-kill, subword-backward-kill, subword-transpose)
16406 (subword-downcase, subword-upcase, subword-capitalize)
26d9285f
SM
16407 (subword-forward-internal, subword-backward-internal):
16408 Rename from forward-subword, backward-subword, mark-subword,
16409 kill-subword, backward-kill-subword, transpose-subwords,
16410 downcase-subword, upcase-subword, capitalize-subword,
16411 forward-subword-internal, backward-subword-internal.
a9b76eec 16412
1e7d4475
SM
164132009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16414
26d9285f
SM
16415 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
16416 New options.
1e7d4475
SM
16417 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
16418 New vars.
16419 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
16420 (bookmark-bmenu-filter-alist-by-regexp)
16421 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
16422 (bookmark-bmenu-search): New command.
16423 (bookmark-bmenu-mode-map): Bind it.
16424
653d1554
TH
164252009-11-20 Tassilo Horn <tassilo@member.fsf.org>
16426
ab84bfa0
TH
16427 * progmodes/cc-cmds.el: declare-functioned forward-subword and
16428 backward-subword to quit the byte-compiler.
16429
1f35fda9
TH
16430 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
16431
16432 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
16433
653d1554 16434 * progmodes/cc-cmds.el (c-update-modeline)
1e7d4475
SM
16435 (c-forward-into-nomenclature, c-backward-into-nomenclature):
16436 Refer to subword.el functions instead of cc-subword.el.
653d1554
TH
16437
16438 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
16439 subword.el functions instead of cc-subword.el.
16440
1e7d4475
SM
16441 * progmodes/cc-subword.el: Rename to subword.el.
16442 * subword.el: Rename from progmodes/cc-subword.el.
16443 (subword-mode-map): Rename from c-subword-mode-map.
16444 (subword-mode): Rename from c-subword-mode.
653d1554 16445 (global-subword-mode): New global minor mode.
1e7d4475
SM
16446 (forward-subword): Rename from c-forward-subword.
16447 (backward-subword): Rename from c-backward-subword.
16448 (mark-subword): Rename from c-mark-subword.
16449 (kill-subword): Rename from c-kill-subword.
16450 (backward-kill-subword): Rename from c-backward-kill-subword.
16451 (transpose-subwords): Rename from c-tranpose-subword.
16452 (downcase-subword): Rename from c-downcase-subword.
16453 (capitalize-subword): Rename from c-capitalize-subword.
16454 (forward-subword-internal): Rename from c-forward-subword-internal.
16455 (backward-subword-internal): Rename from c-backward-subword-internal.
653d1554 16456
9717f119
DN
164572009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
16458
8de724f3
DN
16459 * vc.el (vc-deduce-fileset): Allow non-state changing operations
16460 from a dired buffer.
16461 (vc-dired-deduce-fileset): New function.
16462 (vc-root-diff, vc-print-root-log): Use it.
16463
9717f119
DN
16464 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
16465 nil LIMIT argument to vc-print-log-internal.
16466
af4999b8
GM
164672009-11-20 Glenn Morris <rgm@gnu.org>
16468
16469 * Makefile.in (ELCFILES): Regenerate.
16470
b58edcb6
JB
164712009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
16472
02e1b488
SM
16473 * calc/calc.el (calc-set-mode-line):
16474 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
b58edcb6
JB
16475 (math-format-number): Rename `math-format-complement-signed' to
16476 `math-format-twos-complement'.
16477
02e1b488 16478 * calc/calc-bin.el (math-format-twos-complement): Rename from
b58edcb6
JB
16479 math-format-complement-signed.
16480 (calc-radix): Rename `calc-complement-signed-mode' to
16481 `calc-twos-complement-mode'.
02e1b488
SM
16482 (calc-octal-radix, calc-hex-radix): Add an argument for
16483 two's complement.
b58edcb6 16484
02e1b488
SM
16485 * calc/calc-embed.el (calc-embedded-mode-vars):
16486 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
b58edcb6 16487
02e1b488
SM
16488 * calc/calc-ext.el (calc-init-extensions):
16489 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
b58edcb6
JB
16490 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
16491
02e1b488
SM
16492 * calc/calc-units.el (math-build-units-table-buffer):
16493 Let `calc-twos-complement-mode' be nil.
b58edcb6
JB
16494
16495 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
16496 entries.
16497
16498 * calc/calc-vec.el (calcFunc-vunpack):
16499 * calc/calc-aent.el (calc-do-calc-eval):
16500 * calc/calc-forms.el (math-format-date):
16501 * calc/calc-graph.el (calc-graph-plot):
16502 * calc/calc-math.el (math-use-emacs-fn):
02e1b488
SM
16503 * calc/calccomp.el (math-compose-expr):
16504 Let `calc-twos-complement-mode' be nil.
16505
165062009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
16507
16508 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
16509 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
16510 * minibuffer.el (completion-in-region-functions): New hook.
16511 (completion-in-region): New function.
16512 * emacs-lisp/lisp.el (lisp-complete-symbol):
16513 * pcomplete.el (pcomplete-std-complete): Use it.
b58edcb6 16514
e3353a78
SM
165152009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
16516
eff77808
SM
16517 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
16518 (latex-complete-alist): New vars.
16519 (latex-string-prefix-p, latex-complete-bibtex-keys)
16520 (latex-complete-envnames, latex-complete-refkeys)
16521 (latex-complete-data): New functions.
16522 (latex-complete, latex-indent-or-complete): New commands.
16523
d2c9fc42
SM
16524 * window.el (display-buffer-mark-dedicated): New var.
16525 (display-buffer): Obey it.
16526 * minibuffer.el (minibuffer-completion-help): Use it.
16527
31a1c477
SM
16528 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
16529
bed4c972
SM
16530 * filecache.el (file-cache-add-file): Use push and cons.
16531 (file-cache-delete-file-regexp): Use push.
16532 (file-cache-complete): Use completion-in-region.
16533
8c22699f
SM
16534 * simple.el (with-wrapper-hook): Fix thinko.
16535
e3353a78
SM
16536 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
16537 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
16538 Use with-current-buffer and string-to-number.
16539 (hfy-fallback-colour-values): Use assoc-string.
16540 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
16541 (hfy-face-at): Remove unused var `found-face'.
16542 (hfy-compile-stylesheet): Remove unused var `css'.
16543 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
16544 and `orig-buffer'.
16545 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
16546 Use with-current-buffer.
16547 (hfy-text-p): Use expand-file-name and fewer setq.
16548
acca02b0
SM
165492009-11-19 Vivek Dasmohapatra <vivek@etla.org>
16550
16551 * htmlfontify.el, hfy-cmap.el: New files.
16552
042b7cc6
JL
165532009-11-19 Juri Linkov <juri@jurta.org>
16554
16555 * minibuffer.el (completions-format): New defcustom.
16556 (completion--insert-strings): Implement vertical format.
16557
16558 * simple.el (switch-to-completions): Move point to the first
16559 completion when point was at the beginning of the buffer.
16560
da205913
JL
165612009-11-19 Juri Linkov <juri@jurta.org>
16562
16563 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
16564
16565 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
16566
0b8ee421
CY
165672009-11-19 Chong Yidong <cyd@stupidchicken.com>
16568
16569 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
16570 (mail-signature): Change default to t.
16571 (mail-from-style): Deprecate `system-default' value.
16572 (mail-insert-from-field): For default value of mail-from-style,
16573 default to `angles' unless `angles' needs quoting and `parens'
16574 does not.
16575 (mail-citation-prefix-regexp): Use citation regexp from
16576 message-mode.
16577
4265deab
MA
165782009-11-19 Michael Albinus <michael.albinus@gmx.de>
16579
acca02b0
SM
16580 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
16581 Set variables for computing the prompt for reading password.
4265deab 16582
27cacd2d
GM
165832009-11-19 Glenn Morris <rgm@gnu.org>
16584
470bce7d
GM
16585 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
16586
7e705a1d
GM
16587 * textmodes/flyspell.el (sgml-lexical-context): Declare.
16588
27cacd2d
GM
16589 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
16590 (newsticker-treeview-listwindow-height): Fix custom type.
16591
b2f0be0f
KH
165922009-11-19 Kenichi Handa <handa@m17n.org>
16593
16594 * descr-text.el (describe-char-padded-string): Compose with TAB
16595 only if there's a font for CH.
02e1b488 16596 (describe-char): Fix the condition for detecting a trivial composition.
b2f0be0f 16597
03446045 165982009-11-18 Nathaniel Flath <flat0103@gmail.com>
b96337b0
AM
16599
16600 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
03446045 16601 more accurate version of the regexp. (Bug#3910)
b96337b0 16602
03446045 166032009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
efa3639b
SS
16604
16605 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
16606
e0620570
JB
166072009-11-18 Juanma Barranquero <lekktu@gmail.com>
16608
16609 * font-setting.el (font-use-system-font): Declare for byte-compiler.
16610 (font-setting-change-default-font): Fix typo in docstring.
16611
6cc6582e
AM
166122009-11-18 Alan Mackenzie <acm@muc.de>
16613
16614 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
16615
dfb3c4c6
JD
166162009-11-17 Jan Djärv <jan.h.d@swipnet.se>
16617
02e1b488 16618 * font-setting.el (font-use-system-font): Move ...
dfb3c4c6
JD
16619
16620 * cus-start.el (all): ... to here.
16621
e268e987
MA
166222009-11-17 Michael Albinus <michael.albinus@gmx.de>
16623
16624 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
16625 Don't set `ad-return-value' if `ad-do-it' doesn't.
16626
303ffde8
MA
16627 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
16628 modification time.
16629
637fa988
JD
166302009-11-17 Jan Djärv <jan.h.d@swipnet.se>
16631
16632 * menu-bar.el: Put "Use system font" in Option-menu.
ad413b35 16633 (menu-bar-options-save): Add font-use-system-font.
637fa988
JD
16634
16635 * loadup.el: If feature system-font-setting or font-render-setting is
16636 there, load font-setting.
16637
02e1b488 16638 * Makefile.in (ELCFILES): Add font-settings.el.
637fa988
JD
16639 * font-setting.el: New file.
16640
1d16a255
GM
166412009-11-17 Glenn Morris <rgm@gnu.org>
16642
16643 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
16644
2d84f804
GM
16645 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
16646 Preserve point in the list buffer. (Bug#4939)
16647 Use point-at-eol.
16648 (newsticker--treeview-list-update-highlight)
16649 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
16650
14467b99
JB
166512009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
16652
16653 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
16654 Remove.
16655
16656 * calc/calc-ext.el (calc-init-extensions): Remove references to
16657 symclip.
16658
16659 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
16660
16661 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
5237d741 16662 * calc/calc-help.el (calc-b-prefix-help): Remove references to
14467b99
JB
16663 `calc-symclip'.
16664
e3c39c01
KR
166652009-11-16 Kevin Ryde <user42@zip.com.au>
16666
02e1b488 16667 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
5237d741 16668 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
e3c39c01 16669
497de631
KR
16670 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
16671 (lm-keywords-list): Allow comma-only separator like "foo,bar".
16672 Ignore trailing spaces by omit-nulls to split-string (fixing
16673 regression from Emacs 21 due to the incompatible split-string
14467b99 16674 change). (Bug #4928.)
497de631 16675
48b27575
DN
166762009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
16677
5237d741 16678 * vc.el (vc-log-show-limit): Default to 2000.
48b27575
DN
16679 (vc-print-log-internal): Insert buttons to request more entries
16680 when limiting the output.
16681
16682 * vc-sccs.el (vc-sccs-print-log):
16683 * vc-rcs.el (vc-rcs-print-log):
16684 * vc-cvs.el (vc-cvs-print-log):
16685 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
16686 LIMIT is non-nil.
16687
d3e97185
MA
166882009-11-16 Michael Albinus <michael.albinus@gmx.de>
16689
16690 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
16691 error when `tramp-gvfs-dbus-event-vector' is set.
16692 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
16693
68d87786
SM
166942009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
16695
16696 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
16697
c0a39702
MA
166982009-11-16 Michael Albinus <michael.albinus@gmx.de>
16699
16700 * net/dbus.el (dbus-unregister-service): New defun.
d3e97185 16701 (dbus-register-property): Register the handlers of
c0a39702
MA
16702 "org.freedesktop.DBus.Properties" for SERVICE.
16703 (dbus-property-handler): Fix docstring.
16704
1e857121
YM
167052009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16706
16707 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
16708 Quote doc string reference in defvaralias as it is not in special form.
16709 (byte-compile-output-docform): Doc fix.
16710
887484c1
JB
167112009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
16712
16713 * calc/calc.el (math-2-word-size, math-half-2-word-size)
16714 (calc-complement-signed-mode): New variables.
16715 (calc-set-mode-line): Add indicator for twos-complements.
16716 (math-format-number): Format twos-complement notation.
16717
16718 * calc/calc-bin.el (calc-word-size): Reset the variables
16719 `math-2-word-size' and `math-half-2-word-size'.
68d87786
SM
16720 (math-format-complement-signed, math-symclip, calcFunc-symclip)
16721 (calc-symclip): New functions.
887484c1
JB
16722
16723 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
16724
68d87786
SM
16725 * calc/calc-embed.el (calc-embedded-mode-vars):
16726 Add `calc-complement-signed-mode' to the list of modes.
887484c1
JB
16727
16728 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
68d87786 16729 (calc-b-oper-keys): Add `calc-symclip' to list.
887484c1
JB
16730
16731 * calc/calc-ext.el (math-read-number-fancy): Read complement
16732 signed numbers.
68d87786
SM
16733 (calc-init-extensions): Add binding for `calc-symclip'.
16734 Add autoload for `calcFunc-symclip' and `calc-symclip'.
887484c1
JB
16735
16736 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
16737 `calc-symclip'.
68d87786 16738 (calc-modes-menu): Add item for twos complement mode.
887484c1 16739
5237d741 16740 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
887484c1 16741
4cf1d7e3
CY
167422009-11-15 Chong Yidong <cyd@stupidchicken.com>
16743
16744 * register.el (jump-to-register, insert-register): Handle Semantic
16745 tags. From commented-out advice in semantic/senator.el.
16746
f8e65267
DN
167472009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
16748
6616006b
DN
16749 * vc.el (vc-log-show-limit): New variable.
16750 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
16751 when using a prefix argument.
16752 (vc-print-log-internal): Add new argument LIMIT.
16753
16754 * vc-svn.el (vc-svn-print-log):
16755 * vc-mtn.el (vc-mtn-print-log):
16756 * vc-hg.el (vc-hg-print-log):
16757 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
1e7d4475 16758 pass it to the log command when set. Make the BUFFER argument
6616006b
DN
16759 non-optional.
16760
16761 * vc-sccs.el (vc-sccs-print-log):
16762 * vc-rcs.el (vc-rcs-print-log):
16763 * vc-git.el (vc-git-print-log):
16764 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
01c35094 16765 ignore it. Make the BUFFER argument non-optional.
6616006b 16766
f8e65267
DN
16767 * bindings.el (mode-line-buffer-identification): Do not purecopy.
16768
0566c4bc
CY
167692009-11-15 Chong Yidong <cyd@stupidchicken.com>
16770
7cce3c91
CY
16771 * dired.el (dired-mode-map): Move encryption items to "Operate"
16772 menu (Bug#4703).
16773
d7063de9
CY
16774 * strokes.el (strokes-update-window-configuration): Make strokes
16775 buffer current before erasing (Bug#4906).
16776
0fc10137
JL
167772009-11-15 Juri Linkov <juri@jurta.org>
16778
16779 * simple.el (set-mark-default-inactive): Add :type, :group
16780 and :version. (Bug#4876)
16781
f5fce4ec
MA
167822009-11-15 Michael Albinus <michael.albinus@gmx.de>
16783
16784 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
16785 (archive-unique-fname): ... here. (Bug#4929)
16786
8d720a00
SM
167872009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
16788
589888fe
SM
16789 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
16790 with a real fix.
16791
8d720a00
SM
16792 * novice.el (disabled-command-function): Add useful args.
16793 Setup the help buffer so that [back] works.
16794 Remove redundant call to help-mode.
16795 (disabled-command-function): Use `case'.
16796 (en/disable-command): New function extracted from enable-command.
16797 (enable-command, disable-command): Use it.
16798
a61344d6
GM
167992009-11-14 Glenn Morris <rgm@gnu.org>
16800
497f0cdd
GM
16801 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
16802 constants. (Bug#4913)
16803
a61344d6
GM
16804 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
16805
d501801e
GM
168062009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
16807
16808 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
16809 defined in C that have no doc-strings. (Bug#1063)
16810
5af27ac2
GM
168112009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
16812
16813 * cus-edit.el (data, files):
16814 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
16815
aec5395b
CY
168162009-11-14 Chong Yidong <cyd@stupidchicken.com>
16817
e7791447
CY
16818 * simple.el (shell-command): Doc fix (Bug#4891).
16819
aec5395b
CY
16820 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
16821
7a41cd7f
GM
168222009-11-14 Glenn Morris <rgm@gnu.org>
16823
c3583c94
GM
16824 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
16825 statements for vc-diff, emerge-quit, and rmail-cease-edit.
16826 If they are already loaded, eval-after-load will do the right thing.
16827
73900d1f
GM
16828 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
16829 compiling.
16830
0028351d
GM
16831 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
16832
f6714ede
GM
16833 * simple.el (x-selection-owner-p): Declare.
16834 (read-mail-command): Use custom radio type rather than choice.
16835 (completion-no-auto-exit): Doc fix.
16836
7a41cd7f 16837 * custom.el (defgroup):
5af27ac2 16838 * epg-config.el (epg): Doc fixes.
7a41cd7f 16839
2d0659ec
DN
168402009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
16841
16842 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
16843 * international/ccl.el (define-ccl-program): Do not purecopy the
16844 docstring, defconst does it anyway.
16845
7fdbcd83
SM
168462009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
16847
d499c5b9
SM
16848 * add-log.el (add-change-log-entry): Avoid displaying the changelog
16849 a second time.
16850
7fdbcd83
SM
16851 * x-dnd.el (x-dnd-maybe-call-test-function):
16852 * window.el (split-window-vertically):
16853 * whitespace.el (whitespace-help-on):
16854 * vc-rcs.el (vc-rcs-consult-headers):
16855 * userlock.el (ask-user-about-lock-help)
16856 (ask-user-about-supersession-help):
16857 * type-break.el (type-break-force-mode-line-update):
16858 * time-stamp.el (time-stamp-conv-warn):
16859 * terminal.el (te-set-output-log, te-more-break, te-filter)
5ce6e4f4 16860 (te-sentinel, terminal-emulator):
7fdbcd83
SM
16861 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
16862 (term-write-input-ring, term-check-source, term-start-output-log):
16863 (term-display-buffer-line, term-dynamic-list-completions):
16864 (term-ansi-make-term, serial-term):
16865 * subr.el (selective-display):
16866 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
16867 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
16868 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
16869 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
16870 (speedbar-remove-localized-speedbar-support)
16871 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
16872 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
16873 (speedbar-buffers-line-directory):
16874 * simple.el (shell-command-on-region, append-to-buffer)
16875 (prepend-to-buffer):
16876 * shadowfile.el (shadow-save-todo-file):
16877 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
16878 (scroll-bar-maybe-set-window-start):
16879 * sb-image.el (speedbar-image-dump):
16880 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
16881 (load-save-place-alist-from-file):
16882 * ps-samp.el (ps-print-message-from-summary):
16883 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
16884 (ps-background-image, ps-begin-job, ps-do-despool):
16885 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
16886 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
16887 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
16888 (pr-call-process, pr-file-list, pr-interface-save):
16889 * novice.el (disabled-command-function)
16890 (enable-command, disable-command):
16891 * mouse.el (mouse-buffer-menu-alist):
16892 * mouse-copy.el (mouse-kill-preserving-secondary):
16893 * macros.el (kbd-macro-query):
16894 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
16895 * informat.el (batch-info-validate):
16896 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
16897 * hippie-exp.el (try-expand-dabbrev-visible):
16898 * help-mode.el (help-make-xrefs):
16899 * help-fns.el (describe-variable):
16900 * generic-x.el (bat-generic-mode-run-as-comint):
16901 * finder.el (finder-mouse-select):
16902 * find-dired.el (find-dired-sentinel):
16903 * filesets.el (filesets-file-close):
16904 * files.el (list-directory):
16905 * faces.el (list-faces-display, describe-face):
16906 * facemenu.el (list-colors-display):
16907 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
16908 * epg.el (epg--process-filter, epg-cancel):
16909 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
16910 (epa--read-signature-type):
16911 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
16912 (emerge-file-names):
16913 * ehelp.el (electric-helpify):
16914 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
16915 * ediff-vers.el (rcs-ediff-view-revision):
16916 * ediff-util.el (ediff-setup):
16917 * ediff-mult.el (ediff-append-custom-diff):
16918 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
16919 (ediff-wordify):
16920 * echistory.el (Electric-command-history-redo-expression):
16921 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
16922 * disp-table.el (describe-display-table):
16923 * dired.el (dired-find-buffer-nocreate):
16924 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
16925 * dabbrev.el (dabbrev--same-major-mode-p):
16926 * chistory.el (list-command-history):
16927 * apropos.el (apropos-documentation):
16928 * allout.el (allout-obtain-passphrase):
16929 (allout-copy-exposed-to-buffer):
16930 (allout-verify-passphrase): Use with-current-buffer.
16931
2ccbc060
GM
169322009-11-13 Glenn Morris <rgm@gnu.org>
16933
16934 * Makefile.in (ELCFILES): Regenerate.
16935
b172ed20
MA
169362009-11-13 Michael Albinus <michael.albinus@gmx.de>
16937
7fdbcd83
SM
16938 * net/dbus.el (dbus-registered-objects-table): Rename from
16939 `dbus-registered-functions-table', because it contains also properties.
b172ed20
MA
16940 (dbus-unregister-object): Unregister also properties.
16941 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
16942 Use a timeout of 500 msec, in order to not block.
16943 (dbus-register-property, dbus-property-handler): New defuns.
16944
e96d62cd
SM
169452009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
16946
16947 * simple.el (minibuffer-default-add-completions): Drop deprecated
16948 4th arg.
16949
14bd267d
EZ
169502009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
16951
e96d62cd
SM
16952 * textmodes/artist.el (artist-mouse-choose-operation):
16953 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
5237d741 16954 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
14bd267d
EZ
16955 (artist-compute-up-event-key): New function.
16956 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
16957
bf89fd7b
KH
169582009-11-13 Kenichi Handa <handa@m17n.org>
16959
16960 * language/japan-util.el: Make sure that the value of jisx0208
16961 property is jisx0208 character.
16962
f70b8925
DN
169632009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
16964
16965 * international/mule.el (auto-coding-regexp-alist): Only purecopy
16966 car or each item, not the whole list.
16967
4d93a9e0
SM
169682009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
16969
16970 * minibuffer.el (minibuffer-completion-help):
16971 Use minibuffer-hide-completions.
16972
05404988
SM
169732009-11-12 Per Starbäck <per@starback.se> (tiny change)
16974
16975 * dired.el (dired-save-positions, dired-restore-positions): New funs.
16976 (dired-revert): Use them (bug#4880).
16977
5297bc10
DN
169782009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
16979
16980 * tooltip.el (tooltip-frame-parameters): Undo previous change.
16981
e2685eb7
JL
169822009-11-12 Juri Linkov <juri@jurta.org>
16983
16984 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
16985 New functions.
16986 (find-file-literally-at-point): Alias of `ffap-literally'.
16987
76410c3e
DN
169882009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
16989
6d341a2a
DN
16990 * textmodes/ispell.el (ispell-skip-region-alist):
16991 * textmodes/css-mode.el (auto-mode-alist):
16992 * progmodes/compile.el (auto-mode-alist):
16993 * international/mule.el (ctext-non-standard-encodings-alist)
16994 (ctext-non-standard-encodings-regexp):
16995 * simple.el (shell-command-switch, text-read-only):
16996 * replace.el (occur-mode-map):
16997 * paths.el (rmail-file-name):
16998 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
16999 * find-file.el (ff-special-constructs):
17000 * files.el (file-name-handler-alist):
17001 * composite.el: Purecopy strings.
17002
76410c3e
DN
17003 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
17004
aaa448c9
DN
170052009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
17006
17007 * widget.el (define-widget): Purecopy the docstring.
17008 * international/mule-cmds.el (charset): Do not purecopy the
17009 docstring here, define-widget does it.
17010
17011 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
17012 * textmodes/bibtex-style.el (auto-mode-alist):
17013 * progmodes/inf-lisp.el (inferior-lisp-prompt):
17014 * progmodes/compile.el (compile-command):
17015 * language/korea-util.el (default-korean-keyboard):
17016 * international/mule-conf.el (file-coding-system-alist):
17017 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
17018 * tooltip.el (tooltip-frame-parameters):
17019 * newcomment.el (comment-end, comment-padding):
17020 * dired.el (dired-trivial-filenames):
17021 * comint.el (comint-file-name-prefix): Purecopy initial values.
17022
bbe650fd
MA
170232009-11-11 Michael Albinus <michael.albinus@gmx.de>
17024
17025 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
17026 (tramp-advice-minibuffer-electric-tilde): Unload advices via
17027 `tramp-unload'.
17028 (tramp-advice-make-auto-save-file-name)
17029 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
17030 after removing the advice.
17031
6bdad9ae
DN
170322009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
17033
2f7f4bee
DN
17034 * progmodes/grep.el (grep-regexp-alist):
17035 * international/mule-cmds.el (iso-2022-control-alist):
17036 * emacs-lisp/timer.el (timer-duration-words):
17037 * subr.el (version-separator, version-regexp-alist):
17038 * minibuffer.el (completion-styles-alist):
17039 * faces.el (face-attribute-name-alist, list-faces-sample-text):
17040 Change defvars to defconsts.
17041
a042de45
DN
17042 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
17043 * loadup.el ("international/mule-conf"): Load the byte compiled version.
17044 * international/mule-conf.el: Allow to be byte compiled.
17045
3b6acc72
DN
17046 * international/mule.el (define-charset): Purecopy props.
17047 (load-with-code-conversion): Purecopy doc string and file name.
17048 (put-charset-property): Purecopy strings.
17049 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
17050
1c2efdfb 17051 * international/mule-cmds.el (register-input-method): Purecopy arguments.
ebfa10d3
DN
17052 (define-char-code-property): Correctly purecopy the table.
17053
62591911
DN
17054 * international/ccl.el (define-ccl-program): Purecopy the docstring.
17055
8b908da6
DN
17056 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
17057
ff917d63
DN
17058 * subr.el (add-hook): Purecopy strings.
17059 (eval-after-load): Purecopy load-history-regexp and the form.
17060
af89cf77
DN
17061 * custom.el (custom-declare-group): Purecopy load-file-name.
17062
a3c20c83 17063 * subr.el (menu-bar-separator): New defconst.
04991a1c
DN
17064 * net/eudc.el (eudc-tools-menu):
17065 * international/mule-cmds.el (set-coding-system-map)
17066 (mule-menu-keymap):
17067 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
17068 * vc-hooks.el (vc-menu-map):
a3c20c83
DN
17069 * replace.el (occur-mode-map):
17070 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
1c2efdfb 17071 (menu-bar-edit-menu, menu-bar-goto-menu)
a3c20c83
DN
17072 (menu-bar-custom-menu, menu-bar-showhide-menu)
17073 (menu-bar-options-menu, menu-bar-tools-menu)
17074 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
17075 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
17076 (menu-bar-help-menu):
17077 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
17078 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
17079
6bdad9ae
DN
17080 * term/x-win.el (x-gtk-stock-map):
17081 * progmodes/vera-mode.el (auto-mode-alist):
17082 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
17083 (inferior-lisp-program, inferior-lisp-load-command):
17084 * progmodes/hideshow.el (hs-special-modes-alist):
17085 * progmodes/gud.el (same-window-regexps):
17086 * progmodes/grep.el (grep-program, find-program, xargs-program):
17087 * net/telnet.el (same-window-regexps):
17088 * net/rlogin.el (same-window-regexps):
17089 * language/ethiopic.el (font-ccl-encoder-alist):
17090 * vc-sccs.el (vc-sccs-master-templates):
17091 * vc-rcs.el (vc-rcs-master-templates):
17092 * subr.el (cl-assertion-failed):
17093 * simple.el (next-error-overlay-arrow-position):
17094 * lpr.el (lpr-command):
17095 * locate.el (locate-ls-subdir-switches):
17096 * info.el (same-window-regexps, info)
17097 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
17098 * image-mode.el (image-mode, auto-mode-alist):
17099 * hippie-exp.el (hippie-expand-ignore-buffers):
17100 * format.el (format-alist):
17101 * find-dired.el (find-ls-subdir-switches, find-grep-options)
17102 (find-name-arg):
17103 * facemenu.el (facemenu-keybindings):
17104 * dired.el (dired-listing-switches, dired-chown-program):
17105 * diff.el (diff-switches, diff-command):
17106 * cus-edit.el (same-window-regexps):
17107 * bindings.el (mode-line-mule-info)
17108 (mode-line-buffer-identification): Purecopy strings.
17109
e0987650
JL
171102009-11-11 Juri Linkov <juri@jurta.org>
17111
3570691b 17112 * simple.el (dired-get-filename) <declare-function>:
e0987650
JL
17113 Tell the byte-compiler about dired-get-filename.
17114 (shell-command): In Dired mode, get filename from the current line
17115 as the default value.
17116
b16ff465
GM
171172009-11-10 Glenn Morris <rgm@gnu.org>
17118
e8a11b22
GM
17119 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
17120 * calendar/holidays.el, progmodes/cperl-mode.el:
17121 Update x-popup-menu declarations.
17122
b16ff465
GM
17123 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
17124 (list-load-path-shadows): Use dolist.
17125 (list-load-path-shadows): Use with-current-buffer.
17126
032c3399
JL
171272009-11-10 Juri Linkov <juri@jurta.org>
17128
17129 * minibuffer.el (read-file-name): Support a list of default values
17130 in `default-filename'. Use the first file name where only one
17131 element is required. Doc fix.
17132
8fb1629f
MA
171332009-11-09 Michael Albinus <michael.albinus@gmx.de>
17134
17135 * net/dbus.el (dbus-unregister-object): Release service, if no
17136 other method is registered for it.
17137
a51203ee 171382009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
fd4489f0
CY
17139
17140 * bookmark.el (bookmark-completing-read): Sort bookmark names if
17141 bookmark-sort-flag is non-nil (Bug#4653).
17142
9bf7dc8a
CY
171432009-11-08 Chong Yidong <cyd@stupidchicken.com>
17144
15207e74
CY
17145 * emulation/cua-base.el: Add CUA property to some CC mode commands
17146 (Bug#4100).
17147
8bf7ed70
KR
171482009-11-08 Kevin Ryde <user42@zip.com.au>
17149
17150 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
9bf7dc8a 17151 at end of sentence (Bug#4818).
8bf7ed70 17152
951802d0
CY
171532009-11-08 Jared Finder <jfinder@crypticstudios.com>
17154
17155 * progmodes/compile.el (compilation-error-regexp-alist-alist):
17156 Handle "see declaration of" MSFT statements (Bug#4100).
17157
e8244310
MA
171582009-11-08 Michael Albinus <michael.albinus@gmx.de>
17159
17160 * net/tramp.el (tramp-advice-make-auto-save-file-name)
17161 (tramp-advice-file-expand-wildcards): Unload via
17162 `ad-remove-advice'.
17163
17164 * net/trampver.el: Update release number.
17165
a51203ee 171662009-11-08 Kevin Ryde <user42@zip.com.au>
e8244310
MA
17167
17168 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
17169 `ad-do-it'.
17170
a51203ee 171712009-11-08 Andr <m00naticus@gmail.com> (tiny change)
e8244310
MA
17172
17173 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
17174 in order to keep context in SELinux.
17175
bedd8a58
CY
171762009-11-08 Chong Yidong <cyd@stupidchicken.com>
17177
17178 * dired-aux.el (dired-query): Place cursor in echo area and allow
17179 C-g.
17180
17181 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
17182 menu item if not on a directory (Bug#4701).
17183
0484d600
MA
171842009-11-07 Michael Albinus <michael.albinus@gmx.de>
17185
17186 Sync with Tramp 2.1.17.
17187
17188 * net/tramp.el (tramp-handle-copy-directory): Don't use
17189 `file-remote-p' (due to compatibility).
17190
17191 * net/tramp-compat.el (tramp-compat-copy-directory)
17192 (tramp-compat-delete-directory): New defuns.
17193
17194 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
6a7662bb
BR
17195 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
17196 Use `tramp-compat-delete-directory'.
0484d600
MA
17197
17198 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
6a7662bb
BR
17199 (tramp-smb-handle-delete-directory):
17200 Use `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
0484d600
MA
17201
17202 * net/trampver.el: Update release number.
17203
b42b2189
CY
172042009-11-07 Chong Yidong <cyd@stupidchicken.com>
17205
6960d7b9
CY
17206 * tar-mode.el (tar-copy): Call write-region on the right buffer
17207 (Bug#4857).
17208
b42b2189
CY
17209 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
17210 by hand, if necessary (Bug#4878).
17211
0ad57dfd
CY
172122009-11-06 Chong Yidong <cyd@stupidchicken.com>
17213
d19e23ae
CY
17214 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
17215 align size column (Bug#4839).
17216
0ad57dfd
CY
17217 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
17218 statement.
17219
0b7f397c
DN
172202009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
17221
17222 * progmodes/ld-script.el (auto-mode-alist):
17223 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
17224
17225 * cus-face.el (custom-declare-face): Purecopy face spec.
17226
495bd5ca
KH
172272009-11-06 Kenichi Handa <handa@m17n.org>
17228
17229 * international/uni-bidi.el: Re-generated.
17230 * international/uni-category.el: Re-generated.
17231 * international/uni-combining.el: Re-generated.
17232 * international/uni-mirrored.el: Re-generated.
17233
1e8780b1
DN
172342009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
17235
17236 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
17237 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
17238 (tex-start-options, slitex-run-command, latex-run-command)
17239 (tex-run-command, tex-directory):
17240 * textmodes/ispell.el (ispell-html-skip-alists)
17241 (ispell-tex-skip-alists, ispell-tex-skip-alists):
17242 * textmodes/fill.el (adaptive-fill-first-line-regexp):
17243 (adaptive-fill-regexp):
17244 * textmodes/dns-mode.el (auto-mode-alist):
17245 * progmodes/python.el (interpreter-mode-alist):
17246 * progmodes/etags.el (tags-compression-info-list):
17247 * progmodes/etags.el (tags-file-name):
17248 * net/browse-url.el (browse-url-galeon-program)
17249 (browse-url-firefox-program):
17250 * mail/sendmail.el (mail-signature-file)
17251 (mail-citation-prefix-regexp):
17252 * international/mule-conf.el (eight-bit):
17253 * international/latexenc.el (latex-inputenc-coding-alist):
17254 * international/fontset.el (x-pixel-size-width-font-regexp):
17255 * emacs-lisp/warnings.el (warning-type-format):
17256 * emacs-lisp/trace.el (trace-buffer):
17257 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
17258 (emacs-lisp-mode-map):
17259 * calendar/holidays.el (holiday-solar-holidays)
17260 (holiday-bahai-holidays, holiday-islamic-holidays)
17261 (holiday-christian-holidays, holiday-hebrew-holidays)
17262 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
17263 (hebrew-holidays-1, holiday-oriental-holidays)
17264 (holiday-general-holidays):
17265 * x-dnd.el (x-dnd-known-types):
17266 * tool-bar.el (tool-bar):
17267 * startup.el (site-run-file):
17268 * shell.el (shell-dumb-shell-regexp):
17269 * rfn-eshadow.el (file-name-shadow-tty-properties)
17270 (file-name-shadow-properties):
17271 * paths.el (remote-shell-program, news-directory):
17272 * mouse.el ([C-down-mouse-3]):
17273 * menu-bar.el (menu-bar-tools-menu):
17274 * jka-cmpr-hook.el (jka-compr-load-suffixes)
17275 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
17276 (jka-compr-compression-info-list):
17277 * isearch.el (search-whitespace-regexp):
17278 * image-file.el (image-file-name-extensions):
17279 * find-dired.el (find-ls-option):
17280 * files.el (directory-listing-before-filename-regexp)
17281 (directory-free-space-args, insert-directory-program)
17282 (list-directory-brief-switches, magic-fallback-mode-alist)
17283 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
17284 (automount-dir-prefix):
17285 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
17286 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
17287 (face-font-registry-alternatives, face-font-registry-alternatives)
17288 (face-font-family-alternatives):
17289 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
17290 (facemenu-foreground-menu, facemenu-face-menu):
17291 * epa-hook.el (epa-file-name-regexp):
17292 * dnd.el (dnd-protocol-alist):
17293 * textmodes/rst.el (auto-mode-alist):
a51203ee 17294 * button.el (default-button): Purecopy strings.
1e8780b1 17295
0adae11f
GM
172962009-11-06 Glenn Morris <rgm@gnu.org>
17297
17298 * Makefile.in (ELCFILES): Update.
17299
2adaf057
SM
173002009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
17301
8f72f03c
SM
17302 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
17303 * emacs-lisp/levents.el: Move to obsolete/levents.el.
17304
2adaf057
SM
17305 * nxml/xsd-regexp.el (xsdre-gen-categories):
17306 * nxml/xmltok.el (xmltok-parse-entity):
17307 * nxml/rng-parse.el (rng-parse-validate-file):
17308 * nxml/rng-maint.el (rng-format-manual)
17309 (rng-manual-output-force-new-line):
17310 * nxml/rng-loc.el (rng-save-schema-location-1):
17311 * nxml/rng-cmpct.el (rng-c-parse-file):
17312 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
17313 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
17314
14862301
SM
173152009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
17316
bf0b361c 17317 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
14862301
SM
17318 Remove extra save-excursions and make-variable-buffer-local's.
17319 Suggested by Stefan Monnier.
17320
17321 (verilog-getopt-file, verilog-module-inside-filename-p)
17322 (verilog-set-define): Merge GNU 1.35 and repair changes from
17323 switching to using with-current-buffer.
17324
17325 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
17326 being treated as a number and confusing AUTORESET.
17327 Reported by Dan Dever.
17328
17329 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
17330 Add verilog-auto-ignore-concat to fix backward compatibility with
17331 older verilog-modes. Reported by Dan Katz.
17332
17333 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
17334 containing closing anchors "...$".
17335
17336 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
17337 Reported by Wade Smith.
17338
48c2d18a 17339 (verilog-batch-execute-func): Comment on function usage.
14862301
SM
17340
173412009-11-05 Michael McNamara <mac@mail.brushroad.com>
17342
bf0b361c
JB
17343 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
17344 for labels.
14862301
SM
17345
17346 (verilog-label-re, verilog-calc-1): Support proper indent of named
17347 asserts.
17348
17349 (verilog-backward-token, verilog-basic-complete-re)
17350 (verilog-beg-of-statement, verilog-indent-re): Support proper
17351 indent of the assert statement at the beginning of a block of text.
17352
17353 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
17354 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
17355 tokens as begins.
17356
4f8f657f
GM
173572009-11-05 Glenn Morris <rgm@gnu.org>
17358
775adc51
GM
17359 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
17360 Emacs 19. (Bug#1531)
17361 (byte-compile-fix-header): Update for the above change.
17362 Drop test for epoch::version.
17363
4ad6a5e7 17364 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
60878f2d
GM
17365 * cus-dep.el (custom-make-dependencies):
17366 * finder.el (finder-compile-keywords):
17367 Use autoload-rubric's feature argument.
4ad6a5e7 17368
4f8f657f
GM
17369 * calendar/diary-lib.el (top-level): Make load behave more like require.
17370
881e4184
GM
17371 * vc-git.el (vc-git-stash-map): Move definition before use.
17372
ba214964 173732009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
f6195dfb 17374
b6f8ba09
DN
17375 * custom.el (custom-declare-group): Purecopy standard-value.
17376 (custom-declare-group): Purecopy custom-prefix.
17377
7fdbcd83
SM
17378 * international/mule.el (load-with-code-conversion):
17379 Call do-after-load-evaluation unconditionally.
eb6f577b 17380
f6195dfb
DN
17381 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
17382
56f14120
SM
173832009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
17384
17385 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
17386
e5c89ce9
GM
173872009-11-04 Glenn Morris <rgm@gnu.org>
17388
17389 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
17390 (byte-compile-compatibility): Remove option.
17391 (byte-compile-close-variables, byte-compile-fix-header)
17392 (byte-compile-insert-header, byte-compile-output-docform)
17393 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
17394 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
17395 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
17396 (byte-compile-insert, byte-compile-defun):
17397 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
eef899a9
GM
17398 (byte-defop-compiler19): Remove.
17399 Without byte-compile-compatibility, the 'emacs19-opcode property is not
17400 used by anything. Replace all calls with byte-defop-compiler.
e5c89ce9 17401
e24f42ab
JL
174022009-11-04 Juri Linkov <juri@jurta.org>
17403
17404 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
17405 (menu-bar-options-menu): Don't quote the `prop' arg of
17406 `menu-bar-make-mm-toggle'.
17407
d3d5f4f5
JB
174082009-11-04 Juanma Barranquero <lekktu@gmail.com>
17409
17410 * calendar/calendar.el (cal-loaddefs):
17411 * calendar/diary-lib.el (diary-loaddefs):
17412 * calendar/holidays.el (hol-loaddefs):
17413 * eshell/esh-module.el (esh-groups): Load rather than require.
17414
6e39d3b2
SM
174152009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
17416
e96d62cd
SM
17417 * calendar/todo-mode.el (todo-add-category): Don't hardcode
17418 point-min==1.
7e83e8b4
SM
17419 (todo-top-priorities): Only display-buffer when called interactively.
17420 (todo-item-start): Don't save excursion point.
17421 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
17422 (todo-insert-item-here, todo-file-item, todo-remove-item):
17423 Adjust uses of todo-item-start and todo-item-end.
17424
fae4e5b9
SM
17425 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
17426 (autoload-rubric): Don't use any more.
fae4e5b9 17427
6e39d3b2
SM
17428 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
17429 and only put a prop if it is non-nil.
17430
c9753fb4
JL
174312009-11-03 Juri Linkov <juri@jurta.org>
17432
17433 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
17434 (menu-bar-options-menu): Fix list quoting (Bug#4429).
17435
17436 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
17437 and "Menu" to make top-level menu item visually one unit (like
17438 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
17439 multi-word menu items). Fix :help string for quit-window.
17440
db04f33f
GM
174412009-11-03 Glenn Morris <rgm@gnu.org>
17442
2aea6521
GM
17443 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
17444 (byte-compile-file-form-define-abbrev-table)
17445 (byte-compile-file-form-custom-declare-variable)
17446 (byte-compile-variable-ref, byte-compile-defvar):
17447 Whether or not a warning is enabled should only affect whether we issue
17448 the warning, not whether or not we collect the relevant data.
17449 Eg warnings can be turned on and off throughout the course of a file.
17450
db04f33f
GM
17451 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
17452 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
17453
937e6a56
SM
174542009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
17455
17456 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
17457 * play/mpuz.el (mpuz-create-buffer):
17458 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
17459 (lm-print-y,s,noise, lm-print-w0, lm-init):
17460 * play/gomoku.el (gomoku-prompt-for-move):
17461 * play/fortune.el (fortune-in-buffer):
17462 * play/dissociate.el (dissociated-press):
17463 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
5ce6e4f4 17464 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
937e6a56
SM
17465 * mail/supercite.el (sc-eref-show):
17466 * mail/smtpmail.el (smtpmail-send-it):
17467 * mail/rmailsum.el (rmail-summary-next-labeled-message)
17468 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
17469 (rmail-summary-undelete-many, rmail-summary-rmail-update)
17470 (rmail-summary-goto-msg, rmail-summary-expunge)
17471 (rmail-summary-get-new-mail, rmail-summary-search-backward)
17472 (rmail-summary-add-label, rmail-summary-output-menu)
17473 (rmail-summary-output-body):
17474 * mail/rfc822.el (rfc822-addresses):
17475 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
17476 * mail/mailpost.el (post-mail-send-it):
17477 * mail/hashcash.el (hashcash-generate-payment):
17478 * mail/feedmail.el (feedmail-run-the-queue)
17479 (feedmail-queue-send-edit-prompt-help-first)
17480 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
17481 (feedmail-deduce-address-list):
17482 * eshell/esh-ext.el (eshell-remote-command):
17483 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
17484 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
17485 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
17486 (viper-save-string-in-file, viper-valid-marker):
17487 * emulation/viper-keym.el (viper-toggle-key):
17488 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
17489 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
17490 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
17491 * emulation/viper-cmd.el (viper-exec-form-in-vi)
17492 (viper-exec-form-in-emacs, viper-brac-function):
17493 * emulation/viper.el (viper-delocalize-var):
17494 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
17495 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
17496 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
17497 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
17498 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
17499 * emulation/edt.el (edt-electric-helpify):
17500 * emulation/cua-rect.el (cua--rectangle-aux-replace):
17501 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
17502 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
17503 (cua-indent-to-global-mark-column):
17504 * calendar/diary-lib.el (calendar-mark-1):
17505 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
17506 Use with-current-buffer.
17507 * emulation/viper.el (viper-delocalize-var): Use dolist.
17508
5b955562
CY
175092009-11-03 Chong Yidong <cyd@stupidchicken.com>
17510
17511 * comint.el (comint-replace-by-expanded-history-before-point):
17512 Replace !! with the previous input string literally (Bug#1795).
17513
6292c599
JB
175142009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
17515
17516 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
17517 to be made up of whitespace.
17518
8368c14e
CY
175192009-11-02 Chong Yidong <cyd@stupidchicken.com>
17520
17521 * minibuffer.el (read-file-name): Don't use file dialogs for
17522 remote directories (Bug#99).
17523
6f750f0d
CY
175242009-11-01 Chong Yidong <cyd@stupidchicken.com>
17525
17526 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
17527
97ab3f47
AS
175282009-11-01 Andreas Schwab <schwab@linux-m68k.org>
17529
17530 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
17531 instead of deleting the window or frame.
17532
673c1168
CY
175332009-10-31 Chong Yidong <cyd@stupidchicken.com>
17534
17535 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
17536 Support face colors.
17537
937e6a56
SM
17538 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
17539 New function. Support face colors (Bug#1168).
673c1168
CY
17540 (tex-common-initialization): Use it.
17541
17542 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
17543 mode allows it (Bug#1168).
17544
c9349f0a
CY
175452009-10-31 Juri Linkov <juri@jurta.org>
17546
17547 * facemenu.el (list-colors-display): Don't mark buffer as
17548 modified (Bug#3948).
17549
ebf5c4f5
CY
175502009-10-31 Chong Yidong <cyd@stupidchicken.com>
17551
6a7662bb
BR
17552 * international/mule-diag.el (list-character-sets-1):
17553 Minor message fix (Bug#3526).
5c2dce75 17554
6a7662bb
BR
17555 * progmodes/etags.el (etags-list-tags, etags-tags-apropos):
17556 Fix face property (Bug#4834).
26581f0e
CY
17557 (etags-list-tags, etags-tags-apropos-additional)
17558 (etags-tags-apropos, tags-select-tags-table): Add follow-link
17559 property.
17560
ebf5c4f5
CY
17561 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
17562 items.
17563
9a529312
SM
175642009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
17565
17566 * textmodes/two-column.el (2C-split):
17567 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
17568 * textmodes/tex-mode.el (tex-set-buffer-directory):
17569 * textmodes/spell.el (spell-region, spell-string):
17570 * textmodes/reftex.el (reftex-erase-buffer):
17571 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
17572 * textmodes/reftex-toc.el (reftex-toc-promote-action):
17573 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
17574 (reftex-select-item):
17575 * textmodes/reftex-ref.el (reftex-label-info-update)
17576 (reftex-offer-label-menu):
17577 * textmodes/reftex-index.el (reftex-index-change-entry)
17578 (reftex-index-phrases-info):
17579 * textmodes/reftex-global.el (reftex-create-tags-file)
17580 (reftex-save-all-document-buffers, reftex-ensure-write-access):
17581 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
17582 (reftex-view-crossref-from-bibtex):
17583 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
17584 (reftex-extract-bib-entries-from-thebibliography)
17585 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
17586 * textmodes/refbib.el (r2b-capitalize-title):
17587 (r2b-convert-buffer, r2b-help):
17588 * textmodes/page-ext.el (pages-directory)
17589 (pages-directory-goto-with-mouse):
17590 * textmodes/bibtex.el (bibtex-validate-globally):
17591 * textmodes/bib-mode.el (bib-capitalize-title):
17592 * textmodes/artist.el (artist-clear-buffer, artist-system):
17593 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
17594 (local-set-scheme-interaction-buffer, xscheme-process-filter)
17595 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
17596 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
17597 (xscheme-send-control-g-interrupt, xscheme-start-process)
17598 (xscheme-process-sentinel, xscheme-cd):
17599 * progmodes/verilog-mode.el (verilog-read-always-signals)
17600 (verilog-set-define, verilog-getopt-file)
17601 (verilog-module-inside-filename-p):
17602 * progmodes/sh-script.el:
17603 * progmodes/python.el (python-pdbtrack-get-source-buffer)
17604 (python-pdbtrack-grub-for-buffer, python-execute-file):
17605 * progmodes/octave-inf.el (inferior-octave):
17606 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
17607 (idlwave-shell-compile-helper-routines, idlwave-set-local)
17608 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
17609 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
17610 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
17611 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
17612 (idlwave-shell-filter, idlwave-shell-examine-highlight)
17613 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
17614 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
17615 (idlwave-shell-examine-display, idlwave-shell-run-region)
17616 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
17617 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
17618 * progmodes/idlw-help.el (idlwave-help-get-special-help)
17619 (idlwave-help-get-help-buffer):
17620 * progmodes/gud.el (gud-basic-call, gud-find-class)
17621 (gud-tooltip-activate-mouse-motions-if-enabled):
17622 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
17623 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
17624 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
17625 (ebrowse-tags-next-file):
17626 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
17627 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
17628 (ebnf-eps-finish-and-write):
17629 * progmodes/cpp.el (cpp-edit-save):
17630 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
17631 * progmodes/cc-defs.el (c-emacs-features):
17632 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
17633 (antlr-directory-dependencies):
17634 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
17635 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
17636 (ada-find-any-references, ada-make-filename-from-adaname)
17637 (ada-make-body-gnatstub):
17638 * obsolete/rnews.el (news-list-news-groups):
5ce6e4f4 17639 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
9a529312
SM
17640 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
17641 * net/rcirc.el (rcirc-debug):
17642 * net/newst-treeview.el (newsticker--treeview-list-add-item)
17643 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
17644 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
17645 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
5ce6e4f4 17646 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
9a529312
SM
17647 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
17648 (newsticker--treeview-list-clear-highlight)
17649 (newsticker--treeview-list-update-highlight)
17650 (newsticker--treeview-list-highlight-start)
17651 (newsticker--treeview-tree-update-highlight)
17652 (newsticker--treeview-get-selected-item)
17653 (newsticker-treeview-mark-list-items-old)
17654 (newsticker--treeview-set-current-node):
17655 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
17656 * net/newst-backend.el (newsticker--get-news-by-funcall)
17657 (newsticker--get-news-by-wget, newsticker--image-get)
17658 (newsticker--image-sentinel):
17659 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
17660 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
17661 (eudc-ph-close-session):
17662 * net/eudc.el (eudc-save-options):
17663 * language/thai-word.el (thai-update-word-table):
17664 * language/japan-util.el (japanese-string-conversion):
17665 * international/titdic-cnv.el (tsang-quick-converter)
17666 (ziranma-converter, ctlau-converter):
17667 * international/mule-cmds.el (describe-language-environment):
17668 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
17669 (skkdic-convert-postfix, skkdic-convert-prefix):
17670 (skkdic-convert-okuri-nasi, skkdic-convert):
17671 * emacs-lisp/re-builder.el (reb-update-overlays):
17672 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
17673 * emacs-lisp/gulp.el (gulp-send-requests):
17674 * emacs-lisp/find-gc.el (trace-call-tree):
17675 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
17676 (eieio-describe-generic):
17677 * emacs-lisp/eieio-base.el (eieio-persistent-read):
17678 * emacs-lisp/edebug.el (edebug-outside-excursion):
17679 * emacs-lisp/debug.el (debugger-make-xrefs):
17680 * emacs-lisp/cust-print.el (custom-prin1-to-string):
17681 * emacs-lisp/chart.el (chart-new-buffer):
17682 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
17683 Use with-current-buffer.
17684 * textmodes/artist.el (artist-system): Don't call
17685 copy-sequence on a fresh string.
17686 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
17687
d566f228
GM
176882009-10-31 Stephen Berman <stephen.berman@gmx.net>
17689
17690 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
1c2efdfb 17691 is no item to edit. (Bug#4820)
d566f228 17692 (todo-top-priorities): Restore point and restore narrowing in Todo
1c2efdfb 17693 buffer. (Bug#4820)
d566f228 17694
f3628edd
GM
176952009-10-31 Glenn Morris <rgm@gnu.org>
17696
5cf3709c
GM
17697 * net/ange-ftp.el (top-level): Don't require dired when compiling.
17698 (comint-last-output-start, comint-last-input-start)
17699 (comint-last-input-end): Don't defvar when compiling.
17700 (ange-ftp-process-file): Use bound-and-true-p.
17701
4c814fd2
GM
17702 * pcmpl-rpm.el (top-level): Move provide statement to end.
17703 (pcmpl-rpm): Remove unused custom group.
17704
113b8dcc
GM
17705 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
17706
31c615e4
GM
17707 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
17708
416d3588
GM
17709 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
17710 (byte-compile-warnings): Add `constants' as an option.
17711 (byte-compile-callargs-warn, byte-compile-arglist-warn)
17712 (display-call-tree): Update for byte-compile-fdefinition possibly
17713 returning `(macro lambda ...)'. (Bug#4778)
17714 (byte-compile-variable-ref, byte-compile-setq-default):
17715 Respect `constants' member of byte-compile-warnings.
17716
00f71f39
SM
177172009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
17718
17719 * vc-bzr.el (vc-bzr-revision-keywords): New var.
17720 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
17721 to "submit:".
17722
ca0a881a
DN
177232009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
17724
17725 * textmodes/ispell.el (ispell-skip-region-alist):
17726 * international/mule-conf.el (eight-bit):
17727 * international/fontset.el (font-encoding-alist):
17728 * startup.el (pure-space-overflow-message):
17729 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
17730 * paths.el (gnus-nntp-service, rmail-spool-directory)
17731 (term-file-prefix):
17732 * files.el (save-some-buffers-action-alist):
17733 * cmuscheme.el (same-window-buffer-names):
17734 * ielm.el (same-window-buffer-names):
17735 * shell.el (same-window-buffer-names):
17736 * mail/sendmail.el (same-window-buffer-names):
17737 * progmodes/inf-lisp.el (same-window-buffer-names):
17738 * bindings.el (mode-line-client)
17739 (mode-line-column-line-number-mode-map):
17740 * language/tibetan.el (tibetan-precomposition-rule-regexp)
17741 (tibetan-precomposed-regexp): Purecopy string arguments.
17742
b861e45e
SM
177432009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17744
6df9b6d7
SM
17745 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
17746 (calcDigit-nondigit):
17747 * calc/calc-yank.el (calc-copy-to-buffer):
17748 * calc/calc-units.el (calc-invalidate-units-table):
17749 * calc/calc-trail.el (calc-trail-yank):
17750 * calc/calc-store.el (calc-insert-variables):
17751 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
17752 * calc/calc-prog.el (calc-read-parse-table):
17753 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
17754 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
17755 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
17756 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
17757 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
17758 (calc-graph-name, calc-graph-find-command, calc-graph-view)
17759 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
17760 * calc/calc-ext.el (calc-realign):
17761 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
17762 (calc-embedded-finish-edit, calc-embedded-make-info)
17763 (calc-embedded-finish-command, calc-embedded-stack-change):
17764 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
17765
70f44c65
SM
17766 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
17767 shell-dynamic-complete-filename in preference to
17768 comint-dynamic-complete-filename.
17769
b861e45e
SM
17770 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
17771 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
17772 Don't consider whether the display supports colors.
17773 (bookmark-import-new-list): Use dolist.
17774 (bookmark-bmenu-mode-map): Move initialization into declaration.
17775 (bookmark-bmenu-list): Use dolist, simplify.
17776 (bookmark-show-all-annotations): Use save-selected-window and dolist.
17777 (menu-bar-final-items): Use push.
17778
8549241d 177792009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
cc63d28f
SM
17780
17781 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
17782 it works on remote files.
17783 (vc-hg-diff): Don't pass any `--cwd' argument.
17784
30644573
KR
177852009-10-27 Kevin Ryde <user42@zip.com.au>
17786
cc63d28f
SM
17787 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
17788 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
30644573
KR
17789 (Further to Bug#3921).
17790
9be01a63
MA
177912009-10-27 Michael Albinus <michael.albinus@gmx.de>
17792
17793 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
17794 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
17795 calling `tramp-imap-put-file'. Add file size to the call.
17796 (tramp-imap-get-file-entries): Compute also user name, file size,
17797 and date.
17798 (tramp-imap-handle-insert-directory): Insert uid and gid.
17799 (tramp-imap-handle-file-attributes): Transform uid and gid
17800 according to `id-format'.
17801 (tramp-imap-put-file): New optional parameter SIZE. Encode file
17802 size in header X-Size.
17803
41849bf9
JB
178042009-10-26 Juanma Barranquero <lekktu@gmail.com>
17805
17806 * simple.el (transpose-subr): Give clearer error when the mark
17807 is not set. (Bug#4807)
17808
293c24f9
MA
178092009-10-26 Michael Albinus <michael.albinus@gmx.de>
17810
cc63d28f
SM
17811 * net/tramp.el (tramp-perl-file-truename): New defconst.
17812 Perl code contributed by yary <not.com@gmail.com> (tiny change).
293c24f9 17813 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
cc63d28f
SM
17814 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
17815 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
293c24f9 17816
cc63d28f
SM
17817 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
17818 Ignore `dired-call-process'.
293c24f9
MA
17819 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
17820
178212009-10-26 Julian Scheid <julians37@gmail.com>
17822
cc63d28f 17823 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
293c24f9
MA
17824 (tramp-get-remote-readlink): New defun.
17825 (tramp-handle-file-truename): Use it.
17826 (tramp-handle-file-exists-p): Check file-attributes cache, assume
17827 file exists if cache value present.
48c2d18a 17828 (tramp-check-cached-permissions): New defun.
293c24f9
MA
17829 (tramp-handle-file-readable-p): Use it.
17830 (tramp-handle-file-writable-p): Likewise.
17831 (tramp-handle-file-executable-p): Likewise.
17832 (tramp-handle-file-name-all-completions): Try using Perl to get
17833 partial completions. When perl not available, combine `cd' and
17834 `ls' into single remote operation and use shell expansion to get
17835 partial remote directory contents. Set `file-exists-p' cache for
17836 directory and any files returned by ls. Change cache handling to
17837 support partial directory contents. Use error message emitted by
17838 remote `cd' or Perl code for local tramp-error.
17839 (tramp-do-copy-or-rename-file-directly): Avoid separate
17840 tramp-send-command-and-check call.
cc63d28f
SM
17841 (tramp-handle-process-file): Merge three remote ops into one.
17842 Do not flush all caches when `process-file-side-effects' is set.
293c24f9
MA
17843 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
17844 file-attributes shows uid/gid to be set already.
17845
a7610c52
DN
178462009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
17847
17848 * textmodes/tex-mode.el (tex-dvi-view-command)
17849 (tex-show-queue-command, tex-open-quote):
17850 * progmodes/ruby-mode.el (auto-mode-alist)
17851 (interpreter-mode-alist): Purecopy strings.
17852
17853 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
17854
17855 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
17856 string for the hook, keymap and abbrev table.
17857
17858 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
17859
17860 * x-dnd.el (x-dnd-xdnd-to-action):
17861 * startup.el (fancy-startup-text, fancy-about-text): Change to
17862 defconst from defvar.
17863
17864 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
17865
17866 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
17867 Purecopy initialization strings.
17868
17869 * mail/sendmail.el (mail-header-separator)
17870 (mail-personal-alias-file):
17871 * mail/rmail.el (rmail-default-dont-reply-to-names)
17872 (rmail-ignored-headers, rmail-retry-ignored-headers)
17873 (rmail-highlighted-headers, rmail-secondary-file-directory)
17874 (rmail-secondary-file-regexp):
17875 * files.el (null-device, file-name-invalid-regexp)
17876 (locate-dominating-stop-dir-regexp)
cc63d28f 17877 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
a7610c52
DN
17878 (interpreter-mode-alist): Use mapcar instead of mapc.
17879
17880 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
17881
17882 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
17883 (completion-ignored-extensions):
17884 (debug-ignored-errors): Purecopy strings.
17885
4fcc3d32
SM
178862009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
17887
0667de21
SM
17888 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
17889 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
17890 (pcomplete--here): Use push.
17891
4fcc3d32
SM
17892 * subr.el (all-completions): Declare the 4th arg obsolete.
17893
955ef430
SM
178942009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
17895
2d085307
SM
17896 * pcomplete.el (pcomplete-unquote-argument-function): New var.
17897 (pcomplete-unquote-argument): New function.
17898 (pcomplete--common-suffix): Always pay attention to case.
17899 (pcomplete--table-subvert): Quote and unquote the text.
17900 (pcomplete--common-quoted-suffix): New function.
17901 (pcomplete-std-complete): Use it and pcomplete-begin.
17902
955ef430
SM
17903 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
17904 we're inside a dedicated or minibuffer window.
17905
7c85c02b
KF
179062009-10-24 Karl Fogel <kfogel@red-bean.com>
17907
17908 * bookmark.el: Update documentation, especially documentation
17909 of `bookmark-alist' and of the bookmark file format.
17910 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
17911
3e8ae8a6
CY
179122009-10-24 Chong Yidong <cyd@stupidchicken.com>
17913
3e425845
CY
17914 * mail/emacsbug.el (report-emacs-bug): Clarify that the
17915 keybindings apply to the mail buffer (Bug#4003). Shrink help
17916 window to buffer.
17917
cdd47d48
CY
17918 * whitespace.el (whitespace-mode, whitespace-newline-mode)
17919 (global-whitespace-mode, global-whitespace-newline-mode)
955ef430
SM
17920 (whitespace-toggle-options, global-whitespace-toggle-options):
17921 Doc fix (Bug#3660).
cdd47d48 17922
ba07c9ad
CY
17923 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
17924 of xmltok-start before the end tag was inserted (Bug#2840).
17925
3e8ae8a6
CY
17926 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
17927 patterns that are preceded by an open-paren (Bug#1320).
17928
ab276820
CY
179292009-10-24 Sven Joachim <svenjoac@gmx.de>
17930
17931 * files.el (delete-directory): Delete symlinks to directories with
17932 delete-file (Bug#4739).
17933
905a9ed3
DN
179342009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
17935
a9a2a6db
DN
17936 * vc.el (vc-backend-for-registration): Rename from
17937 vc-get-backend-for-registration. Update callers.
17938
cc63d28f
SM
17939 * international/mule-cmds.el (set-language-info-alist):
17940 Purecopy lang-env.
905a9ed3
DN
17941 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
17942 (charset): Purecopy the name.
17943 (define-char-code-property): Purecopy string arguments.
17944
17945 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
17946 Purecopy string arguments.
17947
17948 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
17949 * ediff-hook.el (menu-bar-ediff-menu):
17950 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
17951 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
17952
d270305a
GM
179532009-10-24 Glenn Morris <rgm@gnu.org>
17954
6c74d523 17955 * comint.el (comint-dynamic-list-completions):
656fc5f5
GM
17956 * term.el (term-dynamic-list-completions): Use choose-completion rather
17957 than obsolete alias mouse-choose-completion.
17958
ae732337
GM
17959 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
17960 file-cache-choose-completion.
17961 (file-cache-choose-completion): Handle an optional event argument.
17962 (file-cache-mouse-choose-completion): Make it an obsolete alias.
17963
cc63d28f
SM
17964 * progmodes/octave-mod.el (octave-complete-symbol):
17965 Use choose-completion if mouse-choose-completion is ever removed.
ae480838 17966
9847dc91
GM
17967 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
17968 use.
17969
e8f2a5d5
GM
17970 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
17971 compiler.
17972
d270305a
GM
17973 * vc-hooks.el (vc-responsible-backend): Fix declaration.
17974
c6432f1e
SM
179752009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
17976
17977 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
17978 Ignore `pred' now that we receive one.
17979 Handle test-completion specially.
17980
6ab196f9
DN
179812009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
17982
17983 * vc.el (vc-responsible-backend): Throw an error if not backend is
1c2efdfb 17984 found. Remove the REGISTER argument. Move the code dealing with
6ab196f9
DN
17985 REGISTER ...
17986 (vc-get-backend-for-registration): ... here. New function.
17987 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
17988 of vc-responsible-backend, pass the file name instead of the
17989 directory name.
17990
48feed59
SM
179912009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
17992
17993 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
17994 New funs.
17995 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
17996 (pcomplete-comint-setup): Don't modify a global var via
17997 accidental side-effects.
17998 (pcomplete-shell-setup): Adjust call accordingly.
17999 (pcomplete-parse-comint-arguments): Use push.
18000
00006066
CY
180012009-10-23 Chong Yidong <cyd@stupidchicken.com>
18002
36bfa3af
CY
18003 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
18004 Allow uncapitalized info node names (Bug#3921).
18005
00006066
CY
18006 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
18007 to the DEBUG file (Bug#3781).
18008
aa311d6e
CY
180092009-10-23 Jari Aalto <jari.aalto@cante.net>
18010
18011 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
18012 dictionary entry (Bug#4579).
18013
b88f2d0a
MA
180142009-10-23 Michael Albinus <michael.albinus@gmx.de>
18015
18016 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
18017 from `rfn-eshadow-update-overlay-hook' when unloading.
18018 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
18019 "rsyncc". Adjust doc string.
48c2d18a 18020 (tramp-temp-buffer-file-name): New buffer-local defvar.
b88f2d0a
MA
18021 (tramp-handle-insert-file-contents, tramp-handle-write-region):
18022 Keep temporary file when indicated by method ("rsync" and
18023 "rsyncc").
18024 (tramp-handle-write-region): Handle APPEND.
18025 (tramp-delete-temp-file-function): New defun. Added to
18026 `kill-buffer-hook'.
18027
1becddbb
JB
180282009-10-23 Juanma Barranquero <lekktu@gmail.com>
18029
18030 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
18031
8f43cbf3
DN
180322009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
18033
18034 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
18035 (color-name-rgb-alist, tty-standard-colors)
18036 (tty-color-mode-alist): Change to defconst.
18037
18038 * simple.el (mark-inactive): Purecopy message.
18039
18040 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
18041 (global-map, yank-menu):
18042 * textmodes/ispell.el (ispell-menu-map):
18043 * net/eudc.el (eudc-tools-menu):
18044 * international/mule-cmds.el (describe-language-environment-map)
18045 (setup-language-environment-map, set-coding-system-map)
18046 (mule-menu-keymap):
18047 * vc-hooks.el (vc-menu-entry, vc-menu-map):
18048 * replace.el (occur-mode-map):
18049 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
18050
1d228a31
JB
180512009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
18052
6a7662bb
BR
18053 * calc/calc.el (math-read-number, math-read-number-simple):
18054 Use `save-match-data'.
1d228a31 18055
3b067af1
SM
180562009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
18057
28a90c44
SM
18058 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
18059 rather than fiddling with global-map bindings, since it should only
18060 affect per-terminal settings.
18061 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
18062
a452eee8
SM
18063 * minibuffer.el (completion-table-with-terminator): Allow to specify
18064 the terminator-regexp.
18065
ab14d7d5
SM
18066 * simple.el (switch-to-completions): Look for *Completions* in other
18067 frames as well.
18068
3b067af1
SM
18069 * pcomplete.el: Allow the use of completion-tables.
18070 (pcomplete-std-complete): New command.
18071 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
18072 (pcomplete--here): Use a function for `form' rather than an expression,
18073 so it can be byte-compiled.
18074 (pcomplete-here, pcomplete-here*): Adjust accordingly.
18075 Add edebug declaration.
18076 (pcomplete-show-completions): Remove unused var `curbuf'.
18077 (pcomplete-do-complete, pcomplete-stub):
1becddbb 18078 Don't assume `completions' is a list of strings any more.
3b067af1 18079
5480359e
JB
180802009-10-22 Juanma Barranquero <lekktu@gmail.com>
18081
18082 * find-dired.el (find-name-arg): Fix typo in docstring.
18083
3170b794
SM
180842009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
18085
48c23a25
SM
18086 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
18087 (pcmpl-linux-fs-types): Same, and update to new modules layout.
18088
56b14058
SM
18089 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
18090 pcomplete-entries.
18091
3170b794
SM
18092 * comint.el (comint-read-input-ring, comint-write-input-ring)
18093 (comint-substitute-in-file-name)
18094 (comint-dynamic-complete-as-filename)
18095 (comint-dynamic-simple-complete)
18096 (comint-dynamic-list-filename-completions)
18097 (comint-dynamic-list-completions)
18098 (comint-redirect-results-list-from-process): Minor simplifications.
18099
2affef34
KR
181002009-10-21 Kevin Ryde <user42@zip.com.au>
18101
3170b794
SM
18102 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
18103 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
2affef34 18104 the first form. And insert a blank line after ";;; Code" since
d8194864 18105 that's usual style. (Bug#4612)
2affef34 18106
e7b94bbb
KR
18107 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
18108
528c56e2
SM
181092009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
18110
18111 * minibuffer.el (completion-table-with-terminator): Properly implement
18112 boundaries, in case `terminator' appears in the suffix.
18113 (completion--embedded-envvar-table): Don't return boundaries if
18114 there's no valid completion. Simplify.
18115 (completion-file-name-table): New completion table extracted from
18116 completion--file-name-table.
18117 (completion--file-name-table): Use it.
18118 (read-file-name-predicate): Declare obsolete.
18119 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
18120 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
18121 completion-file-name-table, and use the `pred' argument.
18122 * files.el (locate-file-completion-table): Use the `pred' arg rather
18123 than read-file-name-predicate.
18124 (abbreviate-file-name): Use \` rather than ^ for BOS.
18125
f9ed9b4f
DN
181262009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
18127
18128 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
18129 vc-responsible-backend to register, it causes problems.
18130
5f2022a3
SM
181312009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
18132
18133 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
18134
fc754ea1
MA
181352009-10-21 Michael Albinus <michael.albinus@gmx.de>
18136
18137 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
18138 (tramp-smb-handle-file-attributes): Use it.
18139 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
18140 (tramp-smb-handle-insert-directory): Use `mapc' rather than
5f2022a3
SM
18141 `mapcar'. Use `tramp-smb-get-stat-capability'.
18142 Add `dired-filename' text properties.
fc754ea1
MA
18143 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
18144 (tramp-smb-maybe-open-connection): Simplify check for smbclient
18145 version.
18146
79bd5ba1
SM
181472009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
18148
18149 * subr.el (read-key-delay): Reduce to 0.01.
18150 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
18151 (bug#4751).
18152
3c13704d
SM
181532009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
18154
554efd10
SM
18155 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
18156
c2a37b78
SM
18157 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
18158 (Info-menu): Remove unused vars `last' and `completions'.
18159 (Info-index-nodes): Remove unused var `node'.
18160
3c13704d
SM
18161 * info.el (Info-complete-menu-item): Use complete-with-action.
18162
d1e4c403
DN
181632009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
18164
18165 Make vc-annotate work through copies and renames.
3c13704d
SM
18166 * vc-annotate.el (vc-annotate-extract-revision-at-line):
18167 Return the file name too.
d1e4c403
DN
18168 (vc-annotate-revision-at-line)
18169 (vc-annotate-find-revision-at-line)
18170 (vc-annotate-revision-previous-to-line)
18171 (vc-annotate-show-log-revision-at-line): Update to get the file
18172 name from vc-annotate-extract-revision-at-line.
18173 (vc-annotate-show-diff-revision-at-line-internal): Change the
18174 argument to mean whether to show a file diff or not. Get the file
18175 name from vc-annotate-extract-revision-at-line.
3c13704d
SM
18176 (vc-annotate-show-diff-revision-at-line):
18177 Update vc-annotate-show-diff-revision-at-line call.
d1e4c403
DN
18178 (vc-annotate-warp-revision): Add an optional file argument.
18179
18180 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
18181 (vc-git-annotate-extract-revision-at-line): Also return the file
18182 name if found.
18183
18184 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
18185 command. Remove unused code.
18186 (vc-hg-annotate-re): Update to match --follow output.
18187 (vc-hg-annotate-extract-revision-at-line): Also return the file
18188 name if found.
18189
18190 * vc.el: Update annotate-extract-revision-at-line documentation.
18191
b0b0ef98
KR
181922009-10-18 Kevin Ryde <user42@zip.com.au>
18193
18194 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
18195 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
18196
a9e7f03d
KR
18197 * net/browse-url.el (browse-url): Identify alist with "consp and
18198 not functionp" and let all other things go down the `apply' leg,
18199 as suggested by Stefan. (Further to bug#4531.)
18200
7346a407
CY
182012009-10-18 Chong Yidong <cyd@stupidchicken.com>
18202
18203 * minibuffer.el (read-file-name): Check for repeat before putting
18204 a default argument in file-name-history (Bug#4657).
18205
18206 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
18207 read syntax (Bug#4737).
18208
3c13704d 18209 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
7346a407 18210
1da94541
CY
182112009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
18212
18213 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
18214 (html-tag-alist, html-tag-help): Add descriptions for undocumented
18215 entries and make note of obsolete tags.
18216
2b93080a
SM
182172009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
18218
18219 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
18220
18b5ffb5
GM
182212009-10-18 Glenn Morris <rgm@gnu.org>
18222
18223 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
18224 grep, so that binary files (eg international/uni-bidi.el) can match.
e5f035d7 18225 Remove test for "UnicodeData" files, since it is hopefully unnecessary
18b5ffb5
GM
18226 now, and in any case the file header format has changed.
18227
c2e161b2
GM
182282009-10-17 Glenn Morris <rgm@gnu.org>
18229
18230 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
18231 (flyspell-get-word, flyspell-large-region)
18232 (flyspell-auto-correct-previous-word): Doc/error message fixes.
18233
a1eb44f5
CY
182342009-10-17 Chong Yidong <cyd@stupidchicken.com>
18235
18236 * Makefile.in (ELCFILES): Add ede/shell.
18237
4418646e
DN
182382009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
18239
18240 * term/common-win.el (x-colors): Purecopy it.
18241
4062011e
SM
182422009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
18243
18244 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
18245 permissive for when the buffer is empty.
18246 (tar-header-block-tokenize): Decode the username and groupname.
18247 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
18248
b0b111c3
JB
182492009-10-17 Eric Ludlam <zappo@gnu.org>
18250
18251 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
18252 contains multibyte characters, choose first applicable coding
18253 system automatically.
18254
2df48a87
SM
182552009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
18256
18257 * international/mule-cmds.el (select-safe-coding-system): If the file
18258 has a coding cookie, use it regardless of any other setting (bug#4712).
18259
fd7dd48c
GM
182602009-10-17 Glenn Morris <rgm@gnu.org>
18261
3ee0b477 18262 * foldout.el (foldout-mouse-swallow-events):
cec05144
GM
18263 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
18264
2550e4b1
GM
18265 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
18266 (dired-keep-marker-copy, dired-keep-marker-hardlink)
18267 (dired-keep-marker-symlink, dired-dwim-target)
18268 (dired-copy-preserve-time): Do not autoload these defcustoms.
18269
fd7dd48c
GM
18270 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
18271 messages from messing up the file coding. (Bug#4623)
18272
f3e3a990
GM
182732009-10-17 Jari Aalto <jari.aalto@cante.net>
18274
18275 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
18276 if no match is found for the current dictionary. (Bug#4578)
18277
18278 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
18279 optional, since that is how it is documented, and this is often called
18280 with a nil argument. (Bug#4577)
18281 (flyspell-external-point-words, flyspell-auto-correct-word)
18282 (flyspell-correct-word-before-point, flyspell-word-search-forward)
18283 (flyspell-word-search-backward): Remove nil argument in calls to
18284 flyspell-get-word, since it is not needed now.
18285
182862009-10-17 Ulrich Mueller <ulm@gentoo.org>
18287
1becddbb 18288 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
f3e3a990 18289
b61374ab
GM
182902009-10-16 Glenn Morris <rgm@gnu.org>
18291
18292 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
18293
412707c2
SM
182942009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
18295
18296 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
18297 (ange-ftp-file-size): New function.
18298 (ange-ftp-file-attributes): Use it.
18299
0c6f436e
MA
183002009-10-16 Michael Albinus <michael.albinus@gmx.de>
18301
18302 * net/tramp-smb.el (tramp-smb-version): New defvar.
18303 (tramp-smb-maybe-open-connection): Use it, in order to avoid
18304 repeated checks.
18305
850bfd04
GM
183062009-10-16 Glenn Morris <rgm@gnu.org>
18307
18308 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
18309 Maybe copy some custom properties from old to new name. (Bug#4706)
18310
f3ed9aca
JB
183112009-10-16 Juanma Barranquero <lekktu@gmail.com>
18312
18313 * subr.el (error, sit-for, start-process-shell-command)
18314 (start-file-process-shell-command): Set the calling convention
18315 after the function definition.
18316
fd6c5134
SM
183172009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
18318
18319 * subr.el (error, sit-for, start-process-shell-command)
18320 (start-file-process-shell-command): Use the new
18321 set-advertised-calling-convention feature.
18322
73874eb7
KH
183232009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
18324
fd6c5134
SM
18325 * international/ucs-normalize.el (ucs-normalize-version):
18326 Change to 1.2.
18327 (check-range): Adjust for Unicode 5.2.
73874eb7 18328
03fb33cf
JL
183292009-10-15 Juri Linkov <juri@jurta.org>
18330
18331 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
18332 to the `menu-item' format.
18333
4260b402
MA
183342009-10-15 Michael Albinus <michael.albinus@gmx.de>
18335
18336 * net/tramp.el (tramp-replace-environment-variables): Do not fail
18337 if the environment variable does not exist.
18338
18339 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
18340 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
18341 parameter.
18342 (tramp-smb-handle-add-name-to-file)
18343 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
18344 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
18345 (tramp-smb-handle-file-attributes)
18346 (tramp-smb-do-file-attributes-with-stat)
18347 (tramp-smb-handle-file-local-copy)
18348 (tramp-smb-handle-insert-directory)
18349 (tramp-smb-handle-make-directory)
18350 (tramp-smb-handle-make-directory-internal)
18351 (tramp-smb-handle-make-symbolic-link)
18352 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
18353 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
18354 (tramp-smb-maybe-open-connection): Apply the changed parameters.
18355 (tramp-smb-read-file-entry): Read Disk names in compressed format.
18356 Handle long file names.
18357 (tramp-smb-get-cifs-capabilities): Check, whether the connection
18358 process is running.
18359 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
18360 Read share names with "-g" option.
18361
d7a0fd6f
GM
183622009-10-15 Ryan Yeske <rcyeske@gmail.com>
18363
18364 * net/rcirc.el (rcirc-view-log-file): New command.
18365 (rcirc-track-minor-mode-map): Remove C-c ` binding.
18366 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
18367 specified.
18368
0b44494a
GM
183692009-10-15 Glenn Morris <rgm@gnu.org>
18370
af9fb32f
GM
18371 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
18372 from the second command-line argument.
18373 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
18374 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
18375 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
18376 w32-batch-update-autoloads.
18377 * emacs-lisp/autoload.el (autoload-make-program): New variable.
18378 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
18379
0b44494a
GM
18380 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
18381 the headers cannot be located. Simplify, subtracting superflous
18382 save-excursions.
18383
d5e63715
SM
183842009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
18385
18386 Replace completion-base-size by completion-base-position to fix bugs
18387 such as (bug#4699).
18388 * simple.el (completion-base-position): New var.
18389 (completion-base-size): Mark as obsolete.
18390 (choose-completion): Make it work for mouse events as well.
18391 Pass the new base-position to choose-completion-string.
18392 (choose-completion-guess-base-position): New function, extracted from
18393 choose-completion-delete-max-match.
18394 (choose-completion-delete-max-match): Use it. Make obsolete.
18395 (choose-completion-string): Use the new base-position info.
18396 (completion-root-regexp): Delete.
18397 (completion-setup-function): Preserve completion-base-position.
18398 Eliminate obsolete base-size manipulation.
18399 * minibuffer.el (display-completion-list): Don't mess with base-size.
18400 (minibuffer-completion-help): Set completion-base-position instead.
18401 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
18402 choose-completion.
18403 * textmodes/bibtex.el (bibtex-complete):
18404 * emacs-lisp/crm.el (crm--choose-completion-string):
18405 Adjust to new calling convention.
18406 * complete.el (partial-completion-mode): Use minibufferp to avoid
18407 bumping into incompatible change to choose-completion-string-functions.
18408 * ido.el (ido-choose-completion-string): Make its calling convention
18409 more permissive.
18410 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
18411 base-size manipulation.
18412 (comint-dynamic-list-input-ring): Use dotimes and push.
18413 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
18414 fundamental-mode. Use `or'.
18415
92f8bfc7
JL
184162009-10-14 Juri Linkov <juri@jurta.org>
18417
18418 * misearch.el (multi-isearch-next-buffer-from-list)
18419 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
18420
e78e280d
SM
184212009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
18422
384ca163
SM
18423 * Makefile.in (compile-onefile): Load `bytecomp' rather than
18424 `bytecomp.el'.
18425
681e0e7c
SM
18426 * minibuffer.el (completion-pcm--merge-completions): Make sure the
18427 string we return is all made up of text from the completions rather
18428 than part from the completions and part from the input (bug#4219).
18429
e78e280d
SM
18430 * ido.el (ido-everywhere): Use define-minor-mode.
18431
18432 * buff-menu.el (list-buffers, ctl-x-map):
18433 Mark the entry points with ;;;###autoload cookies.
18434
b4e813ca
DN
184352009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
18436
52964e54
DN
18437 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
18438 correctly in the detached head case.
18439 (vc-git-print-log): Remove unused binding.
18440
b4e813ca
DN
18441 * vc.el (vc-responsible-backend): When a directory is passed for
18442 for registration create a VC repository if no backend is
18443 responsible for the directory argument.
18444 (vc-deduce-fileset): Tell vc-responsible-backend to register.
1043ce19
DN
18445
18446 * vc.el: Move comments about RCS and SCCS ...
18447 * vc-rcs.el:
18448 * vc-sccs.el: ... here, respectively.
18449
40ba9882
SM
184502009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
18451
18452 * minibuffer.el (completion--file-name-table): Return nil if there's
18453 no file completion, even if substitute-in-file-name changed
18454 the string (bug#4708).
18455
04e0f59b
JL
184562009-10-13 Juri Linkov <juri@jurta.org>
18457
18458 * files-x.el (read-file-local-variable-value): Don't filter out
18459 minor modes from mode name completion (bug#4664).
18460
314c8e25
JB
184612009-10-13 Juanma Barranquero <lekktu@gmail.com>
18462
18463 * international/mule-cmds.el (ucs-names): Remove exclusion of
18464 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
18465
5c9b7d36
KH
184662009-10-13 Kenichi Handa <handa@m17n.org>
18467
18468 * international/uni-name.el: Regenerated.
18469
1e7a80f2
JB
184702009-10-13 Juanma Barranquero <lekktu@gmail.com>
18471
18472 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
18473 should be automatically buffer-local, but isn't.)
18474
cd29f88b
SS
184752009-10-12 Sam Steingold <sds@gnu.org>
18476
18477 * progmodes/compile.el (compilation-next-error-function): Fix the
0cd16af4 18478 timestamps if the buffer has been visited before.
0cd16af4
SS
18479 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
18480 non-anchored patterns, like the perl one (bug#3928).
cd29f88b 18481
37493a98
GM
184822009-10-12 Glenn Morris <rgm@gnu.org>
18483
18484 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
18485 Let-bind `size'.
18486
3b56b1e6
JB
184872009-10-12 Juanma Barranquero <lekktu@gmail.com>
18488
7422a4bb
JB
18489 * proced.el (proced-unload-function): New function.
18490
fa72d075
JB
18491 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
18492 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
18493 Doc fix.
18494
3b56b1e6
JB
18495 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
18496
4d9b4323
JL
184972009-10-11 Juri Linkov <juri@jurta.org>
18498
18499 * files-x.el (read-file-local-variable-value):
18500 Provide default value only for bound variables (bug#4664).
18501
f6f7e059
MA
185022009-10-11 Michael Albinus <michael.albinus@gmx.de>
18503
18504 * net/tramp.el (tramp-local-host-p): Function shall return nil for
18505 connection methods like smb.
18506
18507 * net/tramp-cache.el (tramp-flush-connection-property): The hash
18508 can be empty.
18509
18510 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
18511 (tramp-smb-file-name-handler-alist): Add handlers for
18512 `add-name-to-file', `make-symbolic-link'.
18513 (tramp-smb-handle-add-name-to-file)
2992485f 18514 (tramp-smb-do-file-attributes-with-stat)
f6f7e059
MA
18515 (tramp-smb-handle-make-symbolic-link)
18516 (tramp-smb-get-cifs-capabilities): New defuns.
18517 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
18518 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
18519 (tramp-smb-handle-file-local-copy)
18520 (tramp-smb-handle-make-directory-internal)
3b56b1e6
JB
18521 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
18522 The file name syntax depends on cifs capabilities.
18523 (tramp-smb-handle-file-attributes):
18524 Call `tramp-smb-do-file-attributes-with-stat' if possible.
18525 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
18526 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
f6f7e059 18527
67868d26
CY
185282009-10-11 Chong Yidong <cyd@stupidchicken.com>
18529
18530 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
18531 (eieio-defclass): Apply deftype handler and setf-method properties
18532 directly.
18533 (eieio-add-new-slot): Avoid union function from cl library.
18534 (eieio--typep): New function.
18535 (eieio-perform-slot-validation): Use it.
18536
6d6a5b7e
KF
185372009-10-10 Karl Fogel <kfogel@red-bean.com>
18538
3b56b1e6 18539 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
6d6a5b7e
KF
18540 Update documentation to refer to the variables documented in r1.135.
18541 (Bug#4188)
18542
67b70de9
KF
185432009-10-10 Karl Fogel <kfogel@red-bean.com>
18544
18545 * bookmark.el (Info-suffix-list): Remove this unused variable.
18546 (bookmark-current-point): Remove this obsolete variable.
18547 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
18548 Adjust for removal of bookmark-current-point.
18549
18550 (bookmarks-already-loaded, bookmark-current-buffer)
18551 (bookmark-yank-point): Document. (Bug#4188)
18552
58ae51ae
GM
185532009-10-10 Glenn Morris <rgm@gnu.org>
18554
4619ff5e
GM
18555 * frame.el (frame-height): Doc fix.
18556
58ae51ae
GM
18557 * calendar/calendar.el (calendar-split-width-threshold): New option.
18558 (calendar-basic-setup): Use calendar-split-width-threshold.
18559
d364386c
JB
185602009-10-09 Juanma Barranquero <lekktu@gmail.com>
18561
18562 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
18563 Ideographic Supplement" range (U+1F200..U+1F2FF).
18564
33e97a28
KF
185652009-10-09 Karl Fogel <kfogel@red-bean.com>
18566
02d0f051 18567 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
d364386c 18568 since the list will have been rebuilt anyway. (Bug#4349)
02d0f051
KF
18569
185702009-10-09 Karl Fogel <kfogel@red-bean.com>
18571
d364386c 18572 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
33e97a28
KF
18573 (bookmark-bmenu-execute-deletions): Don't save here, as
18574 bookmark-delete will now do so if necessary.
d364386c 18575 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
33e97a28
KF
18576 (Bug#4348)
18577
9656d87b
GM
185782009-10-09 Glenn Morris <rgm@gnu.org>
18579
18580 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
18581
e6227f06
KF
185822009-10-09 Karl Fogel <kfogel@red-bean.com>
18583
18584 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
18585 (bookmark-jump-other-window): Just invoke bookmark-jump with new
18586 argument now, so the two function's behaviors will match. (Bug#3645)
18587
288f783b
MA
185882009-10-08 Michael Albinus <michael.albinus@gmx.de>
18589
18590 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
e78e280d 18591 (tramp-file-name-real-host, tramp-file-name-port):
fc754ea1 18592 Apply `save-match-data'.
288f783b
MA
18593
18594 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
18595 case both directories are remote.
18596 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
e78e280d 18597 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
288f783b 18598
872a1ea4
JB
185992009-10-07 Juanma Barranquero <lekktu@gmail.com>
18600
18601 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
18602
ab2baced
GM
186032009-10-07 Glenn Morris <rgm@gnu.org>
18604
e78e280d
SM
18605 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
18606 of concat.
ab2baced 18607
5c4634c1
SM
186082009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
18609
18610 * files-x.el (read-file-local-variable): Include some
18611 non-user-variables in the completion table (bug#4664).
18612
c2dc9732
MA
186132009-10-07 Michael Albinus <michael.albinus@gmx.de>
18614
18615 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
18616 message.
18617
18618 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
18619 (tramp-smb-file-name-handler-alist): Add handler for
18620 `copy-directory', `expand-file-name', `set-file-modes'.
18621 (tramp-smb-handle-copy-directory)
18622 (tramp-smb-handle-expand-file-name)
18623 (tramp-smb-handle-set-file-modes): New defuns.
18624 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
18625 (tramp-smb-handle-file-attributes): Simplify check for retrieving
18626 entry.
18627 (tramp-smb-handle-insert-directory): Don't flush the cache.
18628 (tramp-smb-maybe-open-connection): Check for samba client and
18629 server versions.
18630
11be40a6
EZ
186312009-10-07 Eli Zaretskii <eliz@gnu.org>
18632
18633 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
18634 to not error out of search for "^lisp=" fails.
18635
8c4afe20
JB
186362009-10-07 Juanma Barranquero <lekktu@gmail.com>
18637
18638 * makefile.w32-in (WINS_UPDATES): New macro.
18639 (custom-deps, finder-data, autoloads): Use it.
18640
429a1506
GM
186412009-10-07 Glenn Morris <rgm@gnu.org>
18642
ee2e93e2
GM
18643 * Makefile.in (autoloads): Revert previous change.
18644 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
18645 the list of preloaded files passed on the command-line, get
18646 it from src/Makefile.
18647
429a1506
GM
18648 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
18649 show the original buffer rather than a random one.
18650
a51203ee 186512009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
e7e2b26c
GM
18652
18653 * help.el (describe-no-warranty): Place point in a slightly better
18654 position in the GPLv3 text.
18655
f58f7520
SS
186562009-10-06 Sam Steingold <sds@gnu.org>
18657
18658 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
18659 the comm attribute is present before calling regexp-quote.
18660
bde79dc0
JB
186612009-10-06 Juanma Barranquero <lekktu@gmail.com>
18662
18663 * play/animate.el (animate-string): For good effect, make sure
18664 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
18665
18666 * play/animate.el (animate-sequence, animate-birthday-present):
18667 * misc.el (butterfly): Don't set `indent-tabs-mode'.
18668
25ab0302
GM
186692009-10-06 Glenn Morris <rgm@gnu.org>
18670
73fe714a
GM
18671 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
18672
3405d98c
GM
18673 * emacs-lisp/autoload.el (autoload-excludes): New variable.
18674 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
18675 (batch-update-autoloads): Process a string value of autoload-excludes,
18676 set during the build process.
18677 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
18678
9fb2cdc5
GM
18679 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
18680 inside with-parsed... macro so that `v' is defined.
18681
7938ab41
GM
18682 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
18683 * progmodes/fortran.el (fortran-end-of-block)
18684 (fortran-beginning-of-block):
18685 Also push mark in the macro case.
18686
eaf9b564
GM
18687 * emerge.el (emerge-show-file-name):
18688 * calc/calc.el (calc-quit):
18689 * calc/calc-misc.el (calc-big-or-small):
18690 * calc/calc-graph.el (calc-graph-view):
18691 * calc/calc-ext.el (calc-reset):
18692 * calendar/calendar.el (calendar-basic-setup):
18693 Use window-full-height-p.
18694
25ab0302
GM
18695 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
18696 header we don't understand, don't insert another. (Bug#4624)
18697 If changing mime charset, insert the new one in the right place.
18698
00169eb6
GM
186992009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
18700
18701 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
18702 (cal-tex-cursor-month): Correctly increment the end date for diary and
18703 holiday listing. (Bug#4626)
18704
82882188
SM
187052009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18706
40ba9882 18707 * help-fns.el (describe-function-1): Don't burp if the function is not
82882188
SM
18708 a symbol.
18709
a8f316ca
JB
187102009-10-05 Juanma Barranquero <lekktu@gmail.com>
18711
18712 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
18713 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
18714 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
18715 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
18716
18717 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
18718 (eieio-default-superclass): Reflow docstrings.
18719 (this, class-option-assoc, defclass, eieio-class-un-autoload)
18720 (eieio-unbind-method-implementations, defmethod)
18721 (eieio-validate-slot-value, eieio-validate-class-slot-value)
18722 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
18723 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
18724 (eieio-slot-originating-class-p, eieio-slot-name-index)
18725 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
18726 (constructor, initialize-instance, no-next-method, object-print)
18727 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
18728 Fix typos in docstrings.
18729 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
18730 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
18731 (next-method-p): Doc fixes.
18732 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
18733 Fix typos in error messages.
18734 (eieio-defmethod): Fix typo in description of generic method.
18735
18736 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
18737 (eieio-persistent-save-interactive, slot-missing):
18738 Fix typos in docstrings.
18739 (eieio-instance-inheritor-slot-boundp): Doc fix.
18740
18741 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
18742 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
18743
18744 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
18745 (eieio-custom-object-apply-reset):
18746 Fix typos in docstrings and error messages.
18747
18748 * emacs-lisp/eieio-datadebug.el (data-debug-show):
18749 Fix typo in docstring.
18750
18751 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
18752 (eieio-browse-tree): Doc fix.
18753 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
18754 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
18755 Fix typos in docstrings.
18756
18757 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
18758 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
18759 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
18760 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
18761 Reflow docstrings.
18762
c66b7ac0
DN
187632009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
18764
4a827e0a 18765 * vc-hg.el (log-view-vc-backend): Declare for compiler.
82882188
SM
18766 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
18767 Set log-view-vc-backend so that diff can work.
4a827e0a 18768
c66b7ac0
DN
18769 * log-view.el (log-view-diff): Use vc-diff-internal instead of
18770 vc-version-diff.
18771 (vc-diff-internal): Autoload this instead of vc-version-diff.
18772
1902a98c
EZ
187732009-10-05 Eli Zaretskii <eliz@gnu.org>
18774
a7a8618b
EZ
18775 * simple.el (eval-expression): Doc fix.
18776
1902a98c
EZ
18777 * progmodes/cwarn.el (cwarn-mode): Doc fix.
18778
0e1f2ee6
MA
187792009-10-05 Michael Albinus <michael.albinus@gmx.de>
18780
18781 * files.el (directory-files-no-dot-files-regexp): New defconst.
18782 (delete-directory): Use it.
18783 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
18784
263c02ef 18785 * net/tramp.el (tramp-verbose): Fix docstring.
82882188
SM
18786 (tramp-methods): Add recursive option to `tramp-copy-args'.
18787 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
263c02ef 18788 "scp1_old", "scp2_old", "rsync", "rsyncc".
a8f316ca 18789 (tramp-default-method): Check also for `auth-source-user-or-password'.
263c02ef
MA
18790 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
18791 Add handler for `copy-directory'.
18792 (tramp-handle-copy-directory): New defun.
18793 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
a8f316ca
JB
18794 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
18795 Optimize sent command.
263c02ef 18796
72aa7df4
SM
187972009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18798
4a34f065
SM
18799 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
18800 window if necessary.
18801
72aa7df4
SM
18802 * calendar/calendar.el (calendar-basic-setup): Don't call
18803 switch-to-buffer in a dedicated window.
18804
5feb1ba7
KF
188052009-10-05 Karl Fogel <kfogel@red-bean.com>
18806
18807 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
194d44e7 18808 don't do anything related to relocating, just return nil.
5feb1ba7
KF
18809 (bookmark-error-no-filename): New error.
18810 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
194d44e7
JB
18811 bookmark has no file. Don't even attempt to handle things that
18812 are not files; the whole point of custom handlers is to keep that
18813 knowledge elsewhere anyway. Tighten some comments.
5feb1ba7
KF
18814 (bookmark-file-or-variation-thereof): Remove now-unused function.
18815 (bookmark-location): Doc string fix.
18816 (Bug#4250)
18817
1bd49952
KF
188182009-10-04 Karl Fogel <kfogel@red-bean.com>
18819
18820 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
18821 don't use a file dialog, because they usually don't know how to read
18822 a directory target from the user. (Bug#4230)
18823 Also, make sure the prompt can display directories as well as files.
18824
825382c0
KF
188252009-10-04 Karl Fogel <kfogel@red-bean.com>
18826
18827 * bookmark.el (bookmark-set, bookmark-buffer-name):
18828 Improve doc strings. (Bug#1193)
18829
13901bcb
KF
188302009-10-04 Karl Fogel <kfogel@red-bean.com>
18831
4a34f065
SM
18832 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
18833 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
18834 (bookmark-get-annotation, bookmark-set-annotation)
18835 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
18836 (bookmark-set-position, bookmark-get-front-context-string)
18837 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
18838 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
18839 (bookmark-jump-other-window, bookmark-handle-bookmark)
18840 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
18841 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
18842 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
194d44e7
JB
18843 Improve doc strings to say whether bookmark can be a string or
18844 a record or both, and make other consistency and clarity fixes.
4a34f065
SM
18845 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
18846 (bookmark-default-annotation-text, bookmark-yank-word)
18847 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
18848 (bookmark-import-new-list, bookmark-maybe-rename)
18849 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
18850 (bookmark-bmenu-bookmark): Give these doc strings.
13901bcb 18851 (bookmark-bmenu-check-position): Give this a doc string, but also
194d44e7 18852 add a FIXME comment about how the function may be pointless.
13901bcb 18853 (bookmark-default-handler): Rework doc string and change a
194d44e7
JB
18854 parameter name, to clarify that this takes a bookmark record
18855 not a bookmark name.
13901bcb 18856 (bookmark-set): Change a parameter name to indicate its meaning,
194d44e7 18857 and improve the doc string a bit.
13901bcb
KF
18858 (Bug#4188)
18859
5c1b3e94
KF
188602009-10-04 Karl Fogel <kfogel@red-bean.com>
18861
18862 * bookmark.el (bookmark-alist): Document the new `handler' element
18863 in the param alist.
18864 (bookmark-make-record-function): Adjust documentation for above.
18865 (Bug#4193)
18866
8559076d
KF
188672009-10-04 Karl Fogel <kfogel@red-bean.com>
18868
18869 * info.el (Info-bookmark-make-record): Document this function.
18870 (Info-bookmark-jump): Document with a doc string, not just a comment.
18871 (Bug#4203)
18872
b4583b8c
MA
188732009-10-04 Michael Albinus <michael.albinus@gmx.de>
18874
18875 * files.el (copy-directory): New defun.
18876
18877 * dired-aux.el (dired-copy-file-recursive): Use it.
18878
131ae8f2
JB
188792009-10-04 Juanma Barranquero <lekktu@gmail.com>
18880
a30e71ae 18881 * files-x.el (modify-dir-local-variable)
dd9af436
CY
18882 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
18883 docstrings.
a30e71ae 18884
131ae8f2
JB
18885 * recentf.el (recentf-unload-function): New function.
18886
ccafbf06
GM
188872009-10-04 Glenn Morris <rgm@gnu.org>
18888
18889 * window.el (window-full-height-p): Add doc string.
18890
02c6f098
GM
188912009-10-04 Martin Rudalics <rudalics@gmx.at>
18892
18893 * window.el (window-full-height-p): New function. (Bug#4543)
18894
ed6b0195
DN
188952009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
18896
18897 * vc.el: Remove commented out code.
18898 (vc-derived-from-dir-mode): Remove, unused.
18899 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
18900
1b8d1cc7
MA
189012009-10-03 Michael Albinus <michael.albinus@gmx.de>
18902
4a34f065
SM
18903 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
18904 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
1b8d1cc7
MA
18905 there could be recursive loading when `default-directory' is a
18906 remote file name. (Bug#4614)
18907
ac3c593c
GM
189082009-10-03 Glenn Morris <rgm@gnu.org>
18909
686ea556
GM
18910 * calendar/calendar.el (calendar-basic-setup): Handle the case where
18911 the frame is wide.
18912 (calendar-generate-window): Test for shrinkability rather than width.
18913
ac3c593c
GM
18914 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
18915 reusing existing buffers, in case we happen to visit two files with the
18916 same basename. (Bug#4593)
18917
573709fd
EZ
189182009-10-02 Eli Zaretskii <eliz@gnu.org>
18919
4a34f065 18920 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
573709fd
EZ
18921 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
18922 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
18923 subdirs of cedet as well.
8f885d01 18924 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
573709fd 18925
8d6c1239
SM
189262009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
18927
18928 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
18929 Obey advertised-signature-table.
18930
18931 * help-fns.el (help-function-arglist): Don't check
18932 advertised-signature-table.
18933 (describe-function-1): Do it here instead so it also applies to subrs.
18934
c4861de0
MA
189352009-10-02 Michael Albinus <michael.albinus@gmx.de>
18936
18937 * simple.el (start-file-process): Say in the doc-string, that file
18938 handlers might not support pty association, if PROGRAM is nil.
18939
18940 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
18941 HOST and USER are strings. They are nil, when there are
18942 incomplete entries in ~/.netrc, for example.
18943 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
18944 root directory ("device busy" error otherwise).
18945
8d6c1239
SM
18946 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
18947 Flush file properties of created directory.
c4861de0 18948
d2bda74f
EZ
189492009-10-02 Eli Zaretskii <eliz@gnu.org>
18950
18951 * makefile.w32-in (WINS_BASIC): Remove cedet.
18952 (WINS_CEDET): Add cedet.
18953 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
18954
895d1904
GM
189552009-10-02 Kevin Ryde <user42@zip.com.au>
18956
18957 * net/browse-url.el (browse-url): Pass any symbol in
18958 browse-url-browser-function to `apply', since if you've mistakenly put
18959 an unbound symbol then the error is clearer. (Bug#4531)
18960
32226619
JB
189612009-10-02 Juanma Barranquero <lekktu@gmail.com>
18962
18963 * allout.el (allout-init, allout-back-to-current-heading)
18964 (allout-beginning-of-current-entry, allout-ascend-to-depth)
18965 (allout-ascend, allout-up-current-level, allout-end-of-level)
18966 (allout-previous-visible-heading, allout-forward-current-level)
18967 (allout-backward-current-level, allout-show-children):
18968 * apropos.el (apropos-describe-plist):
18969 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
18970 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
18971 * completion.el (add-completion, add-permanent-completion):
18972 * descr-text.el (describe-text-category, describe-char):
18973 * desktop.el (desktop-lazy-abort):
18974 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
18975 * dired.el (dired-build-subdir-alist):
18976 * ediff.el (ediff-version):
18977 * elide-head.el (elide-head, elide-head-show):
18978 * emerge.el (emerge-version):
18979 * env.el (getenv):
18980 * face-remap.el (variable-pitch-mode):
18981 * faces.el (describe-face):
18982 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
18983 (dired-at-point):
18984 * files.el (find-file-existing, auto-save-mode):
18985 * font-lock.el (font-lock-fontify-buffer):
18986 * help-fns.el (describe-function, describe-variable)
18987 (describe-syntax, describe-categories):
18988 * help.el (view-lossage, describe-bindings, describe-key)
18989 (describe-mode):
18990 * hexl.el (hexl-current-address):
18991 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
18992 * info.el (Info-goto-emacs-key-command-node):
18993 * log-edit.el (log-edit-insert-cvs-template)
18994 (log-edit-insert-cvs-rcstemplate):
18995 * menu-bar.el (menu-bar-mode):
18996 * mouse.el (mouse-appearance-menu):
18997 * newcomment.el (comment-indent-new-line):
18998 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
18999 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
5ce6e4f4 19000 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
32226619
JB
19001 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
19002 * recentf.el (recentf-mode):
19003 * savehist.el (savehist-mode, savehist-save):
19004 * shadowfile.el (shadow-copy-files):
19005 * simple.el (kill-ring-save, next-line, previous-line)
19006 (normal-erase-is-backspace-mode):
19007 * strokes.el (strokes-update-window-configuration)
19008 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
19009 (strokes-xpm-for-stroke):
19010 * time.el (emacs-uptime, emacs-init-time):
19011 * tutorial.el (tutorial--describe-nonstandard-key)
19012 (tutorial--detailed-help):
19013 * type-break.el (type-break-mode)
19014 (type-break-mode-line-message-mode, type-break-query-mode)
19015 (type-break-guesstimate-keystroke-threshold):
19016 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
19017 * version.el (emacs-version):
19018 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
19019 * winner.el (winner-mode):
19020 * calendar/timeclock.el (timeclock-in, timeclock-out)
19021 (timeclock-status-string, timeclock-change)
19022 (timeclock-workday-remaining-string)
19023 (timeclock-workday-elapsed-string)
19024 (timeclock-when-to-leave-string):
19025 * calendar/todo-mode.el (todo-add-category):
19026 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
19027 * emacs-lisp/autoload.el (update-file-autoloads):
19028 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
19029 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
19030 (checkdoc-message-text, checkdoc-defun):
19031 * emacs-lisp/debug.el (debugger-list-functions):
19032 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
19033 * emacs-lisp/eieio-opt.el (eieio-describe-class)
19034 (eieio-describe-generic):
19035 * emacs-lisp/lisp-mnt.el (lm-synopsis):
19036 * emacs-lisp/shadow.el (list-load-path-shadows):
19037 * emulation/cua-base.el (cua-mode):
19038 * emulation/edt.el (edt-set-scroll-margins):
19039 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
19040 (tpu-toggle-regexp, tpu-toggle-search-direction)
19041 (tpu-toggle-rectangle, tpu-toggle-control-keys):
19042 * emulation/tpu-extras.el (tpu-set-scroll-margins):
19043 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
19044 (viper-set-parsing-style-toggling-macro)
19045 (viper-set-emacs-state-searchstyle-macros):
19046 * emulation/viper.el (viper-set-hooks):
19047 * eshell/esh-mode.el (eshell-truncate-buffer):
19048 * international/mule-cmds.el (prefer-coding-system)
19049 (describe-input-method, describe-language-environment):
19050 * international/mule-diag.el (list-character-sets)
19051 (describe-character-set, describe-coding-system)
19052 (describe-fontset, list-fontsets, list-input-methods):
19053 * mail/sendmail.el (mail-signature):
19054 * net/ange-ftp.el (ange-ftp-copy-file):
19055 * net/browse-url.el (browse-url):
19056 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
19057 * net/quickurl.el (quickurl-add-url):
19058 * net/rcirc.el (names, topic):
19059 * net/xesam.el (xesam-mode):
19060 * play/5x5.el (5x5-new-game):
19061 * play/yow.el (apropos-zippy):
19062 * progmodes/ada-mode.el (ada-mode-version):
19063 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
19064 (f90-end-of-block)
19065 (f90-beginning-of-block):
19066 * progmodes/fortran.el (fortran-end-of-block)
19067 (fortran-beginning-of-block):
19068 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
19069 * progmodes/python.el (python-describe-symbol, python-shell):
19070 * term/ns-win.el (ns-print-buffer):
19071 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
19072 * textmodes/flyspell.el (flyspell-mode-on):
19073 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
19074 (pages-directory-for-addresses):
19075 * textmodes/table.el (table-recognize-cell)
19076 (table-query-dimension, table-generate-source)
19077 (table-insert-sequence, table--warn-incompatibility):
19078 * textmodes/tex-mode.el (tex-validate-buffer):
19079 * textmodes/texinfmt.el (texinfmt-version)
19080 (texinfo-format-buffer):
19081 Use `called-interactively-p' instead of `interactive-p'.
19082
12a3c28c
JB
190832009-10-02 Juanma Barranquero <lekktu@gmail.com>
19084
19085 * image-mode.el (image-toggle-display):
19086 * emacs-lisp/elp.el (elp-instrument-function):
19087 * emacs-lisp/advice.el (ad-make-advised-definition):
19088 * emacs-lisp/easy-mmode.el (define-minor-mode):
19089 * net/browse-url.el (browse-url-maybe-new-window):
19090 * progmodes/sh-script.el (sh-learn-buffer-indent):
19091 Pass new argument 'any to `called-interactively-p'.
19092
171fda8a
JB
190932009-10-01 Juanma Barranquero <lekktu@gmail.com>
19094
171fda8a
JB
19095 * international/uni-bidi.el:
19096 * international/uni-category.el:
19097 * international/uni-combining.el:
19098 * international/uni-comment.el:
19099 * international/uni-decimal.el:
9c3c9fdf 19100 * international/uni-decomposition.el:
171fda8a
JB
19101 * international/uni-digit.el:
19102 * international/uni-lowercase.el:
19103 * international/uni-mirrored.el:
19104 * international/uni-name.el:
19105 * international/uni-numeric.el:
19106 * international/uni-old-name.el:
19107 * international/uni-titlecase.el:
19108 * international/uni-uppercase.el:
19109 Regenerate from Unicode 5.2.0 data.
19110
dcb9734a
GM
191112009-10-01 Glenn Morris <rgm@gnu.org>
19112
19113 * Makefile.in (ELCFILES): Regenerate.
19114
ced10a4c
SM
191152009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
19116
9d28c33e
SM
19117 * subr.el (interactive-p): Mark obsolete.
19118 (called-interactively-p): Make the optional-ness of `kind' obsolete.
19119 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
19120 advertised-signature-table for subroutines as well.
19121
ced10a4c
SM
19122 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
19123 (set-advertised-calling-convention): New function.
19124 (make-obsolete, define-obsolete-function-alias)
19125 (make-obsolete-variable, define-obsolete-variable-alias):
19126 Make the optional-ness of `when' obsolete.
19127 (define-obsolete-face-alias): Make `when' non-optional.
19128 * help-fns.el (help-function-arglist):
19129 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
19130 Use advertised-signature-table.
19131
cc3dda16
MA
191322009-10-01 Michael Albinus <michael.albinus@gmx.de>
19133
19134 * files.el (delete-directory): New defun. The original function
19135 in fileio.c has been renamed to `delete-directory-internal'.
19136
19137 * dired.el (dired-delete-file): Call `delete-directory' with
19138 RECURSIVE parameter.
19139
5ce6e4f4 19140 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
cc3dda16
MA
19141 parameter RECURSIVE. Implementation is missing.
19142
19143 * net/tramp.el (tramp-handle-make-directory): Flush upper
19144 directory's file properties.
ced10a4c 19145 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
cc3dda16
MA
19146 (tramp-handle-dired-recursive-delete-directory): Flush directory
19147 properties after the remove command only.
19148
ced10a4c
SM
19149 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
19150 Handle optional parameter RECURSIVE.
cc3dda16 19151
ced10a4c
SM
19152 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
19153 Handle optional parameter RECURSIVE.
cc3dda16
MA
19154
19155 * net/tramp-smb.el (tramp-smb-errors): Add error message for
19156 connection timeout.
19157 (tramp-smb-handle-delete-directory): Handle optional parameter
19158 RECURSIVE.
19159
cf885595
SM
191602009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
19161
e3a6b82f
SM
19162 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
19163 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
19164 (byte-compile-defmacro): Use backquotes.
19165
7201bfbb
SM
19166 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
19167
cf885595
SM
19168 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
19169 has no associated file.
19170 (vc-resynch-buffer): Use vc-dir-buffers.
19171
a4d2c321
GM
191722009-10-01 Glenn Morris <rgm@gnu.org>
19173
9ffe3f52
GM
19174 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
19175 (chart-file-count):
19176 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
19177 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
19178 * emacs-lisp/eieio-opt.el (eieio-describe-class):
19179 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
19180 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
19181 (eieio-copy-parents-into-subclass, make-instance, class-children)
19182 (eieio-generic-form):
bd2afec2 19183
9515cdcc
GM
19184 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
19185 match-data. (Bug#4555).
19186
a4d2c321
GM
19187 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
19188 rather than parsing it as a regexp. This relaxes the layout
19189 requirements and makes errors easier to detect.
19190 (check-declare-verify): Check file is regular.
19191 (check-declare-directory): Doc fix.
19192 * subr.el (declare-function): Doc fix.
19193
b15c31c7
GM
19194 * ibuffer.el (ibuffer-format-qualifier):
19195 * isearch.el (hi-lock-regexp-okay):
19196 * calc/calc.el (math-zerop):
19197 * mail/uce.el (rmail-msgbeg, rmail-msgend):
19198 * term/w32-win.el (setup-default-fontset, set-fontset-font):
19199 Remove unused declarations.
19200
b0b111c3
JB
192012009-09-30 Eric Ludlam <zappo@gnu.org>
19202
19203 * emacs-lisp/eieio.el (boolean-p): Delete.
19204
1fc28a2c
GM
192052009-09-30 Glenn Morris <rgm@gnu.org>
19206
1fc28a2c
GM
19207 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
19208
494f4fc7
GM
19209 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
19210 filename is not a string.
19211
561580e9
CY
192122009-09-29 Chong Yidong <cyd@stupidchicken.com>
19213
19214 * files.el (safe-local-eval-forms): Fix typo.
19215
dcbbecd4
SM
192162009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
19217
19218 * vc-hooks.el (vc-dir-buffers): New var.
19219 (vc-state-refresh): New function.
19220 (vc-state): Use it.
19221 (vc-after-save): Always ask the backend to recompute the new state.
19222 Always call vc-dir if necessary, using vc-dir-buffers.
19223 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
19224 Use vc-dir-buffers.
19225 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
19226 (vc-dir-prepare-status-buffer, vc-dir-update)
19227 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
19228 Don't call expand-file-name on default-directory.
19229
d88444f2
JB
192302009-09-29 Juanma Barranquero <lekktu@gmail.com>
19231
19232 * speedbar.el (speedbar-item-delete):
19233 * calc/calc-prog.el (calc-kbd-if):
19234 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
19235
19236 * epa.el (epa-key-list-mode-map):
19237 * hi-lock.el (hi-lock-menu): Fix typos in menus.
19238
19239 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
19240 (hs-show-hook): Fix typo in docstring.
19241
5da62d41
GM
192422009-09-29 Glenn Morris <rgm@gnu.org>
19243
8360fce0
GM
19244 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
19245 file-name-nondirectory call preventing location of cedet files.
19246 (check-declare-verify): Use literal search rather than re-search.
ae715515 19247 Add basic defmethod and defclass, and define-overloadable-function.
8360fce0
GM
19248
19249 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
19250 Use tramp-compat-file-attributes rather than nonexistent
19251 tramp-compat-handle-file-attributes.
19252
5da62d41
GM
19253 * Makefile.in (lisptagsfiles4): New.
19254 (AUTOGENEL): Add cedet loaddefs files.
19255 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
19256 (update-elclist, compile-always, backup-compiled-files)
19257 (bootstrap-clean): Add yet another directory level.
19258 (update-elclist): Use LC_COLLATE rather than COLLATE.
19259 (ELCFILES): Update, via `make update-elclist'.
19260
48267264
JB
192612009-09-29 Juanma Barranquero <lekktu@gmail.com>
19262
19263 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
19264 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
19265 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
19266
2c4cd0b0
AS
192672009-09-28 Andreas Schwab <schwab@linux-m68k.org>
19268
19269 * Makefile.in (lisptagsfiles3): Define.
5da62d41 19270 (TAGS, TAGS-LISP): Use it.
2c4cd0b0
AS
19271 (update-elclist): Add third directory level to look for elc files.
19272 (compile-always): Likewise.
19273 (backup-compiled-files): Likewise.
19274 (bootstrap-clean): Likewise.
19275 (ELCFILES): Update.
19276
a2533e47
CY
192772009-09-28 Chong Yidong <cyd@stupidchicken.com>
19278
19279 * Makefile.in (ELCFILES): Add CEDET files.
19280
eefbedb1
MA
192812009-09-28 Michael Albinus <michael.albinus@gmx.de>
19282
19283 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
19284
19285 * net/tramp.el (top): Require tramp-imap.
19286
19287 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
19288 Use `tramp-compat-handle-file-attributes'.
19289
192902009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
19291
19292 * net/tramp-imap.el: New package.
19293
b0b111c3
JB
192942009-09-28 Eric Ludlam <zappo@gnu.org>
19295
19296 * emacs-lisp/chart.el:
19297 * emacs-lisp/eieio-base.el:
19298 * emacs-lisp/eieio-comp.el:
19299 * emacs-lisp/eieio-custom.el:
19300 * emacs-lisp/eieio-datadebug.el:
19301 * emacs-lisp/eieio-opt.el:
19302 * emacs-lisp/eieio-speedbar.el:
19303 * emacs-lisp/eieio.el: New files.
19304
748e3d67
VJL
193052009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19306
19307 * whitespace.el (whitespace-trailing-regexp)
19308 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
19309 Fix doc string.
19310
15120dec
CY
193112009-09-27 Chong Yidong <cyd@stupidchicken.com>
19312
19313 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
19314 menu.
19315
19316 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
19317 menu-bar-ediff-menu.
19318
19319 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
19320 define-overloadable-function.
19321
19322 * progmodes/autoconf.el: Provide autoconf as well, so that this
19323 file can be `require'd.
19324
19325 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
19326
19327 * emacs-lisp/autoload.el (generated-autoload-feature)
19328 (generated-autoload-load-name): New vars.
19329 (autoload-rubric, autoload-generate-file-autoloads): Use them.
19330 (make-autoload): Recognize define-overloadable-function and
19331 defclass forms (for EIEIO).
19332
19333 * Makefile.in (update-subdirs): Exclude cedet directory.
19334
135abf91
AR
193352009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
19336
1becddbb 19337 * term/ns-win.el: Don't set the region face background. (Bug#4381)
135abf91
AR
19338
19339 * faces.el: Default light-background background for region face to
19340 ns_selection_color under NS.
19341
3d994264
TZ
193422009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
19343
19344 * net/imap-hash.el: New library, see NEWS.
19345
19346 * Makefile.in (ELCFILES): Add imap-hash.el.
19347
ce9a0ccb
SM
193482009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
19349
19350 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
19351 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
19352 * help-macro.el (make-help-screen): Avoid using an ambiguous function
19353 definition where the docstring could be taken for the return value.
19354
a92cdd49
GM
193552009-09-26 Glenn Morris <rgm@gnu.org>
19356
19357 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
19358 Add option to only show images below a certain size.
19359 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
19360 save-excursion calls.
19361
416ac2f1
EZ
193622009-09-26 Eli Zaretskii <eliz@gnu.org>
19363
19364 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
19365 subdirectories) and eieio.
19366
d9a13f68
AM
193672009-09-26 Alan Mackenzie <acm@muc.de>
19368
6a7662bb
BR
19369 * progmodes/cc-engine.el (c-beginning-of-statement-1):
19370 Correct buggy bracketing. (Bug#4289)
d9a13f68
AM
19371
19372 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
550d95a0 19373 character constants (as case labels). (Bug#4289)
d9a13f68 19374
182b3bec
CY
193752009-09-25 Juri Linkov <juri@jurta.org>
19376
19377 * files.el (safe-local-eval-forms): Allow time-stamp in
19378 before-save-hook (Bug#4554).
19379
8f75f2da
JB
193802009-09-25 Drew Adams <drew.adams@oracle.com>
19381
19382 * menu-bar.el (list-buffers-directory): Doc fix.
19383
8390fb80
SM
193842009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
19385
19386 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
19387 Try and avoid copying twice the same paragraph.
19388 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
19389 Remove save-excursion.
19390 (log-edit-changelog-entry): Do it here instead.
19391
11ee8d90
JB
193922009-09-25 Juanma Barranquero <lekktu@gmail.com>
19393
027b1942
JB
19394 * bs.el (bs--get-file-name): Use `list-buffers-directory'
19395 when available, instead of hardcoding mode names. Doc fix.
19396
11ee8d90
JB
19397 * menu-bar.el (list-buffers-directory): Add docstring.
19398 Make automatically buffer-local.
19399
19400 * dired.el (dired-mode):
19401 * files.el (cd-absolute):
19402 * pcvs.el (cvs-temp-buffer):
19403 * pcvs-util.el (cvs-get-buffer-create):
19404 * shell.el (shell-mode):
19405 * vc-dir.el (vc-dir-mode):
19406 Don't make `list-buffers-directory' buffer local.
19407
21289c5d
CY
194082009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
19409
8390fb80
SM
19410 * comint.el (comint-exec, comint-run, make-comint):
19411 Doc fixes (Bug#4542).
21289c5d 19412
e8652dd9
GM
194132009-09-25 Glenn Morris <rgm@gnu.org>
19414
19415 * mail/rmailmm.el (rmail-mime): New custom group.
19416 Move all defcustoms in this file into this group.
19417 (rmail-mime-media-type-handlers-alist): Revert previous change.
19418 (rmail-mime-show-images): New option.
19419 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
19420 references to it, since it wasn't actually used for anything.
19421 (rmail-mime-insert-image): New function.
19422 (rmail-mime-image): Use rmail-mime-insert-image.
19423 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
69220882
GM
19424 obey the value of `rmail-mime-show-images' option. Print the size of
19425 attachments.
e8652dd9 19426
fb652bb5
JB
194272009-09-25 David Engster <deng@randomsample.de>
19428
19429 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
19430
32a9841c
VJL
194312009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19432
19433 * whitespace.el: Does not highlight trailing spaces While point is
19434 at end of line. Does not highligt spaces at beginning of buffer
19435 while point is at beginning of buffer. Does not highlight spaces
19436 at end of buffer while point is at end of buffer. (Bug#4177)
19437 New version 12.0.
19438 (whitespace-display-mappings): Adjust initialization.
19439 (whitespace-point, whitespace-font-lock-refontify): New vars.
19440 (whitespace-color-on, whitespace-color-off): Adjust code.
19441 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
19442 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
19443 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
19444
e477ca84
CY
194452009-09-24 Chong Yidong <cyd@stupidchicken.com>
19446
19447 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
19448
19449 * textmodes/sgml-mode.el: Remove xml-mode alias.
19450
19451 * files.el (auto-mode-alist, conf-mode-maybe)
8390fb80 19452 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
e477ca84 19453
68712602
AM
194542009-09-24 Alan Mackenzie <acm@muc.de>
19455
19456 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
19457 c-forward-conditionals, but it doesn't move point and doesn't set
19458 the mark.
19459 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
19460 (c-down-conditional-with-else, c-backward-conditional)
19461 (c-forward-conditional): Refactor to use c-scan-conditionals.
19462
1659ada0
JB
194632009-09-24 Juanma Barranquero <lekktu@gmail.com>
19464
19465 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
19466 (help-default-arg-highlight): Remove.
19467 (help-highlight-arg): New function.
19468 (help-do-arg-highlight): Use it.
19469 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
19470
b3f01e46
SM
194712009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
19472
19473 * term.el (term-set-scroll-region, term-handle-ansi-escape):
19474 Undo last change, which didn't fix the problem and introduced others.
19475
107ef54a
NR
194762009-09-24 Nick Roberts <nickrob@snap.net.nz>
19477
19478 * progmodes/gdb-mi.el: Don't require speedbar.
19479 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
19480
ffa1fed6
GM
194812009-09-24 Glenn Morris <rgm@gnu.org>
19482
2157a2be
GM
19483 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
19484
6125167c
GM
19485 * term/ns-win.el (ns-reg-to-script): Define for compiler.
19486
ffa1fed6
GM
19487 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
19488 there is no newline after the final mime boundary. (Bug#4539)
19489 Move markers on insertion so that any buttons inserted don't end up in
19490 the next part of a multipart message.
2e9075d3
GM
19491 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
19492 (rmail-mime-bulk-handler): Optionally handle images.
19493 (rmail-mime-image): New button action.
19494 (rmail-mime-image-handler): New function.
19495 (rmail-mime-mode): New mode.
19496 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
ffa1fed6 19497
4a814992
SM
194982009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
19499
075518b5
SM
19500 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
19501 than just dropping elements from it (bug#4504).
19502
8ad2defc
SM
19503 * term.el (term-set-scroll-region): Don't move cursor any more.
19504 (term-handle-ansi-escape): Call term-goto here instead.
19505 Suggested by Ivan Kanis <apple@kanis.eu>.
19506
4a814992
SM
19507 * term.el: Require CL.
19508 (term-ansi-reset): New function.
19509 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
19510 (term-handle-colors-array): Simplify.
19511
5a0c3f56
JB
195122009-09-24 Juanma Barranquero <lekktu@gmail.com>
19513
19514 * allout.el (allout-overlay-interior-modification-handler)
19515 (allout-obtain-passphrase):
19516 * epa-file.el (epa-file-write-region):
19517 * ps-print.el (ps-begin-job):
19518 * vc-hooks.el (vc-toggle-read-only):
19519 * vc-rcs.el (vc-rcs-rollback):
19520 * vc-sccs.el (vc-sccs-rollback):
19521 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
19522 (vc-version-diff, vc-revert, vc-rollback):
19523 * wdired.el (wdired-check-kill-buffer):
19524 * emacs-lisp/authors.el (authors):
19525 * net/socks.el (socks-open-connection):
19526 * net/zeroconf.el (zeroconf-service-add-hook):
19527 * obsolete/vc-mcvs.el (vc-mcvs-register):
19528 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
19529 (gdb-select-frame):
19530 * progmodes/grep.el (lgrep, rgrep):
19531 * progmodes/idlw-help.el (idlwave-help-check-locations)
19532 (idlwave-help-html-link, idlwave-help-assistant-open-link):
19533 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
19534 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
19535 (reftex-toc-rename-label): Fix typos in error messages.
19536
19537 * dired-aux.el (dired-do-shell-command): Reflow docstring.
19538 (dired-copy-how-to-fn): Doc fix.
19539 (dired-files-attributes, dired-read-shell-command):
19540 Fix typos in docstrings.
19541
19542 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
19543 (dired-x-find-file-other-window): Reflow docstrings.
19544 (dired-omit-marker-char, dired-read-shell-command)
19545 (dired-x-submit-report): Fix typos in docstrings.
19546
19547 * shell.el (shell-mode-hook):
19548 * view.el (View-scroll-line-forward):
19549 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
19550 Fix typos in docstrings.
19551
19552 * net/dig.el (dig-invoke): Fix typo in docstring.
19553 (query-dig): Reflow docstring.
19554
19555 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
19556 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
19557 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
19558 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
19559 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
19560 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
19561 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
19562 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
19563 (idlwave-completion-map, idlwave-current-indent)
19564 (idlwave-custom-ampersand-surround, idlwave-customize)
19565 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
19566 (idlwave-define-abbrev, idlwave-determine-class-special)
19567 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
19568 (idlwave-end-block-reg, idlwave-end-of-statement)
19569 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
19570 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
19571 (idlwave-explicit-class-listed, idlwave-file-header)
19572 (idlwave-fill-paragraph, idlwave-find-class-definition)
19573 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
19574 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
19575 (idlwave-in-quote, idlwave-indent-action-table)
19576 (idlwave-indent-expand-table, idlwave-indent-line)
19577 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
19578 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
19579 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
19580 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
19581 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
19582 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
19583 (idlwave-outlawed-buffers, idlwave-popup-select)
19584 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
19585 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
19586 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
19587 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
19588 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
19589 (idlwave-statement-type, idlwave-struct-skip)
19590 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
19591 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
19592 (idlwave-what-module-find-class): Fix typos in docstrings.
19593 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
19594 (idlwave-calculate-cont-indent, idlwave-expand-equal)
19595 (idlwave-find-module, idlwave-find-structure-definition)
19596 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
19597 (idlwave-list-load-path-shadows, idlwave-next-statement)
19598 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
19599 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
19600 (idlwave-template): Reflow docstrings.
19601
19602 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
19603 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
19604 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
19605 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
19606 (idlwave-shell-display-line, idlwave-shell-display-wframe)
19607 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
19608 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
19609 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
19610 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
19611 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
19612 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
19613 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
19614 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
19615 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
19616 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
19617 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
19618 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
19619 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
19620 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
19621 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
19622 Fix typos in docstrings.
19623 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
19624 (idlwave-shell-hide-output, idlwave-shell-mode)
19625 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
19626 Reflow docstrings.
19627
19628 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
19629
62136c5d
SM
196302009-09-24 Ivan Kanis <apple@kanis.eu>
19631
19632 * term.el (term-bold-attribute): New var.
19633 (term-handle-colors-array): Use it.
19634
9c1a45ed
NR
196352009-09-23 Nick Roberts <nickrob@snap.net.nz>
19636
19637 * progmodes/gdb-mi.el (gdb-version): New variable.
19638 (gdb-non-stop-handler): Set gdb-version.
19639 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
19640 Condition "--thread" option on gdb-version.
19641 (gdb-invalidate-threads): Remove unused argument.
19642
03304f31
SM
196432009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
19644
19645 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
19646 to looking-back to avoid ridiculous slow down in large files (bug#4511).
19647
4f02f0c9
GM
196482009-09-23 Glenn Morris <rgm@gnu.org>
19649
19650 * mail/rmail.el (rmail-reply): Don't try to add a References header when
19651 replying to mail without References or Message-Id. (Bug#4525)
19652
a3b4b363
AR
196532009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
19654
19655 * term/ns-win.el (ns-reg-to-script): New variable.
19656
7bda18cc
DU
196572009-09-23 Daiki Ueno <ueno@unixuser.org>
19658
19659 * epg.el (epg-wait-for-status): Preserve existing 'error results.
19660
72169e55
SS
196612009-09-22 Sam Steingold <sds@gnu.org>
19662
19663 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
71630ffe
SS
19664 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
19665 to 1 because hg returns status 1 when nothing is found.
0aa4f295 19666 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
72169e55 19667
905b7d38
SM
196682009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
19669
b0459dec
SM
19670 * textmodes/fill.el: Convert to utf-8 encoding.
19671 (fill-french-nobreak-p): Remove redundant » and « inherited from our
dd86ea11 19672 pre-Unicode days.
b0459dec 19673
905b7d38
SM
19674 * add-log.el (change-log-fill-forward-paragraph): New function.
19675 (change-log-mode): Use it so fill-region DTRT.
19676 Set fill-indent-according-to-mode here rather than in
19677 change-log-fill-paragraph.
19678 (change-log-fill-paragraph): Remove.
19679
baa7f3de
JB
196802009-09-22 Juanma Barranquero <lekktu@gmail.com>
19681
19682 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
19683 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
19684
a8d789f0
GM
196852009-09-22 Glenn Morris <rgm@gnu.org>
19686
daedbbc2
GM
19687 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
19688 the scroll-bar scroll the calendar window rather than the buffer.
19689
d8899a74
GM
19690 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
19691 commands that move point (as opposed to scrolling).
19692
a8d789f0
GM
19693 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
19694
19695 * emacs-lisp/elint.el (elint): New custom group.
19696 (elint-log-buffer): Make it a defcustom.
19697 (elint-scan-preloaded, elint-ignored-warnings)
19698 (elint-directory-skip-re): New options.
19699 (elint-builtin-variables): Doc fix.
19700 (elint-preloaded-env): New variable.
19701 (elint-unknown-builtin-args): Add an entry for encode-time.
19702 (elint-extra-errors): Make it a variable rather than a constant.
19703 (elint-preloaded-skip-re): New constant.
19704 (elint-directory): Skip files matching elint-directory-skip-re.
19705 (elint-features): New variable, local to linted buffers.
19706 (elint-update-env): Initialize elint-features. Possibly add
19707 elint-preloaded-env to the buffer's environment.
19708 (elint-get-top-forms): Bind elint-current-pos, for log messages.
19709 Skip quoted forms.
19710 (elint-init-form): New function, extracted from elint-init-env.
19711 Make non-list forms a warning rather than an error.
19712 Add the mode-map for define-derived-mode. Handle define-minor-mode,
19713 easy-menu-define, put that adds an error-condition, and provide.
19714 When requiring cl, also require cl-macs. Really require cl, to handle
19715 some cl macros. Store required libraries in the list elint-features,
19716 so as not to re-load them. Treat cc-require like require.
19717 (elint-init-env): Call elint-init-form to do the work.
19718 Handle eval-and-compile and such like.
19719 (elint-add-required-env): Do not clear messages.
19720 (elint-special-forms): Add handlers for function, defalias, if, when,
19721 unless, and, or.
19722 (elint-form): Add optional argument to ignore elint-special-forms,
19723 useful to prevent recursive calls from handlers. Doc fix.
19724 Respect elint-ignored-warnings.
19725 (elint-form): Respect elint-ignored-warnings.
19726 (elint-bound-variable, elint-bound-function): New variables.
19727 (elint-unbound-variable): Respect elint-bound-variable.
19728 (elint-get-args): Respect elint-bound-function.
19729 (elint-check-cond-form): Add some simple handling for (f)boundp and
19730 featurep tests.
19731 (elint-check-defalias-form): New handler.
19732 (elint-check-let-form): Make an empty let a warning rather than an
19733 error.
19734 (elint-check-setq-form): Make an empty setq a warning rather than an
19735 error. Respect elint-ignored-warnings.
19736 (elint-check-defvar-form): Accept null doc-strings.
19737 (elint-check-conditional-form): New handler. Does some simple-minded
19738 checking of featurep and (f)boundp tests.
19739 (elint-put-function-args): New function.
19740 (elint-initialize): Use elint-scan-doc-file rather than
19741 elint-find-builtin-variables. Use elint-put-function-args.
19742 Possibly scan preloaded-file-list.
19743 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
19744 extend to handle functions as well.
19745
245be23c
JB
197462009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
19747
19748 * linum.el (linum-delete-overlays, linum-update-window):
19749 Do not modify the right margin. (Bug#3971)
19750
91fdbd6f
CY
197512009-09-21 Chong Yidong <cyd@stupidchicken.com>
19752
6a7662bb
BR
19753 * files.el (conf-mode-maybe, magic-fallback-mode-alist):
19754 Use nxml-mode instead of xml-mode.
91fdbd6f 19755
7589d38e
JB
197562009-09-21 Kevin Ryde <user42@zip.com.au>
19757
19758 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
19759
5ac42715
SM
197602009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
19761
19762 * net/dig.el (dig-mode): Use define-derived-mode.
19763
09c01323
DN
197642009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
19765
4096c5f2
DN
19766 * vc-dispatcher.el (vc-do-command): Return the process object in
19767 the asynchronous case. Use when instead of if. Do not run
5480359e 19768 vc-exec-after to display a message if not enabled. (Bug#4463)
4096c5f2 19769
0e172cc2
DN
19770 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
19771 properties to the stash strings.
19772 (vc-git-stash-list): Return a list of strings.
19773 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
19774 (vc-git-stash-show-at-point): New functions.
19775 (vc-git-stash-map): New keymap.
19776
03304f31
SM
19777 * register.el (ctl-x-r-map): Define the keys here instead of
19778 using autoload.
09c01323 19779
03304f31 197802009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
e3f36d03
SM
19781
19782 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
19783 list, to workaround performance problem (bug#4485).
19784
2f5fc4d7
NR
197852009-09-20 Nick Roberts <nickrob@snap.net.nz>
19786
19787 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
19788
b0f5fd2e
DU
197892009-09-20 Daiki Ueno <ueno@unixuser.org>
19790
19791 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
19792 Document that this option is not recommended to use.
19793
f3445fab
GM
197942009-09-19 Glenn Morris <rgm@gnu.org>
19795
547c6921
GM
19796 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
19797 variable `var'.
19798
f3445fab
GM
19799 * calc/calc-alg.el (var):
19800 * calc/calcalg2.el (var): Define for compiler.
19801
946c009b
CY
198022009-09-19 Chong Yidong <cyd@stupidchicken.com>
19803
e3f36d03
SM
19804 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
19805 Doc fix (Bug#3932).
e2045997 19806
24aedbca
CY
19807 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
19808
327dd27a
CY
19809 * time-stamp.el (time-stamp-month-dd-yyyy)
19810 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
19811 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
19812 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
e3f36d03
SM
19813 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
19814 Remove functions that have been obsolete since 1995 (Bug#4436).
327dd27a 19815
946c009b
CY
19816 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
19817 indent buffer only if called interactively (Bug#4452).
19818
3e70541a 198192009-09-19 Juanma Barranquero <lekktu@gmail.com>
4e2af782 19820 Eli Zaretskii <eliz@gnu.org>
3e70541a
JB
19821
19822 This fixes bug#4197 (merged to bug#865, though not identical).
19823 * server.el (server-auth-dir): Add docstring note about FAT32.
19824 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
19825 but warn against using them.
19826
9b94c32e
NR
198272009-09-19 Nick Roberts <nickrob@snap.net.nz>
19828
19829 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
19830 older GDB where there is no has_more field.
19831
66590684
GM
198322009-09-19 Glenn Morris <rgm@gnu.org>
19833
19834 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
19835
9a1337f9
CY
198362009-09-18 Chong Yidong <cyd@stupidchicken.com>
19837
19838 * files.el (auto-mode-alist): Change default for XML files to nXML
19839 mode (Bug#4169).
19840
d7554167
JB
198412009-09-18 Juanma Barranquero <lekktu@gmail.com>
19842
19843 * server.el (server-ensure-safe-dir): Pass 'integer
19844 to `file-attributes', as suggested.
19845
35a3f9a4
SM
198462009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
19847
19848 * dired-aux.el (dired-query-alist): Remove spurious backslash.
19849 (dired-query): Use read-key.
19850
044f9b05
AR
198512009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
19852
19853 * cus-start.el (ns-use-qd-smoothing): Remove.
19854
6188ea49
GM
198552009-09-18 Glenn Morris <rgm@gnu.org>
19856
08cf18e4
GM
19857 * allout.el (top-level): Remove unnecessary progn.
19858
07eae5c5
GM
19859 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
19860
6726c25e
GM
19861 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
19862 definition of abbrev table.
19863
3f527154 19864 * speedbar.el (speedbar-track-mouse):
6188ea49
GM
19865 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
19866 * net/eudc.el (eudc-expand-inline):
770af4b4
GM
19867 * net/newst-backend.el (newsticker--cache-read-feed):
19868 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
6188ea49
GM
19869 condition-case handlers.
19870
ccb4c30c
NR
198712009-09-18 Nick Roberts <nickrob@snap.net.nz>
19872
19873 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
19874 (gdb-var-list): Add an element for has_more field.
19875 (gdb-non-stop-handler): Enable pretty printing for STL containers.
19876 (gdb-var-create-handler, gdb-var-list-children-handler-1)
19877 (gdb-var-update-handler-1): Parse output of dynamic variable
19878 objects (STL containers).
19879 (gdb-var-delete-1): Pass var1 as an explicit second argument.
19880 (gdb-get-field): Delete alias. Use bindat-get-field directly.
19881
19882 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
19883 gdb-var-list.
19884 (gud-speedbar-buttons): Make node expandable if expression "has more"
19885 children.
19886
8686ac71
JB
198872009-09-17 Juanma Barranquero <lekktu@gmail.com>
19888
19889 * startup.el (emacs-quick-startup): Remove variable and all uses.
19890 (command-line): Set `inhibit-x-resources' instead.
19891 (command-line-1): Use `inhibit-x-resources' instead.
19892
a69c67e8
CY
198932009-09-17 Chong Yidong <cyd@stupidchicken.com>
19894
19895 * subr.el: Fix last change to avoid using the `unless' macro,
19896 which breaks bootstrapping.
19897
354f0faf
SM
198982009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
19899
19900 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
19901 extended definitions, in case we reload subr.el after having
19902 loaded CL.
19903 (eval-next-after-load): Mark as obsolete.
19904
98b9bf40
JL
199052009-09-17 Juri Linkov <juri@jurta.org>
19906
19907 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
19908 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
19909 (menu-bar-showhide-menu, menu-bar-tools-menu)
19910 (menu-bar-describe-menu, menu-bar-help-menu)
19911 (minibuffer-local-completion-map, minibuffer-local-map):
19912 Fix list quoting.
19913
28fab7b5
GM
199142009-09-17 Glenn Morris <rgm@gnu.org>
19915
88d5190c
GM
19916 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
19917 arguments, whether or not it has a handler.
19918
74f24ba7
GM
19919 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
19920
28fab7b5
GM
19921 * simple.el (hard-newline): Give it a doc-string.
19922
a8106aec
GM
19923 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
19924 (lisp-mode-syntax-table): Give them doc-strings.
e4a09a11 19925
76251ad7
DN
199262009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
19927
72033dbe
DN
19928 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
19929 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
19930 (menu-bar-options-menu, menu-bar-showhide-menu)
19931 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
19932 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
19933 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
19934 (menu-bar-options-menu, menu-bar-tools-menu)
19935 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
19936 (menu-bar-help-menu):
19937 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
19938 string arguments.
19939
76251ad7
DN
19940 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
19941 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
19942 calls for the menu names and :help.
19943
97b952b7
SM
199442009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
19945
19946 * mouse.el (minor-mode-menu-from-indicator): Pay attention
19947 to :minor-mode-function (bug#4455).
19948
8f38189e
SM
199492009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
19950
d2fd733e
SM
19951 * startup.el (command-line): Initialize the window-system after
19952 processing the command-line.
19953
8f38189e
SM
19954 * textmodes/page.el (what-page): Make sure we don't inf-loop if
19955 page-delimiter matches the empty string.
19956
77564fa4
GM
199572009-09-16 Glenn Morris <rgm@gnu.org>
19958
19959 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
19960 byte-compile-not-obsolete-var. It's a list now.
19961 (byte-compile-not-obsolete-funcs): New variable.
19962 (byte-compile-warn-obsolete): Don't warn about functions if they are in
19963 byte-compile-not-obsolete-funcs.
19964 (byte-compile-variable-ref, byte-compile-defvar): Update for
19965 byte-compile-not-obsolete-vars name-change and list nature.
19966 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
19967 and variables behind (f)boundp tests.
19968 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
19969
79d316d3
DN
199702009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
19971
19972 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
19973
8fed6934
SM
199742009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
19975
19976 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
19977 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
19978 Don't autoload.
19979
4078fd57
SE
199802009-09-15 Stephen Eglen <stephen@gnu.org>
19981
19982 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
5a0c3f56 19983 the virtual-buffers, use the name of the buffer specified by
4078fd57 19984 find-file-noselect, as the match may be a symlink. (This was a
5a0c3f56 19985 problem if the target and the symlink had different names.)
4078fd57 19986
838ff458
SM
199872009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
19988
b3c7c12d
SM
19989 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
19990
13dc2bc2
SM
19991 * desktop.el (desktop-path): Check user-emacs-directory.
19992
49fec531
SM
19993 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
19994
0e328d37
SM
19995 * loadup.el: Use after-load-functions to GC after loading each file.
19996 Remove the explicit GC calls that used to be sprinkled around.
19997
838ff458
SM
19998 * subr.el (after-load-functions): New hook.
19999 (do-after-load-evaluation): Run it. Use string-match-p to detect
20000 `obsolete' packages, rather than painfully extracting the relevant
20001 directory name.
20002
a62f564f
GM
200032009-09-15 Glenn Morris <rgm@gnu.org>
20004
20005 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
20006 free variable `doc'.
20007
20008 * dired.el (dired-mode-map): Add menu entry for async shell command.
20009
20010 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
20011 variables, also consider the .elc files, since the .el files are
20012 normally gzipped (subsequent code locates the .el.gz from the .elc).
20013
20014 * calc/calc-prog.el (arglist): Define for compiler.
20015
20016 * calendar/diary-lib.el (diary-display-function): Change the default to
20017 fancy display.
20018 (body): Define for compiler.
20019
20020 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
20021 (byte-compile-file-form, byte-compile-lambda)
20022 (byte-compile-top-level-body, byte-compile-form)
20023 (byte-compile-variable-ref, byte-compile-setq)
20024 (byte-compile-setq-default, byte-compile-body)
20025 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
20026 (batch-byte-compile): Give some more local variables with common names
20027 a "bytecomp-" prefix to avoid masking warnings about free variables.
20028
cd05fe7f
GM
20029 * startup.el (command-line-1): Give local variables with common names a
20030 distinguishing prefix, so as not to hide free variable warnings during
20031 bootstrap.
20032
a62f564f
GM
20033 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
20034 clever and add a suffix to make a unique name, just let the user decide
20035 whether or not to overwrite it. If the input is a directory, write the
20036 default filename to that directory. (Bug#4388)
20037 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
20038 is a filename-as-a-directory.
20039
fbc88440
SM
200402009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
20041
20042 * textmodes/page.el (what-page): Don't move to beginning of line.
20043 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
20044
60308853
DN
200452009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
20046
20047 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
20048
32ba3abc
DN
200492009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
20050
9cd39aff
DN
20051 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
20052 * help.el (help-for-help-internal): Add purecopy calls for text.
20053
32ba3abc
DN
20054 * vc.el (top): print-log method now takes an optional SHORTLOG
20055 argument. Add a new method: root.
32ba3abc
DN
20056 (vc-root-diff, vc-print-root-log): New functions.
20057 (vc-log-short-style): New variable.
20058 (vc-print-log-internal): Add support for showing short logs.
20059
20060 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
20061 vc-print-root-log and vc-print-root-diff.
20062
20063 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
20064 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
20065 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
20066 short logs.
20067
20068 * vc-cvs.el (vc-cvs-print-log):
20069 * vc-mtn.el (vc-mtn-print-log):
20070 * vc-rcs.el (vc-rcs-print-log):
20071 * vc-sccs.el (vc-sccs-print-log):
20072 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
20073 that is ignored for now.
20074
837b0e99
DN
20075 * vc-mtn.el (vc-mtn-annotate-command):
20076 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
20077
31cd2dd4
SM
200782009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
20079
20080 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
20081 to function-key-map, and give them ascii-character property.
20082 * term/x-win.el (x-alternatives-map):
20083 * term/ns-win.el (ns-alternatives-map):
20084 * term/internal.el (msdos-key-remapping-map):
20085 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
20086
d62e5bf2
GM
200872009-09-14 Glenn Morris <rgm@gnu.org>
20088
20089 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
20090 temp-buffers (2009-09-12).
20091
7d0105e5
SM
200922009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
20093
20094 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
20095 the new read-key function.
20096
e17ed9ad
CY
200972009-09-13 Chong Yidong <cyd@stupidchicken.com>
20098
20099 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
20100 is defined (Bug#4405).
20101
1fc26e29
CY
201022009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
20103
20104 * recentf.el (recentf-cleanup): Use a hash table to find
20105 duplicates (Bug#4407).
20106
61dc96a2 201072009-09-13 Per Starbäck <per@starback.se> (tiny change)
7e73ea32
CY
20108
20109 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
20110 kp-0 to ascii equivalents (Bug#4325).
20111
42c3a9e3
CY
201122009-09-13 Chong Yidong <cyd@stupidchicken.com>
20113
1f5c1626
CY
20114 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
20115
42c3a9e3 20116 * eshell/em-hist.el:
31cd2dd4
SM
20117 * eshell/em-dirs.el (eshell-complete-user-reference):
20118 Declare pcomplete functions and variables to avoid compiler warnings.
42c3a9e3
CY
20119
201202009-09-13 Leo <sdl.web@gmail.com> (tiny change)
20121
20122 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
20123 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
20124 * eshell/em-alias.el (eshell-aliases-file):
31cd2dd4
SM
20125 * eshell/em-hist.el (eshell-history-file-name):
20126 Use expand-file-name instead of concat to make file names (Bug#4308).
42c3a9e3 20127
1e2b6acf
GM
201282009-09-13 Glenn Morris <rgm@gnu.org>
20129
20130 * ediff-merg.el (ediff-do-merge):
20131 * filesets.el (filesets-run-cmd):
20132 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
20133 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
20134 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
20135 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
20136 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
20137 Replace empty `let's with `progn'.
20138
adba8116
SM
201392009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
20140
20141 * mail/sendmail.el (send-mail-function):
20142 * tooltip.el (tooltip-mode):
20143 * simple.el (transient-mark-mode):
20144 * rfn-eshadow.el (file-name-shadow-mode):
20145 * frame.el (blink-cursor-mode):
20146 * font-core.el (global-font-lock-mode):
20147 * files.el (temporary-file-directory)
20148 (small-temporary-file-directory, auto-save-file-name-transforms):
20149 * epa-hook.el (auto-encryption-mode):
20150 * composite.el (global-auto-composition-mode):
20151 Use custom-initialize-delay.
20152 * startup.el (command-line): Don't explicitly call
20153 custom-reevaluate-setting for all the above vars.
20154 * custom.el (custom-initialize-safe-set)
20155 (custom-initialize-safe-default): Delete.
20156
0a4afea9
SM
201572009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
20158
9f94990d
SM
20159 * term/x-win.el (x-initialize-window-system):
20160 * term/w32-win.el (w32-initialize-window-system):
20161 * term/ns-win.el (ns-initialize-window-system): Don't call
20162 mouse-wheel-mode since it's enabled globally by default already.
20163
0a4afea9
SM
20164 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
20165 actually define the variable, but only silences the byte-compiler.
20166 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
20167 before looking it up.
20168 (mouse-wheel-scroll-amount): Also reset the bindings if this value
20169 is changed.
20170
bf01513f
GM
201712009-09-12 Glenn Morris <rgm@gnu.org>
20172
20173 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
20174 1000.
20175 (elint-add-required-env): Don't beep on error.
20176 (elint-forms): In case of error, return ENV unchanged.
afdceaec
GM
20177 (elint-init-env): Skip non-list forms.
20178 (elint-log): Handle unknown file positions.
bf01513f 20179
d85889e4
DU
201802009-09-12 Daiki Ueno <ueno@unixuser.org>
20181
20182 * epg.el (epg-make-context): Add autoload cookie.
20183 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
20184 (epg-decrypt-string, epg-start-verify, epg-verify-file)
20185 (epg-verify-string, epg-start-sign, epg-sign-file)
20186 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
20187 (epg-encrypt-string, epg-start-export-keys)
20188 (epg-export-keys-to-file, epg-export-keys-to-string)
20189 (epg-start-import-keys, epg-import-keys-from-file)
20190 (epg-import-keys-from-string, epg-start-receive-keys)
20191 (epg-receive-keys, epg-import-keys-from-server)
20192 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
20193 (epg-sign-keys, epg-start-generate-key)
0a4afea9
SM
20194 (epg-generate-key-from-file, epg-generate-key-from-string):
20195 Remove autoload cookie.
d85889e4 20196
8f825ee6
EZ
201972009-09-12 Eli Zaretskii <eliz@gnu.org>
20198
36b434ee
EZ
20199 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
20200 reevaluation of trash-directory.
20201
8f825ee6
EZ
20202 * mwheel.el: Fix last change.
20203 (mouse-wheel-mode): New defvar.
20204 (mouse-wheel-mode): Remove autoload cookie.
20205
5766c380
SM
202062009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
20207
ab5c0fcd
SM
20208 * mwheel.el (mwheel-installed-bindings): New var.
20209 (mouse-wheel-mode): Use it, so as to make sure we really remove all
20210 the bindings we set last time. Use custom-initialize-delay.
20211 * loadup.el: Load mwheel after term/*-win.el.
20212 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
20213 and mouse-wheel-up-event now that their first evaluation is done
20214 sufficiently late to be correct.
20215
45448e64
SM
20216 * startup.el (tutorial-directory): Make it a defcustom.
20217 Use custom-initialize-delay rather than eval-at-startup to set it.
20218 * image.el (image-load-path): Make it a defcustom.
20219 Use custom-initialize-delay rather than eval-at-startup to set it.
20220 * subr.el (eval-at-startup): Remove.
20221 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
20222
5766c380
SM
20223 * subr.el (do-after-load-evaluation): Warn the user after loading an
20224 obsolete package.
20225
d6549da4
GM
202262009-09-12 Glenn Morris <rgm@gnu.org>
20227
20228 * proced.el (proced-mark-alt): Remove alias.
20229 (proced-mode-map): Remove proced-mark-alt.
20230
20231 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
20232 Elint file and directory. Remove initialization entry.
20233
20234 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
20235 commands.
20236 (elint-current-buffer): Set mode-line-process.
20237 (elint-init-env): Handle define-derived-mode.
20238 Fix declare-function with unspecified arglist. Guard against odd
20239 defalias statements (eg iso-insert's 8859-1-map).
20240 (elint-add-required-env): Use a temp buffer.
20241 (elint-form): Just print the function/macro name, not the whole form.
20242 Return env unchanged if we fail to parse a macro.
20243 (elint-forms): Guard against parse errors.
20244 (elint-output): New function, to handle batch mode.
20245 (elint-log-message): Add optional argument. Use elint-output.
20246 (elint-set-mode-line): New function.
20247
30194d4d
CY
202482009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
20249
20250 * emacs-lisp/elp.el (elp-not-profilable): Add more
20251 functions (Bug#4233).
20252
a035f9b0
CY
202532009-09-12 Chong Yidong <cyd@stupidchicken.com>
20254
20255 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
20256 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
20257
dad61164
NR
202582009-09-11 Nick Roberts <nickrob@snap.net.nz>
20259
20260 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
20261 (gdb-var-list-children): Use json parsing.
20262
9c3c9fdf 202632009-09-11 Daniel Colascione <dan.colascione@gmail.com>
34cab3d9
CY
20264
20265 * progmodes/js.el (js--proper-indentation): Handle the case where
20266 char-before is null. Reported by Deniz Dogan.
20267
b4587710
JB
202682009-09-11 Juanma Barranquero <lekktu@gmail.com>
20269
20270 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
20271
13890796
DU
202722009-09-11 Daiki Ueno <ueno@unixuser.org>
20273
20274 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
20275 (epg-digest-algorithm-alist): Add SHA224.
b18508dd 20276 (epg-context-set-passphrase-callback)
97d4bdba 20277 (epg-context-set-progress-callback): Add description about
b18508dd 20278 callback function.
13890796 20279
2efb64a8
SM
202802009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20281
790d0270
SM
20282 * custom.el (custom-delayed-init-variables): New var.
20283 (custom-initialize-delay): New function.
20284 * startup.el (command-line): "Re"evaluate all vars in
20285 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
20286 explicitly any more.
20287 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
20288 to avoid creating a ~/.emacs.d at build-time (bug#4347).
20289
20290 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
2efb64a8 20291
ac243a40
NR
202922009-09-11 Nick Roberts <nickrob@snap.net.nz>
20293
20294 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
20295 (gdb-var-update-handler): Use json parsing.
20296
657bc6fc
JB
202972009-09-11 Juanma Barranquero <lekktu@gmail.com>
20298
20299 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
20300 decode annotated text, regardless of language environment. (Bug#2741)
20301
b6fe8102
SM
203022009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20303
20304 * Makefile.in (autoloads): Make rmail.el writable as well.
20305
5cc443fe
GM
203062009-09-11 Glenn Morris <rgm@gnu.org>
20307
5515c54e
GM
20308 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
20309 loaddefs.el.
20310 * dired.el: Regenerate with extracted autoloads.
20311 * Makefile.in (autoloads): Make dired.el writable.
20312
15067158
GM
20313 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
20314 * ibuffer.el: Regenerate with extracted autoloads.
20315 * Makefile.in (autoloads): Make ibuffer.el writable.
20316
d35d0238
GM
20317 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
20318 * version.el (emacs-copyright, emacs-major-version)
20319 (emacs-minor-version): Reformat doc-strings for make-docfile.
20320
5cc443fe
GM
20321 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
20322 functions and variables, since they must be stuff specific to some other
20323 platform.
20324 (apropos-print): Make mouse-click message less specific about button.
20325
20326 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
20327 that records where a macro was defined.
20328 * help-fns.el (describe-function-1): Mention if a function has a
20329 compiler-macro.
20330 * help-mode.el (help-function-cmacro): New button.
20331
20332 * locate.el (top-level): Always require dired.
20333 (locate-mode-map): Initialize inside the defvar.
20334
20335 * net/ange-ftp.el (dired-compress-file): Declare.
20336 (ange-ftp-dired-compress-file): Add doc string.
20337
20338 * term/ns-win.el (x-display-name, x-setup-function-keys):
20339 Unify doc-strings with X versions.
20340
8cb95edf
SM
203412009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20342
726a4d09
SM
20343 * emulation/crisp.el (crisp-mode-map): Move initialization
20344 into declaration.
20345 (crisp-mode): Use define-minor-mode.
20346
8cb95edf
SM
20347 * progmodes/xscheme.el (xscheme-evaluation-commands):
20348 Put a :advertised-binding property rather than using
20349 advertised-xscheme-send-previous-expression.
20350 (advertised-xscheme-send-previous-expression): Declare obsolete.
20351 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
20352 `advertised-undo'.
20353 (crisp-mode): Add corresponding bindings to
20354 undo's :advertised-binding instead.
20355 * dired.el (dired-mode-map): Put a :advertised-binding property rather
20356 than using dired-advertised-find-file.
20357 (dired-advertised-find-file):
20358 * simple.el (advertised-undo):
20359 * wid-edit.el (advertised-widget-backward): Declare obsolete.
20360 (widget-keymap): Put a :advertised-binding property rather
20361 than using advertised-widget-backward.
20362 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
20363 than using advertised-undo.
20364 * tutorial.el (tutorial--default-keys): Adjust accordingly.
20365
07db5857
SS
203662009-09-10 Simon South <ssouth@slowcomputing.org>
20367
20368 * progmodes/delphi.el (delphi-tab): Indent region when Transient
20369 Mark mode is enabled and region is active; otherwise indent or
20370 insert TAB as usual.
20371 (delphi-mode): Update description of TAB-key binding.
20372
50d4ba39
SM
203732009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
20374
20375 * subr.el (define-key-rebound-commands): Mark obsolete.
20376 * startup.el (precompute-menubar-bindings): Remove.
20377 (normal-top-level): Remove obsolete code that tried to precompute
20378 menubar bindings.
20379 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
20380 define-key-rebound-commands and precompute-menubar-bindings.
20381
ffa894db
KY
203822009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
20383
20384 * net/imap.el (imap-interactive-login): Better messages.
20385 (imap-open): Fix bug with renamed buffer on reconnect.
20386 (imap-authenticate): Add buffer-local imap-last-authenticator variable
20387 for easier debugging and cleaner code. On successful (guessed based on
20388 server capabilities) secondary authentication, set imap-state
20389 correctly.
20390 (imap-last-authenticator): Define imap-last-authenticator as a variable
20391 to avoid warnings.
20392
9477096c
GM
203932009-09-10 Glenn Morris <rgm@gnu.org>
20394
20395 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
20396
20397 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
20398 (byte-compile-file-form-autoload): Don't warn about unknown functions
20399 where the autoload statement comes after the use.
20400 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
20401 that any handlers inside the body (eg require) are in turn respected.
20402
20403 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
20404 effects.
20405
20406 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
20407 and syntax and abbrev tables basic docs, if they don't have any.
20408
20409 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
20410
20411 * international/mule-cmds.el (top-level): Require cl when compiling.
20412 (view-hello-file): Use default-value rather than
20413 default-enable-multibyte-characters.
20414
20415 * progmodes/fortran.el: Move all safe and risky properties into the
20416 defcustoms.
20417
20418 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
20419 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
20420 * mail/undigest.el:
20421 Put autoloads in rmail.el rather than loaddefs.el.
20422 * mail/rmail.el: Regenerate with extracted autoloads.
20423
20424 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
20425 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
20426
9f16c547
NR
204272009-09-10 Nick Roberts <nickrob@snap.net.nz>
20428
20429 Reported in thread for Bug#4375.
20430 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
20431 "-data-evaluate-expression" instead of print.
20432 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
20433 (gdb-tooltip-print): Parse output from above MI command.
7ab133d1
NR
20434 (gdb): Revert 2009-08-11 change. User should detach inferior
20435 manually.
9f16c547
NR
20436
20437 Remove the word "separate" from IO functions as inferior
20438 output is now never displayed in the GUD buffer.
20439
50405cd0
JB
204402009-09-10 Juanma Barranquero <lekktu@gmail.com>
20441
20442 * startup.el (command-line-normalize-file-name): On Windows and
20443 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
20444
7ae62430
JL
204452009-09-10 Juri Linkov <juri@jurta.org>
20446
20447 * isearch.el (isearch-text-char-description): Propertize escape
20448 character sequences with the `escape-glyph' face. (Bug#4344)
20449
20450 * simple.el (shell-command): Set asynchronous process filter to
20451 `comint-output-filter'. (Bug#4343)
20452
20453 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
20454 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
20455 the list. Move "asm" to the bottom.
20456 (grep-find-ignored-directories): Add `choice' with nil value
20457 to empty the list easily.
20458 (grep-find-ignored-files): New option.
20459 (grep-files-history): Set to nil by default instead of '("ch" "el").
20460 (grep-compute-defaults): Add "<X>" to `grep-template'.
20461 (grep-read-files): Bind new local variables `default-alias' and
20462 `default-extension'. Use a list of default values for the file prompt.
20463 (lgrep): Add `--exclude=' command line options composed from
20464 `grep-find-ignored-files'.
20465 (rgrep): Add `-name' command line options composed from
20466 `grep-find-ignored-files'. (Bug#4301)
20467
cd875252
SM
204682009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
20469
20470 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
20471 (bug#4368).
20472
cdce0b33
KY
204732009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
20474
20475 * calendar/time-date.el (autoload):
20476 Expand define-obsolete-function-alias into defalias and make-obsolete
20477 for old Emacsen that Gnus supports.
20478 (with-no-warnings): Define it for old Emacsen.
20479 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
20480 is available.
20481 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
20482 float-time is available; suppress compile warning for time-to-seconds.
20483
204842009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
20485
20486 * net/imap.el (imap-message-map): Docstring fix.
20487
2b2eb431
GM
204882009-09-09 Glenn Morris <rgm@gnu.org>
20489
20490 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
20491 line numbers too. (Bug#4374)
20492
83a5aac5
SM
204932009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
20494
755e0210
SM
20495 * smerge-mode.el (smerge-remove-props, smerge-refine):
20496 Use with-silent-modifications (bug#4342).
20497
83a5aac5
SM
20498 * subr.el (with-silent-modifications): New macro.
20499
79f01fa7
JB
205002009-09-07 Juanma Barranquero <lekktu@gmail.com>
20501
20502 * files.el (top-level): Require `cl' when compiling.
20503
448ecec3
GM
205042009-09-07 Glenn Morris <rgm@gnu.org>
20505
20506 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
20507
8f09a02f
GM
20508 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
20509 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
20510
76ff67bf
NR
205112009-09-06 Nick Roberts <nickrob@snap.net.nz>
20512
20513 * vc-git.el (vc-git-annotate-command): Use separator to parse
20514 arguments correctly.
20515
943c8b75
EZ
205162009-09-06 Eli Zaretskii <eliz@gnu.org>
20517
20518 * proced.el (proced-mode): Doc fix.
20519
680db9ac
MA
205202009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
20521
20522 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
20523 lstat fails.
20524 (tramp-do-file-attributes-with-ls): Check for file existence at
20525 remote end.
20526 (tramp-do-file-attributes-with-stat): Likewise.
20527 (tramp-convert-file-attributes): Return nil when attr is nil.
20528
3f12e5bd
GM
205292009-09-05 Glenn Morris <rgm@gnu.org>
20530
c8dc27bf
GM
20531 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
20532 properties to this button.
20533 (diary-fancy-display): Don't extend the button to the final newline.
20534 (diary-fancy-display-mode): Continue to define "q" as a local key.
20535
cca065d8
GM
20536 * calendar/cal-china.el (holiday-chinese): Make it slightly more
20537 efficient.
20538
cddaedb6
GM
20539 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
20540
3f12e5bd
GM
20541 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
20542 (byte-compile-dest-file-function): New option.
20543 (byte-compile-dest-file): Doc fix.
20544 Obey byte-compile-dest-file-function.
20545 (byte-compile-cl-file-p): New function.
20546 (byte-compile-eval): Only suppress noruntime warnings about cl functions
20547 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
20548 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
20549 than for file being previously loaded.
20550 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
20551 (byte-compile-file-form-require): Handle the case where requiring a file
20552 indirectly causes CL to be loaded.
20553
049a231b
KF
205542009-09-05 Karl Fogel <kfogel@red-bean.com>
20555
20556 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
20557 before killing the old buffer, since by the time `kill-buffer' is
20558 run so many buffer variables have been set to nil that it may not
20559 behave as expected. (Bug#4061)
20560
ef7ef2a0
KF
205612009-09-05 Karl Fogel <kfogel@red-bean.com>
20562
20563 * files.el (find-alternate-file): If the old buffer is modified
20564 and visiting a file, behave similarly to `kill-buffer' when
20565 killing it, thus reverting to the pre-1.878 behavior; see
20566 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
20567 for discussion. Also, consult `buffer-file-name' as a variable
20568 not as a function, for consistency with the rest of the code.
20569
73d854cd
MA
205702009-09-04 Michael Albinus <michael.albinus@gmx.de>
20571
20572 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
20573 also when adding a new directory.
20574
6a7662bb
BR
20575 * net/tramp-compat.el (tramp-compat-line-beginning-position):
20576 New defun.
73d854cd 20577
df120481
SM
205782009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
20579
20580 * files.el (locate-file-completion-table): Make it provide boundary
20581 information, so partial-completion works better.
20582
c0bc6d79
SM
205832009-09-04 Leo <sdl.web@gmail.com> (tiny change)
20584
20585 * mail/footnote.el (Footnote-text-under-cursor):
20586 Check footnote-text-marker-alist before using it (bug#4324).
20587
f76a9756
GM
205882009-09-04 Glenn Morris <rgm@gnu.org>
20589
67d110f1
GM
20590 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
20591 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
20592 * play/solitaire.el, play/tetris.el:
20593 Remove leading * from defcustom and defface docs.
20594
b42d4989
GM
20595 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
20596 necessary.
20597 (diary-fancy-overriding-map): New variable.
20598 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
20599 Use view-mode.
20600
f76a9756
GM
20601 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
20602 goto-line.
20603
e605eeeb
GM
206042009-09-03 Glenn Morris <rgm@gnu.org>
20605
597e2240
GM
20606 * arc-mode.el (archive-mode):
20607 * dos-fns.el (set-default-process-coding-system):
20608 * man.el (Man-getpage-in-background):
20609 * menu-bar.el (menu-bar-describe-menu):
20610 * server.el (server-process-filter):
20611 * startup.el (command-line):
20612 * tar-mode.el (tar-header-block-tokenize, tar-extract):
20613 * w32-fns.el (set-default-process-coding-system):
20614 * x-dnd.el (x-dnd-handle-file-name):
20615 * international/mule-cmds.el (mule-menu-keymap)
20616 (set-default-coding-systems, language-info-alist, set-language-info)
20617 (set-language-environment, standard-display-european-internal)
20618 (set-locale-environment):
20619 * international/mule-diag.el (mule-diag):
20620 * mail/emacsbug.el (report-emacs-bug):
20621 * mail/rmail.el (rmail-mode):
20622 * mail/sendmail.el (mail-setup):
20623 Use default-value rather than default-enable-multibyte-characters.
20624
f38184aa
GM
20625 * progmodes/f90.el: Move all safe properties into the defcustoms.
20626 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
20627
e605eeeb
GM
20628 * calendar/appt.el (appt-check):
20629 * calendar/diary-lib.el (diary-set-header, diary-live-p)
20630 (diary-check-diary-file, diary-list-entries)
20631 (diary-include-other-diary-files, diary-simple-display)
20632 (diary-fancy-display, diary-print-entries)
20633 (diary-mark-included-diary-files, diary-make-entry):
20634 Don't call substitute-in-file-name on diary-file.
20635
734db384 206362009-09-03 Eduard Wiebe <usenet@pusto.de>
4e2af782 20637 Stefan Monnier <monnier@iro.umontreal.ca>
734db384
SM
20638
20639 * mail/footnote.el (footnote-prefix): Make it a defcustom.
20640 (footnote-mode-map): Move initialization into the declaration.
20641 (footnote-minor-mode-map): Define it rather than changing global-map.
20642 (footnote-mode): Use define-minor-mode.
20643
e5aa47f9
MA
206442009-09-02 Michael Albinus <michael.albinus@gmx.de>
20645
20646 * net/tramp.el (tramp-handle-file-attributes-with-ls)
20647 (tramp-do-file-attributes-with-perl)
20648 (tramp-do-file-attributes-with-stat): Rename from
20649 `tramp-handle-file-attributes-with-*'.
20650 (tramp-handle-file-attributes): Use them.
20651 (tramp-do-directory-files-and-attributes-with-perl)
20652 (tramp-do-directory-files-and-attributes-with-stat): Rename from
20653 `tramp-handle-directory-files-and-attributes-with-*'.
20654 (tramp-handle-directory-files-and-attributes): Use them.
20655 (tramp-method-out-of-band-p): Additional parameter SIZE.
20656 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
20657 (tramp-handle-write-region): Use it.
734db384 20658 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
e5aa47f9
MA
20659 (tramp-handle-vc-registered): Check, whether the first run did
20660 return files to be tested.
20661 (tramp-advice-make-auto-save-file-name): Do not call directly
20662 `tramp-handle-make-auto-save-file-name', because this would bypass
20663 the locking mechanism.
20664
734db384 20665 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
e5aa47f9
MA
20666 (file-remote-p, process-file, start-file-process, set-file-times)
20667 (tramp-compat-file-attributes): Compatibility functions shall not
20668 call directly `tramp-handle-*', because this would bypass the
20669 locking mechanism.
20670 (tramp-compat-number-sequence): New defun.
20671
6e2ca895
GM
206722009-09-02 Glenn Morris <rgm@gnu.org>
20673
697c7714
GM
20674 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
20675 alias for float-time.
20676 (time-to-number-of-days): In Emacs, use float-time.
20677 * net/newst-backend.el (time-add): Suppress warnings from compat
20678 function.
20679 * time.el (emacs-uptime, emacs-init-time):
20680 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
20681 Use float-time rather than time-to-seconds.
20682
6e2ca895
GM
20683 * minibuffer.el (completion-initials-expand): Fix typo.
20684
20685 * faces.el (modeline, modeline-inactive, modeline-highlight)
20686 (modeline-buffer-id):
20687 * info.el (info-menu-5): Mark these face aliases as obsolete.
20688
ed17efec
NR
206892009-09-01 Nick Roberts <nickrob@snap.net.nz>
20690
20691 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
20692 space ...
20693 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
20694 no "--thread" option.
20695 (gdb-stopped): Don't print "Switched to thread" message when it is
20696 unchanged.
20697
fcb68f70
SM
206982009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
20699
20700 * minibuffer.el (completion-try-completion)
20701 (completion-all-completions): Remove ill-defined (and
20702 mistakenly installed and luckily never used nor documented)
20703 `completion-styles' property.
20704 (completion-initials-expand, completion-initials-all-completions)
20705 (completion-initials-try-completion): New functions.
20706 (completion-styles-alist): Add doc to each entry.
20707 Add new `initials' entry.
20708
83318a6d
NR
207092009-09-01 Nick Roberts <nickrob@snap.net.nz>
20710
20711 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
20712 MI command -var-evaluate-expression.
20713 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
20714 and tweak for case of string child.
734db384 20715 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
83318a6d 20716
d63eb0e7
GM
207172009-09-01 Glenn Morris <rgm@gnu.org>
20718
c4f6e489
GM
20719 * add-log.el (change-log-date-face, change-log-name-face)
20720 (change-log-email-face, change-log-file-face, change-log-list-face)
20721 (change-log-conditionals-face, change-log-function-face)
20722 (change-log-acknowledgement-face):
20723 * cus-edit.el (custom-invalid-face, custom-rogue-face)
20724 (custom-modified-face, custom-set-face, custom-changed-face)
20725 (custom-saved-face, custom-button-face, custom-button-pressed-face)
20726 (custom-documentation-face, custom-state-face, custom-comment-face)
20727 (custom-comment-tag-face, custom-variable-tag-face)
20728 (custom-variable-button-face, custom-face-tag-face)
20729 (custom-group-tag-face-1, custom-group-tag-face):
20730 * diff-mode.el (diff-header-face, diff-file-header-face)
20731 (diff-index-face, diff-hunk-header-face, diff-removed-face)
20732 (diff-added-face, diff-changed-face, diff-function-face)
20733 (diff-context-face, diff-nonexistent-face):
20734 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
20735 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
20736 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
20737 (Info-title-4-face):
20738 * isearch.el (isearch-lazy-highlight-face):
20739 * log-view.el (log-view-file-face, log-view-message-face):
20740 * paren.el (show-paren-match-face, show-paren-mismatch-face):
20741 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
20742 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
20743 (cvs-msg-face):
20744 * smerge-mode.el (smerge-mine-face, smerge-other-face)
20745 (smerge-base-face, smerge-markers-face):
20746 * wid-edit.el (widget-documentation-face, widget-button-face)
20747 (widget-field-face, widget-single-line-field-face)
20748 (widget-inactive-face, widget-button-pressed-face):
20749 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
20750 (woman-addition-face):
2fb1ec93
GM
20751 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
20752 (eshell-ls-executable-face, eshell-ls-readonly-face)
20753 (eshell-ls-unreadable-face, eshell-ls-special-face)
20754 (eshell-ls-missing-face, eshell-ls-archive-face)
20755 (eshell-ls-backup-face, eshell-ls-product-face)
20756 (eshell-ls-clutter-face):
20757 * eshell/em-prompt.el (eshell-prompt-face):
20758 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
c4f6e489 20759 * obsolete/old-whitespace.el (whitespace-highlight-face):
0142e36b
GM
20760 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
20761 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
20762 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
20763 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
20764 (antlr-font-lock-literal-face):
c4f6e489
GM
20765 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
20766 (ebrowse-root-class-face, ebrowse-file-name-face)
20767 (ebrowse-default-face, ebrowse-member-attribute-face)
20768 (ebrowse-member-class-face, ebrowse-progress-face):
20769 * progmodes/make-mode.el (makefile-space-face):
20770 * progmodes/sh-script.el (sh-heredoc-face):
20771 * textmodes/flyspell.el (flyspell-incorrect-face)
20772 (flyspell-duplicate-face):
20773 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
49c539a1 20774 * textmodes/texinfo.el (texinfo-heading-face):
c4f6e489
GM
20775 Mark face aliases with "-face" suffix as obsolete.
20776
d80619fa
GM
20777 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
20778 compiler.
20779
5f68c1b7
GM
20780 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
20781 (eudc-bob-sound-menu): Use defvar rather than defconst, since
20782 easy-menu-define wants to modify these.
20783
20784 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
20785
20786 * net/browse-url.el (browse-url-file-url):
20787 * term/internal.el (dos-codepage-setup):
20788 Use default-value rather than default-enable-multibyte-characters.
20789
d80619fa 20790 * progmodes/etags.el (etags-goto-tag-location):
5f68c1b7
GM
20791 * progmodes/flymake.el (flymake-highlight-line)
20792 (flymake-goto-file-and-line, flymake-goto-line):
20793 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
20794 (gdb-goto-breakpoint):
20795 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
20796 * progmodes/python.el (python-find-function)
20797 (python-pdbtrack-track-stack-file):
20798 * progmodes/verilog-mode.el (verilog-surelint-off):
20799 * term/ns-win.el (ns-open-file-select-line):
20800 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
20801 Use forward-line rather than goto-line.
20802
d63eb0e7
GM
20803 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
20804 * textmodes/reftex-index.el (reftex-display-index):
20805 * textmodes/reftex-ref.el (reftex-offer-label-menu):
20806 * textmodes/reftex-toc.el (reftex-toc):
20807 Remove unnecessary bindings of default-major-mode (all are followed by
20808 major-mode check and possible mode switch).
20809
0afad278
NR
208102009-08-31 Nick Roberts <nickrob@snap.net.nz>
20811
20812 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
20813 Handle watchpoints (bug#4282).
20814 (def-gdb-thread-buffer-command): Enable thread to be selected by
20815 clicking without selecting threads buffer first.
20816 (gdb-current-context-command): Use selected frame so that "up",
20817 "down" etc work in the GUD buffer.
20818 (gdb-update): Find selected frame before rendering stack buffer.
20819 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
20820
4e135dd2
SM
208212009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
20822
20823 * progmodes/sym-comp.el (displayed-completions): Remove.
20824 (symbol-complete): Use minibuffer-complete.
20825
e61eba34
GM
208262009-08-31 Glenn Morris <rgm@gnu.org>
20827
20828 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
20829
734db384
SM
20830 * apropos.el (apropos-symbols-internal):
20831 Handle (obsolete) face aliases.
e61eba34
GM
20832
20833 * faces.el (describe-face): Adjust the output format to be more like
20834 describe-variable, and to mention (obsolete) face aliases.
20835 Adjust the whitespace so that help-setup-xref works.
20836
20837 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
20838 * calendar/diary-lib.el (diary-button-face):
20839 Mark these face aliases as obsolete.
20840
20841 * calendar/calendar.el (calendar-today): Doc fix.
20842
4cf71456
NR
208432009-08-31 Nick Roberts <nickrob@snap.net.nz>
20844
20845 * progmodes/gdb-mi.el (gdb-control-all-threads)
20846 (gdb-control-current-thread): Force tool bar update.
20847 (gdb-non-stop-handler): New function.
20848 (gdb-init-1): Use it to test if non-stop mode is supported.
20849 Remove unused gdbmi buffer type.
20850
e61eba34 208512009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
6830f449
JL
20852
20853 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
7ae62430 20854 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
6830f449 20855
4324f7ca
NR
208562009-08-30 Nick Roberts <nickrob@snap.net.nz>
20857
20858 * comint.el (comint-exec-1): Check command is non-null first.
20859 Part of gdb-mi.el change (2009-08-28).
20860
a1bf889a
SM
208612009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
20862
20863 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
20864
060c08b5
JB
208652009-08-30 Juanma Barranquero <lekktu@gmail.com>
20866
20867 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
20868 instead of `dolist' to avoid a recursive require when bootstrapping.
20869
ab22be48
SM
208702009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
20871
73ebf88f
SM
20872 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
20873
80629cfc
SM
20874 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
20875
206d0387 20876 * net/imap.el (imap-send-command): Simplify.
734db384 20877 (imap-wait-for-tag): point-max -> buffer-size.
206d0387 20878
844f7784
SM
20879 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
20880
5ca4661e
SM
20881 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
20882 with constant argument.
20883
c61dc887
SM
20884 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
20885
7eb73deb
SM
20886 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
20887
5fe443de
SM
20888 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
20889 Change default, since most of our files don't have a history.
20890 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
20891 the user.
20892
6444d64a
SM
20893 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20894 Add comint-run.
20895
5cb16bfc
SM
20896 * calc/calc.el: Improve commenting convention.
20897 (calc-digit-map, toplevel): Simplify.
20898
0aeb71a7
SM
20899 * comint.el (comint-insert-input): Be careful to only set point if we
20900 don't delegate to some other command.
20901
9a9af856
SM
20902 * proced.el (proced-signal-list): Make it an alist.
20903 (proced-grammar-alist): Capitalize names.
20904 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
20905 Disable undo manually and make it read-only.
20906 Use completion-annotate-function.
20907
ab22be48
SM
20908 * minibuffer.el (minibuffer-message): If the current buffer is not
20909 a minibuffer, insert the message in the echo area rather than at the
20910 end of the buffer.
20911 (completion-annotate-function): New variable.
20912 (minibuffer-completion-help): Use it.
20913 (completion--embedded-envvar-table): Environment vars are
20914 always case-sensitive.
20915
4a948dbf
GM
209162009-08-30 Glenn Morris <rgm@gnu.org>
20917
20918 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
20919 from fortran-current-defun.
20920 (fortran-beginning-of-subprogram): Be more precise about finding the
20921 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
20922 (fortran-end-of-subprogram): Simplify.
20923 (fortran-current-defun): Use fortran-start-prog-re.
20924
486cf3b8
JB
209252009-08-29 Juanma Barranquero <lekktu@gmail.com>
20926
20927 * subr.el (do-after-load-evaluation): Simplify.
20928
db167d28
DN
209292009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
20930
20931 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
20932
20933 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
20934 (vc-rcs-print-log): Use it.
20935
20936 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
20937
efbc652a
SM
209382009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
20939
2aa0e5bf
SM
20940 * paths.el (abbrev-file-name): Move to abbrev.el.
20941 * abbrev.el (abbrev-file-name): Move from paths.el.
20942 Obey user-emacs-directory.
20943 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
20944 user-emacs-directory.
20945 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
20946 abbrev-file-name and calc-settings-file any more.
20947 * startup.el (command-line): Recompute abbrev-file-name and
20948 abbreviated-home-dir.
20949 (normal-no-mouse-startup-screen): Improve the generic code and get rid
20950 of the special code for when C-h bindings haven't been changed.
20951 (display-startup-echo-area-message): Use with-current-buffer.
20952 (command-line-1): Use a list of strings, rather than a list of lists
20953 of strings for longopts.
20954
51da8fe2
SM
20955 * files.el (get-free-disk-space): Use / for default-directory.
20956
0c3cc4dd
SM
20957 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
20958 Use with-current-buffer.
20959
d988dbf6
SM
20960 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
20961 Recognize immutable variables like most-positive-fixnum.
20962 (byte-compile-setq-default): Check and warn if trying to assign
20963 to an immutable variable, or a non-variable.
20964
efbc652a
SM
20965 * progmodes/cc-vars.el (c-comment-continuation-stars):
20966 * progmodes/cc-engine.el (c-looking-at-bos):
20967 * progmodes/cc-cmds.el (c-toggle-auto-state)
20968 (c-forward-into-nomenclature, c-backward-into-nomenclature)
20969 (c-comment-line-break-function): Add version of obsolescence.
20970
d30a05d1
JL
209712009-08-28 Juri Linkov <juri@jurta.org>
20972
20973 * files.el (magic-fallback-mode-alist): Add ZIP magic number
20974 associated with `archive-mode'.
20975
20976 * image.el (image-type-header-regexps): Use only JPEG magic number
20977 to determine JPEG images, and don't use `image-jpeg-p' because
20978 Emacs can display non-JFIF non-Exif JPEG images.
20979
1e8eecea
JB
209802009-08-28 Juanma Barranquero <lekktu@gmail.com>
20981
20982 * arc-mode.el (archive-mode):
20983 * emacs-lisp/re-builder.el (re-builder-unload-function):
20984 Protect against the default value of `major-mode' being nil.
20985
dd4fbf56
JB
209862009-08-28 Juanma Barranquero <lekktu@gmail.com>
20987
20988 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
20989 Fix typos in docstrings.
20990
20991 * progmodes/js.el (js--macro-decl-re): Doc fix.
20992 (js--plain-method-re, js--split-name): Refloc docstring.
20993 (js--class-styles, js--make-merged-item, js--splice-into-items):
20994 Fix typos in docstrings; reflow docstrings.
20995 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
20996 (js--variable-decl-matcher, js--inside-pitem-p)
20997 (js--parse-state-at-point, js--get-all-known-symbols)
20998 (js--symbol-history, js-find-symbol, js--js-references)
20999 (js--moz-interactor, js--js-encode-value, js--read-tab):
21000 Fix typos in docstrings.
21001
72f16325
SM
210022009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
21003
14acf2f5
SM
21004 * textmodes/reftex.el (reftex-get-file-buffer-force):
21005 * progmodes/verilog-mode.el (verilog-batch-execute-func):
21006 * emulation/viper.el (viper-go-away, viper-set-hooks):
21007 * emacs-lisp/re-builder.el (re-builder-unload-function):
21008 * emacs-lisp/bytecomp.el (byte-compile-file):
21009 * ses.el (ses-unload-function):
21010 * hexl.el (hexl-find-file):
21011 * files.el (normal-mode):
21012 * ehelp.el (with-electric-help):
21013 * autoinsert.el (auto-insert-alist):
21014 * arc-mode.el (archive-mode):
21015 Use (default-value 'major-mode) instead of default-major-mode.
21016
72f16325
SM
21017 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
21018 * international/mule.el (load-with-code-conversion):
21019 * emacs-lisp/debug.el (debug):
21020 * ediff-vers.el (ediff-rcs-get-output-buffer):
21021 * dired.el (dired-internal-noselect): Don't let-bind
21022 default-major-mode around code that doesn't use it.
21023 E.g. buffer creation via get-buffer-create doesn't use it.
21024
aa485f7c
MA
210252009-08-28 Michael Albinus <michael.albinus@gmx.de>
21026
21027 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
21028 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
21029 when writing the temp file. Otherwise, epa-file gets confused.
21030 (tramp-register-file-name-handlers): Make it a defun. Move also
21031 `epa-file-handler' to the front of `file-name-handler-alist'.
21032
210332009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
21034
21035 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
21036 start right after a ^M.
21037 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
21038 (tramp-completion-file-name-regexp-separate)
21039 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
72f16325
SM
21040 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
21041 Don't modify last-coding-system-used by accident.
aa485f7c
MA
21042 (tramp-completion-file-name-handler): Apply the checks here,
21043 instead during registration.
88b5a757 21044 (tramp-register-file-name-handlers): Rename from
aa485f7c
MA
21045 `tramp-register-file-name-handler'. Register both
21046 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
72f16325 21047 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
aa485f7c 21048
3f0c2b92
NR
210492009-08-28 Nick Roberts <nickrob@snap.net.nz>
21050
72f16325
SM
21051 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
21052 Remove variable ...
3f0c2b92
NR
21053 (gdb-init-1, gdb-display-separate-io-buffer)
21054 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
21055 references to it.
21056 (gdb-inferior-io-mode): Use make-comint-in-buffer.
21057 (gdb-inferior-filter): Use comint-output-filter to stop
21058 echoing and remove ^M characters.
21059
705e5bd9
SM
210602009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
21061
009fdc2e
SM
21062 * emulation/viper-init.el (viper-restore-cursor-type):
21063 * emulation/cua-base.el (cua--update-indications):
21064 Replace default-cursor-type with (default-value 'cursor-type).
21065
b56a5ae0
SM
21066 * mail/sendmail.el (mail-recover-1):
21067 * international/mule-diag.el (describe-current-coding-system-briefly)
21068 (describe-current-coding-system):
21069 * international/mule-cmds.el (select-safe-coding-system)
21070 (select-message-coding-system)
21071 (set-language-environment-coding-systems, set-locale-environment):
21072 * hexl.el (hexl-insert-multibyte-char):
21073 * dos-w32.el (find-buffer-file-type-coding-system):
21074 * simple.el (what-cursor-position):
21075 Replace uses of default-buffer-file-coding-system
21076 with (default-value 'buffer-file-coding-system).
21077
de70529f
SM
21078 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
21079 Replace uses of default-cursor-in-non-selected-windows
21080 with (default-value 'cursor-in-non-selected-windows).
21081 Use with-current-buffer.
21082
705e5bd9
SM
21083 * mail/feedmail.el: Use CL macros.
21084 (feedmail-run-the-queue, feedmail-send-it-immediately):
21085 * dos-w32.el (find-buffer-file-type): Replace uses of
21086 default-buffer-file-type with (default-value 'buffer-file-type).
21087
4d985ac2
GM
210882009-08-28 Glenn Morris <rgm@gnu.org>
21089
21090 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
21091 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
21092 Use default-value of major-mode rather than default-major-mode.
21093
17c15b81
SM
210942009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
21095
3a68ab06
SM
21096 * Makefile.in (update-elcfiles): Report left over elc files.
21097
9421bdd1
SM
21098 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
21099 expand-file-name and with-current-buffer.
21100 (mail-get-names, mail-directory): Use with-current-buffer.
21101
17c15b81
SM
21102 * vc.el (vc-read-revision): New function.
21103 (vc-version-diff, vc-merge): Use it.
21104
ba83a64e
SS
211052009-08-27 Sam Steingold <sds@gnu.org>
21106
21107 * simple.el (kill-do-not-save-duplicates): New user option.
21108 (kill-new): When it is non-nil, and the new string is the same as
21109 the latest kill, set replace to t to avoid duplicates in kill-ring.
21110
be3e598a 211112009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
d5b5c94a
MA
21112
21113 * net/tramp.el (tramp-handle-process-file): Do not flush all
21114 caches when `process-file-side-effects' is set.
21115 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
17c15b81
SM
21116 instead of `tramp-find-file-exists-command'.
21117 Unset `process-file-side-effects'.
d5b5c94a
MA
21118
211192009-08-27 Michael Albinus <michael.albinus@gmx.de>
21120
21121 * net/tramp.el (tramp-methods): New method "rsyncc".
21122 (top): Add completion function for "rsyncc".
21123 (tramp-message-show-message): New defvar.
21124 (tramp-message, tramp-error): Use it.
21125 (tramp-do-copy-or-rename-file-directly): Extend check for direct
21126 remote copying.
21127 (tramp-do-copy-or-rename-file-out-of-band): Handle new
21128 `tramp-methods' entry `copy-env' of "rsyncc".
21129 (tramp-vc-registered-read-file-names): New defconst.
21130 (tramp-vc-registered-file-names): New defvar.
21131 (tramp-handle-vc-registered): Implement optimization strategy.
21132 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
21133 (tramp-vc-file-name-handler): New defun.
21134 (tramp-get-ls-command, tramp-get-test-command)
21135 (tramp-get-file-exists-command, tramp-get-remote-ln)
21136 (tramp-get-remote-perl, tramp-get-remote-stat)
17c15b81 21137 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
d5b5c94a
MA
21138
21139 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
21140 (tramp-cache-inhibit-cache): Extend doc string. It allows also
21141 timestamps.
21142 (tramp-get-file-property): Check for timestamps in
21143 `tramp-cache-inhibit-cache'.
21144 (tramp-set-file-property): Write timestamp.
21145
1339cf20
KH
211462009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
21147
21148 * language/japan-util.el (japanese-symbol-table): Add entries for
21149 cp932-2-byte.
21150
21151 * international/characters.el: Add category `j' to cp932-2-byte.
21152
726e3f1d
KH
211532009-08-27 Kenichi Handa <handa@m17n.org>
21154
21155 * international/fontset.el (build-default-fontset-data): New macro.
21156 (setup-default-fontset): Use build-default-fontset-data for CJK,
7b6fefac 21157 tibetan, ethiopic, and ipa.
726e3f1d 21158
4e3b4528
SM
211592009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
21160
21161 * cus-start.el (default-major-mode): Customize `major-mode' instead.
21162 (enable-multibyte-characters): Not customizable any more.
21163
21164 * subr.el (default-mode-line-format, default-header-line-format)
21165 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
21166 (default-direction-reversed, default-truncate-lines)
21167 (default-left-margin, default-tab-width, default-case-fold-search)
21168 (default-left-margin-width, default-right-margin-width)
21169 (default-left-fringe-width, default-right-fringe-width)
21170 (default-fringes-outside-margins, default-scroll-bar-width)
21171 (default-vertical-scroll-bar, default-indicate-empty-lines)
21172 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
21173 (default-fringe-cursor-alist, default-scroll-up-aggressively)
21174 (default-scroll-down-aggressively, default-fill-column)
21175 (default-cursor-type, default-buffer-file-type)
21176 (default-cursor-in-non-selected-windows)
21177 (default-buffer-file-coding-system, default-major-mode)
21178 (default-enable-multibyte-characters): Mark as obsolete.
21179
b3cca6a6
DN
211802009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
21181
652cc1a2
DN
21182 * vc-dir.el (vc-dir-update): Remove debug helper.
21183
b3cca6a6
DN
21184 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
21185
4ed8c7aa
SS
211862009-08-26 Sam Steingold <sds@gnu.org>
21187
21188 * simple.el (save-interprogram-paste-before-kill): New user option.
21189 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
21190 save the interprogram-paste into kill-ring before overriding it
21191 with the Emacs kill.
21192
3b64d86b
DN
211932009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
21194
21195 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
21196 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
21197 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
21198 and move to vc-rcs.el.
21199 (vc-default-next-revision): Rename to vc-rcs-next-revision and
21200 move to vc-rcs.el.
21201 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
21202 (vc-rcs-update-changelog): Remove.
21203 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
21204 and move to vc-rcs.el.
21205
21206 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
21207 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
21208 renaming.
21209 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
72f16325 21210 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
3b64d86b
DN
21211 vc.el, renamed to be RCS specific.
21212
72f16325
SM
21213 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
21214 New functions.
21215 (vc-cvs-update-changelog): Move here from vc.el.
3b64d86b
DN
21216
21217 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
21218 New functions.
21219
636a36a0
SM
212202009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
21221
21222 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
21223
239b3340
DN
212242009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
21225
b91f0762 21226 * vc-git.el (vc-git-register): Use "git add" for directories.
2ddf440d
DN
21227 (vc-git-stash, vc-git-stash-show): New functions.
21228 (vc-git-extra-menu-map): Bind them.
b91f0762 21229
b8e54362
DN
21230 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
21231 directory correctly in case the item is a directory itself.
21232
239b3340
DN
21233 * vc.el: Document the desired behavior for reverted files in the
21234 `added' state.
dc810649
DN
21235 (vc-default-prettify-state-info): Remove function, unused.
21236
21237 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
239b3340 21238
e49c0179
GM
212392009-08-26 Glenn Morris <rgm@gnu.org>
21240
21241 * bindings.el (standard-mode-line-format): Reposition dashes in
21242 which-func entry. (Bug#4217)
21243
3029e594
GM
21244 * files.el (enable-local-variables, enable-local-eval)
21245 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
21246 the defcustoms.
21247 (auto-mode-alist, ignored-local-variables)
21248 (save-some-buffers-action-alist): Move risky declarations to the
21249 definitions.
21250 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
21251 (font-lock-defaults, format-alist, imenu--index-alist)
21252 (imenu-generic-expression, input-method-alist, minor-mode-alist)
21253 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
21254 (mode-line-modified, mode-line-mule-info, mode-line-position)
21255 (mode-line-process, mode-line-remote, outline-level)
21256 (parse-time-rules, rmail-output-file-alist)
21257 (special-display-buffer-names, vc-mode):
21258 Move risky declarations to the relevant files.
72f16325
SM
21259 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
21260 (mode-line-modified, mode-line-process, mode-line-position)
3029e594
GM
21261 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
21262 * font-core.el (font-lock-defaults):
21263 * format.el (format-alist):
21264 * vc-hooks.el (vc-mode):
21265 * window.el (special-display-buffer-names):
21266 * international/mule-cmds.el (input-method-alist):
21267 Define riskiness here (dumped file) rather than in files.el.
21268 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
21269 * imenu.el (imenu-generic-expression, imenu--index-alist):
21270 * outline.el (outline-level):
21271 * time.el (display-time-string):
21272 * calendar/parse-time.el (parse-time-rules):
21273 * mail/rmailout.el (rmail-output-file-alist):
21274 Autoload riskiness here, rather than placing in files.el.
21275
8476cfaf
SM
212762009-08-26 Andreas Schwab <schwab@linux-m68k.org>
21277
21278 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
21279
0b35b48e
MA
212802009-08-25 Michael Albinus <michael.albinus@gmx.de>
21281
21282 * simple.el (process-file-side-effects): New defvar.
21283
21284 * dired-aux.el (dired-show-file-type):
21285 * vc.el (vc-diff-internal):
21286 * vc-arch.el (vc-arch-diff):
21287 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
21288 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
21289 * vc-git.el (vc-git-registered, vc-git-working-revision)
21290 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
21291 (vc-git--empty-db-p):
21292 * vc-hooks.el (vc-user-login-name):
21293 * vc-svn.el (vc-svn-registered, vc-svn-state)
21294 (vc-svn-dir-extra-headers, vc-svn-find-revision):
21295 * progmodes/grep.el (grep-probe): Let-bind
21296 `process-file-side-effects' with nil.
21297
21298 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
21299
21300 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
21301 daemon. Replace ping by checking for running service for bluez
21302 and zeroconf. (Bug#4239)
21303
d54cc599
GM
213042009-08-25 Kevin Ryde <user42@zip.com.au>
21305
21306 * net/dig.el (dig): Add autoload cookie.
21307
7bfd055d
GM
213082009-08-25 Glenn Morris <rgm@gnu.org>
21309
bac9c66c
GM
21310 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
21311 load-history for absolute file-names.
21312 (byte-compile-file-form-require): Warn about use of the cl package.
21313
7bfd055d
GM
21314 * format.el (format-alist): Doc fix.
21315
5ac1f9e0
GM
21316 * play/bubbles.el (top-level): Don't require cl at run-time.
21317
af62aa88
GM
21318 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
21319 run-time cl).
21320
71e036af
DD
213212009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
21322
21323 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
21324 from cl package.
21325 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
21326
42110eaf
JB
213272009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
21328
21329 * calc/calc-alg.el (math-trig-rewrite)
21330 (math-hyperbolic-trig-rewrite): New functions.
21331 (calc-simplify): Simplify trig functions when asked.
21332
88421f3e
SM
213332009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
21334
21335 * diff-mode.el (diff-find-source-location): Avoid goto-line.
21336
dbd9624e
KH
213372009-08-24 Kenichi Handa <handa@m17n.org>
21338
21339 * language/ind-util.el (mapthread): Delete it.
21340 (combinatorial): New function.
21341 (indian--puthash-cv): Use combinatorial instead of mapthread.
21342
9b89e3ee
GM
213432009-08-22 Kevin Ryde <user42@zip.com.au>
21344
21345 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
21346 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
21347 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
21348 Clarify docstring that the value is strings not symbols.
21349 (checkdoc-list-of-strings-p): New function.
21350
e6ce8c42
GM
213512009-08-22 Glenn Morris <rgm@gnu.org>
21352
2ddf2ea6 21353 * files.el (auto-mode-alist):
a3374680
GM
21354 * hippie-exp.el (he-concat-directory-file-name):
21355 * lpr.el (lpr-windows-system, printer-name):
21356 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
21357 * ps-print.el (ps-windows-system):
21358 * startup.el (command-line):
21359 * emulation/viper-ex.el (viper-glob-function):
21360 * international/mule-cmds.el (set-language-environment-coding-systems):
21361 * net/ange-ftp.el (ange-ftp-write-region):
21362 * obsolete/fast-lock.el (fast-lock-cache-name):
2ddf2ea6 21363 Remove code for defunct system-types emx, macos, mswindows, next-mach,
a3374680
GM
21364 unisoft-unix, vax-vms, win32, w32.
21365
977955fa
GM
21366 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
21367 given name if the pattern is not more specific.
21368
b4deec2e
GM
21369 * calendar/lunar.el (lunar-phase-names): New option.
21370 (lunar-phase): Doc fix.
21371 (lunar-cycles-per-year): New constant.
21372 (lunar-index): New function.
21373 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
21374 (lunar-phase-name): Use lunar-phase-names.
21375 (calendar-lunar-phases): Use format.
21376 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
21377
47e83968
GM
21378 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
21379 Copy imenu-example--name-and-position function here for own use.
21380 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
21381
e6ce8c42
GM
21382 * bs.el (bs--redisplay):
21383 * cus-edit.el (custom-redraw):
21384 * ibuffer.el (ibuffer-bury-buffer):
21385 * server.el (server-goto-line-column):
21386 * startup.el (command-line-1):
21387 * strokes.el (strokes-xpm-for-stroke):
21388 * term.el (term-display-buffer-line):
21389 * view.el (View-goto-line):
21390 * calc/calc.el (calc-do, calc-trail-buffer):
21391 * play/gamegrid.el (gamegrid-add-score-insecure):
21392 * progmodes/ada-mode.el (ada-compile-goto-error):
21393 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
21394 (ebrowse-select-1st-to-9nth):
47e83968 21395 * progmodes/cperl-mode.el (cperl-time-fontification):
e6ce8c42
GM
21396 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
21397 * progmodes/gud.el (gud-display-line):
21398 (idlwave-shell-display-line):
21399 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
21400 * progmodes/make-mode.el (makefile-browser-toggle):
21401 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
21402 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
21403 * textmodes/picture.el (picture-draw-rectangle):
21404 * textmodes/reftex-index.el (reftex-index-goto-letter):
21405 (reftex-select-jump-to-previous):
21406 * textmodes/reftex-sel.el (reftex-find-start-point)
21407 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
21408 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
21409 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
21410 * textmodes/tex-mode.el (tex-compilation-parse-errors):
21411 * textmodes/two-column.el (2C-associated-buffer):
21412 Use forward-line rather than goto-line.
21413
21414 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
21415 goto-line.
21416
4b18bdb3
GM
21417 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
21418 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
21419 (quick-check-list-to-regexp): Declare.
e6ce8c42 21420
72f16325
SM
21421 * progmodes/make-mode.el (makefile-browser-insert-selection):
21422 Use goto-char rather than goto-line.
e6ce8c42
GM
21423
21424 * progmodes/prolog.el (compilation-error-regexp-alist)
21425 (compilation-forget-errors): Declare.
21426
32a2cf25
JL
214272009-08-22 Juri Linkov <juri@jurta.org>
21428
21429 * progmodes/grep.el (lgrep, rgrep): At the beginning
21430 set `dir' to `default-directory' unless `dir' is a non-nil
21431 readable directory. (Bug#4052)
21432 (lgrep, rgrep): Change a weird way to report an error
21433 from using `read-string' to using `error'.
21434 Instead of using interactive arguments in the function body,
21435 add new argument `confirm'.
21436
5443c9b7
SM
214372009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
21438
cb5b40ee
SM
21439 * textmodes/remember.el (remember-buffer):
21440 * progmodes/cperl-mode.el (cperl-vc-header-alist):
21441 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
21442 (icalendar-extract-ical-from-buffer):
5443c9b7
SM
21443 * net/newst-treeview.el (newsticker-groups-filename):
21444 * net/newst-backend.el (newsticker-cache-filename):
21445 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
21446 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
21447 (speedbar-add-ignored-path-regexp, speedbar-line-path)
21448 (speedbar-buffers-line-path, speedbar-path-line)
21449 (speedbar-buffers-line-path):
21450 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
21451 (epg-sign-keys):
21452 * epa.el (epa-display-verify-result):
21453 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
21454
d6261cc1
GM
214552009-08-21 Glenn Morris <rgm@gnu.org>
21456
3e1ea342
GM
21457 * progmodes/js.el (inferior-moz-process): Fix declaration.
21458
ce86eeb5
GM
21459 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
21460
fff28970
GM
21461 * obsolete/rnewspost.el (news-mail-reply):
21462 Use goto-char rather than goto-line.
21463
d93e053b
GM
21464 * term/ns-win.el (ns-open-file-select-line):
21465 Use line-beginning-position rather than goto-line.
21466
d5d105e8
GM
21467 * apropos.el (apropos-command):
21468 * ehelp.el (electric-helpify):
21469 * printing.el (pr-show-setup):
21470 * strokes.el (strokes-help):
21471 * tutorial.el (tutorial--describe-nonstandard-key)
21472 (tutorial--detailed-help):
21473 * woman.el (woman-mini-help, woman-display-extended-fonts):
21474 * calc/calc-help.el (calc-describe-key):
21475 * emulation/edt.el (edt-electric-helpify):
21476 * international/mule-diag.el (mule-diag):
21477 * play/yow.el (apropos-zippy):
21478 * progmodes/python.el (python-describe-symbol):
21479 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
21480 * textmodes/table.el (*table--cell-describe-mode)
21481 (*table--cell-describe-bindings):
21482 Use help-print-return-message rather than the now obsolete alias.
21483
a8ab722f 21484 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
9b4c5ecd
GM
21485 (calendar-cursor-to-visible-date):
21486 * play/5x5.el (5x5-position-cursor):
21487 * play/decipher.el (decipher):
21488 * play/gomoku.el (gomoku-goto-xy):
21489 * play/landmark.el (lm-goto-xy):
21490 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
21491 (mpuz-paint-digit):
21492 Use forward-line, not goto-line.
a8ab722f 21493
d6261cc1
GM
21494 * mail/rmail.el (rmail-obsolete): Delete custom group.
21495 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
21496 (rmail-remote-password, rmail-remote-password-required):
21497 Remove unneeded :set-after and :set properties.
21498
9e846523
MA
214992009-08-21 Michael Albinus <michael.albinus@gmx.de>
21500
21501 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
21502
bbe1f502
DN
215032009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
21504
bcc5db24
DN
21505 * loadup.el: Remove leftover macos code.
21506
bbe1f502
DN
21507 * vc-git.el (vc-git-annotate-command): Run asynchronously.
21508 Explicitly pass the date format to git blame so that user local
21509 so that the output format can be parsed.
21510
6fd2d19a
MA
215112009-08-20 Michael Albinus <michael.albinus@gmx.de>
21512
21513 * net/dbus.el (top): Don't check for (getenv
21514 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
21515
31764e15
SM
215162009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
21517
21518 * log-edit.el (log-edit-strip-single-file-name): New var.
01c35094 21519 (log-edit-insert-changelog): Use it. Bug#3571.
31764e15 21520
28930e39
SM
215212009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
21522
4fd15622 21523 * subr.el (read-passwd): Use read-key so keypad keys work as well.
01c35094 21524 Bug#3287.
4fd15622 21525
b3d8e4a0
SM
21526 * help.el (help-print-return-message): Rename from
21527 print-help-return-message.
21528
c9829c70
SM
21529 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
21530 cvs-mode-map parent hack.
21531 (log-view-mode): Derive from special-mode.
21532
b932657b
SM
21533 * linum.el (linum-mode): window-size-change-functions is redundant.
21534 Adapt to new window-configuration-change-hook behavior.
21535 (linum-after-size, linum-after-config): Remove.
21536
1b700bca
SM
21537 * imenu.el (imenu-example--name-and-position)
21538 (imenu-example--lisp-extract-index-name)
21539 (imenu-example--create-lisp-index, imenu-example--create-c-index):
21540 Mark as obsolete.
21541
28930e39
SM
21542 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
21543 (inferior-prolog-mode): Use it.
21544 (inferior-prolog-load-file): Reset list of errors.
21545
c9af0b68
KH
215462009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
21547
21548 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
21549
21550 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
21551
720c7cd6
MA
215522009-08-19 Michael Albinus <michael.albinus@gmx.de>
21553
21554 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
21555 is running already.
21556
03a74b84
SM
215572009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
21558
21559 * subr.el (listify-key-sequence-1): Use normal syntax since those
21560 integers are nowadays always represented by the same (positive) number
21561 on all platforms.
21562 (read-key-empty-map): New const.
21563 (read-key-delay): New var.
21564 (read-key): New function.
21565 (force-mode-line-update): Use with-current-buffer.
21566 (locate-user-emacs-file): Don't forget to abbreviate the file name.
21567 (start-process-shell-command, start-file-process-shell-command):
21568 Discourage the use of command-args.
21569
f43e88d4
GM
215702009-08-19 Glenn Morris <rgm@gnu.org>
21571
21572 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
21573
890429cc
SM
215742009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
21575
85be9ec4
SM
21576 * simple.el (choose-completion-string): Don't rely on
21577 minibuffer-completing-file-name and ad-hoc checks to decide whether
21578 to continue completion or not.
21579
890429cc
SM
21580 * minibuffer.el (minibuffer-hide-completions): New function.
21581 (completion--do-completion): Use it.
21582 (completions-annotations): New face.
21583 (completion--insert-strings): Use it.
21584 (completion-pcm--delim-wild-regex): Add docstring.
21585 (completion-pcm--string->pattern): Add support for 0-width delimiters
21586 in completion-pcm--delim-wild-regex.
21587
265d4549
SM
215882009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
21589
d440b941
SM
21590 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
21591 Remove unused var `buffer-modified-p'.
21592
265d4549
SM
21593 * minibuffer.el (completion--do-completion): Move point for the #b001
21594 case as well (bug#4176).
21595 (minibuffer-complete, minibuffer-complete-word): Don't move point.
21596
ba6f7d86
MA
215972009-08-18 Michael Albinus <michael.albinus@gmx.de>
21598
21599 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
21600 and :session buses.
21601
98819490
KH
216022009-08-18 Kenichi Handa <handa@m17n.org>
21603
265d4549
SM
21604 * international/ucs-normalize.el (ucs-normalize-version):
21605 Change to 1.1.
58627cf0
KH
21606 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
21607 (utf-8-hfs): Make it perform normalization on encoding too.
21608
98819490
KH
21609 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
21610 (sentence-end-without-space): Delete duplicated chars.
21611 (sentence-end-base): Likewise.
e739cc85
KH
21612
21613 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
21614 (html-mode): Delete duplicated chars from sentence-end-base.
21615
21616 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
21617 (texinfo-mode): Delete duplicated chars from sentence-end-base.
98819490 21618
645b9326
CY
216192009-08-17 Chong Yidong <cyd@stupidchicken.com>
21620
21621 * files.el (hack-one-local-variable): If the mode function is for
21622 a minor mode, pass it an argument (Bug#4148).
21623
56c195af
MA
216242009-08-17 Michael Albinus <michael.albinus@gmx.de>
21625
21626 * net/tramp.el (tramp-register-completion-file-name-handler):
21627 Check also for (member 'partial-completion completion-styles).
21628
7a55c78b
CY
216292009-08-16 Chong Yidong <cyd@stupidchicken.com>
21630
21631 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
21632 abbrev (Bug#3943).
21633
be3e598a 216342009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
8c777c8d
CY
21635
21636 * progmodes/cperl-mode.el: Merge upstream 6.2.
21637 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
21638 (cperl-forward-re): Check cperl-brace-recursing.
21639 (cperl-highlight-charclass): New function.
21640 (cperl-find-pods-heres): Use it.
31cd2dd4 21641 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
8c777c8d 21642 (cperl-beautify-regexp-piece): Fix column calculation.
31cd2dd4 21643 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
8c777c8d
CY
21644 (cperl-beautify-level): Don't process entire regexp.
21645 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
21646 calling man.
21647 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
21648 (cperl-init-faces): Build a list in the normal way.
21649
81b1f9c9
CY
216502009-08-16 Chong Yidong <cyd@stupidchicken.com>
21651
21652 * calendar/parse-time.el (parse-time-string-chars): Save match
21653 data.
21654
c3732cb8
SM
216552009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
21656
55659495
SM
21657 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
21658 (sql-product): Use it.
21659 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
21660 (sql-set-product): Add completion.
21661 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
21662 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
21663 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
21664 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
21665 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
21666 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
21667 (sql-highlight-db2-keywords): Remove.
21668 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
21669 (sql-highlight-product): Use derived-mode-p.
21670 (sql-set-sqli-buffer): Use with-current-buffer.
21671 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
21672 Simplify.
21673
1ae79427
SM
21674 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
21675
c3732cb8
SM
21676 * term.el: Fix commenting convention, turn comments into docstrings.
21677
f24b8bf3
CY
216782009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
21679
21680 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
21681
7b6fefac 216822009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
e1bdde78 21683
1200ac26 21684 * calendar/parse-time.el (parse-time-string-chars): Compute using
d0d3f6e9
CY
21685 character classes, to handle non-ascii characters (Bug#3190).
21686
216872009-08-16 Chong Yidong <cyd@stupidchicken.com>
1200ac26 21688
1abbe4e5
CY
21689 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
21690 another heredoc if the user adds another < (Bug#3226).
21691
c3732cb8
SM
21692 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
21693 Don't initialize based on window-system (Bug#4124).
19261da4 21694
daad00fc
CY
21695 * facemenu.el (facemenu-read-color): Use a completion function
21696 that accepts any defined color, such as RGB triplets (Bug#3677).
21697
e1bdde78
CY
21698 * files.el (get-free-disk-space): Change fallback default
21699 directory to /. Expand DIR argument before switching to fallback.
21700 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
21701
9d73a99e
CY
217022009-08-15 Chong Yidong <cyd@stupidchicken.com>
21703
21704 * files.el (load-library): Doc fix.
21705
68b962d4 217062009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
9d73a99e 21707
953e0c1a 21708 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
c3732cb8 21709 (viper-if-string): Redefine C-s in the minibuffer to insert the last
68b962d4 21710 incremental search string.
9d73a99e 21711
c3732cb8 21712 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
68b962d4 21713 XEmacs.
9d73a99e 21714
c3732cb8
SM
21715 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
21716 (ediff-merge-region-is-non-clash)
21717 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
68b962d4 21718 Also check if the job is really a merge job.
9d73a99e 21719
c3732cb8 21720 * ediff.el (ediff-current-file): New function.
9d73a99e 21721
2e330adc
CY
217222009-08-15 Chong Yidong <cyd@stupidchicken.com>
21723
21724 * progmodes/js.el: Edit docstrings throughout to follow Emacs
21725 conventions.
c3732cb8 21726 (js-insert-and-indent): Delete function.
2e330adc
CY
21727 (js-mode-map): Don't bind keys to js-insert-and-indent.
21728 (js-beginning-of-defun): Rename from js--beginning-of-defun.
21729 (js-end-of-defun): Rename from js--end-of-defun.
c3732cb8 21730 (js-auto-indent-flag): Delete variable.
2e330adc 21731
17b5d0f7
CY
217322009-08-14 Chong Yidong <cyd@stupidchicken.com>
21733
c3732cb8
SM
21734 * progmodes/js.el: Remove proclaim statement.
21735 Defvar which-func-imenu-joiner-function to silence compiler.
2e330adc 21736
ba2d8894
CY
21737 * files.el (auto-mode-alist): Use js-mode for .js files.
21738
c3732cb8 21739 * progmodes/js2-mode.el: Remove file.
17b5d0f7
CY
21740
21741 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
21742
21743 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
21744
c3732cb8 21745 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
17b5d0f7
CY
21746
217472009-08-14 Daniel Colascione <dan.colascione@gmail.com>
4e2af782 21748 Karl Landstrom <karl.landstrom@brgeight.se>
17b5d0f7
CY
21749
21750 * progmodes/js.el: New file.
21751
b6377f1d
MH
217522009-08-14 Mark A. Hershberger <mah@everybody.org>
21753
21754 * timezone.el (timezone-parse-date): Add ability to understand ISO
21755 basic format (minimal separators) dates in addition to the
21756 already-supported extended format dates.
21757
bc0eef46
EZ
217582009-08-14 Eli Zaretskii <eliz@gnu.org>
21759
4e021e65
EZ
21760 * international/ucs-normalize.el: Add a `coding' file variable.
21761
bc0eef46
EZ
21762 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
21763
53dab179
SS
217642009-08-14 Sam Steingold <sds@gnu.org>
21765
6801c38a 21766 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
53dab179 21767
6c58c39c
CY
217682009-08-13 Chong Yidong <cyd@stupidchicken.com>
21769
21770 * faces.el (help-argument-name): Define it here instead of
21771 help-fns.el, because in daemon mode help-fns.el may be loaded when
21772 faces are still uninitialized (Bug#1078).
21773
21774 * help-fns.el (help-argument-name): Move defface to faces.el.
21775
c7baf7e9
NR
217762009-08-13 Nick Roberts <nickrob@snap.net.nz>
21777
21778 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
21779 create buffer with a pty but no process so that GDB can make the
21780 inferior the controlling process.
21781
9c40e995 217822009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
d6d30064
KH
21783
21784 * international/ucs-normalize.el: New file.
21785
8cdba32b
RS
217862009-08-13 Richard Stallman <rms@gnu.org>
21787
5c950923
RS
21788 * mail/rmail.el (rmail-get-attr-names):
21789 Accept an attribute header that is too short.
21790
76e1e40b
RS
21791 * mail/rmail.el (rmail-forget-messages):
21792 Ignore nil elt in rmail-message-vector. Use dotimes.
21793
1fc01b08
RS
21794 * progmodes/compile.el (compilation-goto-locus):
21795 Use next-error-move-function.
21796
8cdba32b
RS
21797 * simple.el (next-error-move-function): New variable.
21798
99910cf4
JL
217992009-08-12 Juri Linkov <juri@jurta.org>
21800
21801 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
21802 always non-nil. (Bug#4052)
21803
21804 * replace.el (read-regexp): Return empty string when
21805 `default-value' is nil.
21806 (keep-lines-read-args): Don't use empty string as the
21807 default value for `read-regexp'. (Bug#2495)
21808
fc5bdf6c
JL
218092009-08-12 Juri Linkov <juri@jurta.org>
21810
21811 * international/mule-cmds.el (ucs-insert): Change arguments
21812 from `arg' to `character', `count', `inherit' to be the same
21813 as in `insert-char'. Doc fix. (Bug#4039)
21814
21815 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
21816
77748848
JL
218172009-08-12 Juri Linkov <juri@jurta.org>
21818
21819 * files-x.el: New file.
21820
21821 * files.el: Move code that deals with adding/deleting
21822 file/directory-local variables to files-x.el.
21823
21824 * Makefile.in (ELCFILES): Add files-x.elc.
21825
c8a44c4e
DD
218262009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
21827
27a9fd5a
DD
21828 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
21829 to use `goto-line'.
21830 (gdb-place-breakpoints, gdb-get-location): Rewritten without
21831 `goto-line'.
21832 (gdb-invalidate-disassembly): Do not refresh upon receiving
7b6fefac 21833 'update signal. Instead, update all disassembly buffers only after
27a9fd5a 21834 threads list.
107ef54a 21835 (gdb): Send -target-detach when buffer is killed (Bug#3794).
88b5a757 21836 (gdb-starting): Move -data-list-register-names...
cf6e27cf
DD
21837 (gdb-stopped): ...here so it's sent when first thread stops.
21838 (gdb-registers-handler-custom): Do nothing if register names are
21839 unknown yet.
27a9fd5a 21840
c8a44c4e
DD
21841 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
21842 from `gdb-mi.el' to avoid extra tangling.
21843
21844 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
7b6fefac 21845 change which breaks `gud-def' definitions used in `gdb'.
c8a44c4e
DD
21846 (gdb-update-gud-running): No extra fuss for updating frame number.
21847
dfd4e693
SM
218482009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
21849
51c4341f
SM
21850 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
21851 (describe-language-environment-map, setup-language-environment-map)
21852 (set-coding-system-map): Move initialization into declaration.
21853 (set-language-info-alist): Last arg to define-key-after can be skipped.
21854
21855 * international/quail.el (quail-completion-1): Simplify.
21856 (quail-define-rules): Use slightly more compact code.
21857 (quail-insert-decode-map): Propertize keys, compact columns.
21858
dfd4e693
SM
21859 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
21860 Add goto-line.
21861
83326559
MB
218622009-08-10 Miles Bader <miles@gnu.org>
21863
21864 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
21865 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
21866 (js2-instance-member, js2-private-member, js2-private-function-call)
21867 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
21868 (js2-magic-paren, js2-external-variable):
21869 Remove "-face" suffix from face names.
21870 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
21871 (js2-highlight-undeclared-vars, js2-peek-token)
21872 (js2-parse-function-params, js2-mode-show-errors)
21873 (js2-mode-show-warnings, js2-make-magic-delimiter)
21874 (js2-mode-highlight-magic-parens): Update to use new face names.
21875
8e754ea2
MA
218762009-08-09 Michael Albinus <michael.albinus@gmx.de>
21877
21878 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
21879 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
21880
1c292fc7
CY
218812009-08-09 Chong Yidong <cyd@stupidchicken.com>
21882
18d433a7
CY
21883 * subr.el: Provide hashtable-print-readable.
21884
1c292fc7
CY
21885 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
21886 hs-c-like-adjust-block-beginning.
21887 (hs-hide-block-at-point): Stop hiding at the beginning of
21888 hs-block-end-regexp (Bug#700).
21889
2db0ae07
DD
218902009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
21891
21892 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
21893 a macro.
21894 (gdb-registers-handler-custom): Do not fail when register names
21895 are unavailable.
21896
fe4740a6
DD
218972009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
21898
21899 * progmodes/gdb-mi.el (gdb-control-all-threads)
21900 (gdb-control-current-thread): Interactive setters for
21901 `gdb-gud-control-all-threads' to use in menu.
21902 (gdb-show-run-p): Show «Go» when process is not active.
6a7662bb
BR
21903 (gud-tool-bar-map): Add non-stop/A,T indicator.
21904 Uses gud/thread.xpm and gud/all.xpm.
fe4740a6 21905
ce299d55
CY
219062009-08-08 Yoni Rabkin <yoni@rabkins.net>
21907
21908 * net/net-utils.el (net-utils-font-lock-keywords): New var.
21909 (nslookup-font-lock-keywords): Make it a variable.
dba90ffd
CY
21910 (net-utils-mode): New mode for viewing diagnostic network output.
21911 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
21912 (net-utils-run-simple): New function.
21913 (ifconfig, iwconfig, netstat, arp, route): Use it.
ce299d55 21914
7c4654ad
DD
219152009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
21916
21917 * progmodes/gdb-mi.el (gdb-read-memory-custom)
21918 (gdb-memory-set-address, def-gdb-set-positive-number)
21919 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
21920 after changing settings.
21921 (gdb-invalidate-disassembly): Update when first shown.
5f9d345c 21922 (gdb-edit-locals-value): Fix.
7c4654ad
DD
21923 (gdb-registers-handler-custom): Print registers in right order and
21924 allow changing register values (only for current thread yet).
9cbac26b
DD
21925 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
21926 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
21927 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
6a7662bb
BR
21928 (gdb-locals-handler-custom, gdb-registers-handler-custom):
21929 Thread info in mode name.
9cbac26b 21930 (gdb-registers-mode-map): TAB to switch to locals.
7c4654ad 21931
0f25a277
EZ
219322009-08-08 Eli Zaretskii <eliz@gnu.org>
21933
21934 * mail/rmail.el (rmail-add-mbox-headers)
21935 (rmail-set-message-counters-counter): Search for
21936 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
21937
b971be60
GM
219382009-08-08 Glenn Morris <rgm@gnu.org>
21939
21940 * Makefile.in (ELCFILES): Update.
21941
a35d3ad8
EZ
219422009-08-07 Eli Zaretskii <eliz@gnu.org>
21943
6a7662bb
BR
21944 * mail/sendmail.el (mail-yank-original):
21945 Set buffer-file-coding-system from the one used by the message whose
60c2df40
EZ
21946 text is yanked.
21947
8b0bcc2e
EZ
21948 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
21949 to "windows" when "pgnuplot" is used.
6a7662bb
BR
21950 (calc-graph-command, calc-gnuplot-command, calc-graph-init):
21951 Don't call accept-process-output if "pgnuplot" is used.
8b0bcc2e
EZ
21952 (calc-graph-init): Don't send -display and -geometry to
21953 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
21954 running "pgnuplot -V" with shell-command-to-string.
21955
21956 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
21957 the default.
21958
219592009-08-07 Eli Zaretskii <eliz@gnu.org>
21960
21961 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
a35d3ad8
EZ
21962 org/org-latex.elc.
21963
3bca7ca5
DN
219642009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
21965
3c53763c
DN
21966 * vc-dispatcher.el (vc-resynch-window): Update comment.
21967
3bca7ca5
DN
21968 * term.el (term-handle-ansi-escape): Add comments with the
21969 terminfo capabilities implemented.
21970
7b217360
DD
219712009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
21972
5f9d345c 21973 * progmodes/gdb-mi.el (gdb-var-create-regexp): Remove.
7b217360 21974 (gdb-var-create-handler): Rewritten using JSON parser.
88b5a757
DD
21975 (gdb-propertize-header): Move earlier.
21976 (gdb-set-header): Remove to avoid duplication.
7b217360
DD
21977 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
21978 Refresh disassembly buffers only after threads list have been
21979 update.
21980 (gdb-threads-header, gdb-registers-header): Per-buffer header line
21981 variables.
21982
b4d84ecf
JL
219832009-08-04 Juri Linkov <juri@jurta.org>
21984
21985 * files.el: Commands to add/delete file/directory-local variables.
21986 (read-file-local-variable, read-file-local-variable-value)
21987 (read-file-local-variable-mode, modify-file-local-variable)
21988 (modify-file-local-variable-prop-line)
21989 (modify-dir-local-variable): New functions.
21990 (add-file-local-variable, delete-file-local-variable)
21991 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
21992 (add-dir-local-variable, delete-dir-local-variable)
21993 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
21994 (copy-dir-locals-to-file-locals-prop-line): New commands.
21995
42da39c1
CY
219962009-08-04 Chong Yidong <cyd@stupidchicken.com>
21997
21998 * abbrev.el (insert-abbrev-table-description): Prettify output.
21999 Suggested by Karl Chen.
22000
98bf8494
DD
220012009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
22002
78b9fb28 22003 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
7b6fefac 22004 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
78b9fb28
DD
22005 (gdb-overlay-arrow-position, gdb-thread-position)
22006 (gdb-disassembly-position): Declare variables.
22007 (gdb-wait-for-pending): Function now.
22008 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
22009 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
22010 compilation goes smoothly.
22011 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
22012 (gdb-non-stop-setting): New customization setting which replaces
22013 `gdb-non-stop' so changing it doesn't break active GDB session.
22014 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
22015 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
22016 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
22017 (gdb-show-threads-by-default): New customization options.
22018 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
22019 routines.
22020 (gdb-get-buffer-create): Send buffers update signal when they are
22021 created.
22022 (gdb-invalidate-locals, gdb-invalidate-registers)
22023 (gdb-invalidate-breakpoints)
22024 (gdb-invalidate-threads, gdb-invalidate-disassembly)
22025 (gdb-invalidate-memory): Accept update signal.
22026 (gdb-current-context-command): Use --frame option.
22027 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
22028 Implement `gdb-frame-number' selection logic.
22029 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
22030 whether to show GUD toolbar buttons.
22031 (gdb-thread-exited): Unselect current thread when it exits.
22032 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
22033 (gdb-mark-line): Routine which sets overlay arrow or inverses
22034 video on fringeless displays.
22035 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
22036 to build aligned columns of data in GDB buffers and set text
22037 properties line-by-line.
22038 (gdb-invalidate-breakpoints)
22039 (gdb-breakpoints-list-handler-custom)
22040 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
22041 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
22042 (gdb-registers-handler-custom): Align data columns.
22043 (gdb-locals-handler-custom): Now prints data like in variable
22044 declarations.
22045 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
88b5a757 22046 Remove confusing buttons.
78b9fb28
DD
22047 (gdb-invalidate-threads): Append --frame.
22048 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
22049 between breakpoints/threads buffers.
22050 (gdb-set-window-buffer): Now can ignore dedicated windows.
22051 (gdb-propertize-header): Use `gdb-set-window-buffer'.
22052 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
22053 (def-gdb-thread-buffer-gud-command): Replaces
22054 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
22055 for fine thread control.
22056 (gdb-preempt-existing-or-display-buffer): New function used to
22057 display bound buffers without breaking window layout.
22058 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
22059 (gdb-select-frame): New version of `gdb-frames-select' which now
22060 sets `gdb-frame-number' so commands may use --frame option instead
22061 of inner debugger state.
22062 (gdb-frame-handler): Do not set `gdb-frame-number'.
22063 (gdb-threads-mode-map): Select threads with mouse.
22064
22065 * progmodes/gud.el (gdb-gud-context-call): Declare function to
22066 avoid compilation warning.
22067 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
22068 `gdb-show-stop-p`.
22069
566f3909
DD
22070 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
22071 Argument `key' renamed to `buffer-type'.
22072 (gdb-current-context-buffer-name): Do not add thread info to
22073 buffer name when no thread is selected.
22074 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
22075 command (bug 3794).
22076 (gdb-thread-selected): Handle `=thread-selected' notification.
22077 (gdb-wait-for-pending): New macro to deal with congestion problems.
22078 (gdb-breakpoints-list-handler-custom): Don't fail on pending
22079 breakpoints.
7b6fefac
JB
22080 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
22081 This fixes problem similar to one described in bug 3947.
566f3909
DD
22082 (gud-menu-map): More menu items.
22083 (gdb-init-1): Reset `gdb-thread-number' to nil.
22084
4a31122c
DD
22085 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
22086 non-stop settings.
22087
22088 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
22089 (gdb-current-context-command): Do not append --thread if
22090 `gdb-thread-number' is nil.
6a7662bb
BR
22091 (gdb-running-threads-count, gdb-stopped-threads-count):
22092 New variables.
4a31122c 22093 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
6a7662bb
BR
22094 (gdb-stopped-hooks, gdb-switch-when-another-stopped):
22095 New customization options.
4a31122c
DD
22096 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
22097 GUD commands.
7b6fefac 22098 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
4a31122c
DD
22099 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
22100 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
22101 set `gdb-thread-number' and update `gud-running' properly.
22102 (gdb-running): Update threads list when new threads appear.
22103 (gdb-stopped): Support non-stop operation and new thread switching
22104 logic.
22105 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
22106 (gdb-json-partial-output): New set of JSON routines.
22107 (def-gdb-auto-update-trigger): New `signal-list' optional
22108 argument.
22109 (gdb-thread-list-handler-custom): Update `gud-running',
22110 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
22111 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
22112 (gdb-continue-thread, gdb-step-thread): New commands for fine
22113 thread execution control.
22114 (gud-menu-map): New menu items to switch non-stop options.
22115 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
0d25e058 22116 (gdb-send): Mimic RET properly (bug 3794).
4a31122c
DD
22117
22118 * progmodes/gdb-mi.el (gdb-rules-name-maker)
22119 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
22120 gdb-buffer-rules.
22121 (def-gdb-auto-update-handler): New nopreserve optional argument.
22122 (gdb-stack-list-frames-custom): Print stack from top to bottom.
22123
88b5a757 22124 * progmodes/gdb-mi.el (gdb-pc-address): Remove unused variable.
4a31122c
DD
22125 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
22126 (gdb-parent-mode): New mode to derive other GDB modes from.
22127 (gdb-display-disassembly-for-thread)
22128 (gdb-frame-disassembly-for-thread): New commands for threads
22129 buffer.
22130
22131 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
22132 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
a5c9f540
DD
22133 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
22134 (gdb-update): We now store all GDB buffers in a list so that they
22135 can be updated by traversing a list instead of calling invalidate
7b6fefac 22136 triggers explicitly.
a5c9f540
DD
22137 (def-gdb-trigger-and-handler): New macro to define trigger-handler
22138 pair for GDB buffer.
22139 (gdb-stack-buffer-name): Add thread information.
e7086683
DD
22140 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
22141 handle pending triggers.
22142 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
22143 (def-gdb-thread-buffer-simple-command)
22144 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
22145 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
7b6fefac
JB
22146 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
22147 New commands which show buffers bound to thread.
88b5a757 22148 (gdb-stack-list-locals-regexp): Remove unused regexp.
4a31122c 22149
7b6fefac
JB
22150 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
22151 (gdb-locals-buffer-name, gdb-registers-buffer-name)
4a31122c
DD
22152 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
22153 to (gud-comint-buffer) in *-buffer-name functions
22154 because (gdb-get-target-string) already does that.
22155 (gdb-locals-handler-custom, gdb-registers-handler-custom)
22156 (gdb-changed-registers-handler): Rewritten without regexps.
22157
ba214964 22158 * progmodes/gdb-mi.el: Basic thread selection support.
4a31122c
DD
22159 (gdb-thread-number): New variable.
22160 (gdb-current-context-command): New macro which adds --thread
22161 option to command.
7b6fefac 22162 (gdb-threads-mode-map): Select thread with SPC.
4a31122c 22163 (gdb-thread-list-handler-custom): Mark current thread with overlay
7b6fefac 22164 arrow. Synchronize GDB thread and Emacs thread.
4a31122c
DD
22165 (gdb-select-thread): New command which selects current thread.
22166 (gdb-invalidate-frames, gdb-invalidate-locals)
22167 (gdb-invalidate-registers): Use --thread option.
20f12ed8 22168
2ac33804
MA
221692009-08-04 Michael Albinus <michael.albinus@gmx.de>
22170
22171 * net/tramp.el (top): Make check for tramp-gvfs loading more
8e754ea2 22172 robust. (Bug#3977)
2ac33804
MA
22173 (tramp-handle-insert-file-contents): `unwind-protect' must be
22174 inside `with-parsed-tramp-file-name'.
22175
22176 * net/tramp-gvfs.el (top): Remove superfluous message when loading
22177 fails.
22178
39d0296f
NR
221792009-08-03 Nick Roberts <nickrob@snap.net.nz>
22180
22181 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
22182 directory if CLASSPATH is not set.
22183
adcbca53
MA
221842009-08-03 Michael Albinus <michael.albinus@gmx.de>
22185
7b6fefac
JB
22186 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
22187 New defconst.
7ef849b6 22188 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
adcbca53 22189
30924b0b
CY
221902009-08-02 Kevin Ryde <user42@zip.com.au>
22191
7b6fefac
JB
22192 * net/newst-backend.el (newsticker--raw-url-list-defaults):
22193 Update freshmeat link. Delete newsforge.com as it seems gone.
30924b0b 22194
b6ce92f1
CY
221952009-08-02 Chong Yidong <cyd@stupidchicken.com>
22196
d977a092
CY
22197 * select.el (x-set-selection): Doc fix (Bug#4021).
22198
22199 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
22200
b6ce92f1
CY
22201 * help-fns.el (describe-variable): Treat list return values from
22202 dir-locals-find-file properly (Bug#4005).
22203
7b6fefac 222042009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
3eedbc85
MA
22205
22206 * net/tramp.el (tramp-debug-message): Print also microseconds.
22207
222082009-08-02 Michael Albinus <michael.albinus@gmx.de>
22209
22210 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
22211 or END is non-nil.
22212 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
22213 (tramp-get-debug-buffer): Change `outline-regexp' according to new
22214 format.
22215
5ce6e4f4 22216 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
3eedbc85
MA
22217 (tramp-get-file-property): Use it.
22218
6a7662bb
BR
22219 * autorevert.el (auto-revert-handler):
22220 Allow `auto-revert-tail-mode' for remote files.
3eedbc85 22221
2aafe808
JR
222222009-08-02 Jason Rumney <jasonr@gnu.org>
22223
22224 * minibuffer.el (read-file-name): Treat confirm options to
7b6fefac 22225 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
2aafe808 22226
e094097c
CY
222272009-08-02 Chong Yidong <cyd@stupidchicken.com>
22228
22229 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
6a7662bb
BR
22230 (font-lock-variable-name-face, font-lock-constant-face):
22231 Darken the colors for light backgrounds.
e094097c 22232
de94f281
EZ
222332009-08-01 Eli Zaretskii <eliz@gnu.org>
22234
22235 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
22236 month names. (Bug#3987)
22237
54b99340
CY
222382009-07-31 Chong Yidong <cyd@stupidchicken.com>
22239
22240 * simple.el (line-move-finish): Pass whole number to
22241 line-move-to-column.
34be836c 22242 (line-move-visual): Perform hscroll to the recorded position.
54b99340 22243
38216c30
JB
222442009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
22245
22246 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
22247
c779896d
CY
222482009-07-29 Alan Mackenzie <acm@muc.de>
22249
22250 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
22251
592ccae0
DD
222522009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
22253
35edc6c6
DD
22254 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
22255 (gdb-place-breakpoints): Use full path when setting breakpoints.
592ccae0 22256
5a9e3ab7
JB
222572009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
22258
22259 * calc/calc.el (calc-mode-map): Add keybinding for
22260 `calc-transpose-lines'.
22261
7b6fefac 222622009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
5a9e3ab7
JB
22263
22264 * calc/calc-misc.el (calc-transpose-lines): New function.
22265
905fb90e
MA
222662009-07-28 Michael Albinus <michael.albinus@gmx.de>
22267
22268 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
22269 Simplify check for out-of-band methods.
22270 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
22271 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
22272
76e14464
DN
222732009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
22274
22275 * vc-git.el (vc-git-checkin): Fix typo.
22276
6088b51f 222772009-07-28 Steve Yegge <steve.yegge@gmail.com>
af077012
SY
22278
22279 * progmodes/js2-mode.el: New file.
22280
b85157fe
NR
222812009-07-28 Nick Roberts <nickrob@snap.net.nz>
22282
22283 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
22284 (gud-menu-map): Adjust tooltip accordingly.
22285
d43c2b06
DN
222862009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
22287
1c0f0c3b
DN
22288 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
22289 (vc-bzr-log-view-mode): Adjust log-view-file-re.
22290
d43c2b06
DN
22291 * add-log.el (change-log-mode-map): Add a menu.
22292
3dec5c36
MA
222932009-07-27 Michael Albinus <michael.albinus@gmx.de>
22294
22295 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
22296 function returns nil.
22297 (dbus-handle-event): Handle special return value :ignore.
22298 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
22299
5704140c
CY
223002009-07-26 Chong Yidong <cyd@stupidchicken.com>
22301
22302 * view.el (view-mode-enable): Don't define Helper-return-blurb if
22303 it's not needed.
22304
3077d1f6
EZ
223052009-07-25 Eli Zaretskii <eliz@gnu.org>
22306
22307 Fix Bug#3888:
22308
22309 * w32-vars.el (x-select-enable-clipboard): Doc fix.
22310
22311 * term/pc-win.el (x-display-name, x-colors)
22312 (x-select-enable-clipboard, x-select-text): Doc fix.
22313
22314 * term/common-win.el (x-display-name, x-colors): Doc fix.
22315
22316 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
22317 (xw-defined-colors): Doc fix.
22318
22319 * w32-fns.el (x-select-text, x-setup-function-keys)
22320 (x-get-selection, x-set-selection): Doc fix.
22321
22322 * term/x-win.el (x-select-text, x-setup-function-keys)
22323 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
22324
22325 * select.el (x-set-selection): Doc fix.
22326
51768bc8
MA
223272009-07-25 Michael Albinus <michael.albinus@gmx.de>
22328
22329 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
22330 instead of "IsNSSSupportAvailable". Avahi ought to work also when
6a7662bb
BR
22331 "IsNSSSupportAvailable" method is not available.
22332 Reported by Steve Youngs <steve@sxemacs.org>.
51768bc8 22333
b11c2874
KH
223342009-07-24 Kenichi Handa <handa@m17n.org>
22335
22336 * international/characters.el: Fix setting of category ?C, ?|, ?K,
7b6fefac 22337 and ?H. Fix setting of case for Latin Extended and Greek Extended.
b11c2874
KH
22338 (build-unicode-category-table): Fix range checks.
22339
ba83b7b6
DN
223402009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
22341
22342 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
22343 the buffer we try to sync is current when calling
22344 vc-resynch-buffer.
22345
22346 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
22347 not show up to date files.
22348
7a8ae964
GM
223492009-07-24 Glenn Morris <rgm@gnu.org>
22350
22351 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
22352 Add autoload cookies. If necessary, initialize.
22353 (elint-log): Handle non-file buffers.
22354 (elint-initialize): Add optional argument to reinitialize.
22355 (elint-find-builtin-variables): Save excursion.
22356
a707eb05
DN
223572009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
22358
22359 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
22360 for Lint.
22361
0a2ddfa6
DN
223622009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
22363
d6a62b0d
DN
22364 * vc.el (vc-print-log-internal): New function, split out from ...
22365 (vc-print-log): ... here.
10b5dcad 22366 (vc-dir-move-to-goal-column): Declare.
d6a62b0d 22367
0a2ddfa6
DN
22368 * vc-git.el (vc-git-add-signoff): New variable.
22369 (vc-git-checkin): Use it.
22370 (vc-git-toggle-signoff): New function.
22371 (vc-git-extra-menu-map): Bind it to menu.
2a0e3379
DN
22372 (vc-git--run-command-string): Accept a nil FILE argument.
22373 (vc-git-stash-list): New function.
22374 (vc-git-dir-extra-headers): Use it.
0a2ddfa6 22375
589a99f2
GM
223762009-07-23 Glenn Morris <rgm@gnu.org>
22377
22378 * help-fns.el (describe-variable): Describe ignored and risky local
22379 variables in a similar way to that in which we describe safe ones.
22380
22381 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
22382 (byte-compile-output-file-form, byte-compile-output-docform)
22383 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
22384 Give some more local variables with common names a "bytecomp-" prefix,
22385 so as not to shadow things during compilation.
22386 * emacs-lisp/cl-macs.el (load-time-value)
22387 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
22388 `outbuffer' to `bytecomp-outbuffer'.
22389
22390 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
22391 since the next two variables cover them automatically now.
22392 (elint-builtin-variables, elint-autoloaded-variables): New.
22393 (elint-unknown-builtin-args): Remove all members, since they can be
22394 parsed automatically now.
22395 (elint-extra-errors): New.
22396 (elint-env-add-env, elint-env-add-macro): Use cadr.
22397 (elint-current-buffer): Use or. Change final message.
22398 (elint-get-top-forms): Use line-end-position.
22399 (elint-init-env): Use cadr. Handle autoload, declare-function,
22400 and defalias.
22401 (elint-add-required-env): Doc fix. Use or. Standardize error.
22402 (regexp-assoc): Remove unused function.
22403 (elint-top-form): Set elint-current-pos, to record the start of the
22404 top-level form, for compilation-mode.
22405 (elint-form): Trap errors in macro expansion. Use dolist.
22406 (elint-unbound-variable): Use elint-builtin-variables and
22407 elint-autoloaded-variables.
22408 (elint-get-args): Use cadr, or.
22409 (elint-check-cond-form): Use dolist, cadr.
22410 (elint-check-condition-case-form): Doc fix. Use cadr.
22411 Use elint-extra-errors.
22412 (elint-log): New function.
22413 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
22414 Distinguish errors and warnings.
22415 (elint-log-message): Use with-current-buffer. Inhibit read-only.
22416 Use a bytecomp-style format.
22417 (elint-clear-log): Preserve default-directory. Inhibit read-only.
22418 (elint-get-log-buffer): Use compilation mode. Disable undo.
22419 Don't truncate lines.
22420 (elint-initialize): Set builtin and autoloaded variable lists.
22421 Only process elint-unknown-builtin-args if non-nil.
22422 (elint-find-builtin-variables, elint-find-autoloaded-variables):
22423 New functions.
22424 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
22425
855b42a2
GM
224262009-07-22 Kevin Ryde <user42@zip.com.au>
22427
22428 * net/newst-backend.el (newsticker--parse-atom-1.0)
22429 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
22430 (newsticker--parse-rss-1.0):
22431 * progmodes/idlwave.el (idlwave-mode):
22432 * progmodes/idlw-shell.el (idlwave-shell-mode):
22433 * progmodes/vera-mode.el (vera-mode):
22434 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
22435 * progmodes/vhdl-mode.el (vhdl-mode):
22436 * textmodes/table.el (table-generate-source)
22437 (table--warn-incompatibility):
22438 Hyperlink urls in docstrings with URL `...'.
22439
fd413a37
GM
224402009-07-22 Glenn Morris <rgm@gnu.org>
22441
cb711556
GM
22442 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
22443 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
22444 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
22445 Remove leading * from defcustom docs.
22446
fd413a37
GM
22447 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
22448
22449 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
22450 defcustom doc.
22451 (list-load-path-shadows): Optionally, just return shadows as a string.
22452
22453 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
22454
a4f69701
CY
224552009-07-21 Chong Yidong <cyd@stupidchicken.com>
22456
6a7662bb
BR
22457 * mail/rmailedit.el (rmail-edit-mode):
22458 Use auto-save-include-big-deletions.
a4f69701 22459
6a7662bb
BR
22460 * mail/rmail.el (rmail-variables):
22461 Use auto-save-include-big-deletions.
a4f69701
CY
22462
22463 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
22464 changes.
22465
ec06459c
JB
224662009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
22467
22468 * calc/calc.el (calc-undo-length): New variable.
22469 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
22470
b41b0976
RS
224712009-07-21 Richard Stallman <rms@gnu.org>
22472
22473 * files.el (auto-save-mode): Handle buffer-save-size = -2
22474 for toggling mode.
22475
4ed32706
GM
224762009-07-21 Glenn Morris <rgm@gnu.org>
22477
531b1264
GM
22478 * textmodes/ispell.el (ispell-looking-back): Update declaration.
22479
55d27f41
GM
22480 * calendar/todo-mode.el (calendar-current-date): Update declaration.
22481
02df3f4d
GM
22482 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
22483 silence compiler. Instead...
22484 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
22485 (ps-print-ensure-fontified): Update for above function name changes.
22486
fdd8417e
GM
22487 * printing.el (pr-mh-get-msg-num, pr-mh-show)
22488 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
22489 silence compiler. Instead...
22490 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
22491 (mh-show-buffer): Only define for compiler.
22492 (pr-mh-current-message): Update for above function name changes.
22493
4ed32706
GM
22494 * files.el (abort-if-file-too-large): Explicitly pass `filename'
22495 as an argument.
22496 (find-file-noselect, insert-file-1): Update for above change.
22497
22498 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
22499
22500 * mail/mailclient.el (mailclient-send-it): Fix message.
22501
22502 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
22503 (edebug-eval): Check cl-debug-env is bound.
22504 (print-level, print-circle): Don't redefine built-in variables.
22505
22506 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
22507 (custom-print-vectors): Remove old comments from doc.
22508
22509 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
22510 (emerge-version): Make the variable an obsolete alias for the
22511 emacs-version variable. Make the function obsolete.
22512 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
22513 Emerge options, rather than merging in into the main Options menu.
22514 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
22515 and auto advance modes. Disable edit/fast items when not relevant.
22516
86812144
CY
225172009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
22518
22519 * term/vt420.el (terminal-init-vt420): Fix typo.
22520
6bb90094
SS
225212009-07-20 Sam Steingold <sds@gnu.org>
22522
22523 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
22524 variable (removed from compile.el on 2004-03-11).
22525
42e0a725
CY
225262009-07-20 Chong Yidong <cyd@stupidchicken.com>
22527
22528 * files.el (hack-local-variables-filter): Fix last change.
22529
2ee20f24
JL
225302009-07-19 Juri Linkov <juri@jurta.org>
22531
22532 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
22533 (dir-local-variables-alist): New buffer-local variable.
22534 (hack-local-variables-filter): If variable is not dir-local,
22535 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
22536 because file-local overrides dir-local.
3570691b 22537 (c-postprocess-file-styles) <declare-function>:
2ee20f24
JL
22538 Remove obsolete declaration.
22539 (hack-dir-local-variables): Add dir-local variable/value pair to
22540 `dir-local-variables-alist' and remove duplicates. Doc fix.
22541
22542 * help-fns.el (describe-variable): Add information about
22543 file-local and dir-local variables.
22544
89bf83cd
CY
225452009-07-19 Chong Yidong <cyd@stupidchicken.com>
22546
22547 * files.el (hack-local-variables-filter): Rewrite.
22548
1a8d3541
GM
225492009-07-19 Glenn Morris <rgm@gnu.org>
22550
d9e8a018
GM
22551 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
22552 Silence compiler by only defining on XEmacs.
22553
da332cfb
GM
22554 * international/mule.el (auto-coding-regexp-alist): Only match
22555 BABYL... at the start of buffer, not of lines. (Bug#3790)
22556
1a8d3541
GM
22557 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
22558 non-calendar buffers (Bug#3862). Restore "not on a date" message.
22559 (cal-menu-context-mouse-menu): Doc fix.
22560
22561 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
22562
22563 * simple.el (mail-user-agent): Doc fix. Set :version tag.
22564
d842b103
JL
225652009-07-18 Juri Linkov <juri@jurta.org>
22566
22567 * info.el: Virtual Info keyword finder.
3570691b 22568 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
d842b103
JL
22569 (Info-finder-file): New variable.
22570 (Info-finder-find-file): New function.
22571 (finder-known-keywords, finder-package-info)
22572 (find-library-name, lm-commentary): Use defvar and
22573 declare-function to silence compiler warnings.
22574 (Info-finder-find-node): New function.
22575 (info-finder): New command.
22576
22577 * subr.el (process-kill-buffer-query-function): New function.
22578 (add-hook)<kill-buffer-query-functions>: Add hook
22579 `process-kill-buffer-query-function'.
22580
10d37df7
AM
225812009-07-18 Alan Mackenzie <acm@muc.de>
22582
7b6fefac 22583 * progmodes/cc-mode.el (c-before-hack-hook)
10d37df7
AM
22584 (c-postprocess-file-styles): Give invocation of `c-set-style'
22585 DONT-OVERRIDE parameter of t. Already set style variables will
22586 thus not be overridden by style settings given by `c-file-syle'.
22587
22588 * files.el (hack-local-variables-filter): Remove entries with
22589 duplicate keys from `file-local-variables-alist'.
22590
102e1a41
EZ
225912009-07-18 Eli Zaretskii <eliz@gnu.org>
22592
22593 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
22594 x-set-selection if display-selections-p returns nil for the
22595 current frame.
22596
16f2e9fc
CY
225972009-07-18 Chong Yidong <cyd@stupidchicken.com>
22598
22599 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
22600
f22693fc
EZ
226012009-07-18 Eli Zaretskii <eliz@gnu.org>
22602
a6c2c80c
EZ
22603 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
22604 Accept nil in addition to a regexp.
22605 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
22606 Accept nil in addition to a regexp.
22607 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
22608 buffers that have an associated file. Handle nil values of
22609 desktop-buffers-not-to-save and desktop-files-not-to-save.
22610 (Bug#3833)
22611
f22693fc
EZ
22612 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
22613 (x-disown-selection-internal): New functions.
22614
e456379a
NR
226152009-07-18 Nick Roberts <nickrob@snap.net.nz>
22616
22617 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
22618 warning.
22619 (gdb-breakpoints-header): Move forward to avoid compiler warning.
22620 (gdb-make-header-line-mouse-map): Remove duplicate definition.
22621
0013b70f
CY
226222009-07-18 David De La Harpe Golden <david@harpegolden.net>
22623
22624 * simple.el (set-mark): Revert last change.
22625
0855c2ca
CY
226262009-07-17 Tassilo Horn <tassilo@member.fsf.org>
22627
22628 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
22629 rendering of pngs is not possible instead of messaging a long
22630 description.
22631
3f5c9cad
CY
226322009-07-17 David De La Harpe Golden <david@harpegolden.net>
22633
22634 * w32-fns.el (x-selection-owner-p): New function.
22635
22636 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
6a7662bb
BR
22637 (mouse-yank-at-click, mouse-yank-primary):
22638 If select-active-regions is non-nil, deactivate the mark before
6c6a75d5 22639 insertion.
3f5c9cad
CY
22640
22641 * simple.el (deactivate-mark, set-mark): Only save selection if we
22642 own it.
22643
1fc87f9b
KH
226442009-07-17 Kenichi Handa <handa@m17n.org>
22645
22646 * case-table.el (describe-buffer-case-table): Fix for the case
22647 that KEY is a cons.
22648
d56fdcd2
DN
226492009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
22650
22651 * vc-rcs.el (vc-rcs-find-file-hook):
22652 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
22653
bede3e9f
MA
226542009-07-16 Michael Albinus <michael.albinus@gmx.de>
22655
22656 * net/tramp.el (tramp-wait-for-output): Handle the case when
22657 commands do not return a newline but a null byte before the shell
22658 prompt. (Bug#3858)
22659
7653ca1d
YM
226602009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22661
22662 * term/ns-win.el (ns-set-alpha): Don't declare.
22663 (ns-set-background-alpha): Remove function.
22664
ed2a52e9
SM
226652009-07-16 Kevin Ryde <user42@zip.com.au>
22666
22667 * emacs-lisp/copyright.el (copyright-update): Save match-data across
22668 y-or-n-p, for safety.
22669
7a907299
RS
226702009-07-16 Richard Stallman <rms@gnu.org>
22671
22672 * files.el (auto-save-mode): If buffer-saved-size is -2,
22673 don't clobber it.
22674
22675 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
22676 (rmail-retry-ignored-headers): Add more uninteresting fields.
22677
c0db3477
CY
226782009-07-15 Jari Aalto <jari.aalto@cante.net>
22679
22680 * net/rcirc.el (rcirc): Use history variables.
22681 (rcirc-server-name-history, rcirc-nick-name-history)
22682 (rcirc-server-port-history): New variables.
22683
6c875452
KH
226842009-07-15 Kenichi Handa <handa@m17n.org>
22685
bf974dc9
KH
22686 * international/mule-cmds.el (set-language-environment-charset):
22687 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
22688 ignore them.
22689
6c875452
KH
22690 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
22691 Delete unibyte-display.
22692
2066b4fe
CY
226932009-07-15 Chong Yidong <cyd@stupidchicken.com>
22694
22695 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
22696
f9be2e35
CY
226972009-07-15 Chong Yidong <cyd@stupidchicken.com>
22698
22699 * simple.el (deactivate-mark): Optional argument FORCE.
22700 (set-mark): Use deactivate-mark.
22701
22702 * info.el (Info-search): No need to check transient-mark-mode
22703 before calling deactivate-mark.
22704
22705 * select.el (x-set-selection): Doc fix.
22706 (x-valid-simple-selection-p): Allow buffer values.
6a7662bb
BR
22707 (xselect--selection-bounds): Handle buffer values.
22708 Suggested by David De La Harpe Golden.
f9be2e35 22709
6a7662bb
BR
22710 * mouse.el (mouse-set-region, mouse-drag-track):
22711 Call copy-region-as-kill before setting the mark, to let
f9be2e35
CY
22712 select-active-regions work.
22713
be3e598a 227142009-07-15 David De La Harpe Golden <david@harpegolden.net>
f9be2e35
CY
22715
22716 * simple.el (deactivate-mark): If select-active-regions is
22717 non-nil, copy the selection data into a string.
22718 (activate-mark): If select-active-regions is non-nil, set the
22719 selection to the current buffer.
22720 (set-mark): Update selection if select-active-regions is non-nil.
22721
22722 * select.el (x-valid-simple-selection-p): Allow buffer values.
22723
cbd61418
SM
227242009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
22725
22726 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
22727 and more featureful message-mode.
22728
f470187f
CY
227292009-07-14 Chong Yidong <cyd@stupidchicken.com>
22730
22731 * select.el (x-set-selection): Doc fix.
22732 (x-valid-simple-selection-p): Disallow selection data consisting
22733 of a list or cons of integers, since that is not used.
22734 (xselect--selection-bounds, xselect--int-to-cons): New functions.
22735 (xselect-convert-to-string, xselect-convert-to-length)
22736 (xselect-convert-to-filename, xselect-convert-to-charpos)
22737 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
22738
bfc99364
DD
227392009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
22740
22741 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
22742 output in -break-info command (Emacs bug #3794).
22743
e32721f5
GM
227442009-07-14 Glenn Morris <rgm@gnu.org>
22745
1e46f9e4
GM
22746 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
22747 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
22748 (edebug-print-length, edebug-print-level, edebug-print-circle)
22749 (edebug-sit-for-seconds, edebug-view-outside)
22750 (edebug-bounce-point, edebug-set-global-break-condition)
22751 (edebug-Go-nonstop-mode, edebug-trace-mode)
22752 (edebug-Trace-fast-mode, edebug-continue-mode)
22753 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
22754 (edebug-visit-eval-list): Doc fixes.
22755
e32721f5
GM
22756 * subr.el (def-edebug-spec): Doc fix.
22757
66a85e76
KH
227582009-07-14 Kenichi Handa <handa@m17n.org>
22759
22760 * international/characters.el: Fix setting of category ?C.
22761
28571246
JD
227622009-07-13 Jan Djärv <jan.h.d@swipnet.se>
22763
7b6fefac 22764 * term/ns-win.el (x-select-font): defalias x-select-font to
28571246
JD
22765 ns-popup-font-panel instead of generate-fontset-menu.
22766
5d74672c
EZ
227672009-07-12 Eli Zaretskii <eliz@gnu.org>
22768
7b6fefac 22769 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
5d74672c 22770
eb1727a4
CY
227712009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
22772
22773 * arc-mode.el (archive-find-type): Allow for a PK00 string before
22774 the PK\003\004 header (Bug#3770).
22775
208384c5
CY
227762009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
22777
22778 * pcomplete.el (pcomplete-comint-setup): Check for
22779 shell-dynamic-complete-filename too.
22780
774409a1
CY
227812009-07-11 Chong Yidong <cyd@stupidchicken.com>
22782
22783 * simple.el (temporary-goal-column): Change the value for
22784 line-move-visual to a cons cell.
22785 (line-move-visual): Record or set the window hscroll, if
22786 necessary (Bug#3494).
22787 (line-move-1): Handle cons value of temporary-goal-column.
22788
1639ee1d
KH
227892009-07-11 Kenichi Handa <handa@m17n.org>
22790
22791 * international/mule-diag.el (describe-character-set): Don't show
22792 width.
22793
2b1d2412
SS
227942009-07-10 Sam Steingold <sds@gnu.org>
22795
22796 * progmodes/compile.el (compilation-mode-font-lock-keywords):
22797 Omake sometimes indents the errors it prints, so allow all
22798 regexps to start with spaces.
22799
ed3a5691
EZ
228002009-07-10 Eli Zaretskii <eliz@gnu.org>
22801
ed2a52e9
SM
22802 * cus-edit.el (customize-changed-options-previous-release):
22803 Bump value to 22.1. (Bug#3804)
ed3a5691 22804
49405d0e
SS
228052009-07-08 Sam Steingold <sds@gnu.org>
22806
22807 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
22808 to be a cons cell (test . ignored-directory) to selectively ignore
22809 some directories depending on the location of the search.
22810
93c3eb7c
MA
228112009-07-08 Michael Albinus <michael.albinus@gmx.de>
22812
22813 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
22814 remote user is root, on the local host.
22815 (tramp-local-host-p): Either the local user or the remote user
22816 must be root. (Bug#3771)
22817
6f2a8484
NR
228182009-07-08 Nick Roberts <nickrob@snap.net.nz>
22819
22820 * progmodes/gdb-mi.el (gdb): Remove description of
22821 gdb-use-separate-io-buffer.
69cb8d82 22822 (menu): Don't allow toggling of or enable
6f2a8484
NR
22823 gdb-use-separate-io-buffer from menubar.
22824
88d03607
CY
228252009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
22826
22827 * mail/unrmail.el (unrmail): Make sure the message ends with two
22828 newlines (Bug#3769).
22829
7ef5b8b2
GM
228302009-07-08 Glenn Morris <rgm@gnu.org>
22831
22832 * calendar/calendar.el (calendar-current-date): Rework previous change.
22833
3ce82f97
GM
228342009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
22835
22836 * calendar/calendar.el (calendar-current-date):
22837 Add an optional argument giving an offset from today.
22838
f35fc841
GM
228392009-07-08 Glenn Morris <rgm@gnu.org>
22840
22841 * tutorial.el (tutorial--describe-nonstandard-key):
22842 Adjust the message for when a key has been unbound.
22843 (help-with-tutorial): Hide the arch-tag.
22844
40149292
KH
228452009-07-08 Kenichi Handa <handa@m17n.org>
22846
69cb8d82
KH
22847 * international/fontset.el (setup-default-fontset): For each
22848 script, append (not set) font-specs.
22849
40149292
KH
22850 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
22851 docstring.
22852
ff0c4194
NR
228532009-07-08 Nick Roberts <nickrob@snap.net.nz>
22854
22855 * progmodes/gdb-mi.el (gdb-init-1): Move sending
22856 -data-list-register-names to ...
22857 (gdb-starting): ... here because GDB 7.0 requires execution to
22858 have started when using this MI command.
22859 (gdb-set-header): New function to distinguish select and
22860 unselected tabs in gdb buffers.
22861 (gdb-propertize-header): New macro that uses gdb-set-header.
22862 (gdb-breakpoints-header, gdb-locals-header): Use it.
6f2a8484 22863 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
ff0c4194 22864
8954c675
CY
228652009-07-07 Chong Yidong <cyd@stupidchicken.com>
22866
22867 * Makefile.in (ELCFILES): Remove fadr.elc.
22868
0996385d
DD
228692009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
22870
dc6b4519
DD
22871 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
22872 may contain frame information, so `string-match' should be used.
22873 (gdb-update): Disassembly is invalidated through
22874 `gdb-get-selected-frame'.
22875 (gdb-pad-string): New function to pad string with spaces.
22876 (gdb-invalidate-disassembly): Invalidate only if the buffer
22877 exists.
22878 (gdb-disassembly-handler-custom): Column alignment.
22879 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
22880 placing new ones.
22881 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
22882 end of line, too.
22883 (gdb-frame-handler): Match convention to for disassembly buffer
22884 mode name.
17c1380b 22885 (gdb-stack-list-frames-handler): Rewritten without regexps.
e7006f27
DD
22886 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
22887 not highlight breakpoints without line information.
69a197a2 22888 (gdb-input): Add trailing newline to command.
dc6b4519 22889
14340b25
DD
22890 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
22891 buffer properly.
22892 (gdb-breakpoints-list-handler-custom): Replacement for
7b6fefac 22893 `gdb-break-list-handler'. Using real parser instead of regexps
dc6b4519
DD
22894 now.
22895 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
22896 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
22897 to place breakpoints.
14340b25
DD
22898 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
22899 functions.
22900 (gdb-disassembly-handler-custom): Show overlay arrow.
22901 (gdb-disassembly-place-breakpoints): Show breakpoints in
22902 disassembly buffer.
22903 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
dc6b4519 22904 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
7b6fefac 22905 instead of parsing breakpoints buffer. Fixed old menu references
dc6b4519 22906 in `gud-menu-map'.
14340b25 22907
38d4f316 22908 * fadr.el: Remove.
1f2a6224 22909
7b6fefac 22910 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
0996385d 22911 (gdb-memory-address): New variable which holds top address of
7b6fefac 22912 memory page shown in memory buffer.
6a7662bb
BR
22913 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit):
22914 New customization variables.
0996385d
DD
22915 New functions:
22916 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
22917 display the memory buffer.
22918 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
22919 buffer display parameters.
22920 (def-gdb-memory-format, gdb-memory-format-binary)
22921 (gdb-memory-format-octal, gdb-memory-format-unsigned)
22922 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
22923 Functions for setting memory buffer format.
22924 (gdb-memory-unit-word, gdb-memory-unit-halfword)
22925 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
22926 unit size used in memory buffer.
6a7662bb
BR
22927 (gdb-memory-show-next-page, gdb-memory-show-previous-page):
22928 Switch to next/previous page of memory buffer.
28d67a53 22929 Now using (bindat-get-field) instead of fadr functions.
0996385d 22930
9ba562d3
SS
229312009-07-07 Sam Steingold <sds@gnu.org>
22932
22933 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
22934 non-top-level files.
22935
a43977db
KH
229362009-07-07 Kenichi Handa <handa@m17n.org>
22937
6a7662bb
BR
22938 * international/mule-cmds.el (reset-language-environment):
22939 Put the highset priority to the charset iso-8859-1.
a43977db 22940
d44d05e8
CY
229412009-07-06 Chong Yidong <cyd@stupidchicken.com>
22942
22943 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
22944 to the end of the line when locating the block (Bug#700).
22945
3e2fa353
MA
229462009-07-06 Michael Albinus <michael.albinus@gmx.de>
22947
22948 * net/tramp.el (tramp-handle-write-region): Flush file properties
22949 in case of short track.
22950
be3e598a 229512009-07-06 Michael McNamara <mac@mail.brushroad.com>
d88782c3 22952
bf0b361c
JB
22953 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
22954 Coded custom representation of verilog error regular expressions
22955 to work with Emacs-22's new format.
d88782c3 22956 (verilog-error-regexp-xemacs-alist): Coded custom representation
7b6fefac 22957 of verilog error regular expressions to work with XEmacs format.
d88782c3
DN
22958 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
22959 error recognition into XEmacs.
22960 (verilog-error-regexp-add-emacs): Hook routine to install verilog
22961 error recognition into Emacs-22.
22962
25c6f63e
CY
229632009-07-06 Chong Yidong <cyd@stupidchicken.com>
22964
22965 * woman.el: Remove stand-alone closing parentheses.
22966 (woman-file-name, woman2-format-paragraphs)
22967 (woman-leave-blank-lines): Code cleanup.
22968 (woman-use-own-frame): Change default to nil.
6a7662bb
BR
22969 (woman-italic, woman-bold, woman-unknown, woman-addition):
22970 Change defaults to inherit from default faces.
25c6f63e
CY
22971 (woman2-process-escapes): Consume the newline after a stand-alone
22972 filler character (Bug#3651).
22973
f176290e
GM
229742009-07-06 Glenn Morris <rgm@gnu.org>
22975
22976 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
22977 (top-level): Move provide to the end.
22978 (ffap): Remove defunct URL from custom group.
22979
22980 * subr.el (eval-after-load): Doc fix.
22981
7b6fefac 229822009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
e4a5a307
JB
22983
22984 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
22985 `calc-embedded-word' is called twice.
22986
4b8b1ec5
SM
229872009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
22988
22989 * files.el (find-alternate-file-other-window, find-alternate-file):
22990 Obey confirm-nonexistent-file-or-buffer.
22991
d6ceb380
MA
229922009-07-05 Michael Albinus <michael.albinus@gmx.de>
22993
22994 * dired-aux.el (dired-show-file-type): Handle remote files.
22995
be3e598a 229962009-07-05 Jari Aalto <jari.aalto@cante.net>
c760f19e 22997
4b8b1ec5
SM
22998 * desktop.el (desktop-globals-to-save):
22999 Add file-name-history (Bug#2750).
c760f19e 23000
6d00ce04
CY
230012009-07-05 Chong Yidong <cyd@stupidchicken.com>
23002
4b8b1ec5 23003 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
6d00ce04 23004
6ee21b07
JB
230052009-07-04 Johan Bockgård <bojohan@gnu.org>
23006
23007 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
23008 property on entire argument since this is what eshell-lisp-command
23009 expects.
23010
f0dbdc25
MA
230112009-07-03 Michael Albinus <michael.albinus@gmx.de>
23012
23013 * net/tramp-gvfs.el (tramp-gvfs-methods)
23014 (tramp-gvfs-zeroconf-domain)
23015 (tramp-bluez-discover-devices-timeout): Add version flag.
23016 (tramp-gvfs-handler-mounted-unmounted)
23017 (tramp-gvfs-connection-mounted-p): Polish handling of
23018 incompatibilities between GVFS 0.2 and 1.0.
23019
e044e4fc
JD
230202009-07-03 Jan Djärv <jan.h.d@swipnet.se>
23021
4b8b1ec5 23022 * cus-start.el (all): Add make-pointer-invisible.
e044e4fc 23023
2e9b968b
JB
230242009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
23025
bf0b361c 23026 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
2e9b968b
JB
23027 formatted correctly.
23028
baf1a55e
JL
230292009-07-02 Juri Linkov <juri@jurta.org>
23030
23031 * info.el: Virtual Info files and nodes.
23032 (Info-virtual-files, Info-virtual-nodes): New variables.
23033 (Info-current-node-virtual): New variable.
23034 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
23035 New functions.
23036 (Info-file-supports-index-cookies): Use Info-virtual-file-p
23037 to check for a virtual file instead of checking a fixed list
23038 of node names.
23039 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
23040 instead of ad-hoc processing of "dir" and (apropos history toc).
23041 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
23042 instead of ad-hoc processing of "dir" and (apropos history toc).
23043 Reread a file when moving from a virtual node.
23044 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
23045 (Info-directory-toc-nodes, Info-directory-find-file)
23046 (Info-directory-find-node): New functions.
23047 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
23048 (Info-history): Move part of code to
23049 `Info-history-find-node'.
23050 (Info-history-toc-nodes, Info-history-find-file)
23051 (Info-history-find-node): New functions.
23052 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
23053 (Info-toc): Move part of code to `Info-toc-find-node'.
23054 (Info-toc-find-node): New function.
4b8b1ec5 23055 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
baf1a55e
JL
23056 the current Info file name to references because now the node
23057 "*TOC*" belongs to the same Info manual.
4b8b1ec5 23058 (Info-toc-build): Rename from `Info-build-toc'.
baf1a55e
JL
23059 (Info-toc-nodes): Rename input argument `file' to `filename'.
23060 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
23061 instead of ad-hoc processing of ("dir" apropos history toc).
23062 (Info-index-nodes): Use Info-virtual-file-p
23063 to check for a virtual file instead of checking a fixed list
23064 of node names.
23065 (Info-index-node): Add check for `Info-current-node-virtual'.
23066 Raise `save-match-data' higher up the tree to contain
23067 `search-forward' too (bug fix).
23068 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
23069 (Info-virtual-index-nodes): New variable.
23070 (Info-virtual-index-find-node, Info-virtual-index): New functions.
23071 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
23072 (Info-apropos-file, Info-apropos-nodes): New variables.
23073 (Info-apropos-toc-nodes, Info-apropos-find-file)
23074 (Info-apropos-find-node, Info-apropos-matches): New functions.
23075 (info-apropos): Move part of code to `Info-apropos-find-node' and
23076 `Info-apropos-matches'.
23077 (Info-mode-map): Bind "I" to `Info-virtual-index'.
23078 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
23079 for a virtual file instead of checking a fixed list of node names.
23080
23081 * simple.el (async-shell-command): New command.
23082
23083 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
23084
23085 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
23086 instead of `mount-info'.
23087
d04bc496
MA
230882009-07-02 Michael Albinus <michael.albinus@gmx.de>
23089
23090 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
4b8b1ec5 23091 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
d04bc496 23092
af0403e0
KH
230932009-07-02 Kenichi Handa <handa@m17n.org>
23094
23095 * international/mule.el (set-keyboard-coding-system): Force *-unix
23096 coding-system to avoid eol conversion.
23097
99278f8a
MA
230982009-07-01 Michael Albinus <michael.albinus@gmx.de>
23099
4b8b1ec5
SM
23100 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
23101 Add handler for `process-file', `shell-command' and
99278f8a
MA
23102 `start-file-process'.
23103 (tramp-gvfs-handle-shell-command)
23104 (tramp-gvfs-handle-start-file-process)
23105 (tramp-gvfs-handle-process-file): New defuns.
4b8b1ec5 23106 (tramp-synce-list-devices): Simplify check for existence of property.
99278f8a 23107
3f1c6666
JD
231082009-07-01 Jan Djärv <jan.h.d@swipnet.se>
23109
23110 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
23111
3f396bac
KH
231122009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
23113
23114 * language/korean.el (set-language-info-alist): Add korean-cp949,
23115 cp949 to spec.
23116
c1185193
KH
231172009-07-01 Kenichi Handa <handa@m17n.org>
23118
23119 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
23120
23121 * international/encoded-kb.el: Deleted.
23122
23123 * international/mule.el (set-keyboard-coding-system): Perform the
23124 necessary setup here instead of calling encoded-kbd-setup-display.
23125
3f150a60
GM
231262009-07-01 Glenn Morris <rgm@gnu.org>
23127
23128 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
23129
b0d5b05b
GM
231302009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
23131
23132 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
23133
4f4126e6
MA
231342009-06-30 Michael Albinus <michael.albinus@gmx.de>
23135
4b8b1ec5
SM
23136 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
23137 Handle also the 'rename case, when setting file modes. (Bug#3712)
48c2d18a 23138 (tramp-default-file-modes): Remove execute permissions.
4f4126e6 23139
7ae3ea65 23140 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
d6ceb380
MA
23141 (top): Add a default for "synce" in `tramp-default-user-alist'.
23142 Add completion function for "synce" method.
23143 (tramp-hal-service, tramp-hal-path-manager)
4b8b1ec5
SM
23144 (tramp-hal-interface-manager, tramp-hal-interface-device):
23145 New defconst.
23146 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
23147 (tramp-synce-list-devices, tramp-synce-parse-device-names):
23148 New defuns.
d6ceb380
MA
23149
23150 * net/trampver.el: Update release number.
7ae3ea65 23151
0ad6626b
KH
231522009-06-30 Kenichi Handa <handa@m17n.org>
23153
23154 * international/fontset.el (setup-default-fontset): Add CJK fonts
23155 for symbols and the other miscellaneous characters.
23156
4b8b1ec5
SM
23157 * language/korea-util.el (setup-korean-environment-internal):
23158 Make char-width-table suitable for Korean environments.
0ad6626b
KH
23159 (exit-korean-environment): Cancel above.
23160
23161 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
23162 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
48c2d18a 23163 setup-function to make char-width-table suitable for respective
0ad6626b
KH
23164 environments, and an exit-function to cancel that.
23165
23166 * language/japan-util.el (setup-japanese-environment-internal):
23167 Call use-cjk-char-width-table with arg `ja_JP'.
23168
23169 * international/characters.el (cjk-char-width-table): Delete it.
23170 (cjk-char-width-table-list): New variable.
23171 (use-cjk-char-width-table): New arg local-name.
23172 (use-default-char-width-table): Fix for the case that Emacs is
23173 already using the default char-width-table.
23174
fd46e893
MA
231752009-06-29 Michael Albinus <michael.albinus@gmx.de>
23176
23177 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
23178 modes mandatory. (Bug#3712)
23179
b87d9f96
AM
231802009-06-29 Alan Mackenzie <acm@muc.de>
23181
23182 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
4b8b1ec5 23183 correction between the visible width of TABs and their number of bytes.
b87d9f96 23184
2d25aa5a
CY
231852009-06-29 Chong Yidong <cyd@stupidchicken.com>
23186
23187 * server.el (server-buffer-done): Prevent kill-buffer from
23188 prompting by clearing the buffer modification flag (Bug#3696).
23189
a3a8b002
DN
231902009-06-28 Michael McNamara <mac@mail.brushroad.com>
23191
bf0b361c 23192 * progmodes/verilog-mode.el (verilog-beg-of-statement)
4b8b1ec5 23193 (verilog-endcomment-reason-re): Support unique case and priority case.
a3a8b002
DN
23194 (verilog-basic-complete-re): Support localparam lineup.
23195 (verilog-beg-of-statement-1): Fix for robustness, unique case.
23196 (verilog-set-auto-endcomments): Fix for unique case, always_comb
23197 commenting.
23198 (verilog-leap-to-case-head): Now support *nested* unique &
23199 priority case statements.
23200 (verilog-auto-lineup): Make just declarations the default (as it
23201 had been).
4b8b1ec5 23202 (verilog-leap-to-case-head): Support priority/unique case statements.
a3a8b002 23203 (verilog-auto-lineup): Rework to give users radio buttons to
7b6fefac 23204 select the various styles of automatic lineup.
a3a8b002
DN
23205 (verilog-error-regexp-alist): Rework to support the XEmacs style
23206 of error regular expressions from compilers, lint tools &
23207 simulators. Note that GNU Emacs has made it impossible for a mode
23208 to load such things.
23209 (electric-verilog-terminate-line, verilog-indent-declaration)
23210 (verilog-auto-wiure): Rework for radio button selection of
23211 auto-lineup selection of specification of auto lineup.
23212 (verilog-beg-of-statement-1): Redesign to support proper operation
23213 in additional code, based on testing with auto-lineup.
23214 (verilog-calculate-indent, assignments & declarations)
23215 (verilog-backward-token): Enhance to support auto-lineup of
23216 assignments & declarations.
23217 (verilog-in-directive-p, verilog-at-struct-p): New function for
23218 easy test of whether we are.
23219 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
23220 to support safe execution at almost anyline.
23221 (verilog-calc-1): Properly support indenting deep inside generate
23222 blocks.
48c2d18a 23223 (verilog-init-font): Remove definition & use of verilog-init-font,
a3a8b002 23224 as it is redundant with font-lock-defaults.
a8f316ca 23225 (verilog-mode): Alter the definition of verilog-font-lock-defaults
a3a8b002
DN
23226 to avoid circular calls if syntax-ppss is a function (as is the
23227 case now in 22.x GNU Emacs) as that function would sometimes call
7b6fefac 23228 itself, leading to (nearly) infinite recursion.
a3a8b002
DN
23229 (verilog-ovm-begin-re, verilog-ovm-end-re)
23230 (verilog-ovm-statement-re, verilog-leap-to-head)
23231 (verilog-backward-token): Add support for OVM macros. Some are
23232 complete statements, and others open and close scopes like begin
23233 and end.
23234 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
23235 (verilog-defun-level-generate-only-re): Really fix the defun-list
7b6fefac 23236 compilation issue.
48c2d18a 23237 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
7b6fefac 23238 coverpoint, constraint and cross statements.
a3a8b002
DN
23239 (verilog-defun-level-list, verilog-generate-defun-level-list)
23240 (verilog-all-defun-level-list): Redo these specifications - it is
23241 too hard to support eval-when compile aggregation of lists also
23242 built at when-compile time.
23243 (verilog-defun-level-list): Place defconsts of variables used in
23244 building regular expressions which are built in eval-when-compile
23245 bodies in the same eval-when-compile body to facilitate compile
23246 without load.
23247 (verilog-beg-block-re-ordered): Support indenting
23248 virtual/protected tasks and functions.
7b6fefac 23249 (verilog-defun-level-list, verilog-in-generate-region-p)
a3a8b002
DN
23250 (verilog-backward-ws&directives, verilog-calc-1): Speed up
23251 indentation of some module items (generate items).
23252 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
23253 across virtual/protected tasks and functions.
23254
232552009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
23256
bf0b361c 23257 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
4b8b1ec5 23258 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
a3a8b002
DN
23259 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
23260 in concatenations. Reported by Yishay Belkind.
23261 (verilog-auto-ascii-enum): Support one-hot state machines in
23262 AUTOASCIIENUM. Suggested by Lloyd Gomez.
23263 (verilog-auto-inst, verilog-auto-inst-port): Include interface
6a7662bb
BR
23264 modport in AUTOINST and add vl-modport for users.
23265 Reported by David Rogoff.
a3a8b002
DN
23266 (verilog-auto-inout-module, verilog-auto-inst)
23267 (verilog-decls-get-interfaces, verilog-insert-definition)
23268 (verilog-insert-one-definition, verilog-read-decls)
23269 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
23270 (verilog-sig-modport, verilog-signals-combine-bus)
23271 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
23272 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
23273 Suggested by David Rogoff.
23274 (verilog-repair-open-comma): Fix non-insertion of comma when
23275 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
23276 (verilog-make-width-expression): Simplify [A-1:0] expression
23277 widths to just {A{1'b0}}.
23278 (verilog-mode): Cleanup checkdoc warnings.
4b8b1ec5
SM
23279 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
23280 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
a3a8b002
DN
23281 inputs/outputs or data type. Suggested by Vasu Kandadi.
23282 (next-error-last-buffer): Fix byte-compiler warning.
23283 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
23284 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
4b8b1ec5 23285 or shell command text during AUTO expansion. Suggested by Tad Truex.
a3a8b002 23286 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
4b8b1ec5 23287 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
01c35094 23288 Fix dotted nets {a.b,c.d} and escaped identifiers being mis-included
7b6fefac 23289 in AUTOINOUT. Reported by Matthew Lovell.
a3a8b002
DN
23290 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
23291 causing use of <= assignments. Reported by Alex Reed.
23292 (verilog-read-decls): Fix triand, trior, wand, wor to be
23293 recognized by AUTOWIRE. Reported by Spencer Isaacson.
23294 (verilog-extended-complete-re): Support import "DPI-C" functions.
23295 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
4b8b1ec5 23296 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
a3a8b002
DN
23297 (verilog-insert-date, verilog-insert-year)
23298 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
23299 Windows systems. Reported by Michael Potts.
23300 (verilog-read-module-name): Fix AUTOINST when the child module
7b6fefac 23301 declaration's name is a tick define. Reported by Elliot Mednick.
a3a8b002 23302 (verilog-read-decls): Fix V2K parameter bit subscripts getting
7b6fefac 23303 passed to next parameter's definition. Reported by Bruce T.
a3a8b002
DN
23304 (verilog-read-decls): Fix detecting "parameter int" when using
23305 AUTOINSTPARAM. Reported by Bruce T.
23306 (verilog-goto-defun): Fix goto not finding modules unless first
7b6fefac 23307 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
4b8b1ec5 23308 (verilog-mode): Expand -f flag arguments on entry to mode so
a3a8b002
DN
23309 verilog-goto-defun will work. Reported by Lawrence Butcher.
23310 (verilog-getopt): Expand environment variables in -f file
23311 arguments. Suggested by Lawrence Butcher.
4b8b1ec5 23312 (verilog-set-define): Fix "Symbol's value as variable is void"
a3a8b002
DN
23313 when reading enumerations.
23314 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
23315 Suggested by Stephen Peltan.
4b8b1ec5 23316 (verilog-read-defines): Fix reading of enumerations in include
a3a8b002
DN
23317 files. Reported by Steve Peltan.
23318
f7c0d931
CY
233192009-06-28 David De La Harpe Golden <david@harpegolden.net>
23320
23321 * files.el (trash-directory): Fix defcustom type.
23322
baf1a55e 233232009-06-28 Juri Linkov <juri@jurta.org>
cebabb67
CY
23324
23325 * help-fns.el (describe-function-1): Correctly locate adviced
23326 functions in hyperlink (Bug#2438).
23327
d63a01ef
CY
233282009-06-28 Chong Yidong <cyd@stupidchicken.com>
23329
23330 * files.el (trash-directory): Change default to nil.
23331 (move-file-to-trash): If trash-directory is nil and
23332 system-move-file-to-trash is unbound, perform freedesktop-style
23333 trashing.
23334
233352009-06-28 David De La Harpe Golden <david@harpegolden.net>
23336
23337 * files.el (move-file-to-trash): Add freedesktop trash
23338 support (Bug#973).
23339
fc2f6a26
GM
233402009-06-28 Glenn Morris <rgm@gnu.org>
23341
23342 * autorevert.el (global-auto-revert-non-file-buffers)
23343 (global-auto-revert-mode): Doc fixes.
23344
00242b07
JB
233452009-06-27 Johan Bockgård <bojohan@gnu.org>
23346
23347 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
23348
f5594f03
CY
233492009-06-27 Chong Yidong <cyd@stupidchicken.com>
23350
e8a2b2da
CY
23351 * faces.el (x-handle-named-frame-geometry): Ensure that we have
23352 opened an X connection before calling x-get-resource (Bug#3194).
23353
f5594f03
CY
23354 * play/doctor.el: Remove reference to obsolete website.
23355 (make-doctor-variables): Correct grammar mistake (Bug#2633).
23356
3c3bf6ce
DN
233572009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
23358
23359 Remove find-file-not-found-hook VC method. (Bug#2757)
23360 * vc-hooks.el (vc-file-not-found-hook)
23361 (vc-default-find-file-not-found-hook): Remove functions.
23362 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
23363 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
23364 * vc.el:
23365 * vc-hg.el:
23366 * vc-git.el: Do not mention find-file-not-found-hook VC method.
23367
e26a7bc0
AM
233682009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
23369
23370 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
3570691b 23371 compatibility function for `looking-back'.
e26a7bc0 23372
4b8b1ec5 23373 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
7b6fefac 23374 Use `ispell-looking-back'.
e26a7bc0 23375
d9848600
MA
233762009-06-24 Michael Albinus <michael.albinus@gmx.de>
23377
23378 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
fc2f6a26 23379 rather than `filename'.
d9848600 23380
05fbc4a9
MB
233812009-06-23 Miles Bader <miles@gnu.org>
23382
23383 * face-remap.el (text-scale-set): New function.
23384
f86ca715
GM
233852009-06-23 Glenn Morris <rgm@gnu.org>
23386
33e2c2e5
GM
23387 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
23388
f529f302
GM
23389 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
23390
34995333
GM
23391 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
23392
cc80ccee
GM
23393 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
23394
84cb770d
GM
23395 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
23396 Simplify Persian conditionals.
23397
d916c965
GM
23398 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
23399 variable `filename'.
23400
b6a44b27
GM
23401 * comint.el (comint-insert-input): Doc fix.
23402
f86ca715
GM
23403 * Makefile.in (ELCFILES): Fix typo in previous change.
23404
666e158e
MB
234052009-06-23 Miles Bader <miles@gnu.org>
23406
23407 * cus-start.el: Add entry for `recenter-redisplay'.
23408
be3e598a 234092009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
77bf3f54
DN
23410
23411 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
23412 Add an optional argument for the backend, use it instead of
23413 calling vc-backend.
4b8b1ec5
SM
23414 (vc-mode-line): Add an optional argument for the backend.
23415 Pass the backend to vc-state and vc-working-revision. Move code for
77bf3f54
DN
23416 special handling for vc-state being a buffer to ...
23417
23418 * vc-rcs.el (vc-rcs-find-file-hook):
23419 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
23420
23421 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
23422 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
23423 vc-stay-local-p and vc-mode-line calls.
23424
23425 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
23426 (vc-cvs-diff, vc-cvs-annotate-command)
23427 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
23428 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
23429 vc-mode-line calls.
23430
23431 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
23432 direct comparison.
23433 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
23434 backend when calling vc-mode-line.
23435 (vc-register): Do not create a closure for calling the vc register
23436 function, call it directly.
23437
2764748c
DN
234382009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
23439
23440 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
23441 to make it obvious item can be clicked.
f5a0b281
DN
23442
23443 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
23444
d4a885b2
KH
234452009-06-23 Kenichi Handa <handa@m17n.org>
23446
23447 * language/korea-util.el (korean-key-bindings): Change the binding
23448 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
23449 same command.
23450
e3610693
MA
234512009-06-22 Michael Albinus <michael.albinus@gmx.de>
23452
23453 Sync with Tramp 2.1.16.
23454
23455 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
23456
23457 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
23458 when a loading of a package fails. Completion function for rsync
23459 is `tramp-completion-function-alist-ssh'.
23460 (all): Replace all calls of `split-string' and
23461 `tramp-split-string' by `tramp-compat-split-string'.
23462 (tramp-default-method): Use `tramp-compat-process-running-p'.
23463 (tramp-default-proxies-alist): Allow also Lisp forms.
23464 (tramp-remote-path): Add choice "Private Directories".
4b8b1ec5 23465 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
e3610693
MA
23466 (tramp-domain-regexp): Allow also "-", "_" and ".".
23467 (tramp-end-of-output): Remove newlines, and add "$" at the end.
23468 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
23469 (tramp-debug-message): Insert header line in debug buffer.
4b8b1ec5
SM
23470 (tramp-handle-directory-files-and-attributes-with-stat):
23471 Care about filenames with spaces, or starting with "-".
e3610693
MA
23472 (tramp-handle-dired-uncache): New defun.
23473 (tramp-handle-insert-directory): Don't flush the directory from
23474 cache, this is handled by `dired-uncache' now.
23475 (tramp-handle-insert-file-contents): Improve error handling.
23476 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
23477 Quote `tramp-end-of-output'.
23478 (tramp-action-password): Improve trace message.
4b8b1ec5
SM
23479 (tramp-check-for-regexp): Both echoes must be present, before removing.
23480 (tramp-open-connection-setup-interactive-shell): Trace coding system.
e3610693
MA
23481 (tramp-compute-multi-hops): Eval cons cells of
23482 `tramp-default-proxies-alist'.
23483 (tramp-maybe-open-connection): Use the same command pattern for
23484 first hop and further hops.
23485 (tramp-wait-for-output): Remove handling of newlines.
23486 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
23487 (tramp-split-string): Remove function. It is handled in
23488 tramp-compat now.
23489
4b8b1ec5
SM
23490 * net/tramp-cmds.el (tramp-bug):
23491 Recommend `tramp-cleanup-all-connections' in the bug mail.
e3610693
MA
23492
23493 * net/tramp-compat.el (tramp-compat-split-string)
23494 (tramp-compat-process-running-p): New defuns.
23495
23496 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
23497 for `dired-uncache'.
23498
23499 * net/tramp-gvfs.el: New package.
23500
4b8b1ec5
SM
23501 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
23502 Add handler for `dired-uncache'.
e3610693
MA
23503 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
23504
23505 * net/trampver.el: Update release number. Make version check fit
23506 for SXEmacs 22.
23507
13a3f374
JM
235082009-06-22 Jim Meyering <meyering@redhat.com>
23509
e0a28a3b 23510 Automatically handle .xz suffix (XZ-compressed files), too.
13a3f374
JM
23511 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
23512 XZ is the successor to LZMA: <http://tukaani.org/xz/>
23513
5242671e 235142009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
4e2af782 23515 Nick Roberts <nickrob@snap.net.nz>
13a3f374 23516
e0a28a3b 23517 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
5242671e
NR
23518 repository (http://sphinx.net.ru/hg/gdb-mi/).
23519
3fde45af
GM
235202009-06-22 Glenn Morris <rgm@gnu.org>
23521
46253b34
GM
23522 * files.el (dir-locals-collect-mode-variables): Allow for any number of
23523 `mode' and `eval' entries. (Bug#3430)
23524
97e18192
GM
23525 * Makefile.in (ELCFILES): Add fadr.elc.
23526
731a00fb
GM
23527 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
23528 differing behavior of \n and ^ in strings. (Bug#3385)
23529
c66cd0ff
GM
23530 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
23531
3fde45af
GM
23532 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
23533 property.
23534 (lisp-indent-function): Make it a defcustom.
23535
db2241a0
NR
235362009-06-21 Nick Roberts <nickrob@snap.net.nz>
23537
23538 * progmodes/gdb-ui.el: Replace with ...
5242671e 23539 * progmodes/gdb-mi.el: ... this file.
db2241a0 23540 * progmodes/gud.el: Modify for gdb-mi.el.
fca428fe
GM
23541
235422009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
23543
db2241a0
NR
23544 * fadr.el: New file.
23545
38d4f316 23546See ChangeLog.14 for earlier changes.
e3d51b27
MR
23547
23548;; Local Variables:
23549;; coding: utf-8
e3d51b27
MR
23550;; End:
23551
73b0cd50 23552 Copyright (C) 2009-2011 Free Software Foundation, Inc.
e3d51b27
MR
23553
23554 This file is part of GNU Emacs.
23555
23556 GNU Emacs is free software: you can redistribute it and/or modify
23557 it under the terms of the GNU General Public License as published by
23558 the Free Software Foundation, either version 3 of the License, or
23559 (at your option) any later version.
23560
23561 GNU Emacs is distributed in the hope that it will be useful,
23562 but WITHOUT ANY WARRANTY; without even the implied warranty of
23563 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23564 GNU General Public License for more details.
23565
23566 You should have received a copy of the GNU General Public License
23567 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.