* play/landmark.el: Change `lm-' prefix to `landmark-' (Bug#7672).
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
4d0143e6
JA
12011-01-22 Jari Aalto <jari.aalto@cante.net>
2
3 * play/landmark.el: Change `lm-' prefix to `landmark-' (Bug#7672).
4 (lm): Rename to landmark.
5 (lm-test-run): Rename to landmark-test-run.
6
e3545d0d
CY
72011-01-22 Chong Yidong <cyd@stupidchicken.com>
8
9 * emacs-lisp/re-builder.el (reb-mode-map): Fix logic error in
10 "Case sensitive" menu item.
11
7c82f3e2 122011-01-22 Roland McGrath <roland@frob.com>
6e1dbaa9
RM
13
14 * comint.el (comint-replace-by-expanded-history-before-point): Fix
15 expansion of !$ and !!:N syntax to pick the indicated word (bug#7883).
16
7c82f3e2 172011-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
0f1f97ca
SM
18
19 * progmodes/js.el (js--regexp-literal): Count backslashes (bug#7882).
20
7c82f3e2 212011-01-22 Jari Aalto <jari.aalto@cante.net>
26a27884 22
6e1dbaa9
RM
23 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
24 Assume foo(bar) is a manpage reference rather than some unquoted
25 symbol (bug#7705).
26a27884 26
7c82f3e2 272011-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
d5e632d8
SM
28
29 * subr.el (shell-quote-argument): Properly quote \n (bug#7687).
30 Suggested by Flo <sensorflo@gmail.com>.
31
7c82f3e2 322011-01-22 Glenn Morris <rgm@gnu.org>
d00b05c9
GM
33
34 * progmodes/compile.el (compilation-error-regexp-alist):
35 Fix custom type. (Bug#7812)
36
4936e3ba
KM
372011-01-22 Ken Manheimer <ken.manheimer@gmail.com>
38
39 * allout.el (allout-prefixed-keybindings): Bind (prefixed) '#' to
40 allout-number-siblings, in keeping with what obtained due to
41 (now-defunct) allout-keybindings-list. Ditch repeat binding to
42 (prefixed) ?i.
43 (allout-before-change-handler): Better expose spots affected by
44 undo.
45
cde7e38b
CY
462011-01-22 Chong Yidong <cyd@stupidchicken.com>
47
48 * man.el (Man-highlight-references0): Use make-button (Bug#7881).
49
6b072b27
PH
502011-01-22 Phil Hagelberg <phil@evri.com>
51
52 * pcmpl-unix.el (pcmpl-ssh-config-file): New option.
53 (pcmpl-ssh-known-hosts): Rename from pcmpl-ssh-hosts.
54 (pcmpl-ssh-config-hosts): New function.
55 (pcmpl-ssh-hosts): Use pcmpl-ssh-config-hosts in addition to
56 pcmpl-ssh-known-hosts.
57
26d82c3a
JB
582011-01-21 Jay Belanger <jay.p.belanger@gmail.com>
59
c310ff4f
JB
60 * calc/calc-undo.el (calc-undo): Autoload it.
61 * calc/calc-ext.el (calc-init-extensions): Remove keybindings
62 and autoload for `calc-undo'.
63 * calc/calc.el (calc-mode-map): Add keybindings for `calc-undo'.
64 * calc/calc-prog.el:
65 * calc/calc-graph.el:
66 * calc/calc-map.el: Change `arglist' to `math-arglist' throughout.
26d82c3a 67
a10c4149
ŠN
682011-01-21 Štěpán Němec <stepnem@gmail.com> (tiny change)
69
70 * calc/calc-ext.el (calc-init-extensions): Map all `undo'
71 keybindings to `calc-undo'.
72
8dabbfd6
SM
732011-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
74
75 Don't mess with *temp*.
76 * obsolete/spell.el: Move from textmodes/spell.el.
77 (spell-string):
78 * term.el (term-read-input-ring):
79 * startup.el (display-startup-echo-area-message):
80 * progmodes/antlr-mode.el (antlr-directory-dependencies):
81 * comint.el (comint-read-input-ring): Use with-temp-buffer.
82 * international/mule.el (ctext-pre-write-conversion): Don't hardcode
83 point-min==1.
84
d3e51865
KM
852011-01-20 Ken Manheimer <ken.manheimer@gmail.com>
86
d42f7802
KM
87 * allout.el: (allout-institute-keymap): Use fset instead of
88 reapplying defalias.
89
90 (allout-hotspot-key-handler): Check for non-control-modified
91 bindings for hotspot characters if there are no control-modified
92 versions.
93
d3e51865
KM
94 * allout.el: Summary - migrate to defining allout mode using
95 define-minor-mode instead of defun. Significantly clean-up
96 internal keymap provisions, refactoring and, in the process,
97 removing a lot of accumulated cruft.
98
99 allout-mode-map is now a keymap by virtue of being a defalias to
100 allout-mode-map-value, which contains the actual keymap structure.
101
8dabbfd6
SM
102 (allout-mode): Use define-minor-mode rather than defun.
103 Remove now-unnecessary minor-mode setup activities from the body.
d3e51865
KM
104 Specify :keymap as allout-mode-map so the minor-mode-map-alist
105 entry will be '(allout-mode . allout-mode-map) - see
106 allout-mode-map-value, below. Adjust docstring to track changes.
107 (allout-minor-mode): Remove this defalias, now that we're using
108 define-minor-mode.
109 (allout-mode-map): Set value to be 'allout-mode-map. The actual
110 keymap is allout-mode-map-value, via defalias.
111 (allout-mode-map-value): The variable holding the actual mode
112 keymap structure, by virtue of defalias from allout-mode-map.
8dabbfd6 113 (allout-compose-and-institute-keymap): Rename from
d3e51865
KM
114 allout-bind-keys, and including the binding-composition
115 functionality of the former produce-allout-mode-map and
116 allout-setup-mode-map.
117 (allout-institute-keymap): Take over the "setup" part of the former
118 allout-setup-mode-map. Reassign allout-mode-map-value value and
119 update the defalias.
120 (allout-command-prefix) (allout-prefixed-keybindings)
8dabbfd6
SM
121 (allout-unprefixed-keybindings):
122 Use allout-compose-and-institute-keymap to process the bindings.
d3e51865
KM
123 (allout-unprefixed-keybindings): Remove extraneous '?' question
124 marks.
125 (allout-prefixed-keybindings): Elide binding to (prefixed) \C-h -
8dabbfd6
SM
126 user can customize if they want to use that binding.
127 Bind allout-copy-topic-as-kill to (prefixed) \M-k.
128 Bind allout-up-current-level to (prefixed) \C-u. (I think i mistakenly
d3e51865
KM
129 elided that, previously, instead of the one for \C-h.)
130 (allout-hotspot-key-handler): Remove attempt to resolve the key
131 through the literal key-string lookup on allout-keybindings-list.
132 That probably hasn't worked for a Long Time, and removal of
133 allout-keybindings-list further simplifies the keybindings
134 situation.
135 (allout-pre-command-business): Use allout-mode-map-value instead
136 of allout-mode-map.
137 (allout-preempt-trailing-ctrl-h): Remove. The user can customize
138 the bindings if they want to use a keybinding having a trailing
139 \C-h. No deprecation needed since this feature was never in a
140 release.
141 (allout-keybindings-list): Remove. It's not been useful for a
142 while. (See allout-hotspot-key-handler changes, above.)
143 (produce-allout-mode-map): Remove. Consolidate into
144 allout-compose-and-institute-keymap.
145 (allout-mode-map-adjustments): Remove. No longer necessary with
146 removal of allout-preempt-trailing-ctrl-h.
147 (allout-setup-mode-map): Remove. Consolidate into
148 allout-compose-and-institute-keymap and allout-institute-keymap.
149
c11136ec
GM
1502011-01-20 Glenn Morris <rgm@gnu.org>
151
dbfb414e
GM
152 * vc/vc-svn.el (vc-svn-after-dir-status): Tweak previous change.
153
c11136ec
GM
154 * simple.el (read-expression-history): Remove, it's in minibuf.c.
155
9aea757b
CY
1562011-01-20 Chong Yidong <cyd@stupidchicken.com>
157
158 * subr.el (y-or-n-p): Revert 2011-01-07 change, removing ARGS.
159
160 * files.el (find-alternate-file, basic-save-buffer)
161 (basic-save-buffer-2, revert-buffer, recover-file)
162 (kill-buffer-ask, abort-if-file-too-large)
163 (set-visited-file-name, write-file, backup-buffer)
164 (basic-save-buffer, save-some-buffers):
165 * dired-aux.el (dired-compress-file): Callers changed.
166
5dd4f3f7
GM
1672011-01-19 Glenn Morris <rgm@gnu.org>
168
169 * vc/vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
170 Also check the property status. (Bug#7861)
171
56761182
MA
1722011-01-18 Michael Albinus <michael.albinus@gmx.de>
173
174 * net/tramp.el (tramp-debug-message): Extend function exclude
175 list. Use `regexp-opt'.
176
a9faac5c 1772011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
1a1fcbe1 178
9cc3a0c7
SM
179 * textmodes/tex-mode.el (tex-font-lock-verb): Make sure \verb
180 highlighting doesn't spill over subsequent lines.
181
1a1fcbe1
SM
182 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't re-evaluate the
183 keymap expression. Improve docstring.
184
74a10be5
SM
185 * electric.el (electric-indent-post-self-insert-function):
186 Don't auto-indent for indent-to-left-margin, it's too often
187 counter-productive.
188
721be9cd
TH
1892011-01-16 Tassilo Horn <tassilo@member.fsf.org>
190
191 * strokes.el (strokes-read-stroke): Re-fill strokes buffer with
192 spaces if the frame was resized, so that the full visible buffer
193 serves as canvas for strokes.
194
a767645f
GM
1952011-01-16 Glenn Morris <rgm@gnu.org>
196
197 * info-xref.el (info-xref-docstrings): Replace cl function.
e5c7913c 198 Also skip directories.
a767645f 199
444ee8dd
KR
2002011-01-16 Kevin Ryde <user42@zip.com.au>
201
202 * info-xref.el: Version 3.
203 (info-xref-check, info-xref-check-all): Move commentary details
204 into docstrings for better visibility.
205 Use compilation-mode for the results buffer.
206 (info-xref-output, info-xref-output-error, info-xref-with-output)
207 (info-xref-filename, info-xref-in-progress):
208 New internals for this.
209 (info-xref-check-list, info-xref-check-buffer)
210 (info-xref-check-all-custom): Use those.
211 (info-xref-output-buffer): Rename from info-xref-results-buffer.
212 (info-xref-output-heading): Rename from info-xref-filename-heading.
213 (info-xref-good, info-xref-bad, info-xref-xfile-alist)
214 (info-xref-filename-heading): Move to output managing section.
215 (info-xref-docstrings): New command checking "Info node `(foo)Bar'"
216 (info-xref-lock-file-p, info-xref-with-file): New helpers for it.
217 (info-xref-subfile-p): Move to generic section with those two.
218 (info-xref-check-node): New function split from
219 info-xref-check-buffer, shared by info-xref-docstrings.
220 (info-xref-goto-node-p): Move to a checking section with that func.
221 (info-xref-unavail): New counter.
222 (info-xref-check-node): Use it.
223 (info-xref-with-output): Show count of unavailables at end of output.
224 (info-xref-all-info-files): Exclude ".*" dotfiles. Ignore broken
225 symlinks. Exclude .texi files. Exclude Emacs backup files.
226 (info-xref-check-all-custom): Fix quietening viper-mode and
227 gnus-registry-install -- use setq not let so as not to unbind
228 after load.
229
d4119912
JL
2302011-01-16 Juri Linkov <juri@jurta.org>
231
232 * isearch.el (isearch-abort): Don't quit if search has
233 an incomplete regexp (isearch-error is non-nil). (Bug#7534)
234
b024d9f0
MD
2352011-01-15 Mark Diekhans <markd@soe.ucsc.edu>
236
237 * files.el (backup-buffer): Make last-resort backup file in
238 .emacs.d (Bug#6953).
239
240 * subr.el (locate-user-emacs-file): If .emacs.d does not exist,
241 make it with permission 700.
242
d52969e8 2432011-01-15 Kenichi Handa <handa@m17n.org>
1a6a03e4 244
74a10be5
SM
245 * mail/rmailmm.el (rmail-mime-insert-header):
246 Set rmail-mime-coding-system to a cons whose car is the last coding
1a6a03e4
KH
247 system used to decode the header.
248 (rmail-mime-find-header-encoding): New function.
74a10be5
SM
249 (rmail-mime-insert-decoded-text):
250 Override rmail-mime-coding-system if it is a cons.
1a6a03e4
KH
251 (rmail-show-mime): If only a header part was decoded, find the
252 coding system while ignoring mm-charset-override-alist.
253
d52969e8 2542011-01-15 Chong Yidong <cyd@stupidchicken.com>
c88aaf48
CY
255
256 * subr.el (event-start, event-end): Doc fix (Bug#7826).
257
d52969e8 2582011-01-15 Kenichi Handa <handa@m17n.org>
e7ca0062
KH
259
260 * mail/rmailmm.el (rmail-mime-next-item)
261 (rmail-mime-previous-item): Delete them.
262 (rmail-mime-shown-mode): Recursively call for children.
74a10be5
SM
263 (rmail-mime-hidden-mode): Delete the 2nd arg TOP.
264 Callers changed.
e7ca0062
KH
265 (rmail-mime-raw-mode): Recursively call for children.
266 (rmail-mode-map): Change mapping of tab and backtab to
267 forward-button and backward-button respectively.
268 (rmail-mime-insert-tagline): Always insert "Hide" or "Show"
269 button.
270 (rmail-mime-update-tagline): New function.
271 (rmail-mime-insert-text): Call rmail-mime-update-tagline if the
272 body display is changed.
74a10be5 273 (rmail-mime-toggle-button): Rename from rmail-mime-image.
e7ca0062
KH
274 (rmail-mime-image): Delete this button type.
275 (rmail-mime-toggle): New button type.
276 (rmail-mime-insert-bulk): Call rmail-mime-update-tagline if the
277 body display is changed. Change the save button label to "Save".
278 Don't process show/hide button here.
279 (rmail-mime-insert-multipart): Call rmail-mime-update-tagline if
280 the body display is changed. Unconditionally call
281 rmail-mime-insert for children.
282 (rmail-mime-handle): Update `display' vector of the just inserted
283 entity.
284 (rmail-mime-process): If mail-header-parse-content-type returns
285 nil, use "text/plain" as the fallback type.
286 (rmail-mime-insert): For raw-mode, recursively call
287 rmail-mim-insert for children.
288 (rmail-mime): Handle the case that the current buffer is not rmail
289 buffer (e.g. in summary buffer).
290
d52969e8 2912011-01-15 Kenichi Handa <handa@m17n.org>
e7ca0062
KH
292
293 * mail/rmailmm.el (rmail-mime-next-item)
294 (rmail-mime-previous-item): Skip the body of a non-multipart
295 entity if a tagline is shown.
296
362b9d48
GM
2972011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
298
299 * tmm.el (tmm-get-keymap): Skip bindings without labels (bug#7721).
300 (tmm-prompt): Simplify.
301 (tmm-add-prompt): Remove unused var `win'.
302
303 * whitespace.el (global-whitespace-newline-mode): Fix call (bug#7810)
304 to minor mode which used nil accidentally to mean "turn off".
305
3062011-01-15 Michael Albinus <michael.albinus@gmx.de>
307
308 * net/tramp-sh.el (tramp-find-inline-compress)
309 (tramp-get-inline-coding): Quote command after pipe symbol for
310 local calls under W32. (Bug#6784)
311
3122011-01-15 Michael Albinus <michael.albinus@gmx.de>
313
314 * net/tramp.el (tramp-default-method): Initialize with pscp/plink
315 only when running under W32.
316
3172011-01-15 Eli Zaretskii <eliz@gnu.org>
318
319 * progmodes/grep.el (grep-compute-defaults): Quote the program
320 file name after the pipe symbol in Grep templates. (Bug#6784)
321 * jka-compr.el (jka-compr-partial-uncompress): Likewise.
322
3232011-01-15 Lennart Borgman <lennart.borgman@gmail.com>
324
325 * buff-menu.el (Buffer-menu-buffer-list): New var.
326 (Buffer-menu-revert-function, list-buffers-noselect): Use it, so a
327 restricted buffer list is not lost on revert (Bug#7749).
328
3292011-01-15 Eric Hanchrow <eric.hanchrow@gmail.com>
330
331 * net/ldap.el (ldap-search-internal): Discard stderr output.
332
3332011-01-15 Eli Zaretskii <eliz@gnu.org>
334
335 * files.el (directory-abbrev-alist): Doc fix. (Bug#7777)
336
3372011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
338
339 * vc-bzr.el (vc-bzr-annotate-time): Tweak previous change.
340
3412011-01-15 Kenichi Handa <handa@m17n.org>
342
343 * mail/rmailmm.el (rmail-mime-insert-bulk): Display an unknown
344 part as a plain text.
345 (rmail-mime-process-multipart): Set the default content-type to
346 nil for unknown multipart subtypes (bug#7651).
347
6d3d6113
SM
3482011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
349
4391b429
SM
350 * hexl.el (hexl-mode-old-*): Remove.
351 (hexl-mode--old-var-vals): New var to replace them.
352 (hexl-mode--minor-mode-p, hexl-mode--setq-local): New funs.
353 (hexl-mode, hexl-follow-line, hexl-activate-ruler):
354 Use them to set local vars (bug#7846).
355 (hexl-mode-exit): Use hexl-mode--old-var-vals to restore state.
356 (hexl-backward-short, hexl-backward-word, hexl-scroll-down)
357 (hexl-scroll-up, hexl-end-of-1k-page, hexl-end-of-512b-page): Simplify.
358
6d3d6113
SM
359 * vc/smerge-mode.el: Resolve comment conflicts more aggressively.
360 (smerge-resolve--normalize-re): New var.
361 (smerge-resolve--extract-comment, smerge-resolve--normalize): New funs.
362 (smerge-resolve): Use them.
363 * newcomment.el (comment-only-p): New function.
364 (comment-or-uncomment-region): Use it.
365
77ab81d0 3662011-01-14 Brent Goodrick <bgoodr@gmail.com> (tiny change)
8d4708af
BG
367
368 * abbrev.el (prepare-abbrev-list-buffer): If listing local abbrev
369 table, get the value before switching to the output buffer. (Bug#7733)
370
77ab81d0 3712011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
364df1cc
SM
372
373 * progmodes/python.el (python-mode): Don't impose font-lock (bug#3628).
374
8faba62c
KS
3752011-01-14 Kim F. Storm <storm@cua.dk>
376
377 * emulation/cua-base.el (cua--init-keymaps):
378 Remap exchange-point-and-mark in cua-global-keymap.
379
ab7eb811
TH
3802011-01-14 Tassilo Horn <tassilo@member.fsf.org>
381
382 * progmodes/sh-script.el (sh-other-keywords): Add ZSH's foreach
383 loop keyword.
384
fc55380c
SM
3852011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
386
387 * emacs-lisp/easymenu.el: Add :enable (bug#7754), and obey :label.
388 Require CL.
389 (easy-menu-create-menu, easy-menu-convert-item-1):
390 Use :label rather than nil for labels. Use `case'.
391 Add :enable as alias for :active.
392 (easy-menu-binding): Obey :label.
393
dbed16aa
SM
3942011-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
395
4d789d84
SM
396 Use run-mode-hooks for major mode hooks (bug#513).
397 * textmodes/reftex-toc.el (reftex-toc-mode-map):
398 Rename from reftex-toc-map.
399 (reftex-toc-mode): Use define-derived-mode.
400 * textmodes/reftex-sel.el (reftex-select-shared-map): New map.
401 (reftex-select-label-mode-map, reftex-select-bib-mode-map):
402 Rename from reftex-select-(label|bib)-map. Move init into declaration.
403 (reftex-select-label-mode, reftex-select-bib-mode):
404 Use define-derived-mode.
405 * textmodes/reftex-index.el (reftex-index-phrases-mode-map)
406 (reftex-index-mode-map): Rename from reftex-index(-phrases)-map.
407 Move init into delcaration.
408 (reftex-index-mode, reftex-index-phrases-mode):
409 Use define-derived-mode.
410 * speedbar.el (speedbar-mode-syntax-table): Renaqme from
411 speedbar-syntax-table. Move init into declaration.
412 (speedbar-mode-map): Rename from speedbar-key-map.
413 Move init into declaration.
414 (speedbar-file-key-map): Move init into declaration.
415 (speedbar-mode): Use define-derived-mode.
416 * recentf.el (recentf-mode): Don't run hook (or message) redundantly.
417 * net/rcirc.el (rcirc-mode): Use run-mode-hooks.
418 * emacs-lisp/chart.el (chart-mode-map): Rename from chart-map.
419 (chart-face-list): Move initialization into declaration.
420 (chart-mode): Use define-derived-mode.
421 * calculator.el (calculator-mode-map): Move init into declaration.
422 (calculator-mode): Use define-derived-mode.
423
b49a2dbf
SM
424 * mail/mail-utils.el (mail-strip-quoted-names): Make the regexp code
425 work for nested comments.
426
dbed16aa
SM
427 * progmodes/prolog.el: Use syntax-propertize. Further code cleanup.
428 (prolog-use-prolog-tokenizer-flag): Change default when
429 syntax-propertize can be used.
430 (prolog-syntax-propertize-function): New var.
431 (prolog-mode-variables): Move make-local-variable into `set'.
432 Don't make comment-column local since we don't set it.
433 Set comment-add (as it was in previous prolog.el). Use dolist.
434 Set syntax-propertize-function.
435 (prolog-mode, prolog-inferior-mode):
436 Call prolog(-inferior)-menu directly, not through the mode-hook.
437 (prolog-buffer-module, prolog-indent-level)
438 (prolog-paren-is-the-first-on-line-p, prolog-paren-balance)
439 (prolog-comment-limits, prolog-goto-comment-column):
440 Use line-(end|beginning)-position.
441 (prolog-build-prolog-command): Tighten up regexp.
442 (prolog-consult-compile): Move make-local-variable into `set'.
443 (prolog-consult-compile-filter, prolog-goto-next-paren)
444 (prolog-help-on-predicate, prolog-clause-info)
445 (prolog-mark-predicate): Don't let+setq.
446 (prolog-indent-line): Use indent-line-to.
447 Only call prolog-goto-comment-column if necessary.
448 (prolog-indent-level): Use bobp.
449 (prolog-first-pos-on-line): Remove, not used any more.
450 (prolog-in-string-or-comment): Use syntax-ppss if available.
451 (prolog-help-on-predicate): Use read-string.
452 (prolog-goto-predicate-info): Simplify.
453 (prolog-read-predicate): Use `default' rather than `initial'.
454 (prolog-temporary-file): Use make-temp-file to close a security hole.
455 (prolog-toggle-sicstus-sd): New command.
456 (prolog-electric-underscore, prolog-variables-to-anonymous):
457 Use dynamic-scoping as it was meant.
458 (prolog-menu): Move menu definitions to top-level.
459 Use a toggle-button for Sicstus's source debugger.
460 Change "Code" to the more usual "Prolog", and hence change "Prolog"
461 to "System".
462 (prolog-inferior-menu): Reuse prolog-menu's help menu.
463 Move other menu definition to top-level.
464
50f8cd96
TH
4652011-01-13 Tassilo Horn <tassilo@member.fsf.org>
466
5b355315
TH
467 * doc-view.el (doc-view-open-text): Use meaningful text buffer
468 name. Keep original document's directory as default-directory
469 (bug#6446).
1281bd51
TH
470 (doc-view-initiate-display): Fall back to normal mode when
471 doc-view-mode cannot be enabled, also when extracting the document
472 text into a separate buffer (bug#6446).
5b355315 473
50f8cd96
TH
474 * simple.el (shell-command): Don't error out if shell command
475 buffer contains text with non-nil read-only property when erasing
476 the buffer.
477
821f936d
KS
4782011-01-13 Kim F. Storm <storm@cua.dk>
479
480 * ido.el (ido-may-cache-directory): Move "too-big" check later.
481 (ido-next-match, ido-prev-match): Fix stray reordering of matching
482 items when cycling through the matches.
483
f754f898
TH
4842011-01-13 Tassilo Horn <tassilo@member.fsf.org>
485
486 * dired-x.el (dired-omit-verbose): New defcustom that allows
487 disabling the omit messages.
488 (dired-omit-expunge): Use it.
489
d221e780
CO
4902011-01-13 Christian Ohler <ohler@gnu.org>
491
492 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: New files.
493
a03b542a
CY
4942011-01-13 Chong Yidong <cyd@stupidchicken.com>
495
496 * font-lock.el (font-lock-verbose): Default to nil.
497
25ca2e61
CY
4982011-01-13 Chong Yidong <cyd@stupidchicken.com>
499
500 * simple.el (sendmail-user-agent-compose): Move to sendmail.el.
501 (compose-mail): New arg RETURN-ACTION.
502 (compose-mail-other-window, compose-mail-other-frame): Likewise.
503
504 * mail/sendmail.el (mail-return-action): New var.
505 (mail-mode): Make it buffer-local.
506 (mail-bury): Obey it. Move special Rmail window handling to
507 rmail-mail-return.
508 (mail, mail-setup): New arg RETURN-ACTION.
509 (sendmail-user-agent-compose): Move from simple.el.
510
511 * mail/rmail.el (rmail-mail-return): New function.
512 (rmail-start-mail): Pass it to compose-mail.
513
2a8b13af
CY
5142011-01-12 Chong Yidong <cyd@stupidchicken.com>
515
b2948a87
CY
516 * menu-bar.el (menu-bar-custom-menu): Tweak Mule and Customize
517 menus. Add menu item for customize-themes.
518
519 * cus-theme.el (customize-themes):
74a10be5
SM
520 * emacs-lisp/package.el (package--list-packages):
521 Use switch-to-buffer.
2a8b13af 522
059616e5
JB
5232011-01-11 Johan Bockgård <bojohan@gnu.org>
524
525 * emacs-lisp/unsafep.el (unsafep): Handle backquoted forms.
526
04380ff1
SM
5272011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
528
529 * progmodes/prolog.el: Fix up coding convention and such.
530 (prolog-indent-width): Use the same default as in
531 previous prolog.el rather than tab-width which depends on which buffer
532 is current when the file is loaded.
533 (prolog-electric-newline-flag): Only enable if electric-indent-mode
534 is not available.
535 (prolog-emacs): Remove. Use (featurep 'xemacs) instead.
536 (prolog-known-systems): Remove.
537 (prolog-mode-syntax-table, prolog-inferior-mode-map):
538 Move initialization into declaration.
539 (prolog-mode-map): Move initialization into declaration.
540 Remove system-specific mode-map vars, since they referred to the same
541 keymap anyway.
542 (prolog-mode-variables): Obey the user's preference w.r.t
543 adaptive-fill-mode. Prefer symbol-value to `eval'.
544 (prolog-mode-keybindings-edit): Add compatibility bindings.
545 (prolog-mode): Use define-derived-mode. Don't handle mercury here.
546 (mercury-mode-map): New var.
547 (mercury-mode, prolog-inferior-mode): Use define-derived-mode.
548 (prolog-ensure-process, prolog-process-insert-string)
549 (prolog-consult-compile): Use with-current-buffer.
550 (prolog-guess-fill-prefix): Simplify data flow.
551 (prolog-replace-in-string): New function to use instead of
552 replace-in-string.
553 (prolog-enable-sicstus-sd): Don't abuse `eval'.
554 (prolog-uncomment-region): Use `uncomment-region' when available.
555 (prolog-electric-colon, prolog-electric-dash): Use `eolp'.
556 (prolog-int-to-char, prolog-char-to-int): New functions to use instead
557 of int-to-char and char-to-int.
558 (prolog-mode-hook, prolog-inferior-mode-hook): Don't force font-lock.
559
e2019526
SB
5602011-01-11 Stefan Bruda <stefan@bruda.ca>
561
562 * progmodes/prolog.el: Replace by a whole new file.
563
3fa173b4
SM
5642011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
565
566 * subr.el (eval-after-load): Fix timing for features (bug#7769).
567 (declare-function, undefined, insert-for-yank)
568 (replace-regexp-in-string): Follow checkdoc's recommendations.
569
7973bcea
SM
5702011-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
571
572 * calendar/diary-lib.el (diary-mode): Refresh *Calendar* after
573 refreshing the diary buffer.
574
0af8c88b
KM
5752011-01-10 Ken Manheimer <ken.manheimer@gmail.com>
576
7973bcea 577 * allout.el: Add 2011 to the file copyright.
0af8c88b
KM
578 (allout-encrypt-string): Prevent encryption from adding an extra
579 newline at the end of the topic body.
580 (allout-version): Increment to 2.3.
581
1a27c64e
MA
5822011-01-10 Michael Albinus <michael.albinus@gmx.de>
583
7973bcea
SM
584 * net/dbus.el (dbus-unregister-service): Complete doc.
585 Fix call of dbus-error signal.
5c0b4070 586 (dbus-register-property): Use `dont-register' keyword.
1a27c64e 587
0a203b61
MA
5882011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
589
590 * net/dbus.el (dbus-unregister-service): Translate returned
591 integer into a symbol.
592 (dbus-register-property): Use `dbus-register-service' to do the
593 name registration.
594
895123f5
CY
5952011-01-09 Chong Yidong <cyd@stupidchicken.com>
596
7973bcea
SM
597 * progmodes/idlw-help.el (idlwave-help-link): Inherit from link face.
598 Suggested by Joakim Verona.
12e1f328 599
732eb50a
CY
600 * comint.el (comint-highlight-prompt): Inherit minibuffer-prompt.
601
895123f5
CY
602 * wid-edit.el (visibility): Replace :on-image and :off-image
603 widget properties with :on-glyph and :off-glyph, for consistency
604 with the `visibility' widget.
605 (widget-toggle-value-create, widget-visibility-value-create):
606 Merge into a single function `widget-toggle-value-create'.
607
608 * cus-edit.el (custom-variable-value-create, custom-visibility)
7973bcea
SM
609 (custom-face-edit-value-create, custom-face-value-create):
610 Replace :on-image and :off-image widget properties with :on-glyph and
895123f5
CY
611 :off-glyph, for consistency with the `visibility' widget.
612
c8043a22
AS
6132011-01-09 Andreas Schwab <schwab@linux-m68k.org>
614
615 * net/ldap.el (ldap-search-internal): Don't use eval.
616
b7617f6d
CY
6172011-01-09 Chong Yidong <cyd@stupidchicken.com>
618
973f1f2a
CY
619 * subr.el (read-char-choice): Use read-key.
620
b7617f6d
CY
621 * custom.el (custom-safe-themes): Rename from
622 custom-safe-theme-files. Add :risky tag.
623 (load-theme, custom-theme-load-confirm): Save sha1 hashes to
624 custom-safe-themes, not filenames. Suggested by Stefan Monnier.
625
900503ae
CY
6262011-01-09 Chong Yidong <cyd@stupidchicken.com>
627
628 * tool-bar.el (tool-bar-setup): Remove Help button. Remove label
629 from Search and add a label to Undo.
630
631 * vc/vc-dir.el (vc-dir-tool-bar-map): Rearrange, removing
632 inappropriate buttons and adding :vert-only tags.
633
634 * progmodes/compile.el (compilation-mode-tool-bar-map): Adjust to
635 removal of Help tool-bar button. Remove Undo button for space.
636
637 * info.el (info-tool-bar-map): Add :vert-only tags.
638
c44d54b3
TH
6392011-01-08 Tassilo Horn <tassilo@member.fsf.org>
640
641 * doc-view.el (doc-view-mode-p): Check for png or imagemagick
642 image backend support. Either of them is fine.
643
3ef01959
CY
6442011-01-08 Chong Yidong <cyd@stupidchicken.com>
645
3d91e302
CY
646 * subr.el (y-or-n-p): Doc fix.
647
278f6845
CY
648 * custom.el (custom-safe-theme-files): New defcustom.
649 (custom-theme-load-confirm): New function.
650 (load-theme): Load theme using `load', confirming with
651 custom-theme-load-confirm if necessary.
652
3ef01959
CY
653 * subr.el (read-char-choice): New function, factored out from
654 dired-query and hack-local-variables-confirm.
655
656 * dired-aux.el (dired-query):
657 * files.el (hack-local-variables-confirm): Use it.
658
659 * dired-aux.el (dired-compress-file):
660 * files.el (abort-if-file-too-large, find-alternate-file)
661 (set-visited-file-name, write-file, backup-buffer)
662 (basic-save-buffer, basic-save-buffer-2, save-some-buffers)
663 (delete-directory, revert-buffer, recover-file, kill-buffer-ask):
664 Use new format string args for y-or-n-p and yes-or-no-p.
665
7c837933
AS
6662011-01-08 Andreas Schwab <schwab@linux-m68k.org>
667
668 * progmodes/compile.el (compilation-error-regexp-alist-alist)
669 [gcc-include]: Tighten file name match, add match for column
670 number. (Bug#7806)
6c7ec171 671 [gnu]: Remove unused group.
7c837933 672
d0981f82
GM
6732011-01-08 Glenn Morris <rgm@gnu.org>
674
e7a42417
GM
675 * makefile.w32-in (EMACSOPT): Add --no-site-lisp.
676
d0981f82
GM
677 * makefile.w32-in (EMACSOPT): -batch implies --no-init-file.
678
d43bb7d3
SS
6792011-01-07 Sam Steingold <sds@gnu.org>
680
681 * w32-fns.el (w32-shell-name): Use `shell-file-name' instead of
682 the `explicit-shell-file-name' because that is the
683 non-interactive shell.
684
8c51d2a2
CY
6852011-01-07 Chong Yidong <cyd@stupidchicken.com>
686
687 * subr.el (y-or-n-p): Accept format string args.
688
66b7b0fe
GM
6892011-01-07 Glenn Morris <rgm@gnu.org>
690
691 * Makefile.in (EMACSOPT): Add --no-site-lisp.
692
1e004a83
KM
6932011-01-06 Ken Manheimer <ken.manheimer@gmail.com>
694
66b7b0fe 695 * allout.el (allout-back-to-current-heading): Ensure return to
1e004a83 696 the visible containing topic, rather than a collapsed one.
66b7b0fe 697 (allout-view-change-hook): Remove hook that was deprecated long ago.
1e004a83
KM
698 (allout-exposure-change-hook): Remove documentation remarks
699 concerning removed allout-view-change-hook.
700 (allout-flag-region): Remove invocation of and documentation
701 remarks concerning allout-view-change-hook.
702
b0a8e46b
GM
7032011-01-06 Glenn Morris <rgm@gnu.org>
704
705 * vc/vc-bzr.el (vc-bzr-annotate-command, vc-bzr-annotate-time)
706 (vc-bzr-annotate-extract-revision-at-line):
707 Handle authors with embedded spaces. (Bug#7792)
708
875c044a
TH
7092011-01-05 Tassilo Horn <tassilo@member.fsf.org>
710
711 * doc-view.el (doc-view-image-width): New variable.
712 (doc-view-enlarge, doc-view-insert-image): Prefer imagemagick
713 backend for PNG images, and do dynamic rescaling instead of
714 reconverting the whole doc.
715
1f6f7722
GM
7162011-01-05 Glenn Morris <rgm@gnu.org>
717
718 * emacs-lisp/rx.el (rx-repeat): Replace CL function.
719
e9e68fda
KM
7202011-01-04 Ken Manheimer <ken.manheimer@gmail.com>
721
4896e8fc 722 * allout.el: Reconcile with changes in line movement behavior for
e9e68fda
KM
723 long text lines that cross more than a single physical window
724 line, ie when truncate-lines is nil.
e9e68fda
KM
725 (allout-next-visible-heading): Provide for change in line-move
726 behavior on long lines when truncate-lines is nil. In that case,
727 line-move can wind up on the same textual line when it moves to
728 the next window line, and moving to the bullet position after the
729 move yields zero advancement. Add logic to detect and compensate
730 for the lack of progress.
731 (allout-current-topic-collapsed-p): move-end-of-line respect for
732 field boundaries is different when operating with body lines
733 shorter than window width versus ones greater than window width,
734 which can yield false negatives in this function. Avoid
735 difference by applying move-end-of-line while field-text-motion is
736 inhibited.
737
3f1b6eb2
GM
7382011-01-04 Glenn Morris <rgm@gnu.org>
739
740 * textmodes/rst.el (rst-compile-toolsets):
741 Add pdf and s5 to option alist.
742
6388924a
MA
7432011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
744
7973bcea 745 * net/dbus.el (dbus-register-property): Add optional parameter
6388924a
MA
746 dont-register-service. Updated docstring accordingly.
747
c3e4b003
AS
7482011-01-04 Andreas Schwab <schwab@linux-m68k.org>
749
750 * textmodes/rst.el (rst-compile-pdf-preview)
751 (rst-compile-slides-preview): Remove extra line.
752
ef4271fe
GM
7532011-01-04 Glenn Morris <rgm@gnu.org>
754
755 * textmodes/rst.el (rst-compile-toolsets): Make it a defcustom.
756 Add `pdf' and `s5' entries. Use `prog.py' if found, otherwise
757 default to `prog' without a .py extension.
758 (rst-compile-pdf-preview, rst-compile-slides-preview):
759 Use program names from rst-compile-toolsets, rather than hard-coding.
760 (rst-portable-mark-active-p): Fix presumed typo.
761
7c420169 7622011-01-02 Eli Zaretskii <eliz@gnu.org>
01e62600 763
7c420169 764 * term/w32-win.el (dynamic-library-alist): Set up correctly for
5be1c984
EZ
765 libpng versions both before and after 1.4.0. (Bug#7716)
766
7c420169 7672011-01-02 Eli Zaretskii <eliz@gnu.org>
2d34d523 768
6491af11
EZ
769 * time.el (display-time-mode): Mention display-time-interval in
770 the doc string. (Bug#7713)
771
7c420169 7722011-01-02 Kenichi Handa <handa@m17n.org>
8258ae3f
KH
773
774 * mail/rmailmm.el (rmail-mime-parse): Perform parsing in
775 condition-case and return an error message string if something
776 goes wrong.
2f952059 777 (rmail-show-mime): Adjust for the above change. Insert the
8258ae3f
KH
778 header by rmail-mime-insert-header.
779
7c420169 7802011-01-02 Kenichi Handa <handa@m17n.org>
186f7f0b
KH
781
782 * mail/rmailmm.el: New key bindings for rmail-mime-next-item,
783 rmail-mime-previous-item, and rmail-mime-toggle-hidden.
784 (rmail-mime-mbox-buffer)
785 (rmail-mime-view-buffer, rmail-mime-coding-system): New variables.
786 (rmail-mime-entity): Argument changed. All codes handling an
787 entity object are changed.
2f952059 788 (rmail-mime-entity-header, rmail-mime-entity-body): Adjust for
186f7f0b
KH
789 the above change.
790 (rmail-mime-entity-children, rmail-mime-entity-handler)
791 (rmail-mime-entity-tagline): New functions.
792 (rmail-mime-message-p): New function.
793 (rmail-mime-save): Bind rmail-mime-mbox-buffer.
794 (rmail-mime-entity-segment, rmail-mime-next-item)
795 (rmail-mime-previous-item, rmail-mime-shown-mode)
796 (rmail-mime-hidden-mode, rmail-mime-raw-mode)
797 (rmail-mime-toggle-raw, rmail-mime-toggle-hidden)
2f952059
ML
798 (rmail-mime-insert-tagline, rmail-mime-insert-header):
799 New functions.
186f7f0b
KH
800 (rmail-mime-text-handler): Call rmail-mime-insert-text.
801 (rmail-mime-insert-decoded-text): New function.
802 (rmail-mime-insert-text): Call rmail-mime-insert-decoded-text.
803 (rmail-mime-insert-image): Argument changed. Caller changed.
804 (rmail-mime-image): Call rmail-mime-toggle-hidden.
805 (rmail-mime-set-bulk-data): New funciton.
806 (rmail-mime-insert-bulk): Argument changed.
807 (rmail-mime-multipart-handler): Return t.
2f952059
ML
808 (rmail-mime-process-multipart): Argument changed.
809 Handle "multipart/alternative" here.
186f7f0b
KH
810 (rmail-mime-process): Argument changed.
811 (rmail-mime-parse): Bind rmail-mime-mbox-buffer.
812 (rmail-mime-insert): Argument changed. Handle raw display mode.
813 (rmail-mime): Argument changed. Handle toggling of raw display
814 mode.
815 (rmail-show-mime): Bind rmail-mime-mbox-buffer and
816 rmail-mime-view-buffer.
817 (rmail-insert-mime-forwarded-message): Likewise.
818 (rmail-search-mime-message): Likewise. Don't bind rmail-buffer.
819
820 * mail/rmail.el (rmail-show-message-1): If rmail-enable-mime is
821 non-nil, handle the header in rmail-show-mime-function.
822
7c420169 8232011-01-02 Leo <sdl.web@gmail.com>
e1a23575 824
7c420169 825 * help-fns.el (describe-variable): Fix previous change.
e1a23575 826
7c420169 8272011-01-02 Juri Linkov <juri@jurta.org>
957e5dd1
JL
828
829 * isearch.el (isearch-lazy-highlight-error): New variable.
830 (isearch-lazy-highlight-new-loop): Compare `isearch-error' and
831 `isearch-lazy-highlight-error'. Set `isearch-lazy-highlight-error'
832 to the current value of `isearch-error' (Bug#7468).
833
7c420169 8342011-01-02 Chong Yidong <cyd@stupidchicken.com>
3c505d31
CY
835
836 * help-fns.el (describe-variable): Don't emit trailing whitespace
837 (Bug#7511).
838
7c420169 8392011-01-02 Chong Yidong <cyd@stupidchicken.com>
c1cf05f4
CY
840
841 * textmodes/rst.el (rst-compile-pdf-preview)
842 (rst-compile-slides-preview): Use make-temp-file (Bug#7646).
843
7c420169 8442011-01-02 Kevin Gallagher <Kevin.Gallagher@boeing.com>
c8cbbe27
KG
845
846 * emulation/edt-mapper.el: Override mapping of function keys so
847 that the later call to read-key-sequence works.
848
7c420169 8492011-01-02 Eli Zaretskii <eliz@gnu.org>
95e4cc85
EZ
850
851 * mail/smtpmail.el (smtpmail-send-it): Write queued mail body with
852 Unix EOLs. (Bug#7589)
853
7c420169
CY
8542011-01-02 Leo <sdl.web@gmail.com>
855
856 * eshell/em-hist.el (eshell-previous-matching-input): Signal error
857 if point is not behind eshell-last-output-end (Bug#7585).
858
8592011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
860
861 * files.el (file-local-variables-alist):
862 Make permanent-local (bug#7767).
863
8642011-01-02 Glenn Morris <rgm@gnu.org>
865
866 * version.el (emacs-copyright): Set short copyright year to 2011.
867
8682011-01-02 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
869
870 * mail/mail-utils.el (mail-strip-quoted-names): Avoid clobbering
871 an existing temp buffer. (Bug#7746)
872
8732011-01-02 Glenn Morris <rgm@gnu.org>
874
875 * mail/mail-utils.el (mail-mbox-from): Handle From: headers with
876 multiple addresses. (Bug#7760)
877
fb9a573a
KM
8782011-01-01 Ken Manheimer <ken.manheimer@gmail.com>
879
e9e68fda 880 * allout.el (allout-auto-fill): Do not infinitely recurse - use
fb9a573a
KM
881 do-auto-fill if everything points back to allout-auto-fill.
882 (allout-mode-deactivate-hook): Declare obsolete, in favor of
883 standard-formed minor-mode deactivate hook, allout-mode-off-hook.
884
8d68c659
MA
8852010-12-31 Michael Albinus <michael.albinus@gmx.de>
886
887 * net/tramp-sh.el (tramp-methods): Add recursive options to "scpc"
888 and "scpx".
889
291cc045
TH
8902010-12-30 Tassilo Horn <tassilo@member.fsf.org>
891
892 * doc-view.el (doc-view-set-doc-type): New function refactored
893 from doc-view-mode.
894 (doc-view-fallback-mode): New function.
895 (doc-view-mode): Use it.
896 (doc-view-mode-maybe): New function that checks if doc-view-mode
897 can be used and falls back to the next best mode otherwise.
898
899 * files.el (auto-mode-alist): Use doc-view-mode-maybe for PDF,
900 DVI, OpenDocument, and MS Office files.
901
8ee2dc5c
AS
9022010-12-30 Andreas Schwab <schwab@linux-m68k.org>
903
904 * emacs-lisp/rx.el (rx-syntax): Fix typo.
905
f9e68477
TH
9062010-12-30 Tassilo Horn <tassilo@member.fsf.org>
907
908 * doc-view.el (doc-view-toggle-display): Perform rassq-delete-all
909 on a copy of auto-mode-alist, because that deletes with side
910 effects.
911
ad727c81
TH
9122010-12-30 Tassilo Horn <tassilo@member.fsf.org>
913
7973bcea
SM
914 * doc-view.el (doc-view-mode, doc-view-toggle-display):
915 Use normal-mode without doc-view-mode bindings in auto-mode-alist as
ad727c81
TH
916 fallback instead of hard coding fundamental mode.
917
b71b7803
TH
9182010-12-30 Tassilo Horn <tassilo@member.fsf.org>
919
920 * doc-view.el (doc-view-doc->txt): Handle OpenDocument (or MS
921 Office) files also for searching.
922
95e16d17
TH
9232010-12-30 Tassilo Horn <tassilo@member.fsf.org>
924
925 * doc-view.el: Implement viewing of OpenDocument (and Microsoft
926 Office) files. Not yet enabled via auto-mode-list.
927 (doc-view-unoconv-program): New custom variable.
928 (doc-view-mode-p): Handle new odf document type.
929 (doc-view-odf->pdf): New conversion function.
930 (doc-view-convert-current-doc): Call it for odf files.
931 (doc-view-mode): Recognize newly supported file extensions.
932
b191c9d9
MA
9332010-12-30 Michael Albinus <michael.albinus@gmx.de>
934
935 * net/tramp.el (tramp-default-method-alist)
936 (tramp-default-user-alist)
937 (tramp-local-host-regexp, tramp-prefix-domain-format)
938 (tramp-prefix-domain-regexp): Set tramp-autoload cookie.
939
940 * net/tramp-ftp.el:
941 * net/tramp-gvfs.el:
942 * net/tramp-gw.el:
943 * net/tramp-imap.el:
944 * net/tramp-sh.el:
945 * net/tramp-smb.el: Add tramp-autoload cookie for initialisation
946 code of `tramp-default-method-alist' and `tramp-default-user-alist'.
947
6e457cc9
KF
9482010-12-29 Karl Fogel <kfogel@red-bean.com>
949
950 * saveplace.el (save-place-alist-to-file): Save list sorted and
951 pretty-printed, so that it is mergeable by line-based text merging,
952 as suggested by Iain Dalton <iain.dalton {_AT_} gmail.com>.
953
fb9a573a
KM
9542010-12-28 Ken Manheimer <ken.manheimer@gmail.com>
955
e9e68fda 956 * allout.el (allout-v18/19-file-var-hack): Obsolete, remove.
fb9a573a
KM
957 (allout-mode): Argument "toggle" => "force".
958 Refine the docstring.
959 Remove special provisions for reactivation, besides the 'force'
960 argument.
961 Consolidate layout provisions coce directly into the activation
962 condition branch, now that we've removed those provisions.
963 (allout-unload-function): Explicitly activate the mode before
964 deactivating, if it's initially deactivated.
965 (allout-set-buffer-multibyte): Properly prevent byte-compiler
966 warnings for version of function used only where
967 set-buffer-multibyte is unavailable.
968
c940c054
CY
9692010-12-28 Chong Yidong <cyd@stupidchicken.com>
970
971 * tool-bar.el (tool-bar-setup): Remove :enable conditions, which
972 are handled by the menu-bar entries. As before, don't use
973 :visibile to avoid changing the tool-bar.
974
4c145d5d
MA
9752010-12-27 Michael Albinus <michael.albinus@gmx.de>
976
977 * net/secrets.el (secrets-delete-alias): New defun.
978
fe99f704
MA
9792010-12-27 Michael Albinus <michael.albinus@gmx.de>
980
981 * net/tramp.el (tramp-default-user-alist): Do not add "ssh" based
982 methods, otherwise ~/.ssh/config would be ignored.
983
723ee192
SM
9842010-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
985
986 * emacs-lisp/rx.el: Make it a superset of sregex.
987 (rx-constituents): Add `any => "."', mark `repeat' as taking any number
988 of args, add `regex' alias.
989 (rx-info): Add arg to distinguish head and standalone forms.
990 (rx-check, rx-form): Pass the corresponding arg.
991 (rx-**): Simplify.
992 (rx-repeat): Make it work for any number of args.
993 (rx-syntax): Make it accept syntax chars as is.
994 * obsolete/sregex.el: Move from emacs-lisp/.
995 * emacs-lisp/re-builder.el: Remove sregex support.
996 * emacs-lisp/edebug.el (sregexq, rx): Remove redundant defs.
997
e77714da
EZ
9982010-12-25 Eli Zaretskii <eliz@gnu.org>
999
1000 * mouse.el (mouse-yank-primary): On MS-Windows, try the (emulated)
1001 PRIMARY first, then the clipboard. (Bug#7699)
1002
17870c01
SM
10032010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
1004
1005 * emacs-lisp/bytecomp.el (byte-compile-output-docform): Fix up use of
1006 print-number-table.
1007
6bfa51ba
CY
10082010-12-21 Chong Yidong <cyd@stupidchicken.com>
1009
d78cdcf7
CY
1010 * help-fns.el (find-lisp-object-file-name): Locate .emacs from
1011 .emacs.elc (Bug#7530).
1012
6bfa51ba
CY
1013 * wid-edit.el (widget-image-find): Remove bogus :ascent spec from
1014 image spec (Bug#7480).
1015
9d9cfd53
DU
10162010-12-21 Daiki Ueno <ueno@unixuser.org>
1017
1018 * obsolete/pgg-parse.el, obsolete/pgg-pgp5.el, obsolete/pgg-pgp.el,
723ee192
SM
1019 * obsolete/pgg-gpg.el, obsolete/pgg-def.el, obsolete/pgg.el:
1020 Move from lisp/.
9d9cfd53 1021
adc0b793
JD
10222010-12-20 Leo <sdl.web@gmail.com>
1023
1024 * dnd.el (dnd-get-local-file-name): Unhex of file name shall
1025 always be performed (Bug#7680).
1026
778ca437
CY
10272010-12-20 Chong Yidong <cyd@stupidchicken.com>
1028
3f95d7ff
CY
1029 * menu-bar.el (menu-bar-kill-ring-save): Make obsolete.
1030 (menu-bar-edit-menu): Bind "Copy" to kill-ring-save. Don't use
1031 mouse-region-match.
778ca437 1032
3f95d7ff 1033 * color.el: Move from gnus/.
94975270 1034
f48fdaad
CY
1035 * vc/diff.el (diff-better-file-name): Function deleted.
1036 abbreviating file names causes problems with shell-quote-argument.
94975270
CY
1037 (diff-no-select): Just use expand-file-name.
1038
1039 * tool-bar.el (tool-bar--image-expression): New function.
1040 (tool-bar-local-item, tool-bar--image-exp): Use it.
1041 (tool-bar-setup): Initialize tool-bar-separator-image-expression.
1042 Use :enable instead of :visible to avoid changing the tool-bar
1043 configuration unnecessarily.
1044
1045 * info.el (info-tool-bar-map): Add separators.
1046
2e306b39
KB
10472010-12-17 Ken Brown <kbrown@cornell.edu>
1048
1049 * loadup.el: Use version numbers in Cygwin build.
1050
395542c6
RT
10512010-12-17 Ryan Twitchell <metatheorem@gmail.com> (tiny change)
1052
1053 * ido.el (ido-file-internal): Ask for confirmation before
1054 overwriting an existing file (Bug#1238).
1055
4039c786
CY
10562010-12-16 Chong Yidong <cyd@stupidchicken.com>
1057
1058 * tool-bar.el (tool-bar-setup): Add separators.
1059
1060 * menu-bar.el (featurep): Use menu-bar-separator.
1061
45720dc3
GM
10622010-12-16 Ken Manheimer <ken.manheimer@gmail.com>
1063
1064 Migrate allout encryption provisions from pgg to epg.
1065
1066 * allout.el (allout-toggle-current-subtree-encryption)
1067 (allout-toggle-subtree-encryption): Adjust docstrings to reflect
1068 defaulting policy and other changes. Change fetch-pass to keymode-cue,
1069 for simpler universal argument interpretation.
1070 (allout-toggle-subtree-encryption): Adjust docstring to describe
1071 changed encryption provisions. Change fetch-pass to keymode-cue, for
1072 simpler universal argument interpretation. Remove provisions for
1073 handling key type and identity - they'll all be within
1074 allout-encrypt-string or epg/epg or even contained all the way in gpg.
1075 (allout-encrypt-string): Include keymode-cue, for optionally prompting
1076 for keypair recipients (universal argument > 1) and, in addition,
1077 associating the specified recipients with the outline (universal
1078 argument > 4) using a file local variable setting for
1079 'epa-file-encrypt-to'.
1080 Require epa, for recipients handling.
1081 Change how regexp filtering elements are named.
1082 Describe the problem with caching of incorrect symmetric-decryption
1083 keys.
1084 Use the epa-passphrase-callback-function, in case the user is using
1085 GnuPG v1.
1086 Support saving of the selected keypair recipients when invoked with a
1087 keymode-cue > 4.
1088 Remove obsolete arguments 'fetch-pass', 'target-cache-id', 'retried'.
1089 Require 'epa.
1090 Establish epg-context with armoring and default epg-protocol.
1091 Remove all passphrase cache, verification, and hinting code.
1092 (allout-passphrase-verifier-handling, allout-passphrase-hint-handling):
1093 No longer used, delete.
1094 (allout-mode): Adjust docstring to describe changed encryption
1095 provisions. Describe the problem with caching of incorrect
1096 symmetric-decryption keys.
1097 (allout-obtain-passphrase, allout-epg-passphrase-callback-function)
1098 (allout-make-passphrase-state, allout-passphrase-state-passphrase)
1099 (allout-encrypted-key-info, allout-update-passphrase-mnemonic-aids)
1100 (allout-get-encryption-passphrase-verifier, allout-verify-passphrase):
1101 Obsolete, remove.
1102
33088bed
DU
11032010-12-16 Daiki Ueno <ueno@unixuser.org>
1104
1105 * epa-file.el (epa-file-select-keys): Accept 'silent to inhibit
1106 key selection prompt; make 'silent as default (Bug#7487).
1107
bfc49a5b
LL
11082010-12-16 Leo <sdl.web@gmail.com>
1109
7973bcea
SM
1110 * eshell/eshell.el (eshell-directory-name):
1111 Use locate-user-emacs-file (Bug#7578).
bfc49a5b 1112
68251e16
GM
11132010-12-15 Glenn Morris <rgm@gnu.org>
1114
1115 * loadup.el (symbol-file-load-history-loaded): Remove; unused.
1116
99f053cf
JA
11172010-12-15 Jari Aalto <jari.aalto@cante.net>
1118 Scott Evans <gse@antisleep.com>
1119
1120 * rect.el (rectange--default-line-number-format)
1121 (rectangle-number-line-callback): New functions.
1122 (rectangle-number-lines): New command, bound to C-x r N (Bug#4382).
1123
5614fd56
CY
11242010-12-15 Chong Yidong <cyd@stupidchicken.com>
1125
1126 * rect.el (operate-on-rectangle-lines, string-rectangle-string):
1127 Delete unused variables.
1128 (move-to-column-force): Remove function obsolete since 21.2.
1129
d68b0220
MA
11302010-12-14 Michael Albinus <michael.albinus@gmx.de>
1131
1132 * net/tramp.el (tramp-temp-buffer-file-name): Make it permanent-local.
1133 (tramp-handle-insert-file-contents): Do not set permanent-local
1134 property.
1135
7973bcea
SM
1136 * net/tramp-cache.el (tramp-persistency-file-name):
1137 Use `locate-user-emacs-file' if fboundp.
d68b0220
MA
1138
1139 * net/tramp-sh.el (tramp-methods): Add "ksu".
1140 (tramp-default-user-alist): Add "ksu". Use `regexp-opt' for
1141 method list.
1142
0273f794
GM
11432010-12-14 Glenn Morris <rgm@gnu.org>
1144
ab274982
GM
1145 * progmodes/js.el: Doc't require font-lock, etags, or easymenu.
1146 (find-tag-marker-ring): Declare.
1147 (js-find-symbol): Require etags.
1148
e758216c
GM
1149 * mail/sendmail.el: Don't require rmail or mailalias when compiling.
1150 Require mail-utils.
1151 (mail-alias-file): Don't autoload. Doc fix.
1152 (mail-bury-selects-summary, mail-send-nonascii): Don't autoload.
1153 (mail-mailer-swallows-blank-line): Default to nil. Doc fix.
1154 Mark as obsolete, and risky.
1155 (mail-setup): Simplify.
1156
53aff12a
GM
1157 * mail/mailalias.el (build-mail-aliases): Make it interactive.
1158 * mail/sendmail.el (build-mail-aliases): Update autoload.
1159
aae4b48c
GM
1160 * dired.el (dired-trivial-filenames, dired-chown-program)
1161 (dired-auto-revert-buffer): Remove autoload cookies.
1162 * mail/sendmail.el (mail-recover-1): Require 'dired.
1163
bff7c1ad
GM
1164 * dired.el (dired-subdir-switches, dired-chown-program)
1165 (dired-use-ls-dired, dired-chmod-program, dired-touch-program):
1166 Make into defcustoms.
1167 (dired-chown-program): Simplify initialization.
1168
0273f794
GM
1169 * mail/mail-utils.el: No need to require lisp-mode, it's in loadup.
1170
bc557672
RF
11712010-12-13 Romain Francoise <romain@orebokech.com>
1172
1173 * net/gnutls.el (gnutls-negotiate): Fix setting of default trustfiles.
1174
7410c270
G
11752010-12-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
1176
1177 * net/netrc.el (netrc-point-at-eol): Remove the unused
1178 netrc-point-at-old and netrc-bound-and-true-p bindings.
1179 (netrc-parse): Cache the netrc contents.
1180
f49d1f52 11812010-12-13 Eli Zaretskii <eliz@gnu.org>
11aad4e9
EZ
1182
1183 * subr.el (posn-col-row): Evaluate header-line-format in the
1184 context of the POSITION window's buffer.
1185
f49d1f52 11862010-12-13 Glenn Morris <rgm@gnu.org>
5612fd08
GM
1187
1188 * subr.el (member-ignore-case, run-mode-hooks, insert-for-yank-1)
1189 (with-silent-modifications): Doc fixes.
1190
f49d1f52 11912010-12-13 Michael Albinus <michael.albinus@gmx.de>
158d5945
MA
1192
1193 * net/tramp.el (tramp-action-password, tramp-process-actions):
d68b0220 1194 Revert previous from. Use `save-restriction'.
158d5945 1195
f49d1f52 11962010-12-13 Stephen Berman <stephen.berman@gmx.net>
81ced43d
SB
1197
1198 * calendar/diary-lib.el (diary-list-sexp-entries):
1199 Handle case of no newline at end of file. (Bug#7536)
1200
f49d1f52 12012010-12-13 Glenn Morris <rgm@gnu.org>
b2364eaa
GM
1202
1203 * mail/smtpmail.el (smtpmail-send-it): Revert previous change.
1204
f49d1f52 12052010-12-13 Michael Albinus <michael.albinus@gmx.de>
32802ee1 1206
f49d1f52 1207 * net/tramp.el (tramp-action-password): Delete region, do not narrow.
32802ee1 1208 (tramp-process-actions): Do not widen.
d68b0220 1209
f49d1f52
SM
1210 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1211 Protect buffer-modified value. (Bug#7557)
32802ee1 1212
f49d1f52 12132010-12-13 Jan Moringen <jmoringe@techfak.uni-bielefeld.de>
da9123a8
JM
1214
1215 * log-edit.el (log-edit-changelog-entries):
1216 Regexp quote filename. (Bug#7505)
1217
f49d1f52 12182010-12-13 Tom Breton <tehom@panix.com>
478834e6
TB
1219
1220 * cus-edit.el (custom-save-all):
1221 Bind print-length and print-level to nil. (Bug#7581)
1222
f49d1f52 12232010-12-13 Glenn Morris <rgm@gnu.org>
3c1e62f8 1224
d5e6e0b6
GM
1225 * mouse.el (mouse-menu-major-mode-map, mouse-menu-bar-map):
1226 Run hooks to update menu contents. (Bug#7586)
1227
3c1e62f8
GM
1228 * mail/smtpmail.el (smtpmail-send-it): Avoid colons in the queued
1229 file names, for the sake of MS Windows. (Bug#7588)
1230
f49d1f52 12312010-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
b1816a74
SM
1232
1233 * diff-mode.el (diff-refine-hunk): Make it work when the hunk contains
1234 empty lines without a leading space.
1235
f49d1f52 12362010-12-13 Leo <sdl.web@gmail.com>
86a6e8e0 1237
740af6c9
GM
1238 * dired-aux.el (dired-do-redisplay): Postpone dired-after-readin-hook
1239 while mapping over marks (Bug#6810).
86a6e8e0 1240
f49d1f52 12412010-12-13 Chong Yidong <cyd@stupidchicken.com>
bc60f4de
CY
1242
1243 * image-dired.el (image-dired-db-file)
1244 (image-dired-temp-image-file, image-dired-gallery-dir)
1245 (image-dired-temp-rotate-image-file): Set default values relative
1246 to image-dired-dir (Bug#7518).
1247
f49d1f52 12482010-12-13 Lawrence Mitchell <wence@gmx.li>
3ecba049
LM
1249
1250 * format.el (format-decode-run-method): Pass args FROM and TO, not
1251 point-min and point-max, to shell-command-on-region (Bug#7488).
1252
f49d1f52 12532010-12-13 Jan Djärv <jan.h.d@swipnet.se>
0afb6242
JD
1254
1255 * frame.el (blink-cursor-mode): Make default t for ns.
1256
f49d1f52 12572010-12-13 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
5eae900e
BR
1258
1259 * vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
1260
f49d1f52 12612010-12-13 Chong Yidong <cyd@stupidchicken.com>
74194465 1262
637c2c43
CY
1263 * comint.el (comint-dynamic-list-input-ring)
1264 (comint-dynamic-complete-filename)
1265 (comint-replace-by-expanded-filename)
1266 (comint-dynamic-simple-complete)
1267 (comint-dynamic-list-filename-completions)
1268 (comint-dynamic-list-completions): Doc fix (Bug#7499).
1269
74194465
CY
1270 * subr.el (posn-x-y, posn-object-x-y, posn-object-width-height):
1271 Doc fix (Bug#7471).
1272
f49d1f52 12732010-12-13 Martin Rudalics <rudalics@gmx.at>
6ed96c33
MR
1274
1275 * dired.el (dired-pop-to-buffer): Bind pop-up-frames to nil
1276 (Bug#7533).
1277
f49d1f52 12782010-12-13 W. Martin Borgert <debacle@debian.org> (tiny change)
11cb1e35
MB
1279
1280 * files.el (auto-mode-alist): Handle .dbk (DocBook) with xml-mode.
1281 (Bug#7491).
1282
f49d1f52 12832010-12-13 Eli Zaretskii <eliz@gnu.org>
2472c214
EZ
1284
1285 * files.el (file-relative-name): Handle UNC file names on
1286 DOS/Windows. (Bug#4674)
1287
f49d1f52 12882010-12-13 Daiki Ueno <ueno@unixuser.org>
f9fe1af9
DU
1289
1290 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
1291 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
1292 (epg-context-set-passphrase-callback): Mention that the callback
1293 is not called when used with GnuPG 2.x.
1294
f49d1f52 12952010-12-13 Glenn Morris <rgm@gnu.org>
ff80efe7
GM
1296
1297 * ps-print.el (ps-line-lengths-internal, ps-nb-pages):
1298 Ensure ps-footer-font-size-internal is initialized.
1299 Call ps-get-page-dimensions before trying to use ps-font-for-text.
1300
f49d1f52 13012010-12-13 Kenichi Handa <handa@m17n.org>
7e116860
KH
1302
1303 * mail/rmailmm.el (rmail-mime-parse): Call rmail-mime-process
1304 within condition-case.
1305 (rmail-show-mime): Don't use condition-case.
1306 (rmail-search-mime-message): New function.
1307 (rmail-search-mime-message-function): Set to
1308 rmail-search-mime-message.
1309
f49d1f52 13102010-12-13 Leo <sdl.web@gmail.com>
bd794450 1311
0fdd1db7 1312 * ido.el (ido-common-initialization): New function. (bug#3274)
bd794450
LL
1313 (ido-mode): Use it.
1314 (ido-completing-read): Call it.
1315
fdbb4d85
KF
13162010-12-12 Karl Fogel <kfogel@red-bean.com>
1317
1318 * bookmark.el (bookmark-name-from-full-record): Rename back to
1319 this original name from `bookmark-name-from-record' reverting part
1320 of 2010-12-08T08:09:27Z!kfogel@red-bean.com / kfogel@red-bean.com-20101208080927-5j9jqnb2xvcw4ogm.
1321 As Drew Adams pointed out, there was no reason to cause churn for
1322 third-party callers.
1323
0e5cf2b8
AM
13242010-12-12 Alan Mackenzie <acm@muc.de>
1325
1326 * progmodes/cc-engine.el (c-forward-type): Before scanning a
1327 template arglist, check that the current language supports this.
1328
6961d41c
GM
13292010-12-11 Glenn Morris <rgm@gnu.org>
1330
2b404597
GM
1331 * vc/vc-bzr.el (vc-bzr-state-heuristic): Also check that the executable
1332 state of the file matches. (Bug#7544)
1333 (vc-bzr-register, vc-bzr-checkin)
1334 (vc-bzr-annotate-extract-revision-at-line): Doc fixes.
1335 (vc-directory-exclusion-list): Remove unnecessary eval-after-load.
1336
6961d41c
GM
1337 * textmodes/sgml-mode.el (sgml-xml-guess): Add .xhtml extension.
1338
1e5d2a04
KK
13392010-12-11 Karel Klíč <kklic@redhat.com>
1340
1341 * files.el (auto-mode-alist): Use html-mode for *.xhtml. (Bug#7606)
1342
175069ef
SM
13432010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
1344
1345 Derive from prog-mode, use derived-mode-p, and fix up various
1346 minor style issues in lisp/progmodes.
1347
1348 * progmodes/vhdl-mode.el (vhdl-mode):
1349 * progmodes/verilog-mode.el (verilog-mode):
1350 * progmodes/vera-mode.el (vera-mode):
1351 * progmodes/sql.el (sql-mode):
1352 * progmodes/scheme.el (scheme-mode):
1353 * progmodes/perl-mode.el (perl-mode):
1354 * progmodes/octave-inf.el (inferior-octave-mode):
1355 * progmodes/autoconf.el (autoconf-mode):
1356 * progmodes/m4-mode.el (m4-mode):
1357 * progmodes/inf-lisp.el (inferior-lisp-mode):
1358 * progmodes/idlwave.el (idlwave-mode):
1359 * progmodes/icon.el (icon-mode):
1360 * progmodes/idlw-help.el (idlwave-help-mode):
1361 * progmodes/dcl-mode.el (dcl-mode):
1362 * progmodes/idlw-shell.el (idlwave-shell-mode):
1363 * progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-electric-list-mode)
1364 (ebrowse-member-mode, ebrowse-electric-position-mode):
1365 Use define-derived-mode.
1366
1367 * progmodes/xscheme.el (exit-scheme-interaction-mode)
1368 (xscheme-enter-interaction-mode, xscheme-enter-debugger-mode)
1369 (xscheme-debugger-mode-p, xscheme-send-string-1):
1370 * progmodes/tcl.el (inferior-tcl-proc, tcl-current-word)
1371 (tcl-load-file, tcl-restart-with-file):
1372 * progmodes/ps-mode.el (ps-run-running):
1373 * progmodes/gdb-mi.el (gud-watch, gdb-mouse-set-clear-breakpoint):
1374 * progmodes/js.el (js--get-all-known-symbols):
1375 * progmodes/inf-lisp.el (inferior-lisp-proc):
1376 * progmodes/idlwave.el (idlwave-beginning-of-statement)
1377 (idlwave-template, idlwave-update-buffer-routine-info)
1378 (idlwave-update-current-buffer-info)
1379 (idlwave-get-routine-info-from-buffers, idlwave-choose)
1380 (idlwave-scan-class-info, idlwave-fix-keywords)
1381 (idlwave-list-buffer-load-path-shadows):
1382 * progmodes/idlw-toolbar.el (idlwave-toolbar, idlwave-toolbar-add)
1383 (idlwave-toolbar-remove):
1384 * progmodes/idlw-shell.el (idlwave-shell-save-and-action)
1385 (idlwave-shell-file-name, idlwave-shell-electric-debug-all-off)
1386 (idlwave-shell-menu-def):
1387 * progmodes/idlw-complete-structtag.el
1388 (idlwave-prepare-structure-tag-completion):
1389 * progmodes/gud.el (gud-set-buffer):
1390 * progmodes/f90.el (f90-backslash-not-special):
1391 * progmodes/delphi.el (delphi-find-unit): Use derived-mode-p.
1392
1393 * progmodes/xscheme.el (xscheme-start)
1394 (local-set-scheme-interaction-buffer, scheme-interaction-mode):
1395 * progmodes/which-func.el (which-function):
1396 * progmodes/vhdl-mode.el (vhdl-set-style):
1397 * progmodes/verilog-mode.el (verilog-set-compile-command)
1398 (verilog-modify-compile-command, verilog-error-regexp-add-xemacs)
1399 (verilog-set-define, verilog-auto-reeval-locals):
1400 * progmodes/sql.el (sql-product-font-lock, sql-interactive-mode):
1401 * progmodes/simula.el (simula-mode):
1402 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
1403 * progmodes/python.el (python-check, python-mode):
1404 * progmodes/prolog.el (prolog-mode-variables):
1405 * progmodes/gud.el (gud-tooltip-activate-mouse-motions):
1406 * progmodes/ebrowse.el (ebrowse-view-file-other-frame):
1407 * progmodes/delphi.el (delphi-mode):
1408 * progmodes/cc-styles.el (c-setup-paragraph-variables):
1409 * progmodes/cc-mode.el (c-basic-common-init, c-common-init)
1410 (c-font-lock-init): Move make-local-variable to their setq.
1411
1412 * progmodes/vhdl-mode.el (vhdl-write-file-hooks-init)
1413 (vhdl-hs-minor-mode, vhdl-ps-print-init): Fix make-local-variable ->
1414 make-local-hook.
1415 * progmodes/sh-script.el (sh-require-final-newline): Remove.
1416 (sh-set-shell): Don't set require-final-newline since it's already done
1417 by prog-mode.
1418 * progmodes/modula2.el (m2-mode): Don't make m2-end-comment-column
1419 since we never set it.
1420 * progmodes/ebrowse.el (ebrowse-set-tree-indentation):
1421 Use read-string and standard prompt.
1422 * progmodes/dcl-mode.el (dcl-mode-map): Move init into declaration.
1423 * progmodes/meta-mode.el (meta-mode-abbrev-table): Merge init and decl.
1424 (meta-common-mode-syntax-table): Rename from meta-mode-syntax-table.
1425 (meta-common-mode-map): Rename from meta-mode-map.
1426 Remove C-m binding, which is a user preference, not mode specific.
1427 (meta-common-mode): New major mode; replace meta-common-initialization.
1428 * progmodes/js.el (js-mode): Call syntax-propertize rather than messing
1429 around with font-lock.
1430 * progmodes/etags.el (select-tags-table-mode):
1431 Derive from special-mode.
1432 * progmodes/octave-mod.el (octave-mode):
1433 * progmodes/gdb-mi.el (gdb-inferior-io-mode, gdb-threads-mode)
1434 (gdb-memory-mode, gdb-disassembly-mode, gdb-breakpoints-mode)
1435 (gdb-frames-mode, gdb-locals-mode, gdb-registers-mode):
1436 Let define-derived-mode do its job.
1437 * progmodes/cpp.el (cpp-edit-mode-map):
1438 Move initialization into declaration.
1439 (cpp-edit-mode): Use define-derived-mode.
1440 (cpp-edit-load): Use derived-mode-p.
1441 * progmodes/mixal-mode.el (mixal-mode):
1442 * progmodes/f90.el (f90-mode):
1443 * progmodes/cfengine.el (cfengine-mode): Don't bother setting
1444 require-final-newline since prog-mode does it already.
1445 * progmodes/cc-cmds.el (c-update-modeline): Use match-string.
1446 * progmodes/asm-mode.el (asm-mode-map): Fix menu setup.
1447 * progmodes/antlr-mode.el: Require cc-mode upfront.
1448 (antlr-mode-syntax-table, antlr-action-syntax-table): Initialize in
1449 the declaration.
1450 (antlr-directory-dependencies, antlr-show-makefile-rules):
1451 Use derived-mode-p.
1452 (antlr-language-option): Don't assume point-min==1.
1453 (antlr-mode): Use define-derived-mode.
1454 * progmodes/ada-mode.el: Use derived-mode-p.
1455 (ada-mode): Use define-derived-mode.
1456 Use hack-local-variables-hook.
1457
61f91c04
SM
14582010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
1459
1460 * textmodes/texinfo.el (texinfo-mode-map): Bind texinfo-insert-@end.
1461 (texinfo-mode): Don't disable adaptive-fill-mode.
1462 (texinfo-insert-block): Adjust cursor placement for blocks with arg.
1463 (texinfo-insert-@end, texinfo-insert-braces, texinfo-insert-@code)
1464 (texinfo-insert-@dfn, texinfo-insert-@email, texinfo-insert-@emph)
1465 (texinfo-insert-@example, texinfo-insert-@file, texinfo-insert-@item)
1466 (texinfo-insert-@kbd, texinfo-insert-@node, texinfo-insert-@noindent)
1467 (texinfo-insert-@quotation, texinfo-insert-@samp)
1468 (texinfo-insert-@strong, texinfo-insert-@table, texinfo-insert-@var)
1469 (texinfo-insert-@uref): Use define-skeleton.
1470 (texinfo-insert-@-with-arg): Delete.
1471
72a44673
EZ
14722010-12-10 Eli Zaretskii <eliz@gnu.org>
1473
1474 * arc-mode.el (archive-zip-extract): If w32-quote-process-args is
1475 nil, do quote archive member names. (Bug#6144)
1476
ab540f59
GM
14772010-12-10 Glenn Morris <rgm@gnu.org>
1478
66f782de
GM
1479 * files.el (diff-no-select): Declare.
1480
e554b3f8
GM
1481 * mail/emacsbug.el (report-emacs-bug): Use mail-user-agent properties.
1482 (report-emacs-bug-create-existing-bugs-buffer): Avoid free variables.
1483
ab540f59
GM
1484 * comint.el (comint-input-ring-file-name): Doc fix.
1485
f68ab99b
EZ
14862010-12-09 Eli Zaretskii <eliz@gnu.org>
1487
1488 * menu-bar.el (menu-bar-frame-for-menubar, menu-bar-positive-p):
1489 New functions.
61f91c04
SM
1490 (menu-bar-showhide-menu) <menu-bar-mode, showhide-tool-bar>:
1491 Use them instead of `nil' and `>', respectively.
f68ab99b
EZ
1492 (menu-bar-showhide-tool-bar-menu): Use menu-bar-frame-for-menubar
1493 instead of `nil'.
1494 (toggle-menu-bar-mode-from-frame): Use menu-bar-frame-for-menubar
1495 and menu-bar-positive-p instead of `nil' and `>', respectively.
1496 (Bug#1077)
1497
650453a9
VJL
14982010-12-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1499
1500 * whitespace.el (whitespace-newline-mode): Code fix.
1501
28d5de72
GM
15022010-12-09 Glenn Morris <rgm@gnu.org>
1503
1504 * play/landmark.el (lm-print-y,s,noise-int, lm-print-y,s,noise):
1505 Rename functions without commas, update callers.
1506
b596d50d 15072010-12-08 Jeff Dairiki <dairiki@dairiki.org> (tiny change)
16498102 1508
b596d50d
GM
1509 * whitespace.el (whitespace-cleanup-region):
1510 Clean up spaces before tabs. (Bug#7582)
16498102 1511
eff37c5e
KF
15122010-12-08 Karl Fogel <kfogel@red-bean.com>
1513
1514 * bookmark.el: Adjust parameter names and doc strings to resolve
1515 confusion over whether "bookmark" meant a bookmark name or a
1516 bookmark record. Along the way, shorten one function's name for
1517 similar reasons. (Issue #7548)
1518 (bookmark-name-from-record): New name for
1519 `bookmark-name-from-full-record'. All callers changed.
1520 (bookmark-get-bookmark, bookmark-get-bookmark-record)
1521 (bookmark-default-annotation-text, bookmark-prop-get, bookmark-prop-set)
1522 (bookmark-get-annotation, bookmark-set-annotation)
1523 (bookmark-get-filename, bookmark-set-filename)
1524 (bookmark-get-position, bookmark-set-position)
1525 (bookmark-get-front-context-string, bookmark-set-front-context-string)
1526 (bookmark-get-rear-context-string, bookmark-set-rear-context-string)
1527 (bookmark-get-handler, bookmark-edit-annotation, bookmark--jump-via)
1528 (bookmark-handle-bookmark, bookmark-location, bookmark-show-annotation):
1529 Rename `bookmark' parameter to `bookmark-name-or-record', to
1530 clearly show its role, and shorten or adjust doc strings accordingly.
1531 (bookmark-set-name): Same, and pass the parameter directly to
1532 `bookmark-get-bookmark' instead of redundantly doing the callee's work.
1533 (bookmark-default-annotation-text, bookmark-send-edited-annotation)
1534 (bookmark-relocate, bookmark-insert-location, bookmark-insert)
1535 (bookmark-delete): Rename `bookmark' parameter to `bookmark-name',
1536 and in some cases shorten doc string accordingly.
1537 (bookmark-rename): Change `old' and `new' parameters to `old-name'
1538 and `new-name', and adjust an internal variable to avoid confusion.
1539 (bookmark-jump, bookmark-jump-noselect): Clarify `bookmark'
1540 parameter in doc string.
1541
5fe9ebd1
GM
15422010-12-08 Glenn Morris <rgm@gnu.org>
1543
ac8331a7
GM
1544 * progmodes/gdb-mi.el (gdb): Try to initialize comint input history
1545 from gdb's history file. (Bug#7575)
1546
5fe9ebd1
GM
1547 * mail/emacsbug.el (report-emacs-bug):
1548 Try to handle some other mail clients.
1549
33cf0fb2
SM
15502010-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
1551
1552 * files.el (dir-locals-collect-variables): Don't let errors stop us.
1553 Use string-prefix-p.
1554 (file-name-version-regexp): New var.
1555 (file-name-sans-versions):
1556 * jka-cmpr-hook.el (jka-compr-build-file-regexp): Use it,
1557 (jka-compr-get-compression-info): Use dolist.
1558 (jka-compr-compression-info-list): Don't bother specifying
1559 version/backup regexps.
1560
11c31b99
TH
15612010-12-07 Tassilo Horn <tassilo@member.fsf.org>
1562
1563 * simple.el (just-one-space): Make argument n default to 1 if
1564 omitted.
1565
a733fc37
SM
15662010-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
1567
1568 * electric.el (electric-indent-post-self-insert-function):
1569 Delete trailing newlines even if we don't reindent.
1570
88b5a757
DD
15712010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1572
a733fc37
SM
1573 * minibuffer.el (completion-at-point): Remove the `arg'.
1574 * bindings.el (complete-symbol): Move back from minibuffer.el.
1575
15762010-12-06 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1577
88b5a757
DD
1578 * simple.el (just-one-space): Delete newlines for negative arg.
1579
ce327e48
SM
15802010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1581
1582 * ansi-color.el (ansi-color-unfontify-region): Replace by trivial def.
1583 (ansi-color-filter-apply): Simplify.
1584 (ansi-color-apply): Use `font-lock-face' rather than `face'.
1585
ac73d955
BR
15862010-12-05 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
1587
1588 * vc/vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
1589
8c44f097
CY
15902010-12-04 Chong Yidong <cyd@stupidchicken.com>
1591
1592 * dired.el (dired-use-ls-dired): Set default to a special
1593 "unspecified" value.
1594 (dired-insert-directory): When called the first time, check
1595 whether "ls --dired" succeeds and set dired-use-ls-dired (Bug#7546).
1596
15af15e5
TO
15972010-12-04 Tak Ota <Takaaki.Ota@am.sony.com>
1598
1599 * replace.el: Add "collect" feature to occur.
1600 (occur-collect-regexp-history): New var.
88b5a757
DD
1601 (occur-read-primary-args): Return a replace string for nlines,
1602 if needed.
15af15e5
TO
1603 (occur): Extend the meaning of nlines.
1604
b2e6e5bd
SM
16052010-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
1606
1607 * progmodes/which-func.el (which-func-ff-hook): Log the error message.
1608 (which-func-update-1): Distinguish symbols from strings.
1609 (which-function): Stay within 80 columns.
1610
ee9355dc
SM
16112010-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
1612
7f0ea0ff
SM
1613 * subr.el (with-demoted-errors): Distinguish symbols from strings.
1614
ee9355dc
SM
1615 * newcomment.el (comment-styles): Add docs to each style (bug#7509).
1616 Improve docstring.
1617 (comment-style): Use comment-styles's docs to describe values.
1618
3e972d98
JD
16192010-12-03 Jan Djärv <jan.h.d@swipnet.se>
1620
1621 * term/common-win.el (x-setup-function-keys): Restore ns-new-frame
1622 and ns-show-prefs (Bug#7535).
1623
1624 * term/ns-win.el (global-map): Restore ns-new-frame and ns-show-prefs
1625 bindings (Bug#7535).
1626
c879436a
GM
16272010-12-03 Glenn Morris <rgm@gnu.org>
1628
afe27238
GM
1629 * nxml/nxml-mode.el: Require rng-nxml.
1630 (rng-nxml-mode-init, nxml-enable-unicode-char-name-sets):
1631 Remove declarations.
1632
65beee52
GM
1633 * nxml/nxml-mode.el, nxml/nxml-outln.el, nxml/rng-loc.el:
1634 * nxml/rng-nxml.el, nxml/rng-valid.el:
1635 Remove leading `*' from defcustom docs.
1636
ad961a00
GM
1637 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
1638 (normal-top-level-add-to-load-path, tty-handle-args):
1639 Convert comments to basic doc-strings.
1640
c5fd0ab5
GM
1641 * net/browse-url.el (browse-url-url-at-point)
1642 (browse-url-default-browser): Remove autoload cookies.
1643
f62f063d
GM
1644 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
1645 Remove more undefined cl functions.
1646
c879436a
GM
1647 * vc/diff.el (diff-sentinel): Make new arguments optional.
1648 * ibuf-ext.el (diff-sentinel): Update declaration.
1649
3721e124
DU
16502010-12-03 Daiki Ueno <ueno@unixuser.org>
1651
1652 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
1653 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
1654 (epg-context-set-passphrase-callback): Mention that the callback
1655 is not called when used with GnuPG 2.x.
1656
66feec8b
MA
16572010-12-02 Michael Albinus <michael.albinus@gmx.de>
1658
1659 * net/tramp.el (tramp-local-host-regexp): Add "localhost6".
1660 (tramp-file-name-port): Check also for `tramp-default-port'.
1661 (tramp-get-connection-name): New defun.
1662 (tramp-get-connection-process): Use it.
1663 (tramp-debug-message): Extend function exclude list.
1664 (tramp-drop-volume-letter): Fix doc string.
1665
1666 * net/tramp-cmds.el: Remove solved todo item.
1667
1668 * net/tramp-efs.el:
1669 * net/tramp-ftp.el:
1670 * net/tramp-gvfs.el:
1671 * net/tramp-gw.el:
1672 * net/tramp-imap.el:
1673 * net/tramp-smb.el: Fix regexps added to `tramp-default-method-alist'
1674 and `tramp-default-user-alist', respectively.
1675
88b5a757
DD
1676 * net/tramp-gw.el (tramp-gw-open-connection):
1677 Use `tramp-get-connection-name' and `tramp-get-connection-buffer'.
66feec8b
MA
1678
1679 * net/tramp-imap.el (tramp-imap-make-iht): Use just
1680 `tramp-file-name-port'.
1681
1682 * net/tramp-sh.el (tramp-methods): Add recursive options to "pscp"
1683 and "psftp". Exchange "%k" marker with options.
1684 (tramp-do-copy-or-rename-file, tramp-sh-handle-file-local-copy):
1685 Compute size of link target.
1686 (tramp-do-copy-or-rename-file-out-of-band). Move setting of
1687 `tramp-current-*' up due to gateway methods. Optimze computing of
1688 copy arguments. Use `tramp-get-connection-name' and
1689 `tramp-get-connection-buffer'. Improve debug messages.
1690 (tramp-compute-multi-hops): Remove port determination.
1691 (tramp-maybe-open-connection): Use `tramp-get-connection-name'.
1692
1693 * net/trampver.el: Update release number.
1694
bd77c2ef
GM
16952010-12-02 Glenn Morris <rgm@gnu.org>
1696
05907bb3
GM
1697 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
1698 Avoid infinite loop over windows. (Bug#7492)
1699
bd77c2ef
GM
1700 * progmodes/flymake.el (flymake-check-file-limit):
1701 Allow nil to mean "no limit".
1702 (flymake-check-patch-master-file-buffer): Update for above change.
1703 Allow a .tex file-name extension to be optional.
1704 (flymake-master-tex-init): Also match \include statements.
1705
f7ca27a1
SS
17062010-11-30 Sam Steingold <sds@gnu.org>
1707
1708 * nxml/nxml-mode.el (nxml-parent-document): Add a variable.
1709 (nxml-parent-document-set): A function to set `nxml-parent-document'.
1710 (nxml-mode): Define using `define-derived-mode' instead of `defun'.
1711 (nxml-mode-hook): Remove `defcustom' (auto-defined by
1712 define-derived-mode').
1713 * nxml/rng-valid.el (rng-dtd-trivial-p): Add a helper function for
1714 users who want to call `nxml-parent-document-set'.
1715
402c8a49
CY
17162010-11-27 Chong Yidong <cyd@stupidchicken.com>
1717
1718 * log-edit.el (log-edit-font-lock-keywords): Don't try matching
1719 stand-alone lines, since that is handled by log-edit-match-to-eoh
1720 (Bug#6465).
1721
d1882ac7
EW
17222010-11-27 Eduard Wiebe <usenet@pusto.de>
1723
1724 * dired.el (dired-get-filename): Replace backslashes with slashes
1725 in file names on MS-Windows, needed by `locate'. (Bug#7308)
1726 * locate.el (locate-default-make-command-line): Don't consider
1727 drive letter and root directory part of
1728 `directory-listing-before-filename-regexp'. (Bug#7308)
1729 (locate-post-command-hook, locate-post-command-hook): New defcustoms.
1730
07976ae3 17312010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
09ffa822
SM
1732
1733 * emacs-lisp/smie.el (smie-prec2->grammar): Simplify handling
1734 of :smie-open/close-alist.
1735 (smie-next-sexp): Make it accept a "start token" as argument.
1736 (smie-indent-keyword): Be careful not to misidentify tokens that span
1737 more than one line, as empty lines. Add argument `token'.
1738
07976ae3 17392010-11-27 Kenichi Handa <handa@m17n.org>
3d9ee611 1740
afde451a
KH
1741 * mail/rmailmm.el (rmail-mime-insert-multipart): For unsupported
1742 multipart subtypes, insert all as usual.
1743
3d9ee611
KH
1744 * mail/rmail.el: Require rfc2047.
1745
07976ae3 17462010-11-27 Kenichi Handa <handa@m17n.org>
d1be4ec2
KH
1747
1748 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-type)
1749 (rmail-mime-entity-disposition)
1750 (rmail-mime-entity-transfer-encoding, rmail-mime-entity-header)
1751 (rmail-mime-entity-body, rmail-mime-entity-children): New functions.
1752 (rmail-mime-save): Handle the case that the button's `data' is a
1753 MIME entity.
1754 (rmail-mime-insert-text): New function.
9e0ecdab 1755 (rmail-mime-insert-image): Handle the case that DATA is a MIME entity.
d1be4ec2
KH
1756 (rmail-mime-bulk-handler): Just call rmail-mime-insert-bulk.
1757 (rmail-mime-insert-bulk): New function mostly copied from the old
1758 rmail-mime-bulk-handler.
9e0ecdab
GM
1759 (rmail-mime-multipart-handler): Just call rmail-mime-process-multipart.
1760 (rmail-mime-process-multipart): New function mostly copied from
d1be4ec2
KH
1761 the old rmail-mime-multipart-handler.
1762 (rmail-mime-show): Just call rmail-mime-process.
9e0ecdab 1763 (rmail-mime-process): New function mostly copied from the old
d1be4ec2
KH
1764 rmail-mime-show.
1765 (rmail-mime-insert-multipart, rmail-mime-parse)
1766 (rmail-mime-insert, rmail-show-mime)
1767 (rmail-insert-mime-forwarded-message)
1768 (rmail-insert-mime-resent-message): New functions.
1769 (rmail-insert-mime-forwarded-message-function): Set to
1770 rmail-insert-mime-forwarded-message.
1771 (rmail-insert-mime-resent-message-function): Set to
1772 rmail-insert-mime-resent-message.
1773
1774 * mail/rmailsum.el: Require rfc2047.
1775 (rmail-header-summary): Handle multiline Subject: field.
1776 (rmail-summary-line-decoder): Change the default to
1777 rfc2047-decode-string.
1778
1779 * mail/rmail.el (rmail-enable-mime): Change the default to t.
1780 (rmail-mime-feature): Change the default to `rmailmm'.
1781 (rmail-quit): Delete the specifal code for rmail-enable-mime.
1782 (rmail-display-labels): Likewise.
1783 (rmail-show-message-1): Check rmail-enable-mime, and use
1784 rmail-show-mime-function for a MIME message. Decode the headers
1785 according to RFC2047.
1786
07976ae3 17872010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
33aeea0e
SM
1788
1789 * progmodes/which-func.el (which-func-imenu-joiner-function):
1790 Return a string, as expected.
1791 (which-function-mode): Make sure we stop any previous timer before
1792 starting a new one.
1793
07976ae3 17942010-11-27 Michael Albinus <michael.albinus@gmx.de>
e40fc745
MA
1795
1796 * net/tramp.el (tramp-default-method-alist)
33aeea0e
SM
1797 (tramp-default-user-alist, tramp-default-proxies-alist):
1798 Adapt custom options type. (Bug#7445)
e40fc745 1799
07976ae3 18002010-11-27 Chong Yidong <cyd@stupidchicken.com>
ae3da38a
CY
1801
1802 * progmodes/python.el: Add Ipython support (Bug#5390).
1803 (python-shell-prompt-alist)
1804 (python-shell-continuation-prompt-alist): New options.
1805 (python--set-prompt-regexp): New function.
33aeea0e
SM
1806 (inferior-python-mode, run-python, python-shell):
1807 Require ansi-color. Use python--set-prompt-regexp to set the comint
ae3da38a
CY
1808 prompt based on the Python interpreter.
1809 (python--prompt-regexp): New var.
1810 (python-check-comint-prompt)
1811 (python-comint-output-filter-function): Use it.
1812 (run-python): Use a pipe (Bug#5694).
1813
07976ae3 18142010-11-27 Chong Yidong <cyd@stupidchicken.com>
1d851570
CY
1815
1816 * progmodes/python.el (run-python): Doc fix.
1817 (python-keep-current-directory-in-path): New var (Bug#7454).
1818
07976ae3 18192010-11-27 Chong Yidong <cyd@stupidchicken.com>
76dabd37
CY
1820
1821 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
1822 Prompt user before actually printing.
1823
0b839457
GM
18242010-11-27 Glenn Morris <rgm@gnu.org>
1825
1826 * startup.el (package-enable-at-startup, package-initialize):
1827 Remove unnecessary declarations.
1828
96107967
EZ
18292010-11-27 Eli Zaretskii <eliz@gnu.org>
1830
1831 * international/characters.el (glyphless-char-display-control):
1832 Exclude newline and TAB from the c0-control group.
1833
a140ec5f
GM
18342010-11-27 Glenn Morris <rgm@gnu.org>
1835
82445062
GM
1836 * mail/sendmail.el (build-mail-aliases): Doc fix for autoload.
1837 (expand-mail-aliases): Remove unnecessary autoload.
1838
08b5f072
GM
1839 * allout.el (allout-command-prefix, allout-mode-map): Declare.
1840
e96d4147
GM
1841 * shell.el (shell-dir-cookie-re): Move definition before use.
1842
a140ec5f
GM
1843 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
1844 Replace undefined CL functions.
1845
a2249e66
EZ
18462010-11-26 Eli Zaretskii <eliz@gnu.org>
1847
228482b2
EZ
1848 * simple.el (prog-mode): Set bidi-paragraph-direction to
1849 left-to-right.
1850
a2249e66
EZ
1851 * term/pc-win.el (x-get-selection-internal): Emulation for MS-DOS.
1852
d01d7b8d
GM
18532010-11-26 Glenn Morris <rgm@gnu.org>
1854
1855 * calendar/diary-lib.el (diary-outlook-format-1): New function, so that
1856 diary-outlook-formats can be sensitive to calendar-date-style.
1857 (diary-outlook-formats): Simplify the default setting.
1858 (diary-from-outlook-internal): Pass subject and body as arguments.
1859 Use dolist rather than dotimes. Don't save the diary buffer.
1860 (diary-from-outlook-gnus, diary-from-outlook-rmail):
1861 Pass subject and body as explicit arguments to the -internal function.
1862
b3ea64a3
LMI
18632010-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
1864
1865 * mail/rfc2368.el (rfc2368-parse-mailto-url): Unfold URLs before
1866 parsing them. This makes mailto:...?subject=foo\nbar work.
1867
d5e7b0d8
SM
18682010-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
1869
1870 * vc/diff.el (diff): Fix last change.
1871
872ab164
SM
18722010-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
1873
1874 * emacs-lisp/pcase.el: Improve pcase-let. Use "pcase--" prefix.
1875 (pcase--dontcare-upats): New var.
1876 (pcase-let, pcase-let*): Generate better code.
1877 Accept the same bodies as `let'.
1878 (pcase-dolist): New macro.
1879 (pcase--trivial-upat-p): New helper function.
1880 (pcase--expand): Strip leading "(let nil" if any.
1881
876d1684
LMI
18822010-11-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
1883
7bd9b9d8
LMI
1884 * mail/mailclient.el (browse-url): Require.
1885 (mailclient-send-it): Bind `browse-url-mailto-function' to nil to
1886 use the external browser function to send the mail (bug#7469).
1887
876d1684
LMI
1888 * net/browse-url.el (browse-url-browser-function): Revert the
1889 default back to the previous value, since the new value broke
1890 mailclient.el.
1891 (browse-url-mailto-function): New variable for mailto: URLs.
1892 (browse-url): Use the new variable for mailto: URLs.
1893
6e13206c
SM
18942010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
1895
1896 * eshell/esh-cmd.el (eshell-parse-command):
1897 * eshell/esh-arg.el (eshell-parse-arguments):
1898 * eshell/em-script.el (eshell-source-file):
1899 Use with-silent-modifications.
1900
3d92f44e
CY
19012010-11-23 Chong Yidong <cyd@stupidchicken.com>
1902
1903 * vc/vc.el (vc-merge): Remove optional arg PROMPT. Always prompt
1904 for a merge location.
1905
1906 * vc/vc-bzr.el (vc-bzr-pull): Remove unused var.
1907 (vc-bzr-merge-branch): Always prompt.
1908 (vc-bzr-async-command): Use the full branch filename.
1909
8f5f1e68
SM
19102010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
1911
1912 * shell.el (shell): Use current-buffer by default if it's already
1913 a shell mode buffer and its process is dead.
ee9355dc 1914 Suggested by Jose E. Marchesi <jemarch@gnu.org>.
8f5f1e68 1915
331460ac
TH
19162010-11-23 Tassilo Horn <tassilo@member.fsf.org>
1917
8f5f1e68
SM
1918 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
1919 Mention that the keywords should be comma separated.
331460ac 1920
2c3160c5
CY
19212010-11-23 Chong Yidong <cyd@stupidchicken.com>
1922
1923 * vc/vc.el (vc-merge): Use vc-BACKEND-merge-branch if available.
1924 Accept optional prefix arg meaning to prompt for a command.
1925 (vc-update): Use vc-BACKEND-pull if available. Accept optional
1926 prefix arg meaning to prompt for a command.
1927 (vc-pull): Alias for vc-update.
1928
1929 * vc/vc-bzr.el (vc-bzr-admin-branchconf, vc-bzr-history): New vars.
1930 (vc-bzr--branch-conf, vc-bzr-async-command, vc-bzr-pull)
1931 (vc-bzr-merge-branch): New functions, implementing merge-branch
1932 and pull operations.
1933
b2e44819
SM
19342010-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
1935
8a0eb852
SM
1936 * Makefile.in: Fix up last merge.
1937
b2e44819
SM
1938 * vc/diff.el (diff-old-temp-file, diff-new-temp-file): Remove.
1939 (diff-sentinel): Get them as arguments instead.
1940 (diff-old-file, diff-new-file, diff-extra-args): Remove.
1941 (diff-file-local-copy, diff-better-file-name): New funs.
1942 (diff-no-select): Rename from diff-into-buffer.
1943 Support buffers additionally to files. Move `buf' arg. Don't display buf.
1944 Prefer closures to buffer-local variables.
1945 (diff): Adjust accordingly.
1946 (diff-buffer-with-file): Move from files.el.
1947 * files.el (diff-buffer-with-file): Move to vc/diff.el.
1948 (diff-buffer-internal): Remove.
1949 (diff-buffer-buffer): Remove.
1950 (save-some-buffers-action-alist): Use diff-no-select so as not to guess
1951 the buffer name used, and so as not to mess up windows and frames.
1952
6a7662bb
BR
19532010-11-22 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
1954
1955 * files.el: Make revert work with diff-buffer-with-file (bug#7277).
1956 (diff-buffer-internal): New function extracted from diff-buffer-with-file
1957 (diff-buffer-with-file): Use it.
1958 * vc/diff.el (diff-into-buffer): New fun, extracted from diff.
1959 (diff): Use it.
1960
c799747b
TH
19612010-11-22 Tassilo Horn <tassilo@member.fsf.org>
1962
1963 * textmodes/reftex-ref.el (reftex-goto-label): Use the current
1964 \ref's or \pageref's value as default instead of initial input.
1965
e274eb13
MA
19662010-11-21 Michael Albinus <michael.albinus@gmx.de>
1967
1968 * files.el (backup-by-copying-when-mismatch): The default value is
1969 now t.
1970
1971 * startup.el (normal-top-level):
1972 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
1973 `backup-by-copying-when-mismatch'.
1974
77af54d7
JD
19752010-11-21 Jan Djärv <jan.h.d@swipnet.se>
1976
1977 * tool-bar.el (tool-bar-setup): Remove save as, print and customize.
1978
4e2f7d2a
CY
19792010-11-21 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1980
6a7662bb
BR
1981 * progmodes/python.el (python-font-lock-keywords):
1982 Highlight top-level augmented assignments (Bug#6445).
4e2f7d2a 1983
b7d1e144
JD
19842010-11-21 Jan Djärv <jan.h.d@swipnet.se>
1985
1986 * term/ns-win.el (ns-right-control-modifier)
1987 (ns-right-command-modifier): Defvar them.
1988
1989 * cus-start.el (all): Add ns-right-control-modifier and
1990 ns-right-command-modifier (Bug#7458).
1991
c11cc37a
GM
19922010-11-20 Glenn Morris <rgm@gnu.org>
1993
1994 * emacs-lisp/authors.el (authors-ignored-files)
1995 (authors-valid-file-names, authors-renamed-files-alist): Add entries.
1996
7dcd777e
TH
19972010-11-20 Tassilo Horn <tassilo@member.fsf.org>
1998
1999 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs)
2000 (report-emacs-bug-parse-query-results)
2001 (report-emacs-bug-create-existing-bugs-buffer): Pass through
2002 keywords used for querying the bug database to show them in the
2003 existing bugs buffer.
2004
d2bd5189
JD
20052010-11-20 Jan Djärv <jan.h.d@swipnet.se>
2006
2007 * tool-bar.el (tool-bar-setup): Add some :vert-only keywords.
2008
2009 * info.el (info-tool-bar-map): Add some :vert-only keywords.
2010
0e7c0582
EZ
20112010-11-20 Eli Zaretskii <eliz@gnu.org>
2012
2013 * international/characters.el (glyphless-char-display-control):
2014 Make it a defcustom, with update-glyphless-char-display as its
2015 :set attribute.
2016 (top level): Don't call update-glyphless-char-display.
2017
7398933f
MA
20182010-11-20 Michael Albinus <michael.albinus@gmx.de>
2019
2020 Sync with Tramp 2.2.0.
2021
2022 * net/tramp.el (tramp-handle-insert-file-contents): Don't use
2023 `file-remote-p' (due to compatibility).
2024
2025 * net/tramp-sh.el (tramp-do-copy-or-rename-file-directly)
2026 (tramp-do-copy-or-rename-file-out-of-band): Use `ignore-errors'.
2027
2028 * net/trampver.el: Update release number.
2029
1cd64aae
EZ
20302010-11-20 Eli Zaretskii <eliz@gnu.org>
2031
2032 * faces.el (glyphless-char): Define value for `pc'.
2033
614316a7
TH
20342010-11-20 Tassilo Horn <tassilo@member.fsf.org>
2035
26214810
EZ
2036 Implemented a bug querying mechanism.
2037 * mail/emacsbug.el (report-emacs-bug-tracker-url): New variable.
614316a7
TH
2038 (report-emacs-bug-create-existing-bugs-buffer)
2039 (report-emacs-bug-parse-query-results)
26214810 2040 (report-emacs-bug-query-existing-bugs): New functions.
614316a7 2041
9061f667
TH
20422010-11-19 Tassilo Horn <tassilo@member.fsf.org>
2043
2044 * textmodes/reftex-ref.el (reftex-goto-label): If point is inside
2045 a \ref{} or \pageref{} macro, then use its value as initial input.
2046
1265829e
JB
20472010-11-19 Jay Belanger <jay.p.belanger@gmail.com>
2048
2049 * calc/calc-units.el (math-build-units-table-buffer):
2050 calc/README: Mention that the TeX specific units won't use the
2051 `tex' prefix in TeX mode.
2052 calc/calc-lang.el (math-variable-table): Don't use the `tex'
2053 prefix for units in TeX mode.
2054
9fca7811
SM
20552010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
2056
2057 * simple.el (kill-new, kill-append, kill-region):
76dabd37
CY
2058 * comint.el (comint-kill-region): Make the yank-handler argument
2059 obsolete.
9fca7811 2060
4a47c275 20612010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
88bf1bec 2062
e2f454c4
SM
2063 * emacs-lisp/smie.el (smie-bnf-classify): Signal errors for tokens
2064 that are both openers (resp. closers) and something else.
2065 (smie-grammar): Loosen definition of valid values.
2066 (smie-next-sexp, smie-down-list, smie-blink-matching-open)
2067 (smie-indent--parent, smie-rule-parent, smie-indent-keyword)
2068 (smie-indent-after-keyword): Adjust users.
2069 (smie-indent-keyword): Don't indent empty lines.
2070
88bf1bec
SM
2071 * vc-hg.el (vc-hg-program): New var.
2072 Suggested by Norman Gray <norman@astro.gla.ac.uk>.
2073 (vc-hg-state, vc-hg-working-revision, vc-hg-command): Use it.
2074
4a47c275 20752010-11-18 Glenn Morris <rgm@gnu.org>
4c0eb0d3
GM
2076
2077 * emacs-lisp/autoload.el (autoload-find-destination): The function
2078 coding-system-eol-type may return non-numeric values. (Bug#7414)
2079
4a47c275 20802010-11-18 Ulrich Mueller <ulm@gentoo.org>
bf6442c3
UM
2081
2082 * server.el (server-force-stop): Ensure the server is stopped (Bug#7409).
2083
4a47c275 20842010-11-18 Eli Zaretskii <eliz@gnu.org>
e68afd74
EZ
2085
2086 * subr.el (posn-col-row): Pay attention to header line. (Bug#7390)
2087
4a47c275 20882010-11-18 Chong Yidong <cyd@stupidchicken.com>
de02effd
CY
2089
2090 * textmodes/picture.el (picture-mouse-set-point): Don't use
2091 posn-col-row; explicitly compute the motion based on the posn at
2092 the window-start (Bug#7390).
2093
4a47c275 20942010-11-18 Glenn Morris <rgm@gnu.org>
f0a698ab
GM
2095
2096 * novice.el (disabled-command-function):
2097 Fix 2009-11-15 change. (Bug#7384)
2098
4a47c275 20992010-11-18 Glenn Morris <rgm@gnu.org>
29f30ab7
GM
2100
2101 * calendar/calendar.el (diary-iso-date-forms): Make elements
2102 mutually exclusive. (Bug#7377)
2103
4a47c275 21042010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
10b40d2e
SM
2105
2106 * emacs-lisp/smie.el (smie-prec2->grammar): Obey equality constraints
2107 when filling the remaining "unconstrained" values.
2108
4a47c275 21092010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
7bea8c7a 2110
acef0722
SM
2111 * emacs-lisp/bytecomp.el (byte-compile-warnings): Simplify the
2112 safety predicate.
2113
2114 * files.el (safe-local-variable-p): Gracefully handle errors.
2115
7bea8c7a
SM
2116 * emacs-lisp/smie.el (smie-rule-parent, smie-indent--rule):
2117 Use smie-indent-virtual when indenting relative to an opener.
2118 (smie-rule-separator): Use smie-rule-parent.
2119 (smie-indent-keyword): Consult rules, even for openers at bol.
2120 (smie-indent-comment-close): Try to align closer's content.
2121
4a47c275 21222010-11-18 Glenn Morris <rgm@gnu.org>
b010e1ba
GM
2123
2124 * ls-lisp.el (ls-lisp-dired-ignore-case): Make it an obsolete alias.
2125
4a47c275 21262010-11-18 Glenn Morris <rgm@gnu.org>
c790cad4 2127
aa514451
GM
2128 * printing.el (pr-menu-bind): Doc fix.
2129
32b636de
GM
2130 * speedbar.el (speedbar-toggle-images): Doc fix.
2131
bc1d5cdf
GM
2132 * progmodes/python.el (python-shell): Doc fix.
2133
c790cad4
GM
2134 * wid-edit.el (widget-field-use-before-change)
2135 (widget-use-overlay-change): Doc fixes.
2136
c51bb5d2
SM
21372010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
2138
8bbb7dd8
SM
2139 Minor cleanup to improve style.
2140 * textmodes/rst.el (rst-update-section): Use point-marker.
2141 (rst-get-decoration): Eliminate unneeded assignment.
2142 (rst-promote-region, rst-straighten-decorations)
2143 (rst-section-tree, rst-adjust): Use point-marker.
2144 (rst-toc-mode-mouse-goto): Avoid setq.
2145 (rst-shift-region-guts, rst-shift-region-left)
2146 (rst-iterate-leftmost-paragraphs, rst-iterate-leftmost-paragraphs-2)
2147 (rst-convert-bullets-to-enumeration): Use copy-marker.
2148
b7e270a2
SM
2149 * minibuffer.el (completion-fail-discreetly): New var.
2150 (completion--do-completion): Use it.
2151
c51bb5d2
SM
2152 * electric.el (electric-pair-pairs): New var.
2153 (electric-pair-post-self-insert-function): Use it.
2154 (electric-layout-post-self-insert-function): Don't insert a before
2155 newline unless it's actually needed.
2156
c04f2ac0
SM
21572010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
2158
bac2de0f
SM
2159 * progmodes/python.el (run-python): Explain why we remove the current
2160 directory from sys.path. Suggested by Eric Hanchrow <erich@cozi.com>.
2161
c04f2ac0
SM
2162 * progmodes/grep.el (grep-regexp-alist): Tighten the regexp (bug#7378).
2163
7100ff98
SM
21642010-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
2165
03f70355
SM
2166 * progmodes/octave-mod.el: Rely on elecric-*-modes.
2167 (octave-mode-map): Don't bind ;, SPC, and LF.
2168 (octave-auto-indent, octave-auto-newline): Remove.
2169 (electric-layout-rules): Declare.
2170 (octave-mode): Set electric-layout-rules.
2171 (octave-indent-new-comment-line): Use reindent-then-newline-and-indent.
2172 (octave-reindent-then-newline-and-indent, octave-electric-semi)
2173 (octave-electric-space): Remove.
2174
7100ff98
SM
2175 * electric.el (electric-layout-mode): New minor mode.
2176 (electric--after-char-pos): New function.
2177 (electric-indent-post-self-insert-function): Use it.
2178 (electric-layout-rules): New var.
2179 (electric-layout-post-self-insert-function): New function.
2180 (electric-indent-mode): Make them interact better.
2181
cca982d0
SM
21822010-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
2183
2184 * emacs-lisp/checkdoc.el (checkdoc-syntax-table): Fix last change.
2185 (checkdoc-sentencespace-region-engine, checkdoc-this-string-valid)
2186 (checkdoc-proper-noun-region-engine): Use with-syntax-table.
2187
84992dff
AM
21882010-11-15 Agustín Martín <agustin.martin@hispalinux.es>
2189
2190 * textmodes/flyspell.el (flyspell-generic-progmode-verify):
2191 Make sure to check inside the word (Bug#6761).
2192
afa42fe3
CY
21932010-11-14 Chong Yidong <cyd@stupidchicken.com>
2194
2195 * startup.el (command-line): If the cursorColor resource is set,
2196 change the cursor face-spec (Bug#7392).
2197
a798747d 21982010-11-13 Ken Manheimer <ken.manheimer@gmail.com>
1c9b9df0 2199
a798747d 2200 The main features of the following allout.el changes are:
1c9b9df0
KM
2201 - implement user customization for the allout key bindings
2202 - add a customization control by which the user can inhibit use of
a798747d 2203 a trailing Ctrl-H, so by default it's reserved for use with
1c9b9df0
KM
2204 describe-prefix-bindings
2205 - adapt to new version of called-interactively-p, while
a798747d 2206 maintaining backwards compatibility with old version
1c9b9df0
KM
2207 - fix hotspot navigation so i works properly with meta-modified keys
2208
a798747d
GM
2209 * allout.el (allout-keybindings, allout-bind-keys)
2210 (allout-keybindings-binding, allout-prefixed-keybindings)
2211 (allout-unprefixed-keybindings, allout-preempt-trailing-ctrl-h)
2212 (allout-keybindings-list, allout-mode-map-adjustments)
2213 (allout-setup-mode-map): Establish allout-mode keymaps as user
2214 customizable settings, and also establish a customizable setting which
2215 regulates whether or not a trailing control-h is reserved for use with
2216 describe-prefix-bindings - and inhibit it by default, so that control-h
2217 *is* reserved for describe-prefix-bindings unless the user changes it.
2218
2219 * allout.el (allout-hotspot-key-handler): Distinguish more explicitly
2220 and accurately between modified and unmodified events, and handle
1c9b9df0
KM
2221 modified events more comprehensively.
2222
a798747d
GM
2223 * allout.el (allout-substring-no-properties):
2224 Alias to use or provide version of `substring-no-properties'.
2225 (allout-solicit-alternate-bullet): Use `allout-substring-no-properties'.
1c9b9df0 2226
a798747d
GM
2227 * allout.el (allout-next-single-char-property-change):
2228 Alias to use or provide version of `next-single-char-property-change'.
2229 (allout-annotate-hidden, allout-hide-by-annotation):
2230 Use `allout-next-single-char-property-change'.
1c9b9df0 2231
a798747d
GM
2232 * allout.el (allout-select-safe-coding-system):
2233 Alias to use or provide version of `select-safe-coding-system'.
2234 (allout-toggle-subtree-encryption):
2235 Use `allout-select-safe-coding-system'.
1c9b9df0 2236
a798747d
GM
2237 * allout.el (allout-set-buffer-multibyte):
2238 Alias to use or provide version of `set-buffer-multibyte'.
2239 (allout-encrypt-string): Use `allout-set-buffer-multibyte'.
1c9b9df0 2240
a798747d
GM
2241 * allout.el (allout-called-interactively-p): Macro for using the
2242 different versions of called-interactively-p identically, depending on
2243 the subroutine's argument signature.
2244 (allout-back-to-current-heading, allout-beginning-of-current-entry):
2245 Use `(interactive "p")' instead of `(called-interactively-p)'.
1c9b9df0 2246
a798747d
GM
2247 * allout.el (allout-init, allout-ascend, allout-end-of-level)
2248 (allout-previous-visible-heading, allout-forward-current-level)
2249 (allout-backward-current-level, allout-show-children):
2250 Use `allout-called-interactively-p' instead of `called-interactively-p'.
1c9b9df0 2251
a798747d
GM
2252 * allout.el (allout-before-change-handler):
2253 Exempt edits to the (overlaid) character after the allout outline
2254 bullet from edit confirmation prompt.
1c9b9df0 2255
a798747d
GM
2256 * allout.el (allout-add-resumptions):
2257 Ensure that it respects correct buffer for keybindings.
1c9b9df0 2258
a798747d
GM
2259 * allout.el (allout-beginning-of-line):
2260 Use `allout-previous-single-char-property-change' alias for the sake of
2261 diverse compatibility.
1c9b9df0 2262
a798747d
GM
2263 * allout.el (allout-end-of-line):
2264 Use `allout-mark-active-p' to encapsulate respect for mark activity.
1c9b9df0 2265
0216b738
CY
22662010-11-13 Chong Yidong <cyd@stupidchicken.com>
2267
2268 * frame.el (frame-notice-user-settings): Don't clobber other
2269 user-set parameters when calling face-set-after-frame-default in
2270 response to background-color parameter (Bug#7373).
2271
0eb025fb
EZ
22722010-11-13 Eli Zaretskii <eliz@gnu.org>
2273
2274 * international/characters.el (glyphless-char-display-control):
88b5a757 2275 Rename from glyphless-char-control; all users changed. Doc fix.
4a9f985c
EZ
2276 Signal an error if display method is not one of the recognized
2277 symbols.
0eb025fb 2278
6e060cee
MA
22792010-11-13 Michael Albinus <michael.albinus@gmx.de>
2280
2281 * net/tramp-compat.el (tramp-compat-line-beginning-position)
2282 (tramp-compat-line-end-position): Remove them.
2283
2284 * net/tramp.el (tramp-parse-rhosts-group)
2285 (tramp-parse-shosts-group, tramp-parse-sconfig-group)
2286 (tramp-parse-hosts-group, tramp-parse-passwd-group)
2287 (tramp-parse-netrc-group, tramp-parse-putty-group)
2288 * net/tramp-cmds.el (tramp-append-tramp-buffers)
2289 * net/tramp-sh.el (tramp-do-file-attributes-with-ls)
2290 (tramp-sh-handle-file-selinux-context)
2291 (tramp-sh-handle-file-name-all-completions)
2292 (tramp-sh-handle-insert-directory)
2293 (tramp-sh-handle-expand-file-name, tramp-find-executable)
2294 (tramp-wait-for-output, tramp-send-command-and-read)
2295 * net/tramp-smb.el (tramp-smb-read-file-entry)
2296 (tramp-smb-get-cifs-capabilities): Use `point-at-eol'.
2297
2298 * net/tramp-sh.el (tramp-sh-handle-insert-directory) Use
2299 `point-at-bol'.
2300 (tramp-remote-coding-commands): Add an alternative using "base64
2301 -d -i". This is needed for older base64 versions from GNU
2302 coreutils. Reported by Klaus Reichl
2303 <Klaus.Reichl@thalesgroup.com>.
2304
8da5345f
HN
23052010-11-13 Hrvoje Niksic <hniksic@xemacs.org>
2306
2307 * simple.el (count-words-region): New function.
2308
c156a63b
SM
23092010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
2310
78835dd0
SM
2311 * shell.el (shell-dir-cookie-re): New custom variable.
2312 (shell-dir-cookie-watcher): New function.
2313
ebff325e
SM
2314 * vc/vc.el (vc-deduce-backend): Use default-directory in shell-mode
2315 and compilation-mode (bug#7350).
2316
4e9e1584
SM
2317 * vc/smerge-mode.el (smerge-refine): Choose better default part to
2318 highlight when one of them is empty.
2319
4490f875
SM
2320 * skeleton.el (skeleton-read): Don't use `newline' since it may strip
2321 trailing space.
2322 (skeleton-newline): New function.
2323 (skeleton-internal-1): Use it.
2324
c156a63b
SM
2325 * simple.el (open-line): `newline' may strip trailing space.
2326
f3bb9e16
KR
23272010-11-12 Kevin Ryde <user42@zip.com.au>
2328
2329 * international/mule-cmds.el (princ-list): Use mapc.
2330
7847454a
GM
23312010-11-12 Glenn Morris <rgm@gnu.org>
2332
2333 * emacs-lisp/bytecomp.el (byte-compile-log-buffer): New constant.
2334 Use it to replace all instances of "*Compile-Log*"
2335
aa310257
SM
23362010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
2337
2338 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Add debug and
2339 indentation specs.
2340
cbf83ce9
SM
23412010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
2342
2343 * progmodes/modula2.el: Use SMIE and skeleton.
2344 (m2-mode-syntax-table): (*..*) can be nested.
2345 Add //...\n. Fix paren syntax.
2346 (m2-mode-map): Remove LF and TAB bindings.
2347 (m2-indent): Add safety property.
2348 (m2-smie-grammar): New var.
2349 (m2-smie-refine-colon, m2-smie-refine-of, m2-smie-backward-token)
2350 (m2-smie-forward-token, m2-smie-refine-semi, m2-smie-rules): New funs.
2351 (m2-mode): Use define-derived-mode.
2352 (m2-newline, m2-tab): Remove.
2353 (m2-begin, m2-case, m2-definition, m2-else, m2-for, m2-header)
2354 (m2-if, m2-loop, m2-module, m2-or, m2-procedure, m2-with, m2-record)
2355 (m2-stdio, m2-type, m2-until, m2-var, m2-while, m2-export)
2356 (m2-import): Use define-skeleton.
2357
e7c4fb1e
GM
23582010-11-11 Glenn Morris <rgm@gnu.org>
2359
b3e4c911
GM
2360 * obsolete/lucid.el: Don't warn about any CL functions in this file.
2361
b3e22bd4
GM
2362 * ls-lisp.el (ls-lisp-ignore-case, ls-lisp-dirs-first)
2363 (ls-lisp-verbosity): Add custom :set-after property.
2364 (ls-lisp-verbosity, ls-lisp-use-localized-time-format): Doc fixes.
2365 (ls-lisp-format, ls-lisp-format-time): Don't take `now' as an argument.
2366 (ls-lisp-insert-directory): Update caller.
606dcd9e
GM
2367 (ls-lisp-set-options): New function.
2368 (ls-lisp-emulation): Use ls-lisp-set-options for custom :set.
2369 Doc fix.
b3e22bd4 2370
55a4b4fe
GM
2371 * play/landmark.el (lm-prompt-for-move):
2372 * play/gomoku.el (gomoku-prompt-for-move): Remove nonsensical code.
2373
e7c4fb1e
GM
2374 * progmodes/idlw-complete-structtag.el: Remove unused dec `name'.
2375
2376 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins)
2377 (idlwave-study-twins): Prefix dynamic local variable `name'.
2378 (idlwave-routine-twin-compare): Update for above change.
2379
2380 * progmodes/idlw-help.el (idlwave-do-mouse-completion-help):
2381 Prefix dynamic local variables `name', `kwd', and `link'.
2382 * progmodes/idlw-shell.el (idlwave-shell-complete-execcomm-help):
2383 * progmodes/idlw-complete-structtag.el
2384 (idlwave-complete-structure-tag-help):
2385 * progmodes/idlwave.el (idlwave-complete-sysvar-help)
2386 (idlwave-complete-sysvar-tag-help)
2387 (idlwave-complete-class-structure-tag-help):
2388 Update for above name changes.
2389
afe2870b
LMI
23902010-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2391
2392 * net/browse-url.el (browse-url-browser-function): Change the
2393 default to use `browse-url-mail' on mailto: URLs.
2394
fbe3be3f
CY
23952010-11-10 Chong Yidong <cyd@stupidchicken.com>
2396
cbf83ce9
SM
2397 * emacs-lisp/package.el (package-read-all-archive-contents):
2398 Reset package-archive-contents to nil before re-reading.
fbe3be3f 2399
a7cfbaea 24002010-11-10 Brandon Craig Rhodes <brandon@rhodesmill.org> (tiny change)
bd4532fc
AM
2401
2402 * textmodes/flyspell.el (flyspell-word): Do not re-check words
2403 already found as misspellings by (flyspell-large-region), just
c97685d4 2404 do highlighting (bug#7322).
bd4532fc 2405
13e7256f
GM
24062010-11-10 Glenn Morris <rgm@gnu.org>
2407
6d2a1e35
GM
2408 * progmodes/octave-mod.el (octave-mark-block): Update for smie change.
2409
d4aca69c
GM
2410 * emulation/edt.el (edt-with-position): New macro.
2411 (edt-find-forward, edt-find-backward, edt-find-next-forward)
2412 (edt-find-next-backward, edt-sentence-forward, edt-sentence-backward)
2413 (edt-paragraph-forward, edt-paragraph-backward): Use it.
2414
f8a09adb
GM
2415 * emulation/tpu-extras.el (tpu-with-position): New macro.
2416 (tpu-paragraph, tpu-page, tpu-search-internal): Use it.
2417
c026460b
GM
2418 * textmodes/texnfo-upd.el (texinfo-pointer-name): Fix typo.
2419
dea53a43
GM
2420 * textmodes/texnfo-upd.el (texinfo-all-menus-update)
2421 (texinfo-menu-copy-old-description, texinfo-start-menu-description)
2422 (texinfo-master-menu, texinfo-insert-node-lines)
2423 (texinfo-multiple-files-update):
2424 * textmodes/texinfmt.el (texinfo-append-refill, texinfo-copying):
2425 Use line-beginning-position.
2426
72bc50c0
GM
2427 * progmodes/cperl-mode.el (cperl-find-pods-heres, cperl-write-tags):
2428 No recent Emacs supports system-type `emx'.
2429
2430 * progmodes/ada-xref.el (is-windows): Rename to ada-on-ms-windows.
2431 (ada-command-separator, ada-default-prj-properties)
2432 (ada-find-any-references): Update for above name change.
2433
2434 * dirtrack.el (dirtrack-directory-function)
2435 (dirtrack-canonicalize-function):
2436 * filecache.el (file-cache-completion-ignore-case)
2437 (file-cache-case-fold-search, file-cache-ignore-case):
2438 * term.el (serial-port-is-file-p): Cosmetic change.
2439
2440 * emulation/viper-init.el (viper-ms-style-os-p): Doc fix.
2441 Remove non-existent `windows-95' system-type.
2442 * dired.el (dired-chown-program): Remove non-existent `linux'
2443 system-type.
2444
17731c39
GM
2445 * net/net-utils.el (net-utils-remove-ctl-m): Use memq for system-types.
2446 (ping-program-options): Remove non-existent `linux' system-type.
2447
9228bbd3
GM
2448 * startup.el (package-initialize): Update declaration.
2449
6e404950
GM
2450 * ls-lisp.el (ls-lisp-time-lessp, ls-lisp-time-to-seconds): Remove.
2451 (ls-lisp-handle-switches): Use time-less-p.
2452 (ls-lisp-format-time): Use float-time.
2453
6f0d4bb6
GM
2454 * textmodes/remember.el (remember-time-to-seconds): Remove.
2455 (remember-store-in-mailbox): Use float-time.
2456
2457 * calendar/timeclock.el (timeclock-time-to-seconds): Make it an alias.
2458
2459 * calendar/time-date.el (time-to-seconds): Always an alias on Emacs,
2460 never a real function.
2461 (with-no-warnings): Remove compat stub, now unused.
2462 (time-less-p): Doc fix.
2463 (time-to-number-of-days): Simplify.
2464
73171bd4
GM
2465 * eshell/esh-util.el (eshell-time-less-p, eshell-time-to-seconds):
2466 Remove.
2467 (eshell-read-passwd, eshell-read-hosts): Use time-less-p.
2468 * eshell/esh-test.el (eshell-test, eshell-show-usage-metrics):
2469 * eshell/em-unix.el (eshell-show-elapsed-time, eshell/time):
2470 * eshell/em-pred.el (eshell-pred-file-time): Use float-time.
2471 * eshell/em-ls.el (eshell-ls-sort-entries): Use time-less-p.
2472
13e7256f
GM
2473 * eshell/em-unix.el (eshell-remove-entries, eshell/rm)
2474 (eshell-shuffle-files, eshell-shorthand-tar-command)
2475 (eshell-mvcpln-template, eshell/mv, eshell/cp, eshell/ln):
2476 Prefix dynamic locals `interactive', `preview', `recursive', `verbose'.
2477 * eshell/em-glob.el (eshell-extended-glob, eshell-glob-entries):
2478 Prefix dynamic local variable `matches'.
2479
b565f5a1
GM
2480 * skeleton.el (skeleton-internal-list, skeleton-internal-1):
2481 Prefix dynamic local variable `skeleton'.
2482
5ad3e885
KY
24832010-11-10 Katsumi Yamaoka <yamaoka@jpl.org>
2484
2485 * net/browse-url.el (browse-url-mail): Insert body part of mailto url
2486 in mail buffer; make yank-action always a command that yanks original
2487 buffer.
2488
14121c52
GM
24892010-11-09 Glenn Morris <rgm@gnu.org>
2490
2491 * progmodes/tcl.el (tcl-hairy-scan-for-comment): Doc fix.
2492
d607b96b 24932010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
73525e72 2494
9bdba5f5
SM
2495 * minibuffer.el (minibuffer-completion-help): Specify the end of the
2496 completion field (bug#7211).
2497
73525e72
SM
2498 * progmodes/python.el (python-font-lock-syntactic-keywords): (bug#7322)
2499 Fix handling of backslash escapes.
2500 (python-quote-syntax): Adjust accordingly.
2501
d607b96b 25022010-11-09 Richard Levitte <richard@levitte.org> (tiny change)
05539fb3
RL
2503
2504 * vc-mtn.el (vc-mtn-working-revision, vc-mtn-after-dir-status)
2505 (vc-mtn-workfile-branch): Adjust to new output format.
2506
d607b96b 25072010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
cc4d2366
SM
2508
2509 * international/mule-cmds.el (princ-list): Mark as obsolete.
2510
d607b96b 25112010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7f925a67
SM
2512
2513 * emacs-lisp/smie.el: New package.
2514
d607b96b 25152010-11-09 Michael Albinus <michael.albinus@gmx.de>
6ce78fdc 2516
7f925a67
SM
2517 * files.el (backup-by-copying-when-mismatch):
2518 Set `permanent-local' property.
6ce78fdc
MA
2519
2520 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
09def8be 2521 `permanent-local' property for `backup-by-copying-when-mismatch'.
6ce78fdc 2522
d607b96b 25232010-11-09 Eli Zaretskii <eliz@gnu.org>
21620882
EZ
2524
2525 * ls-lisp.el (insert-directory): Doc fix. (bug#7285)
2526
d607b96b 25272010-11-09 Wilson Snyder <wsnyder@wsnyder.org>
8468f78b 2528
7f925a67 2529 * progmodes/verilog-mode.el (verilog-insert-one-definition)
8468f78b 2530 (verilog-read-decls, verilog-read-sub-decls-sig): Fix AUTOWIRE and
7f925a67
SM
2531 AUTOINOUT for SV style multidimensional arrays, bug294.
2532 Reported by Eric Mastromarchi.
2533 (verilog-preprocess): Use with-current-buffer and
8468f78b
WS
2534 font-lock-fontify-buffer to cleanup style issues.
2535
d607b96b 25362010-11-09 Glenn Morris <rgm@gnu.org>
cb5e49a3
GM
2537
2538 * locate.el (locate, locate-mode): Doc fixes.
2539
d607b96b 25402010-11-09 Chong Yidong <cyd@stupidchicken.com>
381d186f
CY
2541
2542 * server.el (server-start): New arg INHIBIT-PROMPT prevents asking
2543 user for confirmation.
2544 (server-force-stop): Use it.
2545 (server-start): Use server-force-stop for kill-emacs-hook, to
2546 avoid user interaction while killing Emacs.
2547
9b026d9f
GM
25482010-11-09 Glenn Morris <rgm@gnu.org>
2549
3406534c 2550 * progmodes/meta-mode.el: Remove leading `*' from defcustom docs.
e814121e 2551 (meta-indent-line): Simplify.
3406534c 2552
9b026d9f
GM
2553 * vc/emerge.el (emerge-line-number-in-buf):
2554 * textmodes/ispell.el (ispell-region):
2555 * textmodes/fill.el (current-fill-column):
2556 * progmodes/xscheme.el (xscheme-send-current-line):
2557 * progmodes/vhdl-mode.el (vhdl-current-line, vhdl-line-copy):
2558 * progmodes/tcl.el (tcl-hairy-scan-for-comment):
2559 * progmodes/sh-script.el (sh-handle-prev-do):
2560 * progmodes/meta-mode.el (meta-indent-line):
2561 * progmodes/idlwave.el (idlwave-goto-comment, idlwave-fill-paragraph)
2562 (idlwave-in-quote):
2563 * progmodes/idlw-shell.el (idlwave-shell-current-frame)
2564 (idlwave-shell-update-bp-overlays, idlwave-shell-sources-filter):
2565 * progmodes/fortran.el (fortran-looking-at-if-then):
2566 * progmodes/etags.el (find-tag-in-order, etags-snarf-tag):
2567 * progmodes/cperl-mode.el (cperl-sniff-for-indent)
2568 (cperl-find-pods-heres):
2569 * progmodes/ada-mode.el (ada-get-current-indent, ada-narrow-to-defun):
2570 * net/quickurl.el (quickurl-list-insert):
2571 * net/ldap.el (ldap-search-internal):
2572 * net/eudc.el (eudc-expand-inline):
2573 * mail/sendmail.el (sendmail-send-it):
2574 * mail/mspools.el (mspools-visit-spool, mspools-get-spool-name):
2575 * emulation/viper-cmd.el (viper-paren-match, viper-backward-indent)
2576 (viper-brac-function):
2577 * calc/calc-yank.el (calc-do-grab-region):
2578 * calc/calc-keypd.el (calc-keypad-press):
2579 * term.el (term-move-columns, term-insert-spaces):
2580 * speedbar.el (speedbar-highlight-one-tag-line):
2581 * simple.el (current-word):
2582 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
2583 * info.el (Info-find-node-in-buffer-1, Info-follow-reference)
2584 (Info-scroll-down):
2585 * hippie-exp.el (he-line-beg):
2586 * epa.el (epa--marked-keys):
2587 * dired-aux.el (dired-kill-line, dired-do-kill-lines)
2588 (dired-update-file-line, dired-add-entry, dired-remove-entry)
2589 (dired-relist-entry):
2590 * buff-menu.el (Buffer-menu-buffer):
2591 * array.el (current-line):
2592 * allout.el (allout-resolve-xref)
2593 (allout-latex-verbatim-quote-curr-line):
2594 Replace yet more uses of end-of-line etc with line-end-position, etc.
2595
db94771e
SM
25962010-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2597
1398b795
SM
2598 * emacs-lisp/checkdoc.el (checkdoc-display-status-buffer)
2599 (checkdoc-interactive-loop, checkdoc-recursive-edit): Avoid princ-list.
2600 (checkdoc-syntax-table): Initialize in the declaration.
2601 (emacs-lisp-mode-hook): Use just checkdoc-minor-mode now that it turns
2602 the mode on unconditionally.
2603
db94771e
SM
2604 * emacs-lisp/cl-macs.el (extent-data, extent-face, extent-priority)
2605 (extent-end-position, extent-start-position): Remove setf method for
2606 non-existing functions (bug#7319).
2607
674728d4
SM
26082010-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
2609
2610 * emacs-lisp/smie.el: Simplify the smie-rules-function return values.
2611 (smie-precs->prec2): Rename from smie-precs-precedence-table.
2612 (smie-bnf->prec2): Rename from smie-bnf-precedence-table.
2613 (smie-prec2->grammar): Rename from smie-prec2-levels.
2614 (smie-grammar): Rename from smie-op-levels.
2615 (smie-indent--hanging-p): Rename from smie-hanging-p.
2616 (smie-rule-hanging-p): New alias.
2617 (smie-indent--bolp): Rename from smie-bolp.
2618 (smie-indent--hanging-p): New alias.
2619 (smie--token): New dynamically bound variable.
2620 (smie-indent--parent): New function.
2621 (smie-rule-parent-p): Use it; rename from smie-parent-p.
2622 (smie-rule-next-p): Rename from smie-next-p.
2623 (smie-rule-prev-p): Rename from smie-prev-p.
2624 (smie-rule-sibling-p, smie-rule-parent)
2625 (smie-indent--separator-outdent, smie-rule-separator): New functions.
2626 (smie-rule-separator-outdent): New var.
2627 (smie-indent--rule): Merge with smie-indent--column.
2628 (smie-indent-forward-token, smie-indent-backward-token):
2629 Also recognize close parens.
2630 (smie-indent-keyword): Don't use smie-indent--column any more.
2631 (smie-indent-after-keyword): Ignore closers by default.
2632 (smie-indent-line): Use with-demoted-errors.
2633 * progmodes/octave-mod.el (octave-smie-grammar):
2634 Rename from octave-smie-op-levels.
2635 (octave-smie-rules): Adjust to new behavior.
2636 * progmodes/prolog.el (prolog-smie-grammar):
2637 Rename from prolog-smie-op-levels.
2638
26f097bf
GM
26392010-11-07 Glenn Morris <rgm@gnu.org>
2640
de3490e1
GM
2641 * eshell/esh-util.el (subst-char-in-string)
2642 (directory-files-and-attributes): These compatibility definitions are
2643 not needed on any version of Emacs since at least 21.4.
2644
3ba6b2ee
GM
2645 * progmodes/verilog-mode.el (verilog-get-beg-of-line)
2646 (verilog-get-end-of-line): Remove.
2647 (verilog-within-string, verilog-re-search-forward-substr)
2648 (verilog-re-search-backward-substr, verilog-set-auto-endcomments)
2649 (verilog-surelint-off, verilog-getopt-file, verilog-highlight-region):
2650 Use point-at-bol, point-at-eol.
2651 * progmodes/pascal.el (pascal-get-beg-of-line, pascal-get-end-of-line):
2652 Remove.
2653 (pascal-declaration-end, pascal-declaration-beg, pascal-within-string)
2654 (electric-pascal-terminate-line, pascal-set-auto-comments)
2655 (pascal-indent-paramlist, pascal-indent-declaration)
2656 (pascal-get-lineup-indent, pascal-func-completion)
2657 (pascal-get-completion-decl, pascal-var-completion, pascal-completion):
2658 Use point-at-bol, point-at-eol.
2659 * progmodes/flymake.el (flymake-line-beginning-position)
2660 (flymake-line-end-position): Remove.
2661 (flymake-highlight-line): Use point-at-bol, point-at-eol.
2662 * eshell/esh-util.el (line-end-position, line-beginning-position):
2663 Remove compat definitions.
2664
76fc02b6
GM
2665 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2666 Use end-of-line N.
2667 (checkdoc-this-string-valid-engine, checkdoc-file-comments-engine):
2668 Use line-end-position.
2669
e180ab9f
GM
2670 * emacs-lisp/chart.el (chart-zap-chars):
2671 * play/decipher.el (decipher-set-map):
2672 * progmodes/ada-mode.el (ada-get-current-indent)
2673 (ada-search-ignore-string-comment, ada-tab-hard, ada-untab-hard):
2674 * progmodes/ada-prj.el (ada-prj-load-from-file, ada-prj-display-help):
2675 * progmodes/ada-xref.el (ada-initialize-runtime-library)
2676 (ada-get-all-references):
2677 * progmodes/cperl-mode.el (cperl-electric-paren)
2678 (cperl-electric-rparen, cperl-electric-keyword, cperl-electric-else)
2679 (cperl-linefeed, cperl-sniff-for-indent, cperl-to-comment-or-eol)
2680 (cperl-find-pods-heres, cperl-indent-exp, cperl-fix-line-spacing)
2681 (cperl-word-at-point-hard):
2682 * progmodes/idlw-shell.el (idlwave-shell-move-or-history)
2683 (idlwave-shell-filename-string, idlwave-shell-batch-command)
2684 (idlwave-shell-display-line):
2685 * progmodes/idlwave.el (idlwave-show-begin, idlwave-fill-paragraph)
2686 (idlwave-calc-hanging-indent, idlwave-auto-fill, idlwave-template):
2687 * progmodes/js.el (js--re-search-forward-inner)
2688 (js--re-search-backward-inner):
2689 * progmodes/vhdl-mode.el (vhdl-align-region-1, vhdl-align-region-2)
2690 (vhdl-fix-clause, vhdl-compose-configuration-architecture):
2691 * progmodes/ruby-mode.el (ruby-parse-partial, eval-when-compile):
2692 * textmodes/flyspell.el (flyspell-process-localwords):
2693 * textmodes/ispell.el (ispell-buffer-local-parsing)
2694 (ispell-buffer-local-dict, ispell-buffer-local-words):
2695 Use point-at-bol and point-at-eol.
2696
26f097bf
GM
2697 * speedbar.el (speedbar-generic-item-info)
2698 (speedbar-item-info-tag-helper, speedbar-change-expand-button-char)
2699 (speedbar-add-indicator, speedbar-check-vc-this-line)
2700 (speedbar-check-obj-this-line, speedbar-extract-one-symbol)
2701 (speedbar-buffers-line-directory, speedbar-buffer-revert-buffer):
2702 Replace more uses of end-of-line etc with line-end-position.
2703
b05fde66
GM
27042010-11-06 Glenn Morris <rgm@gnu.org>
2705
5ed619e0
GM
2706 * textmodes/texnfo-upd.el (texinfo-start-menu-description)
2707 (texinfo-update-menu-region-beginning, texinfo-menu-first-node)
2708 (texinfo-delete-existing-pointers, texinfo-find-pointer)
2709 (texinfo-clean-up-node-line, texinfo-insert-node-lines)
2710 (texinfo-multiple-files-update):
2711 * textmodes/table.el (table--probe-cell-left-up)
2712 (table--probe-cell-right-bottom):
2713 * textmodes/picture.el (picture-tab-search):
2714 * textmodes/page-ext.el (pages-copy-header-and-position)
2715 (pages-directory-for-addresses):
2716 * progmodes/vera-mode.el (vera-get-offset):
2717 * progmodes/simula.el (simula-calculate-indent):
2718 * progmodes/python.el (python-pdbtrack-overlay-arrow):
2719 * progmodes/prolog.el (end-of-prolog-clause):
2720 * progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
2721 * progmodes/icon.el (indent-icon-exp):
2722 * progmodes/etags.el (tag-re-match-p):
2723 * progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
2724 * progmodes/ebnf2ps.el (ebnf-begin-file):
2725 * progmodes/dcl-mode.el (dcl-back-to-indentation-1)
2726 (dcl-save-local-variable):
2727 * play/life.el (life-setup):
2728 * play/gametree.el (gametree-looking-at-ply):
2729 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
2730 * mail/sendmail.el (mail-mode-auto-fill):
2731 * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
2732 * emacs-lisp/edebug.el (edebug-overlay-arrow):
2733 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
2734 * woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
2735 (woman-tab-to-tab-stop, WoMan-warn-ignored):
2736 * type-break.el (type-break-file-keystroke-count):
2737 * term.el (term-replace-by-expanded-history-before-point)
2738 (term-skip-prompt, term-extract-string):
2739 * speedbar.el (speedbar-edit-line, speedbar-expand-line)
2740 (speedbar-contract-line, speedbar-toggle-line-expansion)
2741 (speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
2742 (speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
2743 * sort.el (sort-skip-fields):
2744 * skeleton.el (skeleton-internal-list):
2745 * simple.el (line-move-finish, line-move-to-column):
2746 * shell.el (shell-forward-command):
2747 * misc.el (copy-from-above-command):
2748 * makesum.el (double-column):
2749 * ebuff-menu.el (electric-buffer-update-highlight):
2750 * dired.el (dired-move-to-end-of-filename):
2751 * dframe.el (dframe-popup-kludge):
2752 * bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
2753 * arc-mode.el (archive-get-lineno):
2754 Use line-end-position and line-beginning-position.
2755
e2a9c0bc
GM
2756 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins):
2757 (idlwave-study-twins): Prefix dynamic local `class'.
2758 (idlwave-routine-twin-compare): Update for above name change.
2759
4e44448f
GM
2760 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod):
2761 Use boundp tests to silence compiler. Update for changed name of
2762 bytecomp-filename variable.
2763
8f6c3eac
GM
2764 * emulation/viper-cmd.el (viper-read-string-with-history):
2765 Prefix dynamic local `initial'.
2766 (viper-minibuffer-standard-hook): Update for above name change.
2767
79d1dabe
GM
2768 * emacs-lisp/elint.el (elint-init-env): Prefix dynamic local `env'.
2769 (elint-init-form): Update for above name change.
2770
0e4bb7f0
GM
2771 * mail/mail-extr.el (mail-extract-address-components): Give dynamic
2772 local variables `cbeg' and `cend' a prefix.
2773 (mail-extr-voodoo): Update for above name change.
2774
c8f3bf36
GM
2775 * textmodes/reftex-toc.el (reftex-toc-do-promote)
2776 (reftex-toc-promote-prepare): Pass `delta' as an explicit argument.
2777 (reftex-toc-promote-action): Doc fix.
2778
2779 * textmodes/reftex-sel.el (reftex-select-item): Give local variables
2780 `prompt', `data' a prefix.
2781 (reftex-select-post-command-hook, reftex-select-callback)
2782 (reftex-select-mouse-accept, reftex-select-read-cite):
2783 Update for above name changes.
2784
2785 * textmodes/reftex-ref.el (reftex-reference): Rename local variable
2786 `refstyle' to reftex-refstyle.
2787 (reftex-offer-label-menu): Update for above name change.
2788 * textmodes/reftex-sel.el (reftex-select-toggle-varioref): Update for
2789 `refstyle' name change.
2790
b05fde66
GM
2791 * vc/emerge.el (emerge-eval-in-buffer): Remove, and replace all uses
2792 with with-current-buffer.
2793 (diff, template): Give dynamic local variables a prefix.
2794 (emerge-line-numbers): Rename local `diff' to emerge-line-diff.
2795 (emerge-line-number-in-buf): Update for above name change.
2796 (emerge-combine-versions-internal): Rename local `template' to
2797 emerge-combine-template.
2798 (emerge-combine-versions-edit): Update for above name change.
2799
5d8f9169
RA
28002010-11-06 Ralf Angeli <angeli@caeruleus.net>
2801
2802 * textmodes/reftex-cite.el
2803 (reftex-extract-bib-entries-from-thebibliography): Match bibitem
2804 entries with whitespace after \bibitem.
2805 (reftex-create-bibtex-file): Match entries containing numbers and
2806 symbol constituents. Make sure that entries with whitespace at
2807 various places are found.
2808
f8aefe82
MA
28092010-11-05 Christian Millour <cm@abtela.com> (tiny change)
2810
2811 * shell.el (shell-process-popd): Made aware of comint-file-name-prefix.
2812
e06918d2
JD
28132010-11-05 Jan Djärv <jan.h.d@swipnet.se>
2814
2815 * mouse.el (mouse-yank-primary): Update comment (Bug#6802).
2816
17fc58c9
GM
28172010-11-05 Glenn Morris <rgm@gnu.org>
2818
f7fe4837
GM
2819 * woman.el (woman0-roff-buffer, woman1-roff-buffer)
2820 (woman2-roff-buffer): Give local variable `request' a prefix.
2821 (woman0-macro): Rename argument `request' in the same way.
2822 (woman-request): New name for `request' dynamic variable.
2823 (woman-unquote, woman-forward-arg): Update for above name change.
2824 (woman1-roff-buffer): Give local variable `unquote' a prefix.
2825 (woman1-unquote): New name for `unquote' dynamic variable.
2826 (woman1-B-or-I, woman1-alt-fonts): Update for above name change.
2827 (woman-translations): Rename from `translations'. No longer global.
2828 (woman2-tr, woman-translate): Update for above name change.
2829 (woman-translate): Check for bound variable.
2830 (woman2-roff-buffer): Give local variable `translations' a prefix.
2831
869c4186
GM
2832 * play/doctor.el: Give all local variables a prefix. Update callers.
2833 (doc$, doctor-put-meaning): Use backquote.
2834
215461a8
GM
2835 * emacs-lisp/cl-macs.el (loop): Give local variable args a prefix.
2836 (cl-parse-loop-clause, cl-loop-handle-accum): Update for above change.
2837
17fc58c9
GM
2838 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Give local
2839 variables bytes, ptr, op a prefix.
2840 (disassemble-offset): Update for above change.
2841
015eea59
CY
28422010-11-03 Chong Yidong <cyd@stupidchicken.com>
2843
2844 * emacs-lisp/package.el (package-unpack): Remove no-op.
2845 (package--builtins, package--dir): Doc fix.
2846 (package-activate-1, package-activate, package-install)
2847 (package-compute-transaction): Fix error message.
2848 (package-delete): Use delete-directory. Omit system packages.
2849 (package-initialize): Set package-alist to nil first.
2850 (package-menu-mark-delete, package-menu-mark-install): Don't add
2851 symbols that are inconsistent with the package state.
2852 (package-menu-execute): Perform deletions and installations as
2853 single batch operations.
2854
033862d1
GM
28552010-11-03 Glenn Morris <rgm@gnu.org>
2856
0b03a950
GM
2857 * progmodes/idlwave.el (idlwave-pset): Only used on XEmacs.
2858 (props): Remove unnecessary declaration.
2859
e337e22c
GM
2860 * textmodes/ispell.el (ispell-init-process): On Emacs, always use
2861 set-process-query-on-exit-flag.
2862
a88e24dd 2863 * textmodes/reftex-toc.el (name1, dummy, dummy2): Remove unused decs.
728618ba
GM
2864 (reftex-toc-do-promote): Remove unused local `mpos'.
2865 (reftex-toc-restore-region): Make `mpos' local to this function.
a88e24dd 2866
537b04b9
GM
2867 * net/dbus.el (dbus-name-owner-changed-handler): Doc fix.
2868
52365e61
GM
2869 * play/landmark.el (lm-losing-threshold): Correct spelling.
2870 (lm-human-plays): Use new name.
2871
cd32f8a9
GM
2872 * play/gomoku.el (gomoku-loosing-threshold): Correct spelling.
2873 (gomoku-human-plays): Use new name.
2874
033862d1
GM
2875 * play/gomoku.el (nil-score, Xscore, XXscore, XXXscore, XXXXscore)
2876 (Oscore, OOscore, OOOscore, OOOOscore): Rename with gomoku- prefix.
2877 (gomoku-score-trans-table, gomoku-winning-threshold)
2878 (gomoku-loosing-threshold, gomoku-init-score-table): Use new names.
2879
4b99edf2
CY
28802010-11-03 Chong Yidong <cyd@stupidchicken.com>
2881
2882 * emacs-lisp/package.el: Don't put built-in packages in
2883 package-alist, to avoid loading inefficiencies.
2884 (package-built-in-p): Make VERSION optional, and treat it as a
2885 minimum acceptable version.
6a7662bb
BR
2886 (package-activate): Search separately for built-in packages.
2887 Emit a warning if a dependency fails.
4b99edf2
CY
2888 (define-package): Handle most common case, where there is no
2889 obsolete package, first.
2890 (package-compute-transaction): Print required version in error.
2891 (package--initialized): New variable.
2892 (list-packages): Use it.
2893 (package-initialize): Optional arg NO-ACTIVATE. Don't put
6a7662bb
BR
2894 built-in packages in packages-alist; keep it separate.
2895 Set package--initialized.
4b99edf2
CY
2896 (describe-package): Avoid activating packages as a side-effect.
2897 Search separately for built-in packages.
2898 (describe-package-1): Handle the case where an elpa package is
2899 simultaneously built-in and available/installed.
6a7662bb
BR
2900 (package-installed-p, package--generate-package-list):
2901 Search separately for built-in packages.
4b99edf2
CY
2902 (package-load-descriptor): Doc fix.
2903
3225dcaa
SM
29042010-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
2905
2906 * progmodes/perl-mode.el (perl-syntax-propertize-function):
2907 Handle __DATA__ and __END__.
2908
fa14dc18
NF
29092010-11-02 Noah Friedman <friedman@splode.com>
2910
2911 * emacs-lisp/bytecomp.el (byte-recompile-file): If bytecomp-arg is
2912 nil, do not ask to recompile files that are not already compiled,
2913 and do not recompile them.
2914
0f75c62a
CY
29152010-11-02 Chong Yidong <cyd@stupidchicken.com>
2916
2917 * emacs-lisp/package.el (package-initialize): Ensure that
2918 obsoleted built-in packages are not in package-activated-list
2919 during activation.
2920 (describe-package-1): Make the "installed" status override
2921 "built-in".
2922
b29f5b7b
VJL
29232010-11-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2924
2925 * subr.el (version-separator, version-regexp-alist): Remove '*'
2926 from docstring.
2927 (version-list-<=, version<=, version=): Doc fix.
2928
b18fad6d
KH
29292010-11-01 Kenichi Handa <handa@m17n.org>
2930
2931 * faces.el (glyphless-char): Inherit underline for tty.
2932
a8039db1 29332010-11-01 Kenichi Handa <handa@m17n.org>
b2cca856
KH
2934
2935 Implement various display methods for glyphless characters.
2936
2937 * international/characters.el (char-acronym-table): New variable.
2938 (glyphless-char-control): New variable.
2939 (update-glyphless-char-display): New funciton.
2940
2941 * faces.el (glyphless-char): New face.
2942
28886d5e
GM
29432010-11-01 Glenn Morris <rgm@gnu.org>
2944
919dd7aa
GM
2945 * calendar/holidays.el (general-holidays, oriental-holidays)
2946 (local-holidays, other-holidays, hebrew-holidays, christian-holidays)
2947 (islamic-holidays, bahai-holidays, solar-holidays): Move aliases before
2948 the definitions of their targets.
2949
c79fc059
GM
2950 * emacs-lisp/smie.el (smie): New custom group.
2951 (smie-blink-matching-inners, smie-indent-basic): Add :group.
2952
c8ccffb1
GM
2953 * faces.el (xw-defined-colors, x-setup-function-keys):
2954 * mouse-sel.el (x-select-text):
2955 * term/w32console.el (x-setup-function-keys): Update declarations.
2956
f4ff702e
GM
2957 * progmodes/ruby-mode.el (ruby-syntax-propertize-heredoc): Declare.
2958
806c491a
GM
2959 * textmodes/ispell.el (comment-add): Declare.
2960
c3dfebd1
GM
2961 * net/gnutls.el (gnutls-boot, gnutls-errorp, gnutls-error-string):
2962 Declare.
2963
28886d5e
GM
2964 * info.el (finder-keywords-hash, package-alist): Declare.
2965
693c9d15
CY
29662010-11-01 Chong Yidong <cyd@stupidchicken.com>
2967
2968 * finder.el (finder-compile-keywords): Don't use intern-soft,
2969 since package names may not yet exist in the obarray.
2970
29712010-11-01 Chong Yidong <cyd@stupidchicken.com>
4624de78
CY
2972
2973 * vc/vc-arch.el (vc-arch-checkin):
2974 * vc/vc-cvs.el (vc-cvs-checkin):
2975 * vc/vc-mtn.el (vc-mtn-checkin):
2976 * vc/vc-rcs.el (vc-rcs-checkin):
2977 * vc/vc-sccs.el (vc-sccs-checkin):
2978 * vc/vc-svn.el (vc-svn-checkin): Remove optional extra arg, unused
2979 since 2010-04-21 commit by Stefan Monnier.
2980
36967cf7
GM
29812010-11-01 Glenn Morris <rgm@gnu.org>
2982
feb5e60a
GM
2983 * emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change.
2984
1f023ca9
GM
2985 * startup.el (package-enable-at-startup, package-initialize):
2986 Silence compiler.
2987
36967cf7
GM
2988 * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
2989 Silence compiler.
2990
430e7297
JD
29912010-10-31 Julien Danjou <julien@danjou.info>
2992
2993 * emacs-lisp/bytecomp.el (byte-recompile-file): New fun (bug#7297).
2994 (byte-recompile-directory):
2995 * emacs-lisp/lisp-mode.el (emacs-lisp-byte-compile-and-load):
430e7297
JD
2996 Use `byte-recompile-file'.
2997
c8c59954
GM
29982010-10-31 Glenn Morris <rgm@gnu.org>
2999
3000 * cus-start.el: Handle standard values via a keyword.
3001 Only set version property if specified.
3002 (cursor-in-non-selected-windows, menu-bar-mode)
3003 (tool-bar-mode, show-trailing-whitespace):
3004 Do not specify standard values.
3005 (transient-mark-mode, temporary-file-directory): Use :standard.
3006
04e63796
JD
30072010-10-31 Jan Djärv <jan.h.d@swipnet.se>
3008
3009 * term/x-win.el (x-get-selection-value): New function that gets
3010 PRIMARY with type as specified in x-select-request-type. (Bug#6802).
3011
2699a554 30122010-10-31 Michael Albinus <michael.albinus@gmx.de>
a057950d
MA
3013
3014 * net/tramp.el (tramp-handle-insert-file-contents): For root,
3015 preserve owner and group when editing files. (Bug#7289)
3016
35fcc05c 30172010-10-31 Glenn Morris <rgm@gnu.org>
d2ce10d2
GM
3018
3019 * speedbar.el (speedbar-mode):
3020 * play/fortune.el (fortune-in-buffer, fortune):
3021 * play/gomoku.el (gomoku-mode):
3022 * play/landmark.el (lm-mode):
3023 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
3024 Replace inappropriate uses of toggle-read-only. (Bug#7292)
3025
82f7efc3
GM
3026 * select.el (x-selection): Mark it as an obsolete alias.
3027
2699a554 30282010-10-31 Aaron S. Hawley <aaron.s.hawley@gmail.com>
ca39416c 3029
f486841f 3030 * vc/add-log.el (find-change-log): Use derived-mode-p rather than
ca39416c
AH
3031 major-mode (bug#7284).
3032
2699a554 30332010-10-31 Glenn Morris <rgm@gnu.org>
aab705a2
GM
3034
3035 * menu-bar.el (menu-bar-files-menu): Make it into an actual alias,
3036 rather than just an unused variable that inherits from the real one.
3037
e6ef5dd9
AM
30382010-10-31 Alan Mackenzie <acm@muc.de>
3039
3040 * progmodes/cc-cmds.el (c-mask-paragraph): Fix an off-by-1 error.
3041 This fixes bug #7185.
3042
8a500a91
CY
30432010-10-30 Chong Yidong <cyd@stupidchicken.com>
3044
3045 * startup.el (command-line): Search for package directories, and
3046 don't load package.el if none are found.
3047
6a7662bb
BR
3048 * emacs-lisp/package.el (describe-package, list-packages):
3049 Call package-initialize if it has not been called yet.
8a500a91 3050
4f9e41e4
AM
30512010-10-30 Alan Mackenzie <acm@muc.de>
3052
3053 * progmodes/cc-fonts.el (c-font-lock-enum-tail): New function
3054 which fontifies the tail of an enum.
3055 (c-basic-matchers-after): Insert a call to the above new function.
3056 This fixes bug #7264.
3057
88f43c67
GM
30582010-10-30 Glenn Morris <rgm@gnu.org>
3059
3060 * cus-start.el: Add :set properties for minor modes menu-bar-mode,
3061 tool-bar-mode, transient-mark-mode. (Bug#7306)
3062 Include the :set property in the dumped Emacs.
3063
c4d17d50
SM
30642010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3065
3066 SMIE: change indent rules format, improve smie-setup.
3067 * emacs-lisp/smie.el (smie-precs-precedence-table)
3068 (smie-merge-prec2s, smie-bnf-precedence-table, smie-prec2-levels):
3069 Mark them pure so the tables gets built at compile time.
3070 (smie-bnf-precedence-table): Store the closer-alist in the table.
3071 (smie-prec2-levels): Preserve the closer-alist.
3072 (smie-blink-matching-open): Be more forgiving in case of indentation.
3073 (smie-hanging-p): Rename from smie-indent--hanging-p.
3074 (smie-bolp): Rename from smie-indent--bolp.
3075 (smie--parent, smie--after): New dynamic vars.
3076 (smie-parent-p, smie-next-p, smie-prev-p): New funs.
3077 (smie-indent-rules): Remove.
3078 (smie-indent--offset-rule): Remove fun.
3079 (smie-rules-function): New var.
3080 (smie-indent--rule): New fun.
3081 (smie-indent--offset, smie-indent-keyword, smie-indent-after-keyword)
3082 (smie-indent-exps): Use it.
3083 (smie-setup): Setup paren blinking; add keyword args for token
3084 functions; extract closer-alist from op-levels.
3085 (smie-indent-debug-log): Remove var.
3086 (smie-indent-debug): Remove fun.
3087 * progmodes/prolog.el (prolog-smie-indent-rules): Remove.
3088 (prolog-smie-rules): New fun to replace it.
3089 (prolog-mode-variables): Simplify.
3090 * progmodes/octave-mod.el (octave-smie-closer-alist): Remove, now that
3091 it's setup automatically.
3092 (octave-smie-indent-rules): Remove.
3093 (octave-smie-rules): New fun to replace it.
3094 (octave-mode): Simplify.
3095
9d794026
GM
30962010-10-29 Glenn Morris <rgm@gnu.org>
3097
e088c02a
GM
3098 * files.el (temporary-file-directory): Remove (already defined in C).
3099 * cus-start.el: Add temporary-file-directory.
3100
9d794026
GM
3101 * abbrev.el (abbrev-mode):
3102 * composite.el (auto-composition-mode):
3103 * menu-bar.el (menu-bar-mode):
3104 * simple.el (transient-mark-mode):
3105 * tool-bar.el (tool-bar-mode): Adjust the define-minor-mode calls so
3106 that they do not define the associated variables twice.
3107 * simple.el (transient-mark-mode): Remove defvar.
3108 * composite.el (auto-composition-mode): Make variable auto-buffer-local.
3109 * cus-start.el: Add transient-mark-mode, menu-bar-mode, tool-bar-mode.
3110 Handle multiple groups, and also custom-delayed-init-variables.
3111 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
3112
dcc029e0
SM
31132010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3114
3115 * emacs-lisp/pcase.el (pcase): New `string' and `guard' patterns.
3116 (pcase-if): Add one minor optimization.
3117 (pcase-split-equal): Rename from pcase-split-eq.
3118 (pcase-split-member): Rename from pcase-split-memq.
3119 (pcase-u1): Add strings to the member optimization.
3120 Add `guard' variant of predicates.
3121 (pcase-q1): Add string patterns.
3122
a62b88d4
SM
31232010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3124
3125 * vc/log-edit.el (log-edit-rewrite-fixes): State its safety pred.
3126
f41f19b0
GM
31272010-10-28 Glenn Morris <rgm@gnu.org>
3128
b3edb781
GM
3129 * term/ns-win.el (global-map, menu-bar-final-items, menu-bar-help-menu):
3130 Move menu-bar related settings to ../menu-bar.el.
3131 * menu-bar.el (global-map, menu-bar-final-items, menu-bar-help-menu):
3132 Move ns-specific settings here from term/ns-win.el.
3133
f41f19b0
GM
3134 * simple.el (x-selection-owner-p): Remove unused declaration.
3135
6175cd08
SM
31362010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3137
3138 * minibuffer.el (completion-cycling): New var (bug#7266).
3139 (minibuffer-complete, completion--do-completion):
3140 Use completion--flush-all-sorted-completions.
3141 (minibuffer-complete): Only cycle if completion-cycling is set.
3142 (completion--flush-all-sorted-completions): Unset completion-cycling.
3143 (minibuffer-force-complete): Set completion-cycling.
3144 (completion-all-sorted-completions): Move declaration before first use.
3145
19677c71
LL
31462010-10-28 Leo <sdl.web@gmail.com>
3147
3148 * iswitchb.el (iswitchb-kill-buffer): Avoid `iswitchb-make-buflist'
3149 which changes the order of matches seen by users (bug#7231).
3150
31512010-10-28 Jes Bodi Klinke <jes@bodi-klinke.dk> (tiny change)
77b143eb
JBK
3152
3153 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3154 Don't confuse -omega as "-o mega".
3155
2122161f
SM
31562010-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
3157
ce8794df
SM
3158 * vc/log-edit.el (log-edit-rewrite-fixes): New var.
3159 (log-edit-author): New dynamic var.
3160 (log-edit-changelog-ours-p, log-edit-insert-changelog-entries): Use it
3161 to return the author if different from committer.
3162 (log-edit-insert-changelog): Use them to add Author: and Fixes headers.
3163
80cb310d
SM
3164 * play/landmark.el: Adjust commenting convention.
3165 (lm-nil-score): Rename from nil-score.
3166 (Xscore, XXscore, XXXscore, XXXXscore, Oscore, OOscore, OOOscore)
3167 (OOOOscore): Move into a let in lm-score-trans-table.
3168 (lm-winning-threshold, lm-loosing-threshold): Use lm-score-trans-table.
3169
2122161f
SM
3170 * electric.el (electric-indent-chars): Autoload.
3171 * progmodes/octave-mod.el (octave-mode):
3172 * progmodes/ruby-mode.el (ruby-mode): Take advantage of it.
3173 (ruby-mode-abbrev-table): Merge initialization and declaration.
3174
e925113b
GM
31752010-10-27 Glenn Morris <rgm@gnu.org>
3176
208d109c
GM
3177 * abbrev.el (abbrev-mode): Remove one of the three definitions of this
3178 variable.
3179
7d3e3843
GM
3180 * server.el (server-host, server-port, server-auth-dir): Autoload risky.
3181
e925113b
GM
3182 * term/ns-win.el: Restore require of cl when compiling.
3183 (menu-bar-final-items): Remove non-existent `windows' menu.
1bcc4637
GM
3184 (ns-handle-nxopen): Optionally handle the temp-case.
3185 (ns-handle-nxopentemp): Just call ns-handle-nxopen.
3186 (ns-insert-file, ns-find-file): Use `pop'.
e925113b 3187
b94a5a43
GM
31882010-10-26 Glenn Morris <rgm@gnu.org>
3189
3190 * term/common-win.el (xw-defined-colors): Simplify the 'ns case.
3191
fc3eda04
AR
31922010-10-26 Adrian Robert <Adrian.B.Robert@gmail.com>
3193
3194 * term/ns-win.el (ns-new-frame, ns-show-prefs): Don't add to
3195 global map.
3196 * term/common-win.el (x-setup-function-keys): Remove most of the
3197 keymappings. Comment on the remaining ones.
3198
c79b0b1c
PO
31992010-10-26 Peter Oliver <p.d.oliver@mavit.org.uk> (tiny change)
3200
c31dc2c0 3201 * server.el (server-port): New option. (Bug#854)
c79b0b1c
PO
3202 (server-start): Use server-port.
3203
725513b7
GM
32042010-10-26 Glenn Morris <rgm@gnu.org>
3205
d7d8c62a
GM
3206 * term/ns-win.el (ns-version-string): Remove unused declaration.
3207 (ns-invocation-args): Change to x-invocation-args.
3208 (ns-handle-switch, ns-handle-numeric-switch, ns-handle-iconic)
3209 (ns-handle-name-switch, ns-ignore-2-arg): Remove.
3210 (ns-handle-nxopen, ns-handle-nxopentemp, ns-ignore-1-arg):
3211 Use x-invocation-args instead of ns-invocation-args.
3212 (ns-initialize-window-system, handle-args-function-alist):
3213 Use x-handle-args instead of ns-handle-args.
3214 * term/common-win.el (x-handle-args): Also handle nextstep arguments.
3215 * startup.el (command-line-ns-option-alist): Replace
3216 ns-handle-name-switch, ns-handle-switch, ns-handle-numeric-switch,
3217 ns-handle-iconic with the x- equivalents.
3218
725513b7
GM
3219 * term/common-win.el (x-select-enable-clipboard):
3220 * term/pc-win.el (x-select-enable-clipboard): Doc fix.
3221
3222 * term/ns-win.el: No need to require cl when compiling.
3223 (x-display-name, x-setup-function-keys, x-select-text, x-colors)
3224 (xw-defined-colors): Use the common-win definitions.
3225 (ns-alternatives-map): Make it an obsolete alias for x-alternatives-map.
3226 (ns-handle-iconic): Make it an alias for x-handle-iconic.
3227 * term/common-win.el (x-select-text, x-alternatives-map)
3228 (x-setup-function-keys, x-colors, xw-defined-colors): Handle 'ns case.
3229 * loadup.el [ns]: Load common-win.
3230
77ec02d8
DU
32312010-10-26 Daiki Ueno <ueno@unixuser.org>
3232
3233 * epa-mail.el (epa-mail-encrypt): Handle local-part only
6ee79275 3234 recipients; expand mail aliases (Bug#7280).
77ec02d8 3235
6a5c2175
GM
32362010-10-25 Glenn Morris <rgm@gnu.org>
3237
59ba9d59
GM
3238 * term/common-win.el (x-handle-switch): Simplify with pop.
3239 Optionally handle numeric switches.
3240 (x-handle-numeric-switch): Just call x-handle-switch.
3241 (x-handle-initial-switch, x-handle-xrm-switch, x-handle-geometry)
3242 (x-handle-name-switch, x-handle-display, x-handle-args):
3243 Simplify with pop.
3244
6a5c2175
GM
3245 * term/ns-win.el: Do not require easymenu.
3246 (menu-bar-edit-menu) <copy, paste, paste-from-menu, separator-undo>:
3247 <spell>: Move adjustments to menu-bar.el.
3248 * menu-bar.el (menu-bar-edit-menu) <copy, paste, paste-from-menu>:
3249 <separator-undo, spell>: Move ns-win's adjustments here.
3250 * loadup.el [ns]: Do not load easymenu.
3251
01898dc2
CY
32522010-10-24 Chong Yidong <cyd@stupidchicken.com>
3253
3254 * image.el (image-checkbox-checked, image-checkbox-unchecked):
6a5c2175 3255 Delete (Bug#7222).
01898dc2
CY
3256
3257 * startup.el (fancy-startup-tail): Instead of using inline images,
3258 refer to image files from etc/.
3259
3260 * wid-edit.el (checkbox): Likewise.
3261 (widget-image-find): Center image specs.
3262
a44d921f
GM
32632010-10-24 Glenn Morris <rgm@gnu.org>
3264
3265 * term/ns-win.el (x-select-text): Doc fix.
3266 * w32-fns.el (x-alternatives-map, x-setup-function-keys)
3267 (x-select-text): Move to term/common-win.
3268 * term/w32-win.el (xw-defined-colors): Move to common-win.
3269 * term/x-win.el (xw-defined-colors, x-alternatives-map)
3270 (x-setup-function-keys, x-select-text): Move to common-win.
3271 * term/common-win.el (x-select-text, x-alternatives-map)
3272 (x-setup-function-keys, xw-defined-colors): Merge x- and w32-
3273 definitions here.
3274
709228c0 32752010-10-24 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
a11de514
R
3276
3277 * net/mairix.el (mairix-searches-mode-map):
3278 * mail/mspools.el (mspools-mode-map): Fix 2010-10-10 change.
3279
0c382083 32802010-10-24 Michael McNamara <mac@mail.brushroad.com>
a03c2342
WS
3281
3282 * verilog-mode.el (verilog-directive-re): Make this variable
3283 auto-built for efficiency of execution and updating.
3284 (verilog-extended-complete-re): Support 'pure' fucntion & task
3285 declarations (these have no bodies).
ca39416c
AH
3286 (verilog-beg-of-statement): General cleanup to enable support of
3287 'pure' fucntion & task declarations (these have no bodies).
3288 These efforts together fix Verilog bug210 from veripool; which was also
a03c2342
WS
3289 noticed by Steve Pearlmutter.
3290 (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
ca39416c
AH
3291 (verilog-directive-nest-re, verilog-set-auto-endcomments):
3292 Support `elsif. Reported by Shankar Giri.
a03c2342
WS
3293 (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
3294 attribute handling for lining up declarations and assignments.
3295 (verilog-beg-of-statement-1): Fix issue where continued declaration
3296 is indented differently if it is after a begin..end clock.
3297 (verilog-in-attribute-p, verilog-skip-backward-comments)
3298 (verilog-skip-forward-comment-p): Support proper treatment of
3299 attributes by indent code. Reported by Jeff Steele.
ca39416c 3300 (verilog-in-directive-p): Fix comment to correctly describe function.
a03c2342
WS
3301 (verilog-backward-up-list, verilog-in-struct-region-p)
3302 (verilog-backward-token, verilog-in-struct-p)
3303 (verilog-in-coverage-p, verilog-do-indent)
3304 (verilog-pretty-declarations): Use verilog-backward-up-list as
3305 wrapper around backward-up-list inorder to properly skip comments.
3306 Reported by David Rogoff.
3307 (verilog-property-re, verilog-endcomment-reason-re)
3308 (verilog-beg-of-statement, verilog-set-auto-endcomments)
3309 (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
3310 of if). Reported by Max Bjurling and
3311 (verilog-calc-1): Fix for clocking block in modport
3312 declaration. Reported by Brian Hunter.
3313
0c382083 33142010-10-24 Wilson Snyder <wsnyder@wsnyder.org>
a03c2342
WS
3315
3316 * verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
3317 (verilog-gate-keywords, verilog-read-sub-decls)
3318 (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
3319 (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
3320 AUTOINST for gate primitives, bug284. Reported by Mark Johnson.
3321 (verilog-read-decls): Fix spaces in V2K module parameters causing
3322 mis-identification as interfaces, bug287.
3323 (verilog-read-decls): Fix not treating "parameter string" as a
3324 parameter in AUTOINSTPARAM.
3325 (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
3326 treating `elsif similar to `endif inside AUTOSENSE.
ca39416c 3327 (verilog-do-indent): Implement correct automatic or static task or
a03c2342
WS
3328 function end comment highlight. Reported by Steve Pearlmutter.
3329 (verilog-font-lock-keywords-2): Fix highlighting of single
3330 character pins, bug264. Reported by Michael Laajanen.
3331 (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
3332 (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
6a7662bb
BR
3333 (verilog-subdecls-get-interfaced, verilog-subdecls-new):
3334 Support interfaces with AUTOINST, bug270. Reported by Luis Gutierrez.
ca39416c
AH
3335 (verilog-pretty-expr): Fix interactive arguments, bug272.
3336 Reported by Mark Johnson.
3337 (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp):
3338 Add 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
a03c2342
WS
3339 bug269. Suggested by Gary Delp.
3340 (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
ca39416c
AH
3341 (verilog-preprocessor, verilog-set-compile-command):
3342 Create verilog-preprocess and verilog-preprocessor to show
3343 preprocessed output.
a03c2342
WS
3344 (verilog-get-beg-of-line, verilog-get-end-of-line)
3345 (verilog-modi-file-or-buffer, verilog-modi-name)
3346 (verilog-modi-point, verilog-within-string): Move defmacro's
3347 before first use to avoid warning. Reported by Steve Pearlmutter.
3348 (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
3349 (verilog-colorize-region, verilog-highlight-buffer)
3350 (verilog-highlight-includes, verilog-highlight-modules)
3351 (verilog-highlight-region, verilog-mode): Rename colorize to
3352 highlight to match other packages. Disable module highlighting,
3353 as received speed complaints, reenable for experimentation only
3354 using new verilog-highlight-modules.
3355 (verilog-read-decls): Fix regexp stack overflow in very large
3356 AUTO_TEMPLATEs, bug250.
3357 (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
3358 (verilog-scan): Create verilog-save-buffer-state to standardize
3359 making insignificant changes that shouldn't call hooks.
3360 (verilog-save-no-change-functions, verilog-save-scan-cache)
3361 (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
3362 Create verilog-save-no-change-functions to wrap verilog-scan
3363 preservation, and fix to work with nested preserved calls.
3364 (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
3365 port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
3366 generate .name with AUTOINST, bug245. Suggested by David Rogoff.
3367 (verilog-submit-bug-report): Update variable list to be complete.
3368 (verilog-auto, verilog-colorize-region): Fix AUTO expansion
3369 breaking on-the-fly font-locking.
3370 (verilog-colorize-buffer, verilog-colorize-include-files)
3371 (verilog-colorize-include-files-buffer, verilog-colorize-region)
3372 (verilog-load-file-at-mouse, verilog-load-file-at-point)
3373 (verilog-mode, verilog-read-inst-module-matcher): With point on a
3374 AUTOINST cell instance name, middle mouse button now finds-file on
3375 it. Suggested by Brad Dobbie.
3376 (verilog-alw-get-temps, verilog-auto-reset)
3377 (verilog-auto-sense-sigs, verilog-read-always-signals)
3378 (verilog-read-always-signals-recurse): Fix loop indexes being
3379 AUTORESET. AUTORESET now assumes any variables in the
6a7662bb
BR
3380 initialization section of a for() should be ignored.
3381 Reported by Dan Dever.
a03c2342
WS
3382 (verilog-error-font-lock-keywords)
3383 (verilog-error-regexp-emacs-alist)
3384 (verilog-error-regexp-xemacs-alist): Fix error detection of
3385 Cadence HAL, reported by David Asher. Repair drift between the
3386 three similar error variables.
3387 (verilog-modi-lookup, verilog-modi-lookup-cache)
3388 (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
3389 (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
3390 Fix slow verilog-auto expansion on very large files.
ca39416c
AH
3391 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line):
3392 Fix AUTOOUTPUT treating "1*2" as a signal name in submodule connection
a03c2342
WS
3393 "{1*2{...". Broke in last revision.
3394 (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
3395 submodule connections with replications "{#{a},#{b}}".
3396
0c382083
CY
33972010-10-24 Juanma Barranquero <lekktu@gmail.com>
3398
3399 * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
3400 Fix typo in docstring.
3401
34022010-10-24 Kenichi Handa <handa@m17n.org>
3403
3404 * face-remap.el (text-scale-adjust): Call read-event with a proper
3405 prompt.
3406
34072010-10-24 Chong Yidong <cyd@stupidchicken.com>
3408
3409 * emacs-lisp/unsafep.el: Don't mark functions that display
3410 messages as safe. Suggested by Johan Bockgård.
3411
34122010-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
3413
3414 * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
3415 Turn comments into docstrings.
3416
3417 * minibuffer.el (completion--replace): Move point where it belongs
3418 when there's a common suffix (bug#7215).
3419
9317e499
CY
34202010-10-24 Chong Yidong <cyd@stupidchicken.com>
3421
3422 Merge read-color and facemenu-read-color (Bug#7242).
3423
3424 * faces.el (read-color): Use the completion code from
3425 facemenu-read-color. Require match in completion. Doc fix.
3426
3427 * facemenu.el (facemenu-read-color): Alias for read-color.
6a7662bb
BR
3428 (facemenu-set-foreground, facemenu-set-background):
3429 Use read-color.
9317e499
CY
3430
3431 * frame.el (set-background-color, set-foreground-color)
6a7662bb
BR
3432 (set-cursor-color, set-mouse-color, set-border-color):
3433 Use read-color.
9317e499 3434
a44d921f 34352010-10-24 Leo <sdl.web@gmail.com>
59dd6f73
LL
3436
3437 * eshell/em-unix.el (eshell-remove-entries): Use the TRASH
3438 argument of delete-file and delete-directory (Bug#7011).
3439
43207249
CY
34402010-10-24 Chong Yidong <cyd@stupidchicken.com>
3441
3442 * emacs-lisp/package.el (package-menu-mode-map): Inherit from
3443 button-buffer-map.
3444
484db896 34452010-10-24 Ralf Angeli <angeli@caeruleus.net>
f34e6aaa
CY
3446
3447 * emacs-lisp/package.el (package--generate-package-list): Make the
3448 *Packages* buffer read-only.
3449
10f5e3e6
AM
34502010-10-24 Alan Mackenzie <acm@muc.de>
3451
3452 * progmodes/cc-fonts.el (c-font-lock-declarations): Cache the
3453 result of `c-beginning-of-decl-1' between invocations of a lambda
3454 function (Bug #7265).
3455
3ec6ca72
DU
34562010-10-24 Daiki Ueno <ueno@unixuser.org>
3457
3458 * epg-config.el (epg-gpg-program): Try to use "gpg2" if "gpg"
3459 executable is not available on the system (Bug#7268).
3460
ec514007
GM
34612010-10-24 Glenn Morris <rgm@gnu.org>
3462
f5f25615
GM
3463 * select.el (selection-coding-system, next-selection-coding-system):
3464 Sync doc with C versions.
3646b86d 3465
8aa0f263
GM
3466 * w32-vars.el (x-select-enable-clipboard):
3467 * term/x-win.el (x-select-enable-clipboard): Move to common-win.
3468 * term/common-win.el (x-select-enable-clipboard): Move here.
3469
46710489
GM
3470 * term/tty-colors.el (tty-defined-color-alist): Remove duplicate
3471 definition of C variable.
3472
ec514007
GM
3473 * frame.el (show-trailing-whitespace, auto-hscroll-mode)
3474 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
3475 Don't redefine things that are defined in C.
3476 * cus-start.el: Also handle :risky, :safe, :set, and :tag.
3477 (show-trailing-whitespace, auto-hscroll-mode)
3478 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
3479 Set up the appropriate custom properties.
3480
8a79905d
CY
34812010-10-24 Chong Yidong <cyd@stupidchicken.com>
3482
3483 Bind "C-c ]" to ...
3484 * progmodes/f90.el (f90-mode-map): ... f90-insert-end.
3485 * nxml/nxml-mode.el (nxml-mode-map): ... nxml-finish-element.
3486 * textmodes/tex-mode.el (tex-mode-map): ... latex-close-block.
3487 * textmodes/sgml-mode.el (sgml-mode-map): ... sgml-close-tag.
3488
aa02a29f
GM
34892010-10-23 Glenn Morris <rgm@gnu.org>
3490
7dfc15df
GM
3491 * textmodes/flyspell.el (flyspell-mode): If there was an error,
3492 say what it was.
3493
66c6abf0
GM
3494 * frame.el (auto-hscroll-mode, cursor-in-non-selected-windows):
3495 Sync docs with C version.
f3d87560 3496
3193e969
GM
3497 * term/ns-win.el (xw-defined-colors):
3498 * term/x-win.el (xw-defined-colors): Make docs identical to w32-win.
3499
6f748f70
GM
3500 * term/pc-win.el (x-select-enable-clipboard):
3501 * term/x-win.el (x-select-enable-clipboard):
3502 * w32-vars.el (x-select-enable-clipboard): Make doc-strings identical.
3503
7aa93795
GM
3504 * comint.el (comint-password-prompt-regexp): Make it less vague.
3505 Bump version.
3506
17284e30
GM
3507 * help-fns.el (doc-file-to-man, doc-file-to-info): New commands.
3508
aa02a29f
GM
3509 * help.el (finder-by-keyword): Remove unnecessary autoload.
3510
69b55131
GM
35112010-10-22 Glenn Morris <rgm@gnu.org>
3512
9a0dd02d
GM
3513 * loadup.el: Unconditionally load float-sup.
3514 * paren.el (show-paren-delay):
3515 * emacs-lisp/float-sup.el:
3516 * emulation/cua-base.el (cua-prefix-override-inhibit-delay):
3517 * obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice)
3518 (lazy-lock-stealth-verbose): Assume float support.
3519 * ps-print.el: Assume float support on Emacs.
3520 * emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
3521 Remove non-float branch.
3522
69b55131
GM
3523 * emacs-lisp/autoload.el (batch-update-autoloads): Update for
3524 src/Makefile no longer being pre-processed.
3525
7c23d9e8
SM
35262010-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
3527
3528 * emacs-lisp/find-func.el (find-library): Use test-completion.
3529
23737b4a
LMI
35302010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3531
7c23d9e8 3532 * newcomment.el (comment-dwim): Fix the intentation in the doc string.
23737b4a 3533
6e060cee 35342010-10-21 Michael Albinus <michael.albinus@gmx.de>
01d884cf
MA
3535
3536 * net/tramp-sh.el (tramp-do-file-attributes-with-stat): Do not use
3537 space in stat format string.
3538 (tramp-send-command): Unset $PS1 when using here documents, in
3539 order not to get several prompts.
3540 (tramp-get-inline-coding): Return `nil' in case of errors.
3541
08ffb131
DU
35422010-10-21 Daiki Ueno <ueno@unixuser.org>
3543
7c23d9e8
SM
3544 * hexl.el (hexl-mode, hexl-mode-exit):
3545 Tweak revert-buffer-function to inhibit auto-mode-alist (Bug#7252).
08ffb131
DU
3546 (hexl-revert-buffer-function): New function.
3547 (hexl-before-revert-hook, hexl-after-revert-hook): Abolish.
3548
ba7fdf30
AM
35492010-10-19 Alan Mackenzie <acm@muc.de>
3550
7c23d9e8
SM
3551 * progmodes/cc-langs.el (c-type-decl-prefix-key): C++ bit:
3552 Move "\(const\|throw\|volatile\)\>" nearer the start of the regexp, so
7f0789c9
AM
3553 that these keywords aren't wrongly matched as identifiers.
3554
ba7fdf30
AM
3555 * progmodes/cc-mode.el (c-before-change, c-after-change): Move the
3556 setting of c-new-BEG and c-new-END from c-before-change to
e64ae4e8 3557 c-after-change. (Bug#7181)
ba7fdf30 3558
7fd8732d
CY
35592010-10-19 Chong Yidong <cyd@stupidchicken.com>
3560
3561 * cus-face.el (custom-theme-set-faces): Revert 2010-10-18 change.
3562 Don't mark as safe.
3563
3564 * custom.el (custom-theme-set-variables): Likewise.
3565 (load-theme): Add custom-theme-set-faces and
3566 custom-theme-set-variables to safe-functions while loading.
3567 (custom-enabled-themes): Mark as risky.
3568
3f12b18c
JD
35692010-10-18 Julien Danjou <julien@danjou.info>
3570
3571 * bindings.el: Remove end dashes in default mode-line-format.
3572
b8a47412
CY
35732010-10-19 Chong Yidong <cyd@stupidchicken.com>
3574
3575 * bindings.el (global-map): Bind C-d to delete-char and deletechar
3576 to delete-forward-char.
3577
3578 * simple.el (normal-erase-is-backspace-mode): Remap delete to
3579 deletechar, and hence delete-forward-char.
3580
ca3fa302
JB
35812010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3582
3583 * repeat.el (repeat): Use read-key (bug#6256).
3584
35852010-10-19 Chong Yidong <cyd@stupidchicken.com>
3586
3587 * emacs-lisp/unsafep.el: Don't mark functions that display
3588 messages as safe. Suggested by Johan Bockgård.
3589
35902010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3591
3592 * minibuffer.el (completion--replace): Move point where it belongs
3593 when there's a common suffix (bug#7215).
3594
35952010-10-19 Kenichi Handa <handa@m17n.org>
3596
3597 * international/characters.el: Add category '|' (word breakable)
3598 to fullwidth characters.
3599
3224b54d
MA
36002010-10-19 Michael Albinus <michael.albinus@gmx.de>
3601
3602 * net/tramp-sh.el (tramp-do-file-attributes-with-stat)
3603 (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
3604 order to make stat results a float. Patch by Andreas Schwab
3605 <schwab@linux-m68k.org>.
3606
36ba6f07
JD
36072010-10-18 Julien Danjou <julien@danjou.info>
3608
3609 * avoid.el (mouse-avoidance-ignore-p): Ignore mouse when it is
3610 hidden by `make-pointer-invisible'.
3611
43f964fc
SM
36122010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
3613
3614 * files.el (locate-file-completion-table): Strip non-matching elements
3615 before checking length of list (bug#7238).
3616
e48eb343
CY
36172010-10-18 Chong Yidong <cyd@stupidchicken.com>
3618
3619 * custom.el (custom-theme-set-variables): Mark as a safe function.
3620 (load-theme): Check forms using unsafep.
3621
3622 * cus-face.el (custom-theme-set-faces): Mark as a safe function.
3623
df987d70
AM
36242010-10-17 Agustín Martín <agustin.martin@hispalinux.es>
3625
43f964fc
SM
3626 * textmodes/ispell.el (ispell-aspell-find-dictionary):
3627 Fix aspell data file searching (bug#7230).
df987d70 3628
29a4c45b
CY
36292010-10-16 Chong Yidong <cyd@stupidchicken.com>
3630
3631 * cus-theme.el (custom-theme--migrate-settings): New var.
3632 (customize-create-theme): Allow editing the `user' theme.
3633 (custom-theme-add-variable, custom-theme-add-var-1)
3634 (custom-theme-add-face, custom-theme-add-face-1): Add a checkbox
3635 to the front of each variable or face widget.
3636 (custom-theme-write): Save theme settings in the correct order.
3637 Optionally, remove saved settings from user customizations.
43f964fc
SM
3638 (custom-theme-write-variables, custom-theme-write-faces):
3639 Save only the checked widgets.
29a4c45b
CY
3640 (customize-themes): Add a link for migrating custom settings.
3641
43f964fc
SM
3642 * custom.el (custom-declare-theme, provide-theme):
3643 Use custom-theme-name-valid-p.
29a4c45b
CY
3644 (custom-theme-name-valid-p): Remove checks that are now
3645 unnecessary since themes no longer obey load-path.
3646
3647 * cus-edit.el (custom-variable-value-create): For the simple
3648 style, hide documentation string when hidden.
3649
782b5e8d
CY
36502010-10-16 Chong Yidong <cyd@stupidchicken.com>
3651
647bc502
CY
3652 * cus-edit.el (custom-variable, custom-face): Combine the
3653 :inhibit-magic and :display-style properties into a single
3654 :custom-style property.
43f964fc
SM
3655 (custom-toggle-hide-variable, custom-toggle-hide-face):
3656 New functions. If hiding an edited value, save it to :shown-value.
3657 (custom-variable-value-create, custom-face-value-create): Use them.
647bc502
CY
3658 (custom-magic-reset): Allow magic property to be unset.
3659
782b5e8d
CY
3660 * custom.el: Custom themes no longer use load-path.
3661 (custom-theme-load-path): New option. Change built-in theme
3662 directory to etc/.
3663 (custom-enabled-themes): Add custom-theme-load-path dependency.
3664 (custom-theme--load-path): New function.
3665 (load-theme, custom-available-themes): Use it.
3666
3667 * cus-theme.el (describe-theme-1): Use custom-theme--load-path.
3668 (customize-themes): Link to custom-theme-load-path variable.
647bc502
CY
3669 (custom-theme-add-var-1, custom-theme-add-face-1): Use the
3670 :custom-style property.
782b5e8d
CY
3671
3672 * themes/*.el: Moved to etc/.
3673
99f65cfa
RA
36742010-10-16 Ralf Angeli <angeli@caeruleus.net>
3675
3676 * textmodes/reftex-cite.el
3677 (reftex-extract-bib-entries-from-thebibliography): Do not move
3678 point when searching for \bibitem entries. Match entries with
3679 spaces or tabs in front of arguments.
3680
da16abfc
CY
36812010-10-16 Chong Yidong <cyd@stupidchicken.com>
3682
3683 * cus-theme.el (customize-create-theme): Delete overlays after
3684 erasing. If given a THEME arg, display only the faces of that arg
3685 instead of custom-theme--listed-faces.
3686 (custom-theme-variable-menu, custom-theme-variable-action)
43f964fc 3687 (custom-variable-reset-theme, custom-theme-delete-variable): Delete.
da16abfc
CY
3688 (custom-theme-add-variable, custom-theme-add-face): Apply value
3689 from the theme settings, instead of the current value.
3690 (custom-theme-add-var-1, custom-theme-add-face-1): New functions.
3691 (custom-theme-visit-theme): Allow calling outside theme buffers.
3692 (custom-theme-merge-theme): Don't enable the theme when merging.
3693 (custom-theme-write-variables, custom-theme-write-faces): Use the
3694 :shown-value properties to save buffer values, not global ones.
3695 (customize-themes): Display a warning about user customizations.
3696
3697 * cus-edit.el (custom-variable-value-create)
3698 (custom-face-value-create): Obey new special properties
3699 :shown-value and :inhibit-magic.
3700
aa095b2d
MA
37012010-10-15 Michael Albinus <michael.albinus@gmx.de>
3702
3703 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
3224b54d
MA
3704 Suppress expansion of tabs to spaces. Reported by Dale Sedivec
3705 <dale@codefu.org>.
aa095b2d 3706
7ca9cfda
KH
37072010-10-14 Kenichi Handa <handa@m17n.org>
3708
9650fc61
KH
3709 * mail/rmail.el (rmail-show-message-1): Catch an error of
3710 base64-decode-region and just show an error message (bug#7165).
3711
43f964fc 3712 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used anymore.
7ca9cfda
KH
3713 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
3714 a font-spec (bug#7197).
3715
220d91b8 37162010-10-14 Glenn Morris <rgm@gnu.org>
7163badd
GM
3717
3718 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
3719
220d91b8 37202010-10-14 Juanma Barranquero <lekktu@gmail.com>
51e4f4a8 3721
c0943d3d
JB
3722 * international/mule.el (define-coding-system):
3723 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
51e4f4a8
JB
3724 * composite.el (compose-region): Fix typo in docstring.
3725
4983ddea
CY
37262010-10-14 Chong Yidong <cyd@stupidchicken.com>
3727
de43f11b
CY
3728 * cus-face.el (custom-theme-set-faces): Call custom-push-theme
3729 only after checking the theme-face property.
3730
4983ddea
CY
3731 * faces.el (face-spec-reset-face): Reset all attributes in one
3732 single call to set-face-attribute.
3733 (face-spec-match-p): Make it a defsubst.
3734 (frame-set-background-mode): New arg KEEP-FACE-SPECS.
3735 (x-create-frame-with-faces, tty-create-frame-with-faces)
3736 (tty-set-up-initial-frame-faces): Don't recompute face specs in
3737 frame-set-background-mode, since they are recomputed immediately
3738 afterwards in face-set-after-frame-default.
3739 (face-set-after-frame-default): Minor optimization.
3740 (cursor): Provide non-trivial defface spec.
3741
3742 * custom.el (custom-theme-recalc-face): Simplify.
3743
a974dcf2
JB
37442010-10-14 Jay Belanger <jay.p.belanger@gmail.com>
3745
43f964fc 3746 * calc/calc-alg.el (math-var): Rename from `var'.
a974dcf2
JB
3747 (math-is-polynomial, math-is-poly-rec): Replace `var'
3748 with `math-var'.
3749
43f964fc 3750 * calc/calcalg2.el (math-var): Rename from `var'.
a974dcf2
JB
3751 (calcFunc-table, math-scan-for-limits): Replace `var'
3752 with `math-var'.
3753
10e4702a
GM
37542010-10-13 Glenn Morris <rgm@gnu.org>
3755
3756 * subr.el (last): Deal with dotted lists (reported in bug#7174).
3757
88f427d5
SB
37582010-10-13 Stephen Berman <stephen.berman@gmx.net>
3759
3760 * subr.el (last): Use `safe-length' instead of `length' (bug#7206).
3761
a1d16a7b
G
37622010-10-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3763
3764 * net/tls.el (tls-program): Remove spurious %s from openssl.
3765 (tls-starttls-switches): Remove starttls hack.
3766 (open-tls-stream): Ditto.
3767 (tls-find-starttls-argument): Ditto.
3768
2e288d54
JB
37692010-10-13 Juanma Barranquero <lekktu@gmail.com>
3770
3771 * image.el (image-library-alist): Declare as obsolete alias.
3772 (image-type-available-p): Use `dynamic-library-alist'.
3773
3774 * term/w32-win.el (dynamic-library-alist):
3775 Use instead of `image-library-alist'.
3776
35744400
IS
37772010-10-13 IRIE Shinsuke <irieshinsuke@yahoo.co.jp> (tiny change)
3778
3779 * subr.el (last): Make it faster. (Bug#7174)
3780
290fe464
RO
37812010-10-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
3782
3783 * Makefile.in (compile-clean): Use `` instead of $(). (Bug#7178)
3784
2919746c
CY
37852010-10-12 Chong Yidong <cyd@stupidchicken.com>
3786
3787 * cus-theme.el (custom-theme--listed-faces): Add cursor face.
3788 (describe-theme-1): Extract doc from unloaded themes.
3789
3790 * custom.el (custom-theme-name-valid-p): Don't list color-themes.
3791
3792 * themes/tango-theme.el:
3793 * themes/tango-dark-theme.el:
3794 * themes/wheatgrass-theme.el: New files.
3795
6b09b5d1
CY
37962010-10-12 Chong Yidong <cyd@stupidchicken.com>
3797
3798 * cus-theme.el (describe-theme, customize-themes)
3799 (custom-theme-save): New commands.
3800 (custom-new-theme-mode-map): Bind C-x C-s.
3801 (custom-new-theme-mode): Use custom--initialize-widget-variables.
3802 (customize-create-theme): New optional arg THEME.
3803 (custom-theme-revert): Use it.
3804 (custom-theme-visit-theme): Remove dead code.
3805 (custom-theme-merge-theme): Use custom-available-themes.
3806 (custom-theme-write): Make interactive.
3807 (custom-theme-write): Use custom-theme-name-valid-p.
3808 (describe-theme-1, custom-theme-choose-revert)
3809 (custom-theme-checkbox-toggle, custom-theme-selections-toggle):
3810 New funs.
3811 (custom-theme-allow-multiple-selections): New option.
3812 (custom-theme-choose-mode): New major mode.
3813
43f964fc
SM
3814 * custom.el (custom-theme-set-variables): Remove dead code.
3815 Obey custom--inhibit-theme-enable.
6b09b5d1
CY
3816 (custom--inhibit-theme-enable): New var.
3817 (provide-theme): Obey it.
3818 (load-theme): Replace load with manual read/eval, in order to
3819 check for correctness. Use custom-theme-name-valid-p.
3820 (custom-theme-name-valid-p): New function.
3821 (custom-available-themes): Use it.
3822
3823 * cus-edit.el (custom--initialize-widget-variables): New function.
3824 (Custom-mode): Use it.
3825
43f964fc
SM
3826 * cus-face.el (custom-theme-set-faces): Remove dead code.
3827 Obey custom--inhibit-theme-enable.
6b09b5d1
CY
3828
3829 * help-mode.el (help-theme-def, help-theme-edit): New buttons.
3830
16366259
JB
38312010-10-12 Juanma Barranquero <lekktu@gmail.com>
3832
cb7d821e 3833 * net/telnet.el (telnet-mode-map): Fix previous change (bug#7193).
16366259 3834
4c14013d 38352010-10-12 Jan Djärv <jan.h.d@swipnet.se>
9386ae12 3836
4c14013d
JB
3837 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
3838 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
3839 (mac-right-option-modifier): New alias for ns-right-option-modifier.
3840
3841 * cus-start.el (all): ns-right-alternate-modifier is new.
9386ae12 3842
4c14013d 38432010-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
4c528197
SM
3844
3845 * emacs-lisp/lisp.el (lisp-completion-at-point):
3846 Use emacs-lisp-mode-syntax-table for the whole function.
3847
4c14013d 38482010-10-12 David Koppelman <koppel@ece.lsu.edu>
c58059f2
DK
3849
3850 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
4c528197
SM
3851 instead of font-lock-mode before adding keywords.
3852 Remove hi-lock-mode off code. Remove inhibit hack.
c58059f2
DK
3853 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
3854 non-nil; removed hook inhibit hack.
3855
4c14013d 38562010-10-12 Glenn Morris <rgm@gnu.org>
c7d6d8a1 3857
d15f9a2b
GM
3858 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
3859 (load-path-shadows-find): ... to this.
3860 (list-load-path-shadows): Update for above change.
3861
c7d6d8a1
GM
3862 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
3863
f0b7f5a8
KY
38642010-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
3865
3866 * mail/hashcash.el, net/imap.el, pgg-parse.el, pgg.el:
3867 Fix comment for declare-function.
3868
05d22d02
CY
38692010-10-11 Chong Yidong <cyd@stupidchicken.com>
3870
3871 * custom.el (custom-fix-face-spec): New function; code moved from
3872 custom-face-edit-fix-value.
3873 (custom-push-theme): Use it when checking if a face has been
3874 changed outside customize.
3875 (custom-available-themes): New function.
3876 (load-theme): Use it.
3877
43f964fc 3878 * cus-edit.el (custom-face-edit-fix-value): Use custom-fix-face-spec.
05d22d02
CY
3879
3880 * custom.el (custom-push-theme): Cleanup (use cond).
3881 (disable-theme): Recompute the saved-face property.
3882 (custom-theme-recalc-face): Follow face alias before setting prop.
3883
43f964fc
SM
3884 * image.el (image-checkbox-checked, image-checkbox-unchecked):
3885 New variables, containing checkbox images.
05d22d02
CY
3886
3887 * startup.el (fancy-startup-tail):
3888 * wid-edit.el (checkbox): Use them.
3889
293e7c22
DN
38902010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
3891
a0310a6c
DN
3892 * shell.el (shell-mode-map):
3893 * progmodes/modula2.el (m2-mode-map):
3894 * progmodes/inf-lisp.el (inferior-lisp-mode-map):
3895 * play/mpuz.el (mpuz-mode-map):
3896 * play/landmark.el (lm-mode-map):
3897 * play/decipher.el (decipher-mode-map):
3898 * play/5x5.el (5x5-mode-map):
3899 * net/telnet.el (telnet-mode-map):
3900 * net/quickurl.el (quickurl-list-mode-map):
3901 * net/mairix.el (mairix-searches-mode-map):
3902 * net/eudc-hotlist.el (eudc-hotlist-mode-map):
3903 * net/dig.el (dig-mode-map):
3904 * mail/mspools.el (mspools-mode-map):
3905 * hexl.el (hexl-mode-map):
3906 * emulation/ws-mode.el (wordstar-C-k-map, wordstar-mode-map)
3907 (wordstar-C-o-map, wordstar-C-q-map):
3908 * emacs-lisp/edebug.el (edebug-eval-mode-map):
3909 * emacs-lisp/chart.el (chart-map):
3910 * edmacro.el (edmacro-mode-map):
3911 * erc/erc-list.el (erc-list-menu-mode-map):
3912 * array.el (array-mode-map): Declare and define in one step.
3913
293e7c22
DN
3914 * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
3915
446b12da
DU
39162010-10-10 Daiki Ueno <ueno@unixuser.org>
3917
3918 * epa.el (epa-passphrase-callback-function): Display filename
3919 passed as the 3rd arg.
43f964fc
SM
3920 * epa-file.el (epa-file-passphrase-callback-function):
3921 Pass filename to epa-passphrase-callback-function.
446b12da 3922
76c16af8
CY
39232010-10-09 Chong Yidong <cyd@stupidchicken.com>
3924
3925 * cus-edit.el (custom-face-widget-to-spec)
3926 (custom-face-get-current-spec, custom-face-state): New functions.
3927 (custom-face-set, custom-face-mark-to-save)
3928 (custom-face-value-create, custom-face-state-set): Use them.
3929
3930 * cus-theme.el (custom-theme--listed-faces): New var.
3931 (customize-create-theme): Use *Custom Theme* as the buffer name.
3932 Set revert-buffer-function. Optional arg BUFFER. Insert all
3933 faces listed in custom-theme--listed-faces.
3934 (custom-theme-revert): New function.
3935 (custom-theme-add-variable, custom-theme-add-face): Insert at the
3936 bottom of the list.
3937 (custom-theme-write): Prompt for theme name if empty.
3938 (custom-theme-write-variables): Use dolist.
3939 (custom-theme-write-faces): Handle hidden (collapsed) widgets.
3940
e15f8aaa
AM
39412010-10-09 Alan Mackenzie <acm@muc.de>
3942
3943 Enhance fontification of declarators to take account of the
3944 presence/absence of "typedef".
3945
3946 * cc-engine.el (c-forward-type): New &optional param
3947 "brace-block-too".
3948 (c-forward-decl-or-cast-1): cdr of return value now indicates the
43f964fc 3949 presence of either or both of a "struct"-like keyword and "typedef".
e15f8aaa
AM
3950
3951 * cc-fonts.el (c-complex-decl-matchers): Remove the heuristic
3952 fontification of declarators which follow a "}".
3953 (c-font-lock-declarations): Fontify declarators according to the
3954 presence/absence of "typedef".
3955
3956 * cc-langs.el (c-typedef-kwds c-typedef-key): New lang variable
3957 for "typedef".
3958 (c-typedef-decl-key): New lang variable built from
3959 c-typedef-decl-kwds.
3960
cf321e50
LMI
39612010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
3962
77aec221
LMI
3963 * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
3964 since that's too annoying. Move the filter groups commands to
3965 TAB/backtab.
3966
7450df5d
LMI
3967 * epa.el (epa-passphrase-callback-function): Say what we're
3968 querying the password for.
3969
cf321e50 3970 * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
43f964fc 3971 behaviour, don't bury the ibuffer buffer when visiting other buffers.
cf321e50 3972
587faadd
CY
39732010-10-08 Chong Yidong <cyd@stupidchicken.com>
3974
3975 * cus-edit.el (custom-commands, custom-buffer-create-internal)
3976 (custom-magic-value-create): Pad button tags with spaces.
3977 (custom-face-edit): New variable.
3978 (custom-face-value-create): Determine whether to use the usual
43f964fc
SM
3979 face editor here, instead of using custom-face-selected.
3980 Pass face defaults to custom-face-edit widget.
587faadd
CY
3981 (custom-face-selected, custom-display-unselected): Delete widgets.
3982 (custom-display-unselected-match): Function removed.
43f964fc
SM
3983 (custom-face-set, custom-face-mark-to-save):
3984 Accept custom-face-edit widgets as the direct widget child.
587faadd
CY
3985
3986 * wid-edit.el (widget--completing-widget): New var.
3987 (widget-default-complete): Bind it when doing completion.
3988 (widget-string-complete, widget-file-complete): Use it.
3989
a1ab97d0
GM
39902010-10-09 Glenn Morris <rgm@gnu.org>
3991
85d50db7
GM
3992 * calendar/cal-hebrew.el (holiday-hebrew-rosh-hashanah)
3993 (holiday-hebrew-passover, holiday-hebrew-tisha-b-av)
3994 (holiday-hebrew-misc): Small simplifications.
3995
3fb78d1f
GM
3996 * emacs-lisp/authors.el (authors-valid-file-names): Add b2m.c.
3997
a1ab97d0
GM
3998 * net/browse-url.el: Don't require thingatpt, term, dired,
3999 executable, or w3-auto when compiling.
4000 (dired-get-filename, term-char-mode, term-send-down, term-send-string):
4001 Declare.
4002 (browse-url-text-emacs): Require term.
4003
2187e5bb
AS
40042010-10-08 Andreas Schwab <schwab@linux-m68k.org>
4005
4006 * net/browse-url.el (browse-url-xdg-open): Remove use of /bin/sh.
4007
e5d49589
GM
40082010-10-08 Glenn Morris <rgm@gnu.org>
4009
5823f53f
GM
4010 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
4011
e5d49589
GM
4012 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
4013 (shadows-compare-text-p): Make it an obsolete alias for...
4014 (load-path-shadows-compare-text): ... new name.
4015 (find-emacs-lisp-shadows): Update for above name change.
4016 (load-path-shadows-same-file-or-nonexistent): New name for the old
4017 shadow-same-file-or-nonexistent.
4018
4628bef1 40192010-10-08 Chong Yidong <cyd@stupidchicken.com>
397ae226
CY
4020
4021 * minibuffer.el (completion--some, completion--do-completion)
4022 (minibuffer-complete-and-exit, minibuffer-completion-help)
4023 (completion-basic-try-completion)
4024 (completion-basic-all-completions)
4025 (completion-pcm--find-all-completions): Use lexical-let to
4026 avoid some false matches in variable completion (Bug#7056)
4027
4628bef1 40282010-10-08 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
8686a5ea
OOS
4029
4030 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
4031
4628bef1 40322010-10-08 Leo <sdl.web@gmail.com>
83b8ea28
LL
4033
4034 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
4035 return non-nil if the file exists (Bug#7090).
4036
4628bef1 40372010-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
55586d2a
SM
4038
4039 * minibuffer.el (completion--replace):
4040 Better preserve markers (bug#7138).
4041
4628bef1 40422010-10-08 Juanma Barranquero <lekktu@gmail.com>
2b7ba565
JB
4043
4044 * server.el (server-process-filter): Doc fix.
4045
4628bef1 40462010-10-08 Drew Adams <drew.adams@oracle.com>
53ad04fc
DA
4047
4048 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
4049
e4adf61e
GM
40502010-10-08 Glenn Morris <rgm@gnu.org>
4051
24ac444f
GM
4052 * vc/ediff-wind.el (ediff-setup-control-frame):
4053 * vc/ediff-ptch.el (ediff-default-backup-extension):
4054 * vc/ediff-diff.el (ediff-shell, ediff-diff-options)
4055 (ediff-exec-process): Remove system-types emx, windows-95.
4056
e4adf61e
GM
4057 * net/browse-url.el (browse-url-xdg-open): Shell-quote url. (Bug#7166)
4058
61328d7c
CY
40592010-10-07 Chong Yidong <cyd@stupidchicken.com>
4060
4061 * cus-edit.el (custom-variable, custom-face): Doc fix.
4062 (custom-face-edit): Add value-create attribute.
4063 (custom-face-edit-value-create)
43f964fc
SM
4064 (custom-face-edit-value-visibility-action): New functions.
4065 Hide unused face attributes by default, and add a visibility toggle.
61328d7c
CY
4066 (custom-face-edit-deactivate): Show empty values with shadow face.
4067 (custom-face-selected): Only use this for face specs with default
4068 attributes.
4069 (custom-face-value-create): Cleanup.
4070
4071 * wid-edit.el (widget-checklist-value-create): Use dolist.
4072 (widget-checklist-match-find): Make second arg optional.
4073
ac44263a
GM
40742010-10-07 Glenn Morris <rgm@gnu.org>
4075
849b02b4
GM
4076 * hilit-chg.el (hilit-chg-get-diff-info, hilit-chg-get-diff-list-hk):
4077 Prefix things.
4078
ac44263a
GM
4079 * emacs-lisp/shadow.el (shadow-font-lock-keywords)
4080 (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to
4081 load-path-shadows-mode, update references.
06d9ef85
GM
4082 (load-path-shadows-font-lock-keywords, load-path-shadows-find-file):
4083 Rename variable and button.
4084 (list-load-path-shadows): Update button caller.
ac44263a 4085
29c72a6e
SM
40862010-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
4087
4088 * emacs-lisp/smie.el (smie-bnf-classify): New function.
4089 (smie-bnf-precedence-table): Use it to remember the closers/openers.
4090 (smie-merge-prec2s): Handle those new entries.
4091 (smie-prec2-levels): Only set precedence to nil for actual
4092 openers/closers.
4093 * progmodes/octave-mod.el (octave-smie-op-levels): Remove dummy entry
4094 that is now unnecessary.
4095
775f75bc 40962010-10-07 Miles Bader <miles@gnu.org>
07ff7702
MB
4097
4098 * emacs-lisp/regexp-opt.el (regexp-opt): Add `symbols' mode.
4099
7e1e2a6e
GM
41002010-10-07 Glenn Morris <rgm@gnu.org>
4101
58d1ac6d
GM
4102 * mail/rmail.el (mail-sendmail-delimit-header, mail-header-end)
4103 (mail-position-on-field): Remove declarations.
4104 (mail-position-on-field): Autoload it.
4105 (rmail-retry-failure): Replace use of mail-sendmail-delimit-header
4106 and mail-header-end. Don't require sendmail.
4107
7b9235ad
GM
4108 * emacs-lisp/shadow.el (shadow-font-lock-keywords): New variable.
4109 (shadow-mode): New mode.
4110 (shadow-find-file): New button.
4111 (list-load-path-shadows): Use shadow-mode and buttons.
4112
52da2182
GM
4113 * iimage.el (iimage-version): Remove.
4114 (iimage-mode-image-search-path, iimage-mode-image-regex-alist):
4115 Turn into defcustoms.
4116 (iimage-mode-map): Give it a doc string.
4117
7e1e2a6e
GM
4118 * calendar/appt.el (appt-activate): Give a warning rather than an error
4119 if there is no diary-file.
4120
e44eccd7
MA
41212010-10-06 Michael Albinus <michael.albinus@gmx.de>
4122
29c72a6e
SM
4123 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
4124 Use `tramp-handle-find-backup-file-name'.
e44eccd7 4125
4583e796
GM
41262010-10-06 Glenn Morris <rgm@gnu.org>
4127
6aecca99
GM
4128 * font-core.el (font-lock-defaults-alist): Remove variable.
4129 (font-lock-mode): Doc fix.
4130 (font-lock-default-function): Do not consult font-lock-defaults-alist.
4131 * font-lock.el (font-lock-refresh-defaults): Doc fix.
4132 (font-lock-set-defaults): Doc fix.
4133 Do not consult font-lock-defaults-alist.
4134
645a6257
GM
4135 * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
4136
4583e796
GM
4137 * emacs-lisp/cl.el: No longer provide cl-19.
4138
bd8fadca
MA
41392010-10-05 Michael Albinus <michael.albinus@gmx.de>
4140
4141 * net/tramp.el (tramp-handle-directory-files-and-attributes)
4142 (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p):
4143 New defuns, taken from tramp-smb.el.
4144 (tramp-coding-system-change-eol-conversion)
43f964fc 4145 (tramp-set-process-query-on-exit-flag): Remove.
bd8fadca 4146
43f964fc 4147 * net/tramp-compat.el (top): Do not check for byte-compiler objects.
bd8fadca
MA
4148 (tramp-compat-coding-system-change-eol-conversion)
4149 (tramp-compat-set-process-query-on-exit-flag): New defuns, taken
4150 from tramp.el.
4151
4152 * net/tramp-gvfs.el:
4153 * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag'
4154 by `tramp-compat-set-process-query-on-exit-flag'.
4155
43f964fc
SM
4156 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
4157 Use `tramp-handle-directory-files-and-attributes',
bd8fadca
MA
4158 `tramp-handle-file-exists-p' and
4159 `tramp-handle-file-newer-than-file-p'.
4160 (tramp-imap-handle-file-exists-p)
4161 (tramp-imap-handle-file-executable-p)
4162 (tramp-imap-handle-file-readable-p)
4163 (tramp-imap-handle-directory-files-and-attributes)
43f964fc 4164 (tramp-imap-handle-file-newer-than-file-p): Remove.
bd8fadca
MA
4165
4166 * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag'
4167 by `tramp-compat-set-process-query-on-exit-flag' and
4168 `tramp-coding-system-change-eol-conversion' by
4169 `tramp-compat-coding-system-change-eol-conversion'.
4170
43f964fc
SM
4171 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
4172 Use `tramp-handle-directory-files-and-attributes',
bd8fadca
MA
4173 `tramp-handle-file-exists-p' and
4174 `tramp-handle-file-newer-than-file-p'.
4175 (tramp-smb-handle-directory-files-and-attributes)
4176 (tramp-smb-handle-file-exists-p)
43f964fc
SM
4177 (tramp-smb-handle-file-newer-than-file-p): Remove.
4178 (tramp-smb-maybe-open-connection):
4179 Replace `tramp-set-process-query-on-exit-flag' by
bd8fadca
MA
4180 `tramp-compat-set-process-query-on-exit-flag'.
4181
726c5357
GM
41822010-10-05 Glenn Morris <rgm@gnu.org>
4183
4184 * obsolete/rnews.el, obsolete/rnewspost.el: Remove files.
4185
4a93e698
MA
41862010-10-04 Michael Albinus <michael.albinus@gmx.de>
4187
4188 Continue reorganization of load dependencies. (Bug#7156)
4189
4190 * net/tramp.el (tramp-handle-file-local-copy-hook)
4191 (tramp-delete-temp-file-function): Move down.
4192 (tramp-exists-file-name-handler): Move up.
4193 (tramp-register-file-name-handlers): Simplify autoload.
4194 (tramp-handle-write-region-hook, tramp-handle-directory-file-name)
4195 (tramp-handle-directory-files, tramp-handle-dired-uncache)
4196 (tramp-handle-file-modes, tramp-handle-file-name-as-directory)
4197 (tramp-handle-file-name-completion)
4198 (tramp-handle-file-name-directory)
4199 (tramp-handle-file-name-nondirectory, tramp-handle-file-regular-p)
4200 (tramp-handle-file-remote-p, tramp-handle-file-symlink-p)
4201 (tramp-handle-find-backup-file-name)
4202 (tramp-handle-insert-file-contents, tramp-handle-load)
4203 (tramp-handle-substitute-in-file-name)
4204 (tramp-handle-unhandled-file-name-directory)
4205 (tramp-mode-string-to-int, tramp-local-host-p)
43f964fc 4206 (tramp-make-tramp-temp-file): Move from tramp-sh.el.
4a93e698
MA
4207
4208 * net/tramp-gvfs.el (top):
4209 * net/tramp-smb.el (top): Do not require 'tramp-sh.
4210
4211 * net/tramp-sh.el (all): Move several objects to tramp.el, see
4212 there. Rename `tramp-handle-*' to `tramp-sh-handle-*'.
4213
b4593555
GM
42142010-10-04 Glenn Morris <rgm@gnu.org>
4215
4216 * calendar/appt.el (appt-add): Ensure reminders are enabled.
4217 (appt-activate): Give status messages.
4218
8762aa10
TZ
42192010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
4220
4221 * net/gnutls.el: Improve docs. Remove starttls and ssl emulation.
4222 Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
43f964fc
SM
4223 `gnutls-negotiate' (formerly `starttls-negotiate').
4224 Remove trivial wrapper `starttls-open-stream'.
8762aa10 4225
82fb8701
DN
42262010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
4227
4228 Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
4229 log-outgoing commands.
4230 * vc/vc.el (vc-log-internal-common): Add a new argument and use it
4231 to create a buffer local revert-buffer-function variable.
4232 (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
4233 revert-buffer-function lambda.
4234
c1ae068b
LMI
42352010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
4236
4237 * net/gnutls.el (starttls-negotiate): Use the plist interface to
43f964fc
SM
4238 `gnutls-boot'. Make TYPE the only required parameter.
4239 Allow TRUSTFILES and KEYFILES to be lists.
c1ae068b
LMI
4240 (open-ssl-stream): Use it.
4241
67141a37
GM
42422010-10-03 Glenn Morris <rgm@gnu.org>
4243
77f38949
GM
4244 * subr.el (directory-sep-char): Remove obsolete variable.
4245 * net/tramp-compat.el: Don't mess about with the byte-compiler unless
4246 it is "necessary".
4247
67141a37
GM
4248 * vc/vc-hooks.el (vc-header-alist): Remove obsolete variable.
4249 * vc/vc.el (vc-static-header-alist): Doc fix.
4250 * vc/vc-cvs.el (vc-cvs-header):
4251 * vc/vc-rcs.el (vc-rcs-header):
4252 * vc/vc-sccs.el (vc-sccs-header):
4253 * vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist.
4254 * obsolete/vc-mcvs.el (vc-mcvs-header):
4255 * progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist
4256 on XEmacs.
4257
96bcef2e
CY
42582010-10-03 Chong Yidong <cyd@stupidchicken.com>
4259
43f964fc
SM
4260 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
4261 Remove obsolete use of binary-overwrite-mode (Bug#7001).
96bcef2e 4262
ef47f179
GM
42632010-10-03 Glenn Morris <rgm@gnu.org>
4264
0437978e
GM
4265 * obsolete/x-menu.el: Remove file, obsolete since 21.1
4266
aee3c6f7
GM
4267 * textmodes/rst.el (rst-font-lock-keywords-function):
4268 Drop Emacs 20 code.
4269
f88cd114
GM
4270 * textmodes/artist.el (artist-replace-char): Drop Emacs 20 code.
4271
6abfe35f
GM
4272 * printing.el: Drop Emacs 20 code.
4273
59e31cfa
GM
4274 * calendar/appt.el (appt-delete): Don't autoload it (you can't use it
4275 without having used appt.el already).
4276
922ad43e
GM
4277 * subr.el (make-local-hook): Remove function obsolete since 21.1.
4278 * progmodes/cc-mode.el (make-local-hook): Don't do cc-bytecomp stuff.
4279 (c-basic-common-init, c-font-lock-init): Only call make-local-hook on
4280 XEmacs.
4281 * progmodes/cc-styles.el (make-local-hook): Don't do cc-bytecomp stuff.
4282 (c-make-styles-buffer-local): Only call make-local-hook on XEmacs.
4283
ef47f179
GM
4284 * ps-def.el (leading-code-private-22, charset-bytes, charset-id)
4285 (charset-width, find-charset-region, chars-in-region, forward-point)
4286 (encode-coding-string, coding-system-p, ccl-execute-on-string)
4287 (define-ccl-program, multibyte-string-p, string-make-multibyte):
4288 Remove compatibility cruft (none of these are used by ps*.el).
4289
ac6ca7ba
KR
42902010-10-03 Kevin Rodgers <kevin.d.rodgers@gmail.com>
4291
4292 * subr.el (booleanp): Return t instead of a list (Bug#7086).
4293
2a847524
CY
42942010-10-03 Chong Yidong <cyd@stupidchicken.com>
4295
43f964fc
SM
4296 * server.el (server-process-filter, server-return-error):
4297 Give emacsclient time to shut down after receiving an error string.
2a847524 4298
4bc3c53d
MA
42992010-10-02 Michael Albinus <michael.albinus@gmx.de>
4300
4301 * files.el (remote-file-name-inhibit-cache): New defcustom.
4302
43f964fc
SM
4303 * time.el (display-time-file-nonempty-p):
4304 Use `remote-file-name-inhibit-cache'.
4bc3c53d 4305
43f964fc
SM
4306 * net/tramp.el (tramp-completion-reread-directory-timeout):
4307 Fix docstring.
4bc3c53d
MA
4308
4309 * net/tramp-cache.el (tramp-cache-inhibit-cache): Remove.
4310 (tramp-get-file-property): Replace `tramp-cache-inhibit-cache' by
4311 `remote-file-name-inhibit-cache'. Check also for an integer
4312 value. Add/increase counter when `tramp-verbose' >= 10.
4313 (tramp-set-file-property): Add/increase counter when
4314 `tramp-verbose' >= 10.
4315
4316 * net/tramp-cmds.el (tramp-cleanup-all-connections)
4317 (tramp-cleanup-all-buffers): Set tramp-autoload cookie.
4318 (tramp-bug): Set tramp-autoload cookie. Report all interned
4319 tramp-* variables. Report also `remote-file-name-inhibit-cache'.
4320 (tramp-reporter-dump-variable): Fix docstring. Mask non-7bit
4321 characters only in strings.
4322
4323 * net/tramp-compat.el (remote-file-name-inhibit-cache): Define due
4324 to backward compatibility.
4325
4326 * net/tramp-sh.el (tramp-handle-verify-visited-file-modtime)
4327 (tramp-handle-file-name-all-completions)
43f964fc
SM
4328 (tramp-handle-vc-registered): Use `remote-file-name-inhibit-cache'.
4329 (tramp-open-connection-setup-interactive-shell):
4330 Call `tramp-cleanup-connection' directly.
4bc3c53d 4331
9c524fcb
GM
43322010-10-02 Glenn Morris <rgm@gnu.org>
4333
3226d6ca
GM
4334 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
4335
4336 * subr.el (char-bytes): Remove obsolete function.
4337
4338 * isearch.el (isearch-return-char): Remove obsolete function.
4339
4340 * mouse.el: No longer provide mldrag.
4341 (mldrag-drag-mode-line, mldrag-drag-vertical-line):
4342 Remove obsolete aliases.
4343
4344 * comint.el (comint-kill-output): Remove obsolete alias.
4345
4346 * composite.el (decompose-composite-char): Remove obsolete function.
4347 * ps-def.el (decompose-composite-char): Remove unused function.
4348
4349 * iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
4350
4351 * outline.el (outline-visible): Remove obsolete function.
4352
4353 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
4354 * faces.el (internal-find-face, internal-get-face)
4355 (frame-update-faces, frame-update-face-colors)
4356 (x-frob-font-weight, x-frob-font-slant)
4357 (internal-frob-font-weight, internal-frob-font-slant)
4358 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
4359 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
4360 (x-make-font-bold-italic): Remove functions and aliases, obsolete
4361 since Emacs 21.1.
4362 * emulation/viper-util.el (viper-get-face):
4363 * obsolete/lucid.el (find-face, get-face): Use facep.
4364 * vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
4365 Remove unused functions.
4366 * vc/ediff-util.el (ediff-submit-report): Doc fix.
4367
9c524fcb
GM
4368 * emacs-lisp/bytecomp.el (byte-compile-file): Use kill-emacs-hook to
4369 delete tempfile if interrupted during compilation.
4370
aecb42aa
LMI
43712010-10-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
4372
4373 * net/tls.el (tls-starttls-switches): Give up on using starttls with
4374 gnutls-cli.
4375 (tls-program): Add --insecure to be consistent with the defaults from
4376 openssl s_client. Now all three commands are insecure.
4377
73077a9a
EZ
43782010-10-01 Eli Zaretskii <eliz@gnu.org>
4379
4380 * makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
4381 (TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
4382 (TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
4383
1ef075bb
GM
43842010-10-01 Glenn Morris <rgm@gnu.org>
4385
1fcaf927
GM
4386 * obsolete/sc.el: Remove file.
4387
1ef075bb
GM
4388 * files.el (temporary-file-directory): On darwin, also try
4389 DARWIN_USER_TEMP_DIR (see discussion in bug#7135).
4390
a16f5f64
JB
43912010-10-01 Juanma Barranquero <lekktu@gmail.com>
4392
4393 * server.el (server-start): Revert part of 2010-09-30T02:53:26Z!lekktu@gmail.com.
4394 Let's not break compatibility gratuitously, shall we?
4395
6b958814
G
43962010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4397
47e08896 4398 * net/tls.el (tls-starttls-switches): New variable.
6b958814
G
4399 (tls-find-starttls-argument): Use it.
4400 (open-tls-stream): Ditto.
4401
47e08896 4402 * net/netrc.el (netrc-credentials): Return the value of the "default"
6b958814
G
4403 entry.
4404 (netrc-machine): Ditto.
4405
cad90f3b
EZ
44062010-09-30 Eli Zaretskii <eliz@gnu.org>
4407
4408 * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
4409
968ef9b4
JB
44102010-09-30 Juanma Barranquero <lekktu@gmail.com>
4411
4412 * server.el (server-start): Don't write pid to the authentication file.
4413 (server-create-tty-frame): Don't send pid.
4414 (server-process-filter): Send pid at the start of every connection.
4415
3536dea8
GM
44162010-09-30 Glenn Morris <rgm@gnu.org>
4417
8e378d88
GM
4418 * calendar/diary-lib.el (view-diary-entries, list-diary-entries)
4419 (show-all-diary-entries): Remove obsolete function aliases.
4420
3536dea8
GM
4421 * calendar/appt.el (appt-issue-message, appt-visible, appt-msg-window):
4422 Remove options, obsolete since 22.1.
6a7662bb
BR
4423 (appt-display-format, appt-display-message):
4424 Remove backwards-compatibility code.
3536dea8
GM
4425 (appt-check): No longer check appt-issue-message.
4426 (appt-make-list): No longer autoload it. Doc fix. No longer
4427 activate the package.
4428
df7fcaff
LMI
44292010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
4430
4431 * net/gnutls.el (starttls-negotiate): Loop a lot longer.
bac5cef8
LMI
4432 (starttls-negotiate): Just call boot, and let the handshake be
4433 triggered from the read loop.
df7fcaff 4434
c2828614
GM
44352010-09-29 Glenn Morris <rgm@gnu.org>
4436
17a46341
GM
4437 * calendar/diary-lib.el (diary-list-entries): Use temp buffers when
4438 not displaying the diary.
4439 (diary-add-to-list): If no buffer-file-name, fall back to diary-file.
4440 * calendar/appt.el (appt-check): No longer need to kill diary.
4441
7161e329
GM
4442 * calendar/diary-lib.el (diary-list-entries): Move the
4443 "Preparing..." message entirely here.
4444 (diary-simple-display, diary-fancy-display): Move "Preparing..."
4445 messages to diary-list-entries.
4446 (diary-include-other-diary-files): Use LIST-ONLY rather than setting
4447 diary-display-function.
4448
d0de6cba
GM
4449 * calendar/diary-lib.el (diary-include-other-diary-files):
4450 Trap some recursive includes.
4451
c2828614
GM
4452 * calendar/appt.el (appt-activate): Check diary file.
4453
0c43b6f8
KY
44542010-09-29 Katsumi Yamaoka <yamaoka@jpl.org>
4455
4456 * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
4457 construction.
4458
4459 * calendar/time-date.el: No need to require cl for Emacs 21.
4460
97ce2730
GM
44612010-09-28 Glenn Morris <rgm@gnu.org>
4462
4463 * calendar/appt.el (appt-check): Minor simplification.
4464
e0a185ae
KY
44652010-09-28 Katsumi Yamaoka <yamaoka@jpl.org>
4466
4467 * mail/sendmail.el (mail-citation-prefix-regexp): Remove "}" from
4468 citation prefix.
4469
c19f76a1
AS
44702010-09-27 Andreas Schwab <schwab@linux-m68k.org>
4471
95b6d681
JB
4472 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
4473 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
c19f76a1 4474
fd057fd2
KH
44752010-09-27 Kenichi Handa <handa@m17n.org>
4476
4477 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
4478 "ustar" format.
4479
368b3544
KH
44802010-09-27 Kenichi Handa <handa@m17n.org>
4481
4482 * international/mule.el (define-coding-system): Docstring fixed.
4483
4484 * international/mule-diag.el (describe-character-set): Use princ
4485 with proper print-length and print-level instead of insert.
4486
95b6d681 44872010-09-27 Juanma Barranquero <lekktu@gmail.com>
fb5f3a23
JB
4488
4489 * window.el (walk-windows): Doc fix (bug#7105).
4490
99368725
SM
44912010-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
4492
4493 * emacs-lisp/float-sup.el (e): Remove.
4494
8ed70bf3
LMI
44952010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
4496
4497 * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom
4498 variable.
4499 (starttls-negotiate): Use it.
4500
d2e9d0bb
LMI
45012010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4502
4503 * net/gnutls.el (starttls-negotiate): Stop looping when we get a t
4504 back.
4505
15413fb4
SM
45062010-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
4507
4508 * emacs-lisp/pcase.el (pcase-let*, pcase-let): plet -> pcase-let.
4509
1821a7b4
LMI
45102010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4511
6303aba1
LMI
4512 * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function.
4513
1821a7b4
LMI
4514 * net/netrc.el (netrc-store-data): New function.
4515
8af55556
TZ
45162010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
4517
4518 * net/gnutls.el: GnuTLS glue code to set up a connection.
4519
42343747
JD
45202010-09-25 Julien Danjou <julien@danjou.info>
4521
4522 * notifications.el: Call dbus-register-signal only if it is bound.
4523
ec60da52
GM
45242010-09-25 Glenn Morris <rgm@gnu.org>
4525
4526 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
4527 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
4528 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
4529 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
4530 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
4531 * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
4532 * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
4533 * eshell/esh-util.el, eshell/esh-var.el:
4534 Remove leading `*' from docs of faces and defcustoms.
4535
4c964351
UM
45362010-09-25 Ulrich Mueller <ulm@gentoo.org>
4537
4538 * eshell/em-ls.el (eshell-ls-archive-regexp):
4539 * eshell/esh-util.el (eshell-tar-regexp):
4540 * ibuffer.el (ibuffer-compressed-file-name-regexp):
4541 * info.el (Info-suffix-list):
4542 * international/mule.el (auto-coding-alist):
4543 * woman.el (woman-file-regexp, woman-file-compression-regexp):
4544 * progmodes/etags.el (tags-compression-info-list):
4545 Support xz compression.
4546
41f54b73
CY
45472010-09-25 Chong Yidong <cyd@stupidchicken.com>
4548
4549 * files.el (get-free-disk-space): Don't assume the "df" output
4550 columns line up (Bug#6995).
4551
40b1a3a9
JB
45522010-09-25 Juanma Barranquero <lekktu@gmail.com>
4553
4554 * finder.el (finder-unknown-keywords):
4555 * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
4556 * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
4557
ba3033ee
JB
45582010-09-25 Juanma Barranquero <lekktu@gmail.com>
4559
4560 * server.el (server-start): Revert part of 2010-08-08 change. Using
4561 address 127.0.0.1 for local host is now done in Fmake_network_process.
4562
5e339ee2
GM
45632010-09-24 Glenn Morris <rgm@gnu.org>
4564
4565 * image-mode.el, progmodes/compile.el, progmodes/gud.el:
4566 * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
4567 * textmodes/css-mode.el, textmodes/dns-mode.el:
4568 Move autoloaded auto-mode-alist entries to files.el.
4569 * files.el (auto-mode-alist): Move entries here.
4570
af3ccb5c
GM
45712010-09-23 Glenn Morris <rgm@gnu.org>
4572
4573 * isearch.el (isearch-lazy-highlight-cleanup)
4574 (isearch-lazy-highlight-initial-delay)
4575 (isearch-lazy-highlight-interval)
4576 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
4577 * net/net-utils.el (ipconfig-program-options):
4578 Move aliases to options before the associated definitions.
4579
266a86bd 45802010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
c9805d23
SM
4581
4582 * newcomment.el (comment-normalize-vars): Better test validity of
4583 comment-end-skip.
4584
27ffea71 45852010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9e0d4f9e
SM
4586
4587 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
4588 (float-e): New name for `e'.
4589 (degrees-to-radians, radians-to-degrees):
4590 * calendar/solar.el (solar-longitude):
4591 * calculator.el (calculator-registers, calculator-funcall):
4592 * textmodes/artist.el (artist-spray-random-points):
4593 * play/bubbles.el (bubbles--initialize-images): Use new names.
4594
27ffea71 45952010-09-23 Eric M. Ludlam <zappo@gnu.org>
a2930e43
EL
4596
4597 Update to CEDET 1.0's version of EIEIO.
4598
9e0d4f9e
SM
4599 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
4600 New function.
a2930e43
EL
4601 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
4602 (eieio-default-eval-maybe): Eval val instead of unquoting only.
4603 (class-precedence-list): If class is nil, return nil.
4604 (eieio-generic-call): If class of first input arg is nil, don't
4605 look up static methods, and do check for primary methods.
4606 (initialize-instance): See if the default needs to be evaluated
4607 during the constructor.
4608 (eieio-perform-slot-validation-for-default): Don't do the check
4609 for values that will eventually be evaluated.
4610 (eieio-eval-default-p): New function.
4611 (eieio-default-eval-maybe): Use it.
4612
27ffea71 46132010-09-23 Jan Moringen <jan.moringen@uni-bielefeld.de>
a2930e43
EL
4614
4615 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
4616 method-invocation-order.
4617 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
4618 (eieio-class-precedence-dfs): Compute class precedence list using
4619 dfs algorithm.
4620 (eieio-class-precedence-bfs): Compute class precedence list using
4621 bfs algorithm.
9e0d4f9e 4622 (eieio-class-precedence-c3): Compute class precedence list using
a2930e43
EL
4623 c3 algorithm.
4624 (class-precedence-list): New function.
4625 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
4626 (inconsistent-class-hierarchy): New error symbol.
4627 (call-next-method): Stow the replacement argument list for future
4628 call-next-method invocations.
4629
266a86bd 46302010-09-23 Glenn Morris <rgm@gnu.org>
87e798a7 4631
ea7f9ebf
GM
4632 * calendar/appt.el (appt-check): If not displaying the diary,
4633 use (diary 1) to only get the entries we need.
4634 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
4635 that it is in day order. (Bug#7019)
4636
1bf6d075
GM
4637 * calendar/appt.el (appt-check): Rather than showing the diary,
4638 just turn off invisible display, and only if needed.
4639
87e798a7
GM
4640 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
4641
1fc7dabf
GM
46422010-09-23 Glenn Morris <rgm@gnu.org>
4643
7a16788b
GM
4644 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
4645 (byte-compile-defvar, byte-compile-cl-warn):
27ffea71 4646 Start warnings with lower-case, like the majority.
7a16788b 4647
19543b17
GM
4648 * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
4649
54238e6d
GM
4650 * files.el (auto-mode-alist): Prefer C-mode for .xs. (Bug#7071)
4651
ce009d0b
GM
4652 * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
4653 * files.el (auto-mode-alist): Move ld-script entries here, further down
4654 the list.
4655
7b344dfe
GM
4656 * vc/add-log.el: Don't require timezone when compiling.
4657 (timezone-make-date-sortable): Autoload it.
4658 (change-log-sortable-date-at): Don't require timezone.
4659 Use `ignore-errors'.
4660
d9703498
GM
4661 * comint.el (comint-use-prompt-regexp-instead-of-fields):
4662 Move alias before definition, so it does not need autoloading.
4663
1fc7dabf
GM
4664 * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
4665 * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
4666 * international/kkc.el, international/ogonek.el, mail/feedmail.el:
4667 * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
4668 * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
4669 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
4670 * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
4671 * textmodes/tex-mode.el, textmodes/two-column.el:
4672 Remove leading `*' from docs of defcustoms etc.
4673
7676efad
TZ
46742010-09-23 Teodor Zlatanov <tzz@lifelogs.com>
4675
4676 * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
4677
b069e5a6
G
46782010-09-22 Dan Christensen <jdc@uwo.ca>
4679
4680 * calendar/time-date.el (date-to-time): Try using parse-time-string
4681 first before using the slower timezone-make-date-arpa-standard.
4682
1bf68d53
KY
46832010-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
4684
4685 * calendar/time-date.el (format-seconds): Comment fix.
4686
cd205c76
GM
46872010-09-22 Glenn Morris <rgm@gnu.org>
4688
4689 * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
4690 is not automatically buffer-local.
4691
4ddea91b
SM
46922010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
4693
4694 * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
4695 (smie-indent-comment): Be more careful with comment-start-skip.
4696 (smie-indent-comment-close, smie-indent-comment-inside): New funs.
4697 (smie-indent-functions): Use them.
4698
b0f037ed
MA
46992010-09-21 Michael Albinus <michael.albinus@gmx.de>
4700
4701 * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
4702
8cf1771a
JD
47032010-09-21 Jan Djärv <jan.h.d@swipnet.se>
4704
36a1b6db
JD
4705 * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
4706 tool-bar-position. Don't modify frame parameters here.
180fb94a 4707 (menu-bar-options-save): Add tool-bar-position.
36a1b6db 4708
8cf1771a
JD
4709 * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
4710
0097720d
SM
47112010-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
4712
5d8e0d5d
SM
4713 * textmodes/reftex-parse.el (reftex-what-macro)
4714 (reftex-context-substring): Let-bind forward-sexp-function to nil
4715 since we don't need/want to treat \begin...\end as a block (bug#7053).
4716
984edd22
SM
4717 * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
4718
4719 * simple.el (blink-matching-open): Use syntax-class.
4720
3672149f
SM
4721 * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
4722 Set invisibility spec for pascal's outline mode.
4723 (pascal-outline-change): Clean up calling convention.
4724 (pascal-show-all, pascal-hide-other-defuns): Update callers.
4725
549d0e1e
SM
4726 * progmodes/prolog.el (prolog-smie-forward-token)
4727 (prolog-smie-backward-token): New functions.
4728 (prolog-mode-variables): Use them to parse "!," correctly.
4729 Set up smie-blink-matching for ".".
4730
a9cb95dd
SM
4731 * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
4732 and `end'.
4733 (ispell-region, ispell-process-line): Update users.
4734
de558d10
SM
4735 * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
4736 point-min==1.
4737
94eb3112
SM
4738 * textmodes/ispell.el: Fix commenting convention.
4739 (ispell-parse-output): Simplify, use push.
4740 (ispell-region): Use match-string-no-properties.
4741 (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
4742 (ispell-minor-mode): Use define-minor-mode.
4743 (ispell-message): Remove unused var `skip-regexp'.
4744 (ispell-add-per-file-word-list): Use dynamic let-binding.
4745 Try and use the proper comment marker.
4746
1f7f45a5
SM
4747 * mail/sendmail.el: Fix commenting convention.
4748 (sendmail-send-it): Use line-beginning-position.
4749
0097720d
SM
4750 * help-fns.el (describe-variable): Add original value, if applicable.
4751
596880ea
JB
47522010-09-20 Juanma Barranquero <lekktu@gmail.com>
4753
f0713411
JB
4754 * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
4755
596880ea
JB
4756 * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
4757
37c0347e
SM
47582010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
4759
2bc01104
SM
4760 * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
4761 (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
4762 (smie-prec2-levels): Use them to better diagnose precedence cycles.
4763 (smie-blink-matching-check): Don't signal a mismatch if car is t.
4764 (smie-blink-matching-open): Rewrite to remove assumptions, so that
4765 something like "." can also be a closer.
4766 (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
4767 (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
4768 Rename internal functions to use "--". Update callers.
4769
e2c3f530
SM
4770 * frame.el (make-frame-names-alist): Don't list frames on other displays.
4771
37c0347e
SM
4772 * fringe.el (fringe-styles): New var.
4773 (fringe-mode, fringe-query-style): Use it.
4774
74790210
MM
47752010-09-18 Michael R. Mauger <mmaug@yahoo.com>
4776
4777 * progmodes/sql.el: Version 2.8
93acd23d 4778 (sql-login-params): Update widget structure; changes still needed.
74790210
MM
4779 (sql-product-alist): Add :list-all and :list-table features for
4780 SQLite, Postgres and MySQL products.
4781 (sql-redirect): Handle default value.
4782 (sql-execute, sql-execute-feature): New functions.
4783 (sql-read-table-name): New function.
93acd23d 4784 (sql-list-all, sql-list-table): New functions. User API.
74790210
MM
4785 (sql-mode-map, sql-interactive-mode-map): Add key definitions
4786 for above functions.
4787 (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
4788 for above functions.
4789 (sql-postgres-login-params): Add user and database defaults.
4790 (sql-buffer-live-p): Bug fix.
93acd23d 4791 (sql-product-history): New variable.
74790210
MM
4792 (sql-read-product): New function. Use it.
4793 (sql-set-product, sql-product-interactive): Use it.
4794 (sql-connection-history): New variable.
93acd23d 4795 (sql-read-connection): New function. Use it.
74790210
MM
4796 (sql-connect): New function.
4797 (sql-for-each-login): Redesign function interface.
4798 (sql-make-alternate-buffer-name, sql-save-connection): Use it.
93acd23d
JB
4799 (sql-get-login-ext, sql-get-login): Use it. Handle default values.
4800 (sql-comint): Check for program. Existing live buffer.
74790210
MM
4801 (sql-comint-postgres): Add port parameter.
4802
cec01cd2
SM
48032010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
4804
4805 * emacs-lisp/warnings.el: Fix commenting convention.
4806 (display-warning): Use special mode and make the buffer read-only.
4807
c2a845b5
JB
48082010-09-18 Jay Belanger <jay.p.belanger@gmail.com>
4809
4810 * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
4811 empty string when it follows a repeated or optional pattern.
4812
f5632fb6
SM
48132010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
4814
4815 * indent.el (indent-according-to-mode): Apply syntax-propertize.
4816 (indent-region): Use indent-according-to-mode.
4817
71b961e8
EZ
48182010-09-18 Eli Zaretskii <eliz@gnu.org>
4819
4820 * fringe.el (fringe-mode): Doc fix.
4821
dbbd7ad4
KRC
48222010-09-14 Kan-Ru Chen <kanru@kanru.info> (tiny change)
4823
4824 * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
4825 refreshing the preview buffer.
4826
b879a6e2
SM
48272010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
4828
4829 * textmodes/tex-mode.el (tex-syntax-propertize-rules)
4830 (latex-syntax-propertize-rules): New consts; replace
4831 tex-font-lock-syntactic-keywords.
4832 (tex-env-mark, latex-env-before-change): New functions.
4833 (latex-electric-env-pair-mode): New minor mode.
4834 (tex-font-lock-verb): Change arguments; do move point.
4835 (tex-font-lock-syntactic-face-function): Adjust to new verbatim
4836 representation as a form of comment.
4837 (tex-font-lock-keywords-1): Remove workaround, now unneeded.
4838 (doctex-syntax-propertize-rules): New const; replaces
4839 doctex-font-lock-syntactic-keywords.
4840 (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
4841
4842 * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
4843 (fortran-make-syntax-propertize-function): New function; replaces
4844 fortran-font-lock-syntactic-keywords.
4845 (fortran-mode): Use it.
4846 (fortran-line-length): Use it. Improve interactive spec.
4847
4848 * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
4849 (syntax-propertize-rules): Add var-ref case. Fix offset computation
4850 when adding surrounding \(..\).
4851
4852 * progmodes/js.el (js-mode): Fix last change (bug#7054).
4853
4be520fb
SM
48542010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
4855
269c197e
SM
4856 * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
4857 Use with-current-buffer.
4858
4be520fb
SM
4859 * isearch.el (isearch-face): Rename from `isearch'.
4860 (isearch-highlight): Use new name.
4861
a67597d6
EZ
48622010-09-17 Eli Zaretskii <eliz@gnu.org>
4863
4864 * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
4865 5, for `half' width fringes. (Bug#6933)
4866
31c381e8
SM
48672010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
4868
3fe6ef4e
SM
4869 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
4870 (byte-compile-defvar): "foo/bar" does not lack a prefix.
4871
31c381e8
SM
4872 * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
4873
fb0cf781
J
48742010-09-17 Stephen Berman <stephen.berman@gmx.net>
4875
4876 * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
4877 in calculating new frame position. Add more space between new and
4878 parent on the left (Bug#7048).
4879
1a9dc3b5
MA
48802010-09-17 Michael Albinus <michael.albinus@gmx.de>
4881
4882 * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
4883 defmacro.
4884
dff0fdc3
CY
48852010-09-16 Chong Yidong <cyd@stupidchicken.com>
4886
31c381e8 4887 * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
6e23d4a4 4888
117c96c7
CY
4889 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
4890 obsolete alias for x-selection-value.
4891
dff0fdc3
CY
4892 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
4893
c6f2191f
MA
48942010-09-16 Michael Albinus <michael.albinus@gmx.de>
4895
4896 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
4897 cookie.
4898
6139f995
MA
48992010-09-15 Michael Albinus <michael.albinus@gmx.de>
4900
4901 * net/tramp-compat.el (tramp-compat-with-temp-message)
4902 (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
4903 (tramp-compat-process-put): New defuns.
4904
4905 * net/tramp.el (top):
4906 * net/tramp-gvfs.el (top):
4907 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
4908
31c381e8
SM
4909 * net/tramp.el (tramp-progress-reporter-update):
4910 Use `tramp-compat-funcall'.
6139f995
MA
4911
4912 * net/tramp.el (tramp-process-actions):
4913 * net/tramp-gvfs.el (tramp-handle-vc-registered):
4914 * net/tramp-sh.el (tramp-gvfs-handler-askquestion)
31c381e8
SM
4915 (tramp-get-remote-stat, tramp-get-remote-readlink):
4916 Use `tramp-compat-with-temp-message'.
6139f995
MA
4917
4918 * net/tramp-sh.el (top): Require 'cl.
4919 (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
31c381e8
SM
4920 (tramp-open-connection-setup-interactive-shell):
4921 Use `tramp-compat-process-put'.
6139f995 4922
22c3ce97
AM
49232010-09-15 Alan Mackenzie <acm@muc.de>
4924
4925 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
4926 indentation.
a4ee83cc 4927 (c-forward-<>-arglist-recur): Fix an infinite recursion.
22c3ce97 4928
4f1e9960
SM
49292010-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
4930
4931 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
4932 `lexical' for warnings related to lexical scoping.
4933 (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
4934 global vars which don't have a prefix and could hence affect lexical
4935 scoping in unrelated files.
4936
01e80360
LMI
49372010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
4938
4939 * net/imap.el: Revert back to version
4940 cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
4941 seem problematic.
4942
5e2a84e3
JB
49432010-09-14 Juanma Barranquero <lekktu@gmail.com>
4944
4945 * obsolete/old-whitespace.el (whitespace-unload-function):
4946 Explicitly pass `obarray' to `unintern' to avoid a warning.
4947
f3a30a50
SM
49482010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
4949
4950 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
4951 Add `when' argument. Update callers.
4952
4953 * subr.el (unintern): Declare the obarray arg mandatory.
4954
92b99a01
GM
49552010-09-14 Glenn Morris <rgm@gnu.org>
4956
67ae9766
GM
4957 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
4958 Doc fixes.
4959
92b99a01
GM
4960 * calendar/diary-lib.el (diary-included-files): New variable.
4961 (diary-list-entries): Maybe initialize diary-included-files.
4962 (diary-include-other-diary-files): Append to diary-included-files.
4963 * calendar/appt.el (appt-update-list): Also check the members of
4964 diary-included-files. (Bug#6999)
08151ec5 4965 (appt-check): Doc fix.
92b99a01 4966
6664fc59 49672010-09-14 David Reitter <david.reitter@gmail.com>
5a66ed0f
DR
4968
4969 * simple.el (line-move-visual): Do not truncate goal column to
4970 integer size. (Bug#7020)
4971
6664fc59 49722010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
dba28758
SM
4973
4974 * repeat.el (repeat): Allow repeating when the last event is a click.
4975 Suggested by Drew Adams (bug#6256).
4976
6664fc59 49772010-09-14 Sascha Wilde <wilde@sha-bang.de>
681b88dd
SM
4978
4979 * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
4980 Replace setting HGRCPATH to "" by some less invasive --config options.
4981
6664fc59 49822010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
71e657fc
SM
4983
4984 * font-lock.el (font-lock-beginning-of-syntax-function):
4985 Mark as obsolete.
4986
6664fc59 49872010-09-14 Glenn Morris <rgm@gnu.org>
639b9d87
GM
4988
4989 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
4990 and tool-bar modes. (Bug#6211)
4991 (menu-bar-mode): Move setting of standard-value after the
4992 minor-mode definition, otherwise it seems to have no effect.
4993
6664fc59 49942010-09-14 Masatake YAMATO <yamato@redhat.com>
33bd47be
MY
4995
4996 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
4997 Fix typo. (Bug#6976)
4998
6664fc59 49992010-09-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9c405a86
CY
5000
5001 * whitespace.el: Allow cleaning up blanks without blank
5002 visualization (Bug#6651). Adjust help window for
5003 whitespace-toggle-options (Bug#6479). Allow to use fill-column
71e657fc
SM
5004 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
5005 (whitespace-style): Add new value 'face. Adjust docstring.
5006 (whitespace-space, whitespace-hspace, whitespace-tab):
5007 Adjust foreground property face.
9c405a86
CY
5008 (whitespace-line-column): Adjust docstring and type declaration.
5009 (whitespace-style-value-list, whitespace-toggle-option-alist)
5010 (whitespace-help-text): Adjust const initialization.
5011 (whitespace-toggle-options, global-whitespace-toggle-options):
5012 Adjust docstring.
5013 (whitespace-display-window, whitespace-interactive-char)
5014 (whitespace-style-face-p, whitespace-color-on): Adjust code.
5015 (whitespace-help-scroll): New fun.
5016
ba96ddf5
KY
50172010-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
5018
5019 * calendar/time-date.el (format-seconds): Comment fix.
5020
a386ac70
MM
50212010-09-13 Michael R. Mauger <mmaug@yahoo.com>
5022
5023 * progmodes/sql.el: Version 2.7.
5024 (sql-buffer-live-p): Improve detection.
5025 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
5026 (sql-set-sqli-buffer): Use it.
5027 (sql-product-interactive): Run `sql-set-sqli-hook'.
5028 (sql-rename-buffer): Code cleanup.
5029 (sql-redirect, sql-redirect-value): New functions. More to come.
5030
5d921df2
JB
50312010-09-13 Juanma Barranquero <lekktu@gmail.com>
5032
5033 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.
5034 * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
5035 (TRAMP_SRC): New macro.
5036 ($(lisp)/net/tramp-loaddefs.el): New target.
5037
03c1ad43
MA
50382010-09-13 Michael Albinus <michael.albinus@gmx.de>
5039
5040 Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el.
5041
5042 * Makefile.in (TRAMP_SRC): Remove tramp-fish.el. Add tramp-sh.el.
5043
5044 * net/tramp.el (top): Don't show loading message. Require just
4f1e9960
SM
5045 'tramp-compat, everything else is required there.
5046 Use `ignore-errors' where appropriate.
03c1ad43
MA
5047 (tramp-inline-compress-start-size, tramp-copy-size-limit)
5048 (tramp-terminal-type, tramp-end-of-output)
5049 (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
5050 (tramp-completion-function-alist-ssh)
5051 (tramp-completion-function-alist-telnet)
5052 (tramp-completion-function-alist-su)
5053 (tramp-completion-function-alist-putty, tramp-remote-path)
5054 (tramp-remote-process-environment, tramp-sh-extra-args)
5055 (tramp-actions-before-shell, tramp-uudecode)
5056 (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
5057 (tramp-perl-file-attributes)
5058 (tramp-perl-directory-files-and-attributes)
5059 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
5060 (tramp-perl-encode, tramp-perl-decode)
5061 (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
5062 (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
5063 (tramp-handle-make-symbolic-link, tramp-handle-load)
5064 (tramp-handle-file-name-as-directory)
5065 (tramp-handle-file-name-directory)
5066 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
5067 (tramp-handle-file-exists-p, tramp-handle-file-attributes)
5068 (tramp-do-file-attributes-with-ls)
5069 (tramp-do-file-attributes-with-perl)
5070 (tramp-do-file-attributes-with-stat)
5071 (tramp-handle-set-visited-file-modtime)
5072 (tramp-handle-verify-visited-file-modtime)
5073 (tramp-handle-set-file-modes, tramp-handle-set-file-times)
5074 (tramp-set-file-uid-gid, tramp-remote-selinux-p)
5075 (tramp-handle-file-selinux-context)
5076 (tramp-handle-set-file-selinux-context)
5077 (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
5078 (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
5079 (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
5080 (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
5081 (tramp-handle-file-ownership-preserved-p)
5082 (tramp-handle-directory-file-name, tramp-handle-directory-files)
5083 (tramp-handle-directory-files-and-attributes)
5084 (tramp-do-directory-files-and-attributes-with-perl)
5085 (tramp-do-directory-files-and-attributes-with-stat)
5086 (tramp-handle-file-name-all-completions)
5087 (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
5088 (tramp-handle-copy-file, tramp-handle-copy-directory)
5089 (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
5090 (tramp-do-copy-or-rename-file-via-buffer)
5091 (tramp-do-copy-or-rename-file-directly)
5092 (tramp-do-copy-or-rename-file-out-of-band)
5093 (tramp-handle-make-directory, tramp-handle-delete-directory)
5094 (tramp-handle-delete-file)
5095 (tramp-handle-dired-recursive-delete-directory)
5096 (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
5097 (tramp-handle-insert-directory)
5098 (tramp-handle-unhandled-file-name-directory)
5099 (tramp-handle-expand-file-name)
5100 (tramp-handle-substitute-in-file-name)
5101 (tramp-handle-executable-find, tramp-process-sentinel)
5102 (tramp-handle-start-file-process, tramp-handle-process-file)
5103 (tramp-handle-call-process-region, tramp-handle-shell-command)
5104 (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
5105 (tramp-handle-insert-file-contents)
5106 (tramp-handle-insert-file-contents-literally)
5107 (tramp-handle-find-backup-file-name)
5108 (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
5109 (tramp-vc-registered-file-names, tramp-handle-vc-registered)
5110 (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
5111 (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
5112 (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
5113 (tramp-find-file-exists-command, tramp-open-shell)
5114 (tramp-find-shell, tramp-barf-if-no-shell-prompt)
5115 (tramp-open-connection-setup-interactive-shell)
5116 (tramp-local-coding-commands, tramp-remote-coding-commands)
5117 (tramp-find-inline-encoding, tramp-call-local-coding-command)
5118 (tramp-inline-compress-commands, tramp-find-inline-compress)
5119 (tramp-compute-multi-hops, tramp-maybe-open-connection)
1fc7dabf 5120 (tramp-send-command, tramp-wait-for-output)
03c1ad43
MA
5121 (tramp-send-command-and-check, tramp-barf-unless-okay)
5122 (tramp-send-command-and-read, tramp-mode-string-to-int)
5123 (tramp-convert-file-attributes, tramp-check-cached-permissions)
5124 (tramp-file-mode-from-int, tramp-file-mode-permissions)
5125 (tramp-shell-case-fold, tramp-make-copy-program-file-name)
5126 (tramp-method-out-of-band-p, tramp-local-host-p)
5127 (tramp-get-remote-path, tramp-get-remote-tmpdir)
5128 (tramp-get-ls-command, tramp-get-ls-command-with-dired)
5129 (tramp-get-test-command, tramp-get-test-nt-command)
5130 (tramp-get-file-exists-command, tramp-get-remote-ln)
5131 (tramp-get-remote-perl, tramp-get-remote-stat)
5132 (tramp-get-remote-readlink, tramp-get-remote-trash)
5133 (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
5134 (tramp-get-local-uid, tramp-get-local-gid)
6664fc59 5135 (tramp-get-inline-compress, tramp-get-inline-coding): Move to
03c1ad43
MA
5136 tramp-sh.el.
5137 (tramp-methods, tramp-default-method-alist)
5138 (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
5139 Move initialization to tramp-sh.el.
5140 (tramp-temp-name-prefix): Make it a defconst.
5141 (tramp-dissect-file-name): Don't check anymore for multi-hop
5142 methods.
5143 (tramp-debug-outline-regexp): Add a docstring.
31c381e8 5144 (tramp-debug-outline-level): Rename from `tramp-outline-level'.
03c1ad43
MA
5145 (tramp-get-debug-buffer): Use it.
5146
5147 * net/tramp-cache.el (top): Set tramp-autoload cookie for
5148 initialization forms.
5149 (tramp-set-connection-property): Don't protect `tramp-message'
5150 call, it isn't necessary any longer.
5151 (tramp-dump-connection-properties): Use `ignore-errors'.
5152
5153 * net/tramp-compat.el (top): Require 'advice, 'format-spec,
5154 'password-cache and 'auth-source.
5155
5156 * net/tramp-gvfs.el (top):
5157 * net/tramp-smb.el (top): Require 'tramp-sh.
5158
5159 * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
5160
5161 * net/tramp-sh.el: New file, derived from tramp.el.
5162 (top): Initialize `tramp-methods', `tramp-default-method-alist',
6139f995 5163 `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
31c381e8
SM
5164 Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
5165 Use `ignore-errors' where appropriate.
5166 (tramp-sh-file-name-handler-alist): Rename from
03c1ad43
MA
5167 `tramp-file-name-handler-alist'.
5168 (tramp-send-command-and-check): Return t or nil. Remove all
5169 `zerop' checks, where called.
5170 (tramp-handle-set-file-modes)
5171 (tramp-do-copy-or-rename-file-directly)
5172 (tramp-handle-delete-directory, tramp-handle-delete-file)
93acd23d 5173 (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
03c1ad43
MA
5174 (tramp-sh-file-name-handler, tramp-send-command-and-check)
5175 (tramp-get-remote-ln): Set tramp-autoload cookie.
5176
5177 * net/tramp-fish.el: Remove file.
5178
c5fe4acb
DU
51792010-09-13 Daiki Ueno <ueno@unixuser.org>
5180
5181 * epa-file.el (epa-file-insert-file-contents): If visiting, bind
5182 buffer-file-name to avoid file-locking. (Bug#7026)
5183
7ea2d383
MA
51842010-09-13 Julien Danjou <julien@danjou.info>
5185
5186 * notifications.el (notifications-notify): Add support for
5187 image-path and sound-name.
5188 (notifications-specification-version): Add this variable.
5189
5616cc54
SM
51902010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5191
31c381e8 5192 * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
5616cc54 5193
94c7243b
LL
51942010-09-12 Leo <sdl.web@gmail.com>
5195
5196 * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
5197 (rcirc-completion-start): New variables.
5198 (rcirc-nick-completions): Rename to rcirc-completions.
5199 (rcirc-nick-completion-start-offset): Delete.
5200 (rcirc-completion-at-point): New function for constructing
5201 completion data for both nicks and irc commands. Add to
5202 completion-at-point-functions in rcirc mode.
5203 (rcirc-complete): Rename from rcirc-nick-complete; use
5204 rcirc-completion-at-point.
5205 (defun-rcirc-command): Update rcirc-client-commands.
5206
0f34ae28
GM
52072010-09-11 Glenn Morris <rgm@gnu.org>
5208
5209 * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
5210 atomically, to avoid parallel build errors. (Bug#4196)
5211
9250002f
MM
52122010-09-11 Michael R. Mauger <mmaug@yahoo.com>
5213
5214 * progmodes/sql.el: Version 2.6
5215 (sql-dialect): Synonym for "sql-product".
5216 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
5217 (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
5218 Set "sql-buffer" to buffer name not buffer object so multiple sql
5219 interactive buffers work properly. Reverts misguided changes in
5220 earlier work.
5221 (sql-comint): Make sure different buffer name is used if "*SQL*"
5222 buffer is for a different product.
5223 (sql-make-alternate-buffer-name): Fix bug with "sql-database"
5224 login param.
5225 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
5226 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
5227 (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
5228 Accept new buffer name or prompt for one.
5229 (sql-port): Default to zero.
5230 (sql-comint-mysql): Handle "sql-port" as a numeric.
5231 (sql-port-history): Delete unused variable.
5232 (sql-get-login): Default "sql-port" to a number.
31c381e8 5233 (sql-product-alist): Correct Postgres prompt and terminator regexp.
9250002f
MM
5234 (sql-sqlite-program): Dynamically detect presence of "sqlite" or
5235 "sqlite3" executables.
31c381e8 5236 (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
9250002f
MM
5237 (sql-buffer-live-p): New function.
5238 (sql-mode-menu, sql-send-string): Use it.
5239 (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
5240 syntax pattern.
5241 (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
5242 (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
5243
a9ec34f4
LMI
52442010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
5245
31c381e8 5246 * net/netrc.el (netrc-credentials): New convenience function.
a9ec34f4 5247
cf38dd42
SM
52482010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
5249
5250 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
5251 to replace texinfo-font-lock-syntactic-keywords.
5252 (texinfo-mode): Use it.
5253
5254 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
5255 Use syntax-propertize-function.
5256
5257 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
5258 replace sgml-font-lock-syntactic-keywords.
5259 (sgml-mode): Use it.
5260
5261 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
5262 since we don't use it.
5263
5264 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
5265
5266 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
5267 if available.
5268 (vhdl-fontify-buffer): Adjust.
5269
5270 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
5271 replace tcl-font-lock-syntactic-keywords.
5272 (tcl-mode): Use it.
5273
5274 * progmodes/simula.el (simula-syntax-propertize-function): New var to
5275 replace simula-font-lock-syntactic-keywords.
5276 (simula-mode): Use it.
5277
5278 * progmodes/sh-script.el (sh-st-symbol): Remove.
5279 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
5280 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
5281 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
5282 (sh-font-lock-paren): Set syntax-multiline.
5283 (sh-font-lock-syntactic-keywords): Remove.
5284 (sh-syntax-propertize-function): New function to replace it.
5285 (sh-mode): Use it.
5286
5287 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
5288 Define while compiling.
5289 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
5290 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
5291 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
5292 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
5293 (ruby-here-doc-end-syntax): Only define when
5294 syntax-propertize is not available.
5295 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
5296 New functions.
5297 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
5298 (electric-indent-chars): Silence bytecompiler.
5299 (ruby-mode): Use prog-mode, syntax-propertize-function, and
5300 electric-indent-chars.
5301
5302 * progmodes/python.el (python-syntax-propertize-function): New var to
5303 replace python-font-lock-syntactic-keywords.
5304 (python-mode): Use it.
5305 (python-quote-syntax): Simplify and adjust to new use.
5306
5307 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
5308 replace perl-font-lock-syntactic-keywords.
5309 (perl-syntax-propertize-special-constructs): New fun to replace
5310 perl-font-lock-special-syntactic-constructs.
5311 (perl-font-lock-syntactic-face-function): New fun.
5312 (perl-mode): Use it.
5313
5314 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
5315 to replace octave-font-lock-close-quotes.
5316 (octave-syntax-propertize-function): New function to replace
5317 octave-font-lock-syntactic-keywords.
5318 (octave-mode): Use it.
5319
5320 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
5321 replaces mixal-font-lock-syntactic-keywords.
5322 (mixal-mode): Use it.
5323
5324 * progmodes/make-mode.el (makefile-syntax-propertize-function):
5325 New var; replaces makefile-font-lock-syntactic-keywords.
5326 (makefile-mode): Use it.
5327 (makefile-imake-mode): Adjust.
5328
5329 * progmodes/js.el (js--regexp-literal): Define while compiling.
5330 (js-syntax-propertize-function): New var; replaces
5331 js-font-lock-syntactic-keywords.
5332 (js-mode): Use it.
5333
5334 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
5335 replaces gdb-script-font-lock-syntactic-keywords.
5336 (gdb-script-mode): Use it.
5337
5338 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
5339 (fortran--font-lock-syntactic-keywords): New var.
5340 (fortran-line-length): Update syntax-propertize-function and
5341 fortran--font-lock-syntactic-keywords.
5342
5343 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
5344
5345 * progmodes/cfengine.el (cfengine-mode):
5346 Use syntax-propertize-function.
5347 (cfengine-font-lock-syntactic-keywords): Remove.
5348
5349 * progmodes/autoconf.el (autoconf-mode):
5350 Use syntax-propertize-function.
5351 (autoconf-font-lock-syntactic-keywords): Remove.
5352
5353 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
5354 (ada-after-change-function, ada-initialize-syntax-table-properties)
5355 (ada-handle-syntax-table-properties): Only define when
5356 syntax-propertize is not available.
5357 (ada-mode): Use syntax-propertize-function.
5358
5359 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
5360 (font-lock-fontify-syntactic-keywords-region): Move handling of
5361 font-lock-syntactically-fontified to...
5362 (font-lock-default-fontify-region): ...here.
5363 Let syntax-propertize-function take precedence.
5364 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
5365
5366 * emacs-lisp/syntax.el (syntax-propertize-function)
5367 (syntax-propertize-chunk-size, syntax-propertize--done)
5368 (syntax-propertize-extend-region-functions): New vars.
5369 (syntax-propertize-wholelines, syntax-propertize-multiline)
5370 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
5371 (syntax-propertize): New functions.
5372 (syntax-propertize-rules): New macro.
5373 (syntax-ppss-flush-cache): Set syntax-propertize--done.
5374 (syntax-ppss): Call syntax-propertize.
5375
5376 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
5377
36f7d366
AM
53782010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
5379
5380 * textmodes/ispell.el (ispell-init-process): Improve comments.
5381 XEmacs compatibility changes regarding (add-hook) 'local option
5382 and (set-process-query-on-exit-flag).
5383
8fca3921
MA
53842010-09-09 Michael Albinus <michael.albinus@gmx.de>
5385
cf38dd42
SM
5386 * net/tramp-cache.el (tramp-parse-connection-properties):
5387 Set tramp-autoload cookie.
8fca3921 5388
399653d6
GM
53892010-09-09 Glenn Morris <rgm@gnu.org>
5390
5391 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
5392 (imagemagick-register-types): Doc fix.
5393
c34a9669
SM
53942010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
5395
b073dc4b
SM
5396 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
5397
5398 * progmodes/js.el (require): Require is already "eval-and-compile".
5399 (js--re-search-forward): Avoid `eval'. Preserve the error data.
5400 (js--re-search-backward): Use js--re-search-forward.
5401
5402 * progmodes/fortran.el (fortran-line-length): Don't recompute
5403 syntactic keywords redundantly a second time.
5404
5405 * progmodes/ada-mode.el: Replace "(set '" with setq.
5406 (ada-mode): Simplify.
5407 (ada-create-case-exception, ada-adjust-case-interactive)
5408 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
5409 (ada-search-ignore-string-comment, ada-move-to-start)
5410 (ada-move-to-end): Use with-syntax-table.
5411
5412 * font-lock.el (save-buffer-state): Remove `varlist' arg.
5413 (font-lock-unfontify-region, font-lock-default-fontify-region):
5414 Update usage correspondingly.
5415 (font-lock-fontify-syntactic-keywords-region):
5416 Set parse-sexp-lookup-properties buffer-locally here.
5417 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
5418
c34a9669
SM
5419 * simple.el (blink-matching-open): Don't burp if we can't find a match.
5420
13639aab
GM
54212010-09-08 Glenn Morris <rgm@gnu.org>
5422
5a972c36
GM
5423 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
5424 Error if not compiled with -DBYTE_CODE_METER.
5425
13639aab
GM
5426 * emacs-lisp/bytecomp.el (byte-recompile-directory):
5427 Ignore dir-locals-file.
5428
331b2b90
SM
54292010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
5430
5431 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5432 Not a const.
5433 (compilation-error-regexp-alist-alist): Rule out ": " in file names
5434 for the `gnu' messages.
5435 (compilation-set-skip-threshold): New command.
5436 (compilation-start): Use \' rather than $.
5437 (compilation-forget-errors): Use clrhash.
5438
73b4d51a
AM
54392010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
5440
5441 * textmodes/ispell.el (ispell-valid-dictionary-list):
5442 Simplify logic.
5443
0f34aa77
MA
54442010-09-08 Michael Albinus <michael.albinus@gmx.de>
5445
5446 Migrate to Tramp 2.2. Rearrange load dependencies.
5447 (Bug#1529, Bug#5448, Bug#5705)
5448
5449 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
5450 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
5451 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
5452
5453 * net/tramp.el (top): Remove all other tramp-* loads except
5454 tramp-compat.el. Remove all changes to tramp-unload-hook for
5455 other tramp-* packages. Rearrange defun order. Change calls of
5456 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
5457 `tramp-compat-octal-to-decimal' to new function names.
5458 (tramp-terminal-type, tramp-initial-end-of-output)
5459 (tramp-methods, tramp-foreign-file-name-handler-alist)
5460 (tramp-tramp-file-p, tramp-completion-mode-p)
5461 (tramp-send-command-and-check, tramp-get-remote-path)
5462 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
5463 (tramp-shell-quote-argument): Set tramp-autoload cookie.
5464 (with-file-property, with-connection-property): Move to
5465 tramp-cache.el.
5466 (tramp-local-call-process, tramp-decimal-to-octal)
5467 (tramp-octal-to-decimal): Move to tramp-compat.el.
5468 (tramp-handle-shell-command): Do not require 'shell.
5469 (tramp-compute-multi-hops): No special handling for tramp-gw-*
5470 symbols.
5471 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
5472
5473 * net/tramp-cache.el (top): Require 'tramp. Add to
5474 `tramp-unload-hook'.
5475 (tramp-cache-data, tramp-get-file-property)
5476 (tramp-set-file-property, tramp-flush-file-property)
5477 (tramp-flush-directory-property, tramp-get-connection-property)
5478 (tramp-set-connection-property, tramp-flush-connection-property)
5479 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
5480 cookie.
5481 (with-file-property, with-connection-property): New defuns, moved
5482 from tramp.el.
5483 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
5484 macro.
5485
5486 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
5487 (tramp-version): Set tramp-autoload cookie.
5488
5489 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
5490 changes to tramp-unload-hook for other tramp-* packages. Add to
5491 `tramp-unload-hook'.
5492 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
5493 (tramp-compat-call-process): New defuns, moved from tramp.el.
5494
5495 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
6a7662bb
BR
5496 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
5497 Add to `tramp-unload-hook'. Change call of
0f34aa77
MA
5498 `tramp-compat-decimal-to-octal' to new function name.
5499 (tramp-fish-method): Make it a defconst.
5500 (tramp-fish-file-name-p): Make it a defsubst.
5501 (tramp-fish-method, tramp-fish-file-name-handler)
5502 (tramp-fish-file-name-p): Set tramp-autoload cookie.
5503
5504 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
5505 `tramp-foreign-file-name-handler-alist'. Add to
5506 `tramp-unload-hook'.
5507 (tramp-ftp-method): Make it a defconst.
5508 (tramp-ftp-file-name-p): Make it a defsubst.
5509 (tramp-ftp-method, tramp-ftp-file-name-handler)
5510 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
5511
5512 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
5513 `tramp-foreign-file-name-handler-alist'. Add to
5514 `tramp-unload-hook'. Change checks, whether package can be
5515 loaded.
5516 (tramp-gvfs-file-name-p): Make it a defsubst.
5517 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
5518 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
5519 (tramp-gvfs-handle-file-directory-p): New defun.
5520 (tramp-gvfs-file-name-handler-alist): Use it.
5521
5522 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
5523 `tramp-foreign-file-name-handler-alist'. Add to
5524 `tramp-unload-hook'.
5525 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
5526 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
5527 defconst.
5528 (tramp-gw-tunnel-method, tramp-gw-socks-method)
5529 (tramp-gw-open-connection): Set tramp-autoload cookie.
5530
5531 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
6a7662bb
BR
5532 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
5533 Add to `tramp-unload-hook'. Change checks, whether package can be
0f34aa77
MA
5534 loaded.
5535 (tramp-imap-file-name-p): Make it a defsubst.
5536 (tramp-imap-method, tramp-imaps-method)
5537 (tramp-imap-file-name-handler)
5538 (tramp-imap-file-name-p): Set tramp-autoload cookie.
5539
5540 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
6a7662bb
BR
5541 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
5542 Add to `tramp-unload-hook'. Change checks, whether package can be
0f34aa77
MA
5543 loaded. Change call of `tramp-compat-decimal-to-octal' to new
5544 function name.
5545 (tramp-smb-tunnel-method): Make it a defconst.
5546 (tramp-smb-file-name-p): Make it a defsubst.
5547 (tramp-smb-method, tramp-smb-file-name-handler)
5548 (tramp-smb-file-name-p): Set tramp-autoload cookie.
5549
5550 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
5551 (tramp-uuencode-region): Set tramp-autoload cookie.
5552
5553 * net/trampver.el (top) Add to `tramp-unload-hook'.
5554 (tramp-version, tramp-bug-report-address): Set tramp-autoload
5555 cookie. Update release number.
5556
308e764f
AM
55572010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
5558
5559 * textmodes/ispell.el (ispell-start-process): Make sure original
5560 arg list is properly initialized (Bug#6993, Bug#6994).
5561
10999305 55622010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
3fa0dc8f
AK
5563
5564 * files.el (directory-abbrev-alist): Use \` as default regexp.
19fe13df
SM
5565
5566 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
5567 chars like - or ] (bug#6984).
5568 (rx-any-condense-range): Explode 2-char ranges.
5569
10999305
CY
55702010-09-06 Glenn Morris <rgm@gnu.org>
5571
5572 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
5573
55742010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1e05f387
SM
5575
5576 * textmodes/bibtex.el:
5577 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
5578
f292afe5
LMI
55792010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5580
331b2b90 5581 * net/imap.el (imap-message-map): Remove optional buffer parameter,
f292afe5
LMI
5582 since no callers use it.
5583 (imap-message-get): Ditto.
5584 (imap-message-put): Ditto.
5585 (imap-mailbox-map): Ditto.
5586 (imap-mailbox-put): Ditto.
5587 (imap-mailbox-get): Ditto.
a131b9b8 5588 (imap-mailbox-get): Revert last change for this function.
f292afe5 5589
dfe1285d
LMI
55902010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5591
331b2b90 5592 * net/imap.el (imap-fetch-safe): Remove function, and alter all
31b5f292
LMI
5593 callers to use `imap-fetch' instead. According to the comments, this
5594 should be safe, since all other IMAP clients use the 1:* syntax.
331b2b90
SM
5595 (imap-enable-exchange-bug-workaround): Remove.
5596 (imap-debug): Remove -- doesn't seem very useful.
dfe1285d 5597
3ff31c90
LMI
55982010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5599
5600 * net/imap.el (imap-log): New convenience function used throughout
5601 instead of repeating the same code all over the place.
5602
dfe1285d 56032010-09-05 David De La Harpe Golden <david@harpegolden.net>
93d68d4f
DDLHG
5604
5605 * mouse.el (mouse-save-then-kill): Save region to kill-ring
5606 when mouse-drag-copy-region is non-nil (Bug#6956).
5607
93a596e1
CY
56082010-09-05 Chong Yidong <cyd@stupidchicken.com>
5609
8d76af4a
CY
5610 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
5611 Improve regexps (Bug#6987).
5612 (dired-sort-toggle): Search more robustly for -t flag.
5613
93a596e1
CY
5614 * files.el (get-free-disk-space): Search more robustly for
5615 "available" column. Suggested by Ehud Karni
5616 <ehud@unix.mvs.co.il>.
5617
733946e7
JB
56182010-09-05 Juanma Barranquero <lekktu@gmail.com>
5619
5620 * international/uni-bidi.el:
5621 * international/uni-category.el:
5622 * international/uni-combining.el:
5623 * international/uni-decimal.el:
5624 * international/uni-mirrored.el:
5625 * international/uni-name.el: Regenerate.
5626
2e664aab
SM
56272010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
5628
6aeafb34
SM
5629 * electric.el (electric-indent-post-self-insert-function):
5630 Don't reindent with a sloppy indentation function.
5631
2e664aab
SM
5632 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
5633 border case in change-log-mode.
5634
13ef65a4
CY
56352010-09-04 Chong Yidong <cyd@stupidchicken.com>
5636
5637 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5638 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
5639 Recognize leading tab in gcc-include regexp. Ignore names with
5640 leading "from" or "in" in gnu regexp (Bug#6937).
5641
5abf1556
SM
56422010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
5643
6aeafb34 5644 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
5abf1556
SM
5645 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
5646 (ispell-start-process): Avoid setq and simplify logic.
5647 (ispell-init-process): Setup kill-buffer-hook locally when needed.
5648 (kill-buffer-hook): Don't use it globally with code that uses
5649 expand-file-name since that may call kill-buffer via
5650 code_conversion_restore.
5651
0be01d2c
CY
56522010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
5653
5654 * emacs-lisp/package.el (package-directory-list): Only call
5655 file-name-nondirectory on a string.
5656
ebf662f4
CY
56572010-09-02 Chong Yidong <cyd@stupidchicken.com>
5658
5abf1556
SM
5659 * emacs-lisp/package.el (package--download-one-archive):
5660 Ensure that archive-contents is valid before saving it.
ebf662f4
CY
5661 (package-activate-1, package-mark-obsolete, define-package)
5662 (package-compute-transaction, package-list-maybe-add): Use push.
5663
e5eddfd1
SM
56642010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
5665
89acf735
SM
5666 Use SMIE's blink-paren for octave-mode.
5667 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
5668 Backslashes do not escape single-quotes, single-quotes do.
5669 (octave-block-else-regexp, octave-block-end-regexp)
5670 (octave-block-match-alist): Remove.
5671 (octave-smie-bnf-table): New var, with old content.
5672 (octave-smie-op-levels): Use it.
5673 (octave-smie-closer-alist): New var.
5674 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
5675 (octave-blink-matching-block-open): Remove.
5676 (octave-reindent-then-newline-and-indent, octave-electric-semi)
5677 (octave-electric-space): Let self-insert-command run expand-abbrev and
5678 blink parens.
5679
3b843809
SM
5680 * electric.el (electricity): New group.
5681 (electric-indent-chars): New var.
5682 (electric-indent-post-self-insert-function): New fun.
5683 (electric-indent-mode): New minor mode.
5684 (electric-pair-skip-self): New custom.
5685 (electric-pair-post-self-insert-function): New function.
5686 (electric-pair-mode): New minor mode.
5687
0da20854
SM
5688 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
5689 calcAlg-blink-matching-open.
5690 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
5691 (calc-do-alg-entry): Only touch the part of the keymap that varies.
5692 Use the new blink-matching-check-function.
5693
a49e651e
SM
5694 Provide blink-matching support to SMIE.
5695 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
5696 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
5697 (smie-blink-matching-check, smie-blink-matching-open): New functions.
5698
e5eddfd1
SM
5699 * simple.el (newline): Fix last change to properly remove itself from
5700 the hook.
5701
b13ebb5c
SM
57022010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
5703
5704 * simple.el (newline): Eliminate optimization.
5705 Use post-self-insert-hook to set hard-newline and things before
5706 running post-self-insert-hook.
5707 (blink-matching-check-mismatch): New function.
5708 (blink-matching-check-function): New variable.
5709 (blink-matching-open): Use them.
5710 Skip back forward over prefix chars skipped by forward-sexp.
5711 Don't check if the parens are backslash escaped.
5712 (blink-paren-post-self-insert-function): Check backslash escaping here.
5713
e687c2cd
CY
57142010-09-02 Chong Yidong <cyd@stupidchicken.com>
5715
b13ebb5c
SM
5716 * emacs-lisp/package.el (package-menu-mode-map):
5717 Change package-menu-revert bindings to revert-buffer.
e687c2cd
CY
5718 (package-menu-mode): Set revert-buffer-function.
5719 (package-menu-revert): Doc fix.
5720
567efba9
AM
57212010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
5722
5723 * textmodes/ispell.el (ispell-init-process): Use "~/" as
5724 `default-directory' unless using Ispell per-directory personal
5725 dictionaries and not in a mini-buffer under XEmacs.
5726 (kill-buffer-hook): Do not kill ispell process on exit when
93acd23d 5727 `ispell-process-directory' is "~/". (Bug#6143)
567efba9 5728
6d7cc563
JD
57292010-09-02 Jan Djärv <jan.h.d@swipnet.se>
5730
08d4877e
J
5731 * simple.el (kill-new): Call interprogram-cut-function with only
5732 one argument.
5733
45240125
JD
5734 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
5735 Remove cut buffer from error message.
5736
5737 * term/x-win.el (x-select-text):
5738 * term/pc-win.el (x-selection-value):
5739 * term/ns-win.el (x-selection-value):
5740 * eshell/em-term.el:
5741 * w32-fns.el (x-get-selection-value):
5742 * mouse-sel.el (mouse-sel-set-selection-function):
5743 * frame.el (display-selections-p): Remove cut-buffer in documentation.
5744
6d7cc563
JD
5745 * term/x-win.el: Update documentation for x-last-selected-text-*.
5746 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
5747 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
6a7662bb
BR
5748 (x-select-text): Remove argument PUSH, update documentation.
5749 Remove cut-buffer code.
6d7cc563 5750 (x-selection-value-internal): Was previously x-selection-value.
5986b97d 5751 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
6a7662bb
BR
5752 Update documentation, remove cut-buffer code.
5753 Call x-selection-value-internal.
6d7cc563
JD
5754 (x-clipboard-yank): Call x-selection-value-internal.
5755 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
5756
5757 * term/pc-win.el (x-last-selected-text):
5758 x-cut-buffer-or-selection-value renamed to x-selection-value
5759 (x-select-text): Remove argument PUSH, update documentation.
5760
5761 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
5762 x-cut-buffer-or-selection-value renamed to x-selection-value
88b5a757 5763 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
6d7cc563
JD
5764 (x-select-text): Remove argument PUSH, update documentation.
5765
5766 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
5767
5768 * w32-fns.el (x-last-selected-text):
5769 x-cut-buffer-or-selection-value renamed to x-selection-value.
5770 (x-cut-buffer-max): Remove.
5771 (x-select-text): Remove argument PUSH, update documentation.
5772
5773 * simple.el (interprogram-cut-function): Remove mention of PUSH.
5774
5775 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
5776
5777 * mouse-sel.el (mouse-sel-get-selection-function):
5778 x-cut-buffer-or-selection-value renamed to x-selection-value.
5986b97d 5779 (x-select-text): Remove optional push.
6d7cc563 5780
4de81ee0
SM
57812010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
5782
8f4e9110
SM
5783 * simple.el (blink-paren-function): Move from C to here.
5784 (blink-paren-post-self-insert-function): New function.
5785 (post-self-insert-hook): Use it.
5786
4de81ee0
SM
5787 * emacs-lisp/pcase.el (pcase-split-memq):
5788 Fix overenthusiastic optimisation.
5789 (pcase-u1): Handle the case of a lambda pred.
5790
d419e1d9
KH
57912010-08-31 Kenichi Handa <handa@m17n.org>
5792
5793 * international/mule-cmds.el (standard-display-european-internal):
5794 Setup standard-display-table for 8-bit characters by storing 8-bit
5795 characters in the element vector.
5796
1e05f387
SM
5797 * disp-table.el (standard-display-8bit):
5798 Setup standard-display-table for 8-bit characters by storing 8-bit
d419e1d9
KH
5799 characters in the element vector.
5800 (standard-display-european): Likewise.
5801
61f7096c
CY
58022010-08-31 Masatake YAMATO <yamato@redhat.com>
5803
5804 * textmodes/nroff-mode.el (nroff-view): New command.
5805 (nroff-mode-map): Bind it to C-c C-c.
5806
ec5d3ff7
SM
58072010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
5808
c8977b2e
SM
5809 * emacs-lisp/smie.el (smie-down-list): New command.
5810
ec5d3ff7
SM
5811 Remove old indentation and navigation code on octave-mode.
5812 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
5813 smie-down-list rather than add a binding for octave-down-block.
5814 (octave-mark-block, octave-blink-matching-block-open):
5815 Rely on forward-sexp-function.
5816 (octave-fill-paragraph): Don't narrow, so you can use
5817 indent-according-to-mode.
5818 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
5819 (octave-in-block-p, octave-re-search-forward-kw)
5820 (octave-re-search-backward-kw, octave-indent-calculate)
5821 (octave-end-as-array-index-p, octave-block-end-offset)
5822 (octave-scan-blocks, octave-forward-block, octave-backward-block)
5823 (octave-down-block, octave-backward-up-block, octave-up-block)
5824 (octave-before-magic-comment-p, octave-indent-line): Remove.
5825
187d3296
CY
58262010-08-31 Chong Yidong <cyd@stupidchicken.com>
5827
5828 * emacs-lisp/package.el (package--read-archive-file): Just use
5829 `read', to avoid copying an additional string.
5830 (package-menu-mode): Set header-line-format here.
5831 (package-menu-refresh, package-menu-revert): Signal an error if
5832 not in the Package Menu.
5833 (package-menu-package-list): New var.
5834 (package--generate-package-list): Operate on the current buffer;
5835 don't assume that it is *Packages*, since the user may rename it.
5836 Allow persistent package listings and sort keys using
5837 package-menu-package-list and package-menu-package-sort-key.
5838 (package-menu--version-predicate): Fix version calculation.
5839 (package-menu-sort-by-column): Don't select the window.
ec5d3ff7
SM
5840 (package--list-packages): Create the *Packages* buffer.
5841 Set package-menu-package-list-key.
187d3296
CY
5842 (list-packages): Sorting by status is now the default.
5843 (package-buffer-info): Use match-string-no-properties.
5844 (define-package): Add a &rest argument for future proofing, but
5845 don't use it yet.
5846 (package-install-from-buffer, package-install-buffer-internal):
ec5d3ff7
SM
5847 Merge into a single function, package-install-from-buffer.
5848 (package-install-file): Change caller.
187d3296
CY
5849
5850 * finder.el: Load finder-inf using `require'.
5851 (finder-list-matches): Sorting by status is now the default.
5852 (finder-compile-keywords): Simpify printing.
5853
e17b68ed
SM
58542010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
5855
5856 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
5857 (octave-mode-map): Remove special bindings for forward/backward-block
5858 and octave-backward-up-block. Use smie-close-block.
5859 (octave-continuation-marker-regexp): New var.
5860 (octave-continuation-regexp): Use it.
5861 (octave-operator-table, octave-smie-op-levels)
5862 (octave-operator-regexp, octave-smie-indent-rules): New vars.
5863 (octave-smie-backward-token, octave-smie-forward-token): New funs.
5864 (octave-mode): Use SMIE.
5865 (octave-close-block): Delete.
5866
42b6a73b
EZ
58672010-08-30 Eli Zaretskii <eliz@gnu.org>
5868
5869 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
5870 CLIPBOARD, not in PRIMARY. (Bug#6944)
5871
f291fe60
SM
58722010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
5873
ee992a8c
SM
5874 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
5875 a list of parents.
5876 (smie-indent-column): Allow indirection through variables.
5877
d36b74ca
SM
5878 * composite.el (save-buffer-state): Delete, unused.
5879 * font-lock.el (save-buffer-state): Use with-silent-modifications.
5880 (font-lock-default-fontify-region): Use with-syntax-table.
5881 * jit-lock.el (with-buffer-unmodified): Remove.
5882 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
5883
f291fe60
SM
5884 Use `declare' in defmacros.
5885 * window.el (save-selected-window):
5886 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
5887 * progmodes/python.el (def-python-skeleton):
5888 * net/dbus.el (dbus-ignore-errors):
5889 * jka-cmpr-hook.el (with-auto-compression-mode):
5890 * international/mule.el (with-category-table):
5891 * emacs-lisp/timer.el (with-timeout):
5892 * emacs-lisp/lisp-mnt.el (lm-with-file):
5893 * emacs-lisp/eieio.el (with-slots):
5894 * emacs-lisp/easymenu.el (easy-menu-define):
5895 * emacs-lisp/debug.el (debugger-env-macro):
5896 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
5897 (Multiple-value-call, Multiple-value-prog1):
5898 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
5899 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
5900 edebug rule to definition.
5901 * emacs-lisp/lisp-mode.el (save-selected-window)
5902 (with-current-buffer, combine-after-change-calls)
5903 (with-output-to-string, with-temp-file, with-temp-buffer)
5904 (with-temp-message, with-syntax-table, read-if, eval-after-load)
5905 (dolist, dotimes, when, unless):
5906 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
5907
96ae4c8f
CY
59082010-08-29 Chong Yidong <cyd@stupidchicken.com>
5909
5910 * finder.el: Require `package'.
5911 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
5912 (finder-package-info): Var deleted.
5913 (finder-keywords-hash, finder--builtins-alist): New vars.
5914 (finder-compile-keywords): Compute package--builtins and
5915 finder-keywords-hash instead of finder-keywords-hash, respecting
5916 the "Package" header.
f291fe60
SM
5917 (finder-unknown-keywords, finder-list-matches):
5918 Use finder-keywords-hash and package--list-packages.
96ae4c8f
CY
5919 (finder-mode): Don't set font-lock-defaults.
5920 (finder-exit): We don't use "*Finder-package*" and "*Finder
5921 Category*" buffers anymore.
5922
5923 * emacs-lisp/package.el (package--builtins-base): Var deleted.
5924 (package--builtins): Set default value to nil.
5925 (package-initialize): Load precomputed value of package--builtins
5926 from finder-inf.el.
5927 (package-alist, package-compute-transaction)
5928 (package-download-transaction): Improve docstring.
5929 (package-read-all-archive-contents): Do not change
5930 package--builtins here.
5931 (list-packages): Make package-list-packages an alias for this.
5932 Sort by status by default.
5933 (package--list-packages): Add optional PACKAGES arg.
5934 (describe-package-1): Use font-lock-face property. For built-in
5935 packages, insert file commentary.
5936 (package--generate-package-list): Rename from
5937 package-list-packages-internal; all callers changed. Add optional
5938 PACKAGES arg. Add alphabetical sort fallbacks.
5939 (package-menu--version-predicate, package-menu--status-predicate)
5940 (package-menu--description-predicate)
5941 (package-menu--name-predicate): New functions.
5942
5943 * info.el (Info-finder-find-node): Search package-alist instead of
5944 finder-package-info.
5945
e2046ecf
CY
59462010-08-29 Chong Yidong <cyd@stupidchicken.com>
5947
5948 * subr.el (version-regexp-alist): Don't use "a" and "b" for
5949 "alpha" and "beta".
5950 (version-to-list): Handle versions like "10.3d".
5951
6fe79b7c
SM
59522010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
5953
5954 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
5955 (macroexp-accumulate): Use `declare'.
5956
1a868076
VJL
59572010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5958
5959 * whitespace.el (whitespace-style): Adjust type declaration.
5960
9e69cb05
KH
59612010-08-26 Magnus Henoch <magnus.henoch@gmail.com>
5962
5963 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
5964 empty argument to gvfs-copy.
5965
59662010-08-26 Chong Yidong <cyd@stupidchicken.com>
5967
5968 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
5969 handle new TRASH arg of `delete-file'.
5970
59712010-08-26 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
5972
5973 * net/tramp.el (tramp-handle-insert-directory): Don't use
5974 `forward-word', its default syntax could be changed.
5975
59762010-08-26 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
5977 Michael Albinus <michael.albinus@gmx.de>
5978
5979 Implement compression for inline methods.
5980
5981 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
5982 (tramp-copy-size-limit): Allow also nil.
5983 (tramp-inline-compress-commands): New defconst.
5984 (tramp-find-inline-compress, tramp-get-inline-compress)
5985 (tramp-get-inline-coding): New defuns.
5986 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
5987 replaced by `tramp-get-inline-coding'.
5988 (tramp-handle-file-local-copy, tramp-handle-write-region)
5989 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
5990
59912010-08-26 Noah Lavine <noah549@gmail.com> (tiny change)
5992
5993 Detect ssh 'ControlMaster' argument automatically in some cases.
5994
5995 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
5996 (tramp-default-method): Use it.
5997
59982010-08-26 Karel Klíč <kklic@redhat.com>
5999
6000 * net/tramp.el (tramp-file-name-for-operation):
6001 Add file-selinux-context.
6002
60032010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
6004
6005 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
6006
60072010-08-26 Chong Yidong <cyd@stupidchicken.com>
6008
6009 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
6010 (Bug#6907).
6011
4142607e
NW
60122010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
6013
6014 * progmodes/js.el: Make indentation more customizable (Bug#6914).
6015 (js-paren-indent-offset, js-square-indent-offset)
6016 (js-curly-indent-offset): New options.
6017 (js--proper-indentation): Use them.
6018
88a36e60
DC
60192010-08-26 Daniel Colascione <dan.colascione@gmail.com>
6020
6021 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
6022 instead of inspecting font-lock properties (Bug#6916).
6023
38dbc4d8
DR
60242010-08-26 David Reitter <david.reitter@gmail.com>
6025
6026 * server.el (server-visit-files): Run pre-command-hook and
76e3243a 6027 post-command-hook for each buffer while it is current (Bug#6910).
38dbc4d8
DR
6028 (server-execute): Do not run hooks here.
6029
44ffae96
MA
60302010-08-26 Michael Albinus <michael.albinus@gmx.de>
6031
6032 Sync with Tramp 2.1.19.
6033
20b8ac83
MA
6034 * net/tramp-cmds.el (tramp-cleanup-all-connections)
6035 (tramp-reporter-dump-variable, tramp-load-report-modules)
6036 (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
6037 (tramp-bug): Recommend setting of `tramp-verbose' to 9.
6038
6039 * net/tramp-compat.el (top): Do not autoload
6040 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
6041 only when `start-file-process' is not bound.
6042 (byte-compile-not-obsolete-vars): Define if not bound.
6043 (tramp-compat-funcall): New defmacro.
6044 (tramp-compat-line-beginning-position)
6045 (tramp-compat-line-end-position)
6046 (tramp-compat-temporary-file-directory)
6047 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
6048 (tramp-compat-copy-file, tramp-compat-copy-directory)
6049 (tramp-compat-delete-file, tramp-compat-delete-directory)
6050 (tramp-compat-number-sequence, tramp-compat-process-running-p):
6051 Use it.
6052 (tramp-advice-file-expand-wildcards): Do not use
6053 `tramp-handle-file-remote-p'.
6054 (tramp-compat-make-temp-file): Simplify fallback implementation.
6055 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
6056 (tramp-compat-copy-tree): Remove function.
6057 (tramp-compat-delete-file): New defun.
6058 (tramp-compat-delete-directory): Provide implementation for older
6059 Emacsen.
6060 (tramp-compat-file-attributes): Handle only
6061 `wrong-number-of-arguments' error.
6062
95b6d681
JB
6063 * net/tramp-fish.el (tramp-fish-handle-copy-file):
6064 Add PRESERVE_SELINUX_CONTEXT.
20b8ac83
MA
6065 (tramp-fish-handle-delete-file): Add TRASH arg.
6066 (tramp-fish-handle-directory-files-and-attributes):
6067 Do not use `tramp-fish-handle-file-attributes.
6068 (tramp-fish-handle-file-local-copy)
6069 (tramp-fish-handle-insert-file-contents)
6070 (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
6071
6072 * net/tramp-gvfs.el (top): Require url-util.
6073 (tramp-gvfs-mount-point): Remove.
6074 (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
6075 and `set-file-selinux-context'.
6076 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
6077 (tramp-gvfs-handle-file-selinux-context)
6078 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
6079 (with-tramp-dbus-call-method): Format trace message.
6080 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
6081 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
1e05f387
SM
6082 Implement backup call, when operation on local files fails.
6083 Use progress reporter. Flush properties of changed files.
6a7662bb
BR
6084 (tramp-gvfs-handle-delete-file): Add TRASH arg.
6085 Use `tramp-compat-delete-file'.
20b8ac83
MA
6086 (tramp-gvfs-handle-expand-file-name): Expand "~/".
6087 (tramp-gvfs-handle-make-directory): Make more traces.
6088 (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
6089 (tramp-gvfs-url-file-name): Hexify file name in url.
6090 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
6091 into account for the resulting file name.
6092 (tramp-gvfs-handler-askquestion): Preserve current message, in
6093 order to let progress reporter continue afterwards. (Bug#6257)
1e05f387
SM
6094 Return dummy mountpoint, when the answer is "no".
6095 See `tramp-gvfs-maybe-open-connection'.
20b8ac83
MA
6096 (tramp-gvfs-handler-mounted-unmounted)
6097 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
1e05f387
SM
6098 attribute "default_location". Set "prefix" property.
6099 Handle default-location.
20b8ac83
MA
6100 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
6101 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
6102 exists. Raise an error, if not (due to a corresponding answer
93acd23d
JB
6103 "no" in interactive questions, for example).
6104 Use `tramp-compat-funcall'.
20b8ac83
MA
6105
6106 * net/tramp-imap.el (top): Autoload `epg-make-context'.
6107 (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
6108 (tramp-imap-do-copy-or-rename-file)
6109 (tramp-imap-handle-insert-file-contents)
6110 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
6111 (tramp-imap-handle-delete-file): Add TRASH arg.
6112
1e05f387
SM
6113 * net/tramp-smb.el (tramp-smb-handle-copy-file):
6114 Add PRESERVE-SELINUX-CONTEXT.
20b8ac83
MA
6115 (tramp-smb-handle-copy-file)
6116 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
6117 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
6118 Use `with-progress-reporter'.
6119 (tramp-smb-handle-delete-file): Add TRASH arg.
6120
6121 * net/tramp.el (tramp-methods): Move hostname to the end in all
6122 ssh `tramp-login-args'. Add `tramp-async-args' attribute where
6123 appropriate.
6124 (tramp-verbose): Describe verbose level 9.
6125 (tramp-completion-function-alist)
6126 (tramp-file-name-regexp, tramp-chunksize)
6127 (tramp-local-coding-commands, tramp-remote-coding-commands)
6128 (with-connection-property, tramp-completion-mode-p)
6129 (tramp-action-process-alive, tramp-action-out-of-band)
6130 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
6131 (tramp-exists-file-name-handler): Fix docstring.
6132 (tramp-remote-process-environment): Use `format' instead of
6133 `concat'. Protect version string by apostroph.
6134 (tramp-shell-prompt-pattern): Do not use a shy group in case of
6135 XEmacs.
6136 (tramp-file-name-regexp-unified)
6137 (tramp-completion-file-name-regexp-unified): On W32 systems, do
6138 not regard the volume letter as remote filename. (Bug#5447)
6139 (tramp-perl-file-attributes)
6140 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
6141 (tramp-vc-registered-read-file-names): Read input as
6142 here-document, otherwise the command could exceed maximum length
6143 of command line.
6144 (tramp-file-name-handler-alist): Add `file-selinux-context' and
6145 `set-file-selinux-context'.
6146 (tramp-debug-message): Add `tramp-compat-funcall' to ignored
6147 backtrace functions.
6148 (tramp-error-with-buffer): Don't show the connection buffer when
6149 we are in completion mode.
6150 (tramp-progress-reporter-update, tramp-remote-selinux-p)
6151 (tramp-handle-file-selinux-context)
6152 (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
6153 (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
6154 New defuns.
6155 (with-progress-reporter): New defmacro.
6156 (tramp-debug-outline-regexp): New defconst.
6157 (top, tramp-rfn-eshadow-setup-minibuffer)
6158 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
6159 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
6160 (tramp-completion-mode-p, tramp-check-for-regexp)
6161 (tramp-open-connection-setup-interactive-shell)
6162 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
6163 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
6164 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
6165 Use `tramp-compat-funcall'.
6166 (tramp-handle-make-symbolic-link): Flush file properties.
6167 (tramp-handle-load, tramp-handle-file-local-copy)
6168 (tramp-handle-insert-file-contents, tramp-handle-write-region)
6169 (tramp-handle-vc-registered, tramp-maybe-send-script)
6170 (tramp-find-shell): Use `with-progress-reporter'.
6171 (tramp-do-file-attributes-with-stat): Add space in format string,
6172 in order to work around a bug in pdksh. Reported by Gilles Pion
6173 <gpion@lfdj.com>.
6174 (tramp-handle-verify-visited-file-modtime): Do not send a command
6175 when the connection is not established.
6176 (tramp-handle-set-file-times): Simplify the check for utc.
6177 (tramp-handle-directory-files-and-attributes)
6178 (tramp-get-remote-path): Use `copy-tree'.
6179 (tramp-completion-handle-file-name-all-completions): Ensure, that
6180 non remote files are still checked. Oops.
1e05f387
SM
6181 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
6182 Handle PRESERVE-SELINUX-CONTEXT.
20b8ac83
MA
6183 (tramp-do-copy-or-rename-file): Add progress reporter.
6184 (tramp-do-copy-or-rename-file-directly): Do not use
6185 `tramp-handle-file-remote-p'.
6186 (tramp-do-copy-or-rename-file-out-of-band):
6187 Use `tramp-compat-delete-directory'.
6188 (tramp-do-copy-or-rename-file-out-of-band)
6189 (tramp-compute-multi-hops, tramp-maybe-open-connection):
6190 Use `format-spec-make'.
6191 (tramp-handle-delete-file): Add TRASH arg.
6192 (tramp-handle-dired-uncache): Flush directory cache, not only file
6193 cache.
6194 (tramp-handle-expand-file-name)
6195 (tramp-completion-handle-file-name-all-completions)
1e05f387
SM
6196 (tramp-completion-handle-file-name-completion):
6197 Use `tramp-connectable-p'.
20b8ac83
MA
6198 (tramp-handle-start-file-process): Set connection property "vec".
6199 Use it, in order to invalidate file caches. Check only for
6200 `remote-tty' process property.
6201 Implement tty setting. (Bug#4604, Bug#6360)
6202 (tramp-file-name-for-operation): Add `call-process-region' and
6203 `set-file-selinux-context'.
6204 (tramp-find-foreign-file-name-handler)
6205 (tramp-advice-make-auto-save-file-name)
6206 (tramp-set-auto-save-file-modes): Remove superfluous check for
6207 `stringp'. This is done inside `tramp-tramp-file-p'.
6208 (tramp-file-name-handler): Trace 'quit. Catch the error for some
6209 operations when we are in completion mode. This gives the user
6210 the chance to correct the file name in the minibuffer.
6211 (tramp-completion-mode-p): Use `non-essential'.
6212 (tramp-handle-file-name-all-completions): Backward/ XEmacs
6213 compatibility: Use `completion-ignore-case' if
6214 `read-file-name-completion-ignore-case' does not exist.
6215 (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
6216 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
6217 `tramp-open-shell'.
6218 (tramp-action-password): Hide password prompt before next run.
6219 (tramp-process-actions): Widen connection buffer for the trace.
6220 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
6221 process property. Trace stty settings if `tramp-verbose' >= 9.
6222 Apply workaround for IRIX64 bug. Move argument of last
6223 `tramp-send-command' where it belongs to.
6224 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
6225 front of `login-args'.
6226 (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
6227 on "/dev/null" instead of "/".
6228 (tramp-get-ls-command-with-dired): Make test for "--dired"
6229 stronger.
6230 (tramp-set-auto-save-file-modes): Adapt version check.
6231 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
6232 (tramp-handle-process-file): Call the program in a subshell, in
6233 order to preserve working directory.
6234 (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
6235 `tramp-remote-sh' from `tramp-methods'.
6236 (tramp-get-ls-command): Make test for "--color=never" stronger.
6237 (tramp-check-for-regexp): Use (forward-line 1).
6238
44ffae96
MA
6239 * net/trampver.el: Update release number.
6240
cb6c4991
CY
62412010-08-26 Chong Yidong <cyd@stupidchicken.com>
6242
6243 * help.el (help-map): Bind `C-h P' to describe-package.
6244
6245 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
6246
6247 * emacs-lisp/package.el (package-refresh-contents): Catch errors
6248 when downloading archives.
6249 (describe-package-1): Add package commentary.
6250 (package-install-button-action): New function.
6251 (package-menu-mode-map): Bind ? to package-menu-describe-package.
6252 (package-menu-view-commentary): Function removed.
6253 (package-list-packages-internal): Hide the `package' package too.
6254
b60f961f
KH
62552010-08-25 Kenichi Handa <handa@m17n.org>
6256
6257 * language/misc-lang.el ("Arabic"): New language environment.
6258 Setup composition-function-table for Arabic characters.
6259
6260 * international/fontset.el (setup-default-fontset): Fix typo for
6261 arabic OTF spec (fini->fina).
6262
a0c16be4
J
62632010-08-25 Jan Djärv <jan.h.d@swipnet.se>
6264
6265 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
6266 on all frames.
6267
85cc3d4f
VJL
62682010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6269
6270 * whitespace.el: Allow cleaning up blanks without blank
6271 visualization (Bug#6651). Adjust help window for
6272 whitespace-toggle-options (Bug#6479). Allow to use fill-column
6273 instead of whitespace-line-column (from EmacsWiki). New version
6274 13.1.
88b5a757 6275 (whitespace-style): Add new value 'face. Adjust docstring.
6a7662bb
BR
6276 (whitespace-space, whitespace-hspace, whitespace-tab):
6277 Adjust foreground property face.
85cc3d4f
VJL
6278 (whitespace-line-column): Adjust docstring and type declaration.
6279 (whitespace-style-value-list, whitespace-toggle-option-alist)
6280 (whitespace-help-text): Adjust const initialization.
6281 (whitespace-toggle-options, global-whitespace-toggle-options):
6282 Adjust docstring.
6283 (whitespace-display-window, whitespace-interactive-char)
6284 (whitespace-style-face-p, whitespace-color-on): Adjust code.
6285 (whitespace-help-scroll): New fun.
6286
cb8759ca
CY
62872010-08-24 Chong Yidong <cyd@stupidchicken.com>
6288
6289 * emacs-lisp/package.el (list-packages): Alias for
6290 package-list-packages.
6291
44a41a47
KR
62922010-08-24 Kevin Ryde <user42@zip.com.au>
6293
be7748e7
KR
6294 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
6295 (Bug#5651).
6296
44a41a47
KR
6297 * progmodes/ruby-mode.el (ruby): Add defgroup.
6298
edfd00fa
CY
62992010-08-24 Chong Yidong <cyd@stupidchicken.com>
6300
6301 * progmodes/python.el: Add Ipython support (Bug#5390).
6302 (python-shell-prompt-alist)
6303 (python-shell-continuation-prompt-alist): New options.
6304 (python--set-prompt-regexp): New function.
6a7662bb
BR
6305 (inferior-python-mode, run-python, python-shell):
6306 Require ansi-color. Use python--set-prompt-regexp to set the comint
edfd00fa
CY
6307 prompt based on the Python interpreter.
6308 (python--prompt-regexp): New var.
6309 (python-check-comint-prompt)
6310 (python-comint-output-filter-function): Use it.
6311 (run-python): Use a pipe (Bug#5694).
6312
63132010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
6314
6315 * progmodes/python.el (python-send-region): Send a different
6316 Python command if Ipython is in use.
6317 (python-check-version): Use a Python command to find the version.
6318
1c409d0b
CY
63192010-08-24 Chong Yidong <cyd@stupidchicken.com>
6320
6321 * mouse.el (mouse-yank-primary): Avoid setting primary when
6322 deactivating the mark (Bug#6872).
6323
733946e7 63242010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
9027027d
CF
6325
6326 * progmodes/python.el (python-block-pairs): Allow use of "finally"
6327 with "else" (Bug#3991).
6328
e73f184c
MA
63292010-08-23 Michael Albinus <michael.albinus@gmx.de>
6330
6331 * net/dbus.el: Accept UNIX domain sockets as bus address.
6332 (top): Don't initialize `dbus-registered-objects-table' anymore,
6333 this is done in dbusbind,c.
6334 (dbus-check-event): Adapt test for bus.
6335 (dbus-return-values-table, dbus-unregister-service)
6336 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
6337 Adapt doc string.
6338
1a140747
JB
63392010-08-23 Juanma Barranquero <lekktu@gmail.com>
6340
6341 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
6342
7133b7ee
JL
63432010-08-22 Juri Linkov <juri@jurta.org>
6344
6345 * simple.el (read-extended-command): New function with the logic
6346 for `completing-read' moved to Elisp from `execute-extended-command'.
6347 Use `function-called-at-point' in `minibuffer-default-add-function'
6348 to get a command name for M-n (bug#5364, bug#5214).
6349
198a7a97
CY
63502010-08-22 Chong Yidong <cyd@stupidchicken.com>
6351
6352 * startup.el (command-line-1): Issue warning for ignored arguments
6353 --unibyte, etc (Bug#6886).
6354
c00725d7
LL
63552010-08-22 Leo <sdl.web@gmail.com>
6356
6357 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
6358 (ignore, bright, dim, keyword): Split list of nicknames before
6359 passing to rcirc-add-or-remove (Bug#6894).
6360
bc7d7ea6
CY
63612010-08-22 Chong Yidong <cyd@stupidchicken.com>
6362
6363 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
6364
b0126eac 63652010-08-22 Leo <sdl.web@gmail.com>
e0143335 6366
\81ukasz Stelmach, 2010-08-26 17:33:52 +0200">d5720b4c 6367 Fix buffer-list rename&refresh after killing a buffer in ido.
76e3243a 6368 * ido.el: Revert Óscar's.
e0143335
LL
6369 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
6370 Remember the buffers at head, rather than their name.
76e3243a 6371 * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
e0143335 6372
b0126eac 63732010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
8f081e96
SM
6374 Stefan Monnier <monnier@iro.umontreal.ca>
6375
6376 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
6377 extra backslash added to each line (bug#6890).
6378
b0126eac 63792010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
3ff78624
SM
6380
6381 * subr.el (read-key): Don't echo keystrokes (bug#6883).
6382
b0126eac 63832010-08-22 Glenn Morris <rgm@gnu.org>
635f7282
GM
6384
6385 * menu-bar.el (menu-bar-games-menu): Add landmark.
6386
b0126eac 63872010-08-22 Glenn Morris <rgm@gnu.org>
fb89a654 6388
9130a2d6
GM
6389 * align.el (align-regexp): Make group and spacing arguments
6390 use the interactive defaults when non-interactive. (Bug#6698)
6391
fb89a654
GM
6392 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
6393 expansion, so as not to need sendmail.
6394 (mail-text-start): Remove declaration.
6395 (rmail-retry-failure): Require sendmail.
6396
b0126eac 63972010-08-22 Chong Yidong <cyd@stupidchicken.com>
186e86db
SM
6398
6399 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
6400
b0126eac 64012010-08-22 Michael Albinus <michael.albinus@gmx.de>
a67e6f13 6402
186e86db
SM
6403 * progmodes/flymake.el (flymake-start-syntax-check-process):
6404 Use `start-file-process' in order to let it run also on remote hosts.
a67e6f13 6405
b0126eac 64062010-08-22 Kenichi Handa <handa@m17n.org>
f3cc64f8
KH
6407
6408 * files.el: Add `word-wrap' as safe local variable.
6409
b0126eac 64102010-08-22 Glenn Morris <rgm@gnu.org>
bb25c8d7
GM
6411
6412 * woman.el (woman-translate): Case matters. (Bug#6849)
6413
b0126eac 64142010-08-22 Chong Yidong <cyd@stupidchicken.com>
a4aae1a5
CY
6415
6416 * simple.el (kill-region): Doc fix (Bug#6787).
6417
b0126eac 64182010-08-22 Glenn Morris <rgm@gnu.org>
721dce17
GM
6419
6420 * calendar/diary-lib.el (diary-header-line-format):
6421 Fit it to the window, not the frame.
6422
b0126eac 64232010-08-22 Andreas Schwab <schwab@linux-m68k.org>
7467d0a8
AS
6424
6425 * subr.el (ignore-errors): Add debug declaration.
6426
b0126eac 64272010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
1fcf76af
GG
6428
6429 * whitespace.el (whitespace-color-off): Remove post-command-hook
6430 locally.
6431
537ffaf3
SM
64322010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
6433
6434 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
6435
d64b8a68
CY
64362010-08-21 Chong Yidong <cyd@stupidchicken.com>
6437
6438 * cus-edit.el (custom-group-value-create): Add extra newline
6439 before end line (Bug#6876).
6440
d2625c3d
CY
64412010-08-21 Chong Yidong <cyd@stupidchicken.com>
6442
6443 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
6444 when extending it. Before killing on the second click, check if
6445 the buffer is the correct one. Doc fix.
6446 (mouse-secondary-save-then-kill): Allow usage without first
6447 calling mouse-start-secondary, by defaulting to point. Don't save
6448 an empty secondary selection. Doc fix.
6449
80525855
VJL
64502010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6451
91bdeb66
VJL
6452 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
6453 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
537ffaf3 6454 New version 13.0.
80525855
VJL
6455 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
6456 Adjust initialization.
6457 (whitespace-bob-marker, whitespace-eob-marker)
6458 (whitespace-buffer-changed): New vars.
6459 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
6460 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
537ffaf3
SM
6461 (whitespace-post-command-hook, whitespace-display-char-on):
6462 Adjust code.
80525855 6463 (whitespace-looking-back, whitespace-buffer-changed): New funs.
85cc3d4f 6464 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
80525855 6465
4b9c0a49
SM
64662010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
6467
118cf454
SM
6468 * files.el (locate-file-completion-table): Only list the .el and .elc
6469 extensions if there's no other choice (bug#5955).
6470
a2e5caf7
SM
6471 * facemenu.el (facemenu-self-insert-data): New var.
6472 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
6473 New functions.
6474 (facemenu-add-face): Use them.
6475
4b9c0a49
SM
6476 * simple.el (blink-matching-open): Obey forward-sexp-function.
6477
0193499f
SM
64782010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
6479
b2a15250
SM
6480 * simple.el (prog-mode-map): New var.
6481 (prog-indent-sexp): New command.
6482
b5ba2d6f
SM
6483 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
6484
9acd1bdc
SM
6485 * progmodes/prolog.el (smie): Require.
6486
8723cfa4
SM
6487 * emacs-lisp/smie.el (smie-default-backward-token)
6488 (smie-default-forward-token): Strip properties.
6489 (smie-next-sexp): Be more careful with associative operators.
6490 (smie-forward-sexp-command): Generalize.
6491 (smie-backward-sexp-command): Simplify.
6492 (smie-closer-alist): New var.
6493 (smie-close-block): New command.
6494 (smie-indent-debug-log): New var.
6495 (smie-indent-offset-rule): Add a few more cases.
6496 (smie-indent-column): New function.
6497 (smie-indent-after-keyword): Use it.
6498 (smie-indent-keyword): Use it.
6499 Fix up the opener code's point position.
6500 (smie-indent-comment): Only applies at BOL.
6501 (smie-indent-debug): New command.
6502
0193499f
SM
6503 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
6504 declarations that are useful before running the macro.
6505
0c9b8993
GM
65062010-08-18 Joakim Verona <joakim@verona.se>
6507
6508 * image.el (imagemagick-types-inhibit): New variable.
6509 (imagemagick-register-types): New function.
6510 * image-mode.el (image-transform-properties): New function.
ccd80618
JV
6511 (image-transform-set-scale, image-transform-fit-to-height)
6512 (image-transform-set-rotation, image-transform-set-resize)
0c9b8993
GM
6513 (image-transform-fit-to-width, image-transform-fit-to-height):
6514 New functions.
ccd80618
JV
6515 (image-toggle-display-image): Support image transforms.
6516
1075cd61
KY
65172010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
6518
6519 * image.el (create-animated-image): Don't add heuristic mask to image
6520 (Bug#6839).
6521
64cb6c78
J
65222010-08-18 Jan Djärv <jan.h.d@swipnet.se>
6523
0193499f
SM
6524 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
6525 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
64cb6c78 6526
ff80a446
SM
65272010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
6528
afa22f7c
SM
6529 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
6530
ff80a446
SM
6531 Font-lock '...' strings, plus various simplifications and fixes.
6532 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
6533 (octave-font-lock-close-quotes): New function.
6534 (octave-font-lock-syntactic-keywords): New var.
6535 (octave-mode): Use it. Set beginning-of-defun-function.
6536 (octave-mode-map): Don't override the <foo>-defun commands.
6537 (octave-mode-menu): Pass it directly to easy-menu-define;
6538 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
6539 (octave-block-match-alist): Fix up last change so that
6540 octave-close-block uses the more specific keyword.
6541 (info-lookup-mode): Silence byte-compiler.
6542 (octave-beginning-of-defun): Not interactive any more.
6543 Optimize slightly.
6544 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
6545 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
6546 (octave-completion-at-point-function): Make sure point is within
6547 beg..end.
6548 (octave-reindent-then-newline-and-indent):
6549 Use reindent-then-newline-and-indent.
6550 (octave-add-octave-menu): Remove.
6551
2269b349
JD
65522010-08-17 Jan Djärv <jan.h.d@swipnet.se>
6553
489cd5bd
JD
6554 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
6555 (report-emacs-bug-can-use-xdg-email): New functions.
6556 (report-emacs-bug): Set can-xdg-email to result of
6557 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
6558 \C-cm to report-emacs-bug-insert-to-mailer and add help text
6559 about it.
30ebab6d 6560
a2fb159c
GM
6561 * net/browse-url.el (browse-url-default-browser): Add cond
6562 for browse-url-xdg-open.
6563 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
6564
65652010-08-17 Glenn Morris <rgm@gnu.org>
6566
6567 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
6568 (c-fontify-recorded-types-and-refs): Define for compiler.
6569 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
6570 before use.
6571
6572 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
6573 Fix format call.
6574
bb6aba9c
MA
65752010-08-17 Michael Albinus <michael.albinus@gmx.de>
6576
6577 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
6578 properties.
6579 (tramp-handle-process-file): Call the program in a subshell, in
6580 order to preserve working directory.
6581 (tramp-action-password): Hide password prompt before next run.
6582 (tramp-process-actions): Widen connection buffer for the trace.
6583
8f10c937
DD
65842010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
6585
6586 * net/rcirc.el (rcirc-log-process-buffers): New option.
6587 (rcirc-print): Use it.
6588 (rcirc-generate-log-filename): New function.
6589 (rcirc-log-filename-function): Change default to
6590 rcirc-generate-log-filename (Bug#6828).
6591
7c23dd44
CY
65922010-08-16 Chong Yidong <cyd@stupidchicken.com>
6593
6594 * simple.el (deactivate-mark): If select-active-regions is `only',
6595 only set selection for temporarily active regions.
6596
6597 * cus-start.el: Change defcustom for select-active-regions.
6598
6d3e82d2
CY
65992010-08-15 Chong Yidong <cyd@stupidchicken.com>
6600
6601 * mouse.el (mouse--drag-set-mark-and-point): New function.
ff80a446
SM
6602 (mouse-drag-track): Use LOCATION arg to push-mark.
6603 Use mouse--drag-set-mark-and-point to take click-count into
6d3e82d2
CY
6604 consideration when updating point and mark (Bug#6840).
6605
c68263b1
CY
66062010-08-15 Chong Yidong <cyd@stupidchicken.com>
6607
6608 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6609 Give the Ruby rule a lower priority than Gnu (Bug#6778).
6610
456f369a
ŠN
66112010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
6612
ff80a446
SM
6613 * font-lock.el (lisp-font-lock-keywords-2):
6614 Add combine-after-change-calls, condition-case-no-debug,
456f369a
ŠN
6615 with-demoted-errors, and with-silent-modifications (Bug#6025).
6616
c22e18f5
KR
66172010-08-14 Kevin Ryde <user42@zip.com.au>
6618
6619 * emacs-lisp/copyright.el (copyright-update-year)
b7716b25
CY
6620 (copyright-update): Temporary switch-to-buffer to ensure the
6621 buffer change being queried is visible (Bug#5394).
c22e18f5 6622
6f1a6faf
TT
66232010-08-14 Tom Tromey <tromey@redhat.com>
6624
6625 * progmodes/etags.el (tags-file-name): Mark safe if stringp
6626 (Bug#6733).
6627
e7afcf30
EZ
66282010-08-14 Eli Zaretskii <eliz@gnu.org>
6629
6630 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
6631 MS-DOS. (Bug#6689)
6632
2b4e6277
J
66332010-08-13 Jan Djärv <jan.h.d@swipnet.se>
6634
6635 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
6636 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
6637 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
6638 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
ff80a446
SM
6639 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
6640 Call menu-bar-set-tool-bar-position.
2b4e6277 6641
dc94fc85
SM
66422010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
6643
c5683ceb
SM
6644 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
6645 comment style (bug#6834).
6646 * progmodes/scheme.el (scheme-mode-syntax-table):
6647 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
6648 "b" flag in "' 14b" syntax.
6649
c82d5b11
SM
6650 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
6651 for (un)commenting the region and performing completion.
6652 (octave-mode-menu): Use standard commands for help and completion.
6653 (octave-mode-syntax-table): Support %{..%} comments (sort of).
6654 (octave-mode): Use define-derived-mode.
6655 Set completion-at-point-functions and don't set columns.
6656 Don't disable adaptive-fill-regexp.
6657 (octave-describe-major-mode, octave-comment-region)
6658 (octave-uncomment-region, octave-comment-indent)
6659 (octave-indent-for-comment): Remove.
6660 (octave-indent-calculate): Rename from calculate-octave-indent.
7e82caa7 6661 (octave-indent-line, octave-fill-paragraph): Update caller.
c82d5b11
SM
6662 (octave-initialize-completions): No need to make an alist.
6663 (octave-completion-at-point-function): New function.
6664 (octave-complete-symbol): Use it.
6665 (octave-insert-defun): Use define-skeleton.
6666
6667 * progmodes/octave-mod.el (octave-mode): Set comment-add.
6668 (octave-mode-map): Use comment-dwim (bug#6829).
dc94fc85 6669
61b6abbd
AL
66702010-08-12 Antoine Levitt <antoine.levitt@gmail.com> (tiny change)
6671
6672 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
6673 indentation of inserted comment.
6674
3a46642b
J
66752010-08-11 Jan Djärv <jan.h.d@swipnet.se>
6676
6677 * faces.el (region): Add type gtk that uses gtk colors.
6678
6679 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
6680 Handle theme-name change.
6681
3bd2cfef
MM
66822010-08-10 Michael R. Mauger <mmaug@yahoo.com>
6683
6684 * progmodes/sql.el: Version 2.5
6685 (sql-product-alist): Add :prompt-cont-regexp property for several
6686 database products.
6687 (sql-prompt-cont-regexp): New variable.
61b6abbd
AL
6688 (sql-output-newline-count, sql-output-by-send):
6689 New variables. Record number of newlines in input text.
3bd2cfef
MM
6690 (sql-send-string): Handle multiple filters and count newlines.
6691 (sql-send-magic-terminator): Count terminator newline.
6692 (sql-interactive-remove-continuation-prompt): Filters output to
6693 remove continuation prompts; one for each newline.
6694 (sql-interactive-mode): Set up new variables, prompt regexp and
6695 output filter.
6696 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
61b6abbd 6697 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
3bd2cfef 6698
d02c9bcd
SM
66992010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
6700
6701 * emacs-lisp/pcase.el: New file.
6702
80ca4f1e
MA
67032010-08-10 Michael Albinus <michael.albinus@gmx.de>
6704
6705 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
6706 as here-document, otherwise the command could exceed maximum
6707 length of command line.
d02c9bcd
SM
6708 (tramp-handle-vc-registered): Call script accordingly.
6709 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
80ca4f1e 6710
2948599b
KH
67112010-08-10 Kenichi Handa <handa@m17n.org>
6712
6713 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
6714 composable pattern.
6715
148cef8e
CY
67162010-08-09 Chong Yidong <cyd@stupidchicken.com>
6717
6718 * emacs-lisp/package.el (package-version-split)
6719 (package--version-first-nonzero, package-version-compare):
6720 Functions removed.
6721 (package-directory-list, package-load-all-descriptors)
6722 (package--built-in, package-activate, define-package)
6723 (package-installed-p, package-compute-transaction)
6724 (package-read-all-archive-contents)
6725 (package--add-to-archive-contents, package-buffer-info)
d02c9bcd
SM
6726 (package-tar-file-info, package-list-packages-internal):
6727 Use version-to-list and version-list-*.
148cef8e 6728
d02c9bcd
SM
6729 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6730 Use version-to-list.
148cef8e
CY
6731 (package-upload-buffer-internal): Use version-list-<=.
6732
82a9ce0f
KH
67332010-08-09 Kenichi Handa <handa@m17n.org>
6734
231e5e5f 6735 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
82a9ce0f
KH
6736 composable pattern.
6737
7adf5fdc
CY
67382010-08-08 Chong Yidong <cyd@stupidchicken.com>
6739
fc560445
CY
6740 * tutorial.el (tutorial--default-keys): C-d is now bound to
6741 delete-forward-char (Bug#6826).
6742
7adf5fdc
CY
6743 * mouse.el (mouse-drag-track): Remove accidentally-removed check
6744 for `double' value of mouse-1-click-follows-link (Bug#6807).
6745
e54a1075
JB
67462010-08-08 Johan Bockgård <bojohan@gnu.org>
6747
6748 * replace.el (replace-highlight): Bind isearch-forward and
6749 isearch-error, ensuring that highlighting is updated if the user
6750 switches the search direction (Bug#6808).
6751
6752 * isearch.el (isearch-lazy-highlight-forward): New var.
6753 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
6754 (isearch-lazy-highlight-update): Use it.
6755
7815fe19 67562010-08-08 Kenichi Handa <handa@m17n.org>
7a84eee5 6757
8d9e03e4
JB
6758 * international/mule.el (define-charset): Store NAME as :base property.
6759 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
7a84eee5
KH
6760 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
6761 current priority. Force using the designation of the specific
8d9e03e4 6762 charset by adding `charset' text property. Improve the whole algorithm.
7a84eee5 6763
7815fe19 67642010-08-08 Juanma Barranquero <lekktu@gmail.com>
f6b55526
JB
6765
6766 * emulation/pc-select.el (pc-selection-mode-hook)
6767 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
6768 (pc-selection-mode): Fix typos in docstrings.
6769
7815fe19 67702010-08-08 Kenichi Handa <handa@m17n.org>
6b4d96c2
KH
6771
6772 * language/cyrillic.el: Don't add "microsoft-cp1251" to
6773 ctext-non-standard-encodings-alist here.
6774
8d9e03e4
JB
6775 * international/mule.el (ctext-non-standard-encodings-alist):
6776 Add "koi8-r" and "microsoft-cp1251".
6b4d96c2
KH
6777 (ctext-standard-encodings): New variable.
6778 (ctext-non-standard-encodings-table): List only elements for
6779 non-standard encodings.
186e86db 6780 (ctext-pre-write-conversion): Adjust for the above change.
6b4d96c2
KH
6781 Check ctext-standard-encodings.
6782
6783 * international/mule-conf.el (compound-text): Doc fix.
6784 (ctext-no-compositions): Doc fix.
6785 (compound-text-with-extensions): Doc fix.
6786
7815fe19 67872010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
c613687b
SM
6788
6789 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
6790
8d9e03e4 67912010-08-08 Juanma Barranquero <lekktu@gmail.com>
d5b8058f 6792
9ebc731b
JB
6793 * progmodes/which-func.el (which-func-format): Split help-echo text
6794 into lines, like other mode-line tooltips.
6795
d5b8058f
JB
6796 * server.el (server-start): When using TCP sockets, force IPv4
6797 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
6798
8d9e03e4 67992010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
a2077b7f
SM
6800
6801 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
6802
8d9e03e4 68032010-08-08 Juanma Barranquero <lekktu@gmail.com>
f63a7652
JB
6804
6805 * term.el (term-delimiter-argument-list): Reflow docstring.
6806 (term-read-input-ring, term-write-input-ring, term-send-input)
6807 (term-bol, term-erase-in-display, serial-supported-or-barf):
6808 Fix typos in docstrings.
6809
8d9e03e4 68102010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
a7e26d8b
SM
6811
6812 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
6813
8d9e03e4 68142010-08-08 Juanma Barranquero <lekktu@gmail.com>
bbc4e17c
JB
6815
6816 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
6817
8d9e03e4 68182010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
9aea20c9
MK
6819
6820 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
6821 Fix typo in docstring (bug#6747).
6822
7815fe19 68232010-08-08 Leo <sdl.web@gmail.com>
16b0b347
LL
6824
6825 * eshell/esh-io.el (eshell-get-target): Better detection of
6826 read-only file (Bug#6762).
6827
7815fe19 68282010-08-08 Juanma Barranquero <lekktu@gmail.com>
ad9ae065
JB
6829
6830 * align.el (align-default-spacing): Doc fix.
6831 (align-region-heuristic, align-regexp): Fix typos in docstrings.
6832
733946e7 68332010-08-08 Stephen Peters <speters@itasoftware.com>
81ee9410 6834
490b89ac 6835 * calendar/icalendar.el
93acd23d
JB
6836 (icalendar--split-value): Fix splitting regexp. (Bug#6766)
6837 (icalendar--get-weekday-numbers): New.
81ee9410 6838 (icalendar--convert-recurring-to-diary): Handle multiple byday
93acd23d 6839 values in weekly rules. (Bug#6766)
81ee9410 6840
490b89ac
UJ
68412010-08-08 Ulf Jasper <ulf.jasper@web.de>
6842
6843 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
6844 (icalendar--create-uid, icalendar-export-region)
6845 (icalendar--parse-summary-and-rest): Code formatting.
6846
2c695727
JB
68472010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
6848
6849 * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
6850 to italicize headers.
6851 (calc-highlight-selections-with-faces): New variable.
6852 (calc-selected-face, calc-nonselected-face): New faces.
6853
6854 * calc/calccomp.el (math-comp-highlight-string): Use
6855 `calc-highlight-selections-with-faces' to determine how to highlight
6856 sub-formulas.
6857
6858 * calc/calc-sel.el (calc-show-selections): Change message to when
6859 using faces to highlight selections.
6860
b93d4f22
MM
68612010-08-07 Michael R. Mauger <mmaug@yahoo.com>
6862
8d9e03e4
JB
6863 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
6864 Add SQLite 3 keywords, functions and datatypes.
6865 (sql-interactive-mode): Remove `comint-process-echoes' set to t
b93d4f22
MM
6866 (Bug#6686).
6867
9852377f
CY
68682010-08-07 Chong Yidong <cyd@stupidchicken.com>
6869
6870 * simple.el (select-active-regions): Move to keyboard.c.
6871 (deactivate-mark): Used saved-region-selection.
6872 (select-active-region): Function removed.
6873 (activate-mark, set-mark, push-mark-command)
6874 (handle-shift-selection): Don't call it.
6875 (keyboard-quit): Avoid adding the region to the window selection.
6876
6877 * mouse.el (mouse-drag-track): Remove hacks to deal with old
6878 select-active-regions implementation.
6879 (mouse-yank-at-click): Doc fix.
6880
6881 * cus-start.el: Add custom declaration for select-active-regions.
6882
822775bf
EZ
68832010-08-07 Eli Zaretskii <eliz@gnu.org>
6884
4c5130d6
EZ
6885 * simple.el (delete-forward-char): Doc fix.
6886
822775bf
EZ
6887 * tutorial.el (help-with-tutorial): Hack safe file-local variables
6888 after reading the tutorial.
6889
bd4c5e3e
AM
68902010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
6891
6a7662bb
BR
6892 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph):
6893 Fix for the case that a C style comment has its delimiters alone on
bd4c5e3e
AM
6894 their respective lines.
6895
d00fa9b6
MA
68962010-08-06 Michael Albinus <michael.albinus@gmx.de>
6897
8d9e03e4 6898 * net/tramp.el (tramp-handle-start-file-process): Set connection
d00fa9b6 6899 property "vec".
6a7662bb
BR
6900 (tramp-process-sentinel): Use it for flushing the cache.
6901 We cannot do it via the process buffer, the buffer could be deleted
d00fa9b6
MA
6902 already when running the sentinel.
6903
69042010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
942415f3
MA
6905
6906 * comint.el (comint-mode): Make directory tracking functions
6907 functional on remote files. (Bug#6764)
6908
b3d42406
DN
69092010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
6910
6911 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
6912
29cf3e20
EZ
69132010-08-05 Eli Zaretskii <eliz@gnu.org>
6914
6a7662bb
BR
6915 * emacs-lisp/find-gc.el (find-gc-source-files):
6916 Rename unexec.c => unexcoff.c.
29cf3e20 6917
6a7662bb
BR
6918 * emacs-lisp/authors.el (authors-fixed-entries):
6919 Rename unexec.c => unexcoff.c.
29cf3e20 6920
39e1bf0b
MA
69212010-08-05 Michael Albinus <michael.albinus@gmx.de>
6922
6923 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
6924 cache, not only file cache.
6925 (tramp-process-sentinel): New defun.
6926 (tramp-handle-start-file-process): Use it, in order to invalidate
6927 file caches.
6928
9f982e22
LL
69292010-08-03 Leo <sdl.web@gmail.com>
6930
6931 * server.el (server-start): Simplify loop.
6932
0798a8d8
SM
69332010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
6934
548c5c47
SM
6935 * frame.el (screen-height, screen-width, set-screen-width)
6936 (set-screen-height): Remove ancient compatibility aliases.
6937
3311d1c2
SM
6938 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
6939 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
6940
0798a8d8
SM
6941 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
6942 that change current buffer.
6943
26ee77a6
YM
69442010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6945
6946 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
6947 beginning of the string. Use `string-match-p'. (Bug#6765)
6948
aa1859f5
J
69492010-08-01 Jan Djärv <jan.h.d@swipnet.se>
6950
6951 * cus-start.el (x-gtk-use-system-tooltips): New variable.
6952
376c2b6b
CY
69532010-08-01 Chong Yidong <cyd@stupidchicken.com>
6954
0798a8d8 6955 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
376c2b6b 6956 (package--builtins): Tweak descriptions.
0798a8d8
SM
6957 (package-print-package): Upcase descriptions if necessary.
6958 Show all built-in packages in font-lock-builtin-face.
6959 (package-list-packages-internal): Omit "emacs" package.
6960 Show status of built-in packages as "built-in".
376c2b6b 6961
16041401
CY
69622010-07-31 Chong Yidong <cyd@stupidchicken.com>
6963
6964 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
6965 before killing to preserve the primary selection (Bug#6701).
6966
6967 * term/x-win.el (x-select-text): Doc fix.
6968
0798a8d8
SM
69692010-07-31 Nathaniel Flath <flat0103@gmail.com>
6970
452ea855
AM
6971 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
6972 (objc-font-lock-extra-types):
452ea855 6973 * progmodes/cc-mode.el (c-basic-common-init):
452ea855
AM
6974 * progmodes/cc-langs.el (c-make-mode-syntax-table)
6975 (c++-make-template-syntax-table)
6976 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
6977 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
6978 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
6979 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
452ea855
AM
6980 * progmodes/cc-fonts.el (c-make-inverse-face)
6981 (c-basic-matchers-after):
452ea855
AM
6982 * progmodes/cc-engine.el (c-forward-keyword-clause)
6983 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
6984 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
6985 (c-guess-continued-construct, c-guess-basic-syntax):
2f5e7c6f
GM
6986 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
6987 The above functions were modified or created.
452ea855 6988
37766706
J
69892010-07-31 Jan Djärv <jan.h.d@swipnet.se>
6990
0798a8d8 6991 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
37766706 6992
cd83d522
EZ
69932010-07-31 Eli Zaretskii <eliz@gnu.org>
6994
6995 * files.el (bidi-paragraph-direction): Define safe local values.
6996
6997 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
6998 language-info-alist. Remove outdated FIXME in a comment.
6999
28e5cf7c
AM
70002010-07-31 Alan Mackenzie <acm@muc.de>
7001
7002 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
7003 Auto-fill broken in C/C++ modes.
7004
bfeabdc3
JD
70052010-07-29 Jan Djärv <jan.h.d@swipnet.se>
7006
7007 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
7008 (menu-bar-showhide-tool-bar-menu-customize-disable)
7009 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
0798a8d8
SM
7010 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
7011 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
bfeabdc3
JD
7012 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
7013 make a menu for Options => toolbar that can move it.
7014
063e5294
CY
70152010-07-29 Chong Yidong <cyd@stupidchicken.com>
7016
7017 * emacs-lisp/package-x.el (package--make-rss-entry):
7018 (package-maint-add-news-item, package--update-news)
7019 (package-upload-buffer-internal): New arg ARCHIVE-URL.
7020
7021 * emacs-lisp/package.el (package-archive-url): Rename from
7022 package-archive-id.
7023 (package-install): Doc fix.
7024 (package-download-single, package-download-tar, package-install)
7025 (package-menu-view-commentary): Callers changed.
7026
683cc385
MA
70272010-07-29 Michael Albinus <michael.albinus@gmx.de>
7028
7029 * net/tramp.el (tramp-handle-start-file-process): Check only for
7030 `remote-tty' process property.
7031 (tramp-open-shell): Don't check for tty.
7032 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
7033 process property.
7034
7035 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
7036 host.
7037
bc44bef7
PH
70382010-07-28 Chong Yidong <cyd@stupidchicken.com>
7039
7040 * emacs-lisp/package.el (package-load-list, package-archives)
7041 (package-archive-contents, package-user-dir)
7042 (package-directory-list, package--builtins, package-alist)
7043 (package-activated-list, package-obsolete-alist): Mark as risky.
7044
70452010-07-28 Phil Hagelberg <phil@evri.com>
7046
7047 Add support for non-default package repositories.
7048 * emacs-lisp/package.el (package-archive-base): Var deleted.
7049 (package-archives): New variable.
7050 (package-archive-contents): Doc fix.
0798a8d8 7051 (package-load-descriptor): Do nothing if descriptor file is missing.
bc44bef7
PH
7052 (package--write-file-no-coding): New function.
7053 (package-unpack-single): Use it.
7054 (package-archive-id): New function.
7055 (package-download-single, package-download-tar)
7056 (package-menu-view-commentary): Use it.
7057 (package-installed-p): Make second argument optional.
7058 (package-read-all-archive-contents): New function.
7059 (package-initialize): Use it.
7060 (package-read-archive-contents): Add ARCHIVE argument.
7061 (package--add-to-archive-contents): New function.
7062 (package-install): Don't call package-read-archive-contents.
7063 (package--download-one-archive): Store archive file in a
7064 subdirectory of package-user-dir.
7065 (package-menu-execute): Remove spurious line movement.
7066
8a52f00a
JD
70672010-07-28 Jan Djärv <jan.h.d@swipnet.se>
7068
7069 * cus-start.el (tool-bar-style): Add text-image-horiz.
7070
b21d3ceb
MA
70712010-07-28 Michael Albinus <michael.albinus@gmx.de>
7072
7073 * progmodes/gud.el (gud-common-init): Check for remoteness of
7074 `file', and not of `default-directory'.
7075
8fbcce2d
MA
70762010-07-28 Michael Albinus <michael.albinus@gmx.de>
7077
7078 * net/tramp.el (tramp-methods): Move hostname to the end in all
7079 ssh `tramp-login-args'.
7080 (tramp-verbose): Describe verbose level 9.
7081 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
7082 (tramp-open-connection-setup-interactive-shell): Trace stty
7083 settings if `tramp-verbose' >= 9.
7084 (tramp-handle-start-file-process): Implement tty setting.
7085 (Bug#4604, Bug#6360)
7086
7087 * net/tramp-cmds.el (tramp-bug): Recommend setting of
7088 `tramp-verbose' to 9.
7089
128440c9
AH
70902010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
7091
7092 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
7093 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
7094 Remove references to package `lisp-re' (bug#4369).
7095
ae0c2494
TT
70962010-07-27 Tom Tromey <tromey@redhat.com>
7097
7098 * progmodes/js.el (js-mode):
7099 * progmodes/make-mode.el (makefile-mode):
7100 * progmodes/simula.el (simula-mode):
7101 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
7102
0ed082fe 71032010-07-27 Juanma Barranquero <lekktu@gmail.com>
fe4be04c
JB
7104
7105 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
7106
7c7c04c0
JB
7107 * time.el (display-time-day-and-date): Remove spurious * in docstring.
7108 (display-time-world-buffer-name, display-time-world-mode-map):
7109 Fix typos in docstrings.
7110
0ed082fe 71112010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
c9088194
SK
7112
7113 * image-mode.el (image-display-size): New function.
7114 (image-forward-hscroll, image-next-line, image-eol, image-eob)
7115 (image-mode-fit-frame): Use it (Bug#6639).
7116
0ed082fe 71172010-07-27 Chong Yidong <cyd@stupidchicken.com>
dad7c716
CY
7118
7119 * dired.el (dired-buffers-for-dir): Handle list values of
7120 dired-directory (Bug#6636).
7121
aa2d4bd3
SS
71222010-07-26 Sam Steingold <sds@gnu.org>
7123
7124 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
7125 Do not call `x-get-selection' the second time, reuse the value.
7126
78b84da3
DU
71272010-07-26 Daiki Ueno <ueno@unixuser.org>
7128
7129 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
0798a8d8 7130 which consist of control chars only. Suggested by Richard Stallman.
78b84da3 7131
4f195cf7
DU
71322010-07-25 Daiki Ueno <ueno@unixuser.org>
7133
7134 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
7135 exists before passing an error to find-file-not-found-functions
7136 (bug#6723).
7137
195e19e4
LH
71382010-07-23 Lukas Huonker <l.huonker@gmail.com>
7139
7140 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
7141 Remove leading nil element, adjust values.
7142 (tetris-shapes, tetris-shape-scores):
7143 Change representation of shapes and remove some redundancy.
7144 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
7145 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
7146 Adjust for working with new representation of shapes.
7147 (tetris-shape-rotations): New function.
7148 (tetris-move-bottom, tetris-move-left, tetris-move-right)
7149 (tetris-rotate-prev, tetris-rotate-next):
7150 Adjust for working with the new version of tetris-test-shape.
7151
9cf2db99
MT
71522010-07-23 Markus Triska <markus.triska@gmx.at>
7153
7154 * progmodes/ps-mode.el: Use comint (bug#5954).
7155 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
7156 (ps-mode-other-newline): Simplify.
7157 (ps-run-mode): Derive from comint-mode instead of
7158 fundamental-mode, yielding input history etc.
7159 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
7160 (ps-run-send-string): Adapt for comint-mode.
7161 (ps-run-newline): Remove now unneeded function.
7162
225d5e9e
MA
71632010-07-23 Michael Albinus <michael.albinus@gmx.de>
7164
7165 * net/tramp.el (tramp-methods): Move hostname to the end in all
7166 plink `tramp-login-args'.
7167
84bc68f2
MA
71682010-07-23 Michael Albinus <michael.albinus@gmx.de>
7169
7170 * net/tramp.el (tramp-open-shell): New defun.
7171 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
7172 Use it.
7173
1eb5ca1c
MA
71742010-07-23 Michael Albinus <michael.albinus@gmx.de>
7175
7176 * net/tramp.el (tramp-file-name-regexp-unified)
7177 (tramp-completion-file-name-regexp-unified): On W32 systems, do
7178 not regard the volume letter as remote filename. (Bug#5447)
7179
440735a7
JB
71802010-07-23 Juanma Barranquero <lekktu@gmail.com>
7181
7182 * custom.el (custom-declare-variable): Give a clearer error message
7183 when the docstring is missing (bug#6476).
7184
5474c40f
MM
71852010-07-22 Michael R. Mauger <mmaug@yahoo.com>
7186
7187 * progmodes/sql.el: Version 2.4. Improved Login prompting.
7188 (sql-login-params): New widget definition.
7189 (sql-oracle-login-params, sql-mysql-login-params)
7190 (sql-solid-login-params, sql-sybase-login-params)
7191 (sql-informix-login-params, sql-ingres-login-params)
7192 (sql-ms-login-params, sql-postgres-login-params)
7193 (sql-interbase-login-params, sql-db2-login-params)
7194 (sql-linter-login-params): Use it.
7195 (sql-sqlite-login-params): Use it; Define "database" parameter as
7196 a file name.
c4cc8b9a 7197 (sql-sqlite-program): Change to "sqlite3".
5474c40f
MM
7198 (sql-comint-sqlite): Make sure database name is complete.
7199 (sql-for-each-login): New function.
7200 (sql-connect, sql-save-connection): Use it.
7201 (sql-get-login-ext): New function.
7202 (sql-get-login): Use it.
7203 (sql-make-alternate-buffer-name): Handle :file parameters.
7204
9c0deccb
JB
72052010-07-22 Juanma Barranquero <lekktu@gmail.com>
7206
7207 * dired.el (dired-no-confirm): Document value t and fix defcustom to
7208 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
7209
aac818a8
TL
72102010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
7211
7212 * dired.el (dired-mode-map): Use command remapping (bug#6632).
7213
47d2734f
LM
72142010-07-22 Lawrence Mitchell <wence@gmx.li>
7215
7216 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
7217
10e73994
MA
72182010-07-21 Michael Albinus <michael.albinus@gmx.de>
7219
7220 * net/tramp.el (tramp-get-ls-command)
7221 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
7222 instead of "/".
7223
d26b0ea9
MM
72242010-07-20 Michael R. Mauger <mmaug@yahoo.com>
7225
7226 * progmodes/sql.el: Version 2.3.
f49d1f52 7227 (sql-connection-alist): Change keys from symbols to strings;
d26b0ea9 7228 enhanced the widget definition.
88b5a757
DD
7229 (sql-mode-menu): Add submenu to select connections.
7230 (sql-interactive-mode-menu): Add "Save Connection" item.
7231 (sql-add-product): Fix menu item.
d26b0ea9
MM
7232 (sql-get-product-feature): Improved error handling.
7233 (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
7234 (sql-make-alternate-buffer-name): Simplified.
7235 (sql-product-interactive): Handle missing product.
7236 (sql-connect): Support string keys, minor improvements.
7237 (sql-save-connection): New function.
7238 (sql-connection-menu-filter): New function.
7239
af4b9ae5
MA
72402010-07-20 Michael Albinus <michael.albinus@gmx.de>
7241
7242 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
6a7662bb
BR
7243 (tramp-open-connection-setup-interactive-shell):
7244 Apply workaround for IRIX64 bug. Move argument of last
af4b9ae5
MA
7245 `tramp-send-command' where it belongs to.
7246
da040a16
MA
72472010-07-20 Michael Albinus <michael.albinus@gmx.de>
7248
7249 * net/tramp.el (tramp-perl-file-attributes)
7250 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
7251 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
7252 front of `login-args'.
7253
16f3ade5
JB
72542010-07-19 Juanma Barranquero <lekktu@gmail.com>
7255
7256 * time.el (display-time-world-mode): Define with `define-derived-mode'.
7257 Set `show-trailing-whitespace' to nil.
7258 (display-time-world-display): Simplify.
7259
00af0b67
AM
72602010-07-18 Alan Mackenzie <acm@muc.de>
7261
7262 Enhance `c-file-style' in file/directory local variables.
a628ad9d 7263 * progmodes/cc-mode.el (c-count-cfss): New function.
00af0b67
AM
7264 (c-before-hack-hook): Call `c-set-style' differently according to
7265 whether c-file-style was set in file or directory local
7266 variables.
7267
30c4d8dc
MM
72682010-07-18 Michael R. Mauger <mmaug@yahoo.com>
7269
7270 * progmodes/sql.el: Version 2.2.
6a7662bb
BR
7271 (sql-product, sql-user, sql-database, sql-server, sql-port):
7272 Use defcustom :safe keyword rather than putting safe-local-variable
30c4d8dc
MM
7273 property.
7274 (sql-password): Use defcustom :risky keyword rather than putting
7275 risky-local-variable property.
7276 (sql-oracle-login-params, sql-sqlite-login-params)
7277 (sql-solid-login-params, sql-sybase-login-params)
7278 (sql-informix-login-params, sql-ingres-login-params)
7279 (sql-ms-login-params, sql-postgres-login-params)
7280 (sql-interbase-login-params, sql-db2-login-params)
c4cc8b9a 7281 (sql-linter-login-params): Add `port' option.
88b5a757 7282 (sql-get-product-feature): Add NO-INDIRECT parameter.
30c4d8dc
MM
7283 (sql-comint-oracle, sql-comint-sybase)
7284 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
7285 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
7286 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
88b5a757 7287 (sql-comint-linter): Rename sql-connect-* functions to
30c4d8dc 7288 sql-comint-*.
88b5a757 7289 (sql-product-alist, sql-mode-menu): Rename as above and
30c4d8dc 7290 :sqli-connect-func to :sqli-comint-func.
c4cc8b9a 7291 (sql-connection): New variable.
30c4d8dc
MM
7292 (sql-interactive-mode): Set it.
7293 (sql-connection-alist): New variable.
7294 (sql-connect): New function.
7295 (sql--alt-buffer-part, sql--alt-if-not-empty)
a628ad9d 7296 (sql-make-alternate-buffer-name): Improved alternative buffer name.
30c4d8dc 7297
f12492c8
TV
72982010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7299
7300 * image-mode.el (image-bookmark-make-record): Do not set context
7301 in an image (Bug#6650).
7302
91023c68
CY
73032010-07-17 Chong Yidong <cyd@stupidchicken.com>
7304
7305 * simple.el (select-active-region): New function.
7306 (push-mark-command, set-mark, activate-mark)
7307 (handle-shift-selection): Use it.
7308 (deactivate-mark): Don't check for size of region.
7309
7310 * mouse.el (mouse-drag-track): Use select-active-region.
7311
1c0e8f0e
MA
73122010-07-17 Michael Albinus <michael.albinus@gmx.de>
7313
7314 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
7315 "--dired" stronger.
7316
2490cbbc
CY
73172010-07-17 Chong Yidong <cyd@stupidchicken.com>
7318
7319 * term/x-win.el (x-select-enable-primary): Change default to nil.
7320 (x-select-enable-clipboard): Add :version keyword.
7321
7322 * mouse.el (mouse-drag-copy-region):
7323 * simple.el (select-active-regions): Likewise.
7324
f253ef6a
RS
73252010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
7326
a628ad9d 7327 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
f253ef6a
RS
7328 (vc-coding-system-for-diff): Use it to decide whether to inherit
7329 from the file the EOL format for reading the diffs of that file.
7330 (Bug#4451)
7331
134a027f
EZ
73322010-07-16 Eli Zaretskii <eliz@gnu.org>
7333
7334 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
7335 unibyte, so compressed attachments are not compressed again.
7336
7e4289ad
MA
73372010-07-16 Michael Albinus <michael.albinus@gmx.de>
7338
7339 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
7340 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
7341 (tramp-find-shell): Simplify setting connection property.
7342 (tramp-get-ls-command): Make test for "--color=never" stronger.
7343
7473fff9 73442010-07-15 Simon South <ssouth@member.fsf.org>
2c6a779a
SS
7345
7346 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
7347 blocks within record declarations (i.e. variant parts) correctly.
7348
a11b38ee
SS
73492010-07-15 Simon South <ssouth@member.fsf.org>
7350
7351 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
7352 over literal tokens when parsing so newlines aren't "absorbed" by
7353 single-line comments. Corrects the indentation of case blocks
7354 that have a comment on the first line.
7355
077e0753
KF
73562010-07-14 Karl Fogel <kfogel@red-bean.com>
7357
7358 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
7359 by Drew Adams (Bug#5504).
7360
243881ed
J
73612010-07-14 Jan Djärv <jan.h.d@swipnet.se>
7362
7363 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
dd86ea11 7364 now that Unicode is used (Bug#6594).
243881ed 7365
f9d71b42
CY
73662010-07-14 Chong Yidong <cyd@stupidchicken.com>
7367
7368 * term/x-win.el (x-select-enable-clipboard): Default to t.
7369 (x-initialize-window-system): Don't overwrite Paste menu item.
7370
7371 * simple.el (select-active-regions): Default to t.
7372 (push-mark-command): Don't overwrite primary with empty string.
7373
7374 * mouse.el: Bind mouse-2 to mouse-yank-primary.
7375 (mouse-drag-copy-region): Default to nil.
7376
7377 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
7378 Cut/Copy/Paste menu bar items.
7379
a628ad9d 73802010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8f2eaa8a
TV
7381
7382 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
7383 Patch applied by Karl Fogel.
7384
7385 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
7386 and `bookmark-current-buffer' if they have been already set in
7387 another buffer (e.g gnus-art).
7388
e44fa724 73892010-07-13 Karl Fogel <kfogel@red-bean.com>
a628ad9d 7390 Thierry Volpiatto <thierry.volpiatto@gmail.com>
e44fa724
KF
7391
7392 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
7393
7394 * bookmark.el (bookmark-make-record-default): Allow unneeded
7395 information to be omitted from the record.
7396
7397 Adjust declarations and calls:
7398
7399 * info.el (bookmark-make-record-default): Adjust declaration.
7400 (Info-bookmark-make-record): Adjust call.
7401
7402 * woman.el (bookmark-make-record-default): Adjust declaration.
7403 (woman-bookmark-make-record): Adjust call.
7404
7405 * man.el (bookmark-make-record-default): Adjust declaration.
7406 (Man-bookmark-make-record): Adjust call.
7407
7408 * image-mode.el (bookmark-make-record-default): Adjust declaration.
7409
7410 * doc-view.el (bookmark-make-record-default): Adjust declaration.
7411
0c4371fe
KF
74122010-07-13 Karl Fogel <kfogel@red-bean.com>
7413
7414 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
7415 This is also from Thierry Volpiatto's patch in bug #6444. However,
7416 because it was extraneous to the functional change in that patch,
7417 and causes a re-indendation, I am committing it separately.
7418
2bb8db3e 74192010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
068a0233
KF
7420
7421 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
7422 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
2bb8db3e 7423 Patch applied by Karl Fogel (Bug#6444).
068a0233 7424
21bd02a6
CY
74252010-07-13 Chong Yidong <cyd@stupidchicken.com>
7426
7427 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
7428
79cb9c05
AR
74292010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
7430
7431 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
7432 Dempsky; bug#5084). Remove incorrect binding for S-tab.
7433 (ns-alternatives-map): Change S-tab binding to backtab
7434 (bug#6616).
7435
7436 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
7437 under ns.
7438
beb000f9
AS
74392010-07-12 Andreas Schwab <schwab@linux-m68k.org>
7440
dd86ea11
JB
7441 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
7442 (Bug#5806)
e9952282 7443
beb000f9
AS
7444 * language/tv-util.el (tai-viet-re): Remove format.
7445
6f2cdcd1
KH
74462010-07-12 Kenichi Handa <handa@m17n.org>
7447
dd86ea11
JB
7448 * language/hebrew.el: Remove no-byte-compile declaration.
7449 Change coding: tag to utf-8. Register hebrew-shape-gstring in
6f2cdcd1
KH
7450 composition-function-table for 3-character looking back.
7451 (hebrew-font-get-precomposed): New function.
7452 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
7453
f479ef6e
CY
74542010-07-11 Chong Yidong <cyd@stupidchicken.com>
7455
7456 * mouse.el (mouse-drag-track): Handle select-active-regions
7457 (Bug#6612).
7458
3277c1ee
MA
74592010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
7460
7461 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
7462 empty argument to gvfs-copy.
7463
3260caf8
GM
74642010-07-10 Glenn Morris <rgm@gnu.org>
7465
7466 * calendar/calendar.el (calendar-week-end-day): New function.
7467 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
7468 Respect calendar-week-start-day. (Bug#6606)
7469 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
7470 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
7471 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
7472 respect calendar-week-start-day.
7473
c876b263
CY
74742010-07-10 Chong Yidong <cyd@stupidchicken.com>
7475
7476 * simple.el (use-region-p): Doc fix (Bug#6607).
7477
dce34635
AG
74782010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
7479
6a7662bb
BR
7480 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7481 Add regexps for cucumber and ruby.
dce34635 7482
c0397930
DU
74832010-07-08 Daiki Ueno <ueno@unixuser.org>
7484
7485 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
7486 (epa-file-insert-file-contents): Hack to prevent
192cfe77 7487 find-file from opening empty buffer when decryption failed
c0397930
DU
7488 (bug#6568).
7489
fd5539c6
AM
74902010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
7491
a628ad9d
JB
7492 * textmodes/ispell.el (ispell-alternate-dictionary):
7493 Use file-readable-p.
fd5539c6
AM
7494 Return nil if no word-list is found at default locations.
7495 (ispell-complete-word-dict): Default to nil.
7496 (ispell-command-loop): Use 'word-list' when using lookup-words.
7497 (lookup-words): Use ispell-complete-word-dict or
7498 ispell-alternate-dictionary. Check for word-list availability
7499 and handle errors if needed with better messages (Bug#6539).
7500 (ispell-complete-word): Use ispell-complete-word-dict or
7501 ispell-alternate-dictionary.
7502
4565b08e
CS
75032010-07-07 Christoph Scholtes <cschol2112@gmail.com>
7504
7505 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
7506 builtins (BufferError, BytesWarning, WindowsError; callables
7507 bin, bytearray, bytes, format, memoryview, next, print; __package__).
7508
a2c270e7
GM
75092010-07-07 Glenn Morris <rgm@gnu.org>
7510
7511 * play/zone.el (top-level): Do not require timer, tabify, or cl.
7512 (zone-shift-left): Ignore intangibility, and any errors from
7513 forward-char.
7514 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
7515 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
7516 deleting, and copying text properties.
7517 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
7518 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
7519 to point-max is hard.
7520 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
7521 (zone-fill-out-screen): Ignore intangibility.
7522
81133808
CY
75232010-07-05 Chong Yidong <cyd@stupidchicken.com>
7524
4ad11f8c
CY
7525 * menu-bar.el (menu-bar-mode):
7526 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
7527 if it has been set.
7528
81133808
CY
7529 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
7530 word/line selection (Bug#6565).
7531
b24344ca
JB
75322010-07-04 Juanma Barranquero <lekktu@gmail.com>
7533
7534 * net/dbus.el (dbus-send-signal): Declare function.
7535
b1ce08da
MA
75362010-07-04 Michael Albinus <michael.albinus@gmx.de>
7537
7538 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
7539 (dbus-register-property): New optional argument EMITS-SIGNAL.
7540 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
7541
5592c08f
CY
75422010-07-03 Chong Yidong <cyd@stupidchicken.com>
7543
7544 * mouse.el (mouse-drag-overlay): Variable deleted.
7545 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
7546 (mouse--remap-link-click-p): New function.
7547 (mouse-drag-track): Handle dragging by using temporary Transient
7548 Mark mode, instead of a special overlay.
7549 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
7550 mouse-show-mark.
7551
7552 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
7553 deleted.
7554
a6ed0e28
JL
75552010-07-02 Juri Linkov <juri@jurta.org>
7556
7557 * autoinsert.el (auto-insert-alist): Fix readability
7558 by using dotted pair notation for lambda.
7559
c91e692b
JL
75602010-07-02 Juri Linkov <juri@jurta.org>
7561
7562 * faces.el (read-face-name): Rename arg `string-describing-default'
7563 to `default'. Doc fix. Display the default value in quotes
7564 in the prompt. With empty input, return the `default' arg,
7565 unless the default value is a string (in which case return nil).
7566 (describe-face): Replace the string `default' arg of `read-face-name'
7567 with the symbol `default'.
7568
23640f8f
CY
75692010-07-02 Chong Yidong <cyd@stupidchicken.com>
7570
7571 * emulation/viper-cmd.el (viper-delete-backward-char)
7572 (viper-del-backward-char-in-insert)
7573 (viper-del-backward-char-in-replace, viper-change)
7574 (viper-backward-indent): Replace delete-backward-char with
7575 delete-char (Bug#6552).
7576
b32d1614
CY
75772010-07-01 Chong Yidong <cyd@stupidchicken.com>
7578
7579 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
7580
c1ef4455
CY
75812010-06-30 Chong Yidong <cyd@stupidchicken.com>
7582
7583 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
7584 argument passed to frame-creation-function (Bug#5378).
7585
7586 * faces.el (x-handle-named-frame-geometry)
7587 (x-handle-reverse-video, x-create-frame-with-faces)
6a7662bb
BR
7588 (face-set-after-frame-default, tty-create-frame-with-faces):
7589 Don't separately consult default-frame-alist. It is now passed as the
c1ef4455
CY
7590 PARAMETER argument.
7591
55702e89
AS
75922010-06-30 Andreas Schwab <schwab@linux-m68k.org>
7593
7594 * startup.el (command-line): Don't call tool-bar-setup in a
7595 tty-only build.
7596
dc9a226c
CY
75972010-06-30 Chong Yidong <cyd@stupidchicken.com>
7598
7599 * ruler-mode.el (ruler--save-header-line-format): New fun.
7600 (ruler-mode): Use it as a setter function, so as not to overwrite
7601 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
7602
a2f043d3
CY
76032010-06-29 Chong Yidong <cyd@stupidchicken.com>
7604
7605 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
7606 (vc-root-diff, vc-print-root-log, vc-log-incoming)
7607 (vc-log-outgoing): Use it.
7608 (vc-diff-internal): Set diff-vc-backend.
7609
7610 * vc/diff-mode.el (diff-vc-backend): New var.
7611
62d115ef
J
76122010-06-28 Jan Djärv <jan.h.d@swipnet.se>
7613
6a7662bb
BR
7614 * dynamic-setting.el (font-setting-change-default-font):
7615 Remove call to message.
62d115ef 7616
1180f752
KH
76172010-06-28 Kenichi Handa <handa@m17n.org>
7618
7619 * international/quail.el (quail-insert-kbd-layout): Fix the
7620 showing of untranslated characters.
7621
b9229673
CY
76222010-06-28 Chong Yidong <cyd@stupidchicken.com>
7623
7624 * simple.el (delete-active-region): New option.
7625 (delete-backward-char): Implement in Lisp.
7626 (delete-forward-char): New command.
7627
7628 * mouse.el (mouse-region-delete-keys): Deleted.
7629 (mouse-show-mark): Simplify.
7630
7631 * bindings.el (global-map): Bind delete and DEL, the former to
7632 delete-forward-char.
7633
a628ad9d 76342010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
2286174e
CY
7635
7636 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
7637 (ruby-mode): Bind indent-line-function (Bug#5119).
7638
3468f435
CY
76392010-06-27 Chong Yidong <cyd@stupidchicken.com>
7640
7641 * startup.el (command-line): Recognize "0" X resource value.
7642
6431f2e6
CY
76432010-06-27 Chong Yidong <cyd@stupidchicken.com>
7644
7645 * startup.el (command-line): Use X resources to set the value of
7646 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
7647
7648 * menu-bar.el (menu-bar-mode):
7649 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
7650 Set init-value to t.
7651
7652 * frame.el (frame-notice-user-settings): Don't change
7653 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
7654 vice versa (Bug#2249).
7655
b61dfbe2
EZ
76562010-06-26 Eli Zaretskii <eliz@gnu.org>
7657
7658 * w32-fns.el (w32-convert-standard-filename): Doc fix.
7659
f5cbf40e
AM
76602010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
7661
a628ad9d
JB
7662 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
7663 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
f5cbf40e 7664
a628ad9d 7665 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
dd86ea11 7666 default directories are expanded (Bug#6143).
f5cbf40e 7667
8f3b8a5f
JL
76682010-06-24 Juri Linkov <juri@jurta.org>
7669
7670 * minibuffer.el (completions-format): Change default from nil to
7671 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
7672
5af72a47
JL
76732010-06-24 Juri Linkov <juri@jurta.org>
7674
7675 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
7676 buffer-locally to lambda that re-runs the vc diff command.
7677 (Bug#6447)
7678
8f804316
CY
76792010-06-24 Chong Yidong <cyd@stupidchicken.com>
7680
7681 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
7682 echo area is in use (Bug#3412).
7683
be19ef0b
GM
76842010-06-22 Glenn Morris <rgm@gnu.org>
7685
6555773f
GM
7686 * textmodes/texinfmt.el (texinfo-format-region)
7687 (texinfo-raise-lower-sections, texinfo-format-separate-node)
7688 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
7689 (texinfo-format-option, texinfo-noindent):
7690 Use line-beginning-position and line-end-position.
7691
be19ef0b
GM
7692 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
7693 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
7694 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
7695 utf-8 characters.
7696
7f0b7b3e
KF
76972010-06-21 Karl Fogel <kfogel@red-bean.com>
7698
49554388
GM
7699 * play/zone.el (zone-fall-through-ws): Fix next-line ->
7700 forward-line fallout.
7701
e8579ebc
CY
77022010-07-06 Chong Yidong <cyd@stupidchicken.com>
7703
7704 * mouse.el (mouse-appearance-menu): Add docstring.
7705
7706 * help.el (describe-key): Print up-event using key-description.
7707
5d1cd8bd
MA
77082010-07-03 Michael Albinus <michael.albinus@gmx.de>
7709
7710 * net/zeroconf.el (zeroconf-resolve-service)
95b6d681 7711 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
5d1cd8bd
MA
7712 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
7713
112dbc0e
MA
77142010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
7715
7716 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
7717
d0cb23ca
DN
77182010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
7719
7720 Avoid displaying files with a nil state in vc-dir.
a628ad9d 7721 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
d0cb23ca
DN
7722 cases that cause insertion.
7723 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
7724 with a nil state.
7725
01b229d1
CY
77262010-06-30 Chong Yidong <cyd@stupidchicken.com>
7727
7728 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
7729
8bf1c786 77302010-06-29 Leo <sdl.web@gmail.com>
a354ac6a
LL
7731
7732 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
7733
dfc6544c
CY
77342010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
7735
7736 * generic-x.el (bat-generic-mode): Fix regexp for command line
7737 switches (Bug#5719).
7738
b7d4de51
CY
77392010-06-27 Masatake YAMATO <yamato@redhat.com>
7740
dfc6544c
CY
7741 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
7742 of nconc to avoid pure storage error (Bug#6239).
b7d4de51 7743
3726248f
CY
77442010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
7745
8bf1c786 7746 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
3726248f
CY
7747 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
7748 bindings of bookmark-automatically-show-annotations (Bug#6515).
7749
aca54191
EZ
77502010-06-25 Eli Zaretskii <eliz@gnu.org>
7751
7752 * arc-mode.el (archive-zip-extract): Don't quote the file name on
7753 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
7754
2330fa87
ŠN
77552010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
7756
7757 * comint.el (make-comint, make-comint-in-buffer): Mention return
7758 value in the docstrings. (Bug#6498)
7759
29115ca9
YR
77602010-06-24 Yoni Rabkin <yoni@rabkins.net>
7761
7762 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
7763 since it is not present when using some non-default switches.
7764
2c79f053
KF
77652010-06-23 Karl Fogel <kfogel@red-bean.com>
7766
7f0b7b3e
KF
7767 * simple.el (compose-mail): Fix doc string to refer to
7768 `compose-mail-user-agent-warnings', instead of to the
7769 nonexistent `compose-mail-check-user-agent'.
7770
43a91810
AM
77712010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
7772
7773 Fix an indentation bug:
7774
7775 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
7776 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
7777 of existing values.
7778
7779 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
7780 (c-clear->-pair-props-if-match-before): now return t when they've
7781 cleared properties, nil otherwise.
7782 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
7783 by taking account of the existing value.
7784
7785 * progmodes/cc-defs.el
7786 (c-clear-char-property-with-value-function): Fix this to clear the
7787 property rather than overwriting it with nil.
7788
8adb4c33
CY
77892010-06-20 Chong Yidong <cyd@stupidchicken.com>
7790
7791 * emacs-lisp/package.el (package-print-package): Add link to
7792 package description via describe-package.
7793 (describe-package-1): List package requirements. Add button to
7794 perform installation.
7795 (package-menu-describe-package): New command.
7796
7797 * help-mode.el (help-package): New button type.
7798
cced7584
CY
77992010-06-19 Chong Yidong <cyd@stupidchicken.com>
7800
7801 * emacs-lisp/package.el: Move package-list-packages binding to
7802 menu-bar.el.
7803 (describe-package, describe-package-1, package--dir): New funs.
7804 (package-activate-1): Use package--dir.
7805
7806 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
7807
7808 * help-mode.el (help-package-def): New button type.
7809
7810 * menu-bar.el: Move package-list-packages binding here from
7811 package.el.
7812
d148e8f9
GH
78132010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
7814
7815 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
7816
b1a03ef6
SM
78172010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
7818
7819 * emacs-lisp/edebug.el (edebug-read-list):
7820 Phase out old-style backquotes.
7821
dbd6da78
JL
78222010-06-17 Juri Linkov <juri@jurta.org>
7823
7824 * help-mode.el (help-mode): Set buffer-local variable
7825 revert-buffer-function to help-mode-revert-buffer.
7826 (help-mode-revert-buffer): New function.
7827
7828 * info.el (Info-revert-find-node): Check for major-mode Info-mode
7829 before popping to "*info*" (like in other Info functions).
7830 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
7831 old-history-forward. Pop to old-buffer-name or "*info*" to
7832 recreate the killed buffer. Set Info-history-forward from
7833 old-history-forward.
7834 (Info-breadcrumbs-depth): Add :group and :version.
7835
64eba874
DN
78362010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
7837
7838 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
7839
26508c03
AM
78402010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
7841
a628ad9d
JB
7842 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
7843 for languages like Portuguese with pt_{BR,PT} and no plain pt.
26508c03 7844
69582fcd
JB
78452010-06-17 Juanma Barranquero <lekktu@gmail.com>
7846
54ea2a0d
JB
7847 * emacs-lisp/package.el (package-menu-mode-map):
7848 Move initialization into declaration.
7849
69582fcd
JB
7850 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
7851
44198b6e
CY
78522010-06-17 Chong Yidong <cyd@stupidchicken.com>
7853
7854 * emacs-lisp/package.el (package-archive-base): Point to
7855 elpa.gnu.org.
7856 (package-enable, package-load-list): New defcustoms.
7857 (package-user-dir, package-directory-list): Turn into defcustoms.
7858 Don't include package-user-dir in package-directory-list.
7859 (package--builtins-base): Don't include Emacs as a "package".
7860 (package-subdirectory-regexp): New var.
7861 (package-load-all-descriptors, package-compute-transaction)
7862 (package-download-transaction): Obey package-load-list.
7863 (package-activate-1): Rename from package-do-activate.
7864 (package-list-packages-internal): Check package-load-list.
7865 (package-load-descriptor, package-generate-autoloads)
7866 (package-unpack, package-unpack-single)
6a7662bb
BR
7867 (package--read-archive-file, package-delete):
7868 Use expand-file-name.
44198b6e
CY
7869
7870 * emacs-lisp/package-x.el: New file. Package uploading
7871 functionality split out from package.el.
7872
95b6d681 7873 * startup.el (command-line): Load packages after reading init file.
44198b6e
CY
7874
78752010-06-17 Tom Tromey <tromey@redhat.com>
7876
7877 * emacs-lisp/package.el: New file.
7878
50d76a9f
DN
78792010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
7880
7881 Fix vc-annotate for renamed files when using Git.
76e3243a 7882 * vc/vc-git.el (vc-git-find-revision): Deal with empty results from
50d76a9f
DN
7883 ls-files. Doe not pass the object as a file name to cat-file, it
7884 is not a file name.
7885 (vc-git-annotate-command): Pass the file name using -- to avoid
7886 ambiguity with the revision.
7887 (vc-git-previous-revision): Pass a relative file name.
7888
6095a05b
GM
78892010-06-22 Glenn Morris <rgm@gnu.org>
7890
943375a6
GM
7891 * progmodes/js.el (js-mode-map): Use standard capitalization and
7892 ellipses for menu entries.
7893
6095a05b
GM
7894 * wid-edit.el (widget-complete): Doc fix.
7895
4514199e
JH
78962010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
7897
7898 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
7899
c4786d60
DN
79002010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
7901
11c46b39 7902 Fix annotating other revisions for renamed files in vc-annotate.
76e3243a 7903 * vc/vc-annotate.el (vc-annotate): Add an optional argument for the
11c46b39 7904 VC backend. Use it when non-nil.
a628ad9d 7905 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
07976ae3 7906 (Bug#6487).
11c46b39 7907
c4786d60 7908 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
76e3243a 7909 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
c4786d60
DN
7910 Do not pass the file name to the 'previous-revision call when we
7911 don't want a file diff. (Bug#6489)
7912
04ec0963
DN
79132010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
7914
11c46b39 7915 Fix finding revisions for renamed files in vc-annotate.
76e3243a 7916 * vc/vc.el (vc-find-revision): Add an optional argument for
04ec0963 7917 the VC backend. Use it when non-nil.
76e3243a 7918 * vc/vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
04ec0963
DN
7919 backend to vc-find-revision. (Bug#6487)
7920
c036381c
DN
79212010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
7922
7923 Fix reading file names in Git annotate buffers.
95b6d681
JB
7924 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line):
7925 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
c036381c 7926
05c123e6
AM
79272010-06-20 Alan Mackenzie <acm@muc.de>
7928
7929 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
7930 in file local variables, set it first.
7931
4111f0c7
GM
79322010-06-19 Glenn Morris <rgm@gnu.org>
7933
74739ffd
GM
7934 * descr-text.el (describe-char-unicode-data): Insert separating
7935 space when needed. (Bug#6422)
7936
4111f0c7
GM
7937 * progmodes/idlwave.el (idlwave-action-and-binding):
7938 Fix typo in 2009-12-03 change. (Bug#6450)
7939
e20f0421
SM
79402010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
7941
7942 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
7943 handling for `lambda' (misunderstanding).
7944
fb3e306a
JB
79452010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
7946
dd86ea11 7947 * calc/calc-poly.el (math-accum-factors): Make sure that
fb3e306a
JB
7948 constants aren't distributed after they are factored out.
7949
e020fb59
JL
79502010-06-16 Juri Linkov <juri@jurta.org>
7951
7952 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
7953 `list-colors-print'. (Bug#6332)
7954
b8add347
SM
7955 * subr.el (read-quoted-char): Fix up last change (bug#6290).
7956
36901266
SM
79572010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
7958
49b2e83d
SM
7959 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
7960 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
7961
36901266
SM
7962 * font-lock.el (font-lock-major-mode): Rename from
7963 font-lock-mode-major-mode to distinguish it from
7964 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
7965 (font-lock-set-defaults):
7966 * font-core.el (font-lock-default-function): Adjust users.
7967 (font-lock-mode): Don't set it at all.
7968
2a64315a 79692010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
12755d08 7970
76e3243a 7971 * vc/vc-annotate.el (vc-annotate): Use vc-read-revision.
12755d08 7972
2a64315a 79732010-06-16 Glenn Morris <rgm@gnu.org>
d7cd4abb
GM
7974
7975 * calendar/appt.el (appt-time-msg-list): Doc fix.
7976 (appt-check): Let-bind appt-warn-time.
7977 (appt-add): Make the 3rd argument optional.
7978 Simplify argument names. Doc fix. Check for integer WARNTIME.
7979 Only add WARNTIME to the output list if non-nil.
7980
2a64315a 79812010-06-16 Ivan Kanis <apple@kanis.eu>
a675c749
IK
7982
7983 * calendar/appt.el (appt-check): Let the 3rd element of
7984 appt-time-msg-list specify the warning time.
7985 (appt-add): Add new argument with the warning time. (Bug#5176)
7986
6a7662bb 79872010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
a9de35fe 7988
76e3243a 7989 * vc/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
a9de35fe
BR
7990 older than version 1.6. (Bug#6361)
7991
2a64315a 79922010-06-16 Helmut Eller <eller.helmut@gmail.com>
37a7e764
HE
7993
7994 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
7995 used by cl-do-arglist. (Bug#6408)
7996
30d7ac37
AM
79972010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
7998
6a7662bb
BR
7999 * textmodes/ispell.el (ispell-dictionary-base-alist):
8000 Fix portuguese casechars/not-casechars for missing 'çÇ'.
30d7ac37
AM
8001 Suggested by Rolando Pereira (bug#6434).
8002
8fd02581
JB
80032010-06-15 Juanma Barranquero <lekktu@gmail.com>
8004
8005 * facemenu.el (list-colors-sort): Doc fix.
8006
6a7662bb 80072010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
b15922cc
BR
8008
8009 * progmodes/sql.el (sql-connect-mysql): Fix typo.
8010
f0bf7c8e
JL
80112010-06-14 Juri Linkov <juri@jurta.org>
8012
8013 Add sort option `list-colors-sort'. (Bug#6332)
8014 * facemenu.el (color-rgb-to-hsv): New function.
8015 (list-colors-sort): New defcustom.
8016 (list-colors-sort-key): New function.
8017 (list-colors-display): Doc fix. Sort list according to the option
8018 `list-colors-sort'.
8019 (list-colors-print): Add HSV values to `help-echo' property of
8020 RGB strings.
8021
c42fe9a5
JL
80222010-06-14 Juri Linkov <juri@jurta.org>
8023
8024 * compare-w.el: Move to the "vc" subdirectory.
8025
b263a4c4
SM
80262010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
8027
d8b0cddd
SM
8028 * image-mode.el (image-mode-map): Remap left-char and right-char.
8029
b263a4c4
SM
8030 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
8031
89877f5f
CY
80322010-06-12 Chong Yidong <cyd@stupidchicken.com>
8033
133a8d82
CY
8034 * term/common-win.el (x-colors): Add all the color names defined
8035 in rgb.txt (Bug#6332).
8036
89877f5f
CY
8037 * facemenu.el (list-colors-print): Don't print extra names if it
8038 will overflow the window width.
8039
8040 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
133a8d82 8041 change (Bug#6343).
89877f5f 8042
9d1f18b5
EZ
80432010-06-12 Eli Zaretskii <eliz@gnu.org>
8044
8045 * files.el (make-directory): Doc fix (bug#6396).
8046
b81a0b56
MA
80472010-06-12 Michael Albinus <michael.albinus@gmx.de>
8048
8049 * net/tramp.el (tramp-remote-process-environment): Protect version
8050 string by apostroph.
8051 (tramp-shell-prompt-pattern): Do not use a shy group in case of
8052 XEmacs.
8053 (tramp-file-name-for-operation): Add `call-process-region'.
8054 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
8055
8056 * net/tramp-compat.el (top): Do not autoload
8057 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
8058 only when `start-file-process' is not bound.
8059 (tramp-advice-file-expand-wildcards): Do not use
8060 `tramp-handle-file-remote-p'.
8061 (tramp-compat-make-temp-file): Handle the case, that
8062 `make-temp-file' has no third argument EXTENSION.
8063
69f18acc
JB
80642010-06-11 Juanma Barranquero <lekktu@gmail.com>
8065
5fee75d4
JB
8066 * makefile.w32-in (WINS_BASIC): Include new directory vc.
8067
69f18acc
JB
8068 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
8069
9766adfb
JL
80702010-06-11 Juri Linkov <juri@jurta.org>
8071
8072 * finder.el (finder-known-keywords): Add keyword "vc"
8073 for version control.
8074
8075 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
8076 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
8077 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
8078 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
8079
56b2854f
JL
80802010-06-11 Juri Linkov <juri@jurta.org>
8081
8082 Move version control related files to the "vc" subdirectory.
8083 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
8084 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
8085 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
8086 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
8087 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
8088 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
8089 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
8090 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
8091 Move files to the "vc" subdirectory.
8092
6534e58a
CY
80932010-06-11 Chong Yidong <cyd@stupidchicken.com>
8094
8095 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
8096 (Bug#6367).
8097
84d9562f
SE
80982010-06-11 Stephen Eglen <stephen@gnu.org>
8099
8100 * shell.el: Bind `shell-resync-dirs' to M-RET.
8101
3ef0a6a5
MA
81022010-06-10 Michael Albinus <michael.albinus@gmx.de>
8103
8104 * notifications.el: Move file from lisp/net, because it is
8105 supposed to talk locally to the user.
8106
fa4003da
MA
81072010-06-10 Julien Danjou <julien@danjou.info>
8108
8109 * net/notifications.el (notifications-on-action-signal)
8110 (notifications-on-closed-signal): Pass notification id as first
b81a0b56 8111 argument to the callback functions. Add docstrings.
fa4003da
MA
8112 (notifications-notify): Fix docstring.
8113
46e6650e
GM
81142010-06-10 Glenn Morris <rgm@gnu.org>
8115
8116 * emacs-lisp/authors.el (authors-ignored-files)
8117 (authors-valid-file-names): Add some files.
8118
a71832f7
SM
81192010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
8120
8121 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
8122 merge conflict, giving preference to the emacs-23 version of the code.
8123
8c6eab5a
SM
81242010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
8125
989bc97f
SM
8126 * emacs-lisp/advice.el (ad-compile-function):
8127 Define warning-suppress-types before we let-bind it (bug#6275).
8128
8c6eab5a
SM
8129 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
8130 declare it, make it buffer-local and permanent-local (bug#6324).
8131 (vc-resynch-window): Adjust name.
8132 * vc-hooks.el (vc-find-file-hook): Adjust name.
8133
890a18d6
MA
81342010-06-09 Michael Albinus <michael.albinus@gmx.de>
8135
8136 * net/notifications.el (notifications-notify): Fix docstring.
8137
bf3e70eb
JB
81382010-06-09 Juanma Barranquero <lekktu@gmail.com>
8139
8140 Update to Unicode 6.0.0 beta.
8141 * international/charprop.el: Update copyright.
8142 * international/mule-cmds.el (ucs-names): Update character ranges.
8143 * international/uni-bidi.el:
8144 * international/uni-category.el:
8145 * international/uni-combining.el:
8146 * international/uni-comment.el:
8147 * international/uni-decimal.el:
8148 * international/uni-decomposition.el:
8149 * international/uni-digit.el:
8150 * international/uni-lowercase.el:
8151 * international/uni-mirrored.el:
8152 * international/uni-name.el:
8153 * international/uni-numeric.el:
8154 * international/uni-old-name.el:
8155 * international/uni-titlecase.el:
8156 * international/uni-uppercase.el: Regenerate.
8157
b978141d
JB
81582010-06-09 Juanma Barranquero <lekktu@gmail.com>
8159
ee8359ba
JB
8160 * emacs-lisp/smie.el (comment-string-strip): Declare function.
8161 (smie-precs-precedence-table): Fix typo in docstring.
8162
f64ab8fb
JB
8163 * vc-mtn.el (log-edit-extract-headers): Declare function.
8164
883ffa8c
JB
8165 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
8166
b978141d
JB
8167 * net/notifications.el (dbus-register-signal): Declare function.
8168 (notifications-notify): Fix typos and reflow docstring.
8169
5f4f2ae4
DN
81702010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
8171
8172 Improve VC create/retrieve tag/branch.
8173 * vc.el (vc-create-tag): Do not read the directory name for VCs
8174 with repository revision granularity. Adjust the tag/branch
8175 prompt. Reset VC properties.
8176 (vc-retrieve-tag): Do not read the directory name for VCs
8177 with repository revision granularity. Reset VC properties.
8178
41a86354
MA
81792010-06-09 Julien Danjou <julien@danjou.info>
8180
ef33fd34 8181 * net/notifications.el: New file.
41a86354 8182
fab43c76
DN
81832010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
8184
00fd1147
DN
8185 Add optional support for resetting VC properties.
8186 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
8187 call vc-file-clearprops when true.
8188 (vc-resynch-buffer): Add new optional argument, pass it down.
8189 (vc-resynch-buffers-in-directory): Likewise.
8190
fab43c76
DN
8191 Improve support for special markup in the VC commit message.
8192 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
8193 * vc-hg.el (vc-hg-checkin): Add support for Date:.
8194 * vc-git.el (vc-git-checkin):
8195 * vc-bzr.el (vc-bzr-checkin): Likewise.
8196
e7d67e73
SM
81972010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
8198
8199 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
8200 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
8201
277e6741
MP
82022010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
8203
8204 * iimage.el: Remove images as soon as the underlying text is modified.
8205 (iimage-modification-hook): New function.
8206 (iimage-mode-buffer): Use it.
8207
83156c18
SM
82082010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
8209
8210 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
8211 smie-indent-offset-after. Add :prev case. Make a bit more generic.
8212 (smie-indent-virtual): Remove `virtual' arg. Update callers.
8213 (smie-indent-keyword): Add handling of open-paren keywords.
8214 (smie-indent-comment-continue): Don't assume comment-continue.
8215
13b5221f
MR
82162010-06-07 Martin Rudalics <rudalics@gmx.at>
8217
8218 * window.el (pop-to-buffer): Remove the conditional that
8219 compares new-window and old-window, so it will reselect
8220 the selected window unconditionally.
8221 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
8222
c2ea5810
SM
82232010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
8224
8225 * emacs-lisp/smie.el (smie-indent-offset-after)
8226 (smie-indent-forward-token, smie-indent-backward-token): New functions.
8227 (smie-indent-after-keyword): Use them.
8228 (smie-indent-fixindent): Only applies to the indentation of the BOL.
8229 (smie-indent-keyword): Tweak the black magic.
8230 (smie-indent-comment-continue): Strip comment-continue before use.
8231 (smie-indent-functions): Indent comments before keywords.
8232
27dd3c11
JL
82332010-06-06 Juri Linkov <juri@jurta.org>
8234
8235 * isearch.el (isearch-lazy-highlight-search): Fix looping
8236 by checking for empty match. This syncs this loop with the
8237 similar loop in `isearch-search'. (Bug#6362)
8238
35b148ee
JB
82392010-06-05 Juanma Barranquero <lekktu@gmail.com>
8240
8241 * net/dbus.el (dbus-register-method): Declare function.
8242 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
8243 (dbus-introspect): Doc fix.
8244 (dbus-event-bus-name, dbus-introspect-get-interface)
8245 (dbus-introspect-get-argument): Reflow docstrings.
8246
eccdfe5f
DN
82472010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
8248
8249 vc-log-incoming/vc-log-outgoing fixes for Git.
8250 * vc-git.el (vc-git-log-view-mode): Fix font lock for
8251 incoming/outgoing logs.
8252 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
8253 instead of vc-git-compute-remote.
8254 (vc-git-compute-remote): Remove.
8255
86253dc0
CY
82562010-06-04 Chong Yidong <cyd@stupidchicken.com>
8257
8258 * term/common-win.el (x-colors): Add "dark green" and "dark
8259 turquoise" (Bug#6332).
8260
0665f661
JL
82612010-06-04 Juri Linkov <juri@jurta.org>
8262
8263 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
8264 Instead of setting `replace' to t and replacing the same string
8265 with itself, don't do certain actions when
8266 kill-do-not-save-duplicates is non-nil and string is equal to car
8267 of kill-ring: don't call menu-bar-update-yank-menu, don't push
8268 interprogram-paste strings to kill-ring, and don't push the input
8269 argument `string' to kill-ring.
8270 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
8271
087fc47a
JB
82722010-06-04 Juanma Barranquero <lekktu@gmail.com>
8273
8274 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
8275
4f201088
MA
82762010-06-04 Michael Albinus <michael.albinus@gmx.de>
8277
8278 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
8279 (tramp-gvfs-handler-mounted-unmounted)
8280 (tramp-gvfs-connection-mounted-p): Handle default-location.
8281
8282 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
8283 move files to trash.
8284
18ccd78a
JB
82852010-06-04 Juanma Barranquero <lekktu@gmail.com>
8286
8287 * international/mule-cmds.el (nonascii-insert-offset)
8288 (nonascii-translation-table): Add obsolescence information.
8289
8290 * international/mule.el (make-translation-table-from-vector): Doc fix.
8291
3845c322
GM
82922010-06-03 Glenn Morris <rgm@gnu.org>
8293
8294 * desktop.el (desktop-clear-preserve-buffers):
8295 Add "*Warnings*" buffer. (Bug#6336)
8296
54d3626e
DN
82972010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
8298
6941ffec
DN
8299 vc-log-incoming/vc-log-outgoing improvements for Git.
8300 * vc-git.el (vc-git-log-outgoing): Use the same format as the
8301 short log.
8302 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
8303
54d3626e
DN
8304 Add bindings for vc-log-incoming and vc-log-outgoing.
8305 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
8306 and vc-log-outgoing.
8307 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
8308 and vc-log-outgoing.
8309
aa1bc616
CY
83102010-06-03 Chong Yidong <cyd@stupidchicken.com>
8311
8312 * net/rcirc.el (rcirc-sort-nicknames): Remove.
8313 (rcirc-handler-366): Always sort nicknames.
8314
e2d2a205
JB
83152010-06-03 Juanma Barranquero <lekktu@gmail.com>
8316
8317 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
8318
44ea155d
CY
83192010-06-03 Chong Yidong <cyd@stupidchicken.com>
8320
a628ad9d 8321 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
44ea155d 8322
a91dedc4
SM
83232010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
8324
8325 * net/rcirc.el (rcirc-sort-nicknames): Change default.
8326 (rcirc-sort-nicknames-join): Avoid setq.
8327
c62bf05a
DD
83282010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
8329
8330 * net/rcirc.el (rcirc-sort-nicknames): New custom.
8331 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
8332 (rcirc-handler-366): Use them.
8333
dd2c3c92
SM
83342010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
8335
8336 Split smie-indent-calculate into more manageable chunks.
8337 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
8338 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
8339 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
8340 (smie-indent-exps): Extract from smie-indent-calculate.
8341 (smie-indent-functions): New var.
8342 (smie-indent-functions): Use them.
8343
927c346b
SM
83442010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
8345
8346 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
8347 (smie-indent-calculate): Simplify and cleanup.
8348
1efeec86
MA
83492010-06-02 Michael Albinus <michael.albinus@gmx.de>
8350
8351 * net/tramp-gvfs.el (top): Require url-util.
927c346b
SM
8352 (tramp-gvfs-mount-point): Remove.
8353 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
8354 New defuns.
1efeec86
MA
8355 (with-tramp-dbus-call-method): Format trace message.
8356 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
927c346b
SM
8357 Implement backup call, when operation on local files fails.
8358 Use progress reporter. Flush properties of changed files.
1efeec86
MA
8359 (tramp-gvfs-handle-make-directory): Make more traces.
8360 (tramp-gvfs-url-file-name): Hexify file name in url.
8361 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
8362 into account for the resulting file name.
8363 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
8364 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
8365 (tramp-gvfs-handler-mounted-unmounted)
8366 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
8367 attribute "default_location". Set "prefix" property.
8368 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
8369 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
8370 exists. Raise an error, if not (due to a corresponding answer
8371 "no" in interactive questions, for example).
8372
89877f5f 83732010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
9cac248c
DN
8374
8375 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
8376
24f574a9
JB
83772010-06-01 Juanma Barranquero <lekktu@gmail.com>
8378
8379 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
8380 right-*. (Bug#6265)
8381
290736f2
DN
83822010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
8383
61158bfa
DN
8384 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
8385 * vc-git.el (vc-git-compute-remote): New function.
8386 (vc-git-log-outgoing): Use it instead of hard coding a value.
8387 (vc-git-log-incoming): New function.
8388
5828f6ca
DN
8389 Improve state updating for VC tag commands.
8390 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
8391 to update the state of all buffers in the directory.
8392
290736f2
DN
8393 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
8394
feceda26
SM
83952010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
8396
8397 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
8398 `file-directory-p' to the filename part rather than to the whole text.
8399
896114cf
SM
84002010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
8401
8402 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
8403
1603358c
DA
84042010-05-31 Drew Adams <drew.adams@oracle.com>
8405
8406 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
8407
fe40dc63
JB
84082010-05-31 Juanma Barranquero <lekktu@gmail.com>
8409
8410 * subr.el (momentary-string-display): Just use read-event to read
8411 the exit event (Bug#6238).
8412
9e8014c6
EZ
84132010-05-30 Eli Zaretskii <eliz@gnu.org>
8414
8415 * international/mule.el (define-coding-system): Doc fix (bug#6313).
8416
61a08071
JB
84172010-05-30 Juanma Barranquero <lekktu@gmail.com>
8418
8419 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
8420 Suggested by Eli Zaretskii <eliz@gnu.org>.
8421
5feec8ca
SM
84222010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
8423
8424 * minibuffer.el (completion-file-name-table): Don't return a boundary
8425 past the end of `string' (bug#6299).
8426 (completion--file-name-table): Delegate to completion-file-name-table
8427 for the `boundaries' case.
8428
8175cb90
JB
84292010-05-30 Juanma Barranquero <lekktu@gmail.com>
8430
2b94133f
JB
8431 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
8432 movement commands.
8433
8175cb90
JB
8434 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
8435 `path-separator', but maintain compatibility with Emacs 20.2.
8436
0191e222
CY
84372010-05-29 Chong Yidong <cyd@stupidchicken.com>
8438
8439 * server.el (server-process-filter): Receive parent-id argument
8440 from emacsclient.
8441 (server-create-window-system-frame): New arg. Pass parent-id as
8442 frame parameter.
8443
9b655a0a
EZ
84442010-05-29 Eli Zaretskii <eliz@gnu.org>
8445
db5dce9d
EZ
8446 Bidi-sensitive word movement with arrow keys.
8447 * subr.el (right-arrow-command, left-arrow-command): Move to
8448 bindings.el.
8449
8450 * bindings.el (right-char, left-char): Move from subr.el and
8451 rename from right-arrow-command and left-arrow-command.
8452 (right-word, left-word): New functions.
8453 (global-map) <right>: Bind to right-char.
8454 (global-map) <left>: Bind to left-char.
8455 (global-map) <C-right>: Bind to right-word.
8456 (global-map) <C-left>: Bind to left-word.
8457
9b655a0a
EZ
8458 * ls-lisp.el (ls-lisp-classify-file): New function.
8459 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
8460 (ls-lisp-classify): Call ls-lisp-classify-file.
8461 (insert-directory): Remove blanks from switches.
8462
fcb52808
CY
84632010-05-29 Chong Yidong <cyd@stupidchicken.com>
8464
8465 * ansi-color.el: Delete unused escape sequences (Bug#6085).
8466 (ansi-color-drop-regexp): New constant.
8467 (ansi-color-apply, ansi-color-filter-region)
896114cf 8468 (ansi-color-apply-on-region): Delete unrecognized control sequences.
fcb52808
CY
8469 (ansi-color-apply): Build string list before calling concat.
8470
0040735a
JL
84712010-05-28 Juri Linkov <juri@jurta.org>
8472
8473 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
8474 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
8475 (Bug#5270)
8476
b6827fff
MA
84772010-05-28 Michael Albinus <michael.albinus@gmx.de>
8478
8479 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
8480 to ignored backtrace functions.
8481 (with-progress-reporter): Expand docstring.
8482 (tramp-handle-delete-file): Implement TRASH argument.
8483 (tramp-get-remote-trash): New defun.
8484
eba082a2
MA
84852010-05-28 Michael Albinus <michael.albinus@gmx.de>
8486
6a7662bb
BR
8487 * net/tramp-compat.el (tramp-compat-delete-file):
8488 Use `symbol-value' for backward compatibility.
eba082a2
MA
8489
8490 * net/tramp.el (tramp-handle-make-symbolic-link)
8491 (tramp-handle-load)
8492 (tramp-do-copy-or-rename-file-via-buffer)
8493 (tramp-do-copy-or-rename-file-directly)
8494 (tramp-do-copy-or-rename-file-out-of-band)
8495 (tramp-handle-process-file, tramp-handle-call-process-region)
8496 (tramp-handle-shell-command, tramp-handle-file-local-copy)
8497 (tramp-handle-insert-file-contents, tramp-handle-write-region)
8498 (tramp-delete-temp-file-function): Use `delete-file' instead
8499 of `tramp-compat-delete-file'.
8500
8501 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
8502 (tramp-fish-handle-make-symbolic-link)
8503 (tramp-fish-handle-process-file): Use `delete-file' instead
8504 of `tramp-compat-delete-file'.
8505
6a7662bb
BR
8506 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
8507 Use `delete-file' instead of `tramp-compat-delete-file'.
eba082a2
MA
8508
8509 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
8510 (tramp-gvfs-handle-write-region): Use `delete-file' instead of
8511 `tramp-compat-delete-file'.
8512
6a7662bb
BR
8513 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file):
8514 Use `delete-file' instead of `tramp-compat-delete-file'.
eba082a2
MA
8515
8516 * net/tramp-smb.el (tramp-smb-handle-copy-file)
8517 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
8518 (tramp-smb-handle-write-region): Use `delete-file' instead of
8519 `tramp-compat-delete-file'.
8520 (tramp-smb-handle-delete-directory): Use 'trash as arg.
8521
f1a5d776
CY
85222010-05-27 Chong Yidong <cyd@stupidchicken.com>
8523
8524 * dired.el (dired-delete-file): New arg TRASH.
c4ce1145 8525 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
f1a5d776
CY
8526 (dired-do-flagged-delete, dired-do-delete): Use trash.
8527
8528 * speedbar.el (speedbar-item-delete): Allow trashing.
8529
8530 * files.el (delete-directory): New arg TRASH.
8531
8532 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
8533 (ange-ftp-rename-remote-to-remote)
8534 (ange-ftp-rename-local-to-remote)
8535 (ange-ftp-rename-remote-to-local, ange-ftp-load)
8536 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
8537 `delete-file'.
8538 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
8539 allow trashing.
8540
8541 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
8542 handle new TRASH arg of `delete-file'.
8543
c4ce1145 8544 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
f1a5d776
CY
8545 (tramp-handle-make-symbolic-link, tramp-handle-load)
8546 (tramp-do-copy-or-rename-file-via-buffer)
8547 (tramp-do-copy-or-rename-file-directly)
8548 (tramp-do-copy-or-rename-file-out-of-band)
8549 (tramp-handle-process-file, tramp-handle-call-process-region)
8550 (tramp-handle-shell-command, tramp-handle-file-local-copy)
8551 (tramp-handle-insert-file-contents, tramp-handle-write-region)
8552 (tramp-delete-temp-file-function): Use null TRASH arg in
8553 tramp-compat-delete-file call.
8554
8555 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
8556 (tramp-fish-handle-delete-file)
8557 (tramp-fish-handle-make-symbolic-link)
8558 (tramp-fish-handle-process-file): Use null TRASH arg in
8559 `tramp-compat-delete-file' call.
8560
8561 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
8562 arg in `tramp-compat-delete-file' call.
8563
8564 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
8565 (tramp-gvfs-handle-write-region): Use null TRASH arg in
8566 `tramp-compat-delete-file' call.
8567
8568 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
8569 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
8570 `tramp-compat-delete-file' call.
8571
8572 * net/tramp-smb.el (tramp-smb-handle-copy-file)
8573 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
8574 (tramp-smb-handle-write-region): Use null TRASH arg in
8575 tramp-compat-delete-file call.
8576 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
8577 (tramp-smb-handle-delete-file): Rename arg.
8578
8579 * diff.el (diff-sentinel):
8580 * epg.el (epg--make-temp-file, epg-decrypt-string)
8581 (epg-verify-string, epg-sign-string, epg-encrypt-string):
8582 * jka-compr.el (jka-compr-partial-uncompress)
8583 (jka-compr-call-process, jka-compr-write-region):
8584 * server.el (server-sentinel): Remove optional arg from
8585 delete-file, reverting 2010-05-03 change.
8586
ecb0ab90
CY
85872010-05-27 Chong Yidong <cyd@stupidchicken.com>
8588
6a7662bb
BR
8589 * progmodes/verilog-mode.el (verilog-type-font-keywords):
8590 Use font-lock-constant-face, not obsolete font-lock-reference-face.
ecb0ab90 8591
2b25da45
KH
85922010-05-27 Kenichi Handa <handa@m17n.org>
8593
8594 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
8595 element of GSTRING is nil.
8596
11e4d8c0
SM
85972010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
8598
8599 * emacs-lisp/smie.el (smie-forward-token-function)
8600 (smie-backward-token-function): New vars.
8601 (smie-backward-sexp, smie-forward-sexp)
8602 (smie-indent-hanging-p, smie-indent-calculate): Use them.
8603 (smie-default-backward-token): Rename from smie-backward-token and
8604 skip comments.
8605 (smie-default-forward-token): Rename from smie-forward-token and
8606 skip comments.
8607 (smie-next-sexp): Handle nil results from next-token.
8608 (smie-indent-calculate): Add a new case for special `fixindent' comments.
8609
4da3541b
CY
86102010-05-27 Chong Yidong <cyd@stupidchicken.com>
8611
896114cf
SM
8612 * progmodes/verilog-mode.el (verilog-type-font-keywords):
8613 Use font-lock-constant-face, not obsolete font-lock-reference-face.
4da3541b
CY
8614
86152010-05-27 Masatake YAMATO <yamato@redhat.com>
8616
8617 * htmlfontify.el (hfy-face-resolve-face): New function.
8618 (hfy-face-to-style): Use it (Bug#6279).
8619
6dc439cb
SM
86202010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
8621
8622 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
8623 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
8624
021eb8d7
GM
86252010-05-26 Glenn Morris <rgm@gnu.org>
8626
8627 * emulation/edt.el (edt-load-keys): Use locate-library.
8628
bef4957b
CY
86292010-05-25 Chong Yidong <cyd@stupidchicken.com>
8630
8631 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
8632 (log-edit-changelog-entries): Doc fix.
6dc439cb
SM
8633 (log-edit-changelog-insert-entries): Args changed.
8634 Rename relative filenames in ChangeLog entries. Delete tabs.
bef4957b
CY
8635 (log-edit-insert-changelog-entries): Reorganize return value of
8636 `log-edit-changelog-entries' to pass filenames to
8637 log-edit-changelog-insert-entries.
8638
84fb0956
TV
86392010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8640
8641 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
8642 `image-dired-dired-insert-marked-thumbs' to
8643 `image-dired-dired-toggle-marked-thumbs'.
8644
8645 * image-dired.el: Require cl when compiling.
8646 (image-dired-dired-toggle-marked-thumbs): Rename from
8647 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
8648 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
8649 to 'no-dir. Skip files whose names don't match
8650 `image-file-name-regexp'. When file has a thumbnail overlay,
8651 delete it. (Bug#5270)
8652
0fb1193d
JL
86532010-05-25 Juri Linkov <juri@jurta.org>
8654
8655 * image-mode.el (image-mode): Add image-after-revert-hook to
8656 after-revert-hook.
8657 (image-after-revert-hook): New function. (Bug#5669)
8658
fc937924
JL
86592010-05-25 Juri Linkov <juri@jurta.org>
8660
8661 * image.el (image-animated-p): When delay between animated images
8662 is 0, set it to 10 (0.1 sec). (Bug#6258)
8663
fa9ba953
MA
86642010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
8665
8666 * net/tramp.el (tramp-handle-insert-directory): Don't use
f5c8afe6 8667 `forward-word', its default syntax could be changed.
fa9ba953 8668
9e021389
MA
86692010-05-25 Michael Albinus <michael.albinus@gmx.de>
8670
8671 * net/tramp.el (tramp-progress-reporter-update): New defun.
8672 (with-progress-reporter): Use it.
8673 (tramp-process-actions):
6a7662bb
BR
8674 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion):
8675 Preserve current message, in order to let progress reporter continue
9e021389
MA
8676 afterwards. (Bug#6257)
8677
6169260b
GM
86782010-05-25 Glenn Morris <rgm@gnu.org>
8679
8680 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
8681 Add :version.
8682
d26781af
RY
86832010-05-25 Ryan Yeske <rcyeske@gmail.com>
8684
8826afe3 8685 * net/rcirc.el (rcirc-default-user-name): Change to "user".
d26781af
RY
8686 (rcirc-default-full-name): Change to "unknown".
8687 (rcirc-user-name-history): Add variable.
8826afe3
GM
8688
86892010-05-25 Ryan Yeske <rcyeske@gmail.com>
acd0102a 8690 Jonathan Rockway <jon@jrock.us>
8826afe3
GM
8691
8692 * net/rcirc.el (rcirc-server-alist): Add :pass.
8693 (rcirc): When prompting for connection parameters, also prompt for
d26781af 8694 username and password.
a628ad9d 8695 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
d26781af
RY
8696 value to server when connecting.
8697
d355a0b7
SM
86982010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
8699
f5228f84
SM
8700 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
8701 (smie-merge-prec2s): Pass the tables as separate args.
8702 (smie-bnf-precedence-table): Adjust call accordingly.
8703 (smie-prec2-levels): Set levels at the end.
8704
d355a0b7
SM
8705 Replace Lisp calls to delete-backward-char by delete-char.
8706 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
f5c8afe6
JB
8707 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
8708 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
76e3243a 8709 * calc/calc.el, emacs-lisp/cl-extra.el, emacs-lips/cl-loaddefs.el,
f5c8afe6
JB
8710 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
8711 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
8712 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
8713 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
8714 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
8715 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
8716 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
8717 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
8718 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
8719 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
d355a0b7
SM
8720 delete-backward-char by calls to delete-char.
8721
f668ef02
KH
87222010-05-25 Kenichi Handa <handa@m17n.org>
8723
8724 * language/hebrew.el (hebrew-shape-gstring): New function.
8725 Register it in composition-function-table for all Hebrew combining
8726 characters.
8727
397eb3f3
SM
87282010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
8729
8730 * epa.el (epa--select-keys): Don't explicitly delete the window since
8731 that can fail (e.g. sole window in frame). Use dedication instead.
8732
171eda53 87332010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
ab0c07c0
SM
8734
8735 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
8736
110683ad
CY
87372010-05-22 Chong Yidong <cyd@stupidchicken.com>
8738
8739 * image.el (image-refresh): Define as an alias for image-flush.
8740
8741 * image-mode.el (image-toggle-display-image): Caller changed.
8742
df9db151
JL
87432010-05-21 Juri Linkov <juri@jurta.org>
8744
8745 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
8746 Remove "all" from grep-files-aliases. Split grep-files-aliases by
8747 whitespace, call wildcard-to-regexp on substrings and concat them
8748 with "\\|". (Bug#6114)
8749
c0209c2c
AM
87502010-05-21 Alan Mackenzie <acm@muc.de>
8751
171eda53
SM
8752 * progmodes/cc-engine.el (c-parse-state-get-strategy):
8753 Replace parameter `here' with `here-' and `here-plus', which sandwich
8754 any pertinent CPP construct.
c0209c2c
AM
8755 (c-remove-stale-state-cache-backwards): Fix a bug which happens
8756 when doing (c-parse-state) in a CPP construct: Exclude any "new"
8757 CPP construct from taking part in the scanning.
8758
655bded0
MA
87592010-05-21 Michael Albinus <michael.albinus@gmx.de>
8760
8761 * net/tramp.el (tramp-do-copy-or-rename-file)
171eda53
SM
8762 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
8763 Tune `with-progress-reporter' messages.
655bded0
MA
8764 (tramp-handle-vc-registered):
8765 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
8766 (tramp-fish-handle-insert-file-contents)
8767 (tramp-fish-maybe-open-connection):
8768 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
8769 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
8770 (tramp-imap-handle-insert-file-contents)
8771 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
8772
3e17a1a7
JB
87732010-05-21 Juanma Barranquero <lekktu@gmail.com>
8774
bf1e8d4a
JB
8775 * add-log.el (change-log-font-lock-keywords):
8776 Highlight all authors in multi-author entries.
8777
3e17a1a7
JB
8778 * smerge-mode.el (smerge-refine-ignore-whitespace)
8779 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
8780 Fix typos in docstrings.
8781 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
8782
969e684a
GM
87832010-05-21 Glenn Morris <rgm@gnu.org>
8784
e75c1e7d
GM
8785 * progmodes/fortran.el (fortran-mode):
8786 * progmodes/f90.el (f90-mode): Derive from prog-mode.
8787
969e684a
GM
8788 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
8789 having a relative path in src/Makefile.in.
8790
a50878fa
KR
87912010-05-20 Kevin Ryde <user42@zip.com.au>
8792
8793 * help-mode.el (help-make-xrefs): For Info node links turn
8794 newlines into spaces. Link node names with newlines are matched
8795 by help-xref-info-regexp and buttonized, this change ensures they
8796 can be followed successfully with RET. (Bug#6206)
8797
f66a2f90
JL
87982010-05-20 Juri Linkov <juri@jurta.org>
8799
8800 * locate.el (locate): Use pop-to-buffer instead of
8801 switch-to-buffer-other-window. (Bug#6204)
8802
201d895a
JL
88032010-05-20 Juri Linkov <juri@jurta.org>
8804
8805 * replace.el (replace-highlight): Fix lazy-highlighting
8806 for `M-s w str M-% str RET'.
8807
1ddb2ea0
MY
88082009-12-15 Masatake YAMATO <yamato@redhat.com>
8809
8810 * isearch.el (isearch-yank-word-or-char): Pull next subword
8811 when `subword-mode' is activated. (Bug#6220)
8812
a6020335
MH
88132010-05-20 Mark A. Hershberger <mah@everybody.org>
8814
8815 * isearch.el (isearch-update-post-hook): New hook.
8816 (isearch-update): Use the new hook. (Bug#6225)
8817
50de6a38
JL
88182010-05-20 Juri Linkov <juri@jurta.org>
8819
8820 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
8821 [f1], [help], and (char-to-string help-char) instead of "\C-h".
8822 (Bug#6222)
8823
5d944a8f
JL
88242010-05-20 Juri Linkov <juri@jurta.org>
8825
8826 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
8827 (Bug#6223)
8828
f5d6548a
JL
88292010-05-20 Juri Linkov <juri@jurta.org>
8830
8831 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
8832 FILE-NAME to read from the minibuffer when called interactively
8833 with prefix argument instead of using buffer-file-name.
8834 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
8835
8836 * dired.el: Update autoloads.
8837
f8e63691
CY
88382010-05-20 Chong Yidong <cyd@stupidchicken.com>
8839
8840 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
8841 nxml-finish-element, for consistency with SGML mode.
8842
8843 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
8844 octave-close-block.
8845
07d7c3bd
JB
88462010-05-20 Juanma Barranquero <lekktu@gmail.com>
8847
8848 * composite.el: Require cl when compiling.
8849 (reference-point-alist, compose-gstring-for-graphic)
8850 (compose-gstring-for-terminal): Fix typos in docstrings.
8851
7bce8510
JL
88522010-05-19 Juri Linkov <juri@jurta.org>
8853
8854 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
8855 set-window-parameter.
8856
a7723e05
MA
88572010-05-19 Michael Albinus <michael.albinus@gmx.de>
8858
8859 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
8860 where appropriate.
8861 (tramp-maybe-open-connection): Use it.
8862
3f2e7735
EZ
88632010-05-19 Eli Zaretskii <eliz@gnu.org>
8864
8865 * simple.el (move-end-of-line): Make sure we are at line beginning
8866 before backing up to end of previous line.
8867
8d9181c7
MA
88682010-05-19 Michael Albinus <michael.albinus@gmx.de>
8869
8c4ec20f
MA
8870 * password-cache.el (password-cache-remove): Fix docstring.
8871
8d9181c7
MA
8872 * net/secrets.el: Autoload the widget functions.
8873 (secrets-search-items, secrets-create-item)
8874 (secrets-get-attributes, secrets-expand-item): Attributes will be
8875 stored on the password database without leading ":", as all other
8876 clients do as well.
8877 (secrets-mode): Fix docstring.
8878 (secrets-show-secrets): Provide it as autoloaded command only when
8879 D-Bus support is available. Check existence of Secret Service API.
8880
2a96c2a7
SM
88812010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
8882
8883 * indent.el (indent-region): Deactivate region (bug#6200).
8884
d24e10b1
GM
88852010-05-19 Glenn Morris <rgm@gnu.org>
8886
8887 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
8888
2833d915
KH
88892010-05-19 Kenichi Handa <handa@m17n.org>
8890
8891 * composite.el: Register compose-gstring-for-graphic in
d24e10b1 8892 composition-function-table only for combining characters (Mn, Mc, Me).
2833d915 8893
134c2f29
JB
88942010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
8895
8896 * calc/calc-trail.el (calc-trail-isearch-forward)
8897 (calc-trail-isearch-backward): Ensure that the new window
8898 point is set correctly.
8899
278847cd
SM
89002010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
8901
8902 * subr.el (read-quoted-char): Resolve modifiers after key
8903 remapping (bug#6212).
8904
3a8e7cbd
MA
89052010-05-18 Michael Albinus <michael.albinus@gmx.de>
8906
8907 Add visualization code for secrets.
8908 * net/secrets.el (secrets-mode): New major mode.
8909 (secrets-show-secrets, secrets-show-collections)
8910 (secrets-expand-collection, secrets-expand-item)
8911 (secrets-tree-widget-after-toggle-function)
8912 (secrets-tree-widget-show-password): New defuns.
8913
472e7ec1
SM
89142010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
8915
224b70cb
SM
8916 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
8917 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
8918 handled in smie-next-sexp.
8919 (smie-indent-calculate): Provide a starting indentation (so the
8920 recursion is well-founded ;-).
8921
472e7ec1
SM
8922 Fix handling of non-associative equal levels.
8923 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
8924 when it's not needed.
8925 (smie-op-left, smie-op-right): New functions.
8926 (smie-next-sexp): New function, extracted from smie-backward-sexp.
8927 Better handle equal levels to distinguish the associative case from
8928 the "multi-keyword construct" case.
8929 (smie-backward-sexp, smie-forward-sexp): Use it.
8930
35e53abd
JB
89312010-05-18 Juanma Barranquero <lekktu@gmail.com>
8932
5d8fe0ba
JB
8933 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
8934
35e53abd
JB
8935 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
8936 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
8937
5ad4bef5
SM
89382010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
8939
8940 Provide a simple generic indentation engine and use it for Prolog.
8941 * emacs-lisp/smie.el: New file.
8942 * progmodes/prolog.el (prolog-smie-op-levels)
8943 (prolog-smie-indent-rules): New var.
8944 (prolog-mode-variables): Use them to configure SMIE.
8945 (prolog-indent-line, prolog-indent-level): Remove.
8946
00681a3c
JB
89472010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
8948
560bb7ae 8949 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
00681a3c
JB
8950 order before computing the averages.
8951
eba62f7a
JB
89522010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
8953
597517ef 8954 * calc/calc-vec.el (calc-histogram):
5ad4bef5 8955 (calcFunc-histogram): Allow vectors as inputs.
597517ef
JB
8956 (math-vector-avg): New function.
8957
560bb7ae 8958 * calc/calc-ext.el (math-group-float): Have the number of digits
eba62f7a
JB
8959 being grouped depend on the radix (Bug#6189).
8960
8c5ff6dd
KR
89612010-05-15 Ken Raeburn <raeburn@raeburn.org>
8962
8963 * version.el (emacs-copyright, emacs-version): Don't define here,
8964 now that emacs.c defines it.
8965
98d8b17e
EZ
89662010-05-15 Eli Zaretskii <eliz@gnu.org>
8967
71078429
EZ
8968 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
8969 "Describe Language Environment" menu item.
8970
ce6233c1
EZ
8971 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
8972
d20e1419
EZ
8973 Bidi-sensitive movement with arrow keys.
8974 * subr.el (right-arrow-command, left-arrow-command): New functions.
8975
8976 * bindings.el (global-map): Bind them to right and left arrow keys.
8977
98d8b17e 8978 Don't override standard definition of convert-standard-filename.
6a7662bb
BR
8979 * files.el (convert-standard-filename):
8980 Call w32-convert-standard-filename and dos-convert-standard-filename on
98d8b17e
EZ
8981 the corresponding systems.
8982
8983 * w32-fns.el (w32-convert-standard-filename): Rename from
8984 convert-standard-filename. Doc fix.
8985
8986 * dos-fns.el (dos-convert-standard-filename): Doc fix.
8987 (convert-standard-filename): Don't defalias.
8988 (register-name-alist, make-register, register-value)
8989 (set-register-value, intdos): Obsolete aliases for the
8990 corresponding dos-* functions and variables.
8991 (dos-intdos): Add a doc string.
8992
ae6bc504
JB
89932010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
8994
8995 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
8996 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
8997 (math-compose-tex-func):
8998 * calc/calccomp.el (math-compose-expr):
8999 * calc/calc-ext.el (math-format-flat-expr-fancy):
9000 * calc/calc-store.el (calc-read-var-name):
9001 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
9002
9003 * calc/calc.el (var-π, var-φ, var-γ): New variables.
560bb7ae 9004 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
ae6bc504 9005 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
560bb7ae 9006 (math-standard-units): Add units.
ae6bc504 9007
c26ea4b2
SM
90082010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
9009
7aefa445 9010 * progmodes/asm-mode.el (asm-mode):
13973643
SM
9011 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
9012
c26ea4b2
SM
9013 * pcomplete.el (pcomplete-completions-at-point): New function,
9014 extracted from pcomplete-std-complete.
9015 (pcomplete-std-complete): Use it.
9016
02be533b
GM
90172010-05-15 Glenn Morris <rgm@gnu.org>
9018
9019 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
9020 Remove references to CVS, RCS and Old directories.
9021
78ed0efc
JB
90222010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
9023
ae6bc504 9024 * calc/calc-bin.el (math-format-twos-complement): Group digits when
78ed0efc
JB
9025 appropriate.
9026
10dcc561
SM
90272010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
9028
5ccaa359
SM
9029 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
9030 (sh-mode-syntax-table): Give it a default value instead.
9031 (sh-header-marker): Make buffer-local.
9032 (sh-mode): Move make-local-variable to the corresponding setq.
9033 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
9034 Use complete-with-action.
9035
10dcc561
SM
9036 * simple.el (prog-mode): New (abstract) major mode.
9037 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
9038 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
9039
c38762fd
JB
90402010-05-14 Juanma Barranquero <lekktu@gmail.com>
9041
9042 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
9043 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
9044 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
9045 (sql-make-alternate-buffer-name, sql-placeholders-filter)
9046 (sql-escape-newlines-filter, sql-input-sender)
9047 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
9048
2ef3c144
CY
90492010-05-13 Chong Yidong <cyd@stupidchicken.com>
9050
560bb7ae 9051 Add TeX open-block and close-block keybindings to SGML, and vice versa.
2ef3c144
CY
9052
9053 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
9054 latex-open-block and C-c / to latex-close-block.
9055
9056 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
9057 and C-c C-e to sgml-close-tag.
9058
3b30ccda
MA
90592010-05-13 Michael Albinus <michael.albinus@gmx.de>
9060
9061 * net/tramp.el (with-progress-reporter): Create reporter object
3a8e7cbd 9062 only when the message would be displayed. Handle nested calls.
3b30ccda
MA
9063 (tramp-handle-load, tramp-handle-file-local-copy)
9064 (tramp-handle-insert-file-contents, tramp-handle-write-region)
10dcc561
SM
9065 (tramp-maybe-send-script, tramp-find-shell):
9066 Use `with-progress-reporter'.
3b30ccda
MA
9067 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
9068 Fix message text.
9069
9070 * net/tramp-smb.el (tramp-smb-handle-copy-file)
9071 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
9072 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
9073 Use `with-progress-reporter'.
9074
57ff5d7b
AM
90752010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
9076
a628ad9d
JB
9077 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
9078 process everytime when spellchecking from the minibuffer (bug#6143).
57ff5d7b 9079
5a70d10f
SM
90802010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
9081
791ffe1c
SM
9082 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
9083
5a70d10f
SM
9084 * dos-fns.el: Add "dos-" prefix for namespace control.
9085 (convert-standard-filename): Define as alias for
9086 dos-convert-standard-filename but only if applicable.
9087
38d93f03
AM
90882010-05-12 Alan Mackenzie <acm@muc.de>
9089
9090 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
9091 Push the mark at the start of these functions when appropriate.
9092
902a6d8d
SM
90932010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
9094
9095 * minibuffer.el (completion-cycle-threshold): New custom var.
9096 (completion--do-completion): Use it.
9097 (minibuffer-complete): Use cycling if appropriate.
9098
9ee120ba
JB
90992010-05-11 Juanma Barranquero <lekktu@gmail.com>
9100
9101 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
9102 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
9103
841c4085
JL
91042010-05-11 Juri Linkov <juri@jurta.org>
9105
9106 * scroll-all.el (scroll-all-check-to-scroll):
9107 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
9108
8a67c70e
SM
91092010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
9110
f2b9ed18
SM
9111 * iimage.el (iimage-mode-map): Move initialization into declaration.
9112 (iimage-mode-buffer): Use with-silent-modifications.
9113 Simplify calling convention. Adjust callers.
9114 (iimage-mode): Don't run hook redundantly.
9115
8a67c70e
SM
9116 * minibuffer.el (completion-pcm--pattern->regex):
9117 Fix last change (bug#6160).
9118
4bbedd98
JL
91192010-05-10 Juri Linkov <juri@jurta.org>
9120
9121 Remove nodes visited during Isearch from the Info history.
9122 * info.el (Info-isearch-initial-history)
9123 (Info-isearch-initial-history-list): New variables.
9124 (Info-isearch-start): Record initial values of
9125 Info-isearch-initial-history and Info-isearch-initial-history-list.
9126 Add Info-isearch-end to isearch-mode-end-hook.
9127 (Info-isearch-end): New function.
9128
94ecf5da
MA
91292010-05-10 Michael Albinus <michael.albinus@gmx.de>
9130
9131 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
8a67c70e
SM
9132 format string, in order to work around a bug in pdksh.
9133 Reported by Gilles Pion <gpion@lfdj.com>.
94ecf5da
MA
9134 (tramp-handle-verify-visited-file-modtime): Do not send a command
9135 when the connection is not established.
9136 (tramp-handle-set-file-times): Simplify the check for utc.
9137
c5eb971b
JB
91382010-05-10 Juanma Barranquero <lekktu@gmail.com>
9139
9140 Fix use of `filter-buffer-substring' (rework previous change).
9141 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
9142 (cua-repeat-replace-region):
9143 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
9144 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
9145 (cua-cut-region-to-global-mark): Use it.
9146
7492acc9
MM
91472010-05-09 Michael R. Mauger <mmaug@yahoo.com>
9148
77e2fc7a
JB
9149 * progmodes/sql.el: Version 2.1.
9150 (sql-product-alist): Redesign structure of product info.
9151 (sql-product, sql-user, sql-server, sql-database): Safe variables.
7492acc9
MM
9152 (sql-port, sql-port-history): New variables.
9153 (sql-interactive-product): New variable.
9154 (sql-send-terminator): New variable.
77e2fc7a 9155 (sql-imenu-generic-expression): Add "Types" imenu entry.
7492acc9
MM
9156 (sql-oracle-login-params, sql-sqlite-login-params)
9157 (sql-mysql-login-params, sql-solid-login-params)
9158 (sql-sybase-login-params, sql-informix-login-params)
9159 (sql-ingres-login-params, sql-ms-login-params)
9160 (sql-postgres-login-params, sql-interbase-login-params)
9161 (sql-db2-login-params, sql-linter-login-params)
9162 (sql-oracle-scan-on): New variables.
77e2fc7a
JB
9163 (sql-mode-map): Add C-c C-i to start interactive mode.
9164 (sql-mode-menu): Update existing menu entries.
9165 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
7492acc9
MM
9166 (sql-mode-oracle-font-lock-keywords)
9167 (sql-mode-postgres-font-lock-keywords)
9168 (sql-mode-ms-font-lock-keywords)
9169 (sql-mode-sybase-font-lock-keywords)
9170 (sql-mode-informix-font-lock-keywords)
9171 (sql-mode-interbase-font-lock-keywords)
9172 (sql-mode-ingres-font-lock-keywords)
9173 (sql-mode-solid-font-lock-keywords)
9174 (sql-mode-mysql-font-lock-keywords)
9175 (sql-mode-sqlite-font-lock-keywords)
9176 (sql-mode-db2-font-lock-keywords)
77e2fc7a 9177 (sql-mode-linter-font-lock-keywords): Update initialization to
7492acc9
MM
9178 reduce run-time complexity.
9179 (sql-add-product, sql-del-product): New functions.
9180 (sql-set-product-feature, sql-get-product-feature): New functions.
9181 (sql-product-font-lock): Update product API.
9182 (sql-add-product-keywords): New function.
9183 (sql-highlight-product): Update product API.
9184 (sql-help-list-products): New function.
9185 (sql-help): Dynamically lists free and non-free products.
77e2fc7a 9186 (sql-get-login): Correct bug in handling history and added
7492acc9
MM
9187 prompt for port.
9188 (sql-copy-column): Copy without properties.
9189 (sqli-input-sender): Apply filters to SQLi input.
77e2fc7a
JB
9190 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
9191 Implement as a filter.
7492acc9
MM
9192 (sql-escape-newlines-filter): Implement as a filter.
9193 (sql-remove-tabs-filter): New function.
9194 (sql-send-magic-terminator): New function.
9195 (sql-send-string): Implement magic terminator.
9196 (sql-send-region): Use `sql-send-string'.
9197 (sql-interactive-mode): Use product API.
9198 (sql-product-interactive): Use product API.
9199 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
9200 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
9201 (sql-db2, sql-linter): Use `sql-product-interactive'.
9202 (sql-connect): New function.
9203 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
9204 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
9205 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
77e2fc7a
JB
9206 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
9207 Use `sql-connect'.
7492acc9 9208
79ccd68f
SM
92092010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
9210
9211 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
9212 New custom variable.
9213 (completion-pcm--string->pattern): Use it.
9214 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
9215 Make it handle any symbol as `any'.
9216 (completion-pcm--merge-completions): Extract common suffix for the new
9217 `prefix' symbol as well.
9218 (completion-substring--all-completions): Use the new `prefix' symbol.
9219
0d5852cf
MA
92202010-05-09 Michael Albinus <michael.albinus@gmx.de>
9221
9222 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
9223 not bound.
9224 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
9225 (tramp-compat-funcall): New defmacro.
9226 (tramp-compat-line-beginning-position)
9227 (tramp-compat-line-end-position)
9228 (tramp-compat-temporary-file-directory)
9229 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
9230 (tramp-compat-copy-file, tramp-compat-copy-directory)
9231 (tramp-compat-delete-file, tramp-compat-delete-directory)
9232 (tramp-compat-number-sequence, tramp-compat-process-running-p)
9233 * net/tramp.el (top, with-progress-reporter)
9234 (tramp-rfn-eshadow-setup-minibuffer)
9235 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
9236 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
9237 (tramp-completion-mode-p, tramp-check-for-regexp)
9238 (tramp-open-connection-setup-interactive-shell)
9239 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
9240 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
9241 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
9242 * net/tramp-cmds.el (tramp-cleanup-all-connections)
9243 (tramp-reporter-dump-variable, tramp-load-report-modules)
9244 (tramp-append-tramp-buffers)
9245 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
9246
9247 * net/tramp-imap.el (top): Autoload `epg-make-context'.
9248
f913fe7d
SM
92492010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
9250
9251 * progmodes/compile.el (compilation-buffer-modtime): Rename from
9252 buffer-modtime. Adjust users.
9253
0235128c 92542010-05-08 Chong Yidong <cyd@stupidchicken.com>
f034e176 9255
77e2fc7a 9256 * international/mule.el (auto-coding-alist): Only purecopy
3b180a24 9257 car of each item, not the whole list (Bug#6083).
f034e176 9258
0235128c 92592010-05-08 Chong Yidong <cyd@stupidchicken.com>
f5d6ff44
CY
9260
9261 * progmodes/js.el (js-mode): Make paragraph variables local before
9262 calling c-setup-paragraph-variables (Bug#6071).
9263
0235128c 92642010-05-08 Eli Zaretskii <eliz@gnu.org>
aa4d4e4a
EZ
9265
9266 * composite.el (compose-region, reference-point-alist): Fix typos
9267 in the doc strings.
9268
77e2fc7a 92692010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
9822590b
AK
9270
9271 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
9272 gnuplot's "set" command.
9273
0235128c 92742010-05-08 Juanma Barranquero <lekktu@gmail.com>
29c48340
JB
9275
9276 * abbrev.el (last-abbrev-text): Doc fix.
9277 (abbrev-prefix-mark): Don't escape parenthesis.
9278
0235128c 92792010-05-08 Andreas Schwab <schwab@linux-m68k.org>
8ed6fc47
AS
9280
9281 * composite.el (find-composition): Doc fix.
9282
0235128c 92832010-05-08 Juanma Barranquero <lekktu@gmail.com>
063c6324
JB
9284
9285 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
9286 (sql-oracle-program, sql-sqlite-options)
9287 (sql-query-placeholders-and-send): Doc fixes.
9288 (sql-set-product, sql-interactive-mode): Reflow docstrings.
9289 (sql-imenu-generic-expression, sql-buffer)
9290 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
9291 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
9292 (sql-mode-sybase-font-lock-keywords)
9293 (sql-mode-informix-font-lock-keywords)
9294 (sql-mode-interbase-font-lock-keywords)
9295 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
9296 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
9297 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
9298 (sql-product-feature, sql-highlight-product)
9299 (comint-line-beginning-position, sql-rename-buffer)
0235128c
SM
9300 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
9301 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
063c6324
JB
9302 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
9303 Fix typos in docstrings.
9304
0235128c 93052010-05-08 Juri Linkov <juri@jurta.org>
e89dee79
JL
9306
9307 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
9308 property instead of `invisible' and `after-string' (bug#5998).
9309
0235128c 93102010-05-08 Juri Linkov <juri@jurta.org>
316d12fb
JL
9311
9312 * image-mode.el (image-mode-as-text): Fix typo in docstring.
9313
0235128c 93142010-05-08 Juanma Barranquero <lekktu@gmail.com>
770255e9
JB
9315
9316 * filecache.el (file-cache-add-directory-list)
9317 (file-cache-add-directory-recursively): Fix typos in docstrings.
9318
0235128c 93192010-05-08 Kenichi Handa <handa@m17n.org>
ece33a6e
KH
9320
9321 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
b106e264 9322 (gujarati-composable-pattern): Fix typo.
ece33a6e 9323
0235128c 93242010-05-08 Kenichi Handa <handa@m17n.org>
771533aa
KH
9325
9326 * language/indian.el (oriya-composable-pattern)
0235128c
SM
9327 (tamil-composable-pattern, malayalam-composable-pattern):
9328 Add two-part vowels to "v" (vowel sign).
771533aa 9329
0235128c 93302010-05-08 Chong Yidong <cyd@stupidchicken.com>
790c2e44 9331
99833607
CY
9332 * files.el (copy-directory): Handle symlinks (Bug#5982).
9333
0235128c 93342010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
808ecc4e
CY
9335
9336 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
9337 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
9338 (Bug#5846).
9339
0235128c 93402010-05-08 Glenn Morris <rgm@gnu.org>
d2c7b917 9341
0ca12598
GM
9342 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
9343
d2c7b917
GM
9344 * minibuffer.el (completion-at-point): Doc fix.
9345
ba5bf5f0
SM
93462010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
9347
9348 * electric.el (Electric-command-loop): Minor tweak.
9349
9350 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
9351 better with dedicated windows.
9352
0235128c
SM
93532010-05-07 Chong Yidong <cyd@stupidchicken.com>
9354
9355 * Version 23.2 released.
9356
560bb7ae 93572010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
4e2af782 9358 Stefan Monnier <monnier@iro.umontreal.ca>
5b3a105e
SM
9359
9360 Highlight vendor specific properties.
9361 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
9362 (css-proprietary-property): New face.
9363 (css-font-lock-keywords): Use them.
9364
c0162ade
EZ
93652010-05-07 Eli Zaretskii <eliz@gnu.org>
9366
9367 * cus-start.el (all): Add native condition for tool-bar-* symbols.
9368
f3ee9200
SM
93692010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
9370
05623156
SM
9371 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
9372 * files.el (auto-mode-alist): Remove redundant entries.
9373
f3ee9200
SM
9374 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
9375 * simple.el (auto-save-mode): Move from files.el.
9376 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
9377
560bb7ae 93782010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
5146e84c 9379
76e3243a 9380 * epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
5146e84c 9381
765d4319
KY
93822010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
9383
9384 * mail/binhex.el (binhex-decode-region-internal)
9385 * mail/uudecode.el (uudecode-decode-region-internal)
9386 * net/dns.el (dns-read-string-name, dns-write, dns-read)
9387 (dns-read-type, dns-query)
9388 * pgg-parse.el (pgg-parse-armor)
9389 * pgg.el (pgg-verify-region)
9390 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
9391 XEmacs.
9392
86d21cc0 9393 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
765d4319 9394
f83483ff
JB
93952010-05-07 Juanma Barranquero <lekktu@gmail.com>
9396
40ab7974
JB
9397 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
9398
f83483ff
JB
9399 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
9400 * emulation/cua-base.el (cua-repeat-replace-region):
9401 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
9402 (cua-cut-region-to-global-mark):
9403 Remove text properties with `set-text-properties'.
9404
9566840f
MA
94052010-05-06 Michael Albinus <michael.albinus@gmx.de>
9406
f3ee9200
SM
9407 * net/tramp.el (top, with-progress-reporter):
9408 Use `symbol-function' inside `funcall'.
9566840f
MA
9409
9410 * net/tramp-compat.el (tramp-compat-file-attributes)
f3ee9200
SM
9411 (tramp-compat-delete-file, tramp-compat-delete-directory):
9412 Handle only `wrong-number-of-arguments' error.
9566840f
MA
9413
9414 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
9415 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
9416 inside `funcall'.
9417
0c495c21
SM
94182010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
9419
1493963b
SM
9420 * minibuffer.el (completion--sreverse, completion--common-suffix):
9421 New functions.
9422 (completion-pcm--merge-completions): Extract common suffix when safe.
9423
0c495c21
SM
9424 * emacs-lisp/easy-mmode.el (define-minor-mode):
9425 Make :variable more flexible.
9426 * files.el (auto-save-mode): Use it to define using define-minor-mode.
9427
221a0647
JL
94282010-05-05 Juri Linkov <juri@jurta.org>
9429
9430 Add `slow' and `history' tags to the desktop data.
9431
9432 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
9433 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
9434 (Info-finder-find-node): Require `finder.el' to be able
9435 to restore node from the desktop.
9436 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
9437 data `Info-history' and `slow' tag in the assoc list.
9438 (Info-restore-desktop-buffer): Don't restore nodes with the
9439 `slow' tag. Restore `Info-history'.
9440
66bdc868
MA
94412010-05-05 Michael Albinus <michael.albinus@gmx.de>
9442
9443 Add FORCE argument to `delete-file'.
9444
9445 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
9446 forcing to delete the temporary file.
9447 (ange-ftp-delete-file): Add FORCE arg.
9448 (ange-ftp-rename-remote-to-remote)
9449 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
0c495c21
SM
9450 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
9451 Force file deletion.
66bdc868
MA
9452
9453 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
9454
9455 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
9456 (tramp-handle-make-symbolic-link, tramp-handle-load)
9457 (tramp-do-copy-or-rename-file-via-buffer)
9458 (tramp-do-copy-or-rename-file-directly)
9459 (tramp-do-copy-or-rename-file-out-of-band)
9460 (tramp-handle-process-file, tramp-handle-call-process-region)
9461 (tramp-handle-shell-command, tramp-handle-file-local-copy)
9462 (tramp-handle-insert-file-contents, tramp-handle-write-region)
9463 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
9464
9465 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
9466 (tramp-fish-handle-make-symbolic-link)
9467 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
9468
0c495c21
SM
9469 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
9470 Use `tramp-compat-delete-file'.
66bdc868
MA
9471
9472 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
9473 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
9474
9475 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
9476 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
9477
9478 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
9479 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
6a7662bb
BR
9480 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
9481 Use `tramp-compat-delete-file'.
66bdc868 9482
f44379e7
SM
94832010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
9484
365f8d85
SM
9485 Minor cleanups.
9486 * subr.el (add-minor-mode): Use push.
9487 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
9488 * emulation/edt.el (edt-select-mode): Simplify.
9489
80ac5d4d
SM
9490 Use define-minor-mode in more cases.
9491 * term/tvi970.el (tvi970-set-keypad-mode):
9492 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
9493 (normal-erase-is-backspace-mode):
9494 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
9495 (set-scroll-bar-mode-1): (Re)move to its sole caller.
9496 (get-scroll-bar-mode): New function.
9497 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
9498
9499 Use define-minor-mode for less obvious cases.
f44379e7
SM
9500 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
9501 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
9502 * international/iso-ascii.el (iso-ascii-mode):
9503 * frame.el (auto-raise-mode, auto-lower-mode):
9504 * composite.el (global-auto-composition-mode): Use define-minor-mode.
9505
c04b03f8
MA
95062010-05-04 Michael Albinus <michael.albinus@gmx.de>
9507
9508 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
9509 in order to see error messages for failed logins.
9510
53967e09
CY
95112010-05-03 Chong Yidong <cyd@stupidchicken.com>
9512
9513 * diff.el (diff-sentinel):
9514
9515 * epg.el (epg--make-temp-file, epg-decrypt-string)
9516 (epg-verify-string, epg-sign-string, epg-encrypt-string):
9517
9518 * jka-compr.el (jka-compr-partial-uncompress)
9519 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
9520
9521 * server.el (server-sentinel): Use delete-file's new FORCE arg
9522 (Bug#6070).
9523
56eb0904
SM
95242010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
9525
9526 Use define-minor-mode where applicable.
9527 * view.el (view-mode):
9528 * type-break.el (type-break-query-mode)
9529 (type-break-mode-line-message-mode):
9530 * textmodes/reftex.el (reftex-mode):
9531 * term/vt100.el (vt100-wide-mode):
9532 * tar-mode.el (tar-subfile-mode):
9533 * savehist.el (savehist-mode):
9534 * ibuf-ext.el (ibuffer-auto-mode):
9535 * composite.el (auto-composition-mode):
9536 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
9537 Use define-minor-mode.
9538 (vhdl-mode): Use static mode-line format.
9539 (vhdl-mode-line-update): Delete.
9540 (vhdl-create-mode-menu, vhdl-activate-customizations)
9541 (vhdl-hs-minor-mode): Don't bother calling it.
9542
672eb710
SM
95432010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
9544
8f92b8ad
SM
9545 * simple.el (with-wrapper-hook): Move.
9546 (buffer-substring-filters): Mark obsolete.
9547 (filter-buffer-substring-functions): New variable.
1fada563 9548 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
8f92b8ad 9549
c04b03f8 95502010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
4e2af782 9551 Michael Albinus <michael.albinus@gmx.de>
6a29a838
MA
9552
9553 Implement compression for inline methods.
9554
9555 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
9556 (tramp-copy-size-limit): Allow also nil.
9557 (tramp-inline-compress-commands): New defconst.
9558 (tramp-find-inline-compress, tramp-get-inline-compress)
9559 (tramp-get-inline-coding): New defuns.
cb7f3653 9560 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
c04b03f8 9561 replaced by `tramp-get-inline-coding'.
6a29a838
MA
9562 (tramp-handle-file-local-copy, tramp-handle-write-region)
9563 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
9564
8c0bf8b3
SM
95652010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
9566
07125a91
SM
9567 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
9568 Remove unused functions.
9569
f3a47002
SM
9570 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
9571 Set find-tag-default-function as a variable rather than a property.
9572
8c0bf8b3
SM
9573 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
9574 * progmodes/etags.el (tags-completion-at-point-function):
9575 Remove left over interactive spec. Add autoloading stub.
9576 (complete-tag): Use tags-completion-at-point-function.
9577
27601456
CY
95782010-04-30 Chong Yidong <cyd@stupidchicken.com>
9579
cb7f3653 9580 * minibuffer.el (tags-completion-at-point-function): Fix return value.
27601456 9581
09d0284d
CY
95822010-04-29 Chong Yidong <cyd@stupidchicken.com>
9583
27d3cd56
CY
9584 * ido.el (ido-init-completion-maps): Remove C-v binding.
9585 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
09d0284d 9586
3a07ffce
CY
95872010-04-29 Chong Yidong <cyd@stupidchicken.com>
9588
9589 * minibuffer.el (tags-completion-at-point-function): New function.
9590 (completion-at-point-functions): Use it.
9591
3a07ffce
CY
9592 * progmodes/etags.el (complete-tag): Revert last change.
9593
3d14bb73
AM
95942010-04-29 Alan Mackenzie <acm@muc.de>
9595
9596 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
9597 off-by-one error (in end of macro position).
9598
7d353d11
SM
95992010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
9600
9601 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
9602 firefox is absent. Don't autoload.
9603 (browse-url-galeon-program): Don't autoload.
9604
48111a85
CY
96052010-04-28 Chong Yidong <cyd@stupidchicken.com>
9606
9607 * bindings.el (complete-symbol): Move into minibuffer.el.
9608
9609 * minibuffer.el (complete-tag): Move from etags.el. If tags
9610 completion cannot be performed, return nil instead of signalling
9611 an error.
9612 (completion-at-point): Make it an alias for complete-symbol.
9613 (complete-symbol): Move from bindings.el, and replace with the
9614 body of completion-at-point.
9615
9616 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
9617
7ba94701
MA
96182010-04-28 Michael Albinus <michael.albinus@gmx.de>
9619
9620 * net/tramp.el (tramp-remote-selinux-p): New defun.
9621 (tramp-handle-file-selinux-context)
9622 (tramp-handle-set-file-selinux-context): Use it.
9623
95c6cc3e
SS
96242010-04-28 Sam Steingold <sds@gnu.org>
9625
9626 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
9627 `safe-local-variable' if the value is a string or a symbol with
9628 the property `bug-reference-url-format'.
9629
36045ff3
CY
96302010-04-28 Chong Yidong <cyd@stupidchicken.com>
9631
537ffaf3
SM
9632 * progmodes/bug-reference.el (bug-reference-url-format):
9633 Revert 2010-04-27 change due to security risk.
36045ff3 9634
56924d99
SM
96352010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
9636
9637 Make it possible to locally disable a globally enabled mode.
9638 * simple.el (fundamental-mode): Run fundamental-mode-hook.
9639 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
9640 rather than kill-all-local-variables so it runs fundamental-mode-hook.
9641 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9642 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
9643 that subsequent hooks get a chance to disable it.
9644
ccaa4765
SM
96452010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
9646
17818d71
SM
9647 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9648 Avoid re-enabling a minor mode after the user turned the minor mode
9649 off if MODE-enable-in-buffers is run twice (typically once from
9650 fundamental-mode's after-change-major-mode-hook and a second time from
9651 run-mode-hook's own after-change-major-mode-hook).
9652
ccaa4765
SM
9653 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
9654
2a6f654e
SS
96552010-04-27 Sam Steingold <sds@gnu.org>
9656
9657 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
9658 `safe-local-variable' if the value is a string or a function, as
9659 documented and implemented on 2010-04-02.
9660
cecaa674
JB
96612010-04-27 Juanma Barranquero <lekktu@gmail.com>
9662
9663 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
9664 when method is 'kill.
9665
96662010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
1e116bb3 9667
a628ad9d
JB
9668 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
9669 condition in default directory check.
1e116bb3
AM
9670 (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
9671 Kill ispell process when killing its associated buffer.
9672
7dd7fbb9
JD
96732010-04-27 Jan Djärv <jan.h.d@swipnet.se>
9674
9675 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
9676 but we aren't using it.
9677
7ac82b84
J
96782010-04-25 Jan Djärv <jan.h.d@swipnet.se>
9679
9680 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
9681 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
9682
fea1add4
GM
96832010-04-24 Glenn Morris <rgm@gnu.org>
9684
9685 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
9686 Ignore VCS-ignore files, and deleted nextstep preferences files.
9687 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
9688 (authors-ambiguous-files): New list.
9689 (authors-valid-file-names): Add some deleted files.
9690 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
9691 (authors-disambiguate-file-name): New function. (Bug#5501)
9692 (authors-canonical-file-name): Doc fix.
9693 Don't warn about obsolete files.
9694 (authors-canonical-file-name, authors-scan-el):
9695 Use authors-disambiguate-file-name.
9696
cbcfee6e
GM
9697 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
9698 Add autoload cookies.
9699 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
9700 (generated-autoload-file): Set file-local value to "htmlfontify.el".
9701 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
9702 They have definitions / compiler macros in cl.el.
9703 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
9704 Replace manual autoloads with generated ones.
9705 (htmlfontify-unload-rgb-file): Remove autoload.
9706 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
9707
3b548e1b
SM
97082010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
9709
9ae0c310
SM
9710 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
9711 (byte-compile-setq-default): Optimize for the
9712 single-var case and don't call byte-compile-form in this case to avoid
9713 inf-loop with byte-compile-set-default.
9714
3b548e1b
SM
9715 * progmodes/compile.el (compilation-start): Abbreviate default directory.
9716
632c5478
MA
97172010-04-23 Michael Albinus <michael.albinus@gmx.de>
9718
9719 Implement SELINUX backends.
9720
3b548e1b
SM
9721 * net/tramp.el (tramp-file-name-handler-alist):
9722 Add `file-selinux-context' and `set-file-selinux-context'.
632c5478
MA
9723 (tramp-handle-file-selinux-context)
9724 (tramp-handle-set-file-selinux-context): New defuns.
3b548e1b
SM
9725 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
9726 Handle PRESERVE-SELINUX-CONTEXT.
632c5478 9727
3b548e1b
SM
9728 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
9729 Add `file-selinux-context' and `set-file-selinux-context'.
632c5478
MA
9730 (tramp-gvfs-handle-file-selinux-context)
9731 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
9732 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
9733
9734 * net/ange-ftp.el (ange-ftp-copy-file):
9735 * net/tramp-fish.el (tramp-fish-handle-copy-file):
9736 * net/tramp-imap.el (tramp-imap-handle-copy-file):
3b548e1b
SM
9737 * net/tramp-smb.el (tramp-smb-handle-copy-file):
9738 Add PRESERVE-SELINUX-CONTEXT.
632c5478 9739
a94d821f
MA
97402010-04-22 Michael Albinus <michael.albinus@gmx.de>
9741
9742 Synchronize with Tramp repository.
9743
9744 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
9745 (tramp-action-process-alive, tramp-action-out-of-band)
9746 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
9747 (tramp-exists-file-name-handler): Fix docstring.
9748 (with-progress-reporter): New defmacro.
9749 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
9750 (tramp-maybe-open-connection): Use it.
9751
a92375d9
MA
97522010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
9753
9754 Detect ssh 'ControlMaster' argument automatically in some cases.
9755
9756 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
9757 (tramp-default-method): Use it.
9758
489fe4c2
MA
97592010-04-22 Michael Albinus <michael.albinus@gmx.de>
9760
25f14cdb
MA
9761 * net/tramp.el (tramp-handle-copy-file): Add new optional
9762 parameter `preserve-selinux-context'.
9763 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
9764
a92375d9
MA
97652010-04-22 Michael Albinus <michael.albinus@gmx.de>
9766
489fe4c2
MA
9767 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
9768 Ensure, that non remote files are still checked. Oops.
9769
acd1f317
MA
97702010-04-21 Michael Albinus <michael.albinus@gmx.de>
9771
9772 Fix Bug#5840.
9773
9774 * icomplete.el (icomplete-completions): Use `non-essential'.
9775
9776 * net/tramp.el (tramp-connectable-p): New defun.
9777 (tramp-handle-expand-file-name)
9778 (tramp-completion-handle-file-name-all-completions)
9779 (tramp-completion-handle-file-name-completion): Use it.
9780
62c5b459
SM
97812010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
9782
9783 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
9784
f904c0f9
JD
97852010-04-21 Jan Djärv <jan.h.d@swipnet.se>
9786
9787 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
9788
9789 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
9790
9791 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
9792 is present.
9793
9794 * info.el (info-tool-bar-map): Add labels.
9795
9796 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
9797
9798 * cus-edit.el (custom-commands): Add labels for tool bar.
9799 (custom-buffer-create-internal, Custom-mode): Adjust for
9800 labels in custom-commands.
9801
9802 * dynamic-setting.el: Renamed from font-setting.el.
9803
c5cbeb12
LL
98042010-04-21 John Wiegley <jwiegley@gmail.com>
9805
9806 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
9807 toggles the use of virtual buffers.
537ffaf3 9808 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
c5cbeb12
LL
9809 (ido-toggle-virtual-buffers): New function.
9810
fcc93746
JB
98112010-04-21 Juanma Barranquero <lekktu@gmail.com>
9812
9813 Use `define-derived-mode'; fix window selection; doc fixes.
9814 * play/tetris.el (tetris, tetris-update-speed-function)
9815 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
9816 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
9817 (tetris-rotate-next, tetris-end-game, tetris-start-game)
9818 (tetris-pause-game): Fix typos in docstrings.
9819 (tetris-mode-map, tetris-null-map):
9820 Move initialization into declaration.
9821 (tetris-mode): Define with `define-derived-mode';
9822 set show-trailing-whitespace to nil.
9823 (tetris): Prefer window already displaying the "*Tetris*" buffer.
9824
574c05e2
KK
98252010-04-21 Karel Klíč <kklic@redhat.com>
9826
9827 * files.el (backup-buffer): Handle SELinux context, and return it
9828 if a backup was made by renaming.
9829 (backup-buffer-copy): Set SELinux context to the target file.
9830 (basic-save-buffer): Set SELinux context of the newly written file.
9831 (basic-save-buffer-1): Now it also returns any SELinux context.
9832 (basic-save-buffer-2): Set SELinux context of the newly created file,
9833 and return it.
9834 * net/tramp.el (tramp-file-name-for-operation):
9835 Add file-selinux-context.
9836
e97a42c1
SM
98372010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
9838
f2b9ed18
SM
9839 Make the log-edit comments use RFC822 format throughout.
9840
e97a42c1
SM
9841 * vc.el (vc-checkin, vc-modify-change-comment):
9842 Adjust to new vc-start/finish-logentry.
9843 (vc-find-conflicted-file): New command.
9844 (vc-transfer-file): Adjust to new vc-checkin.
9845 (vc-next-action): Improve scoping.
9846
9847 * vc-hg.el (vc-hg-log-edit-mode): Remove.
9848 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
9849
9850 * vc-git.el (vc-git-log-edit-mode): Remove.
9851 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
9852 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
9853
9854 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
9855 (vc-start-logentry): Remove argument `extra'.
9856 (vc-finish-logentry): Remove extra args.
9857
9858 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
9859 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
9860 (vc-bzr-conflicted-files): New function.
9861
9862 * log-edit.el (log-edit-extra-flags)
9863 (log-edit-before-checkin-process): Remove.
9864 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
9865 (log-edit-headers-alist): New var.
9866 (log-edit-header-contents-regexp): New const.
9867 (log-edit-match-to-eoh): New function.
9868 (log-edit-font-lock-keywords): Use them.
9869 (log-edit): Insert a "Summary:" header as default.
9870 (log-edit-mode): Mark font-lock rules as case-insensitive.
9871 (log-edit-done): Cleanup headers.
9872 (log-view-process-buffer): Remove.
9873 (log-edit-extract-headers): New function to replace it.
9874
938efb77
JB
98752010-04-20 Juanma Barranquero <lekktu@gmail.com>
9876
9877 * subr.el (default-direction-reversed): Remove obsolescence info.
9878
1cfb415b
SM
98792010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9880
cb4f9513
SM
9881 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
9882 windows/frames.
9883
6e610c72
SM
9884 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
9885 I.e. include text after point in the completion region.
9886 Also, return nil when we're not after/in a symbol.
9887
1cfb415b
SM
9888 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
9889 default enable-multibyte-characters.
9890
c80fa13c
SM
98912010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9892
87926e02
SM
9893 * international/mule.el: Help the user choose a valid coding-system.
9894 (read-buffer-file-coding-system): New function.
9895 (set-buffer-file-coding-system): Use it. Prompt the user if the
9896 coding-system cannot encode all the chars.
9897
c80fa13c
SM
9898 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
9899 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
9900 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
9901 Don't use *vc-bzr-shelve*.
9902
6e104790 99032010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
bce31830
DN
9904
9905 Fix the version number for added files.
9906 * vc-hg.el (vc-hg-working-revision): Check if the file is
9907 registered after hg parent fails (Bug#5961).
9908
6e104790 99092010-04-19 Glenn Morris <rgm@gnu.org>
0433ffa6
GM
9910
9911 * htmlfontify.el (htmlfontify-buffer)
9912 (htmlfontify-copy-and-link-dir): Autoload entry points.
9913
6e104790 99142010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
8507c65c
CY
9915
9916 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
9917 name relative to the project root (Bug#5960).
9918
6e104790 99192010-04-19 Glenn Morris <rgm@gnu.org>
e9ef9777
GM
9920
9921 * vc-git.el (vc-git-print-log): Doc fix.
9922
6e104790 99232010-04-19 Óscar Fuentes <ofv@wanadoo.es>
3808c51f
CY
9924
9925 * ido.el (ido-file-internal): Fix 2009-12-02 change.
9926
6e104790 99272010-04-19 Christoph <cschol2112@googlemail.com> (tiny change)
7860d2e3
CY
9928
9929 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
9930 default settings (Bug#5928).
9931
6e104790 99322010-04-19 Glenn Morris <rgm@gnu.org>
119850e9
GM
9933
9934 * progmodes/fortran.el (fortran-match-and-skip-declaration):
9935 New function.
0a23b2c3 9936 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
119850e9 9937
6e104790 99382010-04-19 Kenichi Handa <handa@m17n.org>
86a366f4
KH
9939
9940 * language/indian.el (malayalam-composable-pattern): Fix previous
9941 change (add U+0D4D "SIGN VIRAMA").
9942 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
9943 (tamil-composable-pattern): Fix typo in the regexp.
9944 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
9945 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
9946 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
9947
6e104790 99482010-04-19 Chong Yidong <cyd@stupidchicken.com>
8afe2ec6
CY
9949
9950 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
9951 paragraph-separate (Bug#5821).
9952
6e104790 99532010-04-19 Juri Linkov <juri@jurta.org>
3c5d6dfb
JL
9954
9955 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
9956
9957 * info.el (Info-find-node-2): Comment out code that skips
9958 breadcrumbs line.
9959 (Info-mouse-follow-link): New command.
9960 (Info-link-keymap): New keymap.
9961 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
9962 Return a string with links instead of inserting breadcrumbs
9963 to the Info buffer.
9964 (Info-fontify-node): Comment out code that inserts breadcrumbs.
9965 Instead of putting the `invisible' text property over the Info
9966 header, make an overlay over the Info header with the `invisible'
9967 property and `after-string' set to the string returned by
9968 `Info-breadcrumbs'.
9969
6e104790 99702010-04-19 Chong Yidong <cyd@stupidchicken.com>
6baa27a2
CY
9971
9972 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
9973 Reported by monkey@sandpframing.com.
9974
98923800
SM
99752010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9976
b5feea0f
SM
9977 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
9978 (tmm-get-keymap): Add key-binding shortcuts now that they're not
9979 available in the "keyseq cache" any more.
9980
98923800
SM
9981 * custom.el (defcustom): Add edebug spec.
9982
fd5c9dfa
JL
99832010-04-18 Juri Linkov <juri@jurta.org>
9984
9985 Test for special mode-class in view-buffer instead of view-file (bug#5513).
9986
9987 * view.el (view-file, view-buffer): Move test for special mode-class
9988 from view-file to view-buffer.
9989
9990 * tar-mode.el (tar-extract): Turn if's into one cond
9991 like in arc-mode.el.
9992
b3671a51
JL
99932010-04-18 Juri Linkov <juri@jurta.org>
9994
9995 Add 7z archive format support (bug#5475).
9996
9997 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
9998 (archive-7z-extract): New defcustom.
9999 (archive-find-type): Add magic string for 7z.
10000 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
10001 If `stderr-file' is non-nil, use `(t stderr-file)' for the
10002 `buffer' arg of `call-process'.
10003 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
10004 call the function `archive-7z-extract' with the variable
10005 `archive-7z-extract' let-bound to `archive-zip-extract'.
10006 (archive-7z-summarize, archive-7z-extract): New functions.
10007
10008 * international/mule.el (auto-coding-alist):
10009 * files.el (auto-mode-alist): Add 7z file extension.
10010
8a37fb25
SM
100112010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
10012
e9515805
SM
10013 * loadup.el: Setup hash-cons for pure data.
10014
f8ea0098
SM
10015 Fix duplicate entries in cedet's loaddefs.el files.
10016 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
10017 Should make most file-local generated-autoload-file unnecessary.
10018 (print-readably): Silence warnings.
10019 (autoload-find-destination): Take load-name as an arg to make sure
10020 it's the same as the one that will be in the file.
10021 (autoload-generate-file-autoloads): Adjust to above changes.
10022 Try to make the dataflow a bit simpler.
10023
8a37fb25
SM
10024 * cvs-status.el (cvs-refontify): Remove unused.
10025
f8b91752
JB
100262010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
10027
76e3243a 10028 * calc/calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
f8b91752 10029
76e3243a 10030 * calc/calc-bin.el (calc-radix): Have the "O" option turn on
f8b91752
JB
10031 twos-complement mode.
10032
d8b01fef
JB
100332010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
10034
76e3243a
JB
10035 * calc/calc-ext.el (calc-init-extensions): Add keybinding for
10036 'calc-option'. Add `calc-option-prefix-help' to calc-help autoloads.
d8b01fef
JB
10037 (calc-inverse): Add "Option" to message, as appropriate.
10038 (calc-hyperbolic): Add "Option" to message, as appropriate.
10039 (calc-option, calc-is-option): New functions.
10040
76e3243a 10041 * calc/calc-help.el (calc-full-help): Add `calc-option-help'.
d8b01fef
JB
10042 (calc-option-prefix-help): New function.
10043
76e3243a 10044 * calc/calc-misc.el (calc-help): Add "Option" entry.
d8b01fef 10045
76e3243a 10046 * calc/calc.el (calc-local-var-list): Add `calc-option-flag'.
d8b01fef
JB
10047 (calc-option-flag): New variable.
10048 (calc-do): Set `calc-option-flag to nil.
10049 (calc-set-mode-line): Add "Opt " as appropriate.
10050
74f806a1
JL
100512010-04-16 Juri Linkov <juri@jurta.org>
10052
10053 Move scrolling commands from simple.el to window.el
10054 because their primitives are implemented in window.c.
10055
10056 * simple.el (scroll-error-top-bottom)
10057 (scroll-up-command, scroll-down-command, scroll-up-line)
10058 (scroll-down-line, scroll-other-window-down)
10059 (beginning-of-buffer-other-window, end-of-buffer-other-window):
10060 * window.el (scroll-error-top-bottom)
10061 (scroll-up-command, scroll-down-command, scroll-up-line)
10062 (scroll-down-line, scroll-other-window-down)
10063 (beginning-of-buffer-other-window, end-of-buffer-other-window):
10064 Move from simple.el to window.el because their primitives are
10065 implemented in window.c.
10066
ad40eec5
JL
100672010-04-16 Juri Linkov <juri@jurta.org>
10068
10069 * isearch.el (isearch-lookup-scroll-key): Check both
10070 `isearch-scroll' and `scroll-command' properties.
10071 (scroll-up, scroll-down): Remove `isearch-scroll' property.
10072
10073 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
10074
10075 * simple.el (scroll-up-command, scroll-down-command)
10076 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
10077
a4b000fb
JL
100782010-04-15 Juri Linkov <juri@jurta.org>
10079
10080 * simple.el (scroll-up-command, scroll-down-command)
10081 (scroll-up-line, scroll-down-line): Put `scroll-command'
10082 property on the these symbols. Remove them from
10083 `scroll-preserve-screen-position-commands'.
10084
10085 * mwheel.el (mwheel-scroll): Put `scroll-command' and
10086 `isearch-scroll' properties on the `mwheel-scroll' symbol.
10087 Remove it from `scroll-preserve-screen-position-commands'.
10088
10089 * isearch.el (isearch-allow-scroll): Doc fix.
10090
4874f5e6
MA
100912010-04-15 Michael Albinus <michael.albinus@gmx.de>
10092
10093 * net/tramp.el (tramp-error-with-buffer): Don't show the
10094 connection buffer when we are in completion mode.
10095 (tramp-file-name-handler): Catch the error for some operations
10096 when we are in completion mode. This gives the user the chance to
10097 correct the file name in the minibuffer.
10098
82883f0a
GM
100992010-04-15 Glenn Morris <rgm@gnu.org>
10100
10101 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
10102
528b9ea9
JB
101032010-04-15 Juanma Barranquero <lekktu@gmail.com>
10104
10105 Simplify by using `define-derived-mode'.
10106 * info.el (Info-mode):
10107 * calendar/todo-mode.el (todo-mode):
10108 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
10109 (gomoku-mode-map): Move initialization into declaration.
10110
5f2b693f
MA
101112010-04-14 Michael Albinus <michael.albinus@gmx.de>
10112
10113 Fix Bug#5840.
10114 * ido.el (ido-file-name-all-completions-1):
10115 * minibuffer.el (minibuffer-completion-help):
10116 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
10117
ebb9641f
SM
101182010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
10119
38111a5a
SM
10120 * simple.el (non-essential): New var.
10121
ebb9641f
SM
10122 Add a new field `location' to bookmarks for non-file bookmarks.
10123 * bookmark.el (bookmark-location): Use the new field, if present.
10124 (bookmark-insert-location): Undo last change, not needed any more.
10125 * man.el (Man-bookmark-make-record):
10126 * woman.el (woman-bookmark-make-record): Add `location' field.
10127
7b05466f
JL
101282010-04-14 Juri Linkov <juri@jurta.org>
10129
10130 * simple.el (scroll-error-top-bottom): New defcustom.
10131 (scroll-up-command, scroll-down-command): Use it. Doc fix.
10132
10133 * emulation/pc-select.el (pc-select-override-scroll-error):
10134 Obsolete in favor of `scroll-error-top-bottom'.
10135
32129746
JL
101362010-04-14 Juri Linkov <juri@jurta.org>
10137
10138 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
10139 `scroll-up-command' and `M-v' to `scroll-down-command'.
10140
10141 * emulation/cua-rect.el (cua--init-rectangles):
10142 * forms.el (forms--change-commands):
10143 * image-mode.el (image-mode-map):
10144 Remap scroll-down-command and scroll-up-command
10145 in addition to scroll-down and scroll-up.
10146
9013a7f8
JL
101472010-04-14 Juri Linkov <juri@jurta.org>
10148
10149 * mwheel.el (scroll-preserve-screen-position-commands):
10150 Add mwheel-scroll to this list of commands.
10151
10152 * simple.el (scroll-preserve-screen-position-commands):
10153 Add scroll-up-command, scroll-down-command, scroll-up-line,
10154 scroll-down-line to this list of commands.
10155
3b7e1d5f
SM
101562010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
10157
c1e25821
SM
10158 * obsolete/complete.el: Move from lisp/complete.el.
10159
5b31b787
SM
10160 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
10161
3b7e1d5f
SM
10162 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
10163 to the minor mode function now turns the mode ON unconditionally.
10164
398a825b
SM
101652010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
10166
a544e7c1
SM
10167 * vc-dir.el (vc-dir-kill-line): New command.
10168 (vc-dir-mode-map): Bind it to C-k.
10169
a1979d8e
SM
10170 * bookmark.el (bookmark-insert-location): Handle a nil filename.
10171
398a825b
SM
10172 * woman.el: Add bookmark declarations to silence the compiler.
10173 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
10174 step to compatibility between man and woman bookmarks.
10175 Adjust for Man-default-bookmark-title renaming.
10176 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
10177
10178 * man.el: Add bookmark declarations to silence the compiler.
10179 (Man-name-local-regexp): Make it match NAME as well.
10180 (Man-getpage-in-background): Return the buffer.
10181 (Man-notify-when-ready): Use `case'.
10182 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
10183 Don't hardcode "NAME". Simplify.
10184 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
10185 Rename from Man-bookmark-make-record.
10186 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
10187 we have the actual man-args. Use Man-getpage-in-background rather
10188 than `man' since the arg is already processed. Let bookmark.el do the
10189 window handling. Only wait for the relevant process.
10190 Don't forget to autoload.
10191
10192 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
10193
45be326a
TV
101942010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10195
10196 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
10197 New functions.
10198 (woman-mode): Setup bookmark support.
10199
10200 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
10201 (man-bookmark-jump): New functions.
10202 (Man-mode): Setup bookmark support.
10203
3acb4c93
CY
102042010-04-10 Jari Aalto <jari.aalto@cante.net>
10205
10206 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
10207 recognize ssh-keygen prompt (Bug#2817).
10208
b6bbb65e
MA
102092010-04-10 Michael Albinus <michael.albinus@gmx.de>
10210
10211 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
10212
b533bc97
MA
102132010-04-10 Michael Albinus <michael.albinus@gmx.de>
10214
10215 Synchronize with Tramp repository.
10216
10217 * net/tramp.el (tramp-completion-function-alist)
10218 (tramp-file-name-regexp, tramp-chunksize)
45be326a
TV
10219 (tramp-local-coding-commands, tramp-remote-coding-commands):
10220 Fix docstring.
10221 (tramp-remote-process-environment): Use `format' instead of `concat'.
b533bc97
MA
10222 (tramp-handle-directory-files-and-attributes)
10223 (tramp-get-remote-path): Use `copy-tree'.
10224 (tramp-handle-file-name-all-completions): Backward/ XEmacs
10225 compatibility: Use `completion-ignore-case' if
10226 `read-file-name-completion-ignore-case' does not exist.
10227 (tramp-do-copy-or-rename-file-directly): Do not use
10228 `tramp-handle-file-remote-p'.
45be326a
TV
10229 (tramp-do-copy-or-rename-file-out-of-band):
10230 Use `tramp-compat-delete-directory'.
b533bc97 10231 (tramp-do-copy-or-rename-file-out-of-band)
45be326a
TV
10232 (tramp-compute-multi-hops, tramp-maybe-open-connection):
10233 Use `format-spec-make'.
b533bc97
MA
10234 (tramp-find-foreign-file-name-handler)
10235 (tramp-advice-make-auto-save-file-name)
10236 (tramp-set-auto-save-file-modes): Remove superfluous check for
10237 `stringp'. This is done inside `tramp-tramp-file-p'.
10238 (tramp-debug-outline-regexp): New defconst.
10239 (tramp-get-debug-buffer): Use it.
10240 (tramp-check-for-regexp): Use (forward-line 1).
10241 (tramp-set-auto-save-file-modes): Adapt version check.
10242
45be326a
TV
10243 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
10244 Wrap call of `featurep' for 2nd argument.
b533bc97
MA
10245 (tramp-compat-make-temp-file): Simplify fallback implementation.
10246 (tramp-compat-copy-tree): Remove function.
10247 (tramp-compat-delete-directory): Provide implementation for older
10248 Emacsen.
10249
10250 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
10251 Do not use `tramp-fish-handle-file-attributes.
10252
10253 * net/trampver.el: Update release number.
10254
ba33df00
GM
102552010-04-10 Glenn Morris <rgm@gnu.org>
10256
10257 * progmodes/compile.el (compilation-save-buffers-predicate):
10258 Add missing :version tag.
10259
4a8ae76f
SS
102602010-04-09 Sam Steingold <sds@gnu.org>
10261
10262 * progmodes/compile.el (compilation-save-buffers-predicate):
10263 Remove the "autoload" cookie.
10264
0880716f
SS
10265 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
10266 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
10267 and `bug-reference-prog-mode' can be used in hooks directly.
10268
6aebd58c
DN
102692010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
10270
10271 Add --author support to git commit.
10272 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
10273 (vc-git-log-edit-mode): New minor mode.
45be326a
TV
10274 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
10275 New declarations.
6aebd58c 10276
f6d90772
ER
102772010-04-09 Eric Raymond <esr@snark.thyrsus.com>
10278
10279 * vc-hooks.el, vc-git.el: Improve documentation comments.
10280
e754e83b
SM
102812010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
10282
10283 Fix some of the problems in defsubst* (bug#5728).
10284 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
10285 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
10286
9e86ab0b
SS
102872010-04-07 Sam Steingold <sds@gnu.org>
10288
e754e83b
SM
10289 * progmodes/compile.el (compilation-save-buffers-predicate):
10290 New custom variable.
9e86ab0b
SS
10291 (compile, recompile): Pass it to `save-some-buffers'.
10292
b0c8b840
JD
102932010-04-07 Jan Djärv <jan.h.d@swipnet.se>
10294
10295 * wid-edit.el (widget-choose): Move cursor to the second line of
10296 the buffer (Bug#5695).
10297
31527c56
DN
102982010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
10299
10300 Add new VC methods: vc-log-incoming and vc-log-outgoing.
10301 * vc.el (vc-print-log-setup-buttons): New function split out from
10302 vc-print-log-internal.
10303 (vc-log-internal-common): New function, a parametrized version of
10304 vc-print-log-internal.
10305 (vc-print-log-internal): Just call vc-log-internal-common with the
10306 right arguments.
10307 (vc-incoming-outgoing-internal):
10308 (vc-log-incoming, vc-log-outgoing): New functions.
10309 (vc-log-view-type): New permanent local variable.
10310
10311 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
10312
10313 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
10314 of the dynamic bound vc-short-log.
10315 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
10316
10317 * vc-git.el (vc-git-log-outgoing): New function.
10318 (vc-git-log-view-mode): Use vc-log-view-type instead
10319 of the dynamic bound vc-short-log.
10320
10321 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
10322 of the dynamic bound vc-short-log. Highlight the tag.
10323 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
10324 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
10325 (vc-hg-incoming-mode): Remove.
10326 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
10327
7ec69e2b
DN
103282010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
10329
10330 Fix default-directory for vc-root-diff.
10331 * vc.el (vc-root-diff): Bind default-directory to the root
10332 directory for the diff command.
10333
fd9ea9d3
WS
103342010-04-07 Michael McNamara <mac@mail.brushroad.com>
10335
6e104790 10336 * progmodes/verilog-mode.el (verilog-forward-sexp):
31527c56
DN
10337 (verilog-calc-1): Support "disable fork" and "fork wait" multi
10338 word keywords, suggested by Steve Pearlmutter.
6e104790 10339 (verilog-pretty-declarations): Support lineup of declarations in
fd9ea9d3 10340 port lists.
6e104790 10341 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
c4cc8b9a 10342 fix bug for /* / comments.
6e104790 10343 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
fd9ea9d3 10344 Speed up and simplfy as this is never called with a bound.
6e104790
SM
10345 (verilog-pretty-declarations): Enhance to line up declarations
10346 inside a parameter list, suggested by Alan Morgan.
10347 (verilog-pretty-expr): Tune assignment regular expression match
10348 string for corner cases; also use markers instead of character
10349 number as indent changes the later.
fd9ea9d3
WS
10350
103512010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
10352
6e104790
SM
10353 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
10354 as missing keyword.
10355 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
10356 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
10357 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
10358 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
10359 Tennant.
10360 (verilog-keywords):
fd9ea9d3
WS
10361 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
10362 1800-2009 keywords, including "global.".
10363
2a07afc5
JW
103642010-04-06 John Wiegley <jwiegley@gmail.com>
10365
8b32731a 10366 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
2a07afc5 10367 appearing in buffer list (if a live buffer name matched a recentf
8b32731a 10368 file basename). Should use uniquify to offer a real solution.
2a07afc5 10369
f9a27d86
JW
103702010-04-06 John Wiegley <jwiegley@gmail.com>
10371
8b32731a
JB
10372 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
10373 comment to code, and add a :version tag.
10374 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
f9a27d86 10375
9caf8a8f
JB
103762010-04-06 Juanma Barranquero <lekktu@gmail.com>
10377
10378 Enable recentf-mode if using virtual buffers.
10379 * ido.el (recentf-list): Declare for byte-compiler.
93acd23d 10380 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
9caf8a8f
JB
10381 (ido-make-buffer-list): Simplify.
10382 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
10383
5a97d2da
JL
103842010-04-05 Juri Linkov <juri@jurta.org>
10385
10386 Scrolling commands which scroll a line instead of full screen.
10387 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
10388
10389 * simple.el (scroll-up-line, scroll-down-line): New commands.
10390 Put property isearch-scroll=t on them.
10391
10392 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
10393 Remove commands.
10394
79ce172a
JL
103952010-04-05 Juri Linkov <juri@jurta.org>
10396
8b32731a 10397 Scrolling commands which do not signal errors at top/bottom.
79ce172a
JL
10398 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
10399
10400 * simple.el (scroll-up-command, scroll-down-command): New commands.
10401 Put property isearch-scroll=t on them.
10402
10403 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
10404 `scroll-down-command' and [next] from `scroll-up' to
10405 `scroll-up-command'.
10406
10407 * emulation/cua-base.el: Put property CUA=move on
10408 `scroll-up-command' and `scroll-down-command'.
10409 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
10410 and `scroll-down-command' to `cua-scroll-down'.
10411
309d5b43
JB
104122010-04-05 Juanma Barranquero <lekktu@gmail.com>
10413
6460e534 10414 * help.el (describe-mode): Return nil.
309d5b43 10415
0523d117
JW
104162010-04-04 John Wiegley <jwiegley@gmail.com>
10417
10418 * ido.el (ido-use-virtual-buffers): New variable to indicate
f9a27d86 10419 whether "virtual buffer" support is enabled for IDO.
0523d117
JW
10420 (ido-virtual): Face used to indicate virtual buffers in the list.
10421 (ido-buffer-internal): If a buffer is chosen, and no such buffer
10422 exists, but a virtual buffer of that name does (which would be why
10423 it was in the list), recreate the buffer by reopening the file.
10424 (ido-make-buffer-list): If virtual buffers are being used, call
10425 `ido-add-virtual-buffers-to-list' before the make list hook.
10426 (ido-virtual-buffers): New variable which contains a copy of the
10427 current contents of the `recentf-list', albeit pared down for the
10428 sake of speed, and with proper faces applied.
10429 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
10430 create a list of "virtual buffers" to present to the user in
10431 addition to the currently open set. Note that this logic could
10432 get rather slow if that list is too large. With the default
10433 `recentf-max-saved-items' of 200, there is little speed penalty.
10434
202ff0d6
SM
104352010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
10436
10437 * font-lock.el: Require CL when compiling.
10438 (font-lock-turn-on-thing-lock): Use `case'.
10439
ef43a0f4
EZ
104402010-04-03 Eli Zaretskii <eliz@gnu.org>
10441
10442 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
10443 Zaretskii.
ef43a0f4 10444
9c13a46e
JL
104452010-04-02 Juri Linkov <juri@jurta.org>
10446
10447 * ehelp.el (electric-help-orig-major-mode):
10448 New buffer-local variable.
10449 (electric-help-mode): Set it to original major-mode. Doc fix.
10450 (with-electric-help): Use `electric-help-orig-major-mode' instead
10451 of (default-value 'major-mode). Doc fix.
10452 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
10453
3fb87bf5
SS
104542010-04-02 Sam Steingold <sds@gnu.org>
10455
10456 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
10457 `vc-hg-command' with a list of flags.
10458
202ff0d6
SM
10459 * progmodes/bug-reference.el (bug-reference-bug-regexp):
10460 Also accept "patch" and "RFE".
dbb5e44a
SS
10461 (bug-reference-fontify): `bug-reference-url-format' can also be a
10462 function to be able to handle the bug kind.
202ff0d6 10463 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
dbb5e44a 10464
d0b22876
JD
104652010-04-02 Jan Djärv <jan.h.d@swipnet.se>
10466
10467 * tmm.el (tmm-get-keymap): Check with symbolp before passing
10468 value to fboundp, it may not be a symbol.
10469
1625d379
CY
104702010-03-31 Chong Yidong <cyd@stupidchicken.com>
10471
202ff0d6 10472 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
1625d379 10473
1cd095c6
JL
104742010-03-31 Juri Linkov <juri@jurta.org>
10475
10476 * simple.el (next-line, previous-line): Re-throw a signal
10477 with `signal' instead of using `ding'.
10478 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
10479
67189e62
JL
104802010-03-31 Juri Linkov <juri@jurta.org>
10481
10482 * simple.el (keyboard-escape-quit): Raise deselecting the active
10483 region higher than exiting the minibuffer.
10484 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
10485
1546c559
JL
104862010-03-31 Juri Linkov <juri@jurta.org>
10487
10488 * image.el (image-animated-p): Use `image-metadata' instead of
10489 `image-extension-data'. Get GIF extenstion data from metadata
10490 property `extension-data'.
10491
85626eef
SM
104922010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10493
10494 * simple.el (append-to-buffer): Simplify.
10495
85738751 104962010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
b42da387
TA
10497
10498 * textmodes/artist.el (artist-mode): Fix typo in docstring.
10499 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
10500
85738751 105012010-03-31 Kenichi Handa <handa@m17n.org>
42763dda
KH
10502
10503 * language/sinhala.el (composition-function-table): Fix regexp for
10504 the new Unicode specification.
10505
10506 * language/indian.el (devanagari-composable-pattern)
10507 (tamil-composable-pattern, kannada-composable-pattern)
85626eef 10508 (malayalam-composable-pattern): Adjust for the new Unicode
42763dda
KH
10509 specification.
10510 (bengali-composable-pattern, gurmukhi-composable-pattern)
10511 (gujarati-composable-pattern, oriya-composable-pattern)
10512 (telugu-composable-pattern): New variables to cope with the new
10513 Unicode specification. Use them in composition-function-table.
10514
85738751 105152010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
fe59d705 10516
79d74ac5 10517 Make tmm-menubar work for the Buffers menu again (bug#5726).
fe59d705
SM
10518 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
10519 vectors rather than cons cells, as used in menu-bar-update-buffers.
10520
85738751 105212010-03-31 Chong Yidong <cyd@stupidchicken.com>
03ffe8be 10522
2a793f7f
CY
10523 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
10524 (js-insert-and-indent): Revert 2009-08-15 change, restoring
10525 electric punctuation for "{}();,:" (Bug#5586).
10526
03ffe8be
CY
10527 * mail/sendmail.el (mail-default-directory): Doc fix.
10528
85738751 105292010-03-31 Chong Yidong <cyd@stupidchicken.com>
03ffe8be
CY
10530
10531 * mail/sendmail.el (mail-default-directory): Doc fix.
10532
85738751 105332010-03-31 Eli Zaretskii <eliz@gnu.org>
94785022
EZ
10534
10535 * subr.el (version-regexp-alist, version-to-list)
10536 (version-list-<, version-list-=, version-list-<=)
10537 (version-list-not-zero, version<, version<=, version=): Doc fix.
10538 (Bug#5744).
10539
85738751 105402010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
431af6a4
DN
10541
10542 * vc.el (vc-root-diff): Doc fix.
10543
85738751 105442010-03-31 Chong Yidong <cyd@stupidchicken.com>
9d30a9f4 10545
9aa2c576
CY
10546 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
10547
9d30a9f4
CY
10548 * simple.el (append-to-buffer): Fix last change.
10549
85738751 105502010-03-31 Chong Yidong <cyd@stupidchicken.com>
d0fba174
CY
10551
10552 * simple.el (append-to-buffer): Ensure that point is preserved if
10553 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
10554 (Bug#5749)
10555
2372f278
SM
105562010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10557
10558 * files.el (auto-mode-case-fold): Change default to t.
10559
2223a1b3
JL
105602010-03-30 Juri Linkov <juri@jurta.org>
10561
10562 * dired-x.el (dired-omit-mode): Doc fix.
10563
0ef84fc8
JL
105642010-03-30 Juri Linkov <juri@jurta.org>
10565
10566 * replace.el (occur-accumulate-lines): Move occur-engine related
10567 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
10568 to be located after `occur-engine'.
10569
dc2d2590
JL
105702010-03-30 Juri Linkov <juri@jurta.org>
10571
10572 Make occur handle multi-line matches cleanly with context.
10573 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
10574
10575 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
10576 (occur-engine): Add local variables `ret', `prev-after-lines',
10577 `prev-lines'. Use more arguments for `occur-context-lines'.
10578 Set first elem of its returned list to `data', and the second elem
10579 to `prev-after-lines'. Don't print the separator line.
10580 In the end, print remaining context after-lines.
10581 (occur-context-lines): Add new arguments `begpt', `endpt',
10582 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
10583 after-lines of the previous match with before-lines of the
10584 current match and not overlap them. Return a list with two
10585 values: the output line and the list of context after-lines.
10586
47c88c06
JL
105872010-03-30 Juri Linkov <juri@jurta.org>
10588
10589 * replace.el (occur-accumulate-lines): Fix a bug where the first
10590 context line at the beginning of the buffer was missing.
10591
a7b02820
EZ
105922010-03-30 Eli Zaretskii <eliz@gnu.org>
10593
10594 * files.el: Make bidi-display-reordering safe variable for boolean
10595 values.
10596
9326ba26 105972010-03-29 Phil Hagelberg <phil@evri.com>
4e2af782 10598 Chong Yidong <cyd@stupidchicken.com>
9326ba26
CY
10599
10600 * subr.el: Extend progress reporters to perform "spinning".
85626eef
SM
10601 (progress-reporter-update, progress-reporter-do-update):
10602 Handle non-numeric value arguments.
9326ba26
CY
10603 (progress-reporter--pulse-characters): New var.
10604
f6f8aa12
CY
106052010-03-28 Chong Yidong <cyd@stupidchicken.com>
10606
10607 * progmodes/compile.el (compilation-start): Fix regexp detection
10608 of initial cd command (Bug#5771).
10609
7ed287b5
CY
106102010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
10611
10612 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
10613
146b8b16
NR
106142010-03-27 Nick Roberts <nickrob@snap.net.nz>
10615
10616 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
76e3243a
JB
10617 * progmodes/gdb-mi.el: Restore.
10618 * progmodes/gdb-ui.el: Remove.
10619 * progmodes/gud.el: Re-accommodate for gdb-mi.el.
146b8b16 10620
b23caf75
GM
106212010-03-25 Glenn Morris <rgm@gnu.org>
10622
10623 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
10624 all dired buffers, even tramp ones. (Bug#5755)
10625
18c812bd
SM
106262010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
10627
10628 Add "union tags" in mpc.el.
10629 * mpc.el: Remove backward compatibility code.
10630 (mpc-browser-tags): Change default.
10631 (mpc--find-memoize-union-tags): New var.
10632 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
10633 (mpc-cmd-find): Handle the case where the playlist does not exist.
10634 Handle union-tags.
10635 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
10636 (mpc-cmd-add): Use mpc-cmd-flush.
10637 (mpc-tagbrowser-tag-name): New fun.
10638 (mpc-tagbrowser-buf): Use it.
10639 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
10640
efee6a6d
SM
106412010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
10642
9586c41a
SM
10643 Misc cleanup.
10644 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
10645 Use replace-regexp-in-string.
10646 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
10647 (makefile-imake-mode-syntax-table): Move init into defvar.
10648 (makefile-mode): Use define-derived-mode.
10649
efee6a6d
SM
10650 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
10651 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
10652 not be present any more.
10653
c6f3804c
JB
106542010-03-24 Juanma Barranquero <lekktu@gmail.com>
10655
10656 * faces.el (set-face-attribute): Fix typo in docstring.
10657 (face-valid-attribute-values): Reflow docstring.
10658
e867cb5d 106592010-03-24 Glenn Morris <rgm@gnu.org>
4c3a215a 10660
efee6a6d 10661 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
4c3a215a 10662
e867cb5d 106632010-03-24 Chong Yidong <cyd@stupidchicken.com>
e9ba3e26
CY
10664
10665 * indent.el (indent-for-tab-command): Doc fix.
10666
e867cb5d 106672010-03-24 Alan Mackenzie <acm@muc.de>
657071fc 10668
efee6a6d
SM
10669 * progmodes/cc-engine.el (c-remove-stale-state-cache):
10670 Fix off-by-one error. Fixes bug #5747.
657071fc 10671
e867cb5d 106722010-03-24 Juanma Barranquero <lekktu@gmail.com>
c8de140b
JB
10673
10674 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
10675 (image-dired-read-comment): Doc fix.
10676
efee6a6d
SM
10677 * json.el (json-object-type, json-array-type, json-key-type)
10678 (json-false, json-null, json-read-number):
c8de140b
JB
10679 * minibuffer.el (completion-in-region-functions):
10680 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
10681 (cal-tex-cursor-week):
10682 * emacs-lisp/trace.el (trace-function):
10683 * eshell/em-basic.el (eshell/printnl):
10684 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
10685 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
10686 * obsolete/levents.el (allocate-event, event-key, event-object)
10687 (event-point, event-process, event-timestamp, event-to-character)
10688 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
10689 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
10690 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
10691 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
10692 (reftex-highlight-selection): Fix typos in docstrings.
10693
e867cb5d 106942010-03-24 Juanma Barranquero <lekktu@gmail.com>
d1200087
JB
10695
10696 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
10697
e867cb5d 106982010-03-24 Glenn Morris <rgm@gnu.org>
f454672b
GM
10699
10700 * mail/rmail.el (rmail-highlight-face): Restore option deleted
10701 2008-02-13 without comment; mark it obsolete.
10702 (rmail-highlight-headers): Use rmail-highlight-face once more.
10703
e867cb5d 107042010-03-24 Chong Yidong <cyd@stupidchicken.com>
d5704d66
CY
10705
10706 * woman.el (woman2-process-escapes): Only consume the newline if
10707 the filler character is on a line by itself (Bug#5729).
10708
e867cb5d 107092010-03-24 Kenichi Handa <handa@m17n.org>
fade35dd
KH
10710
10711 * language/indian.el (devanagari-composable-pattern): Add more
10712 consonants.
10713
e867cb5d 107142010-03-24 Michael Albinus <michael.albinus@gmx.de>
c8215db1
MA
10715
10716 * net/trampver.el: Update release number.
10717
e867cb5d 107182010-03-24 Michael Albinus <michael.albinus@gmx.de>
c0e17ff2 10719
efee6a6d
SM
10720 * net/tramp.el (tramp-find-executable):
10721 Use `tramp-get-connection-buffer'. Make the regexp for checking
c0e17ff2
MA
10722 output of "wc -l" more robust.
10723 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
10724 (tramp-open-connection-setup-interactive-shell): Remove workaround
10725 for OpenSolaris bug, it is not needed anymore.
10726
e867cb5d 107272010-03-24 Glenn Morris <rgm@gnu.org>
eb123b12
GM
10728
10729 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
10730
e867cb5d 107312010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
5f8d2ce0
WS
10732
10733 * files.el (auto-mode-alist): Accept more verilog file patterns.
10734
b2b8574b
SM
107352010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
10736
10737 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
10738
1d94ebb0
GM
107392010-03-24 Glenn Morris <rgm@gnu.org>
10740
7e263967
GM
10741 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
10742 log-edit-before-checkin-process.
10743
5ac92c5f
GM
10744 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
10745
10746 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
ebbe23dd 10747
549f324a
GM
10748 * vc-dispatcher.el (vc-start-logentry): Doc fix.
10749 (log-view-process-buffer, log-edit-extra-flags): Declare.
10750
495b517c
GM
10751 * log-edit.el (log-edit-before-checkin-process): Doc fix.
10752
f4087766
SS
107532010-03-23 Sam Steingold <sds@gnu.org>
10754
10755 Fix bug#5620: recalculate all markers on compilation buffer
10756 modifications, not on file modifications.
38e9aa53
GM
10757 * progmodes/compile.el (compilation-buffer-modtime): New buffer-local
10758 variable: the buffer modification time, for buffers not associated with
10759 files.
f4087766
SS
10760 (compilation-mode): Create it.
10761 (compilation-filter): Update it.
10762 (compilation-next-error-function): Use it instead of
10763 `visited-file-modtime' for timestamp.
10764
774642e5
JL
107652010-03-23 Juri Linkov <juri@jurta.org>
10766
10767 Implement Occur multi-line matches.
10768 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
10769
10770 * replace.el (occur): Doc fix.
10771 (occur-engine): Set `begpt' to the beginning of the first line.
10772 Set `endpt' to the end of the last match line. At first, count
10773 line numbers between `origpt' and `begpt'. Split out code from
10774 `out-line' variable to new let-bindings `match-prefix' and
10775 `match-str'. In `out-line' add non-numeric prefix to all
10776 non-first lines of multi-line matches. Finally, count lines
10777 between `begpt' and `endpt' and add to `lines'.
10778
f14d1172
JL
107792010-03-23 Juri Linkov <juri@jurta.org>
10780
10781 * replace.el (occur-accumulate-lines, occur-engine):
10782 Use `occur-engine-line' instead of duplicate code.
10783 (occur-engine-line): New function created from duplicate code
10784 in `occur-accumulate-lines' and `occur-engine'.
10785
53e87c57
JL
10786 * replace.el (occur-engine-line): Add optional arg `keep-props'.
10787 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
10788
75a3ff20
JL
107892010-03-23 Juri Linkov <juri@jurta.org>
10790
10791 * finder.el: Remove TODO tasks.
10792
10793 * info.el (Info-finder-find-node): Add node "all"
10794 with all package info. Handle a list of multiple keywords
10795 separated by comma.
10796 (info-finder): In interactive use with a prefix argument,
10797 use `completing-read-multiple' to read a list of keywords
10798 separated by comma.
10799
00278747
SM
108002010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
10801
10802 Add a new completion style `substring'.
10803 * minibuffer.el (completion-basic--pattern): New function.
10804 (completion-basic-try-completion, completion-basic-all-completions):
10805 Use it.
10806 (completion-substring--all-completions)
10807 (completion-substring-try-completion)
10808 (completion-substring-all-completions): New functions.
10809 (completion-styles-alist): New style `substring'.
10810
64cb11cc
SM
108112010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
10812
10813 Get rid of .elc files after removal of the corresponding .el.
10814 * Makefile.in (compile-clean): New target.
10815 (compile-main): Use it.
10816
835e2c65
JD
108172010-03-22 Jan Djärv <jan.h.d@swipnet.se>
10818
10819 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
10820 don't do make there. When compiling with separate object dir, there
10821 is no Makefile there.
10822
111a9dff
SM
108232010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
10824
10825 Get rid of the ELCFILES abomination, again.
10826 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
10827 (all, compile): Don't call compile-last.
10828 (compile-main): Build the "elcfiles" list dynamically.
10829 (compile-targets): New (internal) target.
10830
82c3d67a
AS
108312010-03-21 Andreas Schwab <schwab@linux-m68k.org>
10832
10833 * Makefile.in (top_srcdir): Define.
10834 (abs_top_builddir): Define.
10835 (srcdir): Don't append `/..'.
10836 (EMACS): Use ${abs_top_builddir}.
10837 (all, compile, compile-always, compile-last): Don't set emacswd.
64cb11cc
SM
10838 (update-subdirs, update-authors): Use $(top_srcdir) instead of
10839 $(srcdir).
82c3d67a
AS
10840 (lisp): Use $(srcdir) instead of @srcdir@.
10841
d66ecdbb
JL
108422010-03-21 Juri Linkov <juri@jurta.org>
10843
10844 Fix message of multi-line occur regexps and multi-buffer header lines.
10845 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
10846
10847 * replace.el (occur-1): Don't display regexp if it is longer
10848 than window-width. Use `query-replace-descr' to display regexp.
10849 (occur-engine): Don't display regexp in the buffer header for
10850 multi-buffer occur. Display a separate header line with total
10851 match count and regexp for multi-buffer occur.
10852 Use `query-replace-descr' to display regexp.
10853
f05e1b94
TZ
108542010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
10855
10856 * net/secrets.el: Fix parenthesis.
10857 (secrets-enabled): Fix parenthesis.
10858
801ba3ba
SM
108592010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
10860
3613edce
SM
10861 Use more relative file and directory names.
10862 * Makefile.in (EMACS): Arrange for it to work when we chdir.
10863 (setwins, setwins_almost, setwins_for_subdirs):
10864 Don't `cd'; output relative names.
10865 (all, compile, compile-always, compile-last): Set emacswd.
10866 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
10867 Just cd to the lisp source dir so we can use relative file names.
10868
801ba3ba
SM
10869 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
10870
2b1400b9
GM
108712010-03-20 Glenn Morris <rgm@gnu.org>
10872
10873 * textmodes/rst.el: Use faces for font-lock customization, and make the
10874 old -face variables obsolete.
10875 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
10876 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
10877 (rst-block-face, rst-external-face, rst-definition-face)
10878 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
10879 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
10880 Make obsolete.
10881 (rst-font-lock-keywords-function): Update for above changes.
10882
5e418f17
JL
108832010-03-20 Juri Linkov <juri@jurta.org>
10884
10885 * s-region.el:
10886 * obsolete/s-region.el: Move to obsolete.
10887
b0287b39
JB
108882010-03-19 Juanma Barranquero <lekktu@gmail.com>
10889
10890 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
10891
3c95bbb6
DN
108922010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
10893
10894 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
10895
09158997
DN
108962010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
10897
10898 Add special markup processing for commit logs.
10899 * log-edit.el (log-edit-extra-flags): New variable.
10900 (log-edit): Add new argument MODE. Use that mode when non-nil
10901 instead of the log-view-mode.
10902 (log-view-process-buffer): New function.
10903
10904 * vc.el: Document that the checkin method takes optional
10905 arguments. Document new backend specific method: log-view-mode.
10906 (vc-default-log-edit-mode): New function.
10907 (vc-checkin): Use a backend specific log-view-mode.
10908 Pass extra arguments to the checkin method.
10909 (vc-modify-change-comment): Pass a dummy extra argument.
10910
10911 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
10912 log-edit.
10913 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
10914 (vc-finish-logentry): Process the log buffer before passing it
10915 down. Pass log-edit-extra-flags.
10916
10917 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
10918 command.
85626eef
SM
10919 (log-edit-extra-flags, log-edit-before-checkin-process):
10920 New declarations.
09158997
DN
10921
10922 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
10923 command.
85626eef
SM
10924 (log-edit-extra-flags, log-edit-before-checkin-process):
10925 New declarations.
09158997
DN
10926 (vc-hg-log-edit-mode): New derived mode.
10927
10928 * vc-arch.el (vc-arch-checkin):
10929 * vc-cvs.el (vc-cvs-checkin):
10930 * vc-git.el (vc-git-checkin):
10931 * vc-mtn.el (vc-mtn-checkin):
10932 * vc-rcs.el (vc-rcs-checkin):
10933 * vc-sccs.el (vc-sccs-checkin):
10934 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
10935
f430423d
SM
109362010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
10937
10938 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
10939 parent typo).
10940
aa8f8277
GM
109412010-03-19 Glenn Morris <rgm@gnu.org>
10942
f430423d 10943 * password-cache.el (password-cache, password-cache-expiry): Autoload.
aa8f8277 10944
04525749
GM
109452010-03-18 Glenn Morris <rgm@gnu.org>
10946
c70815f1
GM
10947 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
10948
84d0a5f8
GM
10949 * replace.el (query-replace-history): Give it a doc string.
10950 (map-query-replace-regexp): Use query-replace-from-history-variable
10951 and query-replace-to-history-variable.
10952
e3a15161
GM
10953 * mail/hashcash.el (declare-function): Remove duplicate definition.
10954
27be0364
GM
10955 * mail/emacsbug.el (report-emacs-bug-pretest-address):
10956 Make it an obsolete alias for report-emacs-bug-address.
10957 (message-strip-special-text-properties): Declare.
10958 (report-emacs-bug): Remove test for a pretest bug address.
10959 Combine message-mode-specific code.
10960
88b8d18e
GM
10961 * mail/supercite.el: Don't require sendmail.
10962 (mh-in-header-p): Declare rather than using with-no-warnings.
10963 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
10964 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
10965
1a355d09
GM
10966 * calendar/cal-french.el: Convert to utf-8.
10967
04525749
GM
10968 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
10969 Emacs scripts.
10970
ae84eb97
MA
109712010-03-16 Michael Albinus <michael.albinus@gmx.de>
10972
10973 * net/secrets.el (secrets-enabled): New variable. Use it instead
10974 of a subfeature.
10975
7c75524e
MA
109762010-03-15 Michael Albinus <michael.albinus@gmx.de>
10977
10978 * net/secrets.el (top): Register the D-Bus signals only when the
f430423d
SM
10979 service "org.freedesktop.secrets" can be pinged.
10980 Provide subfeature `enabled'.
7c75524e 10981
57938a79
JL
109822010-03-14 Juri Linkov <juri@jurta.org>
10983
10984 Add finder unknown keywords.
10985
10986 * finder.el (finder-unknown-keywords): New function.
10987
10988 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
10989 to create a Finder node with unknown keywords.
10990
88f4758e
JL
109912010-03-14 Juri Linkov <juri@jurta.org>
10992
10993 * finder.el (finder-compile-keywords): Replace `princ' with
10994 `prin1' on a list of symbols interned from keyword strings.
10995
10996 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
10997 a comma, then split keywords using a comma and optional whitespace.
10998 Otherwise, split by whitespace.
10999
11000 * complete.el:
11001 * face-remap.el:
11002 * log-view.el:
11003 * net/hmac-def.el:
11004 * net/hmac-md5.el:
11005 * net/netrc.el:
11006 * progmodes/mixal-mode.el: Fix keywords.
11007
7725ebb7
MA
110082010-03-13 Michael Albinus <michael.albinus@gmx.de>
11009
11010 * Makefile.in (ELCFILES): Add net/secrets.elc.
11011
11012 * net/secrets.el: New file.
11013
6f320937
CY
110142010-03-12 Chong Yidong <cyd@stupidchicken.com>
11015
11016 * facemenu.el (list-colors-display, list-colors-print): New arg
11017 callback. Use it to allow selecting colors.
11018
11019 * wid-edit.el (widget-image-insert): Insert image prop even if the
11020 current display is non-graphic.
11021 (widget-field-value-set): New fun.
11022 (editable-field): Use it.
11023 (widget-field-value-get): Clean up unused var.
85626eef
SM
11024 (widget-color-value-create, widget-color--choose-action):
11025 New funs. Allow using list-colors-display to choose color.
6f320937 11026
647f9993
CY
110272010-03-12 Chong Yidong <cyd@stupidchicken.com>
11028
11029 * cus-edit.el: Resort topmost custom groups.
11030 (custom-buffer-sort-alphabetically): Default to t.
11031 (customize-apropos): Use apropos-parse-pattern.
11032 (custom-search-field): New var.
11033 (custom-buffer-create-internal): Add custom-apropos search field.
11034 (custom-add-parent-links): Don't display parent doc.
11035 (custom-group-value-create): Don't sort top-level custom group.
85626eef 11036 (custom-magic-value-create): Show visibility button before option name.
647f9993
CY
11037
11038 (custom-variable-state): New fun, from custom-variable-state-set.
11039 (custom-variable-state-set): Use it.
11040 (custom-group-value-create): Hide options with standard values
11041 using the :hidden-states property. Use progress reporter.
11042
11043 (custom-show): Simplify.
11044 (custom-visibility): Disable images by default.
11045 (custom-variable): New property :hidden-states.
11046 (custom-variable-value-create): Enable images for
11047 custom-visibility widgets. Use :hidden-states property to
11048 determine initial visibility.
11049
11050 * wid-edit.el (widget-image-find): Give images center ascent.
11051 (visibility): Add :on-image and :off-image properties.
11052 (widget-visibility-value-create): Use them.
11053
eba5b4dd
CY
110542010-03-12 Chong Yidong <cyd@stupidchicken.com>
11055
11056 * cus-edit.el (processes): Remove from development group.
11057 (oop, hypermedia): Delete group.
26f4b8ab 11058 (comm): Promote to top-level group.
eba5b4dd
CY
11059
11060 * net/browse-url.el (browse-url):
11061 * net/xesam.el (xesam):
11062 * net/tramp.el (tramp):
11063 * net/goto-addr.el (goto-address):
26f4b8ab 11064 * net/ange-ftp.el (ange-ftp): Put in comm group.
eba5b4dd
CY
11065
11066 * view.el (view): Remove from editing group.
11067
11068 * uniquify.el (uniquify): Put in files group.
11069
11070 * net/browse-url.el (browse-url):
11071 * ps-print.el (postscript): Put in external group.
11072
11073 * cus-edit.el (outlines):
11074 * textmodes/text-mode.el (text-mode-hook):
11075 * textmodes/table.el (table):
11076 * textmodes/picture.el (picture):
11077 * outline.el (outlines): Put in wp group.
11078
11079 * nxml/nxml-mode.el (nxml): Remove from wp group.
11080
11081 * net/tramp-imap.el (tramp-imap): Put in tramp group.
11082
11083 * mail/metamail.el (metamail): Remove from hypermedia group.
11084
11085 * cus-edit.el (abbrev):
11086 * whitespace.el (whitespace):
11087 * vcursor.el (vcursor):
11088 * reveal.el (reveal):
11089 * hl-line.el (hl-line): Put in convenience group.
11090
11091 * epg-config.el (epg): Put in data group.
11092
11093 * emulation/pc-select.el (pc-select): Put in emulations group.
11094
11095 * calculator.el (calculator): Put in applications group.
11096
8117868f
DN
110972010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
11098
11099 Add .dir-locals.el support for file-less buffers.
11100 * files.el (hack-local-variables): Split out code to apply local
11101 variable settings ...
11102 (hack-local-variables-apply): ... here. New function.
11103 (hack-dir-local-variables): Use the default directory for when the
11104 buffer does not have an associated file.
11105 (hack-dir-local-variables-non-file-buffer): New function.
11106 * diff-mode.el (diff-mode):
11107 * vc-annotate.el (vc-annotate-mode):
11108 * vc-dir.el (vc-dir-mode):
11109 * log-edit.el (log-edit-mode):
11110 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
11111
855a2294
DN
111122010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
11113
11114 Add support for shelving snapshots and for showing shelves.
11115 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
11116 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
11117 New functions.
11118 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
11119 (vc-bzr-extra-menu-map): Map them.
11120
3e5b7009
GM
111212010-03-11 Glenn Morris <rgm@gnu.org>
11122
0dcf7d7e
GM
11123 * cus-edit.el (customize-changed-options-previous-release):
11124 Bump to 23.1.
11125
3e5b7009
GM
11126 * image.el (image-animate-max-time): Fix :version tag.
11127
288f9fc0
CY
111282010-03-10 Chong Yidong <cyd@stupidchicken.com>
11129
11130 * Branch for 23.2.
11131
53ef91b1
SM
111322010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
11133
11134 * vc-git.el (vc-git-revision-table): Include remote branches.
11135
b41460ae 111362010-03-10 Kim F. Storm <storm@cua.dk>
0608aa45
KS
11137
11138 Animated image API.
11139 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
11140
11141 * image.el (image-animate-max-time): New defcustom.
11142 (image-animated-types): New defconst.
11143 (create-animated-image, image-animate-timer)
11144 (image-animate-start, image-animate-stop, image-animate-timeout)
11145 (image-animated-p): New functions.
11146
11147 * image-mode.el (image-toggle-display-image):
11148 Replace `create-image' with `create-animated-image'.
11149
e5d1fb10 111502010-03-09 Miles Bader <miles@gnu.org>
25344b05
MB
11151
11152 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
11153 instead of "format:"; this ensures that the output is
11154 newline-terminated.
11155
4e7cafbe
CY
111562010-03-08 Chong Yidong <cyd@stupidchicken.com>
11157
11158 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
11159 that all errors are caught, and that the return value is always a
11160 list (Bug#5692).
11161
aec66319
KH
111622010-03-08 Kenichi Handa <handa@m17n.org>
11163
11164 * language/misc-lang.el (windows-1256): New coding system.
ebc3ea5c 11165 (cp1256): New alias of windows-1256 (bug#5690).
aec66319 11166
b327c975
AS
111672010-03-07 Andreas Schwab <schwab@linux-m68k.org>
11168
11169 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
11170 call to rfc822-bad-address. (Bug#5692)
11171
1c465a6a
CY
111722010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
11173
85626eef
SM
11174 * vc-git.el (vc-git-annotate-extract-revision-at-line):
11175 Use vc-git-root as default directory for revision path (Bug#5657).
1c465a6a 11176
a4e32226
CY
111772010-03-06 Chong Yidong <cyd@stupidchicken.com>
11178
11179 * calculator.el (calculator): Don't bind split-window-keep-point
11180 (Bug#5674).
11181
4c83ed3d
SM
111822010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
11183
11184 * vc-git.el: Re-flow to fit into 80 columns.
11185 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
11186 Remove spurious `quote' element in each case alternative.
11187 (vc-git-show-log-entry): Use prog1.
11188 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
11189
e8defde3
SM
111902010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
11191
11192 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
11193
233f0c9f
CY
111942010-03-03 Chong Yidong <cyd@stupidchicken.com>
11195
11196 * macros.el (insert-kbd-macro): Look up keyboard macro using the
11197 definition, not the name (Bug#5481).
11198
254bedef 111992010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
bc91aee9
ŠN
11200
11201 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
11202 argument with a local variable. (Bug#5670)
11203
7187cdae
JL
112042010-03-02 Juri Linkov <juri@jurta.org>
11205
11206 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
11207
9cf3544e
MA
112082010-03-02 Michael Albinus <michael.albinus@gmx.de>
11209
11210 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
11211 error when FILENAME and NEWNAME are existing remote directories.
11212
11213 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
11214 parameter DIR-FLAG.
11215
33f77982
GM
112162010-03-02 Glenn Morris <rgm@gnu.org>
11217
11218 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
11219 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
11220
d99ea08e
KH
112212010-03-01 Kenichi Handa <handa@m17n.org>
11222
e8defde3 11223 * language/burmese.el (burmese-composable-pattern): Rename from
d99ea08e
KH
11224 myanmar-composable-pattern.
11225
e8defde3
SM
11226 * international/characters.el (script-list):
11227 * international/fontset.el (script-representative-chars):
11228 Change myanmar to burmese.
d99ea08e 11229 (otf-script-alist): Likewise.
4aa2c3b2
KH
11230 (setup-default-fontset): Likewise. Re-fix :otf spec.
11231
b374f54d
KY
112322010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
11233
11234 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
11235
71572c03
JD
112362010-02-28 Jan Djärv <jan.h.d@swipnet.se>
11237
11238 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
11239
00cffdeb
MA
112402010-02-28 Michael Albinus <michael.albinus@gmx.de>
11241
11242 * net/tramp.el (tramp-handle-write-region): START can be a string.
11243 Take care in the checks. Reported by Dan Davison
11244 <davison@stats.ox.ac.uk>.
11245
d4b06783
MA
112462010-02-28 Michael Albinus <michael.albinus@gmx.de>
11247
11248 * net/dbus.el (dbus-introspect, dbus-get-property)
85626eef
SM
11249 (dbus-set-property, dbus-get-all-properties):
11250 Use `dbus-call-method' when noninteractive. (Bug#5645)
d4b06783 11251
8c3e96d2
CY
112522010-02-28 Chong Yidong <cyd@stupidchicken.com>
11253
de3a1fe9
CY
11254 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
11255 * emacs-lisp/elint.el (elint-add-required-env):
de3a1fe9
CY
11256 * calendar/icalendar.el (icalendar--add-diary-entry):
11257 * calc/calcalg2.el (math-tracing-integral):
8c3e96d2
CY
11258 * files.el (recover-session-finish): Use with-current-buffer
11259 instead of save-excursion.
11260
c53b9c3b
SM
112612010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
11262
11263 Fix in-buffer completion when after-change-functions modify the buffer.
11264 * minibuffer.el (completion--replace): New function.
11265 (completion--do-completion): Use it and use relative movement.
11266
4a16bdc6
CY
112672010-02-27 Chong Yidong <cyd@stupidchicken.com>
11268
11269 * international/fontset.el (setup-default-fontset): Fix :otf spec.
d99ea08e 11270
b8280f39
CY
112712010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
11272
c53b9c3b
SM
11273 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
11274 Allow the characters _<> in the stack entry (Bug#5653).
b8280f39 11275
f88cc4d6
KH
112762010-02-26 Kenichi Handa <handa@m17n.org>
11277
11278 * language/burmese.el: Fix entries in composition-function-table.
11279 (myanmar-composable-pattern): New variable.
11280
11281 * international/fontset.el (setup-default-fontset): Add an entry
11282 for myanmar.
11283
11284 * international/characters.el (script-list): Add Myanmar
11285 Extended-A.
11286
cdbf9100
GM
112872010-02-26 Glenn Morris <rgm@gnu.org>
11288
90a94603
GM
11289 * custom.el (custom-initialize-delay): Doc fix.
11290
cdbf9100
GM
11291 * mail/sendmail.el (send-mail-function): Autoload the call
11292 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
11293
f95a5fd0
CY
112942010-02-24 Chong Yidong <cyd@stupidchicken.com>
11295
11296 * files.el (hack-local-variables-filter): For eval forms, also
11297 check safe-local-variable-p (Bug#5636).
11298
459a5f4b
MA
112992010-02-22 Michael Albinus <michael.albinus@gmx.de>
11300
11301 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
11302 setting the modes by `ignore-errors'. It might fail, for example
11303 if the file is not owned by the user but the group.
11304 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
11305
bb23f6e8
CY
113062010-02-21 Chong Yidong <cyd@stupidchicken.com>
11307
6a7662bb
BR
11308 * files.el (directory-listing-before-filename-regexp):
11309 Use stricter matching for iso-style dates, to avoid false matches with
50c58e27
CY
11310 date-like filenames (Bug#5597).
11311
b660eb70
CY
11312 * htmlfontify.el (htmlfontify): Doc fix.
11313
11314 * eshell/eshell.el (eshell): Doc fix.
11315
bb23f6e8
CY
11316 * startup.el (fancy-about-screen): In mode-line, apply
11317 mode-line-buffer-id face only to the buffer name (Bug#5613).
11318
3e39928c
CY
113192010-02-20 Kevin Ryde <user42@zip.com.au>
11320
f7e0618c
JB
11321 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11322 In `watcom' anchor regexp to start of line, to avoid slowness
3e39928c
CY
11323 (Bug#5599).
11324
0f00e948
EZ
113252010-02-20 Eli Zaretskii <eliz@gnu.org>
11326
11327 * subr.el (remove-yank-excluded-properties): Explain in a comment
11328 why `category' property is removed.
11329
3513efb2
CY
113302010-02-19 Chong Yidong <cyd@stupidchicken.com>
11331
6a7662bb
BR
11332 * isearch.el (isearch-update-post-hook, isearch-update):
11333 Revert 2010-02-17 change.
3513efb2 11334
b4340b3f
UJ
113352010-02-19 Ulf Jasper <ulf.jasper@web.de>
11336
11337 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
11338 (icalendar--convert-weekly-to-ical)
11339 (icalendar--convert-yearly-to-ical)
11340 (icalendar--convert-block-to-ical)
11341 (icalendar--convert-cyclic-to-ical)
11342 (icalendar--convert-anniversary-to-ical): Take care of time
11343 specifications where hour has 1-digit only (Bug#5549).
11344
8cfae03d
NR
113452010-02-19 Nick Roberts <nickrob@snap.net.nz>
11346
11347 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
11348 of disassemble output in GDB 7.1.
11349
055e4eea
GM
113502010-02-19 Glenn Morris <rgm@gnu.org>
11351
11352 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
11353 property. (Bug#5593)
11354
ff6b00de
SS
113552010-02-18 Sam Steingold <sds@gnu.org>
11356
11357 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
11358
fe8c0b47
SM
113592010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
11360
11361 Use abbreviated file names in bookmarks (bug#5591).
11362 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
11363 calls to expand-file-name.
11364 (bookmark-relocate): Use abbreviated file names in bookmarks.
11365 (bookmark-load): Use abbreviated file names in messages.
11366
73a37a69
MA
113672010-02-18 Michael Albinus <michael.albinus@gmx.de>
11368
11369 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
11370 expand "." and "..". Reported by Thierry Volpiatto
11371 <thierry.volpiatto@gmail.com>.
11372
6e4f5731
MA
113732010-02-18 Michael Albinus <michael.albinus@gmx.de>
11374
11375 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
11376 permissions of the temporary file to "0600". In case the remote
11377 file has no read permissions for the owner, there might be
11378 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
11379
1138022010-02-18 Glenn Morris <rgm@gnu.org>
b788a98d
GM
11381
11382 * emacs-lisp/authors.el (authors-renamed-files-alist):
11383 Add entries for INSTALL.CVS.
11384
ba5bf642
MH
113852010-02-17 Mark A. Hershberger <mah@everybody.org>
11386
f7e0618c 11387 * vc-bzr.el: Fix typo in Known Bugs section.
ba5bf642 11388
f7e0618c 11389 * isearch.el (isearch-update-post-hook): New hook.
ba5bf642
MH
11390 (isearch-update): Use the new hook.
11391
aac0b0f2
MA
113922010-02-16 Michael Albinus <michael.albinus@gmx.de>
11393
fe8c0b47
SM
11394 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
11395 Fix errors in copying directories.
aac0b0f2
MA
11396 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
11397 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
11398 (tramp-handle-delete-file)
11399 (tramp-handle-dired-recursive-delete-directory)
11400 (tramp-handle-write-region): Flush also the cache for the upper
11401 directory.
11402
05bbe066
CY
114032010-02-16 Chong Yidong <cyd@stupidchicken.com>
11404
e8ab3908
CY
11405 * simple.el (save-interprogram-paste-before-kill): Doc fix.
11406
ff90f4b0
CY
11407 * cus-edit.el (hardware): Doc fix.
11408
11409 * man.el (man): Add to external custom group.
11410
11411 * delim-col.el (columns): Move to wp custom group.
11412
11413 * doc-view.el (doc-view): Add to data custom group.
11414
fe8c0b47 11415 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
ff90f4b0 11416
05bbe066
CY
11417 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
11418 by ispell-parse-output (Bug#5575).
11419
fa6ea913
KH
114202010-02-16 Kenichi Handa <handa@m17n.org>
11421
11422 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
11423 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
11424 (skkdic-convert): Use `euc-japan' coding system for writing.
11425
88fd78ae
GM
114262010-02-16 Glenn Morris <rgm@gnu.org>
11427
11428 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
11429 tex-main-file before using it. (Bug#5562)
11430
2b8c974a
SM
114312010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
11432
11433 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
11434 warnings, since it is annoying for the user to see them each time he
11435 runs the code.
11436
7540f029
MA
114372010-02-15 Michael Albinus <michael.albinus@gmx.de>
11438
11439 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
11440 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
11441 instead of PROC for caching "first-password-request". Otherwise,
11442 new processes would not profit from passwords already entered.
11443
2b8c974a
SM
11444 * net/tramp-cache.el (tramp-dump-connection-properties):
11445 Don't save "first-password-request" property.
7540f029 11446
fa5f7c5f
JB
114472010-02-14 Juanma Barranquero <lekktu@gmail.com>
11448
11449 * outline.el (outline-head-from-level):
11450 * simple.el (with-wrapper-hook):
fa5f7c5f
JB
11451 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
11452 (elint-defun, elint-buffer-env, elint-top-form-logged)
11453 (elint-unbound-variable):
11454 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
11455 Fix typos in docstrings.
11456
ecbaeb7b
MA
114572010-02-14 Michael Albinus <michael.albinus@gmx.de>
11458
11459 * files.el (insert-directory): When WILDCARD-REGEXP and
11460 FULL-DIRECTORY-P are nil, insert the file entry instead of the
11461 whole directory. (Bug#5551)
11462
11463 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
11464 dired's alignment sanity. (Bug#5516)
11465
91e3333f
JL
114662010-02-14 Juri Linkov <juri@jurta.org>
11467
11468 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
11469 Remove remaining ^H with their preceding chars. (Bug#5566)
11470
36020642
GM
114712010-02-13 Glenn Morris <rgm@gnu.org>
11472
11473 * simple.el (transpose-subr): Give it a doc-string.
11474
11475 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
11476 Doc fixes.
11477
f5952338
JL
114782010-02-12 Juri Linkov <juri@jurta.org>
11479
11480 * arc-mode.el (archive-unique-fname): Make directories for nested
11481 archives. (Bug#5540)
11482
918fe50f
JL
114832010-02-12 Juri Linkov <juri@jurta.org>
11484
11485 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
11486
c07ff221
SM
114872010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
11488
48b1e7cf
SM
11489 * subr.el (copy-overlay): Handle deleted overlays.
11490
c07ff221
SM
11491 * man.el (Man-completion-table): Don't signal an error if we can't run
11492 manual-program (bug#4056).
11493
0e374247
JB
114942010-02-10 Juanma Barranquero <lekktu@gmail.com>
11495
11496 * textmodes/artist.el (artist-mt): Fix typos in docstring.
11497
dbf8402b
SM
114982010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11499
348d1e60
SM
11500 * info.el (Info-bookmark-jump): Simplify.
11501
dbf8402b
SM
11502 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
11503 (bookmark-default-handler): Accept new bookmark field `buffer'.
11504
e6d23bb5
CY
115052010-02-10 Chong Yidong <cyd@stupidchicken.com>
11506
11507 * iswitchb.el (iswitchb-completions): Revert last change.
11508
a8e4290b
MA
115092010-02-10 Michael Albinus <michael.albinus@gmx.de>
11510
2b23acde 11511 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
348d1e60
SM
11512 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
11513 This prevents file names like "~/" being listed literally.
a8e4290b 11514
c59d6fad
DN
115152010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
11516
348d1e60
SM
11517 * term/xterm.el (xterm-maybe-set-dark-background-mode):
11518 Remove dead code. (Bug#5546)
c59d6fad 11519
3a66e78f
CY
115202010-02-09 Chong Yidong <cyd@stupidchicken.com>
11521
11522 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
11523 correctly (Bug#5548).
11524
f29fd869
CY
115252010-02-08 Jose E. Marchesi <jemarch@gnu.org>
11526
11527 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
fe8c0b47 11528 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
f29fd869 11529
7fad1447
KH
115302010-02-08 Kenichi Handa <handa@m17n.org>
11531
11532 * international/mule-util.el (with-coding-priority): Add autoload
48c2d18a 11533 cookie for putting `lisp-indent-function'.
7fad1447 11534
50e4518b
GM
115352010-02-07 Glenn Morris <rgm@gnu.org>
11536
11537 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
11538 Move F2003 named interfaces from keywords-2 to keywords-1, and
11539 use function-name-face rather than constant-face.
11540 Simplify "abstract interface" regexp.
11541
a4cc44cf
CY
115422010-02-07 Chong Yidong <cyd@stupidchicken.com>
11543
11544 * eshell/esh-util.el (eshell-file-attributes): New optional arg
11545 ID-FORMAT. Pass it to `file-attributes'.
11546
11547 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
11548
c917476d
CY
115492010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
11550
11551 * faces.el (set-face-attribute): Allow calling
11552 internal-set-lisp-face-attribute with 'unspecified family and
11553 foundry argument (Bug#5536).
11554
7cf3f3d6
GM
115552010-02-07 Glenn Morris <rgm@gnu.org>
11556
11557 * progmodes/f90.el (f90-font-lock-keywords-2)
11558 (f90-looking-at-type-like, f90-looking-at-program-block-end):
11559 Handle F2003 named interfaces.
11560
ffe87109
CY
115612010-02-06 Chong Yidong <cyd@stupidchicken.com>
11562
11563 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
11564 beg and end before calling c-get-state-before-change-functions.
11565
4775ecad
DN
115662010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
11567
33aeea0e
SM
11568 * vc-bzr.el (vc-bzr-dir-extra-headers):
11569 Disable the pending merges header.
4775ecad 11570
0d17c4b9
JL
115712010-02-05 Juri Linkov <juri@jurta.org>
11572
11573 * doc-view.el (doc-view-mode):
11574 * image-mode.el (image-mode): Put property mode-class=special.
11575 (Bug#4896)
11576
8228a275
MH
115772010-02-05 Mark A. Hershberger <mah@everybody.org>
11578
11579 * vc-svn.el (vc-svn-revision-table): New function.
11580
d9320986
MA
115812010-02-05 Michael Albinus <michael.albinus@gmx.de>
11582
11583 * net/ange-ftp.el (ange-ftp-insert-directory):
11584 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
11585 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
11586 Handle also directories. (Bug#5478)
11587
f43d8ecc
GM
115882010-02-05 Glenn Morris <rgm@gnu.org>
11589
11590 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
11591
ce3a988d
CY
115922010-02-05 Chong Yidong <cyd@stupidchicken.com>
11593
11594 * startup.el (command-line-1): Convert options beginning with a
11595 single dash as well (Bug#5519).
11596
bdd42899
SM
115972010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
11598
51b23c44
SM
11599 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
11600 * minibuffer.el (completion-initials-expand): Only check the presence
11601 of delims *within* the boundaries, since otherwise the / delim is
11602 always found for files.
11603
bdd42899
SM
11604 Fix up various corner case problems.
11605 * doc-view.el (doc-view-last-page-number): New function.
11606 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
11607 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
11608 (doc-view-kill-proc): Avoid inf-loop in freak cases.
11609 (doc-view-reconvert-doc): Use the new recursive delete-directory.
11610 (doc-view-convert-current-doc): Don't create the resolution.el file
11611 here any more.
11612 (doc-view-pdf/ps->png): Do it here instead.
11613 (doc-view-already-converted-p): Check that resolution.el is present.
11614 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
11615 windows that are not yet showing images.
11616
d5b3979c
MA
116172010-02-04 Michael Albinus <michael.albinus@gmx.de>
11618
11619 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
11620 `dired-uncache' for every elemnt which is an absolute file name.
11621
11622 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
11623 directory, handle its directory component.
11624 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
11625 function is called permanently and creates noise, otherwise.
11626
11627 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
11628 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
11629 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
11630
b003beb1
DB
116312010-02-04 David Burger <dburger@google.com> (tiny change)
11632
11633 * macros.el (apply-macro-to-region-lines):
11634 Minor simplification. (Bug#5485)
11635
ea92f9f3
GM
116362010-02-04 Glenn Morris <rgm@gnu.org>
11637
a03ae20d
GM
11638 * mail/rmail.el (rmail-show-message-1): Handle malformed
11639 quoted-printable text. (Bug#5441)
11640
4d01b827
GM
11641 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
11642
ea92f9f3
GM
11643 * simple.el (visual-line-mode): Capitalize lighter.
11644
82055bb7
JW
116452010-02-03 John Wiegley <jwiegley@gmail.com>
11646
11647 * iswitchb.el (iswitchb-completions): Add bookmark files to the
11648 list of files considered for "virtual buffer" completions.
11649
8214b6e4
MA
116502010-02-03 Michael Albinus <michael.albinus@gmx.de>
11651
11652 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
dd86ea11 11653 also in case of (and (not full) (not wildcard)). This is needed
8214b6e4
MA
11654 when dired is called with a list of files, which are not in
11655 `default-directory'. (Bug#5478)
11656
1df9718f
SM
116572010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
11658
11659 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
11660
02ba1267
JL
116612010-02-02 Juri Linkov <juri@jurta.org>
11662
11663 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
11664 from unidiff to allow function-line after @@.
11665
a0c6a0fb
JL
116662010-02-02 Juri Linkov <juri@jurta.org>
11667
11668 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
11669 '(RCS SCCS) with inverted condition.
11670
c35fcd52
MA
116712010-02-02 Michael Albinus <michael.albinus@gmx.de>
11672
11673 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
11674 messages.
11675
6ba973c1
JL
116762010-02-01 Juri Linkov <juri@jurta.org>
11677
11678 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
11679 compare with "pkunzip" and "pkzip" instead of only "pkzip".
11680 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
11681 only when (car archive-zip-extract) is "unzip". (Bug#5475)
11682
0bca393f
SM
116832010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
11684
11685 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
11686 (doc-view-revert-buffer): New command.
11687 (doc-view-mode-map): Use it.
11688
7a444e2a
DN
116892010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
11690
11691 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
11692 pending merge is detected.
11693
ad6fc8f4
JL
116942010-01-31 Juri Linkov <juri@jurta.org>
11695
11696 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
11697 beginning of interactive spec like all other grep commands do.
11698 Put "all" in front of "gz". (Bug#5260)
11699
b9236874
DN
117002010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
11701
11702 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
11703
1e868757
CY
117042010-01-29 Chong Yidong <cyd@stupidchicken.com>
11705
11706 * dirtrack.el (dirtrack): Warn instead of signalling error if the
11707 regexp is incorrect (Bug#5476).
11708
e5c70c41
MA
117092010-01-29 Michael Albinus <michael.albinus@gmx.de>
11710
11711 * net/tramp.el (tramp-handle-insert-directory): Handle also
11712 symlinks, when FILENAME is not in `default-directory'.
11713
0c0b61f1
MA
117142010-01-28 Michael Albinus <michael.albinus@gmx.de>
11715
11716 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
e5c70c41 11717 FILE is not in `default-directory'. (Bug#5478)
0c0b61f1
MA
11718
11719 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
11720 of SWITCHES. Handle the case, FILENAME is not in
11721 `default-directory'. (Bug#5478)
11722 (tramp-register-file-name-handlers): Add safe-magic property.
11723
763f325e
CY
117242010-01-28 Chong Yidong <cyd@stupidchicken.com>
11725
11726 * arc-mode.el (archive-zip-extract): Quote the argument passed to
11727 unzip (Bug#5475).
11728
fd09a83f
CY
117292010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
11730
11731 * progmodes/flymake.el (flymake-allowed-file-name-masks)
11732 (flymake-master-make-header-init): Add other C++ filename masks.
11733 (flymake-find-possible-master-files)
11734 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
11735
7e5686f0
MA
117362010-01-28 Michael Albinus <michael.albinus@gmx.de>
11737
11738 Fix some busybox annoyances.
11739
11740 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
11741 not responding." string.
11742 (tramp-open-connection-setup-interactive-shell): Dump stty
11743 settings. Enable "neveropen" arg for all `tramp-send-command'
11744 calls. Handle "=" in variable values properly.
11745 (tramp-find-inline-encoding): Raise an error, when no encoding is
11746 found.
11747 (tramp-wait-for-output): Check, whether PROC buffer is available.
11748 Remove spurious " ^H" sequences, sent by busybox.
11749 (tramp-get-ls-command): Suppress coloring, if possible.
11750
c6265c10
GM
117512010-01-28 Glenn Morris <rgm@gnu.org>
11752
c85a168b
GM
11753 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
11754
c6265c10
GM
11755 * log-edit.el (log-edit-strip-single-file-name): Add missing
11756 :safe, :group, and :version tags.
11757
7d82a738
SB
117582010-01-27 Stephen Berman <stephen.berman@gmx.net>
11759
11760 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
11761 buffers. (Bug#5477)
11762
8b0e68ea
CY
117632010-01-27 David De La Harpe Golden <david@harpegolden.net>
11764
11765 * files.el (delete-directory): Handle moving to trash without
11766 first doing recursion (Bug#5436).
11767
368d3208
DN
117682010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
11769
11770 * vc-hooks.el (vc-path): Mark as obsolete.
11771
755da7fa
DN
117722010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
11773
e2396d80
DN
11774 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
11775 names too.
11776
755da7fa
DN
11777 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
11778 for the short log.
11779 (vc-bzr-log-view-mode): Adjust regexp for the above change.
11780
6a6d15ab 117812010-01-25 Mark A. Hershberger <mah@everybody.org>
aaef4f91 11782
ac9ffe99 11783 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
d9de6d6f 11784
48c2d18a 11785 * vc-bzr.el (vc-bzr-revision-table): New function.
aaef4f91 11786
25f38310 117872010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com>
504dcc71
EH
11788
11789 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
11790 diff-index command. This requires at least git-1.5.5. (Bug#1589).
11791
51850286
DN
117922010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
11793
c2f1d6d8
DN
11794 Remove support for adding --signoff on commit.
11795 Future support will use an incompatible generic mechanism.
11796 * vc-git.el (vc-git-add-signoff): Remove variable.
11797 (vc-git-toggle-signoff): Remove function.
11798 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
11799
6a7662bb
BR
11800 * term/xterm.el (xterm-maybe-set-dark-background-mode):
11801 Rename from xterm-set-background-mode. Return t if the background mode
51850286
DN
11802 was set.
11803 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
11804 earlier, call it again in case the background mode has changed.
11805
02c6d0d0
CY
118062010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
11807
11808 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
11809 (Bug#3541).
11810
064eee03
CY
118112010-01-23 Chong Yidong <cyd@stupidchicken.com>
11812
02c6d0d0
CY
11813 * emacs-lisp/assoc.el (aelement): Doc fix.
11814 (aput, adelete, amake): Use lexical-let (Bug#5450).
064eee03 11815
5336c3ec 118162010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
afb5d709 11817
48c2d18a 11818 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
afb5d709
SL
11819 is the same as subprogram call, not declaration. (Bug#5435).
11820
0536254e
MA
118212010-01-23 Michael Albinus <michael.albinus@gmx.de>
11822
11823 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
11824 (tramp-smb-maybe-open-connection): Use it.
11825
411d06c2
MA
118262010-01-22 Michael Albinus <michael.albinus@gmx.de>
11827
0536254e 11828 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
411d06c2 11829
c893016b
SM
118302010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
11831
11832 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
11833 just because we see "encoding: 8bit".
11834 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
11835
9425f8e1
CY
118362010-01-22 Chong Yidong <cyd@stupidchicken.com>
11837
11838 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
11839
6a801864
EZ
118402010-01-22 Eli Zaretskii <eliz@gnu.org>
11841
11842 * jka-compr.el (jka-compr-load): If load-file is not in
11843 load-history, try its file-truename version. (bug#5447)
11844
3e8f7d91
AM
118452010-01-21 Alan Mackenzie <acm@muc.de>
11846
11847 Fix a situation where deletion of a cpp construct throws an error.
537ffaf3
SM
11848 * progmodes/cc-engine.el (c-invalidate-state-cache):
11849 Before invoking c-with-all-but-one-cpps-commented-out, check that the
3e8f7d91
AM
11850 special cpp construct is still in the buffer.
11851 (c-parse-state): Record the special cpp with markers, not numbers.
11852
f0bd0ad5
CY
118532010-01-21 Kenichi Handa <handa@m17n.org>
11854
11855 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
11856 process last-command-event, as it is now decoded first (Bug#5380).
11857
5189d95b
CY
118582010-01-20 Chong Yidong <cyd@stupidchicken.com>
11859
11860 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
11861
e073d74a
GM
118622010-01-20 Glenn Morris <rgm@gnu.org>
11863
11864 * indent.el (tab-always-indent): Fix custom-type.
11865
8ee04f3a
AM
118662010-01-19 Alan Mackenzie <acm@muc.de>
11867
11868 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
11869 buffer throws "args out of range".
11870 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
11871 playing the role of delimiter.
11872
6a47c86a
SL
118732010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
11874
bf0b361c 11875 * progmodes/ada-mode.el: Fix bug#5400.
6a47c86a
SL
11876 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
11877 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
11878 changed. Delete RECURSIVE parameter; never used. Improve doc string.
11879 Improve comments in "is" portion. Handle null procedure declaration.
11880 (ada-move-to-end): Improve doc string.
11881
2acfb954
ÓF
118822010-01-18 Óscar Fuentes <ofv@wanadoo.es>
11883
e90d57c0 11884 * ido.el (ido-cur-list): Initialize to nil.
2acfb954 11885 Remove obsolete information from commentary.
e90d57c0
JB
11886 (ido-choice-list): Initialize to nil.
11887 (ido-get-bufname): Reject minibuffers.
11888 (ido-make-buffer-list): If "default" is a nonexistent
11889 buffer, ignore it, as per the function's comment.
11890 (ido-kill-buffer-internal): New function.
11891 (ido-kill-buffer-at-head): Use it.
11892 (ido-visit-buffer): Likewise.
2acfb954 11893
244b023e
CY
118942010-01-18 Chong Yidong <cyd@stupidchicken.com>
11895
11896 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
11897
db9e401b
JB
118982010-01-18 Juanma Barranquero <lekktu@gmail.com>
11899
db9e401b
JB
11900 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
11901 Fix typos in chart titles.
11902
11903 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
db9e401b
JB
11904 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
11905 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
11906 (describe-class, eieio-describe-generic, describe-generic):
11907 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
11908 (eieio-speedbar-expand):
11909 * emulation/viper-cmd.el (viper-exec-form-in-vi)
11910 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
11911 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
11912 (viper-del-backward-char-in-replace, viper-backward-indent)
11913 (viper-brac-function, viper-register-to-point, viper-submit-report):
11914 * net/tramp.el (tramp-remote-coding-commands):
11915 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
11916 Fix typos in docstrings.
11917
9295137d
CY
119182010-01-17 Chong Yidong <cyd@stupidchicken.com>
11919
11920 * mail/sendmail.el (mail-yank-original): Set the mark if the
11921 specified function for yanking does not do it.
11922
4d0bbcb6
DN
119232010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
11924
7902c120
DN
11925 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
11926
4d0bbcb6
DN
11927 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
11928 resyncing a directory.
11929
0b702bc1
SL
119302010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
11931
6a47c86a 11932 * progmodes/ada-mode.el: Fix bug#1920.
0b702bc1
SL
11933 (ada-ident-re): Delete ., allow multibyte characters.
11934 (ada-goto-label-re): New; matches goto labels.
11935 (ada-block-label-re): New; matches block labels.
11936 (ada-label-re): New; matches both.
11937 (ada-named-block-re): Deleted; callers changed to use
11938 `ada-block-label-re' instead.
11939 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
11940 Use `ada-block-label-re'.
11941 (ada-indent-on-previous-lines): Improve handling of goto labels.
11942 (ada-get-indent-block-start): Special-case block label.
11943 (ada-get-indent-label): Split into `ada-indent-block-label' and
11944 `ada-indent-goto-label'.
11945 (ada-goto-stmt-start, ada-goto-next-non-ws):
11946 Optionally ignore goto labels.
11947 (ada-goto-next-word): Simplify.
11948 (ada-indent-newline-indent-conditional): Insert newline before
11949 trying to fix indentation; doc fix.
11950
05287c49
JB
119512010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
11952
11953 * calc/calc.el (calc-command-flags): Give it an initial value.
11954
4963739e
JB
119552010-01-17 Juanma Barranquero <lekktu@gmail.com>
11956
4963739e
JB
11957 * files.el (minibuffer-with-setup-hook):
11958 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
11959 (artist-key-draw-continously, artist-key-do-continously-continously)
11960 (artist-key-set-point-continously, artist-mouse-draw-continously):
11961 Fix typos in docstrings.
11962
116bd1ee
CY
119632010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
11964
6a7662bb
BR
11965 * nxml/nxml-mode.el (nxml-extend-after-change-region):
11966 Never return t (Bug#3898).
116bd1ee 11967
2784cd7a 119682010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
d4efdaea
CY
11969
11970 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
11971 can parse the output of the external commands (Bug#5279).
11972
abd5cfe8
CY
119732010-01-16 Jari Aalto <jari.aalto@cante.net>
11974
11975 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
11976
4fe22cdf
CY
119772010-01-16 Chong Yidong <cyd@stupidchicken.com>
11978
bbdc98ef
CY
11979 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
11980
c7dc1ac1
CY
11981 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
11982
4fe22cdf
CY
11983 * startup.el (command-line): Remove unused --icon-type arg.
11984 Handle --display arg, passing it to command-line-1 (Bug#5392).
11985
045b9da7
ML
119862010-01-16 Mario Lang <mlang@delysid.org>
11987
045b9da7
ML
11988 * emacs-lisp/chart.el (chart-translate-namezone):
11989 * textmodes/artist.el (artist-compute-popup-menu-table):
11990 Remove duplicated words in doc-strings.
11991
6554a5df
CY
119922010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
11993
11994 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
11995 to mairix-search to suppress threading (Bug#5342).
11996
ca4f0e9a
KH
119972010-01-15 Kenichi Handa <handa@m17n.org>
11998
11999 * international/mule-cmds.el (canonicalize-coding-system-name):
b7235808 12000 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
ca4f0e9a 12001
1db3226b
GM
120022010-01-15 Glenn Morris <rgm@gnu.org>
12003
56a03f46
GM
12004 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
12005
12006 * wid-edit.el (widget-keymap): Doc fix.
12007
1db3226b
GM
12008 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
12009 former seems to be more widely accepted by various svn versions.
12010
80cd4bb4
JB
120112010-01-14 Juanma Barranquero <lekktu@gmail.com>
12012
d1f18ec0
JB
12013 * find-cmd.el (find-constituents):
12014 * vc-arch.el (vc-arch-root):
12015 * window.el (window-body-height, pop-up-frames):
d1f18ec0
JB
12016 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
12017 * progmodes/ada-stmt.el (ada-if):
12018 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
12019 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
12020 (ispell-encoding8-command, ispell-aspell-supports-utf8)
12021 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
12022
80cd4bb4
JB
12023 * progmodes/flymake.el (flymake-post-syntax-check):
12024 Fix typo in error message.
12025
9c23ca47
JB
120262010-01-14 Juanma Barranquero <lekktu@gmail.com>
12027
12028 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
12029 which is always a string. (Bug#5313)
12030
8794c483
JB
120312010-01-14 Juanma Barranquero <lekktu@gmail.com>
12032
12033 * progmodes/ada-xref.el (ada-default-prj-properties):
12034 Simplify previous change.
12035
95005d39
SL
120362010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
12037
12038 * progmodes/ada-xref.el (ada-default-prj-properties):
12039 Default ada_project_path to $ADA_PROJECT_PATH.
12040
120412010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
80e18d20
SL
12042
12043 * progmodes/ada-mode.el (ada-create-keymap):
12044 Override `narrow-to-defun' with `ada-narrow-to-defun'.
12045
fb0d1545
SL
120462010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
12047
12048 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
12049 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
12050 (ada-get-current-indent, ada-imenu-generic-expression)
12051 (ada-which-function): Check for it.
12052
5c9434d0
SL
120532010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
12054
12055 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
12056 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
12057
3a4f3a3b
GM
120582010-01-14 Glenn Morris <rgm@gnu.org>
12059
12060 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
12061
d9a7c140
KH
120622010-01-14 Kenichi Handa <handa@m17n.org>
12063
12064 * composite.el (auto-composition-mode): Make it a buffer local
12065 variable (permanent-local).
12066 (auto-composition-function): Set the default value to
12067 auto-compose-chars.
49caf252 12068 (auto-composition-mode): Make it a simple function, not a minor mode.
d9a7c140
KH
12069 (global-auto-composition-mode): Likewise.
12070 (turn-on-auto-composition-if-enabled): Delete it.
49caf252 12071
38bee102
KF
120722010-01-13 Karl Fogel <kfogel@red-bean.com>
12073
12074 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
d9a7c140 12075
b8b45afc
MA
120762010-01-12 Michael Albinus <michael.albinus@gmx.de>
12077
12078 * files.el (copy-directory): Compute target for recursive
12079 directories with identical names. (Bug#5343)
12080
893db5bc
GM
120812010-01-12 Glenn Morris <rgm@gnu.org>
12082
6a7662bb
BR
12083 * mail/emacsbug.el (report-emacs-bug-pretest-address):
12084 Set it to bug-gnu-emacs rather than emacs-pretest-bug.
893db5bc 12085
d8b8451f
SS
120862010-01-11 Sam Steingold <sds@gnu.org>
12087
12088 * imenu.el (imenu-default-create-index-function): Detect infinite
12089 loops caused by imenu-prev-index-position-function.
12090
30afcdff
JB
120912010-01-11 Juanma Barranquero <lekktu@gmail.com>
12092
12093 * htmlfontify.el (htmlfontify-load-rgb-file)
12094 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
12095 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
12096 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
12097 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
12098 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
12099 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
12100 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
12101 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
12102 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
12103 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
12104 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
12105 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
12106 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
12107 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
12108 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
12109 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
12110 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
12111 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
12112 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
12113 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
12114 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
12115 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
12116 backslash-quoting from parentheses, etc.
12117
92b1c416
CY
121182010-01-11 Chong Yidong <cyd@stupidchicken.com>
12119
12120 * progmodes/js.el: Autoload javascript-mode alias.
12121
4454adab
JB
121222010-01-11 Juanma Barranquero <lekktu@gmail.com>
12123
12124 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
12125 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
12126 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
12127 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
12128 Fix typos in docstrings.
12129 (ffap-url-regexp): Doc fix.
12130 (ffap-at-mouse): Fix typo in message.
12131
6589a2f9
GM
121322010-01-11 Glenn Morris <rgm@gnu.org>
12133
12134 * version.el (emacs-copyright): Set copyright year to 2010.
12135
4e5617ee
SM
121362010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
12137
12138 * format.el (format-annotate-function): Only set
12139 write-region-post-annotation-function after running to-fn so as not to
12140 affect nested write-region calls (bug#5273).
12141
52bee098
CY
121422010-01-10 Chong Yidong <cyd@stupidchicken.com>
12143
a069f067
CY
12144 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
12145 wisent/python.el.
12146
e709e39d
CY
121472010-01-09 Chong Yidong <cyd@stupidchicken.com>
12148
12149 * man.el (Man-goto-section): Signal error if the section is not
12150 found (Bug#5317).
12151
6ee86780
JB
121522010-01-09 Juanma Barranquero <lekktu@gmail.com>
12153
12154 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
12155 URLs with a leading triple slash in the file: scheme. (Bug#5345)
12156
fa7b5f7b
CY
121572010-01-09 Chong Yidong <cyd@stupidchicken.com>
12158
12159 * progmodes/compile.el: Don't treat compile-command as safe if
12160 compilation-read-command might be nil (Bug#4218).
12161
de62c4d9
JD
121622010-01-09 Jan Djärv <jan.h.d@swipnet.se>
12163
12164 * startup.el (command-line-1): Use orig-argi to check for ignored X and
12165 NS options.
12166
e94be827
KH
121672010-01-08 Kenichi Handa <handa@m17n.org>
12168
4e5617ee
SM
12169 * international/fontset.el (build-default-fontset-data):
12170 Exclude characters in scripts kana, hangul, han, or cjk-misc.
e94be827 12171
1dfae2a2
JB
121722010-01-07 Juanma Barranquero <lekktu@gmail.com>
12173
12174 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
12175 to `create-file-buffer' as it expects, not just a buffer name.
12176 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
12177 to help uniquify. (Bug#3224)
12178
d0cf45b7
JD
121792010-01-06 Jan Djärv <jan.h.d@swipnet.se>
12180
12181 * font-setting.el (font-setting-change-default-font): Use user-spec
12182 instead of name.
12183
7534fa5e
DN
121842010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
12185
12186 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
12187
fd579fdc
CY
121882010-01-05 Tom Tromey <tromey@redhat.com>
12189
4e5617ee
SM
12190 * progmodes/python.el (python-font-lock-keywords):
12191 Handle qualified decorators (Bug#881).
fd579fdc 12192
37860caf
DN
121932010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
12194
12195 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
12196 in a lightweight checkout.
12197
69db641d
KH
121982010-01-05 Kenichi Handa <handa@m17n.org>
12199
4e5617ee 12200 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
69db641d 12201
b25d6a02
DN
122022010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
12203
12204 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
12205
137d88ca
DN
122062010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
12207
12208 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
12209 checkouts. (Bug#618)
3d5d0aa9 12210 (vc-bzr-log-view-mode): Also highlight the author.
8e7e2286
DN
12211 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
12212 (vc-bzr-shelve-menu-map):
12213 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
12214 (vc-bzr-shelve-apply): Make prompt more explicit.
137d88ca 12215
da76998b
CY
122162010-01-02 Chong Yidong <cyd@stupidchicken.com>
12217
12218 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
12219 They are valid characters in URL paths (rfc3986), and at least
12220 Firefox does not understand the encoded version (Bug#3166).
12221
b2ad70b6
CY
122222010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
12223
12224 * progmodes/octave-mod.el (octave-end-keywords)
4e5617ee
SM
12225 (octave-block-begin-or-end-regexp, octave-block-match-alist):
12226 Add "end" keyword (Bug#3061).
b2ad70b6
CY
12227 (octave-end-as-array-index-p): New function.
12228 (calculate-octave-indent): Use it.
12229
54136282
KF
122302010-01-02 Karl Fogel <kfogel@red-bean.com>
12231
12232 * bookmark.el: Consistently put the text property on the bookmark name.
12233 (bookmark-bmenu-marks-width): Bump back to 2, to include
12234 annotation marks.
12235 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
12236 property on the bookmark name, instead of not putting it at all.
12237 (bookmark-bmenu-list): Fix where we put the text property.
12238
cc4d3cad
KF
122392010-01-02 Karl Fogel <kfogel@red-bean.com>
12240
12241 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
12242 for showing buffer modified state (as added in the previous change).
12243
b894c439
KF
122442010-01-02 Karl Fogel <kfogel@red-bean.com>
12245
12246 * bookmark.el: Show modified state of bookmark buffer more accurately.
12247 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
12248 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
12249 (with-buffer-modified-unmodified): New macro.
12250 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
12251 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
cc4d3cad 12252 Use new macro to preserve the buffer modified state.
b894c439 12253
3a69db53
KF
122542010-01-02 Karl Fogel <kfogel@red-bean.com>
12255
4e5617ee 12256 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
3a69db53
KF
12257 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
12258 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
12259 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
12260 (bookmark-bmenu-rename, bookmark-bmenu-locate)
4e5617ee
SM
12261 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
12262 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
3a69db53 12263
af414f10
EZ
122642010-01-02 Eli Zaretskii <eliz@gnu.org>
12265
4e5617ee
SM
12266 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
12267 Make the lines in the generated doc string shorter. (Bug#4668)
af414f10 12268
f2ec0e5e
CY
122692010-01-02 Ryan Yeske <rcyeske@gmail.com>
12270
12271 * net/rcirc.el: Add follow-link binding (Bug#4738).
12272
38c1ba62
EZ
122732010-01-02 Eli Zaretskii <eliz@gnu.org>
12274
4e5617ee 12275 * Makefile.in (bzr-update): Rename from cvs-update.
38c1ba62
EZ
12276 (cvs-update): New target for backward compatibility.
12277
4e5617ee 12278 * makefile.w32-in (bzr-update): Rename from cvs-update.
38c1ba62
EZ
12279 (cvs-update): New target for backward compatibility.
12280
ea2c0f5b
KF
122812010-01-02 Karl Fogel <kfogel@red-bean.com>
12282
12283 * bookmark.el: Remove gratuitous gratitude.
12284
5ae329f4
KF
122852010-01-02 Karl Fogel <kfogel@red-bean.com>
12286
c4cc8b9a 12287 * bookmark.el (bookmark-bmenu-any-marks): New function.
47989945
KF
12288 (bookmark-bmenu-save): Clear buffer modification if no marks.
12289
122902010-01-02 Karl Fogel <kfogel@red-bean.com>
12291
12292 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
5ae329f4
KF
12293 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
12294 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
12295 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
12296
12297 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
12298 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
12299 To: emacs-devel {_AT_} gnu.org
12300 Subject: bookmark.el bug report
12301 Date: Mon, 28 Dec 2009 14:19:16 +0800
12302 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
12303
aef053eb
KF
123042010-01-02 Karl Fogel <kfogel@red-bean.com>
12305
12306 * bookmark.el: Improvements suggested by Drew Adams:
12307 (bookmark-bmenu-ensure-position): New name for
12308 `bookmark-bmenu-check-position'. Just ensure the position,
12309 don't return any meaningful value.
12310 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
12311 New constants.
12312
0472835f
JB
123132010-01-02 Juanma Barranquero <lekktu@gmail.com>
12314
12315 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
12316 (bookmark-yank-point, bookmark-bmenu-check-position):
12317 Fix typos in docstrings.
12318 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
12319 (bookmark-name-from-full-record, bookmark-get-position)
12320 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
12321 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
12322 Remove useless quoting of parenthesis, etc. in docstrings.
12323
12324 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
12325 (ediff-append-custom-diff): Fix typo in error message.
12326 (ediff-meta-mark-equal-files): Fix typos in messages.
12327
12328 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
12329
0472835f
JB
12330 * net/imap-hash.el (imap-hash-make): Doc fix.
12331 (imap-hash-test): Fix typo in error message; reflow docstring.
12332 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
12333 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
12334 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
12335 Fix typos in docstrings.
12336 (imap-hash-open-connection): Fix typo in error message.
12337
12338 * play/gomoku.el (gomoku): Fix typos in docstring.
12339
12340 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
12341 (gdb-jsonify-buffer): Fix typos in docstring.
12342 (gdb-goto-breakpoint): Fix typo in error message.
12343 ("Display Other Windows"): Fix typo in help message.
12344 (gdb-speedbar-expand-node): Fix typo in question.
12345
12346 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
12347 (idlwave-html-system-help-location, idlwave-html-help-location)
12348 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
12349 (idlwave-help-browser-generic-args, idlwave-help-directory)
12350 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
12351 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
12352 (idlwave-online-help, idlwave-help-html-link)
12353 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
12354 Fix typos in docstrings.
12355 (idlwave-help-with-source, idlwave-help-find-routine-definition):
12356 Reflow docstrings.
12357 (idlwave-help-assistant-start): Fix typo in error message.
12358
12359 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
12360 (octave-electric-space): Fix typos in docstrings.
12361
9bbe0828
CY
123622010-01-01 Chong Yidong <cyd@stupidchicken.com>
12363
12364 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
12365
a88c46c3
CY
123662010-01-01 Juri Linkov <juri@jurta.org>
12367
12368 * comint.el (comint-input-ring-size): Make it a defcustom and
918fa8ba 12369 increase the default to 500 (Bug#5148).
a88c46c3 12370
7ee6c59b
NR
123712009-12-31 Nick Roberts <nickrob@snap.net.nz>
12372
12373 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
12374 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
12375 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
12376
a9c8a2cd
NR
123772009-12-30 Nick Roberts <nickrob@snap.net.nz>
12378
12379 Show working revision correctly for mercurial.
12380 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
d8c75479 12381 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
a9c8a2cd 12382
659e4408
JB
123832009-12-29 Juanma Barranquero <lekktu@gmail.com>
12384
12385 Declare some functions for the byte-compiler.
12386 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
12387 (speedbar-timer-fn, speedbar-change-expand-button-char)
12388 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
12389
7ee6c59b
NR
123902009-12-29 Nick Roberts <nickrob@snap.net.nz>
12391
12392 This changeset reverts GDB Graphical Interface to use annotations.
12393 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
12394
460f6e7c
DN
123952009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
12396
12397 Make vc-dir work on subdirectories of the bzr root.
6a7662bb
BR
12398 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.
12399 Return file names relative to it.
460f6e7c
DN
12400 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
12401 relative directory to vc-bzr-after-dir-status.
12402
543f553a
TH
124032009-12-28 Tassilo Horn <tassilo@member.fsf.org>
12404
12405 * font-lock.el (font-lock-refresh-defaults): New function, which
12406 can be used to let font-lock react to external changes in
12407 variables like font-lock-defaults and keywords.
12408 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
12409
2592ab76
DN
124102009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
12411
ac859983
DN
12412 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
12413
2592ab76
DN
12414 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
12415
58941d03
JB
124162009-12-28 Juanma Barranquero <lekktu@gmail.com>
12417
12418 Supersede color.diff settings in git log (bug#5211).
12419
12420 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
12421 escape chars in its output when the user has color.diff set to `always'.
12422 This fix works on git 1.4.2 and newer (released on 2006-08-13).
12423
39764e76
KR
124242009-12-26 Kevin Ryde <user42@zip.com.au>
12425
12426 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
12427 node. Keep previous "Index" name to work with past coreutils too.
12428
91c4831e
KR
12429 * man.el (man): Revise docstring a bit to show -a and -l as
12430 examples. Add -k description since support for it has otherwise
12431 been a secret. (Further to bug#3717.)
651e932e
KR
12432 (Man-bgproc-sentinel): When "-k foo" produces no output show error
12433 "no matches" rather than "Can't find manpage", as the latter reads
d8c75479 12434 like -k was interpreted as a page name, which is not so. (Bug#5431)
91c4831e 12435
7f4d4a97
MA
124362009-12-26 Michael Albinus <michael.albinus@gmx.de>
12437
12438 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
12439 switches. Check also for //SUBDIRED// line.
12440
bcffff46
KH
124412009-12-25 Kenichi Handa <handa@m17n.org>
12442
88b5a757 12443 * language/indian.el (devanagari-composable-pattern): Fix to
bcffff46
KH
12444 handle ZWNJ and ZWJ. Use it in composition-function-table for
12445 Devanagari.
12446 (malayalam-composable-pattern): Fix previous change.
12447
dc1dcfa4
VJL
124482009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12449
12450 * ps-print.el (ps-face-attributes): It was not returning the
12451 attribute face for faces specified as string. Reported by harven
80525855 12452 <harven@free.fr>. (Bug#5254)
dc1dcfa4
VJL
12453 (ps-print-version): New version 7.3.5.
12454
6fe539d2
UJ
124552009-12-18 Ulf Jasper <ulf.jasper@web.de>
12456
85626eef 12457 * calendar/icalendar.el (icalendar--convert-tz-offset):
88b5a757
DD
12458 Fix timezone names.
12459 (icalendar--convert-tz-offset): Fix the "last-day-problem".
6fe539d2
UJ
12460 (icalendar--add-diary-entry): Remove the trailing blank that
12461 diary-make-entry inserts.
12462
1f3611c6
MA
124632009-12-17 Michael Albinus <michael.albinus@gmx.de>
12464
12465 Make `file-expand-wildcards' work for remote files.
12466
12467 * files.el (file-expand-wildcards): In case of remote files, check
12468 only local file name part for wildcards. Provide feature 'files
12469 and subfeature 'remote-wildcards. (Bug#5198)
12470
12471 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
12472 if there is already an established connection.
12473 (tramp-advice-file-expand-wildcards): Remove it.
12474
12475 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
85626eef 12476 (tramp-advice-file-expand-wildcards): Move from tramp.el.
1f3611c6
MA
12477 Activate advice for older GNU Emacs versions. (Bug#5237)
12478
9762b219
JB
124792009-12-17 Juanma Barranquero <lekktu@gmail.com>
12480
12481 Some doc fixes (more needed).
12482
12483 * find-cmd.el (find-constituents): Reflow docstring.
12484 (find-cmd, find-prune, find-command): Fix typos in docstrings.
12485 (find-generic): Doc fix.
12486
cfb54897
JL
124872009-12-17 Juri Linkov <juri@jurta.org>
12488
12489 Fix regression from 23.1 to allow multiple modes in Local Variables.
12490
12491 * files.el (hack-local-variables-filter): While ignoring duplicates,
12492 don't take `mode' into account.
85626eef
SM
12493 (hack-local-variables-filter, hack-dir-local-variables):
12494 Don't remove duplicate `mode' from local-variables-alist (like `eval').
cfb54897 12495
ad974e9e
JL
124962009-12-17 Juri Linkov <juri@jurta.org>
12497
85626eef 12498 Make `dired-diff' safer. (Bug#5225)
ad974e9e
JL
12499
12500 * dired-aux.el (dired-diff): Signal an error when `file' equals to
12501 `current' or when `file' is a directory of the `current' file.
12502
3616e0b9
AS
125032009-12-17 Andreas Schwab <schwab@linux-m68k.org>
12504
12505 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
12506 unconditionally preloaded files.
12507
72b57560
JL
125082009-12-16 Juri Linkov <juri@jurta.org>
12509
12510 Revert to old 23.1 logic of using the file at the mark as default.
12511 * dired-aux.el (dired-diff): Use the file at the mark as default
12512 if it's not the same as the current file, and the target dir is
12513 the current dir or the mark is active. Add the current file
12514 as the arg of `dired-dwim-target-defaults'. Use the default file
12515 in the prompt. (Bug#5225)
12516
68712eb6
MA
125172009-12-15 Michael Albinus <michael.albinus@gmx.de>
12518
12519 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
12520 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
12521 (tramp-check-for-regexp): Check also, when an echoing shell stops
12522 to echo sent commands.
12523
fd471993
CY
125242009-12-14 Chong Yidong <cyd@stupidchicken.com>
12525
12526 * Makefile.in: Revert last change (Bug#5191).
12527
86b5e14c
DN
125282009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
12529
12530 * vc-hg.el (vc-hg-print-log): Fix argument order.
110de3bb
DN
12531 (vc-hg-working-revision): Make sure the command is executed in a
12532 known environment so that we can parse the output. (Bug#4417)
86b5e14c 12533
8cffbb75
CY
125342009-12-14 Chong Yidong <cyd@stupidchicken.com>
12535
12536 * progmodes/python.el (python-symbol-completions): Remove text
12537 properties from symbol string before calling python-send-receive.
12538
6c2b67ad
NR
125392009-12-14 Nick Roberts <nickrob@snap.net.nz>
12540
12541 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
5ce6e4f4 12542 when there are values for both file and line. (Bug#5060)
6c2b67ad 12543
ff6f4585
JL
125442009-12-14 Juri Linkov <juri@jurta.org>
12545
12546 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
12547 whitespace after the file name of the first line of unified format,
12548 because git-diff doesn't output whitespace and file modification time
12549 after the file name.
12550
d3de1c8e
JL
125512009-12-14 David Kastrup <dak@gnu.org>
12552
12553 * info.el (Info-hide-cookies-node): Before hiding a cookie,
12554 check if it already has the `display' property added by
12555 `Info-display-images-node', and not put the `invisible' property
12556 in this case.
12557
2f1b7dc4
GM
125582009-12-13 Glenn Morris <rgm@gnu.org>
12559
a0cefee5
GM
12560 * mail/emacsbug.el (message-sort-headers): Define for compiler.
12561 (report-emacs-bug): In message-mode, sort manually before storing
12562 original report text. (Bug#5178)
2f1b7dc4
GM
12563 Remove superfluous save-excursion.
12564
31bb373f
MA
125652009-12-12 Michael Albinus <michael.albinus@gmx.de>
12566
12567 * net/dbus.el (dbus-property-handler): Filter lambda forms out
12568 when responding to "GetAll" properties.
12569
5e1d4968
CY
125702009-12-12 Chong Yidong <cyd@stupidchicken.com>
12571
12572 * simple.el (compose-mail): Remove mail-setup-with-from from
12573 customization checks.
12574
097d86f9
EZ
125752009-12-12 Eli Zaretskii <eliz@gnu.org>
12576
12577 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
12578 RAR archives created on Unix systems.
12579
1d4adede
SM
125802009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
12581
12582 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
12583 the varalias that was accidentally removed by the 2009-11-19 change
12584 (bug#5186).
12585
3ff3655c
KH
125862009-12-12 Kenichi Handa <handa@m17n.org>
12587
12588 * language/indian.el (indian-compose-regexp): New function.
12589 (malayalam-composable-pattern): Fix the pattern.
12590 (composition-function-table): Set malayalam-composable-pattern for
12591 Malayalam characters.
12592
82d3343c
CY
125932009-12-11 Chong Yidong <cyd@stupidchicken.com>
12594
315eb96d
CY
12595 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
12596 rather than down-mouse-1, based on follow-link conventions.
12597
82d3343c
CY
12598 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
12599 are compiled.
12600
86a4c7ac
DN
126012009-12-11 Michael McNamara <mac@mail.brushroad.com>
12602
bf0b361c 12603 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
1d4adede
SM
12604 (verilog-vmm-statement-re, verilog-ovm-statement-re)
12605 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
12606 (verilog-leap-to-head, verilog-backward-token):
12607 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
86a4c7ac
DN
12608
126092009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
12610
bf0b361c
JB
12611 * progmodes/verilog-mode.el (verilog-auto-lineup)
12612 (verilog-nameable-item-re): Cleanup user-visible spelling and
12613 documentation errors. One reported by Gary Delp.
1d4adede 12614 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
86a4c7ac
DN
12615 (verilog-read-decls): Fix AUTOWIRE with types declared in a
12616 package, bug195. Reported by Pierre-David Pfister.
12617
fe03f49a
GM
126182009-12-11 Glenn Morris <rgm@gnu.org>
12619
47641aac
GM
12620 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
12621
85094855
GM
12622 * mail/emacsbug.el: No longer require sendmail.
12623 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
12624 (report-emacs-bug-orig-text): Doc fix.
12625 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
12626 New local variables, to adapt to different mail-user-agents.
12627 (report-emacs-bug): Fix test for a gnu.org address.
12628 Use overlays for emphasis, since font-lock defeats 'face property.
12629 Pretest bugs also end up at the newsgroup these days.
12630 Stop message-mode stripping text properties.
12631 Set and use the new buffer-local variables.
12632 (report-emacs-bug-hook): Add doc-string.
12633 Remove some unnecessary save-excursions and simplify.
12634 Use the appropriate hook and send-command.
12635
fe03f49a
GM
12636 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
12637 capitalization of some menu entries.
12638
345427f0
VJL
126392009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12640
277e6741
MP
12641 * whitespace.el (whitespace-display-char-on):
12642 Ensure `buffer-display-table' is unique when two or more windows are
345427f0
VJL
12643 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
12644 New version 12.1.
12645
c70ccbba
EZ
126462009-12-10 Eli Zaretskii <eliz@gnu.org>
12647
12648 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
12649 characters in the Attribute field.
12650
f1943c1b
DN
126512009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
12652
12653 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
12654
1c67aeaa
SM
126552009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
12656
12657 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
12658 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12659 Disregard autoload-excludes.
12660 (update-directory-autoloads): Obey autoload-excludes here instead.
12661 But don't store its contents in no-autoloads and remove entries that
12662 refer to excludes files.
12663
d8194864
GM
126642009-12-10 Glenn Morris <rgm@gnu.org>
12665
8c0171c0
GM
12666 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
12667 (expand-mail-aliases): Define for compiler.
12668
dba372dd
GM
12669 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
12670 Define for compiler.
12671
d8194864
GM
12672 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
12673 appropriate for the mail-user-agent in use.
12674
fe5facd3
MA
126752009-12-09 Michael Albinus <michael.albinus@gmx.de>
12676
12677 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
12678
99999a1d
DN
126792009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
12680
12681 Fix short log parsing and fontification.
12682 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
12683 Fix fontification for the [merge] label.
12684
2ea1c4aa
SM
126852009-12-09 Vivek Dasmohapatra <vivek@etla.org>
12686
85626eef 12687 Drop some properties to avoid surprises (bug#5002).
2ea1c4aa
SM
12688 * htmlfontify.el (hfy-ignored-properties): New defcustom.
12689 (hfy-fontify-buffer): Use it.
12690
9840deb6
SM
126912009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
12692
a0d1aadf
SM
12693 Minor cleanup.
12694 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
12695 Adjust all callers.
12696 (ffap-locate-file): Remove unused arg `dir-ok' and make other
12697 args compulsory. Adjust callers.
12698 (ffap-gopher-at-point): Remove unused var `name'.
12699
9840deb6
SM
12700 Get rid of the ELCFILES abomination.
12701 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
12702 (compile-elcfiles): New phony target.
12703 (compile-main): Compute ELCFILES dynamically.
12704 (compile-clean): New target to remove left-over elc files.
12705 (compile, all): Use it.
12706
7eb3f9a8
KH
127072009-12-09 Kenichi Handa <handa@etlken>
12708
12709 * international/mule-diag.el: Require help-mode instead of help-fns.
12710
ae63e572
KH
127112009-12-09 Kenichi Handa <handa@m17n.org>
12712
5ce6e4f4 12713 * international/mule-cmds.el (ucs-names): Supply sufficiently
a0d1aadf
SM
12714 fine ranges instead of pre-calculating accurate ranges.
12715 Iterate with bigger gc-cons-threshold.
ae63e572 12716
e2f3c692
DN
127172009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
12718
12719 Add support for stashing a snapshot of the current tree.
12720 * vc-git.el (vc-git-stash-snapshot): New function.
12721 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
12722
cf6d0352
JB
127232009-12-08 Jose E. Marchesi <jemarch@gnu.org>
12724
12725 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
12726 instead of `(beginning|end)-of-line'.
12727
48e4acc9
GM
127282009-12-08 Glenn Morris <rgm@gnu.org>
12729
6e890faa
GM
12730 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
12731
48e4acc9
GM
12732 * Makefile.in (ELCFILES): Regenerate.
12733
d2a1dc7b
JL
127342009-12-07 Juri Linkov <juri@jurta.org>
12735
12736 Don't lazy-highlight the comint output in history Isearch mode.
12737
12738 * comint.el (comint-history-isearch-search): Instead of
12739 `comint-line-beginning-position', use `comint-after-pmark-p'
12740 to check if point if before the process mark, and go to
12741 `process-mark' in this case.
12742
51ef56c4
SM
127432009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
12744
fb10ee4a
SM
12745 * textmodes/tex-mode.el (latex-complete)
12746 (latex-indent-or-complete): Remove.
12747 (latex-mode): Set completion-at-point-functions instead.
12748
12749 Provide a standard completion command and hook it into TAB.
51ef56c4
SM
12750 * minibuffer.el (completion-at-point-functions): New var.
12751 (completion-at-point): New command.
fb10ee4a 12752 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
51ef56c4
SM
12753 * progmodes/python.el (python-mode-map): Use completion-at-point.
12754 (python-completion-at-point): Rename from python-partial-symbol and
12755 adjust for use in completion-at-point-functions.
12756 (python-mode): Setup completion-at-point for Python completion.
12757 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
12758 extracted from lisp-complete-symbol.
12759 (lisp-complete-symbol): Use it.
12760 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
12761 setup completion-at-point for Elisp completion.
fb10ee4a
SM
12762 (emacs-lisp-mode-map, lisp-interaction-mode-map):
12763 Use completion-at-point.
51ef56c4 12764 * ielm.el (ielm-map): Use completion-at-point.
fb10ee4a 12765 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
51ef56c4
SM
12766 * progmodes/sym-comp.el: Move to...
12767 * obsolete/sym-comp.el: Move from progmodes.
12768
5e7a9022
EZ
127692009-12-07 Eli Zaretskii <eliz@gnu.org>
12770
12771 Prevent save-buffer in Rmail buffers from using the coding-system
12772 of the current message, and from clobbering the encoding mnemonics
12773 in the mode line (Bug#4623).
12774
12775 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
12776 flag, too.
12777 (rmail-message-encoding): New variable.
12778 (rmail-write-region-annotate): Record the encoding of the current
12779 message in rmail-message-encoding.
12780 (rmail-after-save-hook): New function, restores the encoding of
12781 the current message after the message collection is saved.
12782
9136e895
JL
127832009-12-07 Juri Linkov <juri@jurta.org>
12784
12785 * progmodes/grep.el (grep-read-files): Use `completing-read'
12786 instead of `read-string'. Set its `collection' arg to
12787 `read-file-name-internal'. (Bug#4301)
12788
40637410
JL
127892009-12-07 Juri Linkov <juri@jurta.org>
12790
12791 Correctly restore original Isearch point. (Bug#4994)
12792
12793 * isearch.el (isearch-mode): Move `isearch-push-state' after
12794 `(run-hooks 'isearch-mode-hook)'.
12795 (isearch-cancel): When `isearch-push-state-function' is defined,
12796 let-bind `isearch-cmds' to the first state (the last element of
12797 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
12798 function and restores the original point). Otherwise, move point
12799 to `isearch-opoint'.
12800
da10ce2b
SM
128012009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
12802
12803 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
12804 chars that don't have names, so the table can be built much faster at
12805 run-time.
12806
3d68fa99
CY
128072009-12-07 Chong Yidong <cyd@stupidchicken.com>
12808
f82b1493
CY
12809 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
12810 change. Suggested by David Kastrup.
12811
3d68fa99
CY
12812 * simple.el (compose-mail): Check for incompatibilities and warn.
12813 (compose-mail-user-agent-warnings): New option.
12814
662c5698
DN
128152009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
12816
12817 Support showing a single log entry from vc-annotate.
12818 * vc.el (print-log): Add a new argument: START-REVISION.
12819 (vc-print-log-internal): Add a new optional argument and
12820 pass it to the backend.
12821 (vc-print-log, vc-print-root-log): Adjust callers.
12822 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
12823 buffer already displays the requested log entry, use it.
12824 Otherwise display only the log entry in question.
12825 * vc-svn.el (vc-svn-print-log):
e4070cdc 12826 * vc-mtn.el (vc-mtn-print-log):
662c5698
DN
12827 * vc-hg.el (vc-hg-state):
12828 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
12829 (vc-git-show-log-entry): Return t on success.
12830 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
12831 (vc-bzr-show-log-entry): Return t on success.
12832 * vc-rcs.el (vc-rcs-print-log):
12833 * vc-sccs.el (vc-sccs-print-log):
12834 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
12835
e4070cdc
GM
128362009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
12837
5ce6e4f4
JB
12838 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
12839 Add menus to the meta mode. (Bug#5043)
e4070cdc 12840
5ce6e4f4 128412009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
662c5698
DN
12842
12843 * ediff-init.el (ediff-event-key): Use event-to-character instead of
2de386ca 12844 event-key.
662c5698 12845
662c5698
DN
12846 * ediff.el (ediff-buffers-internal): Add unwind-protect.
12847
dab816a9
MA
128482009-12-07 Michael Albinus <michael.albinus@gmx.de>
12849
12850 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
12851 Berbain <raphael.berbain@gmail.com>.
12852
12853 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
12854 characters.
12855 (tramp-initial-end-of-output): New defconst.
12856 (tramp-methods, tramp-find-shell)
12857 (tramp-open-connection-setup-interactive-shell)
12858 (tramp-maybe-open-connection): Use it.
6a7662bb
BR
12859 (tramp-shell-prompt-pattern, tramp-wait-for-output):
12860 Handle existence of `#' and `$'.
dab816a9 12861
6a7662bb
BR
12862 * net/tramp-fish.el (tramp-fish-maybe-open-connection):
12863 Use `tramp-initial-end-of-output'.
dab816a9 12864
a91e1f6b
DN
128652009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
12866
12867 Get the background mode from the terminal for xterm, and set
12868 faces accordingly.
12869 * term/xterm.el (xterm-set-background-mode): New function.
12870 (terminal-init-xterm): Use it in case xterm supports background
12871 color queries. Recompute faces after getting the background
12872 color.
12873
5fa9d1ec
GM
128742009-12-07 Ulrich Mueller <ulm@gentoo.org>
12875
12876 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
12877 number comment back on its own line, for easier parsing.
12878
5e9fde5e
SM
128792009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
12880
12881 Make it work for non-file buffers (bug#5102).
12882 * doc-view.el (doc-view-current-cache-dir):
12883 Use doc-view-buffer-file-name rather than buffer-file-name.
12884 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
12885
2f2f5242
CY
128862009-12-06 Óscar Fuentes <ofv@wanadoo.es>
12887
12888 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
12889 author field is too short.
12890
cebf8ec6
DN
128912009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
12892
5e9fde5e
SM
12893 * vc-git.el (vc-git-print-log): Handle a limit argument.
12894 Display the short log in graph form and with labels.
0d3f8a78
DN
12895 (vc-git-log-view-mode): Handle labels.
12896
cebf8ec6
DN
12897 Make vc-revert change VC state from 'added to 'unregistered.
12898 * vc-git.el (vc-git-revert): Call git reset first.
12899
8e39154d
UJ
129002009-12-06 Ulf Jasper <ulf.jasper@web.de>
12901
d8194864
GM
12902 * net/newst-backend.el, net/newst-plainview.el:
12903 * net/newst-reader.el, net/newst-ticker.el:
12904 * net/newst-treeview.el, net/newsticker.el:
12905 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
8e39154d 12906
ef187c24
CY
129072009-12-06 Chong Yidong <cyd@stupidchicken.com>
12908
238a0f3a
CY
12909 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
12910
2c6bb71a
CY
12911 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
12912 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
12913 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
12914 Update annotation regexp.
12915
ef187c24
CY
12916 * simple.el (beginning-of-visual-line): Constrain to field
12917 boundaries (Bug#5106).
12918
571855b6
UJ
129192009-12-06 Ulf Jasper <ulf.jasper@web.de>
12920
6a7662bb
BR
12921 * xml.el (xml-substitute-numeric-entities):
12922 Move newsticker--decode-numeric-entities in newst-backend.el to
d8194864 12923 xml-substitute-numeric-entities in xml.el. (Bug#5008)
571855b6
UJ
12924 * net/newst-backend.el (newsticker--parse-generic-feed)
12925 (newsticker--parse-generic-items)
6a7662bb
BR
12926 (newsticker--decode-numeric-entities):
12927 Move newsticker--decode-numeric-entities in newst-backend.el to
d8194864 12928 xml-substitute-numeric-entities in xml.el. (Bug#5008)
571855b6 12929
b857059c
CY
129302009-12-06 Daniel Colascione <dan.colascione@gmail.com>
12931
12932 * progmodes/js.el (js--js-not): Add null to the list of values.
12933
c2dae51b
CY
129342009-12-06 Chong Yidong <cyd@stupidchicken.com>
12935
d8194864 12936 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
c2dae51b 12937
ed0f72d2
RW
129382009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12939
12940 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
12941 delimiter if it is at the end of the current line.
12942 (bibtex-generate-url-list): Fix docstring.
12943
365b9a62
SM
129442009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
12945
12946 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
12947 minibuffer's content with itself.
12948 Fold the confirm-after-completion case into the `confirm' case.
12949 (completion-pcm-word-delimiters): Add : and / to the delimiters.
12950
990a9cb1
KR
129512009-12-06 Kevin Ryde <user42@zip.com.au>
12952
12953 * ffap.el (ffap-rfc-path): Make this a defcustom since
d8194864 12954 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
990a9cb1 12955
8b5a10db 12956 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
d8194864 12957 manuals, similar to existing setup for help-mode. (Bug#3913.)
8b5a10db 12958
065543e7
JL
129592009-12-05 Juri Linkov <juri@jurta.org>
12960
12961 Save and restore dired buffer's point positions too. (Bug#4880)
12962
12963 * dired.el (dired-save-positions): Return in the first element
12964 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
12965 Doc fix.
12966 (dired-restore-positions): First restore buffer's position.
12967 While restoring window's positions, check if window still displays
12968 the original buffer.
12969
503edac9
CY
129702009-12-05 Chong Yidong <cyd@stupidchicken.com>
12971
9a594ee6
CY
12972 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
12973 if possible.
12974
925f8c70
CY
12975 * shell.el (shell): Require ansi-color (Bug#5113).
12976
12977 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
12978
503edac9
CY
12979 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
12980
8fea6b33
AM
129812009-12-05 Alan Mackenzie <acm@muc.de>
12982
12983 * progmodes/cc-mode.el (c-before-hack-hook)
12984 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
12985 `c-file-style' to work again. This reversion restores the current
212c5aef 12986 software to its state in Emacs 23.1. (Bug#4146)
8fea6b33 12987
5d1fd962
CY
129882009-12-05 Kevin Ryde <user42@zip.com.au>
12989
6a7662bb
BR
12990 * textmodes/sgml-mode.el (sgml-lexical-context):
12991 Recognise comment-start-skip to comment-end-skip as comment (Bug#4781).
5d1fd962 12992
30760c8b
JL
129932009-12-05 Juri Linkov <juri@jurta.org>
12994
12995 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
12996 for virtual nodes. (Bug#4147)
12997 (Info-find-node-2): Set `Info-current-node-virtual' to nil
12998 when moving from a virtual node.
12999 (Info-mode-menu): Add `Info-virtual-index' to the menu.
13000 (Info-mode): Add `Info-virtual-index' to the docstring.
13001
403111a8
RW
130022009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
13003
13004 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
13005 track of the buffer position of the end of a BibTeX entry as this
13006 position may change during reformatting.
13007 (bibtex-format-entry): Remove whitespace before processing
13008 numerical fields so that we recognize the latter properly.
13009 (bibtex-reformat): Do not use push which changes the global value
13010 of bibtex-entry-format.
13011 (bibtex-field-braces-alist, bibtex-field-strings-alist)
13012 (bibtex-field-re-init): Replace only space characters by regexp
13013 for whitespace.
365b9a62 13014 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
403111a8
RW
13015 (bibtex-initialize): Also update bibtex-strings.
13016 (bibtex-kill-field): Preserve white space at end of entry.
365b9a62
SM
13017 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
13018 Update bibtex-reference-keys.
403111a8 13019
25b54627
SM
130202009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
13021
13022 * minibuffer.el (completion-pcm--merge-try): Also consider placing
13023 point after a star, if that's the only place where modifications can
13024 make progress.
13025
35639eb4
DN
130262009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
13027
13028 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
13029 in docstrings.
13030
8b78760b
JL
130312009-12-04 Juri Linkov <juri@jurta.org>
13032
13033 * proced.el (proced): Call `(proced-update t)' to update process
13034 information instead of only running proced-post-display-hook.
13035 (proced-send-signal): Add a leading space to the buffer name
13036 " *Marked Processes*" to make this buffer ephemeral.
13037
2b3489a7
JL
130382009-12-04 Juri Linkov <juri@jurta.org>
13039
13040 * dired.el (dired-auto-revert-buffer): New defcustom.
13041 (dired-internal-noselect): Use it.
13042
9b9debd1
JL
130432009-12-04 Juri Linkov <juri@jurta.org>
13044
13045 Change roles of modes and functions in image-mode.el (Bug#5062).
13046
13047 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
13048 in `auto-mode-alist'.
13049 (image-mode-previous-major-mode): New variable.
13050 (image-minor-mode-map): Rename from `image-mode-text-map'.
13051 (image-mode): Move graceful error-handling code from
13052 `image-minor-mode' to here. On errors call `image-mode-as-text'.
13053 (image-minor-mode): Remove all image-handling code.
13054 Replace `image-mode-text-map' with `image-minor-mode-map'.
13055 Check for `image-type' in mode-line format string.
13056 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
13057 (image-mode-as-text): New function with most code from
13058 `image-mode-maybe'.
13059 (image-toggle-display-text): Move code that removes image
13060 properties from `image-toggle-display' to here.
13061 (image-toggle-display-image): New function with code that adds
13062 image properties copied from `image-toggle-display'.
13063 (image-toggle-display): Remove most code with leaving only code
13064 that toggles between `image-mode-as-text' and `image-mode'.
13065
0c74a301
UJ
130662009-12-04 Ulf Jasper <ulf.jasper@web.de>
13067
13068 * net/newst-treeview.el
13069 (newsticker--treeview-list-highlight-start): Restored call to
13070 save-excursion: Selected item was stuck.
13071 (newsticker--treeview-list-select): New.
13072 (newsticker--treeview-item-show-text)
13073 (newsticker--treeview-item-show)
13074 (newsticker--treeview-item-update): Use new
13075 newsticker-treeview-item-mode.
13076 (newsticker-treeview-update): Keep current item.
13077 (newsticker-treeview-next-new-or-immortal-item): Doc change.
13078 (newsticker--treeview-first-feed): Doc change.
13079 (newsticker-treeview-list-menu)
88b5a757 13080 (newsticker-treeview-item-menu): Add menu entries.
0c74a301
UJ
13081 (newsticker-treeview-item-mode): New.
13082
5ce6e4f4 13083 * net/newst-backend.el (newsticker-customize): Delete other
0c74a301
UJ
13084 windows.
13085
9eaeec5b
SS
130862009-12-04 Sam Steingold <sds@gnu.org>
13087
13088 * log-view.el (log-view-mode-map): "q" calls quit-window,
13089 like in all the other non-self-insert buffers.
13090
b2bf5be5
SM
130912009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
13092
13093 Minor cleanup.
13094 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
13095 key decoding rather than do it manually via last-input-event +
13096 ascii-character.
13097 (term-exec): Use delete-and-extract-region.
13098 (term-handle-ansi-terminal-messages): Remove unused var `end'.
13099 (term-process-pager): Remove unused var `i'.
13100 (term-dynamic-simple-complete): Make obsolete.
13101 (serial-update-config-menu): Remove unused vars `y' and `str'.
13102 (term-update-mode-line): Remove unused var `temp'.
13103
46e5c897
DN
131042009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
13105
13106 Limit the number of log entries displayed by default.
13107 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
13108 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
13109 using a prefix argument.
13110
627e0a14
GM
131112009-12-03 Glenn Morris <rgm@gnu.org>
13112
13113 * progmodes/idlwave.el (class): Restore still useful declaration.
13114
8578c224
AM
131152009-12-03 Alan Mackenzie <acm@muc.de>
13116
4abc318c 13117 Enhance `c-parse-state' to run efficiently in "brace deserts".
8578c224 13118
b2bf5be5
SM
13119 * progmodes/cc-mode.el (c-basic-common-init):
13120 Call c-state-cache-init.
9762b219 13121 (c-neutralize-syntax-in-and-mark-CPP): Rename from
8578c224 13122 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
b2bf5be5 13123 placing `category' properties value 'c-cpp-delimiter at its boundaries.
8578c224
AM
13124
13125 * progmodes/cc-langs.el (c-before-font-lock-function):
13126 c-extend-and-neutralize-syntax-in-CPP has been renamed
13127 c-neutralize-syntax-in-and-mark-CPP.
13128
13129 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
13130 with `category' properties now, not `syntax-table' ones.
13131
13132 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
13133 enhanced (but slower) version of c-end-of-macro that won't land
13134 inside a literal or on another awkward character.
13135 (c-state-cache-too-far, c-state-cache-start)
13136 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
13137 (c-state-nonlit-pos-cache-limit, c-state-point-min)
13138 (c-state-point-min-lit-type, c-state-point-min-lit-start)
13139 (c-state-min-scan-pos, c-state-brace-pair-desert)
13140 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
13141 buffer local variables.
13142 (c-state-literal-at, c-state-lit-beg)
13143 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
13144 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
13145 (c-state-cache-top-paren, c-state-cache-after-top-paren)
13146 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
13147 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
13148 (c-renarrow-state-cache)
13149 (c-append-lower-brace-pair-to-state-cache)
13150 (c-state-push-any-brace-pair, c-append-to-state-cache)
13151 (c-remove-stale-state-cache)
13152 (c-remove-stale-state-cache-backwards, c-state-cache-init)
13153 (c-invalidate-state-cache-1, c-parse-state-1)
13154 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
b2bf5be5
SM
13155 (c-parse-state): Enhance and refactor.
13156 (c-debug-parse-state): Amend to deal with all the new variables.
8578c224
AM
13157
13158 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
13159 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
b2bf5be5
SM
13160 modify to use category text properties rather than syntax-table ones.
13161 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
8578c224
AM
13162 to switch off/on the syntactic paren property of C++ template
13163 delimiters using the category property.
13164 (c-with-<->-as-parens-suppressed): Macro to invoke code with
13165 template delims suppressed.
13166 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
13167 New constant/macros which apply category properties to the start
13168 and end of preprocessor constructs.
b2bf5be5 13169 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
8578c224
AM
13170 "comment out" the syntactic value of characters in preprocessor
13171 constructs.
13172 (c-with-cpps-commented-out)
13173 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
13174 with characters in all or all but one preprocessor constructs
13175 "commented out".
13176
0d4dc442
RW
131772009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
13178
13179 * proced.el (proced-filter-alist): Use regexp-quote.
13180
a09dc9bf
MA
131812009-12-03 Michael Albinus <michael.albinus@gmx.de>
13182
13183 Cleanup.
13184 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
13185 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
13186 arguments. Expand `default-directory'.
13187
13188 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
13189 the benefit of returning an expanded localname.
13190 (tramp-tramp-file-p): Handle the case NAME is not a string.
13191
3f6bd790
DN
131922009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
13193
4dfb3b9c
DN
13194 Add support for bzr shelve/unshelve.
13195 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
13196 (vc-bzr-extra-menu-map): New variables.
13197 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
13198 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
13199 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
13200 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
13201 (vc-bzr-dir-extra-headers): Display shelves.
13202
3f6bd790
DN
13203 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
13204
842d73a1
SM
132052009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
13206
13207 * textmodes/bibtex.el (bibtex-complete-internal):
13208 Use completion-in-region.
13209 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
13210
7fa4876f
DN
132112009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
13212
13213 Support applying stashes. Improve UI.
13214 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
13215 (vc-git-stash-apply, vc-git-stash-pop)
13216 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
13217 (vc-git-stash-menu): New functions.
13218 (vc-git-stash-menu-map): New variable.
13219 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
13220
d6e82452
GM
132212009-12-03 Glenn Morris <rgm@gnu.org>
13222
13223 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
13224 (vc-print-log-internal): Fix previous change.
13225 (vc-revert): Correct pluralization.
13226
8d222148
SM
132272009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
13228
ea52206b
SM
13229 * progmodes/make-mode.el (makefile-special-targets-list): No need for
13230 it to be an alist any more.
13231 (makefile-complete): Use completion-in-region.
13232
69a94a37
SM
13233 * progmodes/octave-mod.el (octave-complete-symbol):
13234 Use completion-in-region.
13235
8d222148
SM
13236 Misc cleanup.
13237 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
13238 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
13239 (idlwave-complete-class): Don't quote lambda.
13240 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
13241 (idlwave-mode-map): Move initialization into declaration.
13242 (idlwave-action-and-binding): Use backquotes.
13243 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
13244 Simplify.
13245 (idlwave-is-pointer-dereference): Remove unused var `pos'.
13246 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
13247 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
13248 `parts', and `all-parts'.
13249 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
13250 (idlwave-convert-xml-system-routine-info): Remove unused string
13251 `version-string'.
13252 (idlwave-display-user-catalog-widget): Use dolist.
13253 (idlwave-scanning-lib): Declare dynamically-scoped var.
13254 (idlwave-scan-library-catalogs): Remove unused var `flags'.
13255 (completion-highlight-first-word-only): Declare to silence bytecomp.
13256 (idlwave-popup-select): Tighten scope of `resp'.
13257 (idlwave-find-struct-tag): Remove unused var `beg'.
13258 (idlwave-after-load-rinfo-hook): Declare.
13259 (idlwave-sintern-class-info): Remove unused var `taglist'.
13260 (idlwave-find-class-definition): Remove unused var `list'.
13261 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
13262 (idlwave-what-module-find-class): Remove unused var `classes'.
13263
3bb8691b
JB
132642009-12-03 Juanma Barranquero <lekktu@gmail.com>
13265
13266 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
13267
f72f0c23
SM
132682009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
13269
13270 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
13271 buffers visited. Remove redundant current-buffer-saving.
13272
601a9508
SM
132732009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
13274
13275 Use completion-in-buffer and remove uses of dynamic scoping.
13276 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
13277 (pascal-buffer-to-use, pascal-flag): Don't declare.
13278 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
13279 (pascal-get-completion-decl, pascal-keyword-completion):
13280 Add `pascal-str' argument, save-excursion,
13281 return the found completions, and don't filter with pascal-pred.
13282 (pascal-completion-cache): New var.
13283 (pascal-completion): Don't switch buffer any more (it was never
13284 necessary). Don't save-excursion any more (it's done by the called
13285 subroutines). Use a cache to avoid redundant computations.
13286 Use complete-with-action rather than pascal-completion-response and
13287 let it apply the predicate as well.
13288 (pascal-complete-word): Use completion-in-buffer when
13289 pascal-toggle-completions is nil.
13290 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
13291 not used any more.
13292 (pascal-comp-defun): Don't change buffer any more.
13293 Use complete-with-action rather than pascal-completion-response and
13294 let it apply the predicate as well.
13295 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
13296 when neded.
13297
1ff4cb98
KH
132982009-12-02 Kenichi Handa <handa@m17n.org>
13299
13300 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
13301 shape for all Indic scripts.
13302
bb12edf1
SM
133032009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
13304
13305 Use completion-in-buffer.
13306 * wid-edit.el (widget-field-text-end): New function.
13307 (widget-field-value-get): Use it.
13308 (widget-string-complete, widget-file-complete)
13309 (widget-color-complete): Use it and completion-in-region.
13310 (widget-complete): Don't narrow the buffer.
13311
5813f6ef
GM
133122009-12-02 Glenn Morris <rgm@gnu.org>
13313
c920f222
GM
13314 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
13315 (rmail-select-summary): Use rmail-pop-to-buffer.
60f2013c
GM
13316 * mail/rmailsum.el: Replace all pop-to-buffer calls with
13317 rmail-pop-to-buffer, to prevent horizontal splits.
c920f222 13318
5813f6ef
GM
13319 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
13320 save-excursion with save-current-buffer.
13321 Widen before searching. (Bug#5093)
13322 (diary-list-sexp-entries): Remove superfluous save-excursion.
13323
34b1d750
GM
133242009-12-02 Michael Welsh Duggan <mwd@cert.org>
13325
13326 * woman.el (woman-make-bufname): Handle man-pages with "." in the
13327 name. (Bug#5038)
13328
b2d5f31a
GM
133292009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
13330
13331 * ido.el (ido-file-internal): Handle filenames at point that do
13332 not have a directory part. (Bug#5049)
13333
c710ac3c
JB
133342009-12-02 Juanma Barranquero <lekktu@gmail.com>
13335
13336 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
13337 (mpc-songs-jump-to, mpc-resume): Doc fixes.
13338
9946be46
SM
133392009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
13340
13341 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
13342 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
13343 any more.
13344
b08016f2
SM
133452009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
13346
e7440df4
SM
13347 * comint.el (comint-insert-input): Ignore clicks to the right of
13348 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
13349
3bb8691b 13350 * vc.el (vc-print-log-internal): Don't wait for the process to
c767b665
SM
13351 terminate before setting up the major mode.
13352
f3b757f5
SM
13353 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
13354 in case.
13355
a2877f1d
SM
13356 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
13357 the last element.
13358
b08016f2
SM
13359 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
13360
782d6e30
GM
133612009-12-01 Glenn Morris <rgm@gnu.org>
13362
13363 * window.el (window--display-buffer-2): Fix previous changes.
13364
28f57f7e
CY
133652009-12-01 Chong Yidong <cyd@stupidchicken.com>
13366
13367 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
13368
c31a2fdc
GM
133692009-12-01 Glenn Morris <rgm@gnu.org>
13370
13371 * Makefile.in (ELCFILES): Add mpc.elc.
13372
e1ada222
SM
133732009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
13374
13375 * mpc.el: New file.
13376
0c9ff2c5
GM
133772009-12-01 Glenn Morris <rgm@gnu.org>
13378
3689984f
GM
13379 * window.el (window-to-use): Define for compiler.
13380
3ab4308b
GM
13381 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
13382 consistent with others (no final period).
13383
0c9ff2c5
GM
13384 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
13385 (rmail-mime-show): Downcase the encoding. (Bug#5070)
13386
fb0c18ff
DN
133872009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
13388
13389 Make vc-print-log buttons work.
045b9da7 13390 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
fb0c18ff 13391
2ac7e73e
JB
133922009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
13393
13394 * savehist.el (savehist-autosave-interval): Allow setting to nil
13395 through customize. (Bug#5056)
13396
5237d741
JB
133972009-11-30 Juanma Barranquero <lekktu@gmail.com>
13398
13399 Fix references to jit-lock properties.
13400 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
13401 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
13402 (perl-font-lock-special-syntactic-constructs):
13403 Quote jit-lock-defer-multiline property.
13404
379241fa
DN
134052009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
13406
13407 * vc-git.el (vc-git-registered): Call vc-git-root only once.
13408
054ae856
JL
134092009-11-30 Juri Linkov <juri@jurta.org>
13410
13411 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
13412 value `buffer' of `multi-isearch-next-buffer-current-function'.
13413 Use `(current-buffer)' when `buffer' is nil.
13414 (multi-isearch-next-buffer-from-list): Don't fallback to
13415 `(current-buffer)' when `buffer' is nil. (Bug#4947)
13416
67296dda
JL
134172009-11-30 Juri Linkov <juri@jurta.org>
13418
13419 * misearch.el (multi-isearch-read-buffers): Move canonicalization
13420 of buffers with `get-buffer' to `multi-isearch-buffers'.
13421 (multi-isearch-buffers, multi-isearch-buffers-regexp):
13422 Canonicalize BUFFERS with `get-buffer'. Doc fix.
13423 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
13424 FILES with `expand-file-name' converting relative file names
13425 to absolute. Doc fix. (Bug#4727)
13426
c585bf32
JL
134272009-11-30 Juri Linkov <juri@jurta.org>
13428
13429 * misearch.el (multi-isearch-read-buffers)
13430 (multi-isearch-read-matching-buffers): New functions.
13431 (multi-isearch-buffers, multi-isearch-buffers-regexp):
13432 Use them in the `interactive' spec. Doc fix.
13433 (multi-isearch-read-files, multi-isearch-read-matching-files):
13434 New functions.
13435 (multi-isearch-files, multi-isearch-files-regexp):
13436 Use them in the `interactive' spec. Doc fix. (Bug#4725)
13437
0a745733
JL
134382009-11-30 Juri Linkov <juri@jurta.org>
13439
13440 * doc-view.el (doc-view-continuous):
13441 Rename from `doc-view-continuous-mode'.
13442 (doc-view-menu): Move "Toggle display" to the top.
13443 Add submenu "Continuous" with radio buttons "Off"/"On"
13444 and "Save as Default".
13445 (doc-view-scroll-up-or-next-page)
13446 (doc-view-scroll-down-or-previous-page)
13447 (doc-view-next-line-or-next-page)
6a7662bb
BR
13448 (doc-view-previous-line-or-previous-page):
13449 Rename `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
0a745733 13450
1f9689eb
JL
134512009-11-30 Juri Linkov <juri@jurta.org>
13452
13453 * comint.el (comint-mode-map): Rebind `M-r' from
13454 `comint-previous-matching-input' to
13455 `comint-history-isearch-backward-regexp'.
13456 Unbind `M-s' to allow global key binding `M-s'.
13457 Add menu items for `comint-history-isearch-backward' and
13458 `comint-history-isearch-backward-regexp'. (Bug#3746)
13459
2952b1ae
JL
134602009-11-30 Juri Linkov <juri@jurta.org>
13461
13462 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
13463 For def=recenter, replace `recenter' with `recenter-top-bottom'
13464 that is called with `this-command' and `last-command' let-bound
13465 to `recenter-top-bottom'. When the last `def' was not `recenter',
13466 set `recenter-last-op' to nil. (Bug#4981)
13467
7a9547ca
SM
134682009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
13469
20565545
SM
13470 Minor cleanup and simplification.
13471 * filecache.el (file-cache-add-directory)
13472 (file-cache-add-directory-recursively)
13473 (file-cache-add-from-file-cache-buffer)
13474 (file-cache-delete-file-regexp, file-cache-delete-directory)
13475 (file-cache-files-matching-internal, file-cache-display): Use dolist.
13476 (file-cache-temp-minibuffer-message): Delete function.
13477 (file-cache-minibuffer-complete): Use minibuffer-message instead.
13478
7a9547ca
SM
13479 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
13480 Don't signal an error when bumping into EOB in tr, s, or y.
13481
08e968f3
JL
134822009-11-29 Juri Linkov <juri@jurta.org>
13483
13484 * startup.el (fancy-about-text): Fix wording of Guided Tour.
13485 (Bug#4960)
13486
13487 * descr-text.el (describe-char-unidata-list): Use lowercase name
13488 for "Unicode name" like in other tags.
13489
f8d170a4
JL
134902009-11-29 Juri Linkov <juri@jurta.org>
13491
13492 * ediff-util.el (ediff-minibuffer-with-setup-hook):
13493 New compatibility macro.
7a9547ca 13494 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
f8d170a4 13495
0116abbd
JL
134962009-11-29 Juri Linkov <juri@jurta.org>
13497
13498 Add defcustom to define the cycling order of `recenter-top-bottom'.
13499 (Bug#4981)
13500
13501 * window.el (recenter-last-op): Doc fix.
13502 (recenter-positions): New defcustom.
13503 (recenter-top-bottom): Rewrite to use `recenter-positions'.
13504 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
13505
61eef560
MA
135062009-11-29 Michael Albinus <michael.albinus@gmx.de>
13507
13508 Improve integration of Tramp and ange-ftp in eshell.
13509
e4070cdc 13510 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
61eef560
MA
13511 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
13512 (eshell/sudo): Flatten args. Let-bind `default-directory'.
13513
13514 * eshell/esh-util.el (top): Require also Tramp when compiling.
13515 (eshell-directory-files-and-attributes): Check for FTP remote
13516 connection.
13517 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
13518 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
13519 (eshell-file-attributes): Handle ".". Return `entry'.
13520
13521 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
13522 (ange-ftp-directory-files-and-attributes)
13523 (ange-ftp-real-directory-files-and-attributes): New defuns.
13524
13525 * net/tramp.el (tramp-maybe-open-connection): Open the remote
13526 shell with "exec" when possible. This prevents trailing prompts
13527 in `start-file-process'.
13528
f5467d3f
SM
135292009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
13530
21f49db9
SM
13531 Try and remove assumptions about point-min==1.
13532 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
13533 (rng-compute-mode-line-string): Show the validation percentage in
13534 terms of the narrowed text, not the widened text.
13535 (rng-do-some-validation): Don't catch internal errors when debugging.
13536 (rng-first-error): Simplify.
13537 (rng-after-change-function): Remove work around. AFAIK the bug has
13538 been fixed a while ago.
13539
26224faf
SM
13540 * image-mode.el (image-minor-mode): Exit more gracefully when the image
13541 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
13542
d7117720
SM
13543 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
13544
f5467d3f
SM
13545 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
13546 `cd' doesn't always do it for us (bug#5067).
13547
13548 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
13549 on 2009-10-25 as part of some other change (bug#5067).
13550
c5269f1c
SM
135512009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
13552
62a258a7
SM
13553 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
13554 `suspicious'.
13555 (byte-compile-warnings): Use byte-compile-warning-types.
13556 (byte-compile-save-excursion): Warn about use of set-buffer right
13557 after save-excursion.
13558
c5269f1c
SM
13559 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
13560 the excursion as well.
13561
3ba30eb8
MA
135622009-11-27 Michael Albinus <michael.albinus@gmx.de>
13563
13564 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
13565 providing a Tramp related implementation of "su" and "sudo".
13566 (eshell-unix-initialize): Add "su" and "sudo".
13567
6c6f788d
DU
135682009-11-27 Daiki Ueno <ueno@unixuser.org>
13569
13570 * net/socks.el (socks-send-command): Convert binary request to
13571 unibyte before sending. This fixes mishandling of some port
13572 numbers such as 129.
13573
10c877fe
SM
135742009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
13575
6f06a171
SM
13576 * help.el (describe-bindings-internal): Remove `interactive'.
13577
10c877fe
SM
13578 * man.el (Man-completion-table): Trim a terminating "(".
13579 Remove the space between name page a section.
13580 Add the command's description on the `help-echo' property.
c5269f1c
SM
13581 Remove `process-connection-type' binding since it's unused by
13582 call-process.
10c877fe
SM
13583 Provide completion for the "<section> <name>" format as well.
13584 (Man-default-man-entry): Remove spurious var shadowing the argument.
13585
c44a4822
KR
135862009-11-26 Kevin Ryde <user42@zip.com.au>
13587
13588 * log-view.el: Add "Keywords: tools", since its other keywords
13589 aren't in finder-known-keywords, and following vc.el.
13590
9d58f081
KR
13591 * sha1.el (sha1-string-external): default-directory "/" in case
13592 otherwise non-existent. process-connection-type pipe for touch of
13593 efficiency recommended by elisp manual. (An aside in Bug#3911.)
13594
72fe6b25
SM
135952009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
13596
13597 Misc coding convention cleanups.
13598 * htmlfontify.el (hfy-init-kludge-hook): Rename from
13599 hfy-init-kludge-hooks.
13600 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
13601 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
13602 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
13603 and push.
13604 (hfy-slant, hfy-weight): Use tables rather than code.
13605 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
13606 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
13607 (hfy-face-attr-for-class): Initialize `face-spec' directly.
13608 (hfy-face-to-css): Remove `nconc' with single arg.
13609 (hfy-p-to-face-lennart): Use `or'.
13610 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
13611 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
13612 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
13613 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
13614 (hfy-force-fontification): Use run-hooks.
13615
85e0a536
SM
136162009-11-26 Vivek Dasmohapatra <vivek@etla.org>
13617
13618 Various minor fixes.
13619 * htmlfontify.el (hfy-default-header): Add toggle_invis since
13620 Javascript belongs in the header, not the body.
13621 (hfy-javascript): Remove.
13622 (hfy-fontify-buffer): Don't insert it any more.
13623 (hfy-face-at): Handle (face0 face1 face2) style face properties.
13624 Fix bug in invis handling when there were no invis props in a chunk.
13625
62ccc42c
SM
136262009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
13627
13628 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
13629
2643c7aa
DN
136302009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
13631
13632 * finder.el (finder-mode-map): Add a menu.
13633
0e5c8aed
DN
136342009-11-26 Michael McNamara <mac@mail.brushroad.com>
13635
bf0b361c 13636 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
0e5c8aed
DN
13637 "unsigned" structs.
13638
13639 (verilog-leap-to-head, verilog-backward-token): Handle "disable
13640 fork" statement better.
13641
136422009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
13643
bf0b361c
JB
13644 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
13645 (verilog-delete-auto, verilog-delete-empty-auto-pair)
13646 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
13647 Reported by Clay Douglass.
0e5c8aed
DN
13648
13649 (verilog-auto-inst, verilog-auto-star-safe)
62ccc42c 13650 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
6a7662bb
BR
13651 Fix removing "// Interfaces" when saving .* expansions.
13652 Reported by Pierre-David Pfister.
0e5c8aed 13653
7629c4e7
GM
136542009-11-26 Glenn Morris <rgm@gnu.org>
13655
62ccc42c
SM
13656 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
13657 the scope.
7629c4e7 13658
a5d358f8
JB
136592009-11-25 Johan Bockgård <bojohan@gnu.org>
13660
13661 * vc-annotate.el (vc-annotate-revision-previous-to-line):
13662 Really use previous revision.
13663
002cbde5
KR
136642009-11-25 Kevin Ryde <user42@zip.com.au>
13665
13666 * man.el (Man-completion-table): default-directory "/" in case
13667 doesn't otherwise exist. process-environment COLUMNS=999 so as
13668 not to truncate long names. process-connection-type pipe to avoid
573f4575
KR
13669 any chance of hitting the pseudo-tty TIOCGWINSZ.
13670 (man): completion-ignore-case t for friendliness and since man
13671 itself is case-insensitive on the command line.
13672 Further to Bug#3717.
002cbde5 13673
8cb5ffe8
KR
13674 * arc-mode.el: Add "Keywords: files", so the details in its
13675 commentary can be reached from finder-by-keyword.
34607612
KR
13676 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
13677 editing mode, but it's comms related and sgml-mode.el has "comm"
13678 on that basis too.
b8dfcf54 13679 * textmodes/bibtex-style.el: Add "Keywords: tex".
5cf751b4
GM
13680 * international/isearch-x.el, international/ja-dic-cnv.el:
13681 * international/ja-dic-utl.el, international/kkc.el:
b8dfcf54 13682 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
34607612 13683
1e2d9ba1
JL
136842009-11-25 Juri Linkov <juri@jurta.org>
13685
13686 * man.el (Man-completion-table): Modify regexp to include
13687 section names to completion strings. (Bug#3717)
13688
a601d313
JL
136892009-11-25 Juri Linkov <juri@jurta.org>
13690
13691 Search recursively in gzipped files. (Bug#4982)
13692
13693 * progmodes/grep.el (grep-highlight-matches): Add new options
13694 `always' and `auto'. Doc fix.
13695 (grep-process-setup): Check `grep-highlight-matches' for
13696 `auto-detect' to determine the need to compute grep defaults.
13697 Move Windows/DOS specific --colors settings handling
13698 to `grep-compute-defaults'. Check `grep-highlight-matches'
13699 to get the value of "--color=".
13700 (grep-compute-defaults): Compute `grep-highlight-matches' when it
13701 has the value `auto-detect'. Move Windows/DOS specific settings
13702 from `grep-process-setup'.
13703 (zrgrep): New command with alias `rzgrep'.
13704
bde04ea9
JL
137052009-11-25 Juri Linkov <juri@jurta.org>
13706
13707 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
13708 to nil instead of switching off view-mode. (Bug#4896)
13709
7d6b4d3c
JL
137102009-11-25 Juri Linkov <juri@jurta.org>
13711
13712 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
13713
13714 * mwheel.el (mwheel-scroll-up-function)
13715 (mwheel-scroll-down-function): New defvars.
13716 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
13717 `scroll-up', and `mwheel-scroll-down-function' instead of
13718 `scroll-down'.
13719
13720 * doc-view.el (doc-view-scroll-up-or-next-page)
13721 (doc-view-scroll-down-or-previous-page): Add optional ARG.
13722 Use this ARG in the call to image-scroll-up/image-scroll-down.
13723 Change `interactive' spec to "P". Goto next/previous page only
13724 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
13725 SPC/DEL case). Doc fix.
13726 (doc-view-next-line-or-next-page)
13727 (doc-view-previous-line-or-previous-page): Rename arg to ARG
13728 for consistency.
13729 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
13730 `doc-view-scroll-up-or-next-page', and buffer-local
13731 `mwheel-scroll-down-function' to
13732 `doc-view-scroll-down-or-previous-page'.
13733
e237085f
JL
137342009-11-25 Juri Linkov <juri@jurta.org>
13735
13736 Provide additional default values (directories at other Dired
13737 windows) via M-n in the minibuffer of some Dired commands.
13738
13739 * dired-aux.el (dired-diff, dired-compare-directories)
13740 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
13741 `minibuffer-default' in `minibuffer-with-setup-hook'.
13742 (dired-dwim-target-directory): Find a window that displays Dired
13743 buffer instead of failing when the next window is not Dired.
13744 Use `get-window-with-predicate' to find for the next Dired window.
13745 (dired-dwim-target-defaults): New function.
13746
13747 * ediff-util.el (ediff-read-file-name):
13748 Use `dired-dwim-target-defaults' to set `minibuffer-default'
13749 in `minibuffer-with-setup-hook'.
13750
7d371eac
JL
137512009-11-25 Juri Linkov <juri@jurta.org>
13752
13753 Provide additional default values (file name at point or at the
13754 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
13755
13756 * minibuffer.el (read-file-name-defaults): New function.
13757 (read-file-name): Reset `minibuffer-default' to nil when
13758 it duplicates initial input `insdef'.
13759 Bind `minibuffer-default-add-function' to lambda that
13760 calls `read-file-name-defaults' in `minibuffer-selected-window'.
13761 (minibuffer-insert-file-name-at-point): New command.
13762
13763 * files.el (file-name-at-point-functions): New defcustom.
13764 (find-file-default): Remove defvar.
13765 (find-file-read-args): Don't use `find-file-default'.
13766 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
13767 to `read-file-name'.
13768 (find-file-literally): Use `read-file-name' with
13769 `confirm-nonexistent-file-or-buffer'.
13770
13771 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
13772
13773 * dired.el (dired-read-dir-and-switches):
13774 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
13775 to `read-file-name'.
13776 (dired-file-name-at-point): New function.
13777 (dired-mode): Add hook `dired-file-name-at-point' to
13778 `file-name-at-point-functions'.
13779
04ae543a
SM
137802009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
13781
13782 Really make the *Completions* window soft-dedicated (bug#5030).
13783 * window.el (window--display-buffer-2): Add `dedicated' argument.
13784 (display-buffer): Pass it when needed so the dedicated flag is set
13785 after calling set-window-buffer, which would otherwise reset it.
13786
eb708e66
SM
137872009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
13788
d6b8d4e7
SM
13789 * progmodes/meta-mode.el (meta-complete-symbol):
13790 * progmodes/etags.el (complete-tag):
e2d4ea5a
SM
13791 * mail/mailabbrev.el (mail-abbrev-complete-alias):
13792 Use completion-in-region.
13793
5f24557b
SM
13794 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
13795 (dabbrev-completion): Use completion-in-region.
13796 (dabbrev--abbrev-at-point): Simplify regexp.
13797
fe4346f0
SM
13798 * abbrev.el (abbrev--before-point): Use word-motion functions
13799 if :regexp is not specified (bug#5031).
13800
cb190d7d
SM
13801 * subr.el (string-prefix-p): New function.
13802
e2ec6dd5
SM
13803 * man.el (Man-completion-cache): New var.
13804 (Man-completion-table): Use it.
13805
eb708e66
SM
13806 * vc.el (vc-print-log-internal): Make `limit' optional for better
13807 compatibility (e.g. with vc-annotate.el).
13808
4cf8971b
KR
138092009-11-24 Kevin Ryde <user42@zip.com.au>
13810
eb708e66 13811 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
d8194864 13812 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
f69c67b6 13813
4cf8971b
KR
13814 * emacs-lisp/elint.el (elint-add-required-env): Better error message
13815 when .el source file not found or other error.
13816
d204c46c
SM
138172009-11-24 Markus Triska <markus.triska@gmx.at>
13818
13819 * linum.el (linum-update-window): Ignore intangible (bug#4996).
13820
bb301b9a
SM
138212009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
13822
449c27f0
SM
13823 Handle the [back] button properly (bug#4979).
13824 * descr-text.el (describe-text-properties): Add a `buffer' argument.
13825 Use help-setup-xref, help-buffer, and with-help-window.
13826 (describe-char): Add `buffer' argument.
13827 Pass proper command to help-setup-xref. Don't meddle with
13828 help-xref-stack-item directly.
13829 (describe-text-category): Use with-help-window and help-buffer.
13830
32fe5377
SM
13831 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
13832 for the displayed buffer (bug#4887).
13833
bb301b9a
SM
13834 * man.el (Man-completion-table): New function.
13835 (man): Use it.
13836
35179414
DR
138372009-11-24 David Reitter <david.reitter@gmail.com>
13838
bb301b9a 13839 * vc-git.el (vc-git-registered): Use checkout directory (where
35179414
DR
13840 .git is) rather than the file's directory and a relative path spec
13841 to work around a bug in git.
13842
605a20a9
MA
138432009-11-24 Michael Albinus <michael.albinus@gmx.de>
13844
13845 Improve handling of processes on remote hosts.
13846
13847 * eshell/esh-util.el (eshell-path-env): New defvar.
13848 (eshell-parse-colon-path): New defun.
13849 (eshell-file-attributes): Use `eshell-parse-colon-path'.
13850
bb301b9a
SM
13851 * eshell/esh-ext.el (eshell-search-path):
13852 Use `eshell-parse-colon-path'.
605a20a9
MA
13853 (eshell-remote-command): Remove argument HANDLER.
13854 (eshell-external-command): Check for FTP remote connection.
13855
bb301b9a
SM
13856 * eshell/esh-proc.el (eshell-gather-process-output):
13857 Use `file-truename', in order to start also symlinked files.
13858 Apply `start-file-process' instead of `start-process'.
13859 Shorten `command' to the local file name part.
605a20a9 13860
bb301b9a
SM
13861 * eshell/em-cmpl.el (eshell-complete-commands-list):
13862 Use `eshell-parse-colon-path'.
605a20a9
MA
13863
13864 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
13865
13866 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
13867 to `eshell-directory-change-hook'.
13868
d1d33062
TH
138692009-11-24 Tassilo Horn <tassilo@member.fsf.org>
13870
13871 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
bb301b9a 13872 because it could be enabled automatically if view-read-only is non-nil.
d1d33062 13873
a34d8565 138742009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
d1d33062 13875
a34d8565
MK
13876 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
13877 made on 2009-11-22.
d1d33062 13878
c83b8d1b
GM
138792009-11-24 Glenn Morris <rgm@gnu.org>
13880
13881 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
13882 deleted variable bookmark-bmenu-bookmark-column.
13883
83505cfe
SM
138842009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
13885
13886 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
13887
5241b291
CY
138882009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
13889
13890 * net/browse-url.el (browse-url-filename-alist): On Windows, add
13891 two slashes to the "file:" prefix.
13892 (browse-url-file-url): De-munge Cygwin filenames before passing
13893 them to Windows browser.
13894 (browse-url-default-windows-browser): Use call-process.
13895
aefcadb6
JL
138962009-11-23 Juri Linkov <juri@jurta.org>
13897
13898 Implement DocView Continuous mode. (Bug#4896)
13899 * doc-view.el (doc-view-continuous-mode): New defcustom.
83505cfe
SM
13900 (doc-view-mode-map): Bind C-n/<down> to
13901 `doc-view-next-line-or-next-page', C-p/<up> to
13902 `doc-view-previous-line-or-previous-page'.
aefcadb6
JL
13903 (doc-view-next-line-or-next-page)
13904 (doc-view-previous-line-or-previous-page): New commands.
13905
0d62bcea
JL
139062009-11-23 Juri Linkov <juri@jurta.org>
13907
13908 Implement Isearch in comint input history. (Bug#3746)
13909 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
13910 `isearch-mode-hook'.
13911 (comint-history-isearch): New defcustom.
13912 (comint-history-isearch-backward)
13913 (comint-history-isearch-backward-regexp): New commands.
13914 (comint-history-isearch-message-overlay): New buffer-local variable.
13915 (comint-history-isearch-setup, comint-history-isearch-end)
13916 (comint-goto-input, comint-history-isearch-search)
13917 (comint-history-isearch-message, comint-history-isearch-wrap)
13918 (comint-history-isearch-push-state)
13919 (comint-history-isearch-pop-state): New functions.
13920
b593f105
MA
139212009-11-23 Michael Albinus <michael.albinus@gmx.de>
13922
13923 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
13924 return.
13925 (tramp-handle-make-symbolic-link)
13926 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
13927 Quote file names.
13928 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
13929 (tramp-handle-process-file): Use it.
13930
0f202d5d
SM
139312009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
13932
13933 * window.el (move-to-window-line-last-op): Remove.
13934 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
13935
216349f8
SM
139362009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
13937
0f202d5d 13938 Make M-r mirror the new cycling behavior of C-l.
216349f8
SM
13939 * window.el (move-to-window-line-last-op): New var.
13940 (move-to-window-line-top-bottom): New command.
13941 (global-map): Bind M-r move-to-window-line-top-bottom.
13942
c10e0633
GM
139432009-11-23 Sven Joachim <svenjoac@gmx.de>
13944
13945 * dired-x.el (dired-guess-shell-alist-default):
13946 Support xz format. (Bug#4953)
13947
953e0c1a
GM
139482009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
13949
13950 * emulation/viper-cmd.el: Use viper-last-command-char instead of
13951 last-command-char/last-command-event.
13952 (viper-prefix-arg-value): Do correct conversion of event-char for
13953 XEmacs.
13954
83505cfe
SM
13955 * emulation/viper-util.el, emulation/viper.el:
13956 Use viper-last-command-char instead of
13957 last-command-char/last-command-event.
953e0c1a 13958
83505cfe
SM
13959 * ediff-init.el, ediff-mult.el, ediff-util.el:
13960 Replace last-command-char and last-command-event
13961 with (ediff-last-command-char) everywhere.
953e0c1a
GM
13962
13963 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
13964 created in fundamental mode.
13965
13966 * ediff.el (ediff-version): Revert the change of interactive-p to
13967 called-interactively-p.
13968
9ee12eee
TH
139692009-11-22 Tassilo Horn <tassilo@member.fsf.org>
13970
13971 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
13972 generation from word-movement command names.
13973
8b571bf3
JD
139742009-11-21 Jan Djärv <jan.h.d@swipnet.se>
13975
13976 * cus-start.el (all): Add native condition for font-use-system-font.
13977
4121db47
AM
139782009-11-21 Nathaniel Flath <flat0103@gmail.com>
13979
83505cfe
SM
13980 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
13981 Correct the patch from 2009-11-18. (Bug#3910)
4121db47 13982
d71f5e0c
TH
139832009-11-21 Tassilo Horn <tassilo@member.fsf.org>
13984
13985 * progmodes/subword.el: Rename from lisp/subword.el.
13986
13987 * subword.el: Rename to progmodes/subword.el.
13988
13989 * Makefile.in (ELCFILES): Adapt to subword.el move.
13990
fc9d6ad6 139912009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4e2af782 13992 Stefan Monnier <monnier@iro.umontreal.ca>
fc9d6ad6
SM
13993
13994 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
13995 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
13996 (bookmark-bmenu-show-filenames): Use push.
13997 (bookmark-bmenu-hide-filenames): Use local var instead of
13998 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
13999 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
14000 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
14001 filenames now that the bookmark names are always available.
14002
26d9285f
SM
140032009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
14004
14005 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
14006 (bookmark-search-pattern): Move and leave unbound.
14007 (bookmark-bmenu-mode-map): Change binding.
14008 (bookmark-read-search-input): Simplify.
14009 Don't use text-char-description. Don't error on non-char events.
14010 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
14011 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
14012 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
14013 Use a local var for the timer.
14014 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
14015 (i.e. bookmark-bmenu-search).
14016
d73a0317
GM
140172009-11-21 Glenn Morris <rgm@gnu.org>
14018
14019 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
14020
e572025f
CY
140212009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
14022
26d9285f
SM
14023 * net/browse-url.el (browse-url-default-windows-browser):
14024 Use cygstart for cygwin.
e572025f 14025
6aeaa3dc
KF
140262009-11-20 Karl Fogel <karl.fogel@red-bean.com>
14027
e4070cdc 14028 * bookmark.el: Formatting and doc fixes only:
6aeaa3dc
KF
14029 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
14030 (bookmark-bmenu-search): Wrap to fit within 80 columns.
194d44e7 14031 Minor grammar and punctuation fixes in doc string.
6aeaa3dc
KF
14032 (bookmark-read-search-input): Adjust to fit within 80 columns.
14033
a9b76eec
TH
140342009-11-20 Tassilo Horn <tassilo@member.fsf.org>
14035
14036 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
14037 (c-backward-into-nomenclature): Adapt to subword renaming.
14038
14039 * subword.el (subword-forward, subword-backward, subword-mark)
14040 (subword-kill, subword-backward-kill, subword-transpose)
14041 (subword-downcase, subword-upcase, subword-capitalize)
26d9285f
SM
14042 (subword-forward-internal, subword-backward-internal):
14043 Rename from forward-subword, backward-subword, mark-subword,
14044 kill-subword, backward-kill-subword, transpose-subwords,
14045 downcase-subword, upcase-subword, capitalize-subword,
14046 forward-subword-internal, backward-subword-internal.
a9b76eec 14047
1e7d4475
SM
140482009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14049
26d9285f
SM
14050 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
14051 New options.
1e7d4475
SM
14052 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
14053 New vars.
14054 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
14055 (bookmark-bmenu-filter-alist-by-regexp)
14056 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
14057 (bookmark-bmenu-search): New command.
14058 (bookmark-bmenu-mode-map): Bind it.
14059
653d1554
TH
140602009-11-20 Tassilo Horn <tassilo@member.fsf.org>
14061
ab84bfa0
TH
14062 * progmodes/cc-cmds.el: declare-functioned forward-subword and
14063 backward-subword to quit the byte-compiler.
14064
1f35fda9
TH
14065 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
14066
14067 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
14068
653d1554 14069 * progmodes/cc-cmds.el (c-update-modeline)
1e7d4475
SM
14070 (c-forward-into-nomenclature, c-backward-into-nomenclature):
14071 Refer to subword.el functions instead of cc-subword.el.
653d1554
TH
14072
14073 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
14074 subword.el functions instead of cc-subword.el.
14075
1e7d4475
SM
14076 * progmodes/cc-subword.el: Rename to subword.el.
14077 * subword.el: Rename from progmodes/cc-subword.el.
14078 (subword-mode-map): Rename from c-subword-mode-map.
14079 (subword-mode): Rename from c-subword-mode.
653d1554 14080 (global-subword-mode): New global minor mode.
1e7d4475
SM
14081 (forward-subword): Rename from c-forward-subword.
14082 (backward-subword): Rename from c-backward-subword.
14083 (mark-subword): Rename from c-mark-subword.
14084 (kill-subword): Rename from c-kill-subword.
14085 (backward-kill-subword): Rename from c-backward-kill-subword.
14086 (transpose-subwords): Rename from c-tranpose-subword.
14087 (downcase-subword): Rename from c-downcase-subword.
14088 (capitalize-subword): Rename from c-capitalize-subword.
14089 (forward-subword-internal): Rename from c-forward-subword-internal.
14090 (backward-subword-internal): Rename from c-backward-subword-internal.
653d1554 14091
9717f119
DN
140922009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
14093
8de724f3
DN
14094 * vc.el (vc-deduce-fileset): Allow non-state changing operations
14095 from a dired buffer.
14096 (vc-dired-deduce-fileset): New function.
14097 (vc-root-diff, vc-print-root-log): Use it.
14098
9717f119
DN
14099 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
14100 nil LIMIT argument to vc-print-log-internal.
14101
af4999b8
GM
141022009-11-20 Glenn Morris <rgm@gnu.org>
14103
14104 * Makefile.in (ELCFILES): Regenerate.
14105
b58edcb6
JB
141062009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
14107
02e1b488
SM
14108 * calc/calc.el (calc-set-mode-line):
14109 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
b58edcb6
JB
14110 (math-format-number): Rename `math-format-complement-signed' to
14111 `math-format-twos-complement'.
14112
02e1b488 14113 * calc/calc-bin.el (math-format-twos-complement): Rename from
b58edcb6
JB
14114 math-format-complement-signed.
14115 (calc-radix): Rename `calc-complement-signed-mode' to
14116 `calc-twos-complement-mode'.
02e1b488
SM
14117 (calc-octal-radix, calc-hex-radix): Add an argument for
14118 two's complement.
b58edcb6 14119
02e1b488
SM
14120 * calc/calc-embed.el (calc-embedded-mode-vars):
14121 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
b58edcb6 14122
02e1b488
SM
14123 * calc/calc-ext.el (calc-init-extensions):
14124 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
b58edcb6
JB
14125 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
14126
02e1b488
SM
14127 * calc/calc-units.el (math-build-units-table-buffer):
14128 Let `calc-twos-complement-mode' be nil.
b58edcb6
JB
14129
14130 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
14131 entries.
14132
14133 * calc/calc-vec.el (calcFunc-vunpack):
14134 * calc/calc-aent.el (calc-do-calc-eval):
14135 * calc/calc-forms.el (math-format-date):
14136 * calc/calc-graph.el (calc-graph-plot):
14137 * calc/calc-math.el (math-use-emacs-fn):
02e1b488
SM
14138 * calc/calccomp.el (math-compose-expr):
14139 Let `calc-twos-complement-mode' be nil.
14140
141412009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
14142
14143 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
14144 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
14145 * minibuffer.el (completion-in-region-functions): New hook.
14146 (completion-in-region): New function.
14147 * emacs-lisp/lisp.el (lisp-complete-symbol):
14148 * pcomplete.el (pcomplete-std-complete): Use it.
b58edcb6 14149
e3353a78
SM
141502009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
14151
eff77808
SM
14152 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
14153 (latex-complete-alist): New vars.
14154 (latex-string-prefix-p, latex-complete-bibtex-keys)
14155 (latex-complete-envnames, latex-complete-refkeys)
14156 (latex-complete-data): New functions.
14157 (latex-complete, latex-indent-or-complete): New commands.
14158
d2c9fc42
SM
14159 * window.el (display-buffer-mark-dedicated): New var.
14160 (display-buffer): Obey it.
14161 * minibuffer.el (minibuffer-completion-help): Use it.
14162
31a1c477
SM
14163 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
14164
bed4c972
SM
14165 * filecache.el (file-cache-add-file): Use push and cons.
14166 (file-cache-delete-file-regexp): Use push.
14167 (file-cache-complete): Use completion-in-region.
14168
8c22699f
SM
14169 * simple.el (with-wrapper-hook): Fix thinko.
14170
e3353a78
SM
14171 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
14172 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
14173 Use with-current-buffer and string-to-number.
14174 (hfy-fallback-colour-values): Use assoc-string.
14175 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
14176 (hfy-face-at): Remove unused var `found-face'.
14177 (hfy-compile-stylesheet): Remove unused var `css'.
14178 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
14179 and `orig-buffer'.
14180 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
14181 Use with-current-buffer.
14182 (hfy-text-p): Use expand-file-name and fewer setq.
14183
acca02b0
SM
141842009-11-19 Vivek Dasmohapatra <vivek@etla.org>
14185
14186 * htmlfontify.el, hfy-cmap.el: New files.
14187
042b7cc6
JL
141882009-11-19 Juri Linkov <juri@jurta.org>
14189
14190 * minibuffer.el (completions-format): New defcustom.
14191 (completion--insert-strings): Implement vertical format.
14192
14193 * simple.el (switch-to-completions): Move point to the first
14194 completion when point was at the beginning of the buffer.
14195
da205913
JL
141962009-11-19 Juri Linkov <juri@jurta.org>
14197
14198 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
14199
14200 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
14201
0b8ee421
CY
142022009-11-19 Chong Yidong <cyd@stupidchicken.com>
14203
14204 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
14205 (mail-signature): Change default to t.
14206 (mail-from-style): Deprecate `system-default' value.
14207 (mail-insert-from-field): For default value of mail-from-style,
14208 default to `angles' unless `angles' needs quoting and `parens'
14209 does not.
14210 (mail-citation-prefix-regexp): Use citation regexp from
14211 message-mode.
14212
4265deab
MA
142132009-11-19 Michael Albinus <michael.albinus@gmx.de>
14214
acca02b0
SM
14215 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
14216 Set variables for computing the prompt for reading password.
4265deab 14217
27cacd2d
GM
142182009-11-19 Glenn Morris <rgm@gnu.org>
14219
470bce7d
GM
14220 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
14221
7e705a1d
GM
14222 * textmodes/flyspell.el (sgml-lexical-context): Declare.
14223
27cacd2d
GM
14224 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
14225 (newsticker-treeview-listwindow-height): Fix custom type.
14226
b2f0be0f
KH
142272009-11-19 Kenichi Handa <handa@m17n.org>
14228
14229 * descr-text.el (describe-char-padded-string): Compose with TAB
14230 only if there's a font for CH.
02e1b488 14231 (describe-char): Fix the condition for detecting a trivial composition.
b2f0be0f 14232
03446045 142332009-11-18 Nathaniel Flath <flat0103@gmail.com>
b96337b0
AM
14234
14235 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
03446045 14236 more accurate version of the regexp. (Bug#3910)
b96337b0 14237
03446045 142382009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
efa3639b
SS
14239
14240 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
14241
e0620570
JB
142422009-11-18 Juanma Barranquero <lekktu@gmail.com>
14243
14244 * font-setting.el (font-use-system-font): Declare for byte-compiler.
14245 (font-setting-change-default-font): Fix typo in docstring.
14246
6cc6582e
AM
142472009-11-18 Alan Mackenzie <acm@muc.de>
14248
14249 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
14250
dfb3c4c6
JD
142512009-11-17 Jan Djärv <jan.h.d@swipnet.se>
14252
02e1b488 14253 * font-setting.el (font-use-system-font): Move ...
dfb3c4c6
JD
14254
14255 * cus-start.el (all): ... to here.
14256
e268e987
MA
142572009-11-17 Michael Albinus <michael.albinus@gmx.de>
14258
14259 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
14260 Don't set `ad-return-value' if `ad-do-it' doesn't.
14261
303ffde8
MA
14262 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
14263 modification time.
14264
637fa988
JD
142652009-11-17 Jan Djärv <jan.h.d@swipnet.se>
14266
14267 * menu-bar.el: Put "Use system font" in Option-menu.
ad413b35 14268 (menu-bar-options-save): Add font-use-system-font.
637fa988
JD
14269
14270 * loadup.el: If feature system-font-setting or font-render-setting is
14271 there, load font-setting.
14272
02e1b488 14273 * Makefile.in (ELCFILES): Add font-settings.el.
637fa988
JD
14274 * font-setting.el: New file.
14275
1d16a255
GM
142762009-11-17 Glenn Morris <rgm@gnu.org>
14277
14278 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
14279
2d84f804
GM
14280 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
14281 Preserve point in the list buffer. (Bug#4939)
14282 Use point-at-eol.
14283 (newsticker--treeview-list-update-highlight)
14284 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
14285
14467b99
JB
142862009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
14287
14288 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
14289 Remove.
14290
14291 * calc/calc-ext.el (calc-init-extensions): Remove references to
14292 symclip.
14293
14294 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
14295
14296 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
5237d741 14297 * calc/calc-help.el (calc-b-prefix-help): Remove references to
14467b99
JB
14298 `calc-symclip'.
14299
e3c39c01
KR
143002009-11-16 Kevin Ryde <user42@zip.com.au>
14301
02e1b488 14302 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
5237d741 14303 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
e3c39c01 14304
497de631
KR
14305 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
14306 (lm-keywords-list): Allow comma-only separator like "foo,bar".
14307 Ignore trailing spaces by omit-nulls to split-string (fixing
14308 regression from Emacs 21 due to the incompatible split-string
14467b99 14309 change). (Bug #4928.)
497de631 14310
48b27575
DN
143112009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
14312
5237d741 14313 * vc.el (vc-log-show-limit): Default to 2000.
48b27575
DN
14314 (vc-print-log-internal): Insert buttons to request more entries
14315 when limiting the output.
14316
14317 * vc-sccs.el (vc-sccs-print-log):
14318 * vc-rcs.el (vc-rcs-print-log):
14319 * vc-cvs.el (vc-cvs-print-log):
14320 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
14321 LIMIT is non-nil.
14322
d3e97185
MA
143232009-11-16 Michael Albinus <michael.albinus@gmx.de>
14324
14325 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
14326 error when `tramp-gvfs-dbus-event-vector' is set.
14327 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
14328
68d87786
SM
143292009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
14330
14331 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
14332
c0a39702
MA
143332009-11-16 Michael Albinus <michael.albinus@gmx.de>
14334
14335 * net/dbus.el (dbus-unregister-service): New defun.
d3e97185 14336 (dbus-register-property): Register the handlers of
c0a39702
MA
14337 "org.freedesktop.DBus.Properties" for SERVICE.
14338 (dbus-property-handler): Fix docstring.
14339
1e857121
YM
143402009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14341
14342 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
14343 Quote doc string reference in defvaralias as it is not in special form.
14344 (byte-compile-output-docform): Doc fix.
14345
887484c1
JB
143462009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
14347
14348 * calc/calc.el (math-2-word-size, math-half-2-word-size)
14349 (calc-complement-signed-mode): New variables.
14350 (calc-set-mode-line): Add indicator for twos-complements.
14351 (math-format-number): Format twos-complement notation.
14352
14353 * calc/calc-bin.el (calc-word-size): Reset the variables
14354 `math-2-word-size' and `math-half-2-word-size'.
68d87786
SM
14355 (math-format-complement-signed, math-symclip, calcFunc-symclip)
14356 (calc-symclip): New functions.
887484c1
JB
14357
14358 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
14359
68d87786
SM
14360 * calc/calc-embed.el (calc-embedded-mode-vars):
14361 Add `calc-complement-signed-mode' to the list of modes.
887484c1
JB
14362
14363 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
68d87786 14364 (calc-b-oper-keys): Add `calc-symclip' to list.
887484c1
JB
14365
14366 * calc/calc-ext.el (math-read-number-fancy): Read complement
14367 signed numbers.
68d87786
SM
14368 (calc-init-extensions): Add binding for `calc-symclip'.
14369 Add autoload for `calcFunc-symclip' and `calc-symclip'.
887484c1
JB
14370
14371 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
14372 `calc-symclip'.
68d87786 14373 (calc-modes-menu): Add item for twos complement mode.
887484c1 14374
5237d741 14375 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
887484c1 14376
4cf1d7e3
CY
143772009-11-15 Chong Yidong <cyd@stupidchicken.com>
14378
14379 * register.el (jump-to-register, insert-register): Handle Semantic
14380 tags. From commented-out advice in semantic/senator.el.
14381
f8e65267
DN
143822009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
14383
6616006b
DN
14384 * vc.el (vc-log-show-limit): New variable.
14385 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
14386 when using a prefix argument.
14387 (vc-print-log-internal): Add new argument LIMIT.
14388
14389 * vc-svn.el (vc-svn-print-log):
14390 * vc-mtn.el (vc-mtn-print-log):
14391 * vc-hg.el (vc-hg-print-log):
14392 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
1e7d4475 14393 pass it to the log command when set. Make the BUFFER argument
6616006b
DN
14394 non-optional.
14395
14396 * vc-sccs.el (vc-sccs-print-log):
14397 * vc-rcs.el (vc-rcs-print-log):
14398 * vc-git.el (vc-git-print-log):
14399 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
14400 ignore it. Make the BUFFER argument non-optional
14401
f8e65267
DN
14402 * bindings.el (mode-line-buffer-identification): Do not purecopy.
14403
0566c4bc
CY
144042009-11-15 Chong Yidong <cyd@stupidchicken.com>
14405
7cce3c91
CY
14406 * dired.el (dired-mode-map): Move encryption items to "Operate"
14407 menu (Bug#4703).
14408
d7063de9
CY
14409 * strokes.el (strokes-update-window-configuration): Make strokes
14410 buffer current before erasing (Bug#4906).
14411
0fc10137
JL
144122009-11-15 Juri Linkov <juri@jurta.org>
14413
14414 * simple.el (set-mark-default-inactive): Add :type, :group
14415 and :version. (Bug#4876)
14416
f5fce4ec
MA
144172009-11-15 Michael Albinus <michael.albinus@gmx.de>
14418
14419 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
14420 (archive-unique-fname): ... here. (Bug#4929)
14421
8d720a00
SM
144222009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
14423
589888fe
SM
14424 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
14425 with a real fix.
14426
8d720a00
SM
14427 * novice.el (disabled-command-function): Add useful args.
14428 Setup the help buffer so that [back] works.
14429 Remove redundant call to help-mode.
14430 (disabled-command-function): Use `case'.
14431 (en/disable-command): New function extracted from enable-command.
14432 (enable-command, disable-command): Use it.
14433
a61344d6
GM
144342009-11-14 Glenn Morris <rgm@gnu.org>
14435
497f0cdd
GM
14436 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
14437 constants. (Bug#4913)
14438
a61344d6
GM
14439 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
14440
d501801e
GM
144412009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
14442
14443 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
14444 defined in C that have no doc-strings. (Bug#1063)
14445
5af27ac2
GM
144462009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
14447
14448 * cus-edit.el (data, files):
14449 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
14450
aec5395b
CY
144512009-11-14 Chong Yidong <cyd@stupidchicken.com>
14452
e7791447
CY
14453 * simple.el (shell-command): Doc fix (Bug#4891).
14454
aec5395b
CY
14455 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
14456
7a41cd7f
GM
144572009-11-14 Glenn Morris <rgm@gnu.org>
14458
c3583c94
GM
14459 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
14460 statements for vc-diff, emerge-quit, and rmail-cease-edit.
14461 If they are already loaded, eval-after-load will do the right thing.
14462
73900d1f
GM
14463 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
14464 compiling.
14465
0028351d
GM
14466 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
14467
f6714ede
GM
14468 * simple.el (x-selection-owner-p): Declare.
14469 (read-mail-command): Use custom radio type rather than choice.
14470 (completion-no-auto-exit): Doc fix.
14471
7a41cd7f 14472 * custom.el (defgroup):
5af27ac2 14473 * epg-config.el (epg): Doc fixes.
7a41cd7f 14474
2d0659ec
DN
144752009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
14476
14477 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
14478 * international/ccl.el (define-ccl-program): Do not purecopy the
14479 docstring, defconst does it anyway.
14480
7fdbcd83
SM
144812009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
14482
d499c5b9
SM
14483 * add-log.el (add-change-log-entry): Avoid displaying the changelog
14484 a second time.
14485
7fdbcd83
SM
14486 * x-dnd.el (x-dnd-maybe-call-test-function):
14487 * window.el (split-window-vertically):
14488 * whitespace.el (whitespace-help-on):
14489 * vc-rcs.el (vc-rcs-consult-headers):
14490 * userlock.el (ask-user-about-lock-help)
14491 (ask-user-about-supersession-help):
14492 * type-break.el (type-break-force-mode-line-update):
14493 * time-stamp.el (time-stamp-conv-warn):
14494 * terminal.el (te-set-output-log, te-more-break, te-filter)
5ce6e4f4 14495 (te-sentinel, terminal-emulator):
7fdbcd83
SM
14496 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
14497 (term-write-input-ring, term-check-source, term-start-output-log):
14498 (term-display-buffer-line, term-dynamic-list-completions):
14499 (term-ansi-make-term, serial-term):
14500 * subr.el (selective-display):
14501 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
14502 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
14503 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
14504 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
14505 (speedbar-remove-localized-speedbar-support)
14506 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
14507 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
14508 (speedbar-buffers-line-directory):
14509 * simple.el (shell-command-on-region, append-to-buffer)
14510 (prepend-to-buffer):
14511 * shadowfile.el (shadow-save-todo-file):
14512 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
14513 (scroll-bar-maybe-set-window-start):
14514 * sb-image.el (speedbar-image-dump):
14515 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
14516 (load-save-place-alist-from-file):
14517 * ps-samp.el (ps-print-message-from-summary):
14518 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
14519 (ps-background-image, ps-begin-job, ps-do-despool):
14520 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
14521 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
14522 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
14523 (pr-call-process, pr-file-list, pr-interface-save):
14524 * novice.el (disabled-command-function)
14525 (enable-command, disable-command):
14526 * mouse.el (mouse-buffer-menu-alist):
14527 * mouse-copy.el (mouse-kill-preserving-secondary):
14528 * macros.el (kbd-macro-query):
14529 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
14530 * informat.el (batch-info-validate):
14531 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
14532 * hippie-exp.el (try-expand-dabbrev-visible):
14533 * help-mode.el (help-make-xrefs):
14534 * help-fns.el (describe-variable):
14535 * generic-x.el (bat-generic-mode-run-as-comint):
14536 * finder.el (finder-mouse-select):
14537 * find-dired.el (find-dired-sentinel):
14538 * filesets.el (filesets-file-close):
14539 * files.el (list-directory):
14540 * faces.el (list-faces-display, describe-face):
14541 * facemenu.el (list-colors-display):
14542 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
14543 * epg.el (epg--process-filter, epg-cancel):
14544 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
14545 (epa--read-signature-type):
14546 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
14547 (emerge-file-names):
14548 * ehelp.el (electric-helpify):
14549 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
14550 * ediff-vers.el (rcs-ediff-view-revision):
14551 * ediff-util.el (ediff-setup):
14552 * ediff-mult.el (ediff-append-custom-diff):
14553 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
14554 (ediff-wordify):
14555 * echistory.el (Electric-command-history-redo-expression):
14556 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
14557 * disp-table.el (describe-display-table):
14558 * dired.el (dired-find-buffer-nocreate):
14559 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
14560 * dabbrev.el (dabbrev--same-major-mode-p):
14561 * chistory.el (list-command-history):
14562 * apropos.el (apropos-documentation):
14563 * allout.el (allout-obtain-passphrase):
14564 (allout-copy-exposed-to-buffer):
14565 (allout-verify-passphrase): Use with-current-buffer.
14566
2ccbc060
GM
145672009-11-13 Glenn Morris <rgm@gnu.org>
14568
14569 * Makefile.in (ELCFILES): Regenerate.
14570
b172ed20
MA
145712009-11-13 Michael Albinus <michael.albinus@gmx.de>
14572
7fdbcd83
SM
14573 * net/dbus.el (dbus-registered-objects-table): Rename from
14574 `dbus-registered-functions-table', because it contains also properties.
b172ed20
MA
14575 (dbus-unregister-object): Unregister also properties.
14576 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
14577 Use a timeout of 500 msec, in order to not block.
14578 (dbus-register-property, dbus-property-handler): New defuns.
14579
e96d62cd
SM
145802009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
14581
14582 * simple.el (minibuffer-default-add-completions): Drop deprecated
14583 4th arg.
14584
14bd267d
EZ
145852009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
14586
e96d62cd
SM
14587 * textmodes/artist.el (artist-mouse-choose-operation):
14588 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
5237d741 14589 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
14bd267d
EZ
14590 (artist-compute-up-event-key): New function.
14591 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
14592
bf89fd7b
KH
145932009-11-13 Kenichi Handa <handa@m17n.org>
14594
14595 * language/japan-util.el: Make sure that the value of jisx0208
14596 property is jisx0208 character.
14597
f70b8925
DN
145982009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
14599
14600 * international/mule.el (auto-coding-regexp-alist): Only purecopy
14601 car or each item, not the whole list.
14602
4d93a9e0
SM
146032009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
14604
14605 * minibuffer.el (minibuffer-completion-help):
14606 Use minibuffer-hide-completions.
14607
05404988
SM
146082009-11-12 Per Starbäck <per@starback.se> (tiny change)
14609
14610 * dired.el (dired-save-positions, dired-restore-positions): New funs.
14611 (dired-revert): Use them (bug#4880).
14612
5297bc10
DN
146132009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
14614
14615 * tooltip.el (tooltip-frame-parameters): Undo previous change.
14616
e2685eb7
JL
146172009-11-12 Juri Linkov <juri@jurta.org>
14618
14619 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
14620 New functions.
14621 (find-file-literally-at-point): Alias of `ffap-literally'.
14622
76410c3e
DN
146232009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
14624
6d341a2a
DN
14625 * textmodes/ispell.el (ispell-skip-region-alist):
14626 * textmodes/css-mode.el (auto-mode-alist):
14627 * progmodes/compile.el (auto-mode-alist):
14628 * international/mule.el (ctext-non-standard-encodings-alist)
14629 (ctext-non-standard-encodings-regexp):
14630 * simple.el (shell-command-switch, text-read-only):
14631 * replace.el (occur-mode-map):
14632 * paths.el (rmail-file-name):
14633 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
14634 * find-file.el (ff-special-constructs):
14635 * files.el (file-name-handler-alist):
14636 * composite.el: Purecopy strings.
14637
76410c3e
DN
14638 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
14639
aaa448c9
DN
146402009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
14641
14642 * widget.el (define-widget): Purecopy the docstring.
14643 * international/mule-cmds.el (charset): Do not purecopy the
14644 docstring here, define-widget does it.
14645
14646 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
14647 * textmodes/bibtex-style.el (auto-mode-alist):
14648 * progmodes/inf-lisp.el (inferior-lisp-prompt):
14649 * progmodes/compile.el (compile-command):
14650 * language/korea-util.el (default-korean-keyboard):
14651 * international/mule-conf.el (file-coding-system-alist):
14652 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
14653 * tooltip.el (tooltip-frame-parameters):
14654 * newcomment.el (comment-end, comment-padding):
14655 * dired.el (dired-trivial-filenames):
14656 * comint.el (comint-file-name-prefix): Purecopy initial values.
14657
bbe650fd
MA
146582009-11-11 Michael Albinus <michael.albinus@gmx.de>
14659
14660 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
14661 (tramp-advice-minibuffer-electric-tilde): Unload advices via
14662 `tramp-unload'.
14663 (tramp-advice-make-auto-save-file-name)
14664 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
14665 after removing the advice.
14666
6bdad9ae
DN
146672009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
14668
2f7f4bee
DN
14669 * progmodes/grep.el (grep-regexp-alist):
14670 * international/mule-cmds.el (iso-2022-control-alist):
14671 * emacs-lisp/timer.el (timer-duration-words):
14672 * subr.el (version-separator, version-regexp-alist):
14673 * minibuffer.el (completion-styles-alist):
14674 * faces.el (face-attribute-name-alist, list-faces-sample-text):
14675 Change defvars to defconsts.
14676
a042de45
DN
14677 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
14678 * loadup.el ("international/mule-conf"): Load the byte compiled version.
14679 * international/mule-conf.el: Allow to be byte compiled.
14680
3b6acc72
DN
14681 * international/mule.el (define-charset): Purecopy props.
14682 (load-with-code-conversion): Purecopy doc string and file name.
14683 (put-charset-property): Purecopy strings.
14684 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
14685
1c2efdfb 14686 * international/mule-cmds.el (register-input-method): Purecopy arguments.
ebfa10d3
DN
14687 (define-char-code-property): Correctly purecopy the table.
14688
62591911
DN
14689 * international/ccl.el (define-ccl-program): Purecopy the docstring.
14690
8b908da6
DN
14691 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
14692
ff917d63
DN
14693 * subr.el (add-hook): Purecopy strings.
14694 (eval-after-load): Purecopy load-history-regexp and the form.
14695
af89cf77
DN
14696 * custom.el (custom-declare-group): Purecopy load-file-name.
14697
a3c20c83 14698 * subr.el (menu-bar-separator): New defconst.
04991a1c
DN
14699 * net/eudc.el (eudc-tools-menu):
14700 * international/mule-cmds.el (set-coding-system-map)
14701 (mule-menu-keymap):
14702 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
14703 * vc-hooks.el (vc-menu-map):
a3c20c83
DN
14704 * replace.el (occur-mode-map):
14705 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
1c2efdfb 14706 (menu-bar-edit-menu, menu-bar-goto-menu)
a3c20c83
DN
14707 (menu-bar-custom-menu, menu-bar-showhide-menu)
14708 (menu-bar-options-menu, menu-bar-tools-menu)
14709 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
14710 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
14711 (menu-bar-help-menu):
14712 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
14713 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
14714
6bdad9ae
DN
14715 * term/x-win.el (x-gtk-stock-map):
14716 * progmodes/vera-mode.el (auto-mode-alist):
14717 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
14718 (inferior-lisp-program, inferior-lisp-load-command):
14719 * progmodes/hideshow.el (hs-special-modes-alist):
14720 * progmodes/gud.el (same-window-regexps):
14721 * progmodes/grep.el (grep-program, find-program, xargs-program):
14722 * net/telnet.el (same-window-regexps):
14723 * net/rlogin.el (same-window-regexps):
14724 * language/ethiopic.el (font-ccl-encoder-alist):
14725 * vc-sccs.el (vc-sccs-master-templates):
14726 * vc-rcs.el (vc-rcs-master-templates):
14727 * subr.el (cl-assertion-failed):
14728 * simple.el (next-error-overlay-arrow-position):
14729 * lpr.el (lpr-command):
14730 * locate.el (locate-ls-subdir-switches):
14731 * info.el (same-window-regexps, info)
14732 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
14733 * image-mode.el (image-mode, auto-mode-alist):
14734 * hippie-exp.el (hippie-expand-ignore-buffers):
14735 * format.el (format-alist):
14736 * find-dired.el (find-ls-subdir-switches, find-grep-options)
14737 (find-name-arg):
14738 * facemenu.el (facemenu-keybindings):
14739 * dired.el (dired-listing-switches, dired-chown-program):
14740 * diff.el (diff-switches, diff-command):
14741 * cus-edit.el (same-window-regexps):
14742 * bindings.el (mode-line-mule-info)
14743 (mode-line-buffer-identification): Purecopy strings.
14744
e0987650
JL
147452009-11-11 Juri Linkov <juri@jurta.org>
14746
3570691b 14747 * simple.el (dired-get-filename) <declare-function>:
e0987650
JL
14748 Tell the byte-compiler about dired-get-filename.
14749 (shell-command): In Dired mode, get filename from the current line
14750 as the default value.
14751
b16ff465
GM
147522009-11-10 Glenn Morris <rgm@gnu.org>
14753
e8a11b22
GM
14754 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
14755 * calendar/holidays.el, progmodes/cperl-mode.el:
14756 Update x-popup-menu declarations.
14757
b16ff465
GM
14758 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
14759 (list-load-path-shadows): Use dolist.
14760 (list-load-path-shadows): Use with-current-buffer.
14761
032c3399
JL
147622009-11-10 Juri Linkov <juri@jurta.org>
14763
14764 * minibuffer.el (read-file-name): Support a list of default values
14765 in `default-filename'. Use the first file name where only one
14766 element is required. Doc fix.
14767
8fb1629f
MA
147682009-11-09 Michael Albinus <michael.albinus@gmx.de>
14769
14770 * net/dbus.el (dbus-unregister-object): Release service, if no
14771 other method is registered for it.
14772
a51203ee 147732009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
fd4489f0
CY
14774
14775 * bookmark.el (bookmark-completing-read): Sort bookmark names if
14776 bookmark-sort-flag is non-nil (Bug#4653).
14777
9bf7dc8a
CY
147782009-11-08 Chong Yidong <cyd@stupidchicken.com>
14779
15207e74
CY
14780 * emulation/cua-base.el: Add CUA property to some CC mode commands
14781 (Bug#4100).
14782
8bf7ed70
KR
147832009-11-08 Kevin Ryde <user42@zip.com.au>
14784
14785 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
9bf7dc8a 14786 at end of sentence (Bug#4818).
8bf7ed70 14787
951802d0
CY
147882009-11-08 Jared Finder <jfinder@crypticstudios.com>
14789
14790 * progmodes/compile.el (compilation-error-regexp-alist-alist):
14791 Handle "see declaration of" MSFT statements (Bug#4100).
14792
e8244310
MA
147932009-11-08 Michael Albinus <michael.albinus@gmx.de>
14794
14795 * net/tramp.el (tramp-advice-make-auto-save-file-name)
14796 (tramp-advice-file-expand-wildcards): Unload via
14797 `ad-remove-advice'.
14798
14799 * net/trampver.el: Update release number.
14800
a51203ee 148012009-11-08 Kevin Ryde <user42@zip.com.au>
e8244310
MA
14802
14803 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
14804 `ad-do-it'.
14805
a51203ee 148062009-11-08 Andr <m00naticus@gmail.com> (tiny change)
e8244310
MA
14807
14808 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
14809 in order to keep context in SELinux.
14810
bedd8a58
CY
148112009-11-08 Chong Yidong <cyd@stupidchicken.com>
14812
14813 * dired-aux.el (dired-query): Place cursor in echo area and allow
14814 C-g.
14815
14816 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
14817 menu item if not on a directory (Bug#4701).
14818
0484d600
MA
148192009-11-07 Michael Albinus <michael.albinus@gmx.de>
14820
14821 Sync with Tramp 2.1.17.
14822
14823 * net/tramp.el (tramp-handle-copy-directory): Don't use
14824 `file-remote-p' (due to compatibility).
14825
14826 * net/tramp-compat.el (tramp-compat-copy-directory)
14827 (tramp-compat-delete-directory): New defuns.
14828
14829 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
6a7662bb
BR
14830 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
14831 Use `tramp-compat-delete-directory'.
0484d600
MA
14832
14833 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
6a7662bb
BR
14834 (tramp-smb-handle-delete-directory):
14835 Use `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
0484d600
MA
14836
14837 * net/trampver.el: Update release number.
14838
b42b2189
CY
148392009-11-07 Chong Yidong <cyd@stupidchicken.com>
14840
6960d7b9
CY
14841 * tar-mode.el (tar-copy): Call write-region on the right buffer
14842 (Bug#4857).
14843
b42b2189
CY
14844 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
14845 by hand, if necessary (Bug#4878).
14846
0ad57dfd
CY
148472009-11-06 Chong Yidong <cyd@stupidchicken.com>
14848
d19e23ae
CY
14849 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
14850 align size column (Bug#4839).
14851
0ad57dfd
CY
14852 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
14853 statement.
14854
0b7f397c
DN
148552009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
14856
14857 * progmodes/ld-script.el (auto-mode-alist):
14858 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
14859
14860 * cus-face.el (custom-declare-face): Purecopy face spec.
14861
495bd5ca
KH
148622009-11-06 Kenichi Handa <handa@m17n.org>
14863
14864 * international/uni-bidi.el: Re-generated.
14865 * international/uni-category.el: Re-generated.
14866 * international/uni-combining.el: Re-generated.
14867 * international/uni-mirrored.el: Re-generated.
14868
1e8780b1
DN
148692009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
14870
14871 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
14872 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
14873 (tex-start-options, slitex-run-command, latex-run-command)
14874 (tex-run-command, tex-directory):
14875 * textmodes/ispell.el (ispell-html-skip-alists)
14876 (ispell-tex-skip-alists, ispell-tex-skip-alists):
14877 * textmodes/fill.el (adaptive-fill-first-line-regexp):
14878 (adaptive-fill-regexp):
14879 * textmodes/dns-mode.el (auto-mode-alist):
14880 * progmodes/python.el (interpreter-mode-alist):
14881 * progmodes/etags.el (tags-compression-info-list):
14882 * progmodes/etags.el (tags-file-name):
14883 * net/browse-url.el (browse-url-galeon-program)
14884 (browse-url-firefox-program):
14885 * mail/sendmail.el (mail-signature-file)
14886 (mail-citation-prefix-regexp):
14887 * international/mule-conf.el (eight-bit):
14888 * international/latexenc.el (latex-inputenc-coding-alist):
14889 * international/fontset.el (x-pixel-size-width-font-regexp):
14890 * emacs-lisp/warnings.el (warning-type-format):
14891 * emacs-lisp/trace.el (trace-buffer):
14892 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
14893 (emacs-lisp-mode-map):
14894 * calendar/holidays.el (holiday-solar-holidays)
14895 (holiday-bahai-holidays, holiday-islamic-holidays)
14896 (holiday-christian-holidays, holiday-hebrew-holidays)
14897 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
14898 (hebrew-holidays-1, holiday-oriental-holidays)
14899 (holiday-general-holidays):
14900 * x-dnd.el (x-dnd-known-types):
14901 * tool-bar.el (tool-bar):
14902 * startup.el (site-run-file):
14903 * shell.el (shell-dumb-shell-regexp):
14904 * rfn-eshadow.el (file-name-shadow-tty-properties)
14905 (file-name-shadow-properties):
14906 * paths.el (remote-shell-program, news-directory):
14907 * mouse.el ([C-down-mouse-3]):
14908 * menu-bar.el (menu-bar-tools-menu):
14909 * jka-cmpr-hook.el (jka-compr-load-suffixes)
14910 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
14911 (jka-compr-compression-info-list):
14912 * isearch.el (search-whitespace-regexp):
14913 * image-file.el (image-file-name-extensions):
14914 * find-dired.el (find-ls-option):
14915 * files.el (directory-listing-before-filename-regexp)
14916 (directory-free-space-args, insert-directory-program)
14917 (list-directory-brief-switches, magic-fallback-mode-alist)
14918 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
14919 (automount-dir-prefix):
14920 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
14921 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
14922 (face-font-registry-alternatives, face-font-registry-alternatives)
14923 (face-font-family-alternatives):
14924 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
14925 (facemenu-foreground-menu, facemenu-face-menu):
14926 * epa-hook.el (epa-file-name-regexp):
14927 * dnd.el (dnd-protocol-alist):
14928 * textmodes/rst.el (auto-mode-alist):
a51203ee 14929 * button.el (default-button): Purecopy strings.
1e8780b1 14930
0adae11f
GM
149312009-11-06 Glenn Morris <rgm@gnu.org>
14932
14933 * Makefile.in (ELCFILES): Update.
14934
2adaf057
SM
149352009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
14936
8f72f03c
SM
14937 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
14938 * emacs-lisp/levents.el: Move to obsolete/levents.el.
14939
2adaf057
SM
14940 * nxml/xsd-regexp.el (xsdre-gen-categories):
14941 * nxml/xmltok.el (xmltok-parse-entity):
14942 * nxml/rng-parse.el (rng-parse-validate-file):
14943 * nxml/rng-maint.el (rng-format-manual)
14944 (rng-manual-output-force-new-line):
14945 * nxml/rng-loc.el (rng-save-schema-location-1):
14946 * nxml/rng-cmpct.el (rng-c-parse-file):
14947 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
14948 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
14949
14862301
SM
149502009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
14951
bf0b361c 14952 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
14862301
SM
14953 Remove extra save-excursions and make-variable-buffer-local's.
14954 Suggested by Stefan Monnier.
14955
14956 (verilog-getopt-file, verilog-module-inside-filename-p)
14957 (verilog-set-define): Merge GNU 1.35 and repair changes from
14958 switching to using with-current-buffer.
14959
14960 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
14961 being treated as a number and confusing AUTORESET.
14962 Reported by Dan Dever.
14963
14964 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
14965 Add verilog-auto-ignore-concat to fix backward compatibility with
14966 older verilog-modes. Reported by Dan Katz.
14967
14968 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
14969 containing closing anchors "...$".
14970
14971 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
14972 Reported by Wade Smith.
14973
48c2d18a 14974 (verilog-batch-execute-func): Comment on function usage.
14862301
SM
14975
149762009-11-05 Michael McNamara <mac@mail.brushroad.com>
14977
bf0b361c
JB
14978 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
14979 for labels.
14862301
SM
14980
14981 (verilog-label-re, verilog-calc-1): Support proper indent of named
14982 asserts.
14983
14984 (verilog-backward-token, verilog-basic-complete-re)
14985 (verilog-beg-of-statement, verilog-indent-re): Support proper
14986 indent of the assert statement at the beginning of a block of text.
14987
14988 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
14989 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
14990 tokens as begins.
14991
4f8f657f
GM
149922009-11-05 Glenn Morris <rgm@gnu.org>
14993
775adc51
GM
14994 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
14995 Emacs 19. (Bug#1531)
14996 (byte-compile-fix-header): Update for the above change.
14997 Drop test for epoch::version.
14998
4ad6a5e7 14999 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
60878f2d
GM
15000 * cus-dep.el (custom-make-dependencies):
15001 * finder.el (finder-compile-keywords):
15002 Use autoload-rubric's feature argument.
4ad6a5e7 15003
4f8f657f
GM
15004 * calendar/diary-lib.el (top-level): Make load behave more like require.
15005
881e4184
GM
15006 * vc-git.el (vc-git-stash-map): Move definition before use.
15007
ba214964 150082009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
f6195dfb 15009
b6f8ba09
DN
15010 * custom.el (custom-declare-group): Purecopy standard-value.
15011 (custom-declare-group): Purecopy custom-prefix.
15012
7fdbcd83
SM
15013 * international/mule.el (load-with-code-conversion):
15014 Call do-after-load-evaluation unconditionally.
eb6f577b 15015
f6195dfb
DN
15016 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
15017
56f14120
SM
150182009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
15019
15020 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
15021
e5c89ce9
GM
150222009-11-04 Glenn Morris <rgm@gnu.org>
15023
15024 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
15025 (byte-compile-compatibility): Remove option.
15026 (byte-compile-close-variables, byte-compile-fix-header)
15027 (byte-compile-insert-header, byte-compile-output-docform)
15028 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
15029 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
15030 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
15031 (byte-compile-insert, byte-compile-defun):
15032 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
eef899a9
GM
15033 (byte-defop-compiler19): Remove.
15034 Without byte-compile-compatibility, the 'emacs19-opcode property is not
15035 used by anything. Replace all calls with byte-defop-compiler.
e5c89ce9 15036
e24f42ab
JL
150372009-11-04 Juri Linkov <juri@jurta.org>
15038
15039 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
15040 (menu-bar-options-menu): Don't quote the `prop' arg of
15041 `menu-bar-make-mm-toggle'.
15042
d3d5f4f5
JB
150432009-11-04 Juanma Barranquero <lekktu@gmail.com>
15044
15045 * calendar/calendar.el (cal-loaddefs):
15046 * calendar/diary-lib.el (diary-loaddefs):
15047 * calendar/holidays.el (hol-loaddefs):
15048 * eshell/esh-module.el (esh-groups): Load rather than require.
15049
6e39d3b2
SM
150502009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
15051
e96d62cd
SM
15052 * calendar/todo-mode.el (todo-add-category): Don't hardcode
15053 point-min==1.
7e83e8b4
SM
15054 (todo-top-priorities): Only display-buffer when called interactively.
15055 (todo-item-start): Don't save excursion point.
15056 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
15057 (todo-insert-item-here, todo-file-item, todo-remove-item):
15058 Adjust uses of todo-item-start and todo-item-end.
15059
fae4e5b9
SM
15060 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
15061 (autoload-rubric): Don't use any more.
fae4e5b9 15062
6e39d3b2
SM
15063 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
15064 and only put a prop if it is non-nil.
15065
c9753fb4
JL
150662009-11-03 Juri Linkov <juri@jurta.org>
15067
15068 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
15069 (menu-bar-options-menu): Fix list quoting (Bug#4429).
15070
15071 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
15072 and "Menu" to make top-level menu item visually one unit (like
15073 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
15074 multi-word menu items). Fix :help string for quit-window.
15075
db04f33f
GM
150762009-11-03 Glenn Morris <rgm@gnu.org>
15077
2aea6521
GM
15078 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
15079 (byte-compile-file-form-define-abbrev-table)
15080 (byte-compile-file-form-custom-declare-variable)
15081 (byte-compile-variable-ref, byte-compile-defvar):
15082 Whether or not a warning is enabled should only affect whether we issue
15083 the warning, not whether or not we collect the relevant data.
15084 Eg warnings can be turned on and off throughout the course of a file.
15085
db04f33f
GM
15086 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
15087 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
15088
937e6a56
SM
150892009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
15090
15091 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
15092 * play/mpuz.el (mpuz-create-buffer):
15093 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
15094 (lm-print-y,s,noise, lm-print-w0, lm-init):
15095 * play/gomoku.el (gomoku-prompt-for-move):
15096 * play/fortune.el (fortune-in-buffer):
15097 * play/dissociate.el (dissociated-press):
15098 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
5ce6e4f4 15099 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
937e6a56
SM
15100 * mail/supercite.el (sc-eref-show):
15101 * mail/smtpmail.el (smtpmail-send-it):
15102 * mail/rmailsum.el (rmail-summary-next-labeled-message)
15103 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
15104 (rmail-summary-undelete-many, rmail-summary-rmail-update)
15105 (rmail-summary-goto-msg, rmail-summary-expunge)
15106 (rmail-summary-get-new-mail, rmail-summary-search-backward)
15107 (rmail-summary-add-label, rmail-summary-output-menu)
15108 (rmail-summary-output-body):
15109 * mail/rfc822.el (rfc822-addresses):
15110 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
15111 * mail/mailpost.el (post-mail-send-it):
15112 * mail/hashcash.el (hashcash-generate-payment):
15113 * mail/feedmail.el (feedmail-run-the-queue)
15114 (feedmail-queue-send-edit-prompt-help-first)
15115 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
15116 (feedmail-deduce-address-list):
15117 * eshell/esh-ext.el (eshell-remote-command):
15118 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
15119 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
15120 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
15121 (viper-save-string-in-file, viper-valid-marker):
15122 * emulation/viper-keym.el (viper-toggle-key):
15123 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
15124 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
15125 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
15126 * emulation/viper-cmd.el (viper-exec-form-in-vi)
15127 (viper-exec-form-in-emacs, viper-brac-function):
15128 * emulation/viper.el (viper-delocalize-var):
15129 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
15130 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
15131 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
15132 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
15133 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
15134 * emulation/edt.el (edt-electric-helpify):
15135 * emulation/cua-rect.el (cua--rectangle-aux-replace):
15136 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
15137 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
15138 (cua-indent-to-global-mark-column):
15139 * calendar/diary-lib.el (calendar-mark-1):
15140 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
15141 Use with-current-buffer.
15142 * emulation/viper.el (viper-delocalize-var): Use dolist.
15143
5b955562
CY
151442009-11-03 Chong Yidong <cyd@stupidchicken.com>
15145
15146 * comint.el (comint-replace-by-expanded-history-before-point):
15147 Replace !! with the previous input string literally (Bug#1795).
15148
6292c599
JB
151492009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
15150
15151 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
15152 to be made up of whitespace.
15153
8368c14e
CY
151542009-11-02 Chong Yidong <cyd@stupidchicken.com>
15155
15156 * minibuffer.el (read-file-name): Don't use file dialogs for
15157 remote directories (Bug#99).
15158
6f750f0d
CY
151592009-11-01 Chong Yidong <cyd@stupidchicken.com>
15160
15161 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
15162
97ab3f47
AS
151632009-11-01 Andreas Schwab <schwab@linux-m68k.org>
15164
15165 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
15166 instead of deleting the window or frame.
15167
673c1168
CY
151682009-10-31 Chong Yidong <cyd@stupidchicken.com>
15169
15170 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
15171 Support face colors.
15172
937e6a56
SM
15173 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
15174 New function. Support face colors (Bug#1168).
673c1168
CY
15175 (tex-common-initialization): Use it.
15176
15177 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
15178 mode allows it (Bug#1168).
15179
c9349f0a
CY
151802009-10-31 Juri Linkov <juri@jurta.org>
15181
15182 * facemenu.el (list-colors-display): Don't mark buffer as
15183 modified (Bug#3948).
15184
ebf5c4f5
CY
151852009-10-31 Chong Yidong <cyd@stupidchicken.com>
15186
6a7662bb
BR
15187 * international/mule-diag.el (list-character-sets-1):
15188 Minor message fix (Bug#3526).
5c2dce75 15189
6a7662bb
BR
15190 * progmodes/etags.el (etags-list-tags, etags-tags-apropos):
15191 Fix face property (Bug#4834).
26581f0e
CY
15192 (etags-list-tags, etags-tags-apropos-additional)
15193 (etags-tags-apropos, tags-select-tags-table): Add follow-link
15194 property.
15195
ebf5c4f5
CY
15196 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
15197 items.
15198
9a529312
SM
151992009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
15200
15201 * textmodes/two-column.el (2C-split):
15202 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
15203 * textmodes/tex-mode.el (tex-set-buffer-directory):
15204 * textmodes/spell.el (spell-region, spell-string):
15205 * textmodes/reftex.el (reftex-erase-buffer):
15206 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
15207 * textmodes/reftex-toc.el (reftex-toc-promote-action):
15208 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
15209 (reftex-select-item):
15210 * textmodes/reftex-ref.el (reftex-label-info-update)
15211 (reftex-offer-label-menu):
15212 * textmodes/reftex-index.el (reftex-index-change-entry)
15213 (reftex-index-phrases-info):
15214 * textmodes/reftex-global.el (reftex-create-tags-file)
15215 (reftex-save-all-document-buffers, reftex-ensure-write-access):
15216 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
15217 (reftex-view-crossref-from-bibtex):
15218 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
15219 (reftex-extract-bib-entries-from-thebibliography)
15220 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
15221 * textmodes/refbib.el (r2b-capitalize-title):
15222 (r2b-convert-buffer, r2b-help):
15223 * textmodes/page-ext.el (pages-directory)
15224 (pages-directory-goto-with-mouse):
15225 * textmodes/bibtex.el (bibtex-validate-globally):
15226 * textmodes/bib-mode.el (bib-capitalize-title):
15227 * textmodes/artist.el (artist-clear-buffer, artist-system):
15228 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
15229 (local-set-scheme-interaction-buffer, xscheme-process-filter)
15230 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
15231 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
15232 (xscheme-send-control-g-interrupt, xscheme-start-process)
15233 (xscheme-process-sentinel, xscheme-cd):
15234 * progmodes/verilog-mode.el (verilog-read-always-signals)
15235 (verilog-set-define, verilog-getopt-file)
15236 (verilog-module-inside-filename-p):
15237 * progmodes/sh-script.el:
15238 * progmodes/python.el (python-pdbtrack-get-source-buffer)
15239 (python-pdbtrack-grub-for-buffer, python-execute-file):
15240 * progmodes/octave-inf.el (inferior-octave):
15241 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
15242 (idlwave-shell-compile-helper-routines, idlwave-set-local)
15243 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
15244 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
15245 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
15246 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
15247 (idlwave-shell-filter, idlwave-shell-examine-highlight)
15248 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
15249 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
15250 (idlwave-shell-examine-display, idlwave-shell-run-region)
15251 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
15252 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
15253 * progmodes/idlw-help.el (idlwave-help-get-special-help)
15254 (idlwave-help-get-help-buffer):
15255 * progmodes/gud.el (gud-basic-call, gud-find-class)
15256 (gud-tooltip-activate-mouse-motions-if-enabled):
15257 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
15258 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
15259 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
15260 (ebrowse-tags-next-file):
15261 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
15262 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
15263 (ebnf-eps-finish-and-write):
15264 * progmodes/cpp.el (cpp-edit-save):
15265 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
15266 * progmodes/cc-defs.el (c-emacs-features):
15267 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
15268 (antlr-directory-dependencies):
15269 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
15270 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
15271 (ada-find-any-references, ada-make-filename-from-adaname)
15272 (ada-make-body-gnatstub):
15273 * obsolete/rnews.el (news-list-news-groups):
5ce6e4f4 15274 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
9a529312
SM
15275 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
15276 * net/rcirc.el (rcirc-debug):
15277 * net/newst-treeview.el (newsticker--treeview-list-add-item)
15278 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
15279 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
15280 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
5ce6e4f4 15281 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
9a529312
SM
15282 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
15283 (newsticker--treeview-list-clear-highlight)
15284 (newsticker--treeview-list-update-highlight)
15285 (newsticker--treeview-list-highlight-start)
15286 (newsticker--treeview-tree-update-highlight)
15287 (newsticker--treeview-get-selected-item)
15288 (newsticker-treeview-mark-list-items-old)
15289 (newsticker--treeview-set-current-node):
15290 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
15291 * net/newst-backend.el (newsticker--get-news-by-funcall)
15292 (newsticker--get-news-by-wget, newsticker--image-get)
15293 (newsticker--image-sentinel):
15294 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
15295 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
15296 (eudc-ph-close-session):
15297 * net/eudc.el (eudc-save-options):
15298 * language/thai-word.el (thai-update-word-table):
15299 * language/japan-util.el (japanese-string-conversion):
15300 * international/titdic-cnv.el (tsang-quick-converter)
15301 (ziranma-converter, ctlau-converter):
15302 * international/mule-cmds.el (describe-language-environment):
15303 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
15304 (skkdic-convert-postfix, skkdic-convert-prefix):
15305 (skkdic-convert-okuri-nasi, skkdic-convert):
15306 * emacs-lisp/re-builder.el (reb-update-overlays):
15307 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
15308 * emacs-lisp/gulp.el (gulp-send-requests):
15309 * emacs-lisp/find-gc.el (trace-call-tree):
15310 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
15311 (eieio-describe-generic):
15312 * emacs-lisp/eieio-base.el (eieio-persistent-read):
15313 * emacs-lisp/edebug.el (edebug-outside-excursion):
15314 * emacs-lisp/debug.el (debugger-make-xrefs):
15315 * emacs-lisp/cust-print.el (custom-prin1-to-string):
15316 * emacs-lisp/chart.el (chart-new-buffer):
15317 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
15318 Use with-current-buffer.
15319 * textmodes/artist.el (artist-system): Don't call
15320 copy-sequence on a fresh string.
15321 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
15322
d566f228
GM
153232009-10-31 Stephen Berman <stephen.berman@gmx.net>
15324
15325 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
1c2efdfb 15326 is no item to edit. (Bug#4820)
d566f228 15327 (todo-top-priorities): Restore point and restore narrowing in Todo
1c2efdfb 15328 buffer. (Bug#4820)
d566f228 15329
f3628edd
GM
153302009-10-31 Glenn Morris <rgm@gnu.org>
15331
5cf3709c
GM
15332 * net/ange-ftp.el (top-level): Don't require dired when compiling.
15333 (comint-last-output-start, comint-last-input-start)
15334 (comint-last-input-end): Don't defvar when compiling.
15335 (ange-ftp-process-file): Use bound-and-true-p.
15336
4c814fd2
GM
15337 * pcmpl-rpm.el (top-level): Move provide statement to end.
15338 (pcmpl-rpm): Remove unused custom group.
15339
113b8dcc
GM
15340 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
15341
31c615e4
GM
15342 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
15343
416d3588
GM
15344 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
15345 (byte-compile-warnings): Add `constants' as an option.
15346 (byte-compile-callargs-warn, byte-compile-arglist-warn)
15347 (display-call-tree): Update for byte-compile-fdefinition possibly
15348 returning `(macro lambda ...)'. (Bug#4778)
15349 (byte-compile-variable-ref, byte-compile-setq-default):
15350 Respect `constants' member of byte-compile-warnings.
15351
00f71f39
SM
153522009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
15353
15354 * vc-bzr.el (vc-bzr-revision-keywords): New var.
15355 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
15356 to "submit:".
15357
ca0a881a
DN
153582009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
15359
15360 * textmodes/ispell.el (ispell-skip-region-alist):
15361 * international/mule-conf.el (eight-bit):
15362 * international/fontset.el (font-encoding-alist):
15363 * startup.el (pure-space-overflow-message):
15364 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
15365 * paths.el (gnus-nntp-service, rmail-spool-directory)
15366 (term-file-prefix):
15367 * files.el (save-some-buffers-action-alist):
15368 * cmuscheme.el (same-window-buffer-names):
15369 * ielm.el (same-window-buffer-names):
15370 * shell.el (same-window-buffer-names):
15371 * mail/sendmail.el (same-window-buffer-names):
15372 * progmodes/inf-lisp.el (same-window-buffer-names):
15373 * bindings.el (mode-line-client)
15374 (mode-line-column-line-number-mode-map):
15375 * language/tibetan.el (tibetan-precomposition-rule-regexp)
15376 (tibetan-precomposed-regexp): Purecopy string arguments.
15377
b861e45e
SM
153782009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
15379
6df9b6d7
SM
15380 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
15381 (calcDigit-nondigit):
15382 * calc/calc-yank.el (calc-copy-to-buffer):
15383 * calc/calc-units.el (calc-invalidate-units-table):
15384 * calc/calc-trail.el (calc-trail-yank):
15385 * calc/calc-store.el (calc-insert-variables):
15386 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
15387 * calc/calc-prog.el (calc-read-parse-table):
15388 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
15389 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
15390 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
15391 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
15392 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
15393 (calc-graph-name, calc-graph-find-command, calc-graph-view)
15394 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
15395 * calc/calc-ext.el (calc-realign):
15396 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
15397 (calc-embedded-finish-edit, calc-embedded-make-info)
15398 (calc-embedded-finish-command, calc-embedded-stack-change):
15399 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
15400
70f44c65
SM
15401 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
15402 shell-dynamic-complete-filename in preference to
15403 comint-dynamic-complete-filename.
15404
b861e45e
SM
15405 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
15406 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
15407 Don't consider whether the display supports colors.
15408 (bookmark-import-new-list): Use dolist.
15409 (bookmark-bmenu-mode-map): Move initialization into declaration.
15410 (bookmark-bmenu-list): Use dolist, simplify.
15411 (bookmark-show-all-annotations): Use save-selected-window and dolist.
15412 (menu-bar-final-items): Use push.
15413
8549241d 154142009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
cc63d28f
SM
15415
15416 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
15417 it works on remote files.
15418 (vc-hg-diff): Don't pass any `--cwd' argument.
15419
30644573
KR
154202009-10-27 Kevin Ryde <user42@zip.com.au>
15421
cc63d28f
SM
15422 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
15423 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
30644573
KR
15424 (Further to Bug#3921).
15425
9be01a63
MA
154262009-10-27 Michael Albinus <michael.albinus@gmx.de>
15427
15428 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
15429 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
15430 calling `tramp-imap-put-file'. Add file size to the call.
15431 (tramp-imap-get-file-entries): Compute also user name, file size,
15432 and date.
15433 (tramp-imap-handle-insert-directory): Insert uid and gid.
15434 (tramp-imap-handle-file-attributes): Transform uid and gid
15435 according to `id-format'.
15436 (tramp-imap-put-file): New optional parameter SIZE. Encode file
15437 size in header X-Size.
15438
41849bf9
JB
154392009-10-26 Juanma Barranquero <lekktu@gmail.com>
15440
15441 * simple.el (transpose-subr): Give clearer error when the mark
15442 is not set. (Bug#4807)
15443
293c24f9
MA
154442009-10-26 Michael Albinus <michael.albinus@gmx.de>
15445
cc63d28f
SM
15446 * net/tramp.el (tramp-perl-file-truename): New defconst.
15447 Perl code contributed by yary <not.com@gmail.com> (tiny change).
293c24f9 15448 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
cc63d28f
SM
15449 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
15450 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
293c24f9 15451
cc63d28f
SM
15452 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
15453 Ignore `dired-call-process'.
293c24f9
MA
15454 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
15455
154562009-10-26 Julian Scheid <julians37@gmail.com>
15457
cc63d28f 15458 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
293c24f9
MA
15459 (tramp-get-remote-readlink): New defun.
15460 (tramp-handle-file-truename): Use it.
15461 (tramp-handle-file-exists-p): Check file-attributes cache, assume
15462 file exists if cache value present.
48c2d18a 15463 (tramp-check-cached-permissions): New defun.
293c24f9
MA
15464 (tramp-handle-file-readable-p): Use it.
15465 (tramp-handle-file-writable-p): Likewise.
15466 (tramp-handle-file-executable-p): Likewise.
15467 (tramp-handle-file-name-all-completions): Try using Perl to get
15468 partial completions. When perl not available, combine `cd' and
15469 `ls' into single remote operation and use shell expansion to get
15470 partial remote directory contents. Set `file-exists-p' cache for
15471 directory and any files returned by ls. Change cache handling to
15472 support partial directory contents. Use error message emitted by
15473 remote `cd' or Perl code for local tramp-error.
15474 (tramp-do-copy-or-rename-file-directly): Avoid separate
15475 tramp-send-command-and-check call.
cc63d28f
SM
15476 (tramp-handle-process-file): Merge three remote ops into one.
15477 Do not flush all caches when `process-file-side-effects' is set.
293c24f9
MA
15478 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
15479 file-attributes shows uid/gid to be set already.
15480
a7610c52
DN
154812009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
15482
15483 * textmodes/tex-mode.el (tex-dvi-view-command)
15484 (tex-show-queue-command, tex-open-quote):
15485 * progmodes/ruby-mode.el (auto-mode-alist)
15486 (interpreter-mode-alist): Purecopy strings.
15487
15488 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
15489
15490 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
15491 string for the hook, keymap and abbrev table.
15492
15493 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
15494
15495 * x-dnd.el (x-dnd-xdnd-to-action):
15496 * startup.el (fancy-startup-text, fancy-about-text): Change to
15497 defconst from defvar.
15498
15499 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
15500
15501 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
15502 Purecopy initialization strings.
15503
15504 * mail/sendmail.el (mail-header-separator)
15505 (mail-personal-alias-file):
15506 * mail/rmail.el (rmail-default-dont-reply-to-names)
15507 (rmail-ignored-headers, rmail-retry-ignored-headers)
15508 (rmail-highlighted-headers, rmail-secondary-file-directory)
15509 (rmail-secondary-file-regexp):
15510 * files.el (null-device, file-name-invalid-regexp)
15511 (locate-dominating-stop-dir-regexp)
cc63d28f 15512 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
a7610c52
DN
15513 (interpreter-mode-alist): Use mapcar instead of mapc.
15514
15515 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
15516
15517 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
15518 (completion-ignored-extensions):
15519 (debug-ignored-errors): Purecopy strings.
15520
4fcc3d32
SM
155212009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
15522
0667de21
SM
15523 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
15524 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
15525 (pcomplete--here): Use push.
15526
4fcc3d32
SM
15527 * subr.el (all-completions): Declare the 4th arg obsolete.
15528
955ef430
SM
155292009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
15530
2d085307
SM
15531 * pcomplete.el (pcomplete-unquote-argument-function): New var.
15532 (pcomplete-unquote-argument): New function.
15533 (pcomplete--common-suffix): Always pay attention to case.
15534 (pcomplete--table-subvert): Quote and unquote the text.
15535 (pcomplete--common-quoted-suffix): New function.
15536 (pcomplete-std-complete): Use it and pcomplete-begin.
15537
955ef430
SM
15538 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
15539 we're inside a dedicated or minibuffer window.
15540
7c85c02b
KF
155412009-10-24 Karl Fogel <kfogel@red-bean.com>
15542
15543 * bookmark.el: Update documentation, especially documentation
15544 of `bookmark-alist' and of the bookmark file format.
15545 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
15546
3e8ae8a6
CY
155472009-10-24 Chong Yidong <cyd@stupidchicken.com>
15548
3e425845
CY
15549 * mail/emacsbug.el (report-emacs-bug): Clarify that the
15550 keybindings apply to the mail buffer (Bug#4003). Shrink help
15551 window to buffer.
15552
cdd47d48
CY
15553 * whitespace.el (whitespace-mode, whitespace-newline-mode)
15554 (global-whitespace-mode, global-whitespace-newline-mode)
955ef430
SM
15555 (whitespace-toggle-options, global-whitespace-toggle-options):
15556 Doc fix (Bug#3660).
cdd47d48 15557
ba07c9ad
CY
15558 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
15559 of xmltok-start before the end tag was inserted (Bug#2840).
15560
3e8ae8a6
CY
15561 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
15562 patterns that are preceded by an open-paren (Bug#1320).
15563
ab276820
CY
155642009-10-24 Sven Joachim <svenjoac@gmx.de>
15565
15566 * files.el (delete-directory): Delete symlinks to directories with
15567 delete-file (Bug#4739).
15568
905a9ed3
DN
155692009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
15570
a9a2a6db
DN
15571 * vc.el (vc-backend-for-registration): Rename from
15572 vc-get-backend-for-registration. Update callers.
15573
cc63d28f
SM
15574 * international/mule-cmds.el (set-language-info-alist):
15575 Purecopy lang-env.
905a9ed3
DN
15576 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
15577 (charset): Purecopy the name.
15578 (define-char-code-property): Purecopy string arguments.
15579
15580 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
15581 Purecopy string arguments.
15582
15583 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
15584 * ediff-hook.el (menu-bar-ediff-menu):
15585 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
15586 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
15587
d270305a
GM
155882009-10-24 Glenn Morris <rgm@gnu.org>
15589
6c74d523 15590 * comint.el (comint-dynamic-list-completions):
656fc5f5
GM
15591 * term.el (term-dynamic-list-completions): Use choose-completion rather
15592 than obsolete alias mouse-choose-completion.
15593
ae732337
GM
15594 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
15595 file-cache-choose-completion.
15596 (file-cache-choose-completion): Handle an optional event argument.
15597 (file-cache-mouse-choose-completion): Make it an obsolete alias.
15598
cc63d28f
SM
15599 * progmodes/octave-mod.el (octave-complete-symbol):
15600 Use choose-completion if mouse-choose-completion is ever removed.
ae480838 15601
9847dc91
GM
15602 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
15603 use.
15604
e8f2a5d5
GM
15605 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
15606 compiler.
15607
d270305a
GM
15608 * vc-hooks.el (vc-responsible-backend): Fix declaration.
15609
c6432f1e
SM
156102009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
15611
15612 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
15613 Ignore `pred' now that we receive one.
15614 Handle test-completion specially.
15615
6ab196f9
DN
156162009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
15617
15618 * vc.el (vc-responsible-backend): Throw an error if not backend is
1c2efdfb 15619 found. Remove the REGISTER argument. Move the code dealing with
6ab196f9
DN
15620 REGISTER ...
15621 (vc-get-backend-for-registration): ... here. New function.
15622 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
15623 of vc-responsible-backend, pass the file name instead of the
15624 directory name.
15625
48feed59
SM
156262009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
15627
15628 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
15629 New funs.
15630 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
15631 (pcomplete-comint-setup): Don't modify a global var via
15632 accidental side-effects.
15633 (pcomplete-shell-setup): Adjust call accordingly.
15634 (pcomplete-parse-comint-arguments): Use push.
15635
00006066
CY
156362009-10-23 Chong Yidong <cyd@stupidchicken.com>
15637
36bfa3af
CY
15638 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
15639 Allow uncapitalized info node names (Bug#3921).
15640
00006066
CY
15641 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
15642 to the DEBUG file (Bug#3781).
15643
aa311d6e
CY
156442009-10-23 Jari Aalto <jari.aalto@cante.net>
15645
15646 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
15647 dictionary entry (Bug#4579).
15648
b88f2d0a
MA
156492009-10-23 Michael Albinus <michael.albinus@gmx.de>
15650
15651 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
15652 from `rfn-eshadow-update-overlay-hook' when unloading.
15653 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
15654 "rsyncc". Adjust doc string.
48c2d18a 15655 (tramp-temp-buffer-file-name): New buffer-local defvar.
b88f2d0a
MA
15656 (tramp-handle-insert-file-contents, tramp-handle-write-region):
15657 Keep temporary file when indicated by method ("rsync" and
15658 "rsyncc").
15659 (tramp-handle-write-region): Handle APPEND.
15660 (tramp-delete-temp-file-function): New defun. Added to
15661 `kill-buffer-hook'.
15662
1becddbb
JB
156632009-10-23 Juanma Barranquero <lekktu@gmail.com>
15664
15665 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
15666
8f43cbf3
DN
156672009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
15668
15669 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
15670 (color-name-rgb-alist, tty-standard-colors)
15671 (tty-color-mode-alist): Change to defconst.
15672
15673 * simple.el (mark-inactive): Purecopy message.
15674
15675 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
15676 (global-map, yank-menu):
15677 * textmodes/ispell.el (ispell-menu-map):
15678 * net/eudc.el (eudc-tools-menu):
15679 * international/mule-cmds.el (describe-language-environment-map)
15680 (setup-language-environment-map, set-coding-system-map)
15681 (mule-menu-keymap):
15682 * vc-hooks.el (vc-menu-entry, vc-menu-map):
15683 * replace.el (occur-mode-map):
15684 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
15685
1d228a31
JB
156862009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
15687
6a7662bb
BR
15688 * calc/calc.el (math-read-number, math-read-number-simple):
15689 Use `save-match-data'.
1d228a31 15690
3b067af1
SM
156912009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
15692
28a90c44
SM
15693 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
15694 rather than fiddling with global-map bindings, since it should only
15695 affect per-terminal settings.
15696 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
15697
a452eee8
SM
15698 * minibuffer.el (completion-table-with-terminator): Allow to specify
15699 the terminator-regexp.
15700
ab14d7d5
SM
15701 * simple.el (switch-to-completions): Look for *Completions* in other
15702 frames as well.
15703
3b067af1
SM
15704 * pcomplete.el: Allow the use of completion-tables.
15705 (pcomplete-std-complete): New command.
15706 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
15707 (pcomplete--here): Use a function for `form' rather than an expression,
15708 so it can be byte-compiled.
15709 (pcomplete-here, pcomplete-here*): Adjust accordingly.
15710 Add edebug declaration.
15711 (pcomplete-show-completions): Remove unused var `curbuf'.
15712 (pcomplete-do-complete, pcomplete-stub):
1becddbb 15713 Don't assume `completions' is a list of strings any more.
3b067af1 15714
5480359e
JB
157152009-10-22 Juanma Barranquero <lekktu@gmail.com>
15716
15717 * find-dired.el (find-name-arg): Fix typo in docstring.
15718
3170b794
SM
157192009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
15720
48c23a25
SM
15721 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
15722 (pcmpl-linux-fs-types): Same, and update to new modules layout.
15723
56b14058
SM
15724 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
15725 pcomplete-entries.
15726
3170b794
SM
15727 * comint.el (comint-read-input-ring, comint-write-input-ring)
15728 (comint-substitute-in-file-name)
15729 (comint-dynamic-complete-as-filename)
15730 (comint-dynamic-simple-complete)
15731 (comint-dynamic-list-filename-completions)
15732 (comint-dynamic-list-completions)
15733 (comint-redirect-results-list-from-process): Minor simplifications.
15734
2affef34
KR
157352009-10-21 Kevin Ryde <user42@zip.com.au>
15736
3170b794
SM
15737 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
15738 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
2affef34 15739 the first form. And insert a blank line after ";;; Code" since
d8194864 15740 that's usual style. (Bug#4612)
2affef34 15741
e7b94bbb
KR
15742 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
15743
528c56e2
SM
157442009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
15745
15746 * minibuffer.el (completion-table-with-terminator): Properly implement
15747 boundaries, in case `terminator' appears in the suffix.
15748 (completion--embedded-envvar-table): Don't return boundaries if
15749 there's no valid completion. Simplify.
15750 (completion-file-name-table): New completion table extracted from
15751 completion--file-name-table.
15752 (completion--file-name-table): Use it.
15753 (read-file-name-predicate): Declare obsolete.
15754 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
15755 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
15756 completion-file-name-table, and use the `pred' argument.
15757 * files.el (locate-file-completion-table): Use the `pred' arg rather
15758 than read-file-name-predicate.
15759 (abbreviate-file-name): Use \` rather than ^ for BOS.
15760
f9ed9b4f
DN
157612009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
15762
15763 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
15764 vc-responsible-backend to register, it causes problems.
15765
5f2022a3
SM
157662009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
15767
15768 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
15769
fc754ea1
MA
157702009-10-21 Michael Albinus <michael.albinus@gmx.de>
15771
15772 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
15773 (tramp-smb-handle-file-attributes): Use it.
15774 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
15775 (tramp-smb-handle-insert-directory): Use `mapc' rather than
5f2022a3
SM
15776 `mapcar'. Use `tramp-smb-get-stat-capability'.
15777 Add `dired-filename' text properties.
fc754ea1
MA
15778 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
15779 (tramp-smb-maybe-open-connection): Simplify check for smbclient
15780 version.
15781
79bd5ba1
SM
157822009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
15783
15784 * subr.el (read-key-delay): Reduce to 0.01.
15785 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
15786 (bug#4751).
15787
3c13704d
SM
157882009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
15789
554efd10
SM
15790 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
15791
c2a37b78
SM
15792 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
15793 (Info-menu): Remove unused vars `last' and `completions'.
15794 (Info-index-nodes): Remove unused var `node'.
15795
3c13704d
SM
15796 * info.el (Info-complete-menu-item): Use complete-with-action.
15797
d1e4c403
DN
157982009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
15799
15800 Make vc-annotate work through copies and renames.
3c13704d
SM
15801 * vc-annotate.el (vc-annotate-extract-revision-at-line):
15802 Return the file name too.
d1e4c403
DN
15803 (vc-annotate-revision-at-line)
15804 (vc-annotate-find-revision-at-line)
15805 (vc-annotate-revision-previous-to-line)
15806 (vc-annotate-show-log-revision-at-line): Update to get the file
15807 name from vc-annotate-extract-revision-at-line.
15808 (vc-annotate-show-diff-revision-at-line-internal): Change the
15809 argument to mean whether to show a file diff or not. Get the file
15810 name from vc-annotate-extract-revision-at-line.
3c13704d
SM
15811 (vc-annotate-show-diff-revision-at-line):
15812 Update vc-annotate-show-diff-revision-at-line call.
d1e4c403
DN
15813 (vc-annotate-warp-revision): Add an optional file argument.
15814
15815 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
15816 (vc-git-annotate-extract-revision-at-line): Also return the file
15817 name if found.
15818
15819 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
15820 command. Remove unused code.
15821 (vc-hg-annotate-re): Update to match --follow output.
15822 (vc-hg-annotate-extract-revision-at-line): Also return the file
15823 name if found.
15824
15825 * vc.el: Update annotate-extract-revision-at-line documentation.
15826
b0b0ef98
KR
158272009-10-18 Kevin Ryde <user42@zip.com.au>
15828
15829 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
15830 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
15831
a9e7f03d
KR
15832 * net/browse-url.el (browse-url): Identify alist with "consp and
15833 not functionp" and let all other things go down the `apply' leg,
15834 as suggested by Stefan. (Further to bug#4531.)
15835
7346a407
CY
158362009-10-18 Chong Yidong <cyd@stupidchicken.com>
15837
15838 * minibuffer.el (read-file-name): Check for repeat before putting
15839 a default argument in file-name-history (Bug#4657).
15840
15841 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
15842 read syntax (Bug#4737).
15843
3c13704d 15844 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
7346a407 15845
1da94541
CY
158462009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
15847
15848 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
15849 (html-tag-alist, html-tag-help): Add descriptions for undocumented
15850 entries and make note of obsolete tags.
15851
2b93080a
SM
158522009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
15853
15854 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
15855
18b5ffb5
GM
158562009-10-18 Glenn Morris <rgm@gnu.org>
15857
15858 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
15859 grep, so that binary files (eg international/uni-bidi.el) can match.
e5f035d7 15860 Remove test for "UnicodeData" files, since it is hopefully unnecessary
18b5ffb5
GM
15861 now, and in any case the file header format has changed.
15862
c2e161b2
GM
158632009-10-17 Glenn Morris <rgm@gnu.org>
15864
15865 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
15866 (flyspell-get-word, flyspell-large-region)
15867 (flyspell-auto-correct-previous-word): Doc/error message fixes.
15868
a1eb44f5
CY
158692009-10-17 Chong Yidong <cyd@stupidchicken.com>
15870
15871 * Makefile.in (ELCFILES): Add ede/shell.
15872
4418646e
DN
158732009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
15874
15875 * term/common-win.el (x-colors): Purecopy it.
15876
4062011e
SM
158772009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
15878
15879 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
15880 permissive for when the buffer is empty.
15881 (tar-header-block-tokenize): Decode the username and groupname.
15882 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
15883
b0b111c3
JB
158842009-10-17 Eric Ludlam <zappo@gnu.org>
15885
15886 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
15887 contains multibyte characters, choose first applicable coding
15888 system automatically.
15889
2df48a87
SM
158902009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
15891
15892 * international/mule-cmds.el (select-safe-coding-system): If the file
15893 has a coding cookie, use it regardless of any other setting (bug#4712).
15894
fd7dd48c
GM
158952009-10-17 Glenn Morris <rgm@gnu.org>
15896
3ee0b477 15897 * foldout.el (foldout-mouse-swallow-events):
cec05144
GM
15898 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
15899
2550e4b1
GM
15900 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
15901 (dired-keep-marker-copy, dired-keep-marker-hardlink)
15902 (dired-keep-marker-symlink, dired-dwim-target)
15903 (dired-copy-preserve-time): Do not autoload these defcustoms.
15904
fd7dd48c
GM
15905 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
15906 messages from messing up the file coding. (Bug#4623)
15907
f3e3a990
GM
159082009-10-17 Jari Aalto <jari.aalto@cante.net>
15909
15910 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
15911 if no match is found for the current dictionary. (Bug#4578)
15912
15913 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
15914 optional, since that is how it is documented, and this is often called
15915 with a nil argument. (Bug#4577)
15916 (flyspell-external-point-words, flyspell-auto-correct-word)
15917 (flyspell-correct-word-before-point, flyspell-word-search-forward)
15918 (flyspell-word-search-backward): Remove nil argument in calls to
15919 flyspell-get-word, since it is not needed now.
15920
159212009-10-17 Ulrich Mueller <ulm@gentoo.org>
15922
1becddbb 15923 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
f3e3a990 15924
b61374ab
GM
159252009-10-16 Glenn Morris <rgm@gnu.org>
15926
15927 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
15928
412707c2
SM
159292009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
15930
15931 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
15932 (ange-ftp-file-size): New function.
15933 (ange-ftp-file-attributes): Use it.
15934
0c6f436e
MA
159352009-10-16 Michael Albinus <michael.albinus@gmx.de>
15936
15937 * net/tramp-smb.el (tramp-smb-version): New defvar.
15938 (tramp-smb-maybe-open-connection): Use it, in order to avoid
15939 repeated checks.
15940
850bfd04
GM
159412009-10-16 Glenn Morris <rgm@gnu.org>
15942
15943 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
15944 Maybe copy some custom properties from old to new name. (Bug#4706)
15945
f3ed9aca
JB
159462009-10-16 Juanma Barranquero <lekktu@gmail.com>
15947
15948 * subr.el (error, sit-for, start-process-shell-command)
15949 (start-file-process-shell-command): Set the calling convention
15950 after the function definition.
15951
fd6c5134
SM
159522009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
15953
15954 * subr.el (error, sit-for, start-process-shell-command)
15955 (start-file-process-shell-command): Use the new
15956 set-advertised-calling-convention feature.
15957
73874eb7
KH
159582009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
15959
fd6c5134
SM
15960 * international/ucs-normalize.el (ucs-normalize-version):
15961 Change to 1.2.
15962 (check-range): Adjust for Unicode 5.2.
73874eb7 15963
03fb33cf
JL
159642009-10-15 Juri Linkov <juri@jurta.org>
15965
15966 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
15967 to the `menu-item' format.
15968
4260b402
MA
159692009-10-15 Michael Albinus <michael.albinus@gmx.de>
15970
15971 * net/tramp.el (tramp-replace-environment-variables): Do not fail
15972 if the environment variable does not exist.
15973
15974 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
15975 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
15976 parameter.
15977 (tramp-smb-handle-add-name-to-file)
15978 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
15979 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
15980 (tramp-smb-handle-file-attributes)
15981 (tramp-smb-do-file-attributes-with-stat)
15982 (tramp-smb-handle-file-local-copy)
15983 (tramp-smb-handle-insert-directory)
15984 (tramp-smb-handle-make-directory)
15985 (tramp-smb-handle-make-directory-internal)
15986 (tramp-smb-handle-make-symbolic-link)
15987 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
15988 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
15989 (tramp-smb-maybe-open-connection): Apply the changed parameters.
15990 (tramp-smb-read-file-entry): Read Disk names in compressed format.
15991 Handle long file names.
15992 (tramp-smb-get-cifs-capabilities): Check, whether the connection
15993 process is running.
15994 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
15995 Read share names with "-g" option.
15996
d7a0fd6f
GM
159972009-10-15 Ryan Yeske <rcyeske@gmail.com>
15998
15999 * net/rcirc.el (rcirc-view-log-file): New command.
16000 (rcirc-track-minor-mode-map): Remove C-c ` binding.
16001 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
16002 specified.
16003
0b44494a
GM
160042009-10-15 Glenn Morris <rgm@gnu.org>
16005
af9fb32f
GM
16006 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
16007 from the second command-line argument.
16008 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
16009 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
16010 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
16011 w32-batch-update-autoloads.
16012 * emacs-lisp/autoload.el (autoload-make-program): New variable.
16013 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
16014
0b44494a
GM
16015 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
16016 the headers cannot be located. Simplify, subtracting superflous
16017 save-excursions.
16018
d5e63715
SM
160192009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
16020
16021 Replace completion-base-size by completion-base-position to fix bugs
16022 such as (bug#4699).
16023 * simple.el (completion-base-position): New var.
16024 (completion-base-size): Mark as obsolete.
16025 (choose-completion): Make it work for mouse events as well.
16026 Pass the new base-position to choose-completion-string.
16027 (choose-completion-guess-base-position): New function, extracted from
16028 choose-completion-delete-max-match.
16029 (choose-completion-delete-max-match): Use it. Make obsolete.
16030 (choose-completion-string): Use the new base-position info.
16031 (completion-root-regexp): Delete.
16032 (completion-setup-function): Preserve completion-base-position.
16033 Eliminate obsolete base-size manipulation.
16034 * minibuffer.el (display-completion-list): Don't mess with base-size.
16035 (minibuffer-completion-help): Set completion-base-position instead.
16036 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
16037 choose-completion.
16038 * textmodes/bibtex.el (bibtex-complete):
16039 * emacs-lisp/crm.el (crm--choose-completion-string):
16040 Adjust to new calling convention.
16041 * complete.el (partial-completion-mode): Use minibufferp to avoid
16042 bumping into incompatible change to choose-completion-string-functions.
16043 * ido.el (ido-choose-completion-string): Make its calling convention
16044 more permissive.
16045 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
16046 base-size manipulation.
16047 (comint-dynamic-list-input-ring): Use dotimes and push.
16048 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
16049 fundamental-mode. Use `or'.
16050
92f8bfc7
JL
160512009-10-14 Juri Linkov <juri@jurta.org>
16052
16053 * misearch.el (multi-isearch-next-buffer-from-list)
16054 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
16055
e78e280d
SM
160562009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
16057
384ca163
SM
16058 * Makefile.in (compile-onefile): Load `bytecomp' rather than
16059 `bytecomp.el'.
16060
681e0e7c
SM
16061 * minibuffer.el (completion-pcm--merge-completions): Make sure the
16062 string we return is all made up of text from the completions rather
16063 than part from the completions and part from the input (bug#4219).
16064
e78e280d
SM
16065 * ido.el (ido-everywhere): Use define-minor-mode.
16066
16067 * buff-menu.el (list-buffers, ctl-x-map):
16068 Mark the entry points with ;;;###autoload cookies.
16069
b4e813ca
DN
160702009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
16071
52964e54
DN
16072 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
16073 correctly in the detached head case.
16074 (vc-git-print-log): Remove unused binding.
16075
b4e813ca
DN
16076 * vc.el (vc-responsible-backend): When a directory is passed for
16077 for registration create a VC repository if no backend is
16078 responsible for the directory argument.
16079 (vc-deduce-fileset): Tell vc-responsible-backend to register.
1043ce19
DN
16080
16081 * vc.el: Move comments about RCS and SCCS ...
16082 * vc-rcs.el:
16083 * vc-sccs.el: ... here, respectively.
16084
40ba9882
SM
160852009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
16086
16087 * minibuffer.el (completion--file-name-table): Return nil if there's
16088 no file completion, even if substitute-in-file-name changed
16089 the string (bug#4708).
16090
04e0f59b
JL
160912009-10-13 Juri Linkov <juri@jurta.org>
16092
16093 * files-x.el (read-file-local-variable-value): Don't filter out
16094 minor modes from mode name completion (bug#4664).
16095
314c8e25
JB
160962009-10-13 Juanma Barranquero <lekktu@gmail.com>
16097
16098 * international/mule-cmds.el (ucs-names): Remove exclusion of
16099 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
16100
5c9b7d36
KH
161012009-10-13 Kenichi Handa <handa@m17n.org>
16102
16103 * international/uni-name.el: Regenerated.
16104
1e7a80f2
JB
161052009-10-13 Juanma Barranquero <lekktu@gmail.com>
16106
16107 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
16108 should be automatically buffer-local, but isn't.)
16109
cd29f88b
SS
161102009-10-12 Sam Steingold <sds@gnu.org>
16111
16112 * progmodes/compile.el (compilation-next-error-function): Fix the
0cd16af4 16113 timestamps if the buffer has been visited before.
0cd16af4
SS
16114 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
16115 non-anchored patterns, like the perl one (bug#3928).
cd29f88b 16116
37493a98
GM
161172009-10-12 Glenn Morris <rgm@gnu.org>
16118
16119 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
16120 Let-bind `size'.
16121
3b56b1e6
JB
161222009-10-12 Juanma Barranquero <lekktu@gmail.com>
16123
7422a4bb
JB
16124 * proced.el (proced-unload-function): New function.
16125
fa72d075
JB
16126 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
16127 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
16128 Doc fix.
16129
3b56b1e6
JB
16130 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
16131
4d9b4323
JL
161322009-10-11 Juri Linkov <juri@jurta.org>
16133
16134 * files-x.el (read-file-local-variable-value):
16135 Provide default value only for bound variables (bug#4664).
16136
f6f7e059
MA
161372009-10-11 Michael Albinus <michael.albinus@gmx.de>
16138
16139 * net/tramp.el (tramp-local-host-p): Function shall return nil for
16140 connection methods like smb.
16141
16142 * net/tramp-cache.el (tramp-flush-connection-property): The hash
16143 can be empty.
16144
16145 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
16146 (tramp-smb-file-name-handler-alist): Add handlers for
16147 `add-name-to-file', `make-symbolic-link'.
16148 (tramp-smb-handle-add-name-to-file)
2992485f 16149 (tramp-smb-do-file-attributes-with-stat)
f6f7e059
MA
16150 (tramp-smb-handle-make-symbolic-link)
16151 (tramp-smb-get-cifs-capabilities): New defuns.
16152 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
16153 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
16154 (tramp-smb-handle-file-local-copy)
16155 (tramp-smb-handle-make-directory-internal)
3b56b1e6
JB
16156 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
16157 The file name syntax depends on cifs capabilities.
16158 (tramp-smb-handle-file-attributes):
16159 Call `tramp-smb-do-file-attributes-with-stat' if possible.
16160 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
16161 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
f6f7e059 16162
67868d26
CY
161632009-10-11 Chong Yidong <cyd@stupidchicken.com>
16164
16165 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
16166 (eieio-defclass): Apply deftype handler and setf-method properties
16167 directly.
16168 (eieio-add-new-slot): Avoid union function from cl library.
16169 (eieio--typep): New function.
16170 (eieio-perform-slot-validation): Use it.
16171
6d6a5b7e
KF
161722009-10-10 Karl Fogel <kfogel@red-bean.com>
16173
3b56b1e6 16174 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
6d6a5b7e
KF
16175 Update documentation to refer to the variables documented in r1.135.
16176 (Bug#4188)
16177
67b70de9
KF
161782009-10-10 Karl Fogel <kfogel@red-bean.com>
16179
16180 * bookmark.el (Info-suffix-list): Remove this unused variable.
16181 (bookmark-current-point): Remove this obsolete variable.
16182 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
16183 Adjust for removal of bookmark-current-point.
16184
16185 (bookmarks-already-loaded, bookmark-current-buffer)
16186 (bookmark-yank-point): Document. (Bug#4188)
16187
58ae51ae
GM
161882009-10-10 Glenn Morris <rgm@gnu.org>
16189
4619ff5e
GM
16190 * frame.el (frame-height): Doc fix.
16191
58ae51ae
GM
16192 * calendar/calendar.el (calendar-split-width-threshold): New option.
16193 (calendar-basic-setup): Use calendar-split-width-threshold.
16194
d364386c
JB
161952009-10-09 Juanma Barranquero <lekktu@gmail.com>
16196
16197 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
16198 Ideographic Supplement" range (U+1F200..U+1F2FF).
16199
33e97a28
KF
162002009-10-09 Karl Fogel <kfogel@red-bean.com>
16201
02d0f051 16202 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
d364386c 16203 since the list will have been rebuilt anyway. (Bug#4349)
02d0f051
KF
16204
162052009-10-09 Karl Fogel <kfogel@red-bean.com>
16206
d364386c 16207 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
33e97a28
KF
16208 (bookmark-bmenu-execute-deletions): Don't save here, as
16209 bookmark-delete will now do so if necessary.
d364386c 16210 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
33e97a28
KF
16211 (Bug#4348)
16212
9656d87b
GM
162132009-10-09 Glenn Morris <rgm@gnu.org>
16214
16215 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
16216
e6227f06
KF
162172009-10-09 Karl Fogel <kfogel@red-bean.com>
16218
16219 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
16220 (bookmark-jump-other-window): Just invoke bookmark-jump with new
16221 argument now, so the two function's behaviors will match. (Bug#3645)
16222
288f783b
MA
162232009-10-08 Michael Albinus <michael.albinus@gmx.de>
16224
16225 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
e78e280d 16226 (tramp-file-name-real-host, tramp-file-name-port):
fc754ea1 16227 Apply `save-match-data'.
288f783b
MA
16228
16229 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
16230 case both directories are remote.
16231 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
e78e280d 16232 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
288f783b 16233
872a1ea4
JB
162342009-10-07 Juanma Barranquero <lekktu@gmail.com>
16235
16236 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
16237
ab2baced
GM
162382009-10-07 Glenn Morris <rgm@gnu.org>
16239
e78e280d
SM
16240 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
16241 of concat.
ab2baced 16242
5c4634c1
SM
162432009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
16244
16245 * files-x.el (read-file-local-variable): Include some
16246 non-user-variables in the completion table (bug#4664).
16247
c2dc9732
MA
162482009-10-07 Michael Albinus <michael.albinus@gmx.de>
16249
16250 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
16251 message.
16252
16253 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
16254 (tramp-smb-file-name-handler-alist): Add handler for
16255 `copy-directory', `expand-file-name', `set-file-modes'.
16256 (tramp-smb-handle-copy-directory)
16257 (tramp-smb-handle-expand-file-name)
16258 (tramp-smb-handle-set-file-modes): New defuns.
16259 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
16260 (tramp-smb-handle-file-attributes): Simplify check for retrieving
16261 entry.
16262 (tramp-smb-handle-insert-directory): Don't flush the cache.
16263 (tramp-smb-maybe-open-connection): Check for samba client and
16264 server versions.
16265
11be40a6
EZ
162662009-10-07 Eli Zaretskii <eliz@gnu.org>
16267
16268 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
16269 to not error out of search for "^lisp=" fails.
16270
8c4afe20
JB
162712009-10-07 Juanma Barranquero <lekktu@gmail.com>
16272
16273 * makefile.w32-in (WINS_UPDATES): New macro.
16274 (custom-deps, finder-data, autoloads): Use it.
16275
429a1506
GM
162762009-10-07 Glenn Morris <rgm@gnu.org>
16277
ee2e93e2
GM
16278 * Makefile.in (autoloads): Revert previous change.
16279 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
16280 the list of preloaded files passed on the command-line, get
16281 it from src/Makefile.
16282
429a1506
GM
16283 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
16284 show the original buffer rather than a random one.
16285
a51203ee 162862009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
e7e2b26c
GM
16287
16288 * help.el (describe-no-warranty): Place point in a slightly better
16289 position in the GPLv3 text.
16290
f58f7520
SS
162912009-10-06 Sam Steingold <sds@gnu.org>
16292
16293 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
16294 the comm attribute is present before calling regexp-quote.
16295
bde79dc0
JB
162962009-10-06 Juanma Barranquero <lekktu@gmail.com>
16297
16298 * play/animate.el (animate-string): For good effect, make sure
16299 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
16300
16301 * play/animate.el (animate-sequence, animate-birthday-present):
16302 * misc.el (butterfly): Don't set `indent-tabs-mode'.
16303
25ab0302
GM
163042009-10-06 Glenn Morris <rgm@gnu.org>
16305
73fe714a
GM
16306 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
16307
3405d98c
GM
16308 * emacs-lisp/autoload.el (autoload-excludes): New variable.
16309 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
16310 (batch-update-autoloads): Process a string value of autoload-excludes,
16311 set during the build process.
16312 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
16313
9fb2cdc5
GM
16314 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
16315 inside with-parsed... macro so that `v' is defined.
16316
7938ab41
GM
16317 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
16318 * progmodes/fortran.el (fortran-end-of-block)
16319 (fortran-beginning-of-block):
16320 Also push mark in the macro case.
16321
eaf9b564
GM
16322 * emerge.el (emerge-show-file-name):
16323 * calc/calc.el (calc-quit):
16324 * calc/calc-misc.el (calc-big-or-small):
16325 * calc/calc-graph.el (calc-graph-view):
16326 * calc/calc-ext.el (calc-reset):
16327 * calendar/calendar.el (calendar-basic-setup):
16328 Use window-full-height-p.
16329
25ab0302
GM
16330 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
16331 header we don't understand, don't insert another. (Bug#4624)
16332 If changing mime charset, insert the new one in the right place.
16333
00169eb6
GM
163342009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
16335
16336 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
16337 (cal-tex-cursor-month): Correctly increment the end date for diary and
16338 holiday listing. (Bug#4626)
16339
82882188
SM
163402009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16341
40ba9882 16342 * help-fns.el (describe-function-1): Don't burp if the function is not
82882188
SM
16343 a symbol.
16344
a8f316ca
JB
163452009-10-05 Juanma Barranquero <lekktu@gmail.com>
16346
16347 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
16348 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
16349 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
16350 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
16351
16352 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
16353 (eieio-default-superclass): Reflow docstrings.
16354 (this, class-option-assoc, defclass, eieio-class-un-autoload)
16355 (eieio-unbind-method-implementations, defmethod)
16356 (eieio-validate-slot-value, eieio-validate-class-slot-value)
16357 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
16358 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
16359 (eieio-slot-originating-class-p, eieio-slot-name-index)
16360 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
16361 (constructor, initialize-instance, no-next-method, object-print)
16362 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
16363 Fix typos in docstrings.
16364 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
16365 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
16366 (next-method-p): Doc fixes.
16367 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
16368 Fix typos in error messages.
16369 (eieio-defmethod): Fix typo in description of generic method.
16370
16371 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
16372 (eieio-persistent-save-interactive, slot-missing):
16373 Fix typos in docstrings.
16374 (eieio-instance-inheritor-slot-boundp): Doc fix.
16375
16376 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
16377 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
16378
16379 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
16380 (eieio-custom-object-apply-reset):
16381 Fix typos in docstrings and error messages.
16382
16383 * emacs-lisp/eieio-datadebug.el (data-debug-show):
16384 Fix typo in docstring.
16385
16386 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
16387 (eieio-browse-tree): Doc fix.
16388 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
16389 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
16390 Fix typos in docstrings.
16391
16392 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
16393 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
16394 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
16395 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
16396 Reflow docstrings.
16397
c66b7ac0
DN
163982009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
16399
4a827e0a 16400 * vc-hg.el (log-view-vc-backend): Declare for compiler.
82882188
SM
16401 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
16402 Set log-view-vc-backend so that diff can work.
4a827e0a 16403
c66b7ac0
DN
16404 * log-view.el (log-view-diff): Use vc-diff-internal instead of
16405 vc-version-diff.
16406 (vc-diff-internal): Autoload this instead of vc-version-diff.
16407
1902a98c
EZ
164082009-10-05 Eli Zaretskii <eliz@gnu.org>
16409
a7a8618b
EZ
16410 * simple.el (eval-expression): Doc fix.
16411
1902a98c
EZ
16412 * progmodes/cwarn.el (cwarn-mode): Doc fix.
16413
0e1f2ee6
MA
164142009-10-05 Michael Albinus <michael.albinus@gmx.de>
16415
16416 * files.el (directory-files-no-dot-files-regexp): New defconst.
16417 (delete-directory): Use it.
16418 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
16419
263c02ef 16420 * net/tramp.el (tramp-verbose): Fix docstring.
82882188
SM
16421 (tramp-methods): Add recursive option to `tramp-copy-args'.
16422 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
263c02ef 16423 "scp1_old", "scp2_old", "rsync", "rsyncc".
a8f316ca 16424 (tramp-default-method): Check also for `auth-source-user-or-password'.
263c02ef
MA
16425 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
16426 Add handler for `copy-directory'.
16427 (tramp-handle-copy-directory): New defun.
16428 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
a8f316ca
JB
16429 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
16430 Optimize sent command.
263c02ef 16431
72aa7df4
SM
164322009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16433
4a34f065
SM
16434 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
16435 window if necessary.
16436
72aa7df4
SM
16437 * calendar/calendar.el (calendar-basic-setup): Don't call
16438 switch-to-buffer in a dedicated window.
16439
5feb1ba7
KF
164402009-10-05 Karl Fogel <kfogel@red-bean.com>
16441
16442 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
194d44e7 16443 don't do anything related to relocating, just return nil.
5feb1ba7
KF
16444 (bookmark-error-no-filename): New error.
16445 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
194d44e7
JB
16446 bookmark has no file. Don't even attempt to handle things that
16447 are not files; the whole point of custom handlers is to keep that
16448 knowledge elsewhere anyway. Tighten some comments.
5feb1ba7
KF
16449 (bookmark-file-or-variation-thereof): Remove now-unused function.
16450 (bookmark-location): Doc string fix.
16451 (Bug#4250)
16452
1bd49952
KF
164532009-10-04 Karl Fogel <kfogel@red-bean.com>
16454
16455 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
16456 don't use a file dialog, because they usually don't know how to read
16457 a directory target from the user. (Bug#4230)
16458 Also, make sure the prompt can display directories as well as files.
16459
825382c0
KF
164602009-10-04 Karl Fogel <kfogel@red-bean.com>
16461
16462 * bookmark.el (bookmark-set, bookmark-buffer-name):
16463 Improve doc strings. (Bug#1193)
16464
13901bcb
KF
164652009-10-04 Karl Fogel <kfogel@red-bean.com>
16466
4a34f065
SM
16467 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
16468 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
16469 (bookmark-get-annotation, bookmark-set-annotation)
16470 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
16471 (bookmark-set-position, bookmark-get-front-context-string)
16472 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
16473 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
16474 (bookmark-jump-other-window, bookmark-handle-bookmark)
16475 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
16476 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
16477 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
194d44e7
JB
16478 Improve doc strings to say whether bookmark can be a string or
16479 a record or both, and make other consistency and clarity fixes.
4a34f065
SM
16480 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
16481 (bookmark-default-annotation-text, bookmark-yank-word)
16482 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
16483 (bookmark-import-new-list, bookmark-maybe-rename)
16484 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
16485 (bookmark-bmenu-bookmark): Give these doc strings.
13901bcb 16486 (bookmark-bmenu-check-position): Give this a doc string, but also
194d44e7 16487 add a FIXME comment about how the function may be pointless.
13901bcb 16488 (bookmark-default-handler): Rework doc string and change a
194d44e7
JB
16489 parameter name, to clarify that this takes a bookmark record
16490 not a bookmark name.
13901bcb 16491 (bookmark-set): Change a parameter name to indicate its meaning,
194d44e7 16492 and improve the doc string a bit.
13901bcb
KF
16493 (Bug#4188)
16494
5c1b3e94
KF
164952009-10-04 Karl Fogel <kfogel@red-bean.com>
16496
16497 * bookmark.el (bookmark-alist): Document the new `handler' element
16498 in the param alist.
16499 (bookmark-make-record-function): Adjust documentation for above.
16500 (Bug#4193)
16501
8559076d
KF
165022009-10-04 Karl Fogel <kfogel@red-bean.com>
16503
16504 * info.el (Info-bookmark-make-record): Document this function.
16505 (Info-bookmark-jump): Document with a doc string, not just a comment.
16506 (Bug#4203)
16507
b4583b8c
MA
165082009-10-04 Michael Albinus <michael.albinus@gmx.de>
16509
16510 * files.el (copy-directory): New defun.
16511
16512 * dired-aux.el (dired-copy-file-recursive): Use it.
16513
131ae8f2
JB
165142009-10-04 Juanma Barranquero <lekktu@gmail.com>
16515
a30e71ae 16516 * files-x.el (modify-dir-local-variable)
dd9af436
CY
16517 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
16518 docstrings.
a30e71ae 16519
131ae8f2
JB
16520 * recentf.el (recentf-unload-function): New function.
16521
ccafbf06
GM
165222009-10-04 Glenn Morris <rgm@gnu.org>
16523
16524 * window.el (window-full-height-p): Add doc string.
16525
02c6f098
GM
165262009-10-04 Martin Rudalics <rudalics@gmx.at>
16527
16528 * window.el (window-full-height-p): New function. (Bug#4543)
16529
ed6b0195
DN
165302009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
16531
16532 * vc.el: Remove commented out code.
16533 (vc-derived-from-dir-mode): Remove, unused.
16534 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
16535
1b8d1cc7
MA
165362009-10-03 Michael Albinus <michael.albinus@gmx.de>
16537
4a34f065
SM
16538 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
16539 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
1b8d1cc7
MA
16540 there could be recursive loading when `default-directory' is a
16541 remote file name. (Bug#4614)
16542
ac3c593c
GM
165432009-10-03 Glenn Morris <rgm@gnu.org>
16544
686ea556
GM
16545 * calendar/calendar.el (calendar-basic-setup): Handle the case where
16546 the frame is wide.
16547 (calendar-generate-window): Test for shrinkability rather than width.
16548
ac3c593c
GM
16549 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
16550 reusing existing buffers, in case we happen to visit two files with the
16551 same basename. (Bug#4593)
16552
573709fd
EZ
165532009-10-02 Eli Zaretskii <eliz@gnu.org>
16554
4a34f065 16555 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
573709fd
EZ
16556 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
16557 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
16558 subdirs of cedet as well.
8f885d01 16559 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
573709fd 16560
8d6c1239
SM
165612009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
16562
16563 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
16564 Obey advertised-signature-table.
16565
16566 * help-fns.el (help-function-arglist): Don't check
16567 advertised-signature-table.
16568 (describe-function-1): Do it here instead so it also applies to subrs.
16569
c4861de0
MA
165702009-10-02 Michael Albinus <michael.albinus@gmx.de>
16571
16572 * simple.el (start-file-process): Say in the doc-string, that file
16573 handlers might not support pty association, if PROGRAM is nil.
16574
16575 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
16576 HOST and USER are strings. They are nil, when there are
16577 incomplete entries in ~/.netrc, for example.
16578 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
16579 root directory ("device busy" error otherwise).
16580
8d6c1239
SM
16581 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
16582 Flush file properties of created directory.
c4861de0 16583
d2bda74f
EZ
165842009-10-02 Eli Zaretskii <eliz@gnu.org>
16585
16586 * makefile.w32-in (WINS_BASIC): Remove cedet.
16587 (WINS_CEDET): Add cedet.
16588 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
16589
895d1904
GM
165902009-10-02 Kevin Ryde <user42@zip.com.au>
16591
16592 * net/browse-url.el (browse-url): Pass any symbol in
16593 browse-url-browser-function to `apply', since if you've mistakenly put
16594 an unbound symbol then the error is clearer. (Bug#4531)
16595
32226619
JB
165962009-10-02 Juanma Barranquero <lekktu@gmail.com>
16597
16598 * allout.el (allout-init, allout-back-to-current-heading)
16599 (allout-beginning-of-current-entry, allout-ascend-to-depth)
16600 (allout-ascend, allout-up-current-level, allout-end-of-level)
16601 (allout-previous-visible-heading, allout-forward-current-level)
16602 (allout-backward-current-level, allout-show-children):
16603 * apropos.el (apropos-describe-plist):
16604 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
16605 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
16606 * completion.el (add-completion, add-permanent-completion):
16607 * descr-text.el (describe-text-category, describe-char):
16608 * desktop.el (desktop-lazy-abort):
16609 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
16610 * dired.el (dired-build-subdir-alist):
16611 * ediff.el (ediff-version):
16612 * elide-head.el (elide-head, elide-head-show):
16613 * emerge.el (emerge-version):
16614 * env.el (getenv):
16615 * face-remap.el (variable-pitch-mode):
16616 * faces.el (describe-face):
16617 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
16618 (dired-at-point):
16619 * files.el (find-file-existing, auto-save-mode):
16620 * font-lock.el (font-lock-fontify-buffer):
16621 * help-fns.el (describe-function, describe-variable)
16622 (describe-syntax, describe-categories):
16623 * help.el (view-lossage, describe-bindings, describe-key)
16624 (describe-mode):
16625 * hexl.el (hexl-current-address):
16626 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
16627 * info.el (Info-goto-emacs-key-command-node):
16628 * log-edit.el (log-edit-insert-cvs-template)
16629 (log-edit-insert-cvs-rcstemplate):
16630 * menu-bar.el (menu-bar-mode):
16631 * mouse.el (mouse-appearance-menu):
16632 * newcomment.el (comment-indent-new-line):
16633 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
16634 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
5ce6e4f4 16635 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
32226619
JB
16636 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
16637 * recentf.el (recentf-mode):
16638 * savehist.el (savehist-mode, savehist-save):
16639 * shadowfile.el (shadow-copy-files):
16640 * simple.el (kill-ring-save, next-line, previous-line)
16641 (normal-erase-is-backspace-mode):
16642 * strokes.el (strokes-update-window-configuration)
16643 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
16644 (strokes-xpm-for-stroke):
16645 * time.el (emacs-uptime, emacs-init-time):
16646 * tutorial.el (tutorial--describe-nonstandard-key)
16647 (tutorial--detailed-help):
16648 * type-break.el (type-break-mode)
16649 (type-break-mode-line-message-mode, type-break-query-mode)
16650 (type-break-guesstimate-keystroke-threshold):
16651 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
16652 * version.el (emacs-version):
16653 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
16654 * winner.el (winner-mode):
16655 * calendar/timeclock.el (timeclock-in, timeclock-out)
16656 (timeclock-status-string, timeclock-change)
16657 (timeclock-workday-remaining-string)
16658 (timeclock-workday-elapsed-string)
16659 (timeclock-when-to-leave-string):
16660 * calendar/todo-mode.el (todo-add-category):
16661 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
16662 * emacs-lisp/autoload.el (update-file-autoloads):
16663 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
16664 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
16665 (checkdoc-message-text, checkdoc-defun):
16666 * emacs-lisp/debug.el (debugger-list-functions):
16667 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
16668 * emacs-lisp/eieio-opt.el (eieio-describe-class)
16669 (eieio-describe-generic):
16670 * emacs-lisp/lisp-mnt.el (lm-synopsis):
16671 * emacs-lisp/shadow.el (list-load-path-shadows):
16672 * emulation/cua-base.el (cua-mode):
16673 * emulation/edt.el (edt-set-scroll-margins):
16674 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
16675 (tpu-toggle-regexp, tpu-toggle-search-direction)
16676 (tpu-toggle-rectangle, tpu-toggle-control-keys):
16677 * emulation/tpu-extras.el (tpu-set-scroll-margins):
16678 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
16679 (viper-set-parsing-style-toggling-macro)
16680 (viper-set-emacs-state-searchstyle-macros):
16681 * emulation/viper.el (viper-set-hooks):
16682 * eshell/esh-mode.el (eshell-truncate-buffer):
16683 * international/mule-cmds.el (prefer-coding-system)
16684 (describe-input-method, describe-language-environment):
16685 * international/mule-diag.el (list-character-sets)
16686 (describe-character-set, describe-coding-system)
16687 (describe-fontset, list-fontsets, list-input-methods):
16688 * mail/sendmail.el (mail-signature):
16689 * net/ange-ftp.el (ange-ftp-copy-file):
16690 * net/browse-url.el (browse-url):
16691 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
16692 * net/quickurl.el (quickurl-add-url):
16693 * net/rcirc.el (names, topic):
16694 * net/xesam.el (xesam-mode):
16695 * play/5x5.el (5x5-new-game):
16696 * play/yow.el (apropos-zippy):
16697 * progmodes/ada-mode.el (ada-mode-version):
16698 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
16699 (f90-end-of-block)
16700 (f90-beginning-of-block):
16701 * progmodes/fortran.el (fortran-end-of-block)
16702 (fortran-beginning-of-block):
16703 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
16704 * progmodes/python.el (python-describe-symbol, python-shell):
16705 * term/ns-win.el (ns-print-buffer):
16706 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
16707 * textmodes/flyspell.el (flyspell-mode-on):
16708 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
16709 (pages-directory-for-addresses):
16710 * textmodes/table.el (table-recognize-cell)
16711 (table-query-dimension, table-generate-source)
16712 (table-insert-sequence, table--warn-incompatibility):
16713 * textmodes/tex-mode.el (tex-validate-buffer):
16714 * textmodes/texinfmt.el (texinfmt-version)
16715 (texinfo-format-buffer):
16716 Use `called-interactively-p' instead of `interactive-p'.
16717
12a3c28c
JB
167182009-10-02 Juanma Barranquero <lekktu@gmail.com>
16719
16720 * image-mode.el (image-toggle-display):
16721 * emacs-lisp/elp.el (elp-instrument-function):
16722 * emacs-lisp/advice.el (ad-make-advised-definition):
16723 * emacs-lisp/easy-mmode.el (define-minor-mode):
16724 * net/browse-url.el (browse-url-maybe-new-window):
16725 * progmodes/sh-script.el (sh-learn-buffer-indent):
16726 Pass new argument 'any to `called-interactively-p'.
16727
171fda8a
JB
167282009-10-01 Juanma Barranquero <lekktu@gmail.com>
16729
171fda8a
JB
16730 * international/uni-bidi.el:
16731 * international/uni-category.el:
16732 * international/uni-combining.el:
16733 * international/uni-comment.el:
16734 * international/uni-decimal.el:
9c3c9fdf 16735 * international/uni-decomposition.el:
171fda8a
JB
16736 * international/uni-digit.el:
16737 * international/uni-lowercase.el:
16738 * international/uni-mirrored.el:
16739 * international/uni-name.el:
16740 * international/uni-numeric.el:
16741 * international/uni-old-name.el:
16742 * international/uni-titlecase.el:
16743 * international/uni-uppercase.el:
16744 Regenerate from Unicode 5.2.0 data.
16745
dcb9734a
GM
167462009-10-01 Glenn Morris <rgm@gnu.org>
16747
16748 * Makefile.in (ELCFILES): Regenerate.
16749
ced10a4c
SM
167502009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
16751
9d28c33e
SM
16752 * subr.el (interactive-p): Mark obsolete.
16753 (called-interactively-p): Make the optional-ness of `kind' obsolete.
16754 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
16755 advertised-signature-table for subroutines as well.
16756
ced10a4c
SM
16757 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
16758 (set-advertised-calling-convention): New function.
16759 (make-obsolete, define-obsolete-function-alias)
16760 (make-obsolete-variable, define-obsolete-variable-alias):
16761 Make the optional-ness of `when' obsolete.
16762 (define-obsolete-face-alias): Make `when' non-optional.
16763 * help-fns.el (help-function-arglist):
16764 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
16765 Use advertised-signature-table.
16766
cc3dda16
MA
167672009-10-01 Michael Albinus <michael.albinus@gmx.de>
16768
16769 * files.el (delete-directory): New defun. The original function
16770 in fileio.c has been renamed to `delete-directory-internal'.
16771
16772 * dired.el (dired-delete-file): Call `delete-directory' with
16773 RECURSIVE parameter.
16774
5ce6e4f4 16775 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
cc3dda16
MA
16776 parameter RECURSIVE. Implementation is missing.
16777
16778 * net/tramp.el (tramp-handle-make-directory): Flush upper
16779 directory's file properties.
ced10a4c 16780 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
cc3dda16
MA
16781 (tramp-handle-dired-recursive-delete-directory): Flush directory
16782 properties after the remove command only.
16783
ced10a4c
SM
16784 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
16785 Handle optional parameter RECURSIVE.
cc3dda16 16786
ced10a4c
SM
16787 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
16788 Handle optional parameter RECURSIVE.
cc3dda16
MA
16789
16790 * net/tramp-smb.el (tramp-smb-errors): Add error message for
16791 connection timeout.
16792 (tramp-smb-handle-delete-directory): Handle optional parameter
16793 RECURSIVE.
16794
cf885595
SM
167952009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
16796
e3a6b82f
SM
16797 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
16798 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
16799 (byte-compile-defmacro): Use backquotes.
16800
7201bfbb
SM
16801 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
16802
cf885595
SM
16803 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
16804 has no associated file.
16805 (vc-resynch-buffer): Use vc-dir-buffers.
16806
a4d2c321
GM
168072009-10-01 Glenn Morris <rgm@gnu.org>
16808
9ffe3f52
GM
16809 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
16810 (chart-file-count):
16811 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
16812 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
16813 * emacs-lisp/eieio-opt.el (eieio-describe-class):
16814 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
16815 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
16816 (eieio-copy-parents-into-subclass, make-instance, class-children)
16817 (eieio-generic-form):
bd2afec2 16818
9515cdcc
GM
16819 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
16820 match-data. (Bug#4555).
16821
a4d2c321
GM
16822 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
16823 rather than parsing it as a regexp. This relaxes the layout
16824 requirements and makes errors easier to detect.
16825 (check-declare-verify): Check file is regular.
16826 (check-declare-directory): Doc fix.
16827 * subr.el (declare-function): Doc fix.
16828
b15c31c7
GM
16829 * ibuffer.el (ibuffer-format-qualifier):
16830 * isearch.el (hi-lock-regexp-okay):
16831 * calc/calc.el (math-zerop):
16832 * mail/uce.el (rmail-msgbeg, rmail-msgend):
16833 * term/w32-win.el (setup-default-fontset, set-fontset-font):
16834 Remove unused declarations.
16835
b0b111c3
JB
168362009-09-30 Eric Ludlam <zappo@gnu.org>
16837
16838 * emacs-lisp/eieio.el (boolean-p): Delete.
16839
1fc28a2c
GM
168402009-09-30 Glenn Morris <rgm@gnu.org>
16841
1fc28a2c
GM
16842 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
16843
494f4fc7
GM
16844 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
16845 filename is not a string.
16846
561580e9
CY
168472009-09-29 Chong Yidong <cyd@stupidchicken.com>
16848
16849 * files.el (safe-local-eval-forms): Fix typo.
16850
dcbbecd4
SM
168512009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
16852
16853 * vc-hooks.el (vc-dir-buffers): New var.
16854 (vc-state-refresh): New function.
16855 (vc-state): Use it.
16856 (vc-after-save): Always ask the backend to recompute the new state.
16857 Always call vc-dir if necessary, using vc-dir-buffers.
16858 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
16859 Use vc-dir-buffers.
16860 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
16861 (vc-dir-prepare-status-buffer, vc-dir-update)
16862 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
16863 Don't call expand-file-name on default-directory.
16864
d88444f2
JB
168652009-09-29 Juanma Barranquero <lekktu@gmail.com>
16866
16867 * speedbar.el (speedbar-item-delete):
16868 * calc/calc-prog.el (calc-kbd-if):
16869 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
16870
16871 * epa.el (epa-key-list-mode-map):
16872 * hi-lock.el (hi-lock-menu): Fix typos in menus.
16873
16874 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
16875 (hs-show-hook): Fix typo in docstring.
16876
5da62d41
GM
168772009-09-29 Glenn Morris <rgm@gnu.org>
16878
8360fce0
GM
16879 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
16880 file-name-nondirectory call preventing location of cedet files.
16881 (check-declare-verify): Use literal search rather than re-search.
ae715515 16882 Add basic defmethod and defclass, and define-overloadable-function.
8360fce0
GM
16883
16884 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
16885 Use tramp-compat-file-attributes rather than nonexistent
16886 tramp-compat-handle-file-attributes.
16887
5da62d41
GM
16888 * Makefile.in (lisptagsfiles4): New.
16889 (AUTOGENEL): Add cedet loaddefs files.
16890 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
16891 (update-elclist, compile-always, backup-compiled-files)
16892 (bootstrap-clean): Add yet another directory level.
16893 (update-elclist): Use LC_COLLATE rather than COLLATE.
16894 (ELCFILES): Update, via `make update-elclist'.
16895
48267264
JB
168962009-09-29 Juanma Barranquero <lekktu@gmail.com>
16897
16898 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
16899 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
16900 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
16901
2c4cd0b0
AS
169022009-09-28 Andreas Schwab <schwab@linux-m68k.org>
16903
16904 * Makefile.in (lisptagsfiles3): Define.
5da62d41 16905 (TAGS, TAGS-LISP): Use it.
2c4cd0b0
AS
16906 (update-elclist): Add third directory level to look for elc files.
16907 (compile-always): Likewise.
16908 (backup-compiled-files): Likewise.
16909 (bootstrap-clean): Likewise.
16910 (ELCFILES): Update.
16911
a2533e47
CY
169122009-09-28 Chong Yidong <cyd@stupidchicken.com>
16913
16914 * Makefile.in (ELCFILES): Add CEDET files.
16915
eefbedb1
MA
169162009-09-28 Michael Albinus <michael.albinus@gmx.de>
16917
16918 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
16919
16920 * net/tramp.el (top): Require tramp-imap.
16921
16922 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
16923 Use `tramp-compat-handle-file-attributes'.
16924
169252009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
16926
16927 * net/tramp-imap.el: New package.
16928
b0b111c3
JB
169292009-09-28 Eric Ludlam <zappo@gnu.org>
16930
16931 * emacs-lisp/chart.el:
16932 * emacs-lisp/eieio-base.el:
16933 * emacs-lisp/eieio-comp.el:
16934 * emacs-lisp/eieio-custom.el:
16935 * emacs-lisp/eieio-datadebug.el:
16936 * emacs-lisp/eieio-opt.el:
16937 * emacs-lisp/eieio-speedbar.el:
16938 * emacs-lisp/eieio.el: New files.
16939
748e3d67
VJL
169402009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16941
16942 * whitespace.el (whitespace-trailing-regexp)
16943 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
16944 Fix doc string.
16945
15120dec
CY
169462009-09-27 Chong Yidong <cyd@stupidchicken.com>
16947
16948 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
16949 menu.
16950
16951 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
16952 menu-bar-ediff-menu.
16953
16954 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
16955 define-overloadable-function.
16956
16957 * progmodes/autoconf.el: Provide autoconf as well, so that this
16958 file can be `require'd.
16959
16960 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
16961
16962 * emacs-lisp/autoload.el (generated-autoload-feature)
16963 (generated-autoload-load-name): New vars.
16964 (autoload-rubric, autoload-generate-file-autoloads): Use them.
16965 (make-autoload): Recognize define-overloadable-function and
16966 defclass forms (for EIEIO).
16967
16968 * Makefile.in (update-subdirs): Exclude cedet directory.
16969
135abf91
AR
169702009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
16971
1becddbb 16972 * term/ns-win.el: Don't set the region face background. (Bug#4381)
135abf91
AR
16973
16974 * faces.el: Default light-background background for region face to
16975 ns_selection_color under NS.
16976
3d994264
TZ
169772009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
16978
16979 * net/imap-hash.el: New library, see NEWS.
16980
16981 * Makefile.in (ELCFILES): Add imap-hash.el.
16982
ce9a0ccb
SM
169832009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
16984
16985 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
16986 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
16987 * help-macro.el (make-help-screen): Avoid using an ambiguous function
16988 definition where the docstring could be taken for the return value.
16989
a92cdd49
GM
169902009-09-26 Glenn Morris <rgm@gnu.org>
16991
16992 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
16993 Add option to only show images below a certain size.
16994 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
16995 save-excursion calls.
16996
416ac2f1
EZ
169972009-09-26 Eli Zaretskii <eliz@gnu.org>
16998
16999 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
17000 subdirectories) and eieio.
17001
d9a13f68
AM
170022009-09-26 Alan Mackenzie <acm@muc.de>
17003
6a7662bb
BR
17004 * progmodes/cc-engine.el (c-beginning-of-statement-1):
17005 Correct buggy bracketing. (Bug#4289)
d9a13f68
AM
17006
17007 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
550d95a0 17008 character constants (as case labels). (Bug#4289)
d9a13f68 17009
182b3bec
CY
170102009-09-25 Juri Linkov <juri@jurta.org>
17011
17012 * files.el (safe-local-eval-forms): Allow time-stamp in
17013 before-save-hook (Bug#4554).
17014
8f75f2da
JB
170152009-09-25 Drew Adams <drew.adams@oracle.com>
17016
17017 * menu-bar.el (list-buffers-directory): Doc fix.
17018
8390fb80
SM
170192009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
17020
17021 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
17022 Try and avoid copying twice the same paragraph.
17023 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
17024 Remove save-excursion.
17025 (log-edit-changelog-entry): Do it here instead.
17026
11ee8d90
JB
170272009-09-25 Juanma Barranquero <lekktu@gmail.com>
17028
027b1942
JB
17029 * bs.el (bs--get-file-name): Use `list-buffers-directory'
17030 when available, instead of hardcoding mode names. Doc fix.
17031
11ee8d90
JB
17032 * menu-bar.el (list-buffers-directory): Add docstring.
17033 Make automatically buffer-local.
17034
17035 * dired.el (dired-mode):
17036 * files.el (cd-absolute):
17037 * pcvs.el (cvs-temp-buffer):
17038 * pcvs-util.el (cvs-get-buffer-create):
17039 * shell.el (shell-mode):
17040 * vc-dir.el (vc-dir-mode):
17041 Don't make `list-buffers-directory' buffer local.
17042
21289c5d
CY
170432009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
17044
8390fb80
SM
17045 * comint.el (comint-exec, comint-run, make-comint):
17046 Doc fixes (Bug#4542).
21289c5d 17047
e8652dd9
GM
170482009-09-25 Glenn Morris <rgm@gnu.org>
17049
17050 * mail/rmailmm.el (rmail-mime): New custom group.
17051 Move all defcustoms in this file into this group.
17052 (rmail-mime-media-type-handlers-alist): Revert previous change.
17053 (rmail-mime-show-images): New option.
17054 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
17055 references to it, since it wasn't actually used for anything.
17056 (rmail-mime-insert-image): New function.
17057 (rmail-mime-image): Use rmail-mime-insert-image.
17058 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
69220882
GM
17059 obey the value of `rmail-mime-show-images' option. Print the size of
17060 attachments.
e8652dd9 17061
fb652bb5
JB
170622009-09-25 David Engster <deng@randomsample.de>
17063
17064 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
17065
32a9841c
VJL
170662009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17067
17068 * whitespace.el: Does not highlight trailing spaces While point is
17069 at end of line. Does not highligt spaces at beginning of buffer
17070 while point is at beginning of buffer. Does not highlight spaces
17071 at end of buffer while point is at end of buffer. (Bug#4177)
17072 New version 12.0.
17073 (whitespace-display-mappings): Adjust initialization.
17074 (whitespace-point, whitespace-font-lock-refontify): New vars.
17075 (whitespace-color-on, whitespace-color-off): Adjust code.
17076 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
17077 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
17078 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
17079
e477ca84
CY
170802009-09-24 Chong Yidong <cyd@stupidchicken.com>
17081
17082 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
17083
17084 * textmodes/sgml-mode.el: Remove xml-mode alias.
17085
17086 * files.el (auto-mode-alist, conf-mode-maybe)
8390fb80 17087 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
e477ca84 17088
68712602
AM
170892009-09-24 Alan Mackenzie <acm@muc.de>
17090
17091 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
17092 c-forward-conditionals, but it doesn't move point and doesn't set
17093 the mark.
17094 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
17095 (c-down-conditional-with-else, c-backward-conditional)
17096 (c-forward-conditional): Refactor to use c-scan-conditionals.
17097
1659ada0
JB
170982009-09-24 Juanma Barranquero <lekktu@gmail.com>
17099
17100 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
17101 (help-default-arg-highlight): Remove.
17102 (help-highlight-arg): New function.
17103 (help-do-arg-highlight): Use it.
17104 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
17105
b3f01e46
SM
171062009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
17107
17108 * term.el (term-set-scroll-region, term-handle-ansi-escape):
17109 Undo last change, which didn't fix the problem and introduced others.
17110
107ef54a
NR
171112009-09-24 Nick Roberts <nickrob@snap.net.nz>
17112
17113 * progmodes/gdb-mi.el: Don't require speedbar.
17114 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
17115
ffa1fed6
GM
171162009-09-24 Glenn Morris <rgm@gnu.org>
17117
2157a2be
GM
17118 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
17119
6125167c
GM
17120 * term/ns-win.el (ns-reg-to-script): Define for compiler.
17121
ffa1fed6
GM
17122 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
17123 there is no newline after the final mime boundary. (Bug#4539)
17124 Move markers on insertion so that any buttons inserted don't end up in
17125 the next part of a multipart message.
2e9075d3
GM
17126 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
17127 (rmail-mime-bulk-handler): Optionally handle images.
17128 (rmail-mime-image): New button action.
17129 (rmail-mime-image-handler): New function.
17130 (rmail-mime-mode): New mode.
17131 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
ffa1fed6 17132
4a814992
SM
171332009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
17134
075518b5
SM
17135 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
17136 than just dropping elements from it (bug#4504).
17137
8ad2defc
SM
17138 * term.el (term-set-scroll-region): Don't move cursor any more.
17139 (term-handle-ansi-escape): Call term-goto here instead.
17140 Suggested by Ivan Kanis <apple@kanis.eu>.
17141
4a814992
SM
17142 * term.el: Require CL.
17143 (term-ansi-reset): New function.
17144 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
17145 (term-handle-colors-array): Simplify.
17146
5a0c3f56
JB
171472009-09-24 Juanma Barranquero <lekktu@gmail.com>
17148
17149 * allout.el (allout-overlay-interior-modification-handler)
17150 (allout-obtain-passphrase):
17151 * epa-file.el (epa-file-write-region):
17152 * ps-print.el (ps-begin-job):
17153 * vc-hooks.el (vc-toggle-read-only):
17154 * vc-rcs.el (vc-rcs-rollback):
17155 * vc-sccs.el (vc-sccs-rollback):
17156 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
17157 (vc-version-diff, vc-revert, vc-rollback):
17158 * wdired.el (wdired-check-kill-buffer):
17159 * emacs-lisp/authors.el (authors):
17160 * net/socks.el (socks-open-connection):
17161 * net/zeroconf.el (zeroconf-service-add-hook):
17162 * obsolete/vc-mcvs.el (vc-mcvs-register):
17163 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
17164 (gdb-select-frame):
17165 * progmodes/grep.el (lgrep, rgrep):
17166 * progmodes/idlw-help.el (idlwave-help-check-locations)
17167 (idlwave-help-html-link, idlwave-help-assistant-open-link):
17168 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
17169 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
17170 (reftex-toc-rename-label): Fix typos in error messages.
17171
17172 * dired-aux.el (dired-do-shell-command): Reflow docstring.
17173 (dired-copy-how-to-fn): Doc fix.
17174 (dired-files-attributes, dired-read-shell-command):
17175 Fix typos in docstrings.
17176
17177 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
17178 (dired-x-find-file-other-window): Reflow docstrings.
17179 (dired-omit-marker-char, dired-read-shell-command)
17180 (dired-x-submit-report): Fix typos in docstrings.
17181
17182 * shell.el (shell-mode-hook):
17183 * view.el (View-scroll-line-forward):
17184 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
17185 Fix typos in docstrings.
17186
17187 * net/dig.el (dig-invoke): Fix typo in docstring.
17188 (query-dig): Reflow docstring.
17189
17190 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
17191 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
17192 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
17193 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
17194 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
17195 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
17196 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
17197 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
17198 (idlwave-completion-map, idlwave-current-indent)
17199 (idlwave-custom-ampersand-surround, idlwave-customize)
17200 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
17201 (idlwave-define-abbrev, idlwave-determine-class-special)
17202 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
17203 (idlwave-end-block-reg, idlwave-end-of-statement)
17204 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
17205 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
17206 (idlwave-explicit-class-listed, idlwave-file-header)
17207 (idlwave-fill-paragraph, idlwave-find-class-definition)
17208 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
17209 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
17210 (idlwave-in-quote, idlwave-indent-action-table)
17211 (idlwave-indent-expand-table, idlwave-indent-line)
17212 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
17213 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
17214 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
17215 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
17216 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
17217 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
17218 (idlwave-outlawed-buffers, idlwave-popup-select)
17219 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
17220 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
17221 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
17222 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
17223 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
17224 (idlwave-statement-type, idlwave-struct-skip)
17225 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
17226 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
17227 (idlwave-what-module-find-class): Fix typos in docstrings.
17228 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
17229 (idlwave-calculate-cont-indent, idlwave-expand-equal)
17230 (idlwave-find-module, idlwave-find-structure-definition)
17231 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
17232 (idlwave-list-load-path-shadows, idlwave-next-statement)
17233 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
17234 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
17235 (idlwave-template): Reflow docstrings.
17236
17237 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
17238 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
17239 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
17240 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
17241 (idlwave-shell-display-line, idlwave-shell-display-wframe)
17242 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
17243 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
17244 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
17245 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
17246 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
17247 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
17248 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
17249 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
17250 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
17251 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
17252 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
17253 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
17254 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
17255 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
17256 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
17257 Fix typos in docstrings.
17258 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
17259 (idlwave-shell-hide-output, idlwave-shell-mode)
17260 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
17261 Reflow docstrings.
17262
17263 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
17264
62136c5d
SM
172652009-09-24 Ivan Kanis <apple@kanis.eu>
17266
17267 * term.el (term-bold-attribute): New var.
17268 (term-handle-colors-array): Use it.
17269
9c1a45ed
NR
172702009-09-23 Nick Roberts <nickrob@snap.net.nz>
17271
17272 * progmodes/gdb-mi.el (gdb-version): New variable.
17273 (gdb-non-stop-handler): Set gdb-version.
17274 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
17275 Condition "--thread" option on gdb-version.
17276 (gdb-invalidate-threads): Remove unused argument.
17277
03304f31
SM
172782009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
17279
17280 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
17281 to looking-back to avoid ridiculous slow down in large files (bug#4511).
17282
4f02f0c9
GM
172832009-09-23 Glenn Morris <rgm@gnu.org>
17284
17285 * mail/rmail.el (rmail-reply): Don't try to add a References header when
17286 replying to mail without References or Message-Id. (Bug#4525)
17287
a3b4b363
AR
172882009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
17289
17290 * term/ns-win.el (ns-reg-to-script): New variable.
17291
7bda18cc
DU
172922009-09-23 Daiki Ueno <ueno@unixuser.org>
17293
17294 * epg.el (epg-wait-for-status): Preserve existing 'error results.
17295
72169e55
SS
172962009-09-22 Sam Steingold <sds@gnu.org>
17297
17298 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
71630ffe
SS
17299 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
17300 to 1 because hg returns status 1 when nothing is found.
0aa4f295 17301 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
72169e55 17302
905b7d38
SM
173032009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
17304
b0459dec
SM
17305 * textmodes/fill.el: Convert to utf-8 encoding.
17306 (fill-french-nobreak-p): Remove redundant » and « inherited from our
dd86ea11 17307 pre-Unicode days.
b0459dec 17308
905b7d38
SM
17309 * add-log.el (change-log-fill-forward-paragraph): New function.
17310 (change-log-mode): Use it so fill-region DTRT.
17311 Set fill-indent-according-to-mode here rather than in
17312 change-log-fill-paragraph.
17313 (change-log-fill-paragraph): Remove.
17314
baa7f3de
JB
173152009-09-22 Juanma Barranquero <lekktu@gmail.com>
17316
17317 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
17318 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
17319
a8d789f0
GM
173202009-09-22 Glenn Morris <rgm@gnu.org>
17321
daedbbc2
GM
17322 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
17323 the scroll-bar scroll the calendar window rather than the buffer.
17324
d8899a74
GM
17325 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
17326 commands that move point (as opposed to scrolling).
17327
a8d789f0
GM
17328 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
17329
17330 * emacs-lisp/elint.el (elint): New custom group.
17331 (elint-log-buffer): Make it a defcustom.
17332 (elint-scan-preloaded, elint-ignored-warnings)
17333 (elint-directory-skip-re): New options.
17334 (elint-builtin-variables): Doc fix.
17335 (elint-preloaded-env): New variable.
17336 (elint-unknown-builtin-args): Add an entry for encode-time.
17337 (elint-extra-errors): Make it a variable rather than a constant.
17338 (elint-preloaded-skip-re): New constant.
17339 (elint-directory): Skip files matching elint-directory-skip-re.
17340 (elint-features): New variable, local to linted buffers.
17341 (elint-update-env): Initialize elint-features. Possibly add
17342 elint-preloaded-env to the buffer's environment.
17343 (elint-get-top-forms): Bind elint-current-pos, for log messages.
17344 Skip quoted forms.
17345 (elint-init-form): New function, extracted from elint-init-env.
17346 Make non-list forms a warning rather than an error.
17347 Add the mode-map for define-derived-mode. Handle define-minor-mode,
17348 easy-menu-define, put that adds an error-condition, and provide.
17349 When requiring cl, also require cl-macs. Really require cl, to handle
17350 some cl macros. Store required libraries in the list elint-features,
17351 so as not to re-load them. Treat cc-require like require.
17352 (elint-init-env): Call elint-init-form to do the work.
17353 Handle eval-and-compile and such like.
17354 (elint-add-required-env): Do not clear messages.
17355 (elint-special-forms): Add handlers for function, defalias, if, when,
17356 unless, and, or.
17357 (elint-form): Add optional argument to ignore elint-special-forms,
17358 useful to prevent recursive calls from handlers. Doc fix.
17359 Respect elint-ignored-warnings.
17360 (elint-form): Respect elint-ignored-warnings.
17361 (elint-bound-variable, elint-bound-function): New variables.
17362 (elint-unbound-variable): Respect elint-bound-variable.
17363 (elint-get-args): Respect elint-bound-function.
17364 (elint-check-cond-form): Add some simple handling for (f)boundp and
17365 featurep tests.
17366 (elint-check-defalias-form): New handler.
17367 (elint-check-let-form): Make an empty let a warning rather than an
17368 error.
17369 (elint-check-setq-form): Make an empty setq a warning rather than an
17370 error. Respect elint-ignored-warnings.
17371 (elint-check-defvar-form): Accept null doc-strings.
17372 (elint-check-conditional-form): New handler. Does some simple-minded
17373 checking of featurep and (f)boundp tests.
17374 (elint-put-function-args): New function.
17375 (elint-initialize): Use elint-scan-doc-file rather than
17376 elint-find-builtin-variables. Use elint-put-function-args.
17377 Possibly scan preloaded-file-list.
17378 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
17379 extend to handle functions as well.
17380
245be23c
JB
173812009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
17382
17383 * linum.el (linum-delete-overlays, linum-update-window):
17384 Do not modify the right margin. (Bug#3971)
17385
91fdbd6f
CY
173862009-09-21 Chong Yidong <cyd@stupidchicken.com>
17387
6a7662bb
BR
17388 * files.el (conf-mode-maybe, magic-fallback-mode-alist):
17389 Use nxml-mode instead of xml-mode.
91fdbd6f 17390
7589d38e
JB
173912009-09-21 Kevin Ryde <user42@zip.com.au>
17392
17393 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
17394
5ac42715
SM
173952009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
17396
17397 * net/dig.el (dig-mode): Use define-derived-mode.
17398
09c01323
DN
173992009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
17400
4096c5f2
DN
17401 * vc-dispatcher.el (vc-do-command): Return the process object in
17402 the asynchronous case. Use when instead of if. Do not run
5480359e 17403 vc-exec-after to display a message if not enabled. (Bug#4463)
4096c5f2 17404
0e172cc2
DN
17405 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
17406 properties to the stash strings.
17407 (vc-git-stash-list): Return a list of strings.
17408 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
17409 (vc-git-stash-show-at-point): New functions.
17410 (vc-git-stash-map): New keymap.
17411
03304f31
SM
17412 * register.el (ctl-x-r-map): Define the keys here instead of
17413 using autoload.
09c01323 17414
03304f31 174152009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
e3f36d03
SM
17416
17417 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
17418 list, to workaround performance problem (bug#4485).
17419
2f5fc4d7
NR
174202009-09-20 Nick Roberts <nickrob@snap.net.nz>
17421
17422 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
17423
b0f5fd2e
DU
174242009-09-20 Daiki Ueno <ueno@unixuser.org>
17425
17426 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
17427 Document that this option is not recommended to use.
17428
f3445fab
GM
174292009-09-19 Glenn Morris <rgm@gnu.org>
17430
547c6921
GM
17431 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
17432 variable `var'.
17433
f3445fab
GM
17434 * calc/calc-alg.el (var):
17435 * calc/calcalg2.el (var): Define for compiler.
17436
946c009b
CY
174372009-09-19 Chong Yidong <cyd@stupidchicken.com>
17438
e3f36d03
SM
17439 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
17440 Doc fix (Bug#3932).
e2045997 17441
24aedbca
CY
17442 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
17443
327dd27a
CY
17444 * time-stamp.el (time-stamp-month-dd-yyyy)
17445 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
17446 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
17447 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
e3f36d03
SM
17448 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
17449 Remove functions that have been obsolete since 1995 (Bug#4436).
327dd27a 17450
946c009b
CY
17451 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
17452 indent buffer only if called interactively (Bug#4452).
17453
3e70541a 174542009-09-19 Juanma Barranquero <lekktu@gmail.com>
4e2af782 17455 Eli Zaretskii <eliz@gnu.org>
3e70541a
JB
17456
17457 This fixes bug#4197 (merged to bug#865, though not identical).
17458 * server.el (server-auth-dir): Add docstring note about FAT32.
17459 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
17460 but warn against using them.
17461
9b94c32e
NR
174622009-09-19 Nick Roberts <nickrob@snap.net.nz>
17463
17464 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
17465 older GDB where there is no has_more field.
17466
66590684
GM
174672009-09-19 Glenn Morris <rgm@gnu.org>
17468
17469 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
17470
9a1337f9
CY
174712009-09-18 Chong Yidong <cyd@stupidchicken.com>
17472
17473 * files.el (auto-mode-alist): Change default for XML files to nXML
17474 mode (Bug#4169).
17475
d7554167
JB
174762009-09-18 Juanma Barranquero <lekktu@gmail.com>
17477
17478 * server.el (server-ensure-safe-dir): Pass 'integer
17479 to `file-attributes', as suggested.
17480
35a3f9a4
SM
174812009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
17482
17483 * dired-aux.el (dired-query-alist): Remove spurious backslash.
17484 (dired-query): Use read-key.
17485
044f9b05
AR
174862009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
17487
17488 * cus-start.el (ns-use-qd-smoothing): Remove.
17489
6188ea49
GM
174902009-09-18 Glenn Morris <rgm@gnu.org>
17491
08cf18e4
GM
17492 * allout.el (top-level): Remove unnecessary progn.
17493
07eae5c5
GM
17494 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
17495
6726c25e
GM
17496 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
17497 definition of abbrev table.
17498
3f527154 17499 * speedbar.el (speedbar-track-mouse):
6188ea49
GM
17500 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
17501 * net/eudc.el (eudc-expand-inline):
770af4b4
GM
17502 * net/newst-backend.el (newsticker--cache-read-feed):
17503 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
6188ea49
GM
17504 condition-case handlers.
17505
ccb4c30c
NR
175062009-09-18 Nick Roberts <nickrob@snap.net.nz>
17507
17508 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
17509 (gdb-var-list): Add an element for has_more field.
17510 (gdb-non-stop-handler): Enable pretty printing for STL containers.
17511 (gdb-var-create-handler, gdb-var-list-children-handler-1)
17512 (gdb-var-update-handler-1): Parse output of dynamic variable
17513 objects (STL containers).
17514 (gdb-var-delete-1): Pass var1 as an explicit second argument.
17515 (gdb-get-field): Delete alias. Use bindat-get-field directly.
17516
17517 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
17518 gdb-var-list.
17519 (gud-speedbar-buttons): Make node expandable if expression "has more"
17520 children.
17521
8686ac71
JB
175222009-09-17 Juanma Barranquero <lekktu@gmail.com>
17523
17524 * startup.el (emacs-quick-startup): Remove variable and all uses.
17525 (command-line): Set `inhibit-x-resources' instead.
17526 (command-line-1): Use `inhibit-x-resources' instead.
17527
a69c67e8
CY
175282009-09-17 Chong Yidong <cyd@stupidchicken.com>
17529
17530 * subr.el: Fix last change to avoid using the `unless' macro,
17531 which breaks bootstrapping.
17532
354f0faf
SM
175332009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
17534
17535 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
17536 extended definitions, in case we reload subr.el after having
17537 loaded CL.
17538 (eval-next-after-load): Mark as obsolete.
17539
98b9bf40
JL
175402009-09-17 Juri Linkov <juri@jurta.org>
17541
17542 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
17543 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
17544 (menu-bar-showhide-menu, menu-bar-tools-menu)
17545 (menu-bar-describe-menu, menu-bar-help-menu)
17546 (minibuffer-local-completion-map, minibuffer-local-map):
17547 Fix list quoting.
17548
28fab7b5
GM
175492009-09-17 Glenn Morris <rgm@gnu.org>
17550
88d5190c
GM
17551 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
17552 arguments, whether or not it has a handler.
17553
74f24ba7
GM
17554 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
17555
28fab7b5
GM
17556 * simple.el (hard-newline): Give it a doc-string.
17557
a8106aec
GM
17558 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17559 (lisp-mode-syntax-table): Give them doc-strings.
e4a09a11 17560
76251ad7
DN
175612009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
17562
72033dbe
DN
17563 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
17564 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
17565 (menu-bar-options-menu, menu-bar-showhide-menu)
17566 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
17567 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
17568 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
17569 (menu-bar-options-menu, menu-bar-tools-menu)
17570 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
17571 (menu-bar-help-menu):
17572 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
17573 string arguments.
17574
76251ad7
DN
17575 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
17576 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
17577 calls for the menu names and :help.
17578
97b952b7
SM
175792009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
17580
17581 * mouse.el (minor-mode-menu-from-indicator): Pay attention
17582 to :minor-mode-function (bug#4455).
17583
8f38189e
SM
175842009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
17585
d2fd733e
SM
17586 * startup.el (command-line): Initialize the window-system after
17587 processing the command-line.
17588
8f38189e
SM
17589 * textmodes/page.el (what-page): Make sure we don't inf-loop if
17590 page-delimiter matches the empty string.
17591
77564fa4
GM
175922009-09-16 Glenn Morris <rgm@gnu.org>
17593
17594 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
17595 byte-compile-not-obsolete-var. It's a list now.
17596 (byte-compile-not-obsolete-funcs): New variable.
17597 (byte-compile-warn-obsolete): Don't warn about functions if they are in
17598 byte-compile-not-obsolete-funcs.
17599 (byte-compile-variable-ref, byte-compile-defvar): Update for
17600 byte-compile-not-obsolete-vars name-change and list nature.
17601 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
17602 and variables behind (f)boundp tests.
17603 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
17604
79d316d3
DN
176052009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
17606
17607 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
17608
8fed6934
SM
176092009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
17610
17611 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
17612 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
17613 Don't autoload.
17614
4078fd57
SE
176152009-09-15 Stephen Eglen <stephen@gnu.org>
17616
17617 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
5a0c3f56 17618 the virtual-buffers, use the name of the buffer specified by
4078fd57 17619 find-file-noselect, as the match may be a symlink. (This was a
5a0c3f56 17620 problem if the target and the symlink had different names.)
4078fd57 17621
838ff458
SM
176222009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
17623
b3c7c12d
SM
17624 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
17625
13dc2bc2
SM
17626 * desktop.el (desktop-path): Check user-emacs-directory.
17627
49fec531
SM
17628 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
17629
0e328d37
SM
17630 * loadup.el: Use after-load-functions to GC after loading each file.
17631 Remove the explicit GC calls that used to be sprinkled around.
17632
838ff458
SM
17633 * subr.el (after-load-functions): New hook.
17634 (do-after-load-evaluation): Run it. Use string-match-p to detect
17635 `obsolete' packages, rather than painfully extracting the relevant
17636 directory name.
17637
a62f564f
GM
176382009-09-15 Glenn Morris <rgm@gnu.org>
17639
17640 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
17641 free variable `doc'.
17642
17643 * dired.el (dired-mode-map): Add menu entry for async shell command.
17644
17645 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
17646 variables, also consider the .elc files, since the .el files are
17647 normally gzipped (subsequent code locates the .el.gz from the .elc).
17648
17649 * calc/calc-prog.el (arglist): Define for compiler.
17650
17651 * calendar/diary-lib.el (diary-display-function): Change the default to
17652 fancy display.
17653 (body): Define for compiler.
17654
17655 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
17656 (byte-compile-file-form, byte-compile-lambda)
17657 (byte-compile-top-level-body, byte-compile-form)
17658 (byte-compile-variable-ref, byte-compile-setq)
17659 (byte-compile-setq-default, byte-compile-body)
17660 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
17661 (batch-byte-compile): Give some more local variables with common names
17662 a "bytecomp-" prefix to avoid masking warnings about free variables.
17663
cd05fe7f
GM
17664 * startup.el (command-line-1): Give local variables with common names a
17665 distinguishing prefix, so as not to hide free variable warnings during
17666 bootstrap.
17667
a62f564f
GM
17668 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
17669 clever and add a suffix to make a unique name, just let the user decide
17670 whether or not to overwrite it. If the input is a directory, write the
17671 default filename to that directory. (Bug#4388)
17672 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
17673 is a filename-as-a-directory.
17674
fbc88440
SM
176752009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
17676
17677 * textmodes/page.el (what-page): Don't move to beginning of line.
17678 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
17679
60308853
DN
176802009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
17681
17682 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
17683
32ba3abc
DN
176842009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
17685
9cd39aff
DN
17686 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
17687 * help.el (help-for-help-internal): Add purecopy calls for text.
17688
32ba3abc
DN
17689 * vc.el (top): print-log method now takes an optional SHORTLOG
17690 argument. Add a new method: root.
32ba3abc
DN
17691 (vc-root-diff, vc-print-root-log): New functions.
17692 (vc-log-short-style): New variable.
17693 (vc-print-log-internal): Add support for showing short logs.
17694
17695 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
17696 vc-print-root-log and vc-print-root-diff.
17697
17698 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
17699 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
17700 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
17701 short logs.
17702
17703 * vc-cvs.el (vc-cvs-print-log):
17704 * vc-mtn.el (vc-mtn-print-log):
17705 * vc-rcs.el (vc-rcs-print-log):
17706 * vc-sccs.el (vc-sccs-print-log):
17707 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
17708 that is ignored for now.
17709
837b0e99
DN
17710 * vc-mtn.el (vc-mtn-annotate-command):
17711 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
17712
31cd2dd4
SM
177132009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
17714
17715 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
17716 to function-key-map, and give them ascii-character property.
17717 * term/x-win.el (x-alternatives-map):
17718 * term/ns-win.el (ns-alternatives-map):
17719 * term/internal.el (msdos-key-remapping-map):
17720 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
17721
d62e5bf2
GM
177222009-09-14 Glenn Morris <rgm@gnu.org>
17723
17724 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
17725 temp-buffers (2009-09-12).
17726
7d0105e5
SM
177272009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
17728
17729 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
17730 the new read-key function.
17731
e17ed9ad
CY
177322009-09-13 Chong Yidong <cyd@stupidchicken.com>
17733
17734 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
17735 is defined (Bug#4405).
17736
1fc26e29
CY
177372009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
17738
17739 * recentf.el (recentf-cleanup): Use a hash table to find
17740 duplicates (Bug#4407).
17741
61dc96a2 177422009-09-13 Per Starbäck <per@starback.se> (tiny change)
7e73ea32
CY
17743
17744 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
17745 kp-0 to ascii equivalents (Bug#4325).
17746
42c3a9e3
CY
177472009-09-13 Chong Yidong <cyd@stupidchicken.com>
17748
1f5c1626
CY
17749 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
17750
42c3a9e3 17751 * eshell/em-hist.el:
31cd2dd4
SM
17752 * eshell/em-dirs.el (eshell-complete-user-reference):
17753 Declare pcomplete functions and variables to avoid compiler warnings.
42c3a9e3
CY
17754
177552009-09-13 Leo <sdl.web@gmail.com> (tiny change)
17756
17757 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
17758 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
17759 * eshell/em-alias.el (eshell-aliases-file):
31cd2dd4
SM
17760 * eshell/em-hist.el (eshell-history-file-name):
17761 Use expand-file-name instead of concat to make file names (Bug#4308).
42c3a9e3 17762
1e2b6acf
GM
177632009-09-13 Glenn Morris <rgm@gnu.org>
17764
17765 * ediff-merg.el (ediff-do-merge):
17766 * filesets.el (filesets-run-cmd):
17767 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
17768 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
17769 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
17770 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
17771 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
17772 Replace empty `let's with `progn'.
17773
adba8116
SM
177742009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
17775
17776 * mail/sendmail.el (send-mail-function):
17777 * tooltip.el (tooltip-mode):
17778 * simple.el (transient-mark-mode):
17779 * rfn-eshadow.el (file-name-shadow-mode):
17780 * frame.el (blink-cursor-mode):
17781 * font-core.el (global-font-lock-mode):
17782 * files.el (temporary-file-directory)
17783 (small-temporary-file-directory, auto-save-file-name-transforms):
17784 * epa-hook.el (auto-encryption-mode):
17785 * composite.el (global-auto-composition-mode):
17786 Use custom-initialize-delay.
17787 * startup.el (command-line): Don't explicitly call
17788 custom-reevaluate-setting for all the above vars.
17789 * custom.el (custom-initialize-safe-set)
17790 (custom-initialize-safe-default): Delete.
17791
0a4afea9
SM
177922009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
17793
9f94990d
SM
17794 * term/x-win.el (x-initialize-window-system):
17795 * term/w32-win.el (w32-initialize-window-system):
17796 * term/ns-win.el (ns-initialize-window-system): Don't call
17797 mouse-wheel-mode since it's enabled globally by default already.
17798
0a4afea9
SM
17799 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
17800 actually define the variable, but only silences the byte-compiler.
17801 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
17802 before looking it up.
17803 (mouse-wheel-scroll-amount): Also reset the bindings if this value
17804 is changed.
17805
bf01513f
GM
178062009-09-12 Glenn Morris <rgm@gnu.org>
17807
17808 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
17809 1000.
17810 (elint-add-required-env): Don't beep on error.
17811 (elint-forms): In case of error, return ENV unchanged.
afdceaec
GM
17812 (elint-init-env): Skip non-list forms.
17813 (elint-log): Handle unknown file positions.
bf01513f 17814
d85889e4
DU
178152009-09-12 Daiki Ueno <ueno@unixuser.org>
17816
17817 * epg.el (epg-make-context): Add autoload cookie.
17818 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
17819 (epg-decrypt-string, epg-start-verify, epg-verify-file)
17820 (epg-verify-string, epg-start-sign, epg-sign-file)
17821 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
17822 (epg-encrypt-string, epg-start-export-keys)
17823 (epg-export-keys-to-file, epg-export-keys-to-string)
17824 (epg-start-import-keys, epg-import-keys-from-file)
17825 (epg-import-keys-from-string, epg-start-receive-keys)
17826 (epg-receive-keys, epg-import-keys-from-server)
17827 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
17828 (epg-sign-keys, epg-start-generate-key)
0a4afea9
SM
17829 (epg-generate-key-from-file, epg-generate-key-from-string):
17830 Remove autoload cookie.
d85889e4 17831
8f825ee6
EZ
178322009-09-12 Eli Zaretskii <eliz@gnu.org>
17833
36b434ee
EZ
17834 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
17835 reevaluation of trash-directory.
17836
8f825ee6
EZ
17837 * mwheel.el: Fix last change.
17838 (mouse-wheel-mode): New defvar.
17839 (mouse-wheel-mode): Remove autoload cookie.
17840
5766c380
SM
178412009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
17842
ab5c0fcd
SM
17843 * mwheel.el (mwheel-installed-bindings): New var.
17844 (mouse-wheel-mode): Use it, so as to make sure we really remove all
17845 the bindings we set last time. Use custom-initialize-delay.
17846 * loadup.el: Load mwheel after term/*-win.el.
17847 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
17848 and mouse-wheel-up-event now that their first evaluation is done
17849 sufficiently late to be correct.
17850
45448e64
SM
17851 * startup.el (tutorial-directory): Make it a defcustom.
17852 Use custom-initialize-delay rather than eval-at-startup to set it.
17853 * image.el (image-load-path): Make it a defcustom.
17854 Use custom-initialize-delay rather than eval-at-startup to set it.
17855 * subr.el (eval-at-startup): Remove.
17856 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
17857
5766c380
SM
17858 * subr.el (do-after-load-evaluation): Warn the user after loading an
17859 obsolete package.
17860
d6549da4
GM
178612009-09-12 Glenn Morris <rgm@gnu.org>
17862
17863 * proced.el (proced-mark-alt): Remove alias.
17864 (proced-mode-map): Remove proced-mark-alt.
17865
17866 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
17867 Elint file and directory. Remove initialization entry.
17868
17869 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
17870 commands.
17871 (elint-current-buffer): Set mode-line-process.
17872 (elint-init-env): Handle define-derived-mode.
17873 Fix declare-function with unspecified arglist. Guard against odd
17874 defalias statements (eg iso-insert's 8859-1-map).
17875 (elint-add-required-env): Use a temp buffer.
17876 (elint-form): Just print the function/macro name, not the whole form.
17877 Return env unchanged if we fail to parse a macro.
17878 (elint-forms): Guard against parse errors.
17879 (elint-output): New function, to handle batch mode.
17880 (elint-log-message): Add optional argument. Use elint-output.
17881 (elint-set-mode-line): New function.
17882
30194d4d
CY
178832009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
17884
17885 * emacs-lisp/elp.el (elp-not-profilable): Add more
17886 functions (Bug#4233).
17887
a035f9b0
CY
178882009-09-12 Chong Yidong <cyd@stupidchicken.com>
17889
17890 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
17891 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
17892
dad61164
NR
178932009-09-11 Nick Roberts <nickrob@snap.net.nz>
17894
17895 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
17896 (gdb-var-list-children): Use json parsing.
17897
9c3c9fdf 178982009-09-11 Daniel Colascione <dan.colascione@gmail.com>
34cab3d9
CY
17899
17900 * progmodes/js.el (js--proper-indentation): Handle the case where
17901 char-before is null. Reported by Deniz Dogan.
17902
b4587710
JB
179032009-09-11 Juanma Barranquero <lekktu@gmail.com>
17904
17905 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
17906
13890796
DU
179072009-09-11 Daiki Ueno <ueno@unixuser.org>
17908
17909 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
17910 (epg-digest-algorithm-alist): Add SHA224.
b18508dd 17911 (epg-context-set-passphrase-callback)
97d4bdba 17912 (epg-context-set-progress-callback): Add description about
b18508dd 17913 callback function.
13890796 17914
2efb64a8
SM
179152009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
17916
790d0270
SM
17917 * custom.el (custom-delayed-init-variables): New var.
17918 (custom-initialize-delay): New function.
17919 * startup.el (command-line): "Re"evaluate all vars in
17920 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
17921 explicitly any more.
17922 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
17923 to avoid creating a ~/.emacs.d at build-time (bug#4347).
17924
17925 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
2efb64a8 17926
ac243a40
NR
179272009-09-11 Nick Roberts <nickrob@snap.net.nz>
17928
17929 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
17930 (gdb-var-update-handler): Use json parsing.
17931
657bc6fc
JB
179322009-09-11 Juanma Barranquero <lekktu@gmail.com>
17933
17934 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
17935 decode annotated text, regardless of language environment. (Bug#2741)
17936
b6fe8102
SM
179372009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
17938
17939 * Makefile.in (autoloads): Make rmail.el writable as well.
17940
5cc443fe
GM
179412009-09-11 Glenn Morris <rgm@gnu.org>
17942
5515c54e
GM
17943 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
17944 loaddefs.el.
17945 * dired.el: Regenerate with extracted autoloads.
17946 * Makefile.in (autoloads): Make dired.el writable.
17947
15067158
GM
17948 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
17949 * ibuffer.el: Regenerate with extracted autoloads.
17950 * Makefile.in (autoloads): Make ibuffer.el writable.
17951
d35d0238
GM
17952 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
17953 * version.el (emacs-copyright, emacs-major-version)
17954 (emacs-minor-version): Reformat doc-strings for make-docfile.
17955
5cc443fe
GM
17956 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
17957 functions and variables, since they must be stuff specific to some other
17958 platform.
17959 (apropos-print): Make mouse-click message less specific about button.
17960
17961 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
17962 that records where a macro was defined.
17963 * help-fns.el (describe-function-1): Mention if a function has a
17964 compiler-macro.
17965 * help-mode.el (help-function-cmacro): New button.
17966
17967 * locate.el (top-level): Always require dired.
17968 (locate-mode-map): Initialize inside the defvar.
17969
17970 * net/ange-ftp.el (dired-compress-file): Declare.
17971 (ange-ftp-dired-compress-file): Add doc string.
17972
17973 * term/ns-win.el (x-display-name, x-setup-function-keys):
17974 Unify doc-strings with X versions.
17975
8cb95edf
SM
179762009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
17977
726a4d09
SM
17978 * emulation/crisp.el (crisp-mode-map): Move initialization
17979 into declaration.
17980 (crisp-mode): Use define-minor-mode.
17981
8cb95edf
SM
17982 * progmodes/xscheme.el (xscheme-evaluation-commands):
17983 Put a :advertised-binding property rather than using
17984 advertised-xscheme-send-previous-expression.
17985 (advertised-xscheme-send-previous-expression): Declare obsolete.
17986 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
17987 `advertised-undo'.
17988 (crisp-mode): Add corresponding bindings to
17989 undo's :advertised-binding instead.
17990 * dired.el (dired-mode-map): Put a :advertised-binding property rather
17991 than using dired-advertised-find-file.
17992 (dired-advertised-find-file):
17993 * simple.el (advertised-undo):
17994 * wid-edit.el (advertised-widget-backward): Declare obsolete.
17995 (widget-keymap): Put a :advertised-binding property rather
17996 than using advertised-widget-backward.
17997 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
17998 than using advertised-undo.
17999 * tutorial.el (tutorial--default-keys): Adjust accordingly.
18000
07db5857
SS
180012009-09-10 Simon South <ssouth@slowcomputing.org>
18002
18003 * progmodes/delphi.el (delphi-tab): Indent region when Transient
18004 Mark mode is enabled and region is active; otherwise indent or
18005 insert TAB as usual.
18006 (delphi-mode): Update description of TAB-key binding.
18007
50d4ba39
SM
180082009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
18009
18010 * subr.el (define-key-rebound-commands): Mark obsolete.
18011 * startup.el (precompute-menubar-bindings): Remove.
18012 (normal-top-level): Remove obsolete code that tried to precompute
18013 menubar bindings.
18014 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
18015 define-key-rebound-commands and precompute-menubar-bindings.
18016
ffa894db
KY
180172009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
18018
18019 * net/imap.el (imap-interactive-login): Better messages.
18020 (imap-open): Fix bug with renamed buffer on reconnect.
18021 (imap-authenticate): Add buffer-local imap-last-authenticator variable
18022 for easier debugging and cleaner code. On successful (guessed based on
18023 server capabilities) secondary authentication, set imap-state
18024 correctly.
18025 (imap-last-authenticator): Define imap-last-authenticator as a variable
18026 to avoid warnings.
18027
9477096c
GM
180282009-09-10 Glenn Morris <rgm@gnu.org>
18029
18030 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
18031
18032 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
18033 (byte-compile-file-form-autoload): Don't warn about unknown functions
18034 where the autoload statement comes after the use.
18035 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
18036 that any handlers inside the body (eg require) are in turn respected.
18037
18038 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
18039 effects.
18040
18041 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
18042 and syntax and abbrev tables basic docs, if they don't have any.
18043
18044 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
18045
18046 * international/mule-cmds.el (top-level): Require cl when compiling.
18047 (view-hello-file): Use default-value rather than
18048 default-enable-multibyte-characters.
18049
18050 * progmodes/fortran.el: Move all safe and risky properties into the
18051 defcustoms.
18052
18053 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
18054 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
18055 * mail/undigest.el:
18056 Put autoloads in rmail.el rather than loaddefs.el.
18057 * mail/rmail.el: Regenerate with extracted autoloads.
18058
18059 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
18060 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
18061
9f16c547
NR
180622009-09-10 Nick Roberts <nickrob@snap.net.nz>
18063
18064 Reported in thread for Bug#4375.
18065 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
18066 "-data-evaluate-expression" instead of print.
18067 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
18068 (gdb-tooltip-print): Parse output from above MI command.
7ab133d1
NR
18069 (gdb): Revert 2009-08-11 change. User should detach inferior
18070 manually.
9f16c547
NR
18071
18072 Remove the word "separate" from IO functions as inferior
18073 output is now never displayed in the GUD buffer.
18074
50405cd0
JB
180752009-09-10 Juanma Barranquero <lekktu@gmail.com>
18076
18077 * startup.el (command-line-normalize-file-name): On Windows and
18078 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
18079
7ae62430
JL
180802009-09-10 Juri Linkov <juri@jurta.org>
18081
18082 * isearch.el (isearch-text-char-description): Propertize escape
18083 character sequences with the `escape-glyph' face. (Bug#4344)
18084
18085 * simple.el (shell-command): Set asynchronous process filter to
18086 `comint-output-filter'. (Bug#4343)
18087
18088 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
18089 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
18090 the list. Move "asm" to the bottom.
18091 (grep-find-ignored-directories): Add `choice' with nil value
18092 to empty the list easily.
18093 (grep-find-ignored-files): New option.
18094 (grep-files-history): Set to nil by default instead of '("ch" "el").
18095 (grep-compute-defaults): Add "<X>" to `grep-template'.
18096 (grep-read-files): Bind new local variables `default-alias' and
18097 `default-extension'. Use a list of default values for the file prompt.
18098 (lgrep): Add `--exclude=' command line options composed from
18099 `grep-find-ignored-files'.
18100 (rgrep): Add `-name' command line options composed from
18101 `grep-find-ignored-files'. (Bug#4301)
18102
cd875252
SM
181032009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
18104
18105 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
18106 (bug#4368).
18107
cdce0b33
KY
181082009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
18109
18110 * calendar/time-date.el (autoload):
18111 Expand define-obsolete-function-alias into defalias and make-obsolete
18112 for old Emacsen that Gnus supports.
18113 (with-no-warnings): Define it for old Emacsen.
18114 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
18115 is available.
18116 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
18117 float-time is available; suppress compile warning for time-to-seconds.
18118
181192009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
18120
18121 * net/imap.el (imap-message-map): Docstring fix.
18122
2b2eb431
GM
181232009-09-09 Glenn Morris <rgm@gnu.org>
18124
18125 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
18126 line numbers too. (Bug#4374)
18127
83a5aac5
SM
181282009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
18129
755e0210
SM
18130 * smerge-mode.el (smerge-remove-props, smerge-refine):
18131 Use with-silent-modifications (bug#4342).
18132
83a5aac5
SM
18133 * subr.el (with-silent-modifications): New macro.
18134
79f01fa7
JB
181352009-09-07 Juanma Barranquero <lekktu@gmail.com>
18136
18137 * files.el (top-level): Require `cl' when compiling.
18138
448ecec3
GM
181392009-09-07 Glenn Morris <rgm@gnu.org>
18140
18141 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
18142
8f09a02f
GM
18143 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
18144 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
18145
76ff67bf
NR
181462009-09-06 Nick Roberts <nickrob@snap.net.nz>
18147
18148 * vc-git.el (vc-git-annotate-command): Use separator to parse
18149 arguments correctly.
18150
943c8b75
EZ
181512009-09-06 Eli Zaretskii <eliz@gnu.org>
18152
18153 * proced.el (proced-mode): Doc fix.
18154
680db9ac
MA
181552009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
18156
18157 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
18158 lstat fails.
18159 (tramp-do-file-attributes-with-ls): Check for file existence at
18160 remote end.
18161 (tramp-do-file-attributes-with-stat): Likewise.
18162 (tramp-convert-file-attributes): Return nil when attr is nil.
18163
3f12e5bd
GM
181642009-09-05 Glenn Morris <rgm@gnu.org>
18165
c8dc27bf
GM
18166 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
18167 properties to this button.
18168 (diary-fancy-display): Don't extend the button to the final newline.
18169 (diary-fancy-display-mode): Continue to define "q" as a local key.
18170
cca065d8
GM
18171 * calendar/cal-china.el (holiday-chinese): Make it slightly more
18172 efficient.
18173
cddaedb6
GM
18174 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
18175
3f12e5bd
GM
18176 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
18177 (byte-compile-dest-file-function): New option.
18178 (byte-compile-dest-file): Doc fix.
18179 Obey byte-compile-dest-file-function.
18180 (byte-compile-cl-file-p): New function.
18181 (byte-compile-eval): Only suppress noruntime warnings about cl functions
18182 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
18183 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
18184 than for file being previously loaded.
18185 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
18186 (byte-compile-file-form-require): Handle the case where requiring a file
18187 indirectly causes CL to be loaded.
18188
049a231b
KF
181892009-09-05 Karl Fogel <kfogel@red-bean.com>
18190
18191 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
18192 before killing the old buffer, since by the time `kill-buffer' is
18193 run so many buffer variables have been set to nil that it may not
18194 behave as expected. (Bug#4061)
18195
ef7ef2a0
KF
181962009-09-05 Karl Fogel <kfogel@red-bean.com>
18197
18198 * files.el (find-alternate-file): If the old buffer is modified
18199 and visiting a file, behave similarly to `kill-buffer' when
18200 killing it, thus reverting to the pre-1.878 behavior; see
18201 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
18202 for discussion. Also, consult `buffer-file-name' as a variable
18203 not as a function, for consistency with the rest of the code.
18204
73d854cd
MA
182052009-09-04 Michael Albinus <michael.albinus@gmx.de>
18206
18207 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
18208 also when adding a new directory.
18209
6a7662bb
BR
18210 * net/tramp-compat.el (tramp-compat-line-beginning-position):
18211 New defun.
73d854cd 18212
df120481
SM
182132009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
18214
18215 * files.el (locate-file-completion-table): Make it provide boundary
18216 information, so partial-completion works better.
18217
c0bc6d79
SM
182182009-09-04 Leo <sdl.web@gmail.com> (tiny change)
18219
18220 * mail/footnote.el (Footnote-text-under-cursor):
18221 Check footnote-text-marker-alist before using it (bug#4324).
18222
f76a9756
GM
182232009-09-04 Glenn Morris <rgm@gnu.org>
18224
67d110f1
GM
18225 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
18226 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
18227 * play/solitaire.el, play/tetris.el:
18228 Remove leading * from defcustom and defface docs.
18229
b42d4989
GM
18230 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
18231 necessary.
18232 (diary-fancy-overriding-map): New variable.
18233 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
18234 Use view-mode.
18235
f76a9756
GM
18236 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
18237 goto-line.
18238
e605eeeb
GM
182392009-09-03 Glenn Morris <rgm@gnu.org>
18240
597e2240
GM
18241 * arc-mode.el (archive-mode):
18242 * dos-fns.el (set-default-process-coding-system):
18243 * man.el (Man-getpage-in-background):
18244 * menu-bar.el (menu-bar-describe-menu):
18245 * server.el (server-process-filter):
18246 * startup.el (command-line):
18247 * tar-mode.el (tar-header-block-tokenize, tar-extract):
18248 * w32-fns.el (set-default-process-coding-system):
18249 * x-dnd.el (x-dnd-handle-file-name):
18250 * international/mule-cmds.el (mule-menu-keymap)
18251 (set-default-coding-systems, language-info-alist, set-language-info)
18252 (set-language-environment, standard-display-european-internal)
18253 (set-locale-environment):
18254 * international/mule-diag.el (mule-diag):
18255 * mail/emacsbug.el (report-emacs-bug):
18256 * mail/rmail.el (rmail-mode):
18257 * mail/sendmail.el (mail-setup):
18258 Use default-value rather than default-enable-multibyte-characters.
18259
f38184aa
GM
18260 * progmodes/f90.el: Move all safe properties into the defcustoms.
18261 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
18262
e605eeeb
GM
18263 * calendar/appt.el (appt-check):
18264 * calendar/diary-lib.el (diary-set-header, diary-live-p)
18265 (diary-check-diary-file, diary-list-entries)
18266 (diary-include-other-diary-files, diary-simple-display)
18267 (diary-fancy-display, diary-print-entries)
18268 (diary-mark-included-diary-files, diary-make-entry):
18269 Don't call substitute-in-file-name on diary-file.
18270
734db384 182712009-09-03 Eduard Wiebe <usenet@pusto.de>
4e2af782 18272 Stefan Monnier <monnier@iro.umontreal.ca>
734db384
SM
18273
18274 * mail/footnote.el (footnote-prefix): Make it a defcustom.
18275 (footnote-mode-map): Move initialization into the declaration.
18276 (footnote-minor-mode-map): Define it rather than changing global-map.
18277 (footnote-mode): Use define-minor-mode.
18278
e5aa47f9
MA
182792009-09-02 Michael Albinus <michael.albinus@gmx.de>
18280
18281 * net/tramp.el (tramp-handle-file-attributes-with-ls)
18282 (tramp-do-file-attributes-with-perl)
18283 (tramp-do-file-attributes-with-stat): Rename from
18284 `tramp-handle-file-attributes-with-*'.
18285 (tramp-handle-file-attributes): Use them.
18286 (tramp-do-directory-files-and-attributes-with-perl)
18287 (tramp-do-directory-files-and-attributes-with-stat): Rename from
18288 `tramp-handle-directory-files-and-attributes-with-*'.
18289 (tramp-handle-directory-files-and-attributes): Use them.
18290 (tramp-method-out-of-band-p): Additional parameter SIZE.
18291 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
18292 (tramp-handle-write-region): Use it.
734db384 18293 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
e5aa47f9
MA
18294 (tramp-handle-vc-registered): Check, whether the first run did
18295 return files to be tested.
18296 (tramp-advice-make-auto-save-file-name): Do not call directly
18297 `tramp-handle-make-auto-save-file-name', because this would bypass
18298 the locking mechanism.
18299
734db384 18300 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
e5aa47f9
MA
18301 (file-remote-p, process-file, start-file-process, set-file-times)
18302 (tramp-compat-file-attributes): Compatibility functions shall not
18303 call directly `tramp-handle-*', because this would bypass the
18304 locking mechanism.
18305 (tramp-compat-number-sequence): New defun.
18306
6e2ca895
GM
183072009-09-02 Glenn Morris <rgm@gnu.org>
18308
697c7714
GM
18309 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
18310 alias for float-time.
18311 (time-to-number-of-days): In Emacs, use float-time.
18312 * net/newst-backend.el (time-add): Suppress warnings from compat
18313 function.
18314 * time.el (emacs-uptime, emacs-init-time):
18315 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
18316 Use float-time rather than time-to-seconds.
18317
6e2ca895
GM
18318 * minibuffer.el (completion-initials-expand): Fix typo.
18319
18320 * faces.el (modeline, modeline-inactive, modeline-highlight)
18321 (modeline-buffer-id):
18322 * info.el (info-menu-5): Mark these face aliases as obsolete.
18323
ed17efec
NR
183242009-09-01 Nick Roberts <nickrob@snap.net.nz>
18325
18326 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
18327 space ...
18328 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
18329 no "--thread" option.
18330 (gdb-stopped): Don't print "Switched to thread" message when it is
18331 unchanged.
18332
fcb68f70
SM
183332009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
18334
18335 * minibuffer.el (completion-try-completion)
18336 (completion-all-completions): Remove ill-defined (and
18337 mistakenly installed and luckily never used nor documented)
18338 `completion-styles' property.
18339 (completion-initials-expand, completion-initials-all-completions)
18340 (completion-initials-try-completion): New functions.
18341 (completion-styles-alist): Add doc to each entry.
18342 Add new `initials' entry.
18343
83318a6d
NR
183442009-09-01 Nick Roberts <nickrob@snap.net.nz>
18345
18346 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
18347 MI command -var-evaluate-expression.
18348 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
18349 and tweak for case of string child.
734db384 18350 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
83318a6d 18351
d63eb0e7
GM
183522009-09-01 Glenn Morris <rgm@gnu.org>
18353
c4f6e489
GM
18354 * add-log.el (change-log-date-face, change-log-name-face)
18355 (change-log-email-face, change-log-file-face, change-log-list-face)
18356 (change-log-conditionals-face, change-log-function-face)
18357 (change-log-acknowledgement-face):
18358 * cus-edit.el (custom-invalid-face, custom-rogue-face)
18359 (custom-modified-face, custom-set-face, custom-changed-face)
18360 (custom-saved-face, custom-button-face, custom-button-pressed-face)
18361 (custom-documentation-face, custom-state-face, custom-comment-face)
18362 (custom-comment-tag-face, custom-variable-tag-face)
18363 (custom-variable-button-face, custom-face-tag-face)
18364 (custom-group-tag-face-1, custom-group-tag-face):
18365 * diff-mode.el (diff-header-face, diff-file-header-face)
18366 (diff-index-face, diff-hunk-header-face, diff-removed-face)
18367 (diff-added-face, diff-changed-face, diff-function-face)
18368 (diff-context-face, diff-nonexistent-face):
18369 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
18370 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
18371 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
18372 (Info-title-4-face):
18373 * isearch.el (isearch-lazy-highlight-face):
18374 * log-view.el (log-view-file-face, log-view-message-face):
18375 * paren.el (show-paren-match-face, show-paren-mismatch-face):
18376 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
18377 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
18378 (cvs-msg-face):
18379 * smerge-mode.el (smerge-mine-face, smerge-other-face)
18380 (smerge-base-face, smerge-markers-face):
18381 * wid-edit.el (widget-documentation-face, widget-button-face)
18382 (widget-field-face, widget-single-line-field-face)
18383 (widget-inactive-face, widget-button-pressed-face):
18384 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
18385 (woman-addition-face):
2fb1ec93
GM
18386 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
18387 (eshell-ls-executable-face, eshell-ls-readonly-face)
18388 (eshell-ls-unreadable-face, eshell-ls-special-face)
18389 (eshell-ls-missing-face, eshell-ls-archive-face)
18390 (eshell-ls-backup-face, eshell-ls-product-face)
18391 (eshell-ls-clutter-face):
18392 * eshell/em-prompt.el (eshell-prompt-face):
18393 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
c4f6e489 18394 * obsolete/old-whitespace.el (whitespace-highlight-face):
0142e36b
GM
18395 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
18396 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
18397 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
18398 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
18399 (antlr-font-lock-literal-face):
c4f6e489
GM
18400 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
18401 (ebrowse-root-class-face, ebrowse-file-name-face)
18402 (ebrowse-default-face, ebrowse-member-attribute-face)
18403 (ebrowse-member-class-face, ebrowse-progress-face):
18404 * progmodes/make-mode.el (makefile-space-face):
18405 * progmodes/sh-script.el (sh-heredoc-face):
18406 * textmodes/flyspell.el (flyspell-incorrect-face)
18407 (flyspell-duplicate-face):
18408 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
49c539a1 18409 * textmodes/texinfo.el (texinfo-heading-face):
c4f6e489
GM
18410 Mark face aliases with "-face" suffix as obsolete.
18411
d80619fa
GM
18412 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
18413 compiler.
18414
5f68c1b7
GM
18415 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
18416 (eudc-bob-sound-menu): Use defvar rather than defconst, since
18417 easy-menu-define wants to modify these.
18418
18419 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
18420
18421 * net/browse-url.el (browse-url-file-url):
18422 * term/internal.el (dos-codepage-setup):
18423 Use default-value rather than default-enable-multibyte-characters.
18424
d80619fa 18425 * progmodes/etags.el (etags-goto-tag-location):
5f68c1b7
GM
18426 * progmodes/flymake.el (flymake-highlight-line)
18427 (flymake-goto-file-and-line, flymake-goto-line):
18428 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
18429 (gdb-goto-breakpoint):
18430 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
18431 * progmodes/python.el (python-find-function)
18432 (python-pdbtrack-track-stack-file):
18433 * progmodes/verilog-mode.el (verilog-surelint-off):
18434 * term/ns-win.el (ns-open-file-select-line):
18435 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
18436 Use forward-line rather than goto-line.
18437
d63eb0e7
GM
18438 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
18439 * textmodes/reftex-index.el (reftex-display-index):
18440 * textmodes/reftex-ref.el (reftex-offer-label-menu):
18441 * textmodes/reftex-toc.el (reftex-toc):
18442 Remove unnecessary bindings of default-major-mode (all are followed by
18443 major-mode check and possible mode switch).
18444
0afad278
NR
184452009-08-31 Nick Roberts <nickrob@snap.net.nz>
18446
18447 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
18448 Handle watchpoints (bug#4282).
18449 (def-gdb-thread-buffer-command): Enable thread to be selected by
18450 clicking without selecting threads buffer first.
18451 (gdb-current-context-command): Use selected frame so that "up",
18452 "down" etc work in the GUD buffer.
18453 (gdb-update): Find selected frame before rendering stack buffer.
18454 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
18455
4e135dd2
SM
184562009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
18457
18458 * progmodes/sym-comp.el (displayed-completions): Remove.
18459 (symbol-complete): Use minibuffer-complete.
18460
e61eba34
GM
184612009-08-31 Glenn Morris <rgm@gnu.org>
18462
18463 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
18464
734db384
SM
18465 * apropos.el (apropos-symbols-internal):
18466 Handle (obsolete) face aliases.
e61eba34
GM
18467
18468 * faces.el (describe-face): Adjust the output format to be more like
18469 describe-variable, and to mention (obsolete) face aliases.
18470 Adjust the whitespace so that help-setup-xref works.
18471
18472 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
18473 * calendar/diary-lib.el (diary-button-face):
18474 Mark these face aliases as obsolete.
18475
18476 * calendar/calendar.el (calendar-today): Doc fix.
18477
4cf71456
NR
184782009-08-31 Nick Roberts <nickrob@snap.net.nz>
18479
18480 * progmodes/gdb-mi.el (gdb-control-all-threads)
18481 (gdb-control-current-thread): Force tool bar update.
18482 (gdb-non-stop-handler): New function.
18483 (gdb-init-1): Use it to test if non-stop mode is supported.
18484 Remove unused gdbmi buffer type.
18485
e61eba34 184862009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
6830f449
JL
18487
18488 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
7ae62430 18489 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
6830f449 18490
4324f7ca
NR
184912009-08-30 Nick Roberts <nickrob@snap.net.nz>
18492
18493 * comint.el (comint-exec-1): Check command is non-null first.
18494 Part of gdb-mi.el change (2009-08-28).
18495
a1bf889a
SM
184962009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
18497
18498 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
18499
060c08b5
JB
185002009-08-30 Juanma Barranquero <lekktu@gmail.com>
18501
18502 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
18503 instead of `dolist' to avoid a recursive require when bootstrapping.
18504
ab22be48
SM
185052009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
18506
73ebf88f
SM
18507 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
18508
80629cfc
SM
18509 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
18510
206d0387 18511 * net/imap.el (imap-send-command): Simplify.
734db384 18512 (imap-wait-for-tag): point-max -> buffer-size.
206d0387 18513
844f7784
SM
18514 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
18515
5ca4661e
SM
18516 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
18517 with constant argument.
18518
c61dc887
SM
18519 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
18520
7eb73deb
SM
18521 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
18522
5fe443de
SM
18523 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
18524 Change default, since most of our files don't have a history.
18525 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
18526 the user.
18527
6444d64a
SM
18528 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
18529 Add comint-run.
18530
5cb16bfc
SM
18531 * calc/calc.el: Improve commenting convention.
18532 (calc-digit-map, toplevel): Simplify.
18533
0aeb71a7
SM
18534 * comint.el (comint-insert-input): Be careful to only set point if we
18535 don't delegate to some other command.
18536
9a9af856
SM
18537 * proced.el (proced-signal-list): Make it an alist.
18538 (proced-grammar-alist): Capitalize names.
18539 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
18540 Disable undo manually and make it read-only.
18541 Use completion-annotate-function.
18542
ab22be48
SM
18543 * minibuffer.el (minibuffer-message): If the current buffer is not
18544 a minibuffer, insert the message in the echo area rather than at the
18545 end of the buffer.
18546 (completion-annotate-function): New variable.
18547 (minibuffer-completion-help): Use it.
18548 (completion--embedded-envvar-table): Environment vars are
18549 always case-sensitive.
18550
4a948dbf
GM
185512009-08-30 Glenn Morris <rgm@gnu.org>
18552
18553 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
18554 from fortran-current-defun.
18555 (fortran-beginning-of-subprogram): Be more precise about finding the
18556 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
18557 (fortran-end-of-subprogram): Simplify.
18558 (fortran-current-defun): Use fortran-start-prog-re.
18559
486cf3b8
JB
185602009-08-29 Juanma Barranquero <lekktu@gmail.com>
18561
18562 * subr.el (do-after-load-evaluation): Simplify.
18563
db167d28
DN
185642009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
18565
18566 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
18567
18568 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
18569 (vc-rcs-print-log): Use it.
18570
18571 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
18572
efbc652a
SM
185732009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
18574
2aa0e5bf
SM
18575 * paths.el (abbrev-file-name): Move to abbrev.el.
18576 * abbrev.el (abbrev-file-name): Move from paths.el.
18577 Obey user-emacs-directory.
18578 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
18579 user-emacs-directory.
18580 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
18581 abbrev-file-name and calc-settings-file any more.
18582 * startup.el (command-line): Recompute abbrev-file-name and
18583 abbreviated-home-dir.
18584 (normal-no-mouse-startup-screen): Improve the generic code and get rid
18585 of the special code for when C-h bindings haven't been changed.
18586 (display-startup-echo-area-message): Use with-current-buffer.
18587 (command-line-1): Use a list of strings, rather than a list of lists
18588 of strings for longopts.
18589
51da8fe2
SM
18590 * files.el (get-free-disk-space): Use / for default-directory.
18591
0c3cc4dd
SM
18592 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
18593 Use with-current-buffer.
18594
d988dbf6
SM
18595 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
18596 Recognize immutable variables like most-positive-fixnum.
18597 (byte-compile-setq-default): Check and warn if trying to assign
18598 to an immutable variable, or a non-variable.
18599
efbc652a
SM
18600 * progmodes/cc-vars.el (c-comment-continuation-stars):
18601 * progmodes/cc-engine.el (c-looking-at-bos):
18602 * progmodes/cc-cmds.el (c-toggle-auto-state)
18603 (c-forward-into-nomenclature, c-backward-into-nomenclature)
18604 (c-comment-line-break-function): Add version of obsolescence.
18605
d30a05d1
JL
186062009-08-28 Juri Linkov <juri@jurta.org>
18607
18608 * files.el (magic-fallback-mode-alist): Add ZIP magic number
18609 associated with `archive-mode'.
18610
18611 * image.el (image-type-header-regexps): Use only JPEG magic number
18612 to determine JPEG images, and don't use `image-jpeg-p' because
18613 Emacs can display non-JFIF non-Exif JPEG images.
18614
1e8eecea
JB
186152009-08-28 Juanma Barranquero <lekktu@gmail.com>
18616
18617 * arc-mode.el (archive-mode):
18618 * emacs-lisp/re-builder.el (re-builder-unload-function):
18619 Protect against the default value of `major-mode' being nil.
18620
dd4fbf56
JB
186212009-08-28 Juanma Barranquero <lekktu@gmail.com>
18622
18623 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
18624 Fix typos in docstrings.
18625
18626 * progmodes/js.el (js--macro-decl-re): Doc fix.
18627 (js--plain-method-re, js--split-name): Refloc docstring.
18628 (js--class-styles, js--make-merged-item, js--splice-into-items):
18629 Fix typos in docstrings; reflow docstrings.
18630 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
18631 (js--variable-decl-matcher, js--inside-pitem-p)
18632 (js--parse-state-at-point, js--get-all-known-symbols)
18633 (js--symbol-history, js-find-symbol, js--js-references)
18634 (js--moz-interactor, js--js-encode-value, js--read-tab):
18635 Fix typos in docstrings.
18636
72f16325
SM
186372009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
18638
14acf2f5
SM
18639 * textmodes/reftex.el (reftex-get-file-buffer-force):
18640 * progmodes/verilog-mode.el (verilog-batch-execute-func):
18641 * emulation/viper.el (viper-go-away, viper-set-hooks):
18642 * emacs-lisp/re-builder.el (re-builder-unload-function):
18643 * emacs-lisp/bytecomp.el (byte-compile-file):
18644 * ses.el (ses-unload-function):
18645 * hexl.el (hexl-find-file):
18646 * files.el (normal-mode):
18647 * ehelp.el (with-electric-help):
18648 * autoinsert.el (auto-insert-alist):
18649 * arc-mode.el (archive-mode):
18650 Use (default-value 'major-mode) instead of default-major-mode.
18651
72f16325
SM
18652 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
18653 * international/mule.el (load-with-code-conversion):
18654 * emacs-lisp/debug.el (debug):
18655 * ediff-vers.el (ediff-rcs-get-output-buffer):
18656 * dired.el (dired-internal-noselect): Don't let-bind
18657 default-major-mode around code that doesn't use it.
18658 E.g. buffer creation via get-buffer-create doesn't use it.
18659
aa485f7c
MA
186602009-08-28 Michael Albinus <michael.albinus@gmx.de>
18661
18662 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
18663 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
18664 when writing the temp file. Otherwise, epa-file gets confused.
18665 (tramp-register-file-name-handlers): Make it a defun. Move also
18666 `epa-file-handler' to the front of `file-name-handler-alist'.
18667
186682009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
18669
18670 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
18671 start right after a ^M.
18672 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
18673 (tramp-completion-file-name-regexp-separate)
18674 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
72f16325
SM
18675 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
18676 Don't modify last-coding-system-used by accident.
aa485f7c
MA
18677 (tramp-completion-file-name-handler): Apply the checks here,
18678 instead during registration.
88b5a757 18679 (tramp-register-file-name-handlers): Rename from
aa485f7c
MA
18680 `tramp-register-file-name-handler'. Register both
18681 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
72f16325 18682 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
aa485f7c 18683
3f0c2b92
NR
186842009-08-28 Nick Roberts <nickrob@snap.net.nz>
18685
72f16325
SM
18686 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
18687 Remove variable ...
3f0c2b92
NR
18688 (gdb-init-1, gdb-display-separate-io-buffer)
18689 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
18690 references to it.
18691 (gdb-inferior-io-mode): Use make-comint-in-buffer.
18692 (gdb-inferior-filter): Use comint-output-filter to stop
18693 echoing and remove ^M characters.
18694
705e5bd9
SM
186952009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
18696
009fdc2e
SM
18697 * emulation/viper-init.el (viper-restore-cursor-type):
18698 * emulation/cua-base.el (cua--update-indications):
18699 Replace default-cursor-type with (default-value 'cursor-type).
18700
b56a5ae0
SM
18701 * mail/sendmail.el (mail-recover-1):
18702 * international/mule-diag.el (describe-current-coding-system-briefly)
18703 (describe-current-coding-system):
18704 * international/mule-cmds.el (select-safe-coding-system)
18705 (select-message-coding-system)
18706 (set-language-environment-coding-systems, set-locale-environment):
18707 * hexl.el (hexl-insert-multibyte-char):
18708 * dos-w32.el (find-buffer-file-type-coding-system):
18709 * simple.el (what-cursor-position):
18710 Replace uses of default-buffer-file-coding-system
18711 with (default-value 'buffer-file-coding-system).
18712
de70529f
SM
18713 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
18714 Replace uses of default-cursor-in-non-selected-windows
18715 with (default-value 'cursor-in-non-selected-windows).
18716 Use with-current-buffer.
18717
705e5bd9
SM
18718 * mail/feedmail.el: Use CL macros.
18719 (feedmail-run-the-queue, feedmail-send-it-immediately):
18720 * dos-w32.el (find-buffer-file-type): Replace uses of
18721 default-buffer-file-type with (default-value 'buffer-file-type).
18722
4d985ac2
GM
187232009-08-28 Glenn Morris <rgm@gnu.org>
18724
18725 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
18726 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
18727 Use default-value of major-mode rather than default-major-mode.
18728
17c15b81
SM
187292009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
18730
3a68ab06
SM
18731 * Makefile.in (update-elcfiles): Report left over elc files.
18732
9421bdd1
SM
18733 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
18734 expand-file-name and with-current-buffer.
18735 (mail-get-names, mail-directory): Use with-current-buffer.
18736
17c15b81
SM
18737 * vc.el (vc-read-revision): New function.
18738 (vc-version-diff, vc-merge): Use it.
18739
ba83a64e
SS
187402009-08-27 Sam Steingold <sds@gnu.org>
18741
18742 * simple.el (kill-do-not-save-duplicates): New user option.
18743 (kill-new): When it is non-nil, and the new string is the same as
18744 the latest kill, set replace to t to avoid duplicates in kill-ring.
18745
be3e598a 187462009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
d5b5c94a
MA
18747
18748 * net/tramp.el (tramp-handle-process-file): Do not flush all
18749 caches when `process-file-side-effects' is set.
18750 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
17c15b81
SM
18751 instead of `tramp-find-file-exists-command'.
18752 Unset `process-file-side-effects'.
d5b5c94a
MA
18753
187542009-08-27 Michael Albinus <michael.albinus@gmx.de>
18755
18756 * net/tramp.el (tramp-methods): New method "rsyncc".
18757 (top): Add completion function for "rsyncc".
18758 (tramp-message-show-message): New defvar.
18759 (tramp-message, tramp-error): Use it.
18760 (tramp-do-copy-or-rename-file-directly): Extend check for direct
18761 remote copying.
18762 (tramp-do-copy-or-rename-file-out-of-band): Handle new
18763 `tramp-methods' entry `copy-env' of "rsyncc".
18764 (tramp-vc-registered-read-file-names): New defconst.
18765 (tramp-vc-registered-file-names): New defvar.
18766 (tramp-handle-vc-registered): Implement optimization strategy.
18767 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
18768 (tramp-vc-file-name-handler): New defun.
18769 (tramp-get-ls-command, tramp-get-test-command)
18770 (tramp-get-file-exists-command, tramp-get-remote-ln)
18771 (tramp-get-remote-perl, tramp-get-remote-stat)
17c15b81 18772 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
d5b5c94a
MA
18773
18774 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
18775 (tramp-cache-inhibit-cache): Extend doc string. It allows also
18776 timestamps.
18777 (tramp-get-file-property): Check for timestamps in
18778 `tramp-cache-inhibit-cache'.
18779 (tramp-set-file-property): Write timestamp.
18780
1339cf20
KH
187812009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
18782
18783 * language/japan-util.el (japanese-symbol-table): Add entries for
18784 cp932-2-byte.
18785
18786 * international/characters.el: Add category `j' to cp932-2-byte.
18787
726e3f1d
KH
187882009-08-27 Kenichi Handa <handa@m17n.org>
18789
18790 * international/fontset.el (build-default-fontset-data): New macro.
18791 (setup-default-fontset): Use build-default-fontset-data for CJK,
7b6fefac 18792 tibetan, ethiopic, and ipa.
726e3f1d 18793
4e3b4528
SM
187942009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
18795
18796 * cus-start.el (default-major-mode): Customize `major-mode' instead.
18797 (enable-multibyte-characters): Not customizable any more.
18798
18799 * subr.el (default-mode-line-format, default-header-line-format)
18800 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
18801 (default-direction-reversed, default-truncate-lines)
18802 (default-left-margin, default-tab-width, default-case-fold-search)
18803 (default-left-margin-width, default-right-margin-width)
18804 (default-left-fringe-width, default-right-fringe-width)
18805 (default-fringes-outside-margins, default-scroll-bar-width)
18806 (default-vertical-scroll-bar, default-indicate-empty-lines)
18807 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
18808 (default-fringe-cursor-alist, default-scroll-up-aggressively)
18809 (default-scroll-down-aggressively, default-fill-column)
18810 (default-cursor-type, default-buffer-file-type)
18811 (default-cursor-in-non-selected-windows)
18812 (default-buffer-file-coding-system, default-major-mode)
18813 (default-enable-multibyte-characters): Mark as obsolete.
18814
b3cca6a6
DN
188152009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
18816
652cc1a2
DN
18817 * vc-dir.el (vc-dir-update): Remove debug helper.
18818
b3cca6a6
DN
18819 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
18820
4ed8c7aa
SS
188212009-08-26 Sam Steingold <sds@gnu.org>
18822
18823 * simple.el (save-interprogram-paste-before-kill): New user option.
18824 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
18825 save the interprogram-paste into kill-ring before overriding it
18826 with the Emacs kill.
18827
3b64d86b
DN
188282009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
18829
18830 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
18831 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
18832 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
18833 and move to vc-rcs.el.
18834 (vc-default-next-revision): Rename to vc-rcs-next-revision and
18835 move to vc-rcs.el.
18836 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
18837 (vc-rcs-update-changelog): Remove.
18838 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
18839 and move to vc-rcs.el.
18840
18841 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
18842 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
18843 renaming.
18844 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
72f16325 18845 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
3b64d86b
DN
18846 vc.el, renamed to be RCS specific.
18847
72f16325
SM
18848 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
18849 New functions.
18850 (vc-cvs-update-changelog): Move here from vc.el.
3b64d86b
DN
18851
18852 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
18853 New functions.
18854
636a36a0
SM
188552009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
18856
18857 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
18858
239b3340
DN
188592009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
18860
b91f0762 18861 * vc-git.el (vc-git-register): Use "git add" for directories.
2ddf440d
DN
18862 (vc-git-stash, vc-git-stash-show): New functions.
18863 (vc-git-extra-menu-map): Bind them.
b91f0762 18864
b8e54362
DN
18865 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
18866 directory correctly in case the item is a directory itself.
18867
239b3340
DN
18868 * vc.el: Document the desired behavior for reverted files in the
18869 `added' state.
dc810649
DN
18870 (vc-default-prettify-state-info): Remove function, unused.
18871
18872 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
239b3340 18873
e49c0179
GM
188742009-08-26 Glenn Morris <rgm@gnu.org>
18875
18876 * bindings.el (standard-mode-line-format): Reposition dashes in
18877 which-func entry. (Bug#4217)
18878
3029e594
GM
18879 * files.el (enable-local-variables, enable-local-eval)
18880 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
18881 the defcustoms.
18882 (auto-mode-alist, ignored-local-variables)
18883 (save-some-buffers-action-alist): Move risky declarations to the
18884 definitions.
18885 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
18886 (font-lock-defaults, format-alist, imenu--index-alist)
18887 (imenu-generic-expression, input-method-alist, minor-mode-alist)
18888 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
18889 (mode-line-modified, mode-line-mule-info, mode-line-position)
18890 (mode-line-process, mode-line-remote, outline-level)
18891 (parse-time-rules, rmail-output-file-alist)
18892 (special-display-buffer-names, vc-mode):
18893 Move risky declarations to the relevant files.
72f16325
SM
18894 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
18895 (mode-line-modified, mode-line-process, mode-line-position)
3029e594
GM
18896 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
18897 * font-core.el (font-lock-defaults):
18898 * format.el (format-alist):
18899 * vc-hooks.el (vc-mode):
18900 * window.el (special-display-buffer-names):
18901 * international/mule-cmds.el (input-method-alist):
18902 Define riskiness here (dumped file) rather than in files.el.
18903 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
18904 * imenu.el (imenu-generic-expression, imenu--index-alist):
18905 * outline.el (outline-level):
18906 * time.el (display-time-string):
18907 * calendar/parse-time.el (parse-time-rules):
18908 * mail/rmailout.el (rmail-output-file-alist):
18909 Autoload riskiness here, rather than placing in files.el.
18910
8476cfaf
SM
189112009-08-26 Andreas Schwab <schwab@linux-m68k.org>
18912
18913 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
18914
0b35b48e
MA
189152009-08-25 Michael Albinus <michael.albinus@gmx.de>
18916
18917 * simple.el (process-file-side-effects): New defvar.
18918
18919 * dired-aux.el (dired-show-file-type):
18920 * vc.el (vc-diff-internal):
18921 * vc-arch.el (vc-arch-diff):
18922 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
18923 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
18924 * vc-git.el (vc-git-registered, vc-git-working-revision)
18925 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
18926 (vc-git--empty-db-p):
18927 * vc-hooks.el (vc-user-login-name):
18928 * vc-svn.el (vc-svn-registered, vc-svn-state)
18929 (vc-svn-dir-extra-headers, vc-svn-find-revision):
18930 * progmodes/grep.el (grep-probe): Let-bind
18931 `process-file-side-effects' with nil.
18932
18933 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
18934
18935 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
18936 daemon. Replace ping by checking for running service for bluez
18937 and zeroconf. (Bug#4239)
18938
d54cc599
GM
189392009-08-25 Kevin Ryde <user42@zip.com.au>
18940
18941 * net/dig.el (dig): Add autoload cookie.
18942
7bfd055d
GM
189432009-08-25 Glenn Morris <rgm@gnu.org>
18944
bac9c66c
GM
18945 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
18946 load-history for absolute file-names.
18947 (byte-compile-file-form-require): Warn about use of the cl package.
18948
7bfd055d
GM
18949 * format.el (format-alist): Doc fix.
18950
5ac1f9e0
GM
18951 * play/bubbles.el (top-level): Don't require cl at run-time.
18952
af62aa88
GM
18953 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
18954 run-time cl).
18955
71e036af
DD
189562009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
18957
18958 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
18959 from cl package.
18960 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
18961
42110eaf
JB
189622009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
18963
18964 * calc/calc-alg.el (math-trig-rewrite)
18965 (math-hyperbolic-trig-rewrite): New functions.
18966 (calc-simplify): Simplify trig functions when asked.
18967
88421f3e
SM
189682009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
18969
18970 * diff-mode.el (diff-find-source-location): Avoid goto-line.
18971
dbd9624e
KH
189722009-08-24 Kenichi Handa <handa@m17n.org>
18973
18974 * language/ind-util.el (mapthread): Delete it.
18975 (combinatorial): New function.
18976 (indian--puthash-cv): Use combinatorial instead of mapthread.
18977
9b89e3ee
GM
189782009-08-22 Kevin Ryde <user42@zip.com.au>
18979
18980 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
18981 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
18982 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
18983 Clarify docstring that the value is strings not symbols.
18984 (checkdoc-list-of-strings-p): New function.
18985
e6ce8c42
GM
189862009-08-22 Glenn Morris <rgm@gnu.org>
18987
2ddf2ea6 18988 * files.el (auto-mode-alist):
a3374680
GM
18989 * hippie-exp.el (he-concat-directory-file-name):
18990 * lpr.el (lpr-windows-system, printer-name):
18991 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
18992 * ps-print.el (ps-windows-system):
18993 * startup.el (command-line):
18994 * emulation/viper-ex.el (viper-glob-function):
18995 * international/mule-cmds.el (set-language-environment-coding-systems):
18996 * net/ange-ftp.el (ange-ftp-write-region):
18997 * obsolete/fast-lock.el (fast-lock-cache-name):
2ddf2ea6 18998 Remove code for defunct system-types emx, macos, mswindows, next-mach,
a3374680
GM
18999 unisoft-unix, vax-vms, win32, w32.
19000
977955fa
GM
19001 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
19002 given name if the pattern is not more specific.
19003
b4deec2e
GM
19004 * calendar/lunar.el (lunar-phase-names): New option.
19005 (lunar-phase): Doc fix.
19006 (lunar-cycles-per-year): New constant.
19007 (lunar-index): New function.
19008 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
19009 (lunar-phase-name): Use lunar-phase-names.
19010 (calendar-lunar-phases): Use format.
19011 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
19012
47e83968
GM
19013 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
19014 Copy imenu-example--name-and-position function here for own use.
19015 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
19016
e6ce8c42
GM
19017 * bs.el (bs--redisplay):
19018 * cus-edit.el (custom-redraw):
19019 * ibuffer.el (ibuffer-bury-buffer):
19020 * server.el (server-goto-line-column):
19021 * startup.el (command-line-1):
19022 * strokes.el (strokes-xpm-for-stroke):
19023 * term.el (term-display-buffer-line):
19024 * view.el (View-goto-line):
19025 * calc/calc.el (calc-do, calc-trail-buffer):
19026 * play/gamegrid.el (gamegrid-add-score-insecure):
19027 * progmodes/ada-mode.el (ada-compile-goto-error):
19028 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
19029 (ebrowse-select-1st-to-9nth):
47e83968 19030 * progmodes/cperl-mode.el (cperl-time-fontification):
e6ce8c42
GM
19031 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
19032 * progmodes/gud.el (gud-display-line):
19033 (idlwave-shell-display-line):
19034 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
19035 * progmodes/make-mode.el (makefile-browser-toggle):
19036 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
19037 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
19038 * textmodes/picture.el (picture-draw-rectangle):
19039 * textmodes/reftex-index.el (reftex-index-goto-letter):
19040 (reftex-select-jump-to-previous):
19041 * textmodes/reftex-sel.el (reftex-find-start-point)
19042 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
19043 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
19044 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
19045 * textmodes/tex-mode.el (tex-compilation-parse-errors):
19046 * textmodes/two-column.el (2C-associated-buffer):
19047 Use forward-line rather than goto-line.
19048
19049 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
19050 goto-line.
19051
4b18bdb3
GM
19052 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
19053 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
19054 (quick-check-list-to-regexp): Declare.
e6ce8c42 19055
72f16325
SM
19056 * progmodes/make-mode.el (makefile-browser-insert-selection):
19057 Use goto-char rather than goto-line.
e6ce8c42
GM
19058
19059 * progmodes/prolog.el (compilation-error-regexp-alist)
19060 (compilation-forget-errors): Declare.
19061
32a2cf25
JL
190622009-08-22 Juri Linkov <juri@jurta.org>
19063
19064 * progmodes/grep.el (lgrep, rgrep): At the beginning
19065 set `dir' to `default-directory' unless `dir' is a non-nil
19066 readable directory. (Bug#4052)
19067 (lgrep, rgrep): Change a weird way to report an error
19068 from using `read-string' to using `error'.
19069 Instead of using interactive arguments in the function body,
19070 add new argument `confirm'.
19071
5443c9b7
SM
190722009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
19073
cb5b40ee
SM
19074 * textmodes/remember.el (remember-buffer):
19075 * progmodes/cperl-mode.el (cperl-vc-header-alist):
19076 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
19077 (icalendar-extract-ical-from-buffer):
5443c9b7
SM
19078 * net/newst-treeview.el (newsticker-groups-filename):
19079 * net/newst-backend.el (newsticker-cache-filename):
19080 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
19081 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
19082 (speedbar-add-ignored-path-regexp, speedbar-line-path)
19083 (speedbar-buffers-line-path, speedbar-path-line)
19084 (speedbar-buffers-line-path):
19085 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
19086 (epg-sign-keys):
19087 * epa.el (epa-display-verify-result):
19088 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
19089
d6261cc1
GM
190902009-08-21 Glenn Morris <rgm@gnu.org>
19091
3e1ea342
GM
19092 * progmodes/js.el (inferior-moz-process): Fix declaration.
19093
ce86eeb5
GM
19094 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
19095
fff28970
GM
19096 * obsolete/rnewspost.el (news-mail-reply):
19097 Use goto-char rather than goto-line.
19098
d93e053b
GM
19099 * term/ns-win.el (ns-open-file-select-line):
19100 Use line-beginning-position rather than goto-line.
19101
d5d105e8
GM
19102 * apropos.el (apropos-command):
19103 * ehelp.el (electric-helpify):
19104 * printing.el (pr-show-setup):
19105 * strokes.el (strokes-help):
19106 * tutorial.el (tutorial--describe-nonstandard-key)
19107 (tutorial--detailed-help):
19108 * woman.el (woman-mini-help, woman-display-extended-fonts):
19109 * calc/calc-help.el (calc-describe-key):
19110 * emulation/edt.el (edt-electric-helpify):
19111 * international/mule-diag.el (mule-diag):
19112 * play/yow.el (apropos-zippy):
19113 * progmodes/python.el (python-describe-symbol):
19114 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
19115 * textmodes/table.el (*table--cell-describe-mode)
19116 (*table--cell-describe-bindings):
19117 Use help-print-return-message rather than the now obsolete alias.
19118
a8ab722f 19119 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
9b4c5ecd
GM
19120 (calendar-cursor-to-visible-date):
19121 * play/5x5.el (5x5-position-cursor):
19122 * play/decipher.el (decipher):
19123 * play/gomoku.el (gomoku-goto-xy):
19124 * play/landmark.el (lm-goto-xy):
19125 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
19126 (mpuz-paint-digit):
19127 Use forward-line, not goto-line.
a8ab722f 19128
d6261cc1
GM
19129 * mail/rmail.el (rmail-obsolete): Delete custom group.
19130 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
19131 (rmail-remote-password, rmail-remote-password-required):
19132 Remove unneeded :set-after and :set properties.
19133
9e846523
MA
191342009-08-21 Michael Albinus <michael.albinus@gmx.de>
19135
19136 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
19137
bbe1f502
DN
191382009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
19139
bcc5db24
DN
19140 * loadup.el: Remove leftover macos code.
19141
bbe1f502
DN
19142 * vc-git.el (vc-git-annotate-command): Run asynchronously.
19143 Explicitly pass the date format to git blame so that user local
19144 so that the output format can be parsed.
19145
6fd2d19a
MA
191462009-08-20 Michael Albinus <michael.albinus@gmx.de>
19147
19148 * net/dbus.el (top): Don't check for (getenv
19149 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
19150
31764e15
SM
191512009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
19152
19153 * log-edit.el (log-edit-strip-single-file-name): New var.
5443c9b7 19154 (log-edit-insert-changelog): Use it. Bug#3571
31764e15 19155
28930e39
SM
191562009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
19157
4fd15622 19158 * subr.el (read-passwd): Use read-key so keypad keys work as well.
31764e15 19159 Bug#3287
4fd15622 19160
b3d8e4a0
SM
19161 * help.el (help-print-return-message): Rename from
19162 print-help-return-message.
19163
c9829c70
SM
19164 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
19165 cvs-mode-map parent hack.
19166 (log-view-mode): Derive from special-mode.
19167
b932657b
SM
19168 * linum.el (linum-mode): window-size-change-functions is redundant.
19169 Adapt to new window-configuration-change-hook behavior.
19170 (linum-after-size, linum-after-config): Remove.
19171
1b700bca
SM
19172 * imenu.el (imenu-example--name-and-position)
19173 (imenu-example--lisp-extract-index-name)
19174 (imenu-example--create-lisp-index, imenu-example--create-c-index):
19175 Mark as obsolete.
19176
28930e39
SM
19177 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
19178 (inferior-prolog-mode): Use it.
19179 (inferior-prolog-load-file): Reset list of errors.
19180
c9af0b68
KH
191812009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
19182
19183 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
19184
19185 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
19186
720c7cd6
MA
191872009-08-19 Michael Albinus <michael.albinus@gmx.de>
19188
19189 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
19190 is running already.
19191
03a74b84
SM
191922009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
19193
19194 * subr.el (listify-key-sequence-1): Use normal syntax since those
19195 integers are nowadays always represented by the same (positive) number
19196 on all platforms.
19197 (read-key-empty-map): New const.
19198 (read-key-delay): New var.
19199 (read-key): New function.
19200 (force-mode-line-update): Use with-current-buffer.
19201 (locate-user-emacs-file): Don't forget to abbreviate the file name.
19202 (start-process-shell-command, start-file-process-shell-command):
19203 Discourage the use of command-args.
19204
f43e88d4
GM
192052009-08-19 Glenn Morris <rgm@gnu.org>
19206
19207 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
19208
890429cc
SM
192092009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
19210
85be9ec4
SM
19211 * simple.el (choose-completion-string): Don't rely on
19212 minibuffer-completing-file-name and ad-hoc checks to decide whether
19213 to continue completion or not.
19214
890429cc
SM
19215 * minibuffer.el (minibuffer-hide-completions): New function.
19216 (completion--do-completion): Use it.
19217 (completions-annotations): New face.
19218 (completion--insert-strings): Use it.
19219 (completion-pcm--delim-wild-regex): Add docstring.
19220 (completion-pcm--string->pattern): Add support for 0-width delimiters
19221 in completion-pcm--delim-wild-regex.
19222
265d4549
SM
192232009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
19224
d440b941
SM
19225 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
19226 Remove unused var `buffer-modified-p'.
19227
265d4549
SM
19228 * minibuffer.el (completion--do-completion): Move point for the #b001
19229 case as well (bug#4176).
19230 (minibuffer-complete, minibuffer-complete-word): Don't move point.
19231
ba6f7d86
MA
192322009-08-18 Michael Albinus <michael.albinus@gmx.de>
19233
19234 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
19235 and :session buses.
19236
98819490
KH
192372009-08-18 Kenichi Handa <handa@m17n.org>
19238
265d4549
SM
19239 * international/ucs-normalize.el (ucs-normalize-version):
19240 Change to 1.1.
58627cf0
KH
19241 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
19242 (utf-8-hfs): Make it perform normalization on encoding too.
19243
98819490
KH
19244 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
19245 (sentence-end-without-space): Delete duplicated chars.
19246 (sentence-end-base): Likewise.
e739cc85
KH
19247
19248 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
19249 (html-mode): Delete duplicated chars from sentence-end-base.
19250
19251 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
19252 (texinfo-mode): Delete duplicated chars from sentence-end-base.
98819490 19253
645b9326
CY
192542009-08-17 Chong Yidong <cyd@stupidchicken.com>
19255
19256 * files.el (hack-one-local-variable): If the mode function is for
19257 a minor mode, pass it an argument (Bug#4148).
19258
56c195af
MA
192592009-08-17 Michael Albinus <michael.albinus@gmx.de>
19260
19261 * net/tramp.el (tramp-register-completion-file-name-handler):
19262 Check also for (member 'partial-completion completion-styles).
19263
7a55c78b
CY
192642009-08-16 Chong Yidong <cyd@stupidchicken.com>
19265
19266 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
19267 abbrev (Bug#3943).
19268
be3e598a 192692009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
8c777c8d
CY
19270
19271 * progmodes/cperl-mode.el: Merge upstream 6.2.
19272 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
19273 (cperl-forward-re): Check cperl-brace-recursing.
19274 (cperl-highlight-charclass): New function.
19275 (cperl-find-pods-heres): Use it.
31cd2dd4 19276 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
8c777c8d 19277 (cperl-beautify-regexp-piece): Fix column calculation.
31cd2dd4 19278 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
8c777c8d
CY
19279 (cperl-beautify-level): Don't process entire regexp.
19280 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
19281 calling man.
19282 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
19283 (cperl-init-faces): Build a list in the normal way.
19284
81b1f9c9
CY
192852009-08-16 Chong Yidong <cyd@stupidchicken.com>
19286
19287 * calendar/parse-time.el (parse-time-string-chars): Save match
19288 data.
19289
c3732cb8
SM
192902009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
19291
55659495
SM
19292 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
19293 (sql-product): Use it.
19294 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
19295 (sql-set-product): Add completion.
19296 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
19297 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
19298 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
19299 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
19300 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
19301 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
19302 (sql-highlight-db2-keywords): Remove.
19303 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
19304 (sql-highlight-product): Use derived-mode-p.
19305 (sql-set-sqli-buffer): Use with-current-buffer.
19306 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
19307 Simplify.
19308
1ae79427
SM
19309 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
19310
c3732cb8
SM
19311 * term.el: Fix commenting convention, turn comments into docstrings.
19312
f24b8bf3
CY
193132009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
19314
19315 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
19316
7b6fefac 193172009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
e1bdde78 19318
1200ac26 19319 * calendar/parse-time.el (parse-time-string-chars): Compute using
d0d3f6e9
CY
19320 character classes, to handle non-ascii characters (Bug#3190).
19321
193222009-08-16 Chong Yidong <cyd@stupidchicken.com>
1200ac26 19323
1abbe4e5
CY
19324 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
19325 another heredoc if the user adds another < (Bug#3226).
19326
c3732cb8
SM
19327 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
19328 Don't initialize based on window-system (Bug#4124).
19261da4 19329
daad00fc
CY
19330 * facemenu.el (facemenu-read-color): Use a completion function
19331 that accepts any defined color, such as RGB triplets (Bug#3677).
19332
e1bdde78
CY
19333 * files.el (get-free-disk-space): Change fallback default
19334 directory to /. Expand DIR argument before switching to fallback.
19335 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
19336
9d73a99e
CY
193372009-08-15 Chong Yidong <cyd@stupidchicken.com>
19338
19339 * files.el (load-library): Doc fix.
19340
68b962d4 193412009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
9d73a99e 19342
953e0c1a 19343 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
c3732cb8 19344 (viper-if-string): Redefine C-s in the minibuffer to insert the last
68b962d4 19345 incremental search string.
9d73a99e 19346
c3732cb8 19347 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
68b962d4 19348 XEmacs.
9d73a99e 19349
c3732cb8
SM
19350 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
19351 (ediff-merge-region-is-non-clash)
19352 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
68b962d4 19353 Also check if the job is really a merge job.
9d73a99e 19354
c3732cb8 19355 * ediff.el (ediff-current-file): New function.
9d73a99e 19356
2e330adc
CY
193572009-08-15 Chong Yidong <cyd@stupidchicken.com>
19358
19359 * progmodes/js.el: Edit docstrings throughout to follow Emacs
19360 conventions.
c3732cb8 19361 (js-insert-and-indent): Delete function.
2e330adc
CY
19362 (js-mode-map): Don't bind keys to js-insert-and-indent.
19363 (js-beginning-of-defun): Rename from js--beginning-of-defun.
19364 (js-end-of-defun): Rename from js--end-of-defun.
c3732cb8 19365 (js-auto-indent-flag): Delete variable.
2e330adc 19366
17b5d0f7
CY
193672009-08-14 Chong Yidong <cyd@stupidchicken.com>
19368
c3732cb8
SM
19369 * progmodes/js.el: Remove proclaim statement.
19370 Defvar which-func-imenu-joiner-function to silence compiler.
2e330adc 19371
ba2d8894
CY
19372 * files.el (auto-mode-alist): Use js-mode for .js files.
19373
c3732cb8 19374 * progmodes/js2-mode.el: Remove file.
17b5d0f7
CY
19375
19376 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
19377
19378 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
19379
c3732cb8 19380 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
17b5d0f7
CY
19381
193822009-08-14 Daniel Colascione <dan.colascione@gmail.com>
4e2af782 19383 Karl Landstrom <karl.landstrom@brgeight.se>
17b5d0f7
CY
19384
19385 * progmodes/js.el: New file.
19386
b6377f1d
MH
193872009-08-14 Mark A. Hershberger <mah@everybody.org>
19388
19389 * timezone.el (timezone-parse-date): Add ability to understand ISO
19390 basic format (minimal separators) dates in addition to the
19391 already-supported extended format dates.
19392
bc0eef46
EZ
193932009-08-14 Eli Zaretskii <eliz@gnu.org>
19394
4e021e65
EZ
19395 * international/ucs-normalize.el: Add a `coding' file variable.
19396
bc0eef46
EZ
19397 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
19398
53dab179
SS
193992009-08-14 Sam Steingold <sds@gnu.org>
19400
6801c38a 19401 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
53dab179 19402
6c58c39c
CY
194032009-08-13 Chong Yidong <cyd@stupidchicken.com>
19404
19405 * faces.el (help-argument-name): Define it here instead of
19406 help-fns.el, because in daemon mode help-fns.el may be loaded when
19407 faces are still uninitialized (Bug#1078).
19408
19409 * help-fns.el (help-argument-name): Move defface to faces.el.
19410
c7baf7e9
NR
194112009-08-13 Nick Roberts <nickrob@snap.net.nz>
19412
19413 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
19414 create buffer with a pty but no process so that GDB can make the
19415 inferior the controlling process.
19416
9c40e995 194172009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
d6d30064
KH
19418
19419 * international/ucs-normalize.el: New file.
19420
8cdba32b
RS
194212009-08-13 Richard Stallman <rms@gnu.org>
19422
5c950923
RS
19423 * mail/rmail.el (rmail-get-attr-names):
19424 Accept an attribute header that is too short.
19425
76e1e40b
RS
19426 * mail/rmail.el (rmail-forget-messages):
19427 Ignore nil elt in rmail-message-vector. Use dotimes.
19428
1fc01b08
RS
19429 * progmodes/compile.el (compilation-goto-locus):
19430 Use next-error-move-function.
19431
8cdba32b
RS
19432 * simple.el (next-error-move-function): New variable.
19433
99910cf4
JL
194342009-08-12 Juri Linkov <juri@jurta.org>
19435
19436 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
19437 always non-nil. (Bug#4052)
19438
19439 * replace.el (read-regexp): Return empty string when
19440 `default-value' is nil.
19441 (keep-lines-read-args): Don't use empty string as the
19442 default value for `read-regexp'. (Bug#2495)
19443
fc5bdf6c
JL
194442009-08-12 Juri Linkov <juri@jurta.org>
19445
19446 * international/mule-cmds.el (ucs-insert): Change arguments
19447 from `arg' to `character', `count', `inherit' to be the same
19448 as in `insert-char'. Doc fix. (Bug#4039)
19449
19450 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
19451
77748848
JL
194522009-08-12 Juri Linkov <juri@jurta.org>
19453
19454 * files-x.el: New file.
19455
19456 * files.el: Move code that deals with adding/deleting
19457 file/directory-local variables to files-x.el.
19458
19459 * Makefile.in (ELCFILES): Add files-x.elc.
19460
c8a44c4e
DD
194612009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
19462
27a9fd5a
DD
19463 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
19464 to use `goto-line'.
19465 (gdb-place-breakpoints, gdb-get-location): Rewritten without
19466 `goto-line'.
19467 (gdb-invalidate-disassembly): Do not refresh upon receiving
7b6fefac 19468 'update signal. Instead, update all disassembly buffers only after
27a9fd5a 19469 threads list.
107ef54a 19470 (gdb): Send -target-detach when buffer is killed (Bug#3794).
88b5a757 19471 (gdb-starting): Move -data-list-register-names...
cf6e27cf
DD
19472 (gdb-stopped): ...here so it's sent when first thread stops.
19473 (gdb-registers-handler-custom): Do nothing if register names are
19474 unknown yet.
27a9fd5a 19475
c8a44c4e
DD
19476 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
19477 from `gdb-mi.el' to avoid extra tangling.
19478
19479 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
7b6fefac 19480 change which breaks `gud-def' definitions used in `gdb'.
c8a44c4e
DD
19481 (gdb-update-gud-running): No extra fuss for updating frame number.
19482
dfd4e693
SM
194832009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
19484
51c4341f
SM
19485 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
19486 (describe-language-environment-map, setup-language-environment-map)
19487 (set-coding-system-map): Move initialization into declaration.
19488 (set-language-info-alist): Last arg to define-key-after can be skipped.
19489
19490 * international/quail.el (quail-completion-1): Simplify.
19491 (quail-define-rules): Use slightly more compact code.
19492 (quail-insert-decode-map): Propertize keys, compact columns.
19493
dfd4e693
SM
19494 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
19495 Add goto-line.
19496
83326559
MB
194972009-08-10 Miles Bader <miles@gnu.org>
19498
19499 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
19500 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
19501 (js2-instance-member, js2-private-member, js2-private-function-call)
19502 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
19503 (js2-magic-paren, js2-external-variable):
19504 Remove "-face" suffix from face names.
19505 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
19506 (js2-highlight-undeclared-vars, js2-peek-token)
19507 (js2-parse-function-params, js2-mode-show-errors)
19508 (js2-mode-show-warnings, js2-make-magic-delimiter)
19509 (js2-mode-highlight-magic-parens): Update to use new face names.
19510
8e754ea2
MA
195112009-08-09 Michael Albinus <michael.albinus@gmx.de>
19512
19513 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
19514 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
19515
1c292fc7
CY
195162009-08-09 Chong Yidong <cyd@stupidchicken.com>
19517
18d433a7
CY
19518 * subr.el: Provide hashtable-print-readable.
19519
1c292fc7
CY
19520 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
19521 hs-c-like-adjust-block-beginning.
19522 (hs-hide-block-at-point): Stop hiding at the beginning of
19523 hs-block-end-regexp (Bug#700).
19524
2db0ae07
DD
195252009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
19526
19527 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
19528 a macro.
19529 (gdb-registers-handler-custom): Do not fail when register names
19530 are unavailable.
19531
fe4740a6
DD
195322009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
19533
19534 * progmodes/gdb-mi.el (gdb-control-all-threads)
19535 (gdb-control-current-thread): Interactive setters for
19536 `gdb-gud-control-all-threads' to use in menu.
19537 (gdb-show-run-p): Show «Go» when process is not active.
6a7662bb
BR
19538 (gud-tool-bar-map): Add non-stop/A,T indicator.
19539 Uses gud/thread.xpm and gud/all.xpm.
fe4740a6 19540
ce299d55
CY
195412009-08-08 Yoni Rabkin <yoni@rabkins.net>
19542
19543 * net/net-utils.el (net-utils-font-lock-keywords): New var.
19544 (nslookup-font-lock-keywords): Make it a variable.
dba90ffd
CY
19545 (net-utils-mode): New mode for viewing diagnostic network output.
19546 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
19547 (net-utils-run-simple): New function.
19548 (ifconfig, iwconfig, netstat, arp, route): Use it.
ce299d55 19549
7c4654ad
DD
195502009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
19551
19552 * progmodes/gdb-mi.el (gdb-read-memory-custom)
19553 (gdb-memory-set-address, def-gdb-set-positive-number)
19554 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
19555 after changing settings.
19556 (gdb-invalidate-disassembly): Update when first shown.
19557 (gdb-edit-locals-value): Fixed.
19558 (gdb-registers-handler-custom): Print registers in right order and
19559 allow changing register values (only for current thread yet).
9cbac26b
DD
19560 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
19561 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
19562 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
6a7662bb
BR
19563 (gdb-locals-handler-custom, gdb-registers-handler-custom):
19564 Thread info in mode name.
9cbac26b 19565 (gdb-registers-mode-map): TAB to switch to locals.
7c4654ad 19566
0f25a277
EZ
195672009-08-08 Eli Zaretskii <eliz@gnu.org>
19568
19569 * mail/rmail.el (rmail-add-mbox-headers)
19570 (rmail-set-message-counters-counter): Search for
19571 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
19572
b971be60
GM
195732009-08-08 Glenn Morris <rgm@gnu.org>
19574
19575 * Makefile.in (ELCFILES): Update.
19576
a35d3ad8
EZ
195772009-08-07 Eli Zaretskii <eliz@gnu.org>
19578
6a7662bb
BR
19579 * mail/sendmail.el (mail-yank-original):
19580 Set buffer-file-coding-system from the one used by the message whose
60c2df40
EZ
19581 text is yanked.
19582
8b0bcc2e
EZ
19583 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
19584 to "windows" when "pgnuplot" is used.
6a7662bb
BR
19585 (calc-graph-command, calc-gnuplot-command, calc-graph-init):
19586 Don't call accept-process-output if "pgnuplot" is used.
8b0bcc2e
EZ
19587 (calc-graph-init): Don't send -display and -geometry to
19588 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
19589 running "pgnuplot -V" with shell-command-to-string.
19590
19591 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
19592 the default.
19593
195942009-08-07 Eli Zaretskii <eliz@gnu.org>
19595
19596 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
a35d3ad8
EZ
19597 org/org-latex.elc.
19598
3bca7ca5
DN
195992009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
19600
3c53763c
DN
19601 * vc-dispatcher.el (vc-resynch-window): Update comment.
19602
3bca7ca5
DN
19603 * term.el (term-handle-ansi-escape): Add comments with the
19604 terminfo capabilities implemented.
19605
7b217360
DD
196062009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
19607
19608 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
19609 (gdb-var-create-handler): Rewritten using JSON parser.
88b5a757
DD
19610 (gdb-propertize-header): Move earlier.
19611 (gdb-set-header): Remove to avoid duplication.
7b217360
DD
19612 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
19613 Refresh disassembly buffers only after threads list have been
19614 update.
19615 (gdb-threads-header, gdb-registers-header): Per-buffer header line
19616 variables.
19617
b4d84ecf
JL
196182009-08-04 Juri Linkov <juri@jurta.org>
19619
19620 * files.el: Commands to add/delete file/directory-local variables.
19621 (read-file-local-variable, read-file-local-variable-value)
19622 (read-file-local-variable-mode, modify-file-local-variable)
19623 (modify-file-local-variable-prop-line)
19624 (modify-dir-local-variable): New functions.
19625 (add-file-local-variable, delete-file-local-variable)
19626 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
19627 (add-dir-local-variable, delete-dir-local-variable)
19628 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
19629 (copy-dir-locals-to-file-locals-prop-line): New commands.
19630
42da39c1
CY
196312009-08-04 Chong Yidong <cyd@stupidchicken.com>
19632
19633 * abbrev.el (insert-abbrev-table-description): Prettify output.
19634 Suggested by Karl Chen.
19635
98bf8494
DD
196362009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
19637
78b9fb28 19638 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
7b6fefac 19639 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
78b9fb28
DD
19640 (gdb-overlay-arrow-position, gdb-thread-position)
19641 (gdb-disassembly-position): Declare variables.
19642 (gdb-wait-for-pending): Function now.
19643 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
19644 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
19645 compilation goes smoothly.
19646 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
19647 (gdb-non-stop-setting): New customization setting which replaces
19648 `gdb-non-stop' so changing it doesn't break active GDB session.
19649 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
19650 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
19651 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
19652 (gdb-show-threads-by-default): New customization options.
19653 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
19654 routines.
19655 (gdb-get-buffer-create): Send buffers update signal when they are
19656 created.
19657 (gdb-invalidate-locals, gdb-invalidate-registers)
19658 (gdb-invalidate-breakpoints)
19659 (gdb-invalidate-threads, gdb-invalidate-disassembly)
19660 (gdb-invalidate-memory): Accept update signal.
19661 (gdb-current-context-command): Use --frame option.
19662 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
19663 Implement `gdb-frame-number' selection logic.
19664 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
19665 whether to show GUD toolbar buttons.
19666 (gdb-thread-exited): Unselect current thread when it exits.
19667 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
19668 (gdb-mark-line): Routine which sets overlay arrow or inverses
19669 video on fringeless displays.
19670 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
19671 to build aligned columns of data in GDB buffers and set text
19672 properties line-by-line.
19673 (gdb-invalidate-breakpoints)
19674 (gdb-breakpoints-list-handler-custom)
19675 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
19676 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
19677 (gdb-registers-handler-custom): Align data columns.
19678 (gdb-locals-handler-custom): Now prints data like in variable
19679 declarations.
19680 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
88b5a757 19681 Remove confusing buttons.
78b9fb28
DD
19682 (gdb-invalidate-threads): Append --frame.
19683 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
19684 between breakpoints/threads buffers.
19685 (gdb-set-window-buffer): Now can ignore dedicated windows.
19686 (gdb-propertize-header): Use `gdb-set-window-buffer'.
19687 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
19688 (def-gdb-thread-buffer-gud-command): Replaces
19689 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
19690 for fine thread control.
19691 (gdb-preempt-existing-or-display-buffer): New function used to
19692 display bound buffers without breaking window layout.
19693 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
19694 (gdb-select-frame): New version of `gdb-frames-select' which now
19695 sets `gdb-frame-number' so commands may use --frame option instead
19696 of inner debugger state.
19697 (gdb-frame-handler): Do not set `gdb-frame-number'.
19698 (gdb-threads-mode-map): Select threads with mouse.
19699
19700 * progmodes/gud.el (gdb-gud-context-call): Declare function to
19701 avoid compilation warning.
19702 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
19703 `gdb-show-stop-p`.
19704
566f3909
DD
19705 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
19706 Argument `key' renamed to `buffer-type'.
19707 (gdb-current-context-buffer-name): Do not add thread info to
19708 buffer name when no thread is selected.
19709 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
19710 command (bug 3794).
19711 (gdb-thread-selected): Handle `=thread-selected' notification.
19712 (gdb-wait-for-pending): New macro to deal with congestion problems.
19713 (gdb-breakpoints-list-handler-custom): Don't fail on pending
19714 breakpoints.
7b6fefac
JB
19715 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
19716 This fixes problem similar to one described in bug 3947.
566f3909
DD
19717 (gud-menu-map): More menu items.
19718 (gdb-init-1): Reset `gdb-thread-number' to nil.
19719
4a31122c
DD
19720 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
19721 non-stop settings.
19722
19723 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
19724 (gdb-current-context-command): Do not append --thread if
19725 `gdb-thread-number' is nil.
6a7662bb
BR
19726 (gdb-running-threads-count, gdb-stopped-threads-count):
19727 New variables.
4a31122c 19728 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
6a7662bb
BR
19729 (gdb-stopped-hooks, gdb-switch-when-another-stopped):
19730 New customization options.
4a31122c
DD
19731 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
19732 GUD commands.
7b6fefac 19733 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
4a31122c
DD
19734 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
19735 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
19736 set `gdb-thread-number' and update `gud-running' properly.
19737 (gdb-running): Update threads list when new threads appear.
19738 (gdb-stopped): Support non-stop operation and new thread switching
19739 logic.
19740 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
19741 (gdb-json-partial-output): New set of JSON routines.
19742 (def-gdb-auto-update-trigger): New `signal-list' optional
19743 argument.
19744 (gdb-thread-list-handler-custom): Update `gud-running',
19745 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
19746 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
19747 (gdb-continue-thread, gdb-step-thread): New commands for fine
19748 thread execution control.
19749 (gud-menu-map): New menu items to switch non-stop options.
19750 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
0d25e058 19751 (gdb-send): Mimic RET properly (bug 3794).
4a31122c
DD
19752
19753 * progmodes/gdb-mi.el (gdb-rules-name-maker)
19754 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
19755 gdb-buffer-rules.
19756 (def-gdb-auto-update-handler): New nopreserve optional argument.
19757 (gdb-stack-list-frames-custom): Print stack from top to bottom.
19758
88b5a757 19759 * progmodes/gdb-mi.el (gdb-pc-address): Remove unused variable.
4a31122c
DD
19760 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
19761 (gdb-parent-mode): New mode to derive other GDB modes from.
19762 (gdb-display-disassembly-for-thread)
19763 (gdb-frame-disassembly-for-thread): New commands for threads
19764 buffer.
19765
19766 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
19767 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
a5c9f540
DD
19768 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
19769 (gdb-update): We now store all GDB buffers in a list so that they
19770 can be updated by traversing a list instead of calling invalidate
7b6fefac 19771 triggers explicitly.
a5c9f540
DD
19772 (def-gdb-trigger-and-handler): New macro to define trigger-handler
19773 pair for GDB buffer.
19774 (gdb-stack-buffer-name): Add thread information.
e7086683
DD
19775 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
19776 handle pending triggers.
19777 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
19778 (def-gdb-thread-buffer-simple-command)
19779 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
19780 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
7b6fefac
JB
19781 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
19782 New commands which show buffers bound to thread.
88b5a757 19783 (gdb-stack-list-locals-regexp): Remove unused regexp.
4a31122c 19784
7b6fefac
JB
19785 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
19786 (gdb-locals-buffer-name, gdb-registers-buffer-name)
4a31122c
DD
19787 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
19788 to (gud-comint-buffer) in *-buffer-name functions
19789 because (gdb-get-target-string) already does that.
19790 (gdb-locals-handler-custom, gdb-registers-handler-custom)
19791 (gdb-changed-registers-handler): Rewritten without regexps.
19792
ba214964 19793 * progmodes/gdb-mi.el: Basic thread selection support.
4a31122c
DD
19794 (gdb-thread-number): New variable.
19795 (gdb-current-context-command): New macro which adds --thread
19796 option to command.
7b6fefac 19797 (gdb-threads-mode-map): Select thread with SPC.
4a31122c 19798 (gdb-thread-list-handler-custom): Mark current thread with overlay
7b6fefac 19799 arrow. Synchronize GDB thread and Emacs thread.
4a31122c
DD
19800 (gdb-select-thread): New command which selects current thread.
19801 (gdb-invalidate-frames, gdb-invalidate-locals)
19802 (gdb-invalidate-registers): Use --thread option.
20f12ed8 19803
2ac33804
MA
198042009-08-04 Michael Albinus <michael.albinus@gmx.de>
19805
19806 * net/tramp.el (top): Make check for tramp-gvfs loading more
8e754ea2 19807 robust. (Bug#3977)
2ac33804
MA
19808 (tramp-handle-insert-file-contents): `unwind-protect' must be
19809 inside `with-parsed-tramp-file-name'.
19810
19811 * net/tramp-gvfs.el (top): Remove superfluous message when loading
19812 fails.
19813
39d0296f
NR
198142009-08-03 Nick Roberts <nickrob@snap.net.nz>
19815
19816 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
19817 directory if CLASSPATH is not set.
19818
adcbca53
MA
198192009-08-03 Michael Albinus <michael.albinus@gmx.de>
19820
7b6fefac
JB
19821 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
19822 New defconst.
7ef849b6 19823 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
adcbca53 19824
30924b0b
CY
198252009-08-02 Kevin Ryde <user42@zip.com.au>
19826
7b6fefac
JB
19827 * net/newst-backend.el (newsticker--raw-url-list-defaults):
19828 Update freshmeat link. Delete newsforge.com as it seems gone.
30924b0b 19829
b6ce92f1
CY
198302009-08-02 Chong Yidong <cyd@stupidchicken.com>
19831
d977a092
CY
19832 * select.el (x-set-selection): Doc fix (Bug#4021).
19833
19834 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
19835
b6ce92f1
CY
19836 * help-fns.el (describe-variable): Treat list return values from
19837 dir-locals-find-file properly (Bug#4005).
19838
7b6fefac 198392009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
3eedbc85
MA
19840
19841 * net/tramp.el (tramp-debug-message): Print also microseconds.
19842
198432009-08-02 Michael Albinus <michael.albinus@gmx.de>
19844
19845 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
19846 or END is non-nil.
19847 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
19848 (tramp-get-debug-buffer): Change `outline-regexp' according to new
19849 format.
19850
5ce6e4f4 19851 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
3eedbc85
MA
19852 (tramp-get-file-property): Use it.
19853
6a7662bb
BR
19854 * autorevert.el (auto-revert-handler):
19855 Allow `auto-revert-tail-mode' for remote files.
3eedbc85 19856
2aafe808
JR
198572009-08-02 Jason Rumney <jasonr@gnu.org>
19858
19859 * minibuffer.el (read-file-name): Treat confirm options to
7b6fefac 19860 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
2aafe808 19861
e094097c
CY
198622009-08-02 Chong Yidong <cyd@stupidchicken.com>
19863
19864 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
6a7662bb
BR
19865 (font-lock-variable-name-face, font-lock-constant-face):
19866 Darken the colors for light backgrounds.
e094097c 19867
de94f281
EZ
198682009-08-01 Eli Zaretskii <eliz@gnu.org>
19869
19870 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
19871 month names. (Bug#3987)
19872
54b99340
CY
198732009-07-31 Chong Yidong <cyd@stupidchicken.com>
19874
19875 * simple.el (line-move-finish): Pass whole number to
19876 line-move-to-column.
34be836c 19877 (line-move-visual): Perform hscroll to the recorded position.
54b99340 19878
38216c30
JB
198792009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
19880
19881 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
19882
c779896d
CY
198832009-07-29 Alan Mackenzie <acm@muc.de>
19884
19885 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
19886
592ccae0
DD
198872009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
19888
35edc6c6
DD
19889 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
19890 (gdb-place-breakpoints): Use full path when setting breakpoints.
592ccae0 19891
5a9e3ab7
JB
198922009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
19893
19894 * calc/calc.el (calc-mode-map): Add keybinding for
19895 `calc-transpose-lines'.
19896
7b6fefac 198972009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
5a9e3ab7
JB
19898
19899 * calc/calc-misc.el (calc-transpose-lines): New function.
19900
905fb90e
MA
199012009-07-28 Michael Albinus <michael.albinus@gmx.de>
19902
19903 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
19904 Simplify check for out-of-band methods.
19905 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
19906 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
19907
76e14464
DN
199082009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
19909
19910 * vc-git.el (vc-git-checkin): Fix typo.
19911
6088b51f 199122009-07-28 Steve Yegge <steve.yegge@gmail.com>
af077012
SY
19913
19914 * progmodes/js2-mode.el: New file.
19915
b85157fe
NR
199162009-07-28 Nick Roberts <nickrob@snap.net.nz>
19917
19918 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
19919 (gud-menu-map): Adjust tooltip accordingly.
19920
d43c2b06
DN
199212009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
19922
1c0f0c3b
DN
19923 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
19924 (vc-bzr-log-view-mode): Adjust log-view-file-re.
19925
d43c2b06
DN
19926 * add-log.el (change-log-mode-map): Add a menu.
19927
3dec5c36
MA
199282009-07-27 Michael Albinus <michael.albinus@gmx.de>
19929
19930 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
19931 function returns nil.
19932 (dbus-handle-event): Handle special return value :ignore.
19933 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
19934
5704140c
CY
199352009-07-26 Chong Yidong <cyd@stupidchicken.com>
19936
19937 * view.el (view-mode-enable): Don't define Helper-return-blurb if
19938 it's not needed.
19939
3077d1f6
EZ
199402009-07-25 Eli Zaretskii <eliz@gnu.org>
19941
19942 Fix Bug#3888:
19943
19944 * w32-vars.el (x-select-enable-clipboard): Doc fix.
19945
19946 * term/pc-win.el (x-display-name, x-colors)
19947 (x-select-enable-clipboard, x-select-text): Doc fix.
19948
19949 * term/common-win.el (x-display-name, x-colors): Doc fix.
19950
19951 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
19952 (xw-defined-colors): Doc fix.
19953
19954 * w32-fns.el (x-select-text, x-setup-function-keys)
19955 (x-get-selection, x-set-selection): Doc fix.
19956
19957 * term/x-win.el (x-select-text, x-setup-function-keys)
19958 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
19959
19960 * select.el (x-set-selection): Doc fix.
19961
51768bc8
MA
199622009-07-25 Michael Albinus <michael.albinus@gmx.de>
19963
19964 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
19965 instead of "IsNSSSupportAvailable". Avahi ought to work also when
6a7662bb
BR
19966 "IsNSSSupportAvailable" method is not available.
19967 Reported by Steve Youngs <steve@sxemacs.org>.
51768bc8 19968
b11c2874
KH
199692009-07-24 Kenichi Handa <handa@m17n.org>
19970
19971 * international/characters.el: Fix setting of category ?C, ?|, ?K,
7b6fefac 19972 and ?H. Fix setting of case for Latin Extended and Greek Extended.
b11c2874
KH
19973 (build-unicode-category-table): Fix range checks.
19974
ba83b7b6
DN
199752009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
19976
19977 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
19978 the buffer we try to sync is current when calling
19979 vc-resynch-buffer.
19980
19981 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
19982 not show up to date files.
19983
7a8ae964
GM
199842009-07-24 Glenn Morris <rgm@gnu.org>
19985
19986 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
19987 Add autoload cookies. If necessary, initialize.
19988 (elint-log): Handle non-file buffers.
19989 (elint-initialize): Add optional argument to reinitialize.
19990 (elint-find-builtin-variables): Save excursion.
19991
a707eb05
DN
199922009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
19993
19994 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
19995 for Lint.
19996
0a2ddfa6
DN
199972009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
19998
d6a62b0d
DN
19999 * vc.el (vc-print-log-internal): New function, split out from ...
20000 (vc-print-log): ... here.
10b5dcad 20001 (vc-dir-move-to-goal-column): Declare.
d6a62b0d 20002
0a2ddfa6
DN
20003 * vc-git.el (vc-git-add-signoff): New variable.
20004 (vc-git-checkin): Use it.
20005 (vc-git-toggle-signoff): New function.
20006 (vc-git-extra-menu-map): Bind it to menu.
2a0e3379
DN
20007 (vc-git--run-command-string): Accept a nil FILE argument.
20008 (vc-git-stash-list): New function.
20009 (vc-git-dir-extra-headers): Use it.
0a2ddfa6 20010
589a99f2
GM
200112009-07-23 Glenn Morris <rgm@gnu.org>
20012
20013 * help-fns.el (describe-variable): Describe ignored and risky local
20014 variables in a similar way to that in which we describe safe ones.
20015
20016 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
20017 (byte-compile-output-file-form, byte-compile-output-docform)
20018 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
20019 Give some more local variables with common names a "bytecomp-" prefix,
20020 so as not to shadow things during compilation.
20021 * emacs-lisp/cl-macs.el (load-time-value)
20022 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
20023 `outbuffer' to `bytecomp-outbuffer'.
20024
20025 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
20026 since the next two variables cover them automatically now.
20027 (elint-builtin-variables, elint-autoloaded-variables): New.
20028 (elint-unknown-builtin-args): Remove all members, since they can be
20029 parsed automatically now.
20030 (elint-extra-errors): New.
20031 (elint-env-add-env, elint-env-add-macro): Use cadr.
20032 (elint-current-buffer): Use or. Change final message.
20033 (elint-get-top-forms): Use line-end-position.
20034 (elint-init-env): Use cadr. Handle autoload, declare-function,
20035 and defalias.
20036 (elint-add-required-env): Doc fix. Use or. Standardize error.
20037 (regexp-assoc): Remove unused function.
20038 (elint-top-form): Set elint-current-pos, to record the start of the
20039 top-level form, for compilation-mode.
20040 (elint-form): Trap errors in macro expansion. Use dolist.
20041 (elint-unbound-variable): Use elint-builtin-variables and
20042 elint-autoloaded-variables.
20043 (elint-get-args): Use cadr, or.
20044 (elint-check-cond-form): Use dolist, cadr.
20045 (elint-check-condition-case-form): Doc fix. Use cadr.
20046 Use elint-extra-errors.
20047 (elint-log): New function.
20048 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
20049 Distinguish errors and warnings.
20050 (elint-log-message): Use with-current-buffer. Inhibit read-only.
20051 Use a bytecomp-style format.
20052 (elint-clear-log): Preserve default-directory. Inhibit read-only.
20053 (elint-get-log-buffer): Use compilation mode. Disable undo.
20054 Don't truncate lines.
20055 (elint-initialize): Set builtin and autoloaded variable lists.
20056 Only process elint-unknown-builtin-args if non-nil.
20057 (elint-find-builtin-variables, elint-find-autoloaded-variables):
20058 New functions.
20059 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
20060
855b42a2
GM
200612009-07-22 Kevin Ryde <user42@zip.com.au>
20062
20063 * net/newst-backend.el (newsticker--parse-atom-1.0)
20064 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
20065 (newsticker--parse-rss-1.0):
20066 * progmodes/idlwave.el (idlwave-mode):
20067 * progmodes/idlw-shell.el (idlwave-shell-mode):
20068 * progmodes/vera-mode.el (vera-mode):
20069 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
20070 * progmodes/vhdl-mode.el (vhdl-mode):
20071 * textmodes/table.el (table-generate-source)
20072 (table--warn-incompatibility):
20073 Hyperlink urls in docstrings with URL `...'.
20074
fd413a37
GM
200752009-07-22 Glenn Morris <rgm@gnu.org>
20076
cb711556
GM
20077 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
20078 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
20079 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
20080 Remove leading * from defcustom docs.
20081
fd413a37
GM
20082 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
20083
20084 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
20085 defcustom doc.
20086 (list-load-path-shadows): Optionally, just return shadows as a string.
20087
20088 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
20089
a4f69701
CY
200902009-07-21 Chong Yidong <cyd@stupidchicken.com>
20091
6a7662bb
BR
20092 * mail/rmailedit.el (rmail-edit-mode):
20093 Use auto-save-include-big-deletions.
a4f69701 20094
6a7662bb
BR
20095 * mail/rmail.el (rmail-variables):
20096 Use auto-save-include-big-deletions.
a4f69701
CY
20097
20098 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
20099 changes.
20100
ec06459c
JB
201012009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
20102
20103 * calc/calc.el (calc-undo-length): New variable.
20104 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
20105
b41b0976
RS
201062009-07-21 Richard Stallman <rms@gnu.org>
20107
20108 * files.el (auto-save-mode): Handle buffer-save-size = -2
20109 for toggling mode.
20110
4ed32706
GM
201112009-07-21 Glenn Morris <rgm@gnu.org>
20112
531b1264
GM
20113 * textmodes/ispell.el (ispell-looking-back): Update declaration.
20114
55d27f41
GM
20115 * calendar/todo-mode.el (calendar-current-date): Update declaration.
20116
02df3f4d
GM
20117 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
20118 silence compiler. Instead...
20119 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
20120 (ps-print-ensure-fontified): Update for above function name changes.
20121
fdd8417e
GM
20122 * printing.el (pr-mh-get-msg-num, pr-mh-show)
20123 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
20124 silence compiler. Instead...
20125 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
20126 (mh-show-buffer): Only define for compiler.
20127 (pr-mh-current-message): Update for above function name changes.
20128
4ed32706
GM
20129 * files.el (abort-if-file-too-large): Explicitly pass `filename'
20130 as an argument.
20131 (find-file-noselect, insert-file-1): Update for above change.
20132
20133 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
20134
20135 * mail/mailclient.el (mailclient-send-it): Fix message.
20136
20137 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
20138 (edebug-eval): Check cl-debug-env is bound.
20139 (print-level, print-circle): Don't redefine built-in variables.
20140
20141 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
20142 (custom-print-vectors): Remove old comments from doc.
20143
20144 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
20145 (emerge-version): Make the variable an obsolete alias for the
20146 emacs-version variable. Make the function obsolete.
20147 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
20148 Emerge options, rather than merging in into the main Options menu.
20149 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
20150 and auto advance modes. Disable edit/fast items when not relevant.
20151
86812144
CY
201522009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
20153
20154 * term/vt420.el (terminal-init-vt420): Fix typo.
20155
6bb90094
SS
201562009-07-20 Sam Steingold <sds@gnu.org>
20157
20158 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
20159 variable (removed from compile.el on 2004-03-11).
20160
42e0a725
CY
201612009-07-20 Chong Yidong <cyd@stupidchicken.com>
20162
20163 * files.el (hack-local-variables-filter): Fix last change.
20164
2ee20f24
JL
201652009-07-19 Juri Linkov <juri@jurta.org>
20166
20167 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
20168 (dir-local-variables-alist): New buffer-local variable.
20169 (hack-local-variables-filter): If variable is not dir-local,
20170 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
20171 because file-local overrides dir-local.
3570691b 20172 (c-postprocess-file-styles) <declare-function>:
2ee20f24
JL
20173 Remove obsolete declaration.
20174 (hack-dir-local-variables): Add dir-local variable/value pair to
20175 `dir-local-variables-alist' and remove duplicates. Doc fix.
20176
20177 * help-fns.el (describe-variable): Add information about
20178 file-local and dir-local variables.
20179
89bf83cd
CY
201802009-07-19 Chong Yidong <cyd@stupidchicken.com>
20181
20182 * files.el (hack-local-variables-filter): Rewrite.
20183
1a8d3541
GM
201842009-07-19 Glenn Morris <rgm@gnu.org>
20185
d9e8a018
GM
20186 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
20187 Silence compiler by only defining on XEmacs.
20188
da332cfb
GM
20189 * international/mule.el (auto-coding-regexp-alist): Only match
20190 BABYL... at the start of buffer, not of lines. (Bug#3790)
20191
1a8d3541
GM
20192 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
20193 non-calendar buffers (Bug#3862). Restore "not on a date" message.
20194 (cal-menu-context-mouse-menu): Doc fix.
20195
20196 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
20197
20198 * simple.el (mail-user-agent): Doc fix. Set :version tag.
20199
d842b103
JL
202002009-07-18 Juri Linkov <juri@jurta.org>
20201
20202 * info.el: Virtual Info keyword finder.
3570691b 20203 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
d842b103
JL
20204 (Info-finder-file): New variable.
20205 (Info-finder-find-file): New function.
20206 (finder-known-keywords, finder-package-info)
20207 (find-library-name, lm-commentary): Use defvar and
20208 declare-function to silence compiler warnings.
20209 (Info-finder-find-node): New function.
20210 (info-finder): New command.
20211
20212 * subr.el (process-kill-buffer-query-function): New function.
20213 (add-hook)<kill-buffer-query-functions>: Add hook
20214 `process-kill-buffer-query-function'.
20215
10d37df7
AM
202162009-07-18 Alan Mackenzie <acm@muc.de>
20217
7b6fefac 20218 * progmodes/cc-mode.el (c-before-hack-hook)
10d37df7
AM
20219 (c-postprocess-file-styles): Give invocation of `c-set-style'
20220 DONT-OVERRIDE parameter of t. Already set style variables will
20221 thus not be overridden by style settings given by `c-file-syle'.
20222
20223 * files.el (hack-local-variables-filter): Remove entries with
20224 duplicate keys from `file-local-variables-alist'.
20225
102e1a41
EZ
202262009-07-18 Eli Zaretskii <eliz@gnu.org>
20227
20228 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
20229 x-set-selection if display-selections-p returns nil for the
20230 current frame.
20231
16f2e9fc
CY
202322009-07-18 Chong Yidong <cyd@stupidchicken.com>
20233
20234 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
20235
f22693fc
EZ
202362009-07-18 Eli Zaretskii <eliz@gnu.org>
20237
a6c2c80c
EZ
20238 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
20239 Accept nil in addition to a regexp.
20240 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
20241 Accept nil in addition to a regexp.
20242 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
20243 buffers that have an associated file. Handle nil values of
20244 desktop-buffers-not-to-save and desktop-files-not-to-save.
20245 (Bug#3833)
20246
f22693fc
EZ
20247 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
20248 (x-disown-selection-internal): New functions.
20249
e456379a
NR
202502009-07-18 Nick Roberts <nickrob@snap.net.nz>
20251
20252 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
20253 warning.
20254 (gdb-breakpoints-header): Move forward to avoid compiler warning.
20255 (gdb-make-header-line-mouse-map): Remove duplicate definition.
20256
0013b70f
CY
202572009-07-18 David De La Harpe Golden <david@harpegolden.net>
20258
20259 * simple.el (set-mark): Revert last change.
20260
0855c2ca
CY
202612009-07-17 Tassilo Horn <tassilo@member.fsf.org>
20262
20263 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
20264 rendering of pngs is not possible instead of messaging a long
20265 description.
20266
3f5c9cad
CY
202672009-07-17 David De La Harpe Golden <david@harpegolden.net>
20268
20269 * w32-fns.el (x-selection-owner-p): New function.
20270
20271 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
6a7662bb
BR
20272 (mouse-yank-at-click, mouse-yank-primary):
20273 If select-active-regions is non-nil, deactivate the mark before
6c6a75d5 20274 insertion.
3f5c9cad
CY
20275
20276 * simple.el (deactivate-mark, set-mark): Only save selection if we
20277 own it.
20278
1fc87f9b
KH
202792009-07-17 Kenichi Handa <handa@m17n.org>
20280
20281 * case-table.el (describe-buffer-case-table): Fix for the case
20282 that KEY is a cons.
20283
d56fdcd2
DN
202842009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
20285
20286 * vc-rcs.el (vc-rcs-find-file-hook):
20287 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
20288
bede3e9f
MA
202892009-07-16 Michael Albinus <michael.albinus@gmx.de>
20290
20291 * net/tramp.el (tramp-wait-for-output): Handle the case when
20292 commands do not return a newline but a null byte before the shell
20293 prompt. (Bug#3858)
20294
7653ca1d
YM
202952009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20296
20297 * term/ns-win.el (ns-set-alpha): Don't declare.
20298 (ns-set-background-alpha): Remove function.
20299
ed2a52e9
SM
203002009-07-16 Kevin Ryde <user42@zip.com.au>
20301
20302 * emacs-lisp/copyright.el (copyright-update): Save match-data across
20303 y-or-n-p, for safety.
20304
7a907299
RS
203052009-07-16 Richard Stallman <rms@gnu.org>
20306
20307 * files.el (auto-save-mode): If buffer-saved-size is -2,
20308 don't clobber it.
20309
20310 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
20311 (rmail-retry-ignored-headers): Add more uninteresting fields.
20312
c0db3477
CY
203132009-07-15 Jari Aalto <jari.aalto@cante.net>
20314
20315 * net/rcirc.el (rcirc): Use history variables.
20316 (rcirc-server-name-history, rcirc-nick-name-history)
20317 (rcirc-server-port-history): New variables.
20318
6c875452
KH
203192009-07-15 Kenichi Handa <handa@m17n.org>
20320
bf974dc9
KH
20321 * international/mule-cmds.el (set-language-environment-charset):
20322 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
20323 ignore them.
20324
6c875452
KH
20325 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
20326 Delete unibyte-display.
20327
2066b4fe
CY
203282009-07-15 Chong Yidong <cyd@stupidchicken.com>
20329
20330 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
20331
f9be2e35
CY
203322009-07-15 Chong Yidong <cyd@stupidchicken.com>
20333
20334 * simple.el (deactivate-mark): Optional argument FORCE.
20335 (set-mark): Use deactivate-mark.
20336
20337 * info.el (Info-search): No need to check transient-mark-mode
20338 before calling deactivate-mark.
20339
20340 * select.el (x-set-selection): Doc fix.
20341 (x-valid-simple-selection-p): Allow buffer values.
6a7662bb
BR
20342 (xselect--selection-bounds): Handle buffer values.
20343 Suggested by David De La Harpe Golden.
f9be2e35 20344
6a7662bb
BR
20345 * mouse.el (mouse-set-region, mouse-drag-track):
20346 Call copy-region-as-kill before setting the mark, to let
f9be2e35
CY
20347 select-active-regions work.
20348
be3e598a 203492009-07-15 David De La Harpe Golden <david@harpegolden.net>
f9be2e35
CY
20350
20351 * simple.el (deactivate-mark): If select-active-regions is
20352 non-nil, copy the selection data into a string.
20353 (activate-mark): If select-active-regions is non-nil, set the
20354 selection to the current buffer.
20355 (set-mark): Update selection if select-active-regions is non-nil.
20356
20357 * select.el (x-valid-simple-selection-p): Allow buffer values.
20358
cbd61418
SM
203592009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
20360
20361 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
20362 and more featureful message-mode.
20363
f470187f
CY
203642009-07-14 Chong Yidong <cyd@stupidchicken.com>
20365
20366 * select.el (x-set-selection): Doc fix.
20367 (x-valid-simple-selection-p): Disallow selection data consisting
20368 of a list or cons of integers, since that is not used.
20369 (xselect--selection-bounds, xselect--int-to-cons): New functions.
20370 (xselect-convert-to-string, xselect-convert-to-length)
20371 (xselect-convert-to-filename, xselect-convert-to-charpos)
20372 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
20373
bfc99364
DD
203742009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
20375
20376 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
20377 output in -break-info command (Emacs bug #3794).
20378
e32721f5
GM
203792009-07-14 Glenn Morris <rgm@gnu.org>
20380
1e46f9e4
GM
20381 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
20382 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
20383 (edebug-print-length, edebug-print-level, edebug-print-circle)
20384 (edebug-sit-for-seconds, edebug-view-outside)
20385 (edebug-bounce-point, edebug-set-global-break-condition)
20386 (edebug-Go-nonstop-mode, edebug-trace-mode)
20387 (edebug-Trace-fast-mode, edebug-continue-mode)
20388 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
20389 (edebug-visit-eval-list): Doc fixes.
20390
e32721f5
GM
20391 * subr.el (def-edebug-spec): Doc fix.
20392
66a85e76
KH
203932009-07-14 Kenichi Handa <handa@m17n.org>
20394
20395 * international/characters.el: Fix setting of category ?C.
20396
28571246
JD
203972009-07-13 Jan Djärv <jan.h.d@swipnet.se>
20398
7b6fefac 20399 * term/ns-win.el (x-select-font): defalias x-select-font to
28571246
JD
20400 ns-popup-font-panel instead of generate-fontset-menu.
20401
5d74672c
EZ
204022009-07-12 Eli Zaretskii <eliz@gnu.org>
20403
7b6fefac 20404 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
5d74672c 20405
eb1727a4
CY
204062009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
20407
20408 * arc-mode.el (archive-find-type): Allow for a PK00 string before
20409 the PK\003\004 header (Bug#3770).
20410
208384c5
CY
204112009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
20412
20413 * pcomplete.el (pcomplete-comint-setup): Check for
20414 shell-dynamic-complete-filename too.
20415
774409a1
CY
204162009-07-11 Chong Yidong <cyd@stupidchicken.com>
20417
20418 * simple.el (temporary-goal-column): Change the value for
20419 line-move-visual to a cons cell.
20420 (line-move-visual): Record or set the window hscroll, if
20421 necessary (Bug#3494).
20422 (line-move-1): Handle cons value of temporary-goal-column.
20423
1639ee1d
KH
204242009-07-11 Kenichi Handa <handa@m17n.org>
20425
20426 * international/mule-diag.el (describe-character-set): Don't show
20427 width.
20428
2b1d2412
SS
204292009-07-10 Sam Steingold <sds@gnu.org>
20430
20431 * progmodes/compile.el (compilation-mode-font-lock-keywords):
20432 Omake sometimes indents the errors it prints, so allow all
20433 regexps to start with spaces.
20434
ed3a5691
EZ
204352009-07-10 Eli Zaretskii <eliz@gnu.org>
20436
ed2a52e9
SM
20437 * cus-edit.el (customize-changed-options-previous-release):
20438 Bump value to 22.1. (Bug#3804)
ed3a5691 20439
49405d0e
SS
204402009-07-08 Sam Steingold <sds@gnu.org>
20441
20442 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
20443 to be a cons cell (test . ignored-directory) to selectively ignore
20444 some directories depending on the location of the search.
20445
93c3eb7c
MA
204462009-07-08 Michael Albinus <michael.albinus@gmx.de>
20447
20448 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
20449 remote user is root, on the local host.
20450 (tramp-local-host-p): Either the local user or the remote user
20451 must be root. (Bug#3771)
20452
6f2a8484
NR
204532009-07-08 Nick Roberts <nickrob@snap.net.nz>
20454
20455 * progmodes/gdb-mi.el (gdb): Remove description of
20456 gdb-use-separate-io-buffer.
69cb8d82 20457 (menu): Don't allow toggling of or enable
6f2a8484
NR
20458 gdb-use-separate-io-buffer from menubar.
20459
88d03607
CY
204602009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
20461
20462 * mail/unrmail.el (unrmail): Make sure the message ends with two
20463 newlines (Bug#3769).
20464
7ef5b8b2
GM
204652009-07-08 Glenn Morris <rgm@gnu.org>
20466
20467 * calendar/calendar.el (calendar-current-date): Rework previous change.
20468
3ce82f97
GM
204692009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
20470
20471 * calendar/calendar.el (calendar-current-date):
20472 Add an optional argument giving an offset from today.
20473
f35fc841
GM
204742009-07-08 Glenn Morris <rgm@gnu.org>
20475
20476 * tutorial.el (tutorial--describe-nonstandard-key):
20477 Adjust the message for when a key has been unbound.
20478 (help-with-tutorial): Hide the arch-tag.
20479
40149292
KH
204802009-07-08 Kenichi Handa <handa@m17n.org>
20481
69cb8d82
KH
20482 * international/fontset.el (setup-default-fontset): For each
20483 script, append (not set) font-specs.
20484
40149292
KH
20485 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
20486 docstring.
20487
ff0c4194
NR
204882009-07-08 Nick Roberts <nickrob@snap.net.nz>
20489
20490 * progmodes/gdb-mi.el (gdb-init-1): Move sending
20491 -data-list-register-names to ...
20492 (gdb-starting): ... here because GDB 7.0 requires execution to
20493 have started when using this MI command.
20494 (gdb-set-header): New function to distinguish select and
20495 unselected tabs in gdb buffers.
20496 (gdb-propertize-header): New macro that uses gdb-set-header.
20497 (gdb-breakpoints-header, gdb-locals-header): Use it.
6f2a8484 20498 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
ff0c4194 20499
8954c675
CY
205002009-07-07 Chong Yidong <cyd@stupidchicken.com>
20501
20502 * Makefile.in (ELCFILES): Remove fadr.elc.
20503
0996385d
DD
205042009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
20505
dc6b4519
DD
20506 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
20507 may contain frame information, so `string-match' should be used.
20508 (gdb-update): Disassembly is invalidated through
20509 `gdb-get-selected-frame'.
20510 (gdb-pad-string): New function to pad string with spaces.
20511 (gdb-invalidate-disassembly): Invalidate only if the buffer
20512 exists.
20513 (gdb-disassembly-handler-custom): Column alignment.
20514 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
20515 placing new ones.
20516 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
20517 end of line, too.
20518 (gdb-frame-handler): Match convention to for disassembly buffer
20519 mode name.
17c1380b 20520 (gdb-stack-list-frames-handler): Rewritten without regexps.
e7006f27
DD
20521 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
20522 not highlight breakpoints without line information.
69a197a2 20523 (gdb-input): Add trailing newline to command.
dc6b4519 20524
14340b25
DD
20525 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
20526 buffer properly.
20527 (gdb-breakpoints-list-handler-custom): Replacement for
7b6fefac 20528 `gdb-break-list-handler'. Using real parser instead of regexps
dc6b4519
DD
20529 now.
20530 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
20531 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
20532 to place breakpoints.
14340b25
DD
20533 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
20534 functions.
20535 (gdb-disassembly-handler-custom): Show overlay arrow.
20536 (gdb-disassembly-place-breakpoints): Show breakpoints in
20537 disassembly buffer.
20538 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
dc6b4519 20539 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
7b6fefac 20540 instead of parsing breakpoints buffer. Fixed old menu references
dc6b4519 20541 in `gud-menu-map'.
14340b25 20542
38d4f316 20543 * fadr.el: Remove.
1f2a6224 20544
7b6fefac 20545 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
0996385d 20546 (gdb-memory-address): New variable which holds top address of
7b6fefac 20547 memory page shown in memory buffer.
6a7662bb
BR
20548 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit):
20549 New customization variables.
0996385d
DD
20550 New functions:
20551 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
20552 display the memory buffer.
20553 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
20554 buffer display parameters.
20555 (def-gdb-memory-format, gdb-memory-format-binary)
20556 (gdb-memory-format-octal, gdb-memory-format-unsigned)
20557 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
20558 Functions for setting memory buffer format.
20559 (gdb-memory-unit-word, gdb-memory-unit-halfword)
20560 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
20561 unit size used in memory buffer.
6a7662bb
BR
20562 (gdb-memory-show-next-page, gdb-memory-show-previous-page):
20563 Switch to next/previous page of memory buffer.
28d67a53 20564 Now using (bindat-get-field) instead of fadr functions.
0996385d 20565
9ba562d3
SS
205662009-07-07 Sam Steingold <sds@gnu.org>
20567
20568 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
20569 non-top-level files.
20570
a43977db
KH
205712009-07-07 Kenichi Handa <handa@m17n.org>
20572
6a7662bb
BR
20573 * international/mule-cmds.el (reset-language-environment):
20574 Put the highset priority to the charset iso-8859-1.
a43977db 20575
d44d05e8
CY
205762009-07-06 Chong Yidong <cyd@stupidchicken.com>
20577
20578 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
20579 to the end of the line when locating the block (Bug#700).
20580
3e2fa353
MA
205812009-07-06 Michael Albinus <michael.albinus@gmx.de>
20582
20583 * net/tramp.el (tramp-handle-write-region): Flush file properties
20584 in case of short track.
20585
be3e598a 205862009-07-06 Michael McNamara <mac@mail.brushroad.com>
d88782c3 20587
bf0b361c
JB
20588 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
20589 Coded custom representation of verilog error regular expressions
20590 to work with Emacs-22's new format.
d88782c3 20591 (verilog-error-regexp-xemacs-alist): Coded custom representation
7b6fefac 20592 of verilog error regular expressions to work with XEmacs format.
d88782c3
DN
20593 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
20594 error recognition into XEmacs.
20595 (verilog-error-regexp-add-emacs): Hook routine to install verilog
20596 error recognition into Emacs-22.
20597
25c6f63e
CY
205982009-07-06 Chong Yidong <cyd@stupidchicken.com>
20599
20600 * woman.el: Remove stand-alone closing parentheses.
20601 (woman-file-name, woman2-format-paragraphs)
20602 (woman-leave-blank-lines): Code cleanup.
20603 (woman-use-own-frame): Change default to nil.
6a7662bb
BR
20604 (woman-italic, woman-bold, woman-unknown, woman-addition):
20605 Change defaults to inherit from default faces.
25c6f63e
CY
20606 (woman2-process-escapes): Consume the newline after a stand-alone
20607 filler character (Bug#3651).
20608
f176290e
GM
206092009-07-06 Glenn Morris <rgm@gnu.org>
20610
20611 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
20612 (top-level): Move provide to the end.
20613 (ffap): Remove defunct URL from custom group.
20614
20615 * subr.el (eval-after-load): Doc fix.
20616
7b6fefac 206172009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
e4a5a307
JB
20618
20619 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
20620 `calc-embedded-word' is called twice.
20621
4b8b1ec5
SM
206222009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
20623
20624 * files.el (find-alternate-file-other-window, find-alternate-file):
20625 Obey confirm-nonexistent-file-or-buffer.
20626
d6ceb380
MA
206272009-07-05 Michael Albinus <michael.albinus@gmx.de>
20628
20629 * dired-aux.el (dired-show-file-type): Handle remote files.
20630
be3e598a 206312009-07-05 Jari Aalto <jari.aalto@cante.net>
c760f19e 20632
4b8b1ec5
SM
20633 * desktop.el (desktop-globals-to-save):
20634 Add file-name-history (Bug#2750).
c760f19e 20635
6d00ce04
CY
206362009-07-05 Chong Yidong <cyd@stupidchicken.com>
20637
4b8b1ec5 20638 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
6d00ce04 20639
6ee21b07
JB
206402009-07-04 Johan Bockgård <bojohan@gnu.org>
20641
20642 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
20643 property on entire argument since this is what eshell-lisp-command
20644 expects.
20645
f0dbdc25
MA
206462009-07-03 Michael Albinus <michael.albinus@gmx.de>
20647
20648 * net/tramp-gvfs.el (tramp-gvfs-methods)
20649 (tramp-gvfs-zeroconf-domain)
20650 (tramp-bluez-discover-devices-timeout): Add version flag.
20651 (tramp-gvfs-handler-mounted-unmounted)
20652 (tramp-gvfs-connection-mounted-p): Polish handling of
20653 incompatibilities between GVFS 0.2 and 1.0.
20654
e044e4fc
JD
206552009-07-03 Jan Djärv <jan.h.d@swipnet.se>
20656
4b8b1ec5 20657 * cus-start.el (all): Add make-pointer-invisible.
e044e4fc 20658
2e9b968b
JB
206592009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
20660
bf0b361c 20661 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
2e9b968b
JB
20662 formatted correctly.
20663
baf1a55e
JL
206642009-07-02 Juri Linkov <juri@jurta.org>
20665
20666 * info.el: Virtual Info files and nodes.
20667 (Info-virtual-files, Info-virtual-nodes): New variables.
20668 (Info-current-node-virtual): New variable.
20669 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
20670 New functions.
20671 (Info-file-supports-index-cookies): Use Info-virtual-file-p
20672 to check for a virtual file instead of checking a fixed list
20673 of node names.
20674 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
20675 instead of ad-hoc processing of "dir" and (apropos history toc).
20676 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
20677 instead of ad-hoc processing of "dir" and (apropos history toc).
20678 Reread a file when moving from a virtual node.
20679 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
20680 (Info-directory-toc-nodes, Info-directory-find-file)
20681 (Info-directory-find-node): New functions.
20682 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
20683 (Info-history): Move part of code to
20684 `Info-history-find-node'.
20685 (Info-history-toc-nodes, Info-history-find-file)
20686 (Info-history-find-node): New functions.
20687 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
20688 (Info-toc): Move part of code to `Info-toc-find-node'.
20689 (Info-toc-find-node): New function.
4b8b1ec5 20690 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
baf1a55e
JL
20691 the current Info file name to references because now the node
20692 "*TOC*" belongs to the same Info manual.
4b8b1ec5 20693 (Info-toc-build): Rename from `Info-build-toc'.
baf1a55e
JL
20694 (Info-toc-nodes): Rename input argument `file' to `filename'.
20695 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
20696 instead of ad-hoc processing of ("dir" apropos history toc).
20697 (Info-index-nodes): Use Info-virtual-file-p
20698 to check for a virtual file instead of checking a fixed list
20699 of node names.
20700 (Info-index-node): Add check for `Info-current-node-virtual'.
20701 Raise `save-match-data' higher up the tree to contain
20702 `search-forward' too (bug fix).
20703 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
20704 (Info-virtual-index-nodes): New variable.
20705 (Info-virtual-index-find-node, Info-virtual-index): New functions.
20706 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
20707 (Info-apropos-file, Info-apropos-nodes): New variables.
20708 (Info-apropos-toc-nodes, Info-apropos-find-file)
20709 (Info-apropos-find-node, Info-apropos-matches): New functions.
20710 (info-apropos): Move part of code to `Info-apropos-find-node' and
20711 `Info-apropos-matches'.
20712 (Info-mode-map): Bind "I" to `Info-virtual-index'.
20713 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
20714 for a virtual file instead of checking a fixed list of node names.
20715
20716 * simple.el (async-shell-command): New command.
20717
20718 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
20719
20720 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
20721 instead of `mount-info'.
20722
d04bc496
MA
207232009-07-02 Michael Albinus <michael.albinus@gmx.de>
20724
20725 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
4b8b1ec5 20726 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
d04bc496 20727
af0403e0
KH
207282009-07-02 Kenichi Handa <handa@m17n.org>
20729
20730 * international/mule.el (set-keyboard-coding-system): Force *-unix
20731 coding-system to avoid eol conversion.
20732
99278f8a
MA
207332009-07-01 Michael Albinus <michael.albinus@gmx.de>
20734
4b8b1ec5
SM
20735 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
20736 Add handler for `process-file', `shell-command' and
99278f8a
MA
20737 `start-file-process'.
20738 (tramp-gvfs-handle-shell-command)
20739 (tramp-gvfs-handle-start-file-process)
20740 (tramp-gvfs-handle-process-file): New defuns.
4b8b1ec5 20741 (tramp-synce-list-devices): Simplify check for existence of property.
99278f8a 20742
3f1c6666
JD
207432009-07-01 Jan Djärv <jan.h.d@swipnet.se>
20744
20745 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
20746
3f396bac
KH
207472009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
20748
20749 * language/korean.el (set-language-info-alist): Add korean-cp949,
20750 cp949 to spec.
20751
c1185193
KH
207522009-07-01 Kenichi Handa <handa@m17n.org>
20753
20754 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
20755
20756 * international/encoded-kb.el: Deleted.
20757
20758 * international/mule.el (set-keyboard-coding-system): Perform the
20759 necessary setup here instead of calling encoded-kbd-setup-display.
20760
3f150a60
GM
207612009-07-01 Glenn Morris <rgm@gnu.org>
20762
20763 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
20764
b0d5b05b
GM
207652009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
20766
20767 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
20768
4f4126e6
MA
207692009-06-30 Michael Albinus <michael.albinus@gmx.de>
20770
4b8b1ec5
SM
20771 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
20772 Handle also the 'rename case, when setting file modes. (Bug#3712)
48c2d18a 20773 (tramp-default-file-modes): Remove execute permissions.
4f4126e6 20774
7ae3ea65 20775 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
d6ceb380
MA
20776 (top): Add a default for "synce" in `tramp-default-user-alist'.
20777 Add completion function for "synce" method.
20778 (tramp-hal-service, tramp-hal-path-manager)
4b8b1ec5
SM
20779 (tramp-hal-interface-manager, tramp-hal-interface-device):
20780 New defconst.
20781 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
20782 (tramp-synce-list-devices, tramp-synce-parse-device-names):
20783 New defuns.
d6ceb380
MA
20784
20785 * net/trampver.el: Update release number.
7ae3ea65 20786
0ad6626b
KH
207872009-06-30 Kenichi Handa <handa@m17n.org>
20788
20789 * international/fontset.el (setup-default-fontset): Add CJK fonts
20790 for symbols and the other miscellaneous characters.
20791
4b8b1ec5
SM
20792 * language/korea-util.el (setup-korean-environment-internal):
20793 Make char-width-table suitable for Korean environments.
0ad6626b
KH
20794 (exit-korean-environment): Cancel above.
20795
20796 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
20797 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
48c2d18a 20798 setup-function to make char-width-table suitable for respective
0ad6626b
KH
20799 environments, and an exit-function to cancel that.
20800
20801 * language/japan-util.el (setup-japanese-environment-internal):
20802 Call use-cjk-char-width-table with arg `ja_JP'.
20803
20804 * international/characters.el (cjk-char-width-table): Delete it.
20805 (cjk-char-width-table-list): New variable.
20806 (use-cjk-char-width-table): New arg local-name.
20807 (use-default-char-width-table): Fix for the case that Emacs is
20808 already using the default char-width-table.
20809
fd46e893
MA
208102009-06-29 Michael Albinus <michael.albinus@gmx.de>
20811
20812 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
20813 modes mandatory. (Bug#3712)
20814
b87d9f96
AM
208152009-06-29 Alan Mackenzie <acm@muc.de>
20816
20817 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
4b8b1ec5 20818 correction between the visible width of TABs and their number of bytes.
b87d9f96 20819
2d25aa5a
CY
208202009-06-29 Chong Yidong <cyd@stupidchicken.com>
20821
20822 * server.el (server-buffer-done): Prevent kill-buffer from
20823 prompting by clearing the buffer modification flag (Bug#3696).
20824
a3a8b002
DN
208252009-06-28 Michael McNamara <mac@mail.brushroad.com>
20826
bf0b361c 20827 * progmodes/verilog-mode.el (verilog-beg-of-statement)
4b8b1ec5 20828 (verilog-endcomment-reason-re): Support unique case and priority case.
a3a8b002
DN
20829 (verilog-basic-complete-re): Support localparam lineup.
20830 (verilog-beg-of-statement-1): Fix for robustness, unique case.
20831 (verilog-set-auto-endcomments): Fix for unique case, always_comb
20832 commenting.
20833 (verilog-leap-to-case-head): Now support *nested* unique &
20834 priority case statements.
20835 (verilog-auto-lineup): Make just declarations the default (as it
20836 had been).
4b8b1ec5 20837 (verilog-leap-to-case-head): Support priority/unique case statements.
a3a8b002 20838 (verilog-auto-lineup): Rework to give users radio buttons to
7b6fefac 20839 select the various styles of automatic lineup.
a3a8b002
DN
20840 (verilog-error-regexp-alist): Rework to support the XEmacs style
20841 of error regular expressions from compilers, lint tools &
20842 simulators. Note that GNU Emacs has made it impossible for a mode
20843 to load such things.
20844 (electric-verilog-terminate-line, verilog-indent-declaration)
20845 (verilog-auto-wiure): Rework for radio button selection of
20846 auto-lineup selection of specification of auto lineup.
20847 (verilog-beg-of-statement-1): Redesign to support proper operation
20848 in additional code, based on testing with auto-lineup.
20849 (verilog-calculate-indent, assignments & declarations)
20850 (verilog-backward-token): Enhance to support auto-lineup of
20851 assignments & declarations.
20852 (verilog-in-directive-p, verilog-at-struct-p): New function for
20853 easy test of whether we are.
20854 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
20855 to support safe execution at almost anyline.
20856 (verilog-calc-1): Properly support indenting deep inside generate
20857 blocks.
48c2d18a 20858 (verilog-init-font): Remove definition & use of verilog-init-font,
a3a8b002 20859 as it is redundant with font-lock-defaults.
a8f316ca 20860 (verilog-mode): Alter the definition of verilog-font-lock-defaults
a3a8b002
DN
20861 to avoid circular calls if syntax-ppss is a function (as is the
20862 case now in 22.x GNU Emacs) as that function would sometimes call
7b6fefac 20863 itself, leading to (nearly) infinite recursion.
a3a8b002
DN
20864 (verilog-ovm-begin-re, verilog-ovm-end-re)
20865 (verilog-ovm-statement-re, verilog-leap-to-head)
20866 (verilog-backward-token): Add support for OVM macros. Some are
20867 complete statements, and others open and close scopes like begin
20868 and end.
20869 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
20870 (verilog-defun-level-generate-only-re): Really fix the defun-list
7b6fefac 20871 compilation issue.
48c2d18a 20872 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
7b6fefac 20873 coverpoint, constraint and cross statements.
a3a8b002
DN
20874 (verilog-defun-level-list, verilog-generate-defun-level-list)
20875 (verilog-all-defun-level-list): Redo these specifications - it is
20876 too hard to support eval-when compile aggregation of lists also
20877 built at when-compile time.
20878 (verilog-defun-level-list): Place defconsts of variables used in
20879 building regular expressions which are built in eval-when-compile
20880 bodies in the same eval-when-compile body to facilitate compile
20881 without load.
20882 (verilog-beg-block-re-ordered): Support indenting
20883 virtual/protected tasks and functions.
7b6fefac 20884 (verilog-defun-level-list, verilog-in-generate-region-p)
a3a8b002
DN
20885 (verilog-backward-ws&directives, verilog-calc-1): Speed up
20886 indentation of some module items (generate items).
20887 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
20888 across virtual/protected tasks and functions.
20889
208902009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
20891
bf0b361c 20892 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
4b8b1ec5 20893 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
a3a8b002
DN
20894 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
20895 in concatenations. Reported by Yishay Belkind.
20896 (verilog-auto-ascii-enum): Support one-hot state machines in
20897 AUTOASCIIENUM. Suggested by Lloyd Gomez.
20898 (verilog-auto-inst, verilog-auto-inst-port): Include interface
6a7662bb
BR
20899 modport in AUTOINST and add vl-modport for users.
20900 Reported by David Rogoff.
a3a8b002
DN
20901 (verilog-auto-inout-module, verilog-auto-inst)
20902 (verilog-decls-get-interfaces, verilog-insert-definition)
20903 (verilog-insert-one-definition, verilog-read-decls)
20904 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
20905 (verilog-sig-modport, verilog-signals-combine-bus)
20906 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
20907 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
20908 Suggested by David Rogoff.
20909 (verilog-repair-open-comma): Fix non-insertion of comma when
20910 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
20911 (verilog-make-width-expression): Simplify [A-1:0] expression
20912 widths to just {A{1'b0}}.
20913 (verilog-mode): Cleanup checkdoc warnings.
4b8b1ec5
SM
20914 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
20915 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
a3a8b002
DN
20916 inputs/outputs or data type. Suggested by Vasu Kandadi.
20917 (next-error-last-buffer): Fix byte-compiler warning.
20918 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
20919 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
4b8b1ec5 20920 or shell command text during AUTO expansion. Suggested by Tad Truex.
a3a8b002 20921 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
4b8b1ec5
SM
20922 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
20923 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
7b6fefac 20924 in AUTOINOUT. Reported by Matthew Lovell.
a3a8b002
DN
20925 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
20926 causing use of <= assignments. Reported by Alex Reed.
20927 (verilog-read-decls): Fix triand, trior, wand, wor to be
20928 recognized by AUTOWIRE. Reported by Spencer Isaacson.
20929 (verilog-extended-complete-re): Support import "DPI-C" functions.
20930 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
4b8b1ec5 20931 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
a3a8b002
DN
20932 (verilog-insert-date, verilog-insert-year)
20933 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
20934 Windows systems. Reported by Michael Potts.
20935 (verilog-read-module-name): Fix AUTOINST when the child module
7b6fefac 20936 declaration's name is a tick define. Reported by Elliot Mednick.
a3a8b002 20937 (verilog-read-decls): Fix V2K parameter bit subscripts getting
7b6fefac 20938 passed to next parameter's definition. Reported by Bruce T.
a3a8b002
DN
20939 (verilog-read-decls): Fix detecting "parameter int" when using
20940 AUTOINSTPARAM. Reported by Bruce T.
20941 (verilog-goto-defun): Fix goto not finding modules unless first
7b6fefac 20942 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
4b8b1ec5 20943 (verilog-mode): Expand -f flag arguments on entry to mode so
a3a8b002
DN
20944 verilog-goto-defun will work. Reported by Lawrence Butcher.
20945 (verilog-getopt): Expand environment variables in -f file
20946 arguments. Suggested by Lawrence Butcher.
4b8b1ec5 20947 (verilog-set-define): Fix "Symbol's value as variable is void"
a3a8b002
DN
20948 when reading enumerations.
20949 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
20950 Suggested by Stephen Peltan.
4b8b1ec5 20951 (verilog-read-defines): Fix reading of enumerations in include
a3a8b002
DN
20952 files. Reported by Steve Peltan.
20953
f7c0d931
CY
209542009-06-28 David De La Harpe Golden <david@harpegolden.net>
20955
20956 * files.el (trash-directory): Fix defcustom type.
20957
baf1a55e 209582009-06-28 Juri Linkov <juri@jurta.org>
cebabb67
CY
20959
20960 * help-fns.el (describe-function-1): Correctly locate adviced
20961 functions in hyperlink (Bug#2438).
20962
d63a01ef
CY
209632009-06-28 Chong Yidong <cyd@stupidchicken.com>
20964
20965 * files.el (trash-directory): Change default to nil.
20966 (move-file-to-trash): If trash-directory is nil and
20967 system-move-file-to-trash is unbound, perform freedesktop-style
20968 trashing.
20969
209702009-06-28 David De La Harpe Golden <david@harpegolden.net>
20971
20972 * files.el (move-file-to-trash): Add freedesktop trash
20973 support (Bug#973).
20974
fc2f6a26
GM
209752009-06-28 Glenn Morris <rgm@gnu.org>
20976
20977 * autorevert.el (global-auto-revert-non-file-buffers)
20978 (global-auto-revert-mode): Doc fixes.
20979
00242b07
JB
209802009-06-27 Johan Bockgård <bojohan@gnu.org>
20981
20982 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
20983
f5594f03
CY
209842009-06-27 Chong Yidong <cyd@stupidchicken.com>
20985
e8a2b2da
CY
20986 * faces.el (x-handle-named-frame-geometry): Ensure that we have
20987 opened an X connection before calling x-get-resource (Bug#3194).
20988
f5594f03
CY
20989 * play/doctor.el: Remove reference to obsolete website.
20990 (make-doctor-variables): Correct grammar mistake (Bug#2633).
20991
3c3bf6ce
DN
209922009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
20993
20994 Remove find-file-not-found-hook VC method. (Bug#2757)
20995 * vc-hooks.el (vc-file-not-found-hook)
20996 (vc-default-find-file-not-found-hook): Remove functions.
20997 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
20998 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
20999 * vc.el:
21000 * vc-hg.el:
21001 * vc-git.el: Do not mention find-file-not-found-hook VC method.
21002
e26a7bc0
AM
210032009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
21004
21005 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
3570691b 21006 compatibility function for `looking-back'.
e26a7bc0 21007
4b8b1ec5 21008 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
7b6fefac 21009 Use `ispell-looking-back'.
e26a7bc0 21010
d9848600
MA
210112009-06-24 Michael Albinus <michael.albinus@gmx.de>
21012
21013 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
fc2f6a26 21014 rather than `filename'.
d9848600 21015
05fbc4a9
MB
210162009-06-23 Miles Bader <miles@gnu.org>
21017
21018 * face-remap.el (text-scale-set): New function.
21019
f86ca715
GM
210202009-06-23 Glenn Morris <rgm@gnu.org>
21021
33e2c2e5
GM
21022 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
21023
f529f302
GM
21024 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
21025
34995333
GM
21026 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
21027
cc80ccee
GM
21028 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
21029
84cb770d
GM
21030 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
21031 Simplify Persian conditionals.
21032
d916c965
GM
21033 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
21034 variable `filename'.
21035
b6a44b27
GM
21036 * comint.el (comint-insert-input): Doc fix.
21037
f86ca715
GM
21038 * Makefile.in (ELCFILES): Fix typo in previous change.
21039
666e158e
MB
210402009-06-23 Miles Bader <miles@gnu.org>
21041
21042 * cus-start.el: Add entry for `recenter-redisplay'.
21043
be3e598a 210442009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
77bf3f54
DN
21045
21046 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
21047 Add an optional argument for the backend, use it instead of
21048 calling vc-backend.
4b8b1ec5
SM
21049 (vc-mode-line): Add an optional argument for the backend.
21050 Pass the backend to vc-state and vc-working-revision. Move code for
77bf3f54
DN
21051 special handling for vc-state being a buffer to ...
21052
21053 * vc-rcs.el (vc-rcs-find-file-hook):
21054 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
21055
21056 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
21057 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
21058 vc-stay-local-p and vc-mode-line calls.
21059
21060 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
21061 (vc-cvs-diff, vc-cvs-annotate-command)
21062 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
21063 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
21064 vc-mode-line calls.
21065
21066 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
21067 direct comparison.
21068 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
21069 backend when calling vc-mode-line.
21070 (vc-register): Do not create a closure for calling the vc register
21071 function, call it directly.
21072
2764748c
DN
210732009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
21074
21075 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
21076 to make it obvious item can be clicked.
f5a0b281
DN
21077
21078 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
21079
d4a885b2
KH
210802009-06-23 Kenichi Handa <handa@m17n.org>
21081
21082 * language/korea-util.el (korean-key-bindings): Change the binding
21083 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
21084 same command.
21085
e3610693
MA
210862009-06-22 Michael Albinus <michael.albinus@gmx.de>
21087
21088 Sync with Tramp 2.1.16.
21089
21090 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
21091
21092 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
21093 when a loading of a package fails. Completion function for rsync
21094 is `tramp-completion-function-alist-ssh'.
21095 (all): Replace all calls of `split-string' and
21096 `tramp-split-string' by `tramp-compat-split-string'.
21097 (tramp-default-method): Use `tramp-compat-process-running-p'.
21098 (tramp-default-proxies-alist): Allow also Lisp forms.
21099 (tramp-remote-path): Add choice "Private Directories".
4b8b1ec5 21100 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
e3610693
MA
21101 (tramp-domain-regexp): Allow also "-", "_" and ".".
21102 (tramp-end-of-output): Remove newlines, and add "$" at the end.
21103 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
21104 (tramp-debug-message): Insert header line in debug buffer.
4b8b1ec5
SM
21105 (tramp-handle-directory-files-and-attributes-with-stat):
21106 Care about filenames with spaces, or starting with "-".
e3610693
MA
21107 (tramp-handle-dired-uncache): New defun.
21108 (tramp-handle-insert-directory): Don't flush the directory from
21109 cache, this is handled by `dired-uncache' now.
21110 (tramp-handle-insert-file-contents): Improve error handling.
21111 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
21112 Quote `tramp-end-of-output'.
21113 (tramp-action-password): Improve trace message.
4b8b1ec5
SM
21114 (tramp-check-for-regexp): Both echoes must be present, before removing.
21115 (tramp-open-connection-setup-interactive-shell): Trace coding system.
e3610693
MA
21116 (tramp-compute-multi-hops): Eval cons cells of
21117 `tramp-default-proxies-alist'.
21118 (tramp-maybe-open-connection): Use the same command pattern for
21119 first hop and further hops.
21120 (tramp-wait-for-output): Remove handling of newlines.
21121 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
21122 (tramp-split-string): Remove function. It is handled in
21123 tramp-compat now.
21124
4b8b1ec5
SM
21125 * net/tramp-cmds.el (tramp-bug):
21126 Recommend `tramp-cleanup-all-connections' in the bug mail.
e3610693
MA
21127
21128 * net/tramp-compat.el (tramp-compat-split-string)
21129 (tramp-compat-process-running-p): New defuns.
21130
21131 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
21132 for `dired-uncache'.
21133
21134 * net/tramp-gvfs.el: New package.
21135
4b8b1ec5
SM
21136 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
21137 Add handler for `dired-uncache'.
e3610693
MA
21138 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
21139
21140 * net/trampver.el: Update release number. Make version check fit
21141 for SXEmacs 22.
21142
13a3f374
JM
211432009-06-22 Jim Meyering <meyering@redhat.com>
21144
e0a28a3b 21145 Automatically handle .xz suffix (XZ-compressed files), too.
13a3f374
JM
21146 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
21147 XZ is the successor to LZMA: <http://tukaani.org/xz/>
21148
5242671e 211492009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
4e2af782 21150 Nick Roberts <nickrob@snap.net.nz>
13a3f374 21151
e0a28a3b 21152 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
5242671e
NR
21153 repository (http://sphinx.net.ru/hg/gdb-mi/).
21154
3fde45af
GM
211552009-06-22 Glenn Morris <rgm@gnu.org>
21156
46253b34
GM
21157 * files.el (dir-locals-collect-mode-variables): Allow for any number of
21158 `mode' and `eval' entries. (Bug#3430)
21159
97e18192
GM
21160 * Makefile.in (ELCFILES): Add fadr.elc.
21161
731a00fb
GM
21162 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
21163 differing behavior of \n and ^ in strings. (Bug#3385)
21164
c66cd0ff
GM
21165 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
21166
3fde45af
GM
21167 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
21168 property.
21169 (lisp-indent-function): Make it a defcustom.
21170
db2241a0
NR
211712009-06-21 Nick Roberts <nickrob@snap.net.nz>
21172
21173 * progmodes/gdb-ui.el: Replace with ...
5242671e 21174 * progmodes/gdb-mi.el: ... this file.
db2241a0 21175 * progmodes/gud.el: Modify for gdb-mi.el.
fca428fe
GM
21176
211772009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
21178
db2241a0
NR
21179 * fadr.el: New file.
21180
38d4f316 21181See ChangeLog.14 for earlier changes.
e3d51b27
MR
21182
21183;; Local Variables:
21184;; coding: utf-8
e3d51b27
MR
21185;; End:
21186
8de31eec 21187 Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
e3d51b27
MR
21188
21189 This file is part of GNU Emacs.
21190
21191 GNU Emacs is free software: you can redistribute it and/or modify
21192 it under the terms of the GNU General Public License as published by
21193 the Free Software Foundation, either version 3 of the License, or
21194 (at your option) any later version.
21195
21196 GNU Emacs is distributed in the hope that it will be useful,
21197 but WITHOUT ANY WARRANTY; without even the implied warranty of
21198 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21199 GNU General Public License for more details.
21200
21201 You should have received a copy of the GNU General Public License
21202 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.