]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
* net/rcirc.el (rcirc-kill-buffer-hook): Flush logs.
[gnu-emacs] / lisp / ChangeLog
1 2011-01-22 Ken Manheimer <ken.manheimer@gmail.com>
2
3 * allout.el (allout-prefixed-keybindings): Bind (prefixed) '#' to
4 allout-number-siblings, in keeping with what obtained due to
5 (now-defunct) allout-keybindings-list. Ditch repeat binding to
6 (prefixed) ?i.
7 (allout-before-change-handler): Better expose spots affected by
8 undo.
9
10 2011-01-22 Chong Yidong <cyd@stupidchicken.com>
11
12 * man.el (Man-highlight-references0): Use make-button (Bug#7881).
13
14 2011-01-22 Phil Hagelberg <phil@evri.com>
15
16 * pcmpl-unix.el (pcmpl-ssh-config-file): New option.
17 (pcmpl-ssh-known-hosts): Rename from pcmpl-ssh-hosts.
18 (pcmpl-ssh-config-hosts): New function.
19 (pcmpl-ssh-hosts): Use pcmpl-ssh-config-hosts in addition to
20 pcmpl-ssh-known-hosts.
21
22 2011-01-21 Jay Belanger <jay.p.belanger@gmail.com>
23
24 * calc/calc-undo.el (calc-undo): Autoload it.
25 * calc/calc-ext.el (calc-init-extensions): Remove keybindings
26 and autoload for `calc-undo'.
27 * calc/calc.el (calc-mode-map): Add keybindings for `calc-undo'.
28 * calc/calc-prog.el:
29 * calc/calc-graph.el:
30 * calc/calc-map.el: Change `arglist' to `math-arglist' throughout.
31
32 2011-01-21 Štěpán Němec <stepnem@gmail.com> (tiny change)
33
34 * calc/calc-ext.el (calc-init-extensions): Map all `undo'
35 keybindings to `calc-undo'.
36
37 2011-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
38
39 Don't mess with *temp*.
40 * obsolete/spell.el: Move from textmodes/spell.el.
41 (spell-string):
42 * term.el (term-read-input-ring):
43 * startup.el (display-startup-echo-area-message):
44 * progmodes/antlr-mode.el (antlr-directory-dependencies):
45 * comint.el (comint-read-input-ring): Use with-temp-buffer.
46 * international/mule.el (ctext-pre-write-conversion): Don't hardcode
47 point-min==1.
48
49
50 2011-01-20 Ken Manheimer <ken.manheimer@gmail.com>
51
52 * allout.el: (allout-institute-keymap): Use fset instead of
53 reapplying defalias.
54
55 (allout-hotspot-key-handler): Check for non-control-modified
56 bindings for hotspot characters if there are no control-modified
57 versions.
58
59 * allout.el: Summary - migrate to defining allout mode using
60 define-minor-mode instead of defun. Significantly clean-up
61 internal keymap provisions, refactoring and, in the process,
62 removing a lot of accumulated cruft.
63
64 allout-mode-map is now a keymap by virtue of being a defalias to
65 allout-mode-map-value, which contains the actual keymap structure.
66
67 (allout-mode): Use define-minor-mode rather than defun.
68 Remove now-unnecessary minor-mode setup activities from the body.
69 Specify :keymap as allout-mode-map so the minor-mode-map-alist
70 entry will be '(allout-mode . allout-mode-map) - see
71 allout-mode-map-value, below. Adjust docstring to track changes.
72 (allout-minor-mode): Remove this defalias, now that we're using
73 define-minor-mode.
74 (allout-mode-map): Set value to be 'allout-mode-map. The actual
75 keymap is allout-mode-map-value, via defalias.
76 (allout-mode-map-value): The variable holding the actual mode
77 keymap structure, by virtue of defalias from allout-mode-map.
78 (allout-compose-and-institute-keymap): Rename from
79 allout-bind-keys, and including the binding-composition
80 functionality of the former produce-allout-mode-map and
81 allout-setup-mode-map.
82 (allout-institute-keymap): Take over the "setup" part of the former
83 allout-setup-mode-map. Reassign allout-mode-map-value value and
84 update the defalias.
85 (allout-command-prefix) (allout-prefixed-keybindings)
86 (allout-unprefixed-keybindings):
87 Use allout-compose-and-institute-keymap to process the bindings.
88 (allout-unprefixed-keybindings): Remove extraneous '?' question
89 marks.
90 (allout-prefixed-keybindings): Elide binding to (prefixed) \C-h -
91 user can customize if they want to use that binding.
92 Bind allout-copy-topic-as-kill to (prefixed) \M-k.
93 Bind allout-up-current-level to (prefixed) \C-u. (I think i mistakenly
94 elided that, previously, instead of the one for \C-h.)
95 (allout-hotspot-key-handler): Remove attempt to resolve the key
96 through the literal key-string lookup on allout-keybindings-list.
97 That probably hasn't worked for a Long Time, and removal of
98 allout-keybindings-list further simplifies the keybindings
99 situation.
100 (allout-pre-command-business): Use allout-mode-map-value instead
101 of allout-mode-map.
102 (allout-preempt-trailing-ctrl-h): Remove. The user can customize
103 the bindings if they want to use a keybinding having a trailing
104 \C-h. No deprecation needed since this feature was never in a
105 release.
106 (allout-keybindings-list): Remove. It's not been useful for a
107 while. (See allout-hotspot-key-handler changes, above.)
108 (produce-allout-mode-map): Remove. Consolidate into
109 allout-compose-and-institute-keymap.
110 (allout-mode-map-adjustments): Remove. No longer necessary with
111 removal of allout-preempt-trailing-ctrl-h.
112 (allout-setup-mode-map): Remove. Consolidate into
113 allout-compose-and-institute-keymap and allout-institute-keymap.
114
115 2011-01-20 Glenn Morris <rgm@gnu.org>
116
117 * vc/vc-svn.el (vc-svn-after-dir-status): Tweak previous change.
118
119 * simple.el (read-expression-history): Remove, it's in minibuf.c.
120
121 2011-01-20 Chong Yidong <cyd@stupidchicken.com>
122
123 * subr.el (y-or-n-p): Revert 2011-01-07 change, removing ARGS.
124
125 * files.el (find-alternate-file, basic-save-buffer)
126 (basic-save-buffer-2, revert-buffer, recover-file)
127 (kill-buffer-ask, abort-if-file-too-large)
128 (set-visited-file-name, write-file, backup-buffer)
129 (basic-save-buffer, save-some-buffers):
130 * dired-aux.el (dired-compress-file): Callers changed.
131
132 2011-01-19 Glenn Morris <rgm@gnu.org>
133
134 * vc/vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
135 Also check the property status. (Bug#7861)
136
137 2011-01-18 Michael Albinus <michael.albinus@gmx.de>
138
139 * net/tramp.el (tramp-debug-message): Extend function exclude
140 list. Use `regexp-opt'.
141
142 2011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
143
144 * textmodes/tex-mode.el (tex-font-lock-verb): Make sure \verb
145 highlighting doesn't spill over subsequent lines.
146
147 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't re-evaluate the
148 keymap expression. Improve docstring.
149
150 * electric.el (electric-indent-post-self-insert-function):
151 Don't auto-indent for indent-to-left-margin, it's too often
152 counter-productive.
153
154 2011-01-16 Tassilo Horn <tassilo@member.fsf.org>
155
156 * strokes.el (strokes-read-stroke): Re-fill strokes buffer with
157 spaces if the frame was resized, so that the full visible buffer
158 serves as canvas for strokes.
159
160 2011-01-16 Glenn Morris <rgm@gnu.org>
161
162 * info-xref.el (info-xref-docstrings): Replace cl function.
163 Also skip directories.
164
165 2011-01-16 Kevin Ryde <user42@zip.com.au>
166
167 * info-xref.el: Version 3.
168 (info-xref-check, info-xref-check-all): Move commentary details
169 into docstrings for better visibility.
170 Use compilation-mode for the results buffer.
171 (info-xref-output, info-xref-output-error, info-xref-with-output)
172 (info-xref-filename, info-xref-in-progress):
173 New internals for this.
174 (info-xref-check-list, info-xref-check-buffer)
175 (info-xref-check-all-custom): Use those.
176 (info-xref-output-buffer): Rename from info-xref-results-buffer.
177 (info-xref-output-heading): Rename from info-xref-filename-heading.
178 (info-xref-good, info-xref-bad, info-xref-xfile-alist)
179 (info-xref-filename-heading): Move to output managing section.
180 (info-xref-docstrings): New command checking "Info node `(foo)Bar'"
181 (info-xref-lock-file-p, info-xref-with-file): New helpers for it.
182 (info-xref-subfile-p): Move to generic section with those two.
183 (info-xref-check-node): New function split from
184 info-xref-check-buffer, shared by info-xref-docstrings.
185 (info-xref-goto-node-p): Move to a checking section with that func.
186 (info-xref-unavail): New counter.
187 (info-xref-check-node): Use it.
188 (info-xref-with-output): Show count of unavailables at end of output.
189 (info-xref-all-info-files): Exclude ".*" dotfiles. Ignore broken
190 symlinks. Exclude .texi files. Exclude Emacs backup files.
191 (info-xref-check-all-custom): Fix quietening viper-mode and
192 gnus-registry-install -- use setq not let so as not to unbind
193 after load.
194
195 2011-01-16 Juri Linkov <juri@jurta.org>
196
197 * isearch.el (isearch-abort): Don't quit if search has
198 an incomplete regexp (isearch-error is non-nil). (Bug#7534)
199
200 2011-01-15 Mark Diekhans <markd@soe.ucsc.edu>
201
202 * files.el (backup-buffer): Make last-resort backup file in
203 .emacs.d (Bug#6953).
204
205 * subr.el (locate-user-emacs-file): If .emacs.d does not exist,
206 make it with permission 700.
207
208 2011-01-15 Kenichi Handa <handa@m17n.org>
209
210 * mail/rmailmm.el (rmail-mime-insert-header):
211 Set rmail-mime-coding-system to a cons whose car is the last coding
212 system used to decode the header.
213 (rmail-mime-find-header-encoding): New function.
214 (rmail-mime-insert-decoded-text):
215 Override rmail-mime-coding-system if it is a cons.
216 (rmail-show-mime): If only a header part was decoded, find the
217 coding system while ignoring mm-charset-override-alist.
218
219 2011-01-15 Chong Yidong <cyd@stupidchicken.com>
220
221 * subr.el (event-start, event-end): Doc fix (Bug#7826).
222
223 2011-01-15 Kenichi Handa <handa@m17n.org>
224
225 * mail/rmailmm.el (rmail-mime-next-item)
226 (rmail-mime-previous-item): Delete them.
227 (rmail-mime-shown-mode): Recursively call for children.
228 (rmail-mime-hidden-mode): Delete the 2nd arg TOP.
229 Callers changed.
230 (rmail-mime-raw-mode): Recursively call for children.
231 (rmail-mode-map): Change mapping of tab and backtab to
232 forward-button and backward-button respectively.
233 (rmail-mime-insert-tagline): Always insert "Hide" or "Show"
234 button.
235 (rmail-mime-update-tagline): New function.
236 (rmail-mime-insert-text): Call rmail-mime-update-tagline if the
237 body display is changed.
238 (rmail-mime-toggle-button): Rename from rmail-mime-image.
239 (rmail-mime-image): Delete this button type.
240 (rmail-mime-toggle): New button type.
241 (rmail-mime-insert-bulk): Call rmail-mime-update-tagline if the
242 body display is changed. Change the save button label to "Save".
243 Don't process show/hide button here.
244 (rmail-mime-insert-multipart): Call rmail-mime-update-tagline if
245 the body display is changed. Unconditionally call
246 rmail-mime-insert for children.
247 (rmail-mime-handle): Update `display' vector of the just inserted
248 entity.
249 (rmail-mime-process): If mail-header-parse-content-type returns
250 nil, use "text/plain" as the fallback type.
251 (rmail-mime-insert): For raw-mode, recursively call
252 rmail-mim-insert for children.
253 (rmail-mime): Handle the case that the current buffer is not rmail
254 buffer (e.g. in summary buffer).
255
256 2011-01-15 Kenichi Handa <handa@m17n.org>
257
258 * mail/rmailmm.el (rmail-mime-next-item)
259 (rmail-mime-previous-item): Skip the body of a non-multipart
260 entity if a tagline is shown.
261
262 2011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
263
264 * tmm.el (tmm-get-keymap): Skip bindings without labels (bug#7721).
265 (tmm-prompt): Simplify.
266 (tmm-add-prompt): Remove unused var `win'.
267
268 * whitespace.el (global-whitespace-newline-mode): Fix call (bug#7810)
269 to minor mode which used nil accidentally to mean "turn off".
270
271 2011-01-15 Michael Albinus <michael.albinus@gmx.de>
272
273 * net/tramp-sh.el (tramp-find-inline-compress)
274 (tramp-get-inline-coding): Quote command after pipe symbol for
275 local calls under W32. (Bug#6784)
276
277 2011-01-15 Michael Albinus <michael.albinus@gmx.de>
278
279 * net/tramp.el (tramp-default-method): Initialize with pscp/plink
280 only when running under W32.
281
282 2011-01-15 Eli Zaretskii <eliz@gnu.org>
283
284 * progmodes/grep.el (grep-compute-defaults): Quote the program
285 file name after the pipe symbol in Grep templates. (Bug#6784)
286 * jka-compr.el (jka-compr-partial-uncompress): Likewise.
287
288 2011-01-15 Lennart Borgman <lennart.borgman@gmail.com>
289
290 * buff-menu.el (Buffer-menu-buffer-list): New var.
291 (Buffer-menu-revert-function, list-buffers-noselect): Use it, so a
292 restricted buffer list is not lost on revert (Bug#7749).
293
294 2011-01-15 Eric Hanchrow <eric.hanchrow@gmail.com>
295
296 * net/ldap.el (ldap-search-internal): Discard stderr output.
297
298 2011-01-15 Eli Zaretskii <eliz@gnu.org>
299
300 * files.el (directory-abbrev-alist): Doc fix. (Bug#7777)
301
302 2011-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
303
304 * vc-bzr.el (vc-bzr-annotate-time): Tweak previous change.
305
306 2011-01-15 Kenichi Handa <handa@m17n.org>
307
308 * mail/rmailmm.el (rmail-mime-insert-bulk): Display an unknown
309 part as a plain text.
310 (rmail-mime-process-multipart): Set the default content-type to
311 nil for unknown multipart subtypes (bug#7651).
312
313 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
314
315 * hexl.el (hexl-mode-old-*): Remove.
316 (hexl-mode--old-var-vals): New var to replace them.
317 (hexl-mode--minor-mode-p, hexl-mode--setq-local): New funs.
318 (hexl-mode, hexl-follow-line, hexl-activate-ruler):
319 Use them to set local vars (bug#7846).
320 (hexl-mode-exit): Use hexl-mode--old-var-vals to restore state.
321 (hexl-backward-short, hexl-backward-word, hexl-scroll-down)
322 (hexl-scroll-up, hexl-end-of-1k-page, hexl-end-of-512b-page): Simplify.
323
324 * vc/smerge-mode.el: Resolve comment conflicts more aggressively.
325 (smerge-resolve--normalize-re): New var.
326 (smerge-resolve--extract-comment, smerge-resolve--normalize): New funs.
327 (smerge-resolve): Use them.
328 * newcomment.el (comment-only-p): New function.
329 (comment-or-uncomment-region): Use it.
330
331 2011-01-14 Brent Goodrick <bgoodr@gmail.com> (tiny change)
332
333 * abbrev.el (prepare-abbrev-list-buffer): If listing local abbrev
334 table, get the value before switching to the output buffer. (Bug#7733)
335
336 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
337
338 * progmodes/python.el (python-mode): Don't impose font-lock (bug#3628).
339
340 2011-01-14 Kim F. Storm <storm@cua.dk>
341
342 * emulation/cua-base.el (cua--init-keymaps):
343 Remap exchange-point-and-mark in cua-global-keymap.
344
345 2011-01-14 Tassilo Horn <tassilo@member.fsf.org>
346
347 * progmodes/sh-script.el (sh-other-keywords): Add ZSH's foreach
348 loop keyword.
349
350 2011-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
351
352 * emacs-lisp/easymenu.el: Add :enable (bug#7754), and obey :label.
353 Require CL.
354 (easy-menu-create-menu, easy-menu-convert-item-1):
355 Use :label rather than nil for labels. Use `case'.
356 Add :enable as alias for :active.
357 (easy-menu-binding): Obey :label.
358
359 2011-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
360
361 Use run-mode-hooks for major mode hooks (bug#513).
362 * textmodes/reftex-toc.el (reftex-toc-mode-map):
363 Rename from reftex-toc-map.
364 (reftex-toc-mode): Use define-derived-mode.
365 * textmodes/reftex-sel.el (reftex-select-shared-map): New map.
366 (reftex-select-label-mode-map, reftex-select-bib-mode-map):
367 Rename from reftex-select-(label|bib)-map. Move init into declaration.
368 (reftex-select-label-mode, reftex-select-bib-mode):
369 Use define-derived-mode.
370 * textmodes/reftex-index.el (reftex-index-phrases-mode-map)
371 (reftex-index-mode-map): Rename from reftex-index(-phrases)-map.
372 Move init into delcaration.
373 (reftex-index-mode, reftex-index-phrases-mode):
374 Use define-derived-mode.
375 * speedbar.el (speedbar-mode-syntax-table): Renaqme from
376 speedbar-syntax-table. Move init into declaration.
377 (speedbar-mode-map): Rename from speedbar-key-map.
378 Move init into declaration.
379 (speedbar-file-key-map): Move init into declaration.
380 (speedbar-mode): Use define-derived-mode.
381 * recentf.el (recentf-mode): Don't run hook (or message) redundantly.
382 * net/rcirc.el (rcirc-mode): Use run-mode-hooks.
383 * emacs-lisp/chart.el (chart-mode-map): Rename from chart-map.
384 (chart-face-list): Move initialization into declaration.
385 (chart-mode): Use define-derived-mode.
386 * calculator.el (calculator-mode-map): Move init into declaration.
387 (calculator-mode): Use define-derived-mode.
388
389 * mail/mail-utils.el (mail-strip-quoted-names): Make the regexp code
390 work for nested comments.
391
392 * progmodes/prolog.el: Use syntax-propertize. Further code cleanup.
393 (prolog-use-prolog-tokenizer-flag): Change default when
394 syntax-propertize can be used.
395 (prolog-syntax-propertize-function): New var.
396 (prolog-mode-variables): Move make-local-variable into `set'.
397 Don't make comment-column local since we don't set it.
398 Set comment-add (as it was in previous prolog.el). Use dolist.
399 Set syntax-propertize-function.
400 (prolog-mode, prolog-inferior-mode):
401 Call prolog(-inferior)-menu directly, not through the mode-hook.
402 (prolog-buffer-module, prolog-indent-level)
403 (prolog-paren-is-the-first-on-line-p, prolog-paren-balance)
404 (prolog-comment-limits, prolog-goto-comment-column):
405 Use line-(end|beginning)-position.
406 (prolog-build-prolog-command): Tighten up regexp.
407 (prolog-consult-compile): Move make-local-variable into `set'.
408 (prolog-consult-compile-filter, prolog-goto-next-paren)
409 (prolog-help-on-predicate, prolog-clause-info)
410 (prolog-mark-predicate): Don't let+setq.
411 (prolog-indent-line): Use indent-line-to.
412 Only call prolog-goto-comment-column if necessary.
413 (prolog-indent-level): Use bobp.
414 (prolog-first-pos-on-line): Remove, not used any more.
415 (prolog-in-string-or-comment): Use syntax-ppss if available.
416 (prolog-help-on-predicate): Use read-string.
417 (prolog-goto-predicate-info): Simplify.
418 (prolog-read-predicate): Use `default' rather than `initial'.
419 (prolog-temporary-file): Use make-temp-file to close a security hole.
420 (prolog-toggle-sicstus-sd): New command.
421 (prolog-electric-underscore, prolog-variables-to-anonymous):
422 Use dynamic-scoping as it was meant.
423 (prolog-menu): Move menu definitions to top-level.
424 Use a toggle-button for Sicstus's source debugger.
425 Change "Code" to the more usual "Prolog", and hence change "Prolog"
426 to "System".
427 (prolog-inferior-menu): Reuse prolog-menu's help menu.
428 Move other menu definition to top-level.
429
430 2011-01-13 Tassilo Horn <tassilo@member.fsf.org>
431
432 * doc-view.el (doc-view-open-text): Use meaningful text buffer
433 name. Keep original document's directory as default-directory
434 (bug#6446).
435 (doc-view-initiate-display): Fall back to normal mode when
436 doc-view-mode cannot be enabled, also when extracting the document
437 text into a separate buffer (bug#6446).
438
439 * simple.el (shell-command): Don't error out if shell command
440 buffer contains text with non-nil read-only property when erasing
441 the buffer.
442
443 2011-01-13 Kim F. Storm <storm@cua.dk>
444
445 * ido.el (ido-may-cache-directory): Move "too-big" check later.
446 (ido-next-match, ido-prev-match): Fix stray reordering of matching
447 items when cycling through the matches.
448
449 2011-01-13 Tassilo Horn <tassilo@member.fsf.org>
450
451 * dired-x.el (dired-omit-verbose): New defcustom that allows
452 disabling the omit messages.
453 (dired-omit-expunge): Use it.
454
455 2011-01-13 Christian Ohler <ohler@gnu.org>
456
457 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: New files.
458
459 2011-01-13 Chong Yidong <cyd@stupidchicken.com>
460
461 * font-lock.el (font-lock-verbose): Default to nil.
462
463 2011-01-13 Chong Yidong <cyd@stupidchicken.com>
464
465 * simple.el (sendmail-user-agent-compose): Move to sendmail.el.
466 (compose-mail): New arg RETURN-ACTION.
467 (compose-mail-other-window, compose-mail-other-frame): Likewise.
468
469 * mail/sendmail.el (mail-return-action): New var.
470 (mail-mode): Make it buffer-local.
471 (mail-bury): Obey it. Move special Rmail window handling to
472 rmail-mail-return.
473 (mail, mail-setup): New arg RETURN-ACTION.
474 (sendmail-user-agent-compose): Move from simple.el.
475
476 * mail/rmail.el (rmail-mail-return): New function.
477 (rmail-start-mail): Pass it to compose-mail.
478
479 2011-01-12 Chong Yidong <cyd@stupidchicken.com>
480
481 * menu-bar.el (menu-bar-custom-menu): Tweak Mule and Customize
482 menus. Add menu item for customize-themes.
483
484 * cus-theme.el (customize-themes):
485 * emacs-lisp/package.el (package--list-packages):
486 Use switch-to-buffer.
487
488 2011-01-11 Johan Bockgård <bojohan@gnu.org>
489
490 * emacs-lisp/unsafep.el (unsafep): Handle backquoted forms.
491
492 2011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
493
494 * progmodes/prolog.el: Fix up coding convention and such.
495 (prolog-indent-width): Use the same default as in
496 previous prolog.el rather than tab-width which depends on which buffer
497 is current when the file is loaded.
498 (prolog-electric-newline-flag): Only enable if electric-indent-mode
499 is not available.
500 (prolog-emacs): Remove. Use (featurep 'xemacs) instead.
501 (prolog-known-systems): Remove.
502 (prolog-mode-syntax-table, prolog-inferior-mode-map):
503 Move initialization into declaration.
504 (prolog-mode-map): Move initialization into declaration.
505 Remove system-specific mode-map vars, since they referred to the same
506 keymap anyway.
507 (prolog-mode-variables): Obey the user's preference w.r.t
508 adaptive-fill-mode. Prefer symbol-value to `eval'.
509 (prolog-mode-keybindings-edit): Add compatibility bindings.
510 (prolog-mode): Use define-derived-mode. Don't handle mercury here.
511 (mercury-mode-map): New var.
512 (mercury-mode, prolog-inferior-mode): Use define-derived-mode.
513 (prolog-ensure-process, prolog-process-insert-string)
514 (prolog-consult-compile): Use with-current-buffer.
515 (prolog-guess-fill-prefix): Simplify data flow.
516 (prolog-replace-in-string): New function to use instead of
517 replace-in-string.
518 (prolog-enable-sicstus-sd): Don't abuse `eval'.
519 (prolog-uncomment-region): Use `uncomment-region' when available.
520 (prolog-electric-colon, prolog-electric-dash): Use `eolp'.
521 (prolog-int-to-char, prolog-char-to-int): New functions to use instead
522 of int-to-char and char-to-int.
523 (prolog-mode-hook, prolog-inferior-mode-hook): Don't force font-lock.
524
525 2011-01-11 Stefan Bruda <stefan@bruda.ca>
526
527 * progmodes/prolog.el: Replace by a whole new file.
528
529 2011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
530
531 * subr.el (eval-after-load): Fix timing for features (bug#7769).
532 (declare-function, undefined, insert-for-yank)
533 (replace-regexp-in-string): Follow checkdoc's recommendations.
534
535 2011-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
536
537 * calendar/diary-lib.el (diary-mode): Refresh *Calendar* after
538 refreshing the diary buffer.
539
540 2011-01-10 Ken Manheimer <ken.manheimer@gmail.com>
541
542 * allout.el: Add 2011 to the file copyright.
543 (allout-encrypt-string): Prevent encryption from adding an extra
544 newline at the end of the topic body.
545 (allout-version): Increment to 2.3.
546
547 2011-01-10 Michael Albinus <michael.albinus@gmx.de>
548
549 * net/dbus.el (dbus-unregister-service): Complete doc.
550 Fix call of dbus-error signal.
551 (dbus-register-property): Use `dont-register' keyword.
552
553 2011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
554
555 * net/dbus.el (dbus-unregister-service): Translate returned
556 integer into a symbol.
557 (dbus-register-property): Use `dbus-register-service' to do the
558 name registration.
559
560 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
561
562 * progmodes/idlw-help.el (idlwave-help-link): Inherit from link face.
563 Suggested by Joakim Verona.
564
565 * comint.el (comint-highlight-prompt): Inherit minibuffer-prompt.
566
567 * wid-edit.el (visibility): Replace :on-image and :off-image
568 widget properties with :on-glyph and :off-glyph, for consistency
569 with the `visibility' widget.
570 (widget-toggle-value-create, widget-visibility-value-create):
571 Merge into a single function `widget-toggle-value-create'.
572
573 * cus-edit.el (custom-variable-value-create, custom-visibility)
574 (custom-face-edit-value-create, custom-face-value-create):
575 Replace :on-image and :off-image widget properties with :on-glyph and
576 :off-glyph, for consistency with the `visibility' widget.
577
578 2011-01-09 Andreas Schwab <schwab@linux-m68k.org>
579
580 * net/ldap.el (ldap-search-internal): Don't use eval.
581
582 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
583
584 * subr.el (read-char-choice): Use read-key.
585
586 * custom.el (custom-safe-themes): Rename from
587 custom-safe-theme-files. Add :risky tag.
588 (load-theme, custom-theme-load-confirm): Save sha1 hashes to
589 custom-safe-themes, not filenames. Suggested by Stefan Monnier.
590
591 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
592
593 * tool-bar.el (tool-bar-setup): Remove Help button. Remove label
594 from Search and add a label to Undo.
595
596 * vc/vc-dir.el (vc-dir-tool-bar-map): Rearrange, removing
597 inappropriate buttons and adding :vert-only tags.
598
599 * progmodes/compile.el (compilation-mode-tool-bar-map): Adjust to
600 removal of Help tool-bar button. Remove Undo button for space.
601
602 * info.el (info-tool-bar-map): Add :vert-only tags.
603
604 2011-01-08 Tassilo Horn <tassilo@member.fsf.org>
605
606 * doc-view.el (doc-view-mode-p): Check for png or imagemagick
607 image backend support. Either of them is fine.
608
609 2011-01-08 Chong Yidong <cyd@stupidchicken.com>
610
611 * subr.el (y-or-n-p): Doc fix.
612
613 * custom.el (custom-safe-theme-files): New defcustom.
614 (custom-theme-load-confirm): New function.
615 (load-theme): Load theme using `load', confirming with
616 custom-theme-load-confirm if necessary.
617
618 * subr.el (read-char-choice): New function, factored out from
619 dired-query and hack-local-variables-confirm.
620
621 * dired-aux.el (dired-query):
622 * files.el (hack-local-variables-confirm): Use it.
623
624 * dired-aux.el (dired-compress-file):
625 * files.el (abort-if-file-too-large, find-alternate-file)
626 (set-visited-file-name, write-file, backup-buffer)
627 (basic-save-buffer, basic-save-buffer-2, save-some-buffers)
628 (delete-directory, revert-buffer, recover-file, kill-buffer-ask):
629 Use new format string args for y-or-n-p and yes-or-no-p.
630
631 2011-01-08 Andreas Schwab <schwab@linux-m68k.org>
632
633 * progmodes/compile.el (compilation-error-regexp-alist-alist)
634 [gcc-include]: Tighten file name match, add match for column
635 number. (Bug#7806)
636 [gnu]: Remove unused group.
637
638 2011-01-08 Glenn Morris <rgm@gnu.org>
639
640 * makefile.w32-in (EMACSOPT): Add --no-site-lisp.
641
642 * makefile.w32-in (EMACSOPT): -batch implies --no-init-file.
643
644 2011-01-07 Sam Steingold <sds@gnu.org>
645
646 * w32-fns.el (w32-shell-name): Use `shell-file-name' instead of
647 the `explicit-shell-file-name' because that is the
648 non-interactive shell.
649
650 2011-01-07 Chong Yidong <cyd@stupidchicken.com>
651
652 * subr.el (y-or-n-p): Accept format string args.
653
654 2011-01-07 Glenn Morris <rgm@gnu.org>
655
656 * Makefile.in (EMACSOPT): Add --no-site-lisp.
657
658 2011-01-06 Ken Manheimer <ken.manheimer@gmail.com>
659
660 * allout.el (allout-back-to-current-heading): Ensure return to
661 the visible containing topic, rather than a collapsed one.
662 (allout-view-change-hook): Remove hook that was deprecated long ago.
663 (allout-exposure-change-hook): Remove documentation remarks
664 concerning removed allout-view-change-hook.
665 (allout-flag-region): Remove invocation of and documentation
666 remarks concerning allout-view-change-hook.
667
668 2011-01-06 Glenn Morris <rgm@gnu.org>
669
670 * vc/vc-bzr.el (vc-bzr-annotate-command, vc-bzr-annotate-time)
671 (vc-bzr-annotate-extract-revision-at-line):
672 Handle authors with embedded spaces. (Bug#7792)
673
674 2011-01-05 Tassilo Horn <tassilo@member.fsf.org>
675
676 * doc-view.el (doc-view-image-width): New variable.
677 (doc-view-enlarge, doc-view-insert-image): Prefer imagemagick
678 backend for PNG images, and do dynamic rescaling instead of
679 reconverting the whole doc.
680
681 2011-01-05 Glenn Morris <rgm@gnu.org>
682
683 * emacs-lisp/rx.el (rx-repeat): Replace CL function.
684
685 2011-01-04 Ken Manheimer <ken.manheimer@gmail.com>
686
687 * allout.el: Reconcile with changes in line movement behavior for
688 long text lines that cross more than a single physical window
689 line, ie when truncate-lines is nil.
690 (allout-next-visible-heading): Provide for change in line-move
691 behavior on long lines when truncate-lines is nil. In that case,
692 line-move can wind up on the same textual line when it moves to
693 the next window line, and moving to the bullet position after the
694 move yields zero advancement. Add logic to detect and compensate
695 for the lack of progress.
696 (allout-current-topic-collapsed-p): move-end-of-line respect for
697 field boundaries is different when operating with body lines
698 shorter than window width versus ones greater than window width,
699 which can yield false negatives in this function. Avoid
700 difference by applying move-end-of-line while field-text-motion is
701 inhibited.
702
703 2011-01-04 Glenn Morris <rgm@gnu.org>
704
705 * textmodes/rst.el (rst-compile-toolsets):
706 Add pdf and s5 to option alist.
707
708 2011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
709
710 * net/dbus.el (dbus-register-property): Add optional parameter
711 dont-register-service. Updated docstring accordingly.
712
713 2011-01-04 Andreas Schwab <schwab@linux-m68k.org>
714
715 * textmodes/rst.el (rst-compile-pdf-preview)
716 (rst-compile-slides-preview): Remove extra line.
717
718 2011-01-04 Glenn Morris <rgm@gnu.org>
719
720 * textmodes/rst.el (rst-compile-toolsets): Make it a defcustom.
721 Add `pdf' and `s5' entries. Use `prog.py' if found, otherwise
722 default to `prog' without a .py extension.
723 (rst-compile-pdf-preview, rst-compile-slides-preview):
724 Use program names from rst-compile-toolsets, rather than hard-coding.
725 (rst-portable-mark-active-p): Fix presumed typo.
726
727 2011-01-02 Eli Zaretskii <eliz@gnu.org>
728
729 * term/w32-win.el (dynamic-library-alist): Set up correctly for
730 libpng versions both before and after 1.4.0. (Bug#7716)
731
732 2011-01-02 Eli Zaretskii <eliz@gnu.org>
733
734 * time.el (display-time-mode): Mention display-time-interval in
735 the doc string. (Bug#7713)
736
737 2011-01-02 Kenichi Handa <handa@m17n.org>
738
739 * mail/rmailmm.el (rmail-mime-parse): Perform parsing in
740 condition-case and return an error message string if something
741 goes wrong.
742 (rmail-show-mime): Adjust for the above change. Insert the
743 header by rmail-mime-insert-header.
744
745 2011-01-02 Kenichi Handa <handa@m17n.org>
746
747 * mail/rmailmm.el: New key bindings for rmail-mime-next-item,
748 rmail-mime-previous-item, and rmail-mime-toggle-hidden.
749 (rmail-mime-mbox-buffer)
750 (rmail-mime-view-buffer, rmail-mime-coding-system): New variables.
751 (rmail-mime-entity): Argument changed. All codes handling an
752 entity object are changed.
753 (rmail-mime-entity-header, rmail-mime-entity-body): Adjust for
754 the above change.
755 (rmail-mime-entity-children, rmail-mime-entity-handler)
756 (rmail-mime-entity-tagline): New functions.
757 (rmail-mime-message-p): New function.
758 (rmail-mime-save): Bind rmail-mime-mbox-buffer.
759 (rmail-mime-entity-segment, rmail-mime-next-item)
760 (rmail-mime-previous-item, rmail-mime-shown-mode)
761 (rmail-mime-hidden-mode, rmail-mime-raw-mode)
762 (rmail-mime-toggle-raw, rmail-mime-toggle-hidden)
763 (rmail-mime-insert-tagline, rmail-mime-insert-header):
764 New functions.
765 (rmail-mime-text-handler): Call rmail-mime-insert-text.
766 (rmail-mime-insert-decoded-text): New function.
767 (rmail-mime-insert-text): Call rmail-mime-insert-decoded-text.
768 (rmail-mime-insert-image): Argument changed. Caller changed.
769 (rmail-mime-image): Call rmail-mime-toggle-hidden.
770 (rmail-mime-set-bulk-data): New funciton.
771 (rmail-mime-insert-bulk): Argument changed.
772 (rmail-mime-multipart-handler): Return t.
773 (rmail-mime-process-multipart): Argument changed.
774 Handle "multipart/alternative" here.
775 (rmail-mime-process): Argument changed.
776 (rmail-mime-parse): Bind rmail-mime-mbox-buffer.
777 (rmail-mime-insert): Argument changed. Handle raw display mode.
778 (rmail-mime): Argument changed. Handle toggling of raw display
779 mode.
780 (rmail-show-mime): Bind rmail-mime-mbox-buffer and
781 rmail-mime-view-buffer.
782 (rmail-insert-mime-forwarded-message): Likewise.
783 (rmail-search-mime-message): Likewise. Don't bind rmail-buffer.
784
785 * mail/rmail.el (rmail-show-message-1): If rmail-enable-mime is
786 non-nil, handle the header in rmail-show-mime-function.
787
788 2011-01-02 Leo <sdl.web@gmail.com>
789
790 * help-fns.el (describe-variable): Fix previous change.
791
792 2011-01-02 Juri Linkov <juri@jurta.org>
793
794 * isearch.el (isearch-lazy-highlight-error): New variable.
795 (isearch-lazy-highlight-new-loop): Compare `isearch-error' and
796 `isearch-lazy-highlight-error'. Set `isearch-lazy-highlight-error'
797 to the current value of `isearch-error' (Bug#7468).
798
799 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
800
801 * help-fns.el (describe-variable): Don't emit trailing whitespace
802 (Bug#7511).
803
804 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
805
806 * textmodes/rst.el (rst-compile-pdf-preview)
807 (rst-compile-slides-preview): Use make-temp-file (Bug#7646).
808
809 2011-01-02 Kevin Gallagher <Kevin.Gallagher@boeing.com>
810
811 * emulation/edt-mapper.el: Override mapping of function keys so
812 that the later call to read-key-sequence works.
813
814 2011-01-02 Eli Zaretskii <eliz@gnu.org>
815
816 * mail/smtpmail.el (smtpmail-send-it): Write queued mail body with
817 Unix EOLs. (Bug#7589)
818
819 2011-01-02 Leo <sdl.web@gmail.com>
820
821 * eshell/em-hist.el (eshell-previous-matching-input): Signal error
822 if point is not behind eshell-last-output-end (Bug#7585).
823
824 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
825
826 * files.el (file-local-variables-alist):
827 Make permanent-local (bug#7767).
828
829 2011-01-02 Glenn Morris <rgm@gnu.org>
830
831 * version.el (emacs-copyright): Set short copyright year to 2011.
832
833 2011-01-02 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
834
835 * mail/mail-utils.el (mail-strip-quoted-names): Avoid clobbering
836 an existing temp buffer. (Bug#7746)
837
838 2011-01-02 Glenn Morris <rgm@gnu.org>
839
840 * mail/mail-utils.el (mail-mbox-from): Handle From: headers with
841 multiple addresses. (Bug#7760)
842
843 2011-01-01 Ken Manheimer <ken.manheimer@gmail.com>
844
845 * allout.el (allout-auto-fill): Do not infinitely recurse - use
846 do-auto-fill if everything points back to allout-auto-fill.
847 (allout-mode-deactivate-hook): Declare obsolete, in favor of
848 standard-formed minor-mode deactivate hook, allout-mode-off-hook.
849
850 2010-12-31 Michael Albinus <michael.albinus@gmx.de>
851
852 * net/tramp-sh.el (tramp-methods): Add recursive options to "scpc"
853 and "scpx".
854
855 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
856
857 * doc-view.el (doc-view-set-doc-type): New function refactored
858 from doc-view-mode.
859 (doc-view-fallback-mode): New function.
860 (doc-view-mode): Use it.
861 (doc-view-mode-maybe): New function that checks if doc-view-mode
862 can be used and falls back to the next best mode otherwise.
863
864 * files.el (auto-mode-alist): Use doc-view-mode-maybe for PDF,
865 DVI, OpenDocument, and MS Office files.
866
867 2010-12-30 Andreas Schwab <schwab@linux-m68k.org>
868
869 * emacs-lisp/rx.el (rx-syntax): Fix typo.
870
871 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
872
873 * doc-view.el (doc-view-toggle-display): Perform rassq-delete-all
874 on a copy of auto-mode-alist, because that deletes with side
875 effects.
876
877 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
878
879 * doc-view.el (doc-view-mode, doc-view-toggle-display):
880 Use normal-mode without doc-view-mode bindings in auto-mode-alist as
881 fallback instead of hard coding fundamental mode.
882
883 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
884
885 * doc-view.el (doc-view-doc->txt): Handle OpenDocument (or MS
886 Office) files also for searching.
887
888 2010-12-30 Tassilo Horn <tassilo@member.fsf.org>
889
890 * doc-view.el: Implement viewing of OpenDocument (and Microsoft
891 Office) files. Not yet enabled via auto-mode-list.
892 (doc-view-unoconv-program): New custom variable.
893 (doc-view-mode-p): Handle new odf document type.
894 (doc-view-odf->pdf): New conversion function.
895 (doc-view-convert-current-doc): Call it for odf files.
896 (doc-view-mode): Recognize newly supported file extensions.
897
898 2010-12-30 Michael Albinus <michael.albinus@gmx.de>
899
900 * net/tramp.el (tramp-default-method-alist)
901 (tramp-default-user-alist)
902 (tramp-local-host-regexp, tramp-prefix-domain-format)
903 (tramp-prefix-domain-regexp): Set tramp-autoload cookie.
904
905 * net/tramp-ftp.el:
906 * net/tramp-gvfs.el:
907 * net/tramp-gw.el:
908 * net/tramp-imap.el:
909 * net/tramp-sh.el:
910 * net/tramp-smb.el: Add tramp-autoload cookie for initialisation
911 code of `tramp-default-method-alist' and `tramp-default-user-alist'.
912
913 2010-12-29 Karl Fogel <kfogel@red-bean.com>
914
915 * saveplace.el (save-place-alist-to-file): Save list sorted and
916 pretty-printed, so that it is mergeable by line-based text merging,
917 as suggested by Iain Dalton <iain.dalton {_AT_} gmail.com>.
918
919 2010-12-28 Ken Manheimer <ken.manheimer@gmail.com>
920
921 * allout.el (allout-v18/19-file-var-hack): Obsolete, remove.
922 (allout-mode): Argument "toggle" => "force".
923 Refine the docstring.
924 Remove special provisions for reactivation, besides the 'force'
925 argument.
926 Consolidate layout provisions coce directly into the activation
927 condition branch, now that we've removed those provisions.
928 (allout-unload-function): Explicitly activate the mode before
929 deactivating, if it's initially deactivated.
930 (allout-set-buffer-multibyte): Properly prevent byte-compiler
931 warnings for version of function used only where
932 set-buffer-multibyte is unavailable.
933
934 2010-12-28 Chong Yidong <cyd@stupidchicken.com>
935
936 * tool-bar.el (tool-bar-setup): Remove :enable conditions, which
937 are handled by the menu-bar entries. As before, don't use
938 :visibile to avoid changing the tool-bar.
939
940 2010-12-27 Michael Albinus <michael.albinus@gmx.de>
941
942 * net/secrets.el (secrets-delete-alias): New defun.
943
944 2010-12-27 Michael Albinus <michael.albinus@gmx.de>
945
946 * net/tramp.el (tramp-default-user-alist): Do not add "ssh" based
947 methods, otherwise ~/.ssh/config would be ignored.
948
949 2010-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
950
951 * emacs-lisp/rx.el: Make it a superset of sregex.
952 (rx-constituents): Add `any => "."', mark `repeat' as taking any number
953 of args, add `regex' alias.
954 (rx-info): Add arg to distinguish head and standalone forms.
955 (rx-check, rx-form): Pass the corresponding arg.
956 (rx-**): Simplify.
957 (rx-repeat): Make it work for any number of args.
958 (rx-syntax): Make it accept syntax chars as is.
959 * obsolete/sregex.el: Move from emacs-lisp/.
960 * emacs-lisp/re-builder.el: Remove sregex support.
961 * emacs-lisp/edebug.el (sregexq, rx): Remove redundant defs.
962
963 2010-12-25 Eli Zaretskii <eliz@gnu.org>
964
965 * mouse.el (mouse-yank-primary): On MS-Windows, try the (emulated)
966 PRIMARY first, then the clipboard. (Bug#7699)
967
968 2010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
969
970 * emacs-lisp/bytecomp.el (byte-compile-output-docform): Fix up use of
971 print-number-table.
972
973 2010-12-21 Chong Yidong <cyd@stupidchicken.com>
974
975 * help-fns.el (find-lisp-object-file-name): Locate .emacs from
976 .emacs.elc (Bug#7530).
977
978 * wid-edit.el (widget-image-find): Remove bogus :ascent spec from
979 image spec (Bug#7480).
980
981 2010-12-21 Daiki Ueno <ueno@unixuser.org>
982
983 * obsolete/pgg-parse.el, obsolete/pgg-pgp5.el, obsolete/pgg-pgp.el,
984 * obsolete/pgg-gpg.el, obsolete/pgg-def.el, obsolete/pgg.el:
985 Move from lisp/.
986
987 2010-12-20 Leo <sdl.web@gmail.com>
988
989 * dnd.el (dnd-get-local-file-name): Unhex of file name shall
990 always be performed (Bug#7680).
991
992 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
993
994 * menu-bar.el (menu-bar-kill-ring-save): Make obsolete.
995 (menu-bar-edit-menu): Bind "Copy" to kill-ring-save. Don't use
996 mouse-region-match.
997
998 * color.el: Move from gnus/.
999
1000 * vc/diff.el (diff-better-file-name): Function deleted.
1001 abbreviating file names causes problems with shell-quote-argument.
1002 (diff-no-select): Just use expand-file-name.
1003
1004 * tool-bar.el (tool-bar--image-expression): New function.
1005 (tool-bar-local-item, tool-bar--image-exp): Use it.
1006 (tool-bar-setup): Initialize tool-bar-separator-image-expression.
1007 Use :enable instead of :visible to avoid changing the tool-bar
1008 configuration unnecessarily.
1009
1010 * info.el (info-tool-bar-map): Add separators.
1011
1012 2010-12-17 Ken Brown <kbrown@cornell.edu>
1013
1014 * loadup.el: Use version numbers in Cygwin build.
1015
1016 2010-12-17 Ryan Twitchell <metatheorem@gmail.com> (tiny change)
1017
1018 * ido.el (ido-file-internal): Ask for confirmation before
1019 overwriting an existing file (Bug#1238).
1020
1021 2010-12-16 Chong Yidong <cyd@stupidchicken.com>
1022
1023 * tool-bar.el (tool-bar-setup): Add separators.
1024
1025 * menu-bar.el (featurep): Use menu-bar-separator.
1026
1027 2010-12-16 Ken Manheimer <ken.manheimer@gmail.com>
1028
1029 Migrate allout encryption provisions from pgg to epg.
1030
1031 * allout.el (allout-toggle-current-subtree-encryption)
1032 (allout-toggle-subtree-encryption): Adjust docstrings to reflect
1033 defaulting policy and other changes. Change fetch-pass to keymode-cue,
1034 for simpler universal argument interpretation.
1035 (allout-toggle-subtree-encryption): Adjust docstring to describe
1036 changed encryption provisions. Change fetch-pass to keymode-cue, for
1037 simpler universal argument interpretation. Remove provisions for
1038 handling key type and identity - they'll all be within
1039 allout-encrypt-string or epg/epg or even contained all the way in gpg.
1040 (allout-encrypt-string): Include keymode-cue, for optionally prompting
1041 for keypair recipients (universal argument > 1) and, in addition,
1042 associating the specified recipients with the outline (universal
1043 argument > 4) using a file local variable setting for
1044 'epa-file-encrypt-to'.
1045 Require epa, for recipients handling.
1046 Change how regexp filtering elements are named.
1047 Describe the problem with caching of incorrect symmetric-decryption
1048 keys.
1049 Use the epa-passphrase-callback-function, in case the user is using
1050 GnuPG v1.
1051 Support saving of the selected keypair recipients when invoked with a
1052 keymode-cue > 4.
1053 Remove obsolete arguments 'fetch-pass', 'target-cache-id', 'retried'.
1054 Require 'epa.
1055 Establish epg-context with armoring and default epg-protocol.
1056 Remove all passphrase cache, verification, and hinting code.
1057 (allout-passphrase-verifier-handling, allout-passphrase-hint-handling):
1058 No longer used, delete.
1059 (allout-mode): Adjust docstring to describe changed encryption
1060 provisions. Describe the problem with caching of incorrect
1061 symmetric-decryption keys.
1062 (allout-obtain-passphrase, allout-epg-passphrase-callback-function)
1063 (allout-make-passphrase-state, allout-passphrase-state-passphrase)
1064 (allout-encrypted-key-info, allout-update-passphrase-mnemonic-aids)
1065 (allout-get-encryption-passphrase-verifier, allout-verify-passphrase):
1066 Obsolete, remove.
1067
1068 2010-12-16 Daiki Ueno <ueno@unixuser.org>
1069
1070 * epa-file.el (epa-file-select-keys): Accept 'silent to inhibit
1071 key selection prompt; make 'silent as default (Bug#7487).
1072
1073 2010-12-16 Leo <sdl.web@gmail.com>
1074
1075 * eshell/eshell.el (eshell-directory-name):
1076 Use locate-user-emacs-file (Bug#7578).
1077
1078 2010-12-15 Glenn Morris <rgm@gnu.org>
1079
1080 * loadup.el (symbol-file-load-history-loaded): Remove; unused.
1081
1082 2010-12-15 Jari Aalto <jari.aalto@cante.net>
1083 Scott Evans <gse@antisleep.com>
1084
1085 * rect.el (rectange--default-line-number-format)
1086 (rectangle-number-line-callback): New functions.
1087 (rectangle-number-lines): New command, bound to C-x r N (Bug#4382).
1088
1089 2010-12-15 Chong Yidong <cyd@stupidchicken.com>
1090
1091 * rect.el (operate-on-rectangle-lines, string-rectangle-string):
1092 Delete unused variables.
1093 (move-to-column-force): Remove function obsolete since 21.2.
1094
1095 2010-12-14 Michael Albinus <michael.albinus@gmx.de>
1096
1097 * net/tramp.el (tramp-temp-buffer-file-name): Make it permanent-local.
1098 (tramp-handle-insert-file-contents): Do not set permanent-local
1099 property.
1100
1101 * net/tramp-cache.el (tramp-persistency-file-name):
1102 Use `locate-user-emacs-file' if fboundp.
1103
1104 * net/tramp-sh.el (tramp-methods): Add "ksu".
1105 (tramp-default-user-alist): Add "ksu". Use `regexp-opt' for
1106 method list.
1107
1108 2010-12-14 Glenn Morris <rgm@gnu.org>
1109
1110 * progmodes/js.el: Doc't require font-lock, etags, or easymenu.
1111 (find-tag-marker-ring): Declare.
1112 (js-find-symbol): Require etags.
1113
1114 * mail/sendmail.el: Don't require rmail or mailalias when compiling.
1115 Require mail-utils.
1116 (mail-alias-file): Don't autoload. Doc fix.
1117 (mail-bury-selects-summary, mail-send-nonascii): Don't autoload.
1118 (mail-mailer-swallows-blank-line): Default to nil. Doc fix.
1119 Mark as obsolete, and risky.
1120 (mail-setup): Simplify.
1121
1122 * mail/mailalias.el (build-mail-aliases): Make it interactive.
1123 * mail/sendmail.el (build-mail-aliases): Update autoload.
1124
1125 * dired.el (dired-trivial-filenames, dired-chown-program)
1126 (dired-auto-revert-buffer): Remove autoload cookies.
1127 * mail/sendmail.el (mail-recover-1): Require 'dired.
1128
1129 * dired.el (dired-subdir-switches, dired-chown-program)
1130 (dired-use-ls-dired, dired-chmod-program, dired-touch-program):
1131 Make into defcustoms.
1132 (dired-chown-program): Simplify initialization.
1133
1134 * mail/mail-utils.el: No need to require lisp-mode, it's in loadup.
1135
1136 2010-12-13 Romain Francoise <romain@orebokech.com>
1137
1138 * net/gnutls.el (gnutls-negotiate): Fix setting of default trustfiles.
1139
1140 2010-12-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
1141
1142 * net/netrc.el (netrc-point-at-eol): Remove the unused
1143 netrc-point-at-old and netrc-bound-and-true-p bindings.
1144 (netrc-parse): Cache the netrc contents.
1145
1146 2010-12-13 Eli Zaretskii <eliz@gnu.org>
1147
1148 * subr.el (posn-col-row): Evaluate header-line-format in the
1149 context of the POSITION window's buffer.
1150
1151 2010-12-13 Glenn Morris <rgm@gnu.org>
1152
1153 * subr.el (member-ignore-case, run-mode-hooks, insert-for-yank-1)
1154 (with-silent-modifications): Doc fixes.
1155
1156 2010-12-13 Michael Albinus <michael.albinus@gmx.de>
1157
1158 * net/tramp.el (tramp-action-password, tramp-process-actions):
1159 Revert previous from. Use `save-restriction'.
1160
1161 2010-12-13 Stephen Berman <stephen.berman@gmx.net>
1162
1163 * calendar/diary-lib.el (diary-list-sexp-entries):
1164 Handle case of no newline at end of file. (Bug#7536)
1165
1166 2010-12-13 Glenn Morris <rgm@gnu.org>
1167
1168 * mail/smtpmail.el (smtpmail-send-it): Revert previous change.
1169
1170 2010-12-13 Michael Albinus <michael.albinus@gmx.de>
1171
1172 * net/tramp.el (tramp-action-password): Delete region, do not narrow.
1173 (tramp-process-actions): Do not widen.
1174
1175 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1176 Protect buffer-modified value. (Bug#7557)
1177
1178 2010-12-13 Jan Moringen <jmoringe@techfak.uni-bielefeld.de>
1179
1180 * log-edit.el (log-edit-changelog-entries):
1181 Regexp quote filename. (Bug#7505)
1182
1183 2010-12-13 Tom Breton <tehom@panix.com>
1184
1185 * cus-edit.el (custom-save-all):
1186 Bind print-length and print-level to nil. (Bug#7581)
1187
1188 2010-12-13 Glenn Morris <rgm@gnu.org>
1189
1190 * mouse.el (mouse-menu-major-mode-map, mouse-menu-bar-map):
1191 Run hooks to update menu contents. (Bug#7586)
1192
1193 * mail/smtpmail.el (smtpmail-send-it): Avoid colons in the queued
1194 file names, for the sake of MS Windows. (Bug#7588)
1195
1196 2010-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
1197
1198 * diff-mode.el (diff-refine-hunk): Make it work when the hunk contains
1199 empty lines without a leading space.
1200
1201 2010-12-13 Leo <sdl.web@gmail.com>
1202
1203 * dired-aux.el (dired-do-redisplay): Postpone dired-after-readin-hook
1204 while mapping over marks (Bug#6810).
1205
1206 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
1207
1208 * image-dired.el (image-dired-db-file)
1209 (image-dired-temp-image-file, image-dired-gallery-dir)
1210 (image-dired-temp-rotate-image-file): Set default values relative
1211 to image-dired-dir (Bug#7518).
1212
1213 2010-12-13 Lawrence Mitchell <wence@gmx.li>
1214
1215 * format.el (format-decode-run-method): Pass args FROM and TO, not
1216 point-min and point-max, to shell-command-on-region (Bug#7488).
1217
1218 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
1219
1220 * frame.el (blink-cursor-mode): Make default t for ns.
1221
1222 2010-12-13 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
1223
1224 * vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
1225
1226 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
1227
1228 * comint.el (comint-dynamic-list-input-ring)
1229 (comint-dynamic-complete-filename)
1230 (comint-replace-by-expanded-filename)
1231 (comint-dynamic-simple-complete)
1232 (comint-dynamic-list-filename-completions)
1233 (comint-dynamic-list-completions): Doc fix (Bug#7499).
1234
1235 * subr.el (posn-x-y, posn-object-x-y, posn-object-width-height):
1236 Doc fix (Bug#7471).
1237
1238 2010-12-13 Martin Rudalics <rudalics@gmx.at>
1239
1240 * dired.el (dired-pop-to-buffer): Bind pop-up-frames to nil
1241 (Bug#7533).
1242
1243 2010-12-13 W. Martin Borgert <debacle@debian.org> (tiny change)
1244
1245 * files.el (auto-mode-alist): Handle .dbk (DocBook) with xml-mode.
1246 (Bug#7491).
1247
1248 2010-12-13 Eli Zaretskii <eliz@gnu.org>
1249
1250 * files.el (file-relative-name): Handle UNC file names on
1251 DOS/Windows. (Bug#4674)
1252
1253 2010-12-13 Daiki Ueno <ueno@unixuser.org>
1254
1255 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
1256 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
1257 (epg-context-set-passphrase-callback): Mention that the callback
1258 is not called when used with GnuPG 2.x.
1259
1260 2010-12-13 Glenn Morris <rgm@gnu.org>
1261
1262 * ps-print.el (ps-line-lengths-internal, ps-nb-pages):
1263 Ensure ps-footer-font-size-internal is initialized.
1264 Call ps-get-page-dimensions before trying to use ps-font-for-text.
1265
1266 2010-12-13 Kenichi Handa <handa@m17n.org>
1267
1268 * mail/rmailmm.el (rmail-mime-parse): Call rmail-mime-process
1269 within condition-case.
1270 (rmail-show-mime): Don't use condition-case.
1271 (rmail-search-mime-message): New function.
1272 (rmail-search-mime-message-function): Set to
1273 rmail-search-mime-message.
1274
1275 2010-12-13 Leo <sdl.web@gmail.com>
1276
1277 * ido.el (ido-common-initialization): New function. (bug#3274)
1278 (ido-mode): Use it.
1279 (ido-completing-read): Call it.
1280
1281 2010-12-12 Karl Fogel <kfogel@red-bean.com>
1282
1283 * bookmark.el (bookmark-name-from-full-record): Rename back to
1284 this original name from `bookmark-name-from-record' reverting part
1285 of 2010-12-08T08:09:27Z!kfogel@red-bean.com / kfogel@red-bean.com-20101208080927-5j9jqnb2xvcw4ogm.
1286 As Drew Adams pointed out, there was no reason to cause churn for
1287 third-party callers.
1288
1289 2010-12-12 Alan Mackenzie <acm@muc.de>
1290
1291 * progmodes/cc-engine.el (c-forward-type): Before scanning a
1292 template arglist, check that the current language supports this.
1293
1294 2010-12-11 Glenn Morris <rgm@gnu.org>
1295
1296 * vc/vc-bzr.el (vc-bzr-state-heuristic): Also check that the executable
1297 state of the file matches. (Bug#7544)
1298 (vc-bzr-register, vc-bzr-checkin)
1299 (vc-bzr-annotate-extract-revision-at-line): Doc fixes.
1300 (vc-directory-exclusion-list): Remove unnecessary eval-after-load.
1301
1302 * textmodes/sgml-mode.el (sgml-xml-guess): Add .xhtml extension.
1303
1304 2010-12-11 Karel Klíč <kklic@redhat.com>
1305
1306 * files.el (auto-mode-alist): Use html-mode for *.xhtml. (Bug#7606)
1307
1308 2010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
1309
1310 Derive from prog-mode, use derived-mode-p, and fix up various
1311 minor style issues in lisp/progmodes.
1312
1313 * progmodes/vhdl-mode.el (vhdl-mode):
1314 * progmodes/verilog-mode.el (verilog-mode):
1315 * progmodes/vera-mode.el (vera-mode):
1316 * progmodes/sql.el (sql-mode):
1317 * progmodes/scheme.el (scheme-mode):
1318 * progmodes/perl-mode.el (perl-mode):
1319 * progmodes/octave-inf.el (inferior-octave-mode):
1320 * progmodes/autoconf.el (autoconf-mode):
1321 * progmodes/m4-mode.el (m4-mode):
1322 * progmodes/inf-lisp.el (inferior-lisp-mode):
1323 * progmodes/idlwave.el (idlwave-mode):
1324 * progmodes/icon.el (icon-mode):
1325 * progmodes/idlw-help.el (idlwave-help-mode):
1326 * progmodes/dcl-mode.el (dcl-mode):
1327 * progmodes/idlw-shell.el (idlwave-shell-mode):
1328 * progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-electric-list-mode)
1329 (ebrowse-member-mode, ebrowse-electric-position-mode):
1330 Use define-derived-mode.
1331
1332 * progmodes/xscheme.el (exit-scheme-interaction-mode)
1333 (xscheme-enter-interaction-mode, xscheme-enter-debugger-mode)
1334 (xscheme-debugger-mode-p, xscheme-send-string-1):
1335 * progmodes/tcl.el (inferior-tcl-proc, tcl-current-word)
1336 (tcl-load-file, tcl-restart-with-file):
1337 * progmodes/ps-mode.el (ps-run-running):
1338 * progmodes/gdb-mi.el (gud-watch, gdb-mouse-set-clear-breakpoint):
1339 * progmodes/js.el (js--get-all-known-symbols):
1340 * progmodes/inf-lisp.el (inferior-lisp-proc):
1341 * progmodes/idlwave.el (idlwave-beginning-of-statement)
1342 (idlwave-template, idlwave-update-buffer-routine-info)
1343 (idlwave-update-current-buffer-info)
1344 (idlwave-get-routine-info-from-buffers, idlwave-choose)
1345 (idlwave-scan-class-info, idlwave-fix-keywords)
1346 (idlwave-list-buffer-load-path-shadows):
1347 * progmodes/idlw-toolbar.el (idlwave-toolbar, idlwave-toolbar-add)
1348 (idlwave-toolbar-remove):
1349 * progmodes/idlw-shell.el (idlwave-shell-save-and-action)
1350 (idlwave-shell-file-name, idlwave-shell-electric-debug-all-off)
1351 (idlwave-shell-menu-def):
1352 * progmodes/idlw-complete-structtag.el
1353 (idlwave-prepare-structure-tag-completion):
1354 * progmodes/gud.el (gud-set-buffer):
1355 * progmodes/f90.el (f90-backslash-not-special):
1356 * progmodes/delphi.el (delphi-find-unit): Use derived-mode-p.
1357
1358 * progmodes/xscheme.el (xscheme-start)
1359 (local-set-scheme-interaction-buffer, scheme-interaction-mode):
1360 * progmodes/which-func.el (which-function):
1361 * progmodes/vhdl-mode.el (vhdl-set-style):
1362 * progmodes/verilog-mode.el (verilog-set-compile-command)
1363 (verilog-modify-compile-command, verilog-error-regexp-add-xemacs)
1364 (verilog-set-define, verilog-auto-reeval-locals):
1365 * progmodes/sql.el (sql-product-font-lock, sql-interactive-mode):
1366 * progmodes/simula.el (simula-mode):
1367 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
1368 * progmodes/python.el (python-check, python-mode):
1369 * progmodes/prolog.el (prolog-mode-variables):
1370 * progmodes/gud.el (gud-tooltip-activate-mouse-motions):
1371 * progmodes/ebrowse.el (ebrowse-view-file-other-frame):
1372 * progmodes/delphi.el (delphi-mode):
1373 * progmodes/cc-styles.el (c-setup-paragraph-variables):
1374 * progmodes/cc-mode.el (c-basic-common-init, c-common-init)
1375 (c-font-lock-init): Move make-local-variable to their setq.
1376
1377 * progmodes/vhdl-mode.el (vhdl-write-file-hooks-init)
1378 (vhdl-hs-minor-mode, vhdl-ps-print-init): Fix make-local-variable ->
1379 make-local-hook.
1380 * progmodes/sh-script.el (sh-require-final-newline): Remove.
1381 (sh-set-shell): Don't set require-final-newline since it's already done
1382 by prog-mode.
1383 * progmodes/modula2.el (m2-mode): Don't make m2-end-comment-column
1384 since we never set it.
1385 * progmodes/ebrowse.el (ebrowse-set-tree-indentation):
1386 Use read-string and standard prompt.
1387 * progmodes/dcl-mode.el (dcl-mode-map): Move init into declaration.
1388 * progmodes/meta-mode.el (meta-mode-abbrev-table): Merge init and decl.
1389 (meta-common-mode-syntax-table): Rename from meta-mode-syntax-table.
1390 (meta-common-mode-map): Rename from meta-mode-map.
1391 Remove C-m binding, which is a user preference, not mode specific.
1392 (meta-common-mode): New major mode; replace meta-common-initialization.
1393 * progmodes/js.el (js-mode): Call syntax-propertize rather than messing
1394 around with font-lock.
1395 * progmodes/etags.el (select-tags-table-mode):
1396 Derive from special-mode.
1397 * progmodes/octave-mod.el (octave-mode):
1398 * progmodes/gdb-mi.el (gdb-inferior-io-mode, gdb-threads-mode)
1399 (gdb-memory-mode, gdb-disassembly-mode, gdb-breakpoints-mode)
1400 (gdb-frames-mode, gdb-locals-mode, gdb-registers-mode):
1401 Let define-derived-mode do its job.
1402 * progmodes/cpp.el (cpp-edit-mode-map):
1403 Move initialization into declaration.
1404 (cpp-edit-mode): Use define-derived-mode.
1405 (cpp-edit-load): Use derived-mode-p.
1406 * progmodes/mixal-mode.el (mixal-mode):
1407 * progmodes/f90.el (f90-mode):
1408 * progmodes/cfengine.el (cfengine-mode): Don't bother setting
1409 require-final-newline since prog-mode does it already.
1410 * progmodes/cc-cmds.el (c-update-modeline): Use match-string.
1411 * progmodes/asm-mode.el (asm-mode-map): Fix menu setup.
1412 * progmodes/antlr-mode.el: Require cc-mode upfront.
1413 (antlr-mode-syntax-table, antlr-action-syntax-table): Initialize in
1414 the declaration.
1415 (antlr-directory-dependencies, antlr-show-makefile-rules):
1416 Use derived-mode-p.
1417 (antlr-language-option): Don't assume point-min==1.
1418 (antlr-mode): Use define-derived-mode.
1419 * progmodes/ada-mode.el: Use derived-mode-p.
1420 (ada-mode): Use define-derived-mode.
1421 Use hack-local-variables-hook.
1422
1423 2010-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
1424
1425 * textmodes/texinfo.el (texinfo-mode-map): Bind texinfo-insert-@end.
1426 (texinfo-mode): Don't disable adaptive-fill-mode.
1427 (texinfo-insert-block): Adjust cursor placement for blocks with arg.
1428 (texinfo-insert-@end, texinfo-insert-braces, texinfo-insert-@code)
1429 (texinfo-insert-@dfn, texinfo-insert-@email, texinfo-insert-@emph)
1430 (texinfo-insert-@example, texinfo-insert-@file, texinfo-insert-@item)
1431 (texinfo-insert-@kbd, texinfo-insert-@node, texinfo-insert-@noindent)
1432 (texinfo-insert-@quotation, texinfo-insert-@samp)
1433 (texinfo-insert-@strong, texinfo-insert-@table, texinfo-insert-@var)
1434 (texinfo-insert-@uref): Use define-skeleton.
1435 (texinfo-insert-@-with-arg): Delete.
1436
1437 2010-12-10 Eli Zaretskii <eliz@gnu.org>
1438
1439 * arc-mode.el (archive-zip-extract): If w32-quote-process-args is
1440 nil, do quote archive member names. (Bug#6144)
1441
1442 2010-12-10 Glenn Morris <rgm@gnu.org>
1443
1444 * files.el (diff-no-select): Declare.
1445
1446 * mail/emacsbug.el (report-emacs-bug): Use mail-user-agent properties.
1447 (report-emacs-bug-create-existing-bugs-buffer): Avoid free variables.
1448
1449 * comint.el (comint-input-ring-file-name): Doc fix.
1450
1451 2010-12-09 Eli Zaretskii <eliz@gnu.org>
1452
1453 * menu-bar.el (menu-bar-frame-for-menubar, menu-bar-positive-p):
1454 New functions.
1455 (menu-bar-showhide-menu) <menu-bar-mode, showhide-tool-bar>:
1456 Use them instead of `nil' and `>', respectively.
1457 (menu-bar-showhide-tool-bar-menu): Use menu-bar-frame-for-menubar
1458 instead of `nil'.
1459 (toggle-menu-bar-mode-from-frame): Use menu-bar-frame-for-menubar
1460 and menu-bar-positive-p instead of `nil' and `>', respectively.
1461 (Bug#1077)
1462
1463 2010-12-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1464
1465 * whitespace.el (whitespace-newline-mode): Code fix.
1466
1467 2010-12-09 Glenn Morris <rgm@gnu.org>
1468
1469 * play/landmark.el (lm-print-y,s,noise-int, lm-print-y,s,noise):
1470 Rename functions without commas, update callers.
1471
1472 2010-12-08 Jeff Dairiki <dairiki@dairiki.org> (tiny change)
1473
1474 * whitespace.el (whitespace-cleanup-region):
1475 Clean up spaces before tabs. (Bug#7582)
1476
1477 2010-12-08 Karl Fogel <kfogel@red-bean.com>
1478
1479 * bookmark.el: Adjust parameter names and doc strings to resolve
1480 confusion over whether "bookmark" meant a bookmark name or a
1481 bookmark record. Along the way, shorten one function's name for
1482 similar reasons. (Issue #7548)
1483 (bookmark-name-from-record): New name for
1484 `bookmark-name-from-full-record'. All callers changed.
1485 (bookmark-get-bookmark, bookmark-get-bookmark-record)
1486 (bookmark-default-annotation-text, bookmark-prop-get, bookmark-prop-set)
1487 (bookmark-get-annotation, bookmark-set-annotation)
1488 (bookmark-get-filename, bookmark-set-filename)
1489 (bookmark-get-position, bookmark-set-position)
1490 (bookmark-get-front-context-string, bookmark-set-front-context-string)
1491 (bookmark-get-rear-context-string, bookmark-set-rear-context-string)
1492 (bookmark-get-handler, bookmark-edit-annotation, bookmark--jump-via)
1493 (bookmark-handle-bookmark, bookmark-location, bookmark-show-annotation):
1494 Rename `bookmark' parameter to `bookmark-name-or-record', to
1495 clearly show its role, and shorten or adjust doc strings accordingly.
1496 (bookmark-set-name): Same, and pass the parameter directly to
1497 `bookmark-get-bookmark' instead of redundantly doing the callee's work.
1498 (bookmark-default-annotation-text, bookmark-send-edited-annotation)
1499 (bookmark-relocate, bookmark-insert-location, bookmark-insert)
1500 (bookmark-delete): Rename `bookmark' parameter to `bookmark-name',
1501 and in some cases shorten doc string accordingly.
1502 (bookmark-rename): Change `old' and `new' parameters to `old-name'
1503 and `new-name', and adjust an internal variable to avoid confusion.
1504 (bookmark-jump, bookmark-jump-noselect): Clarify `bookmark'
1505 parameter in doc string.
1506
1507 2010-12-08 Glenn Morris <rgm@gnu.org>
1508
1509 * progmodes/gdb-mi.el (gdb): Try to initialize comint input history
1510 from gdb's history file. (Bug#7575)
1511
1512 * mail/emacsbug.el (report-emacs-bug):
1513 Try to handle some other mail clients.
1514
1515 2010-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
1516
1517 * files.el (dir-locals-collect-variables): Don't let errors stop us.
1518 Use string-prefix-p.
1519 (file-name-version-regexp): New var.
1520 (file-name-sans-versions):
1521 * jka-cmpr-hook.el (jka-compr-build-file-regexp): Use it,
1522 (jka-compr-get-compression-info): Use dolist.
1523 (jka-compr-compression-info-list): Don't bother specifying
1524 version/backup regexps.
1525
1526 2010-12-07 Tassilo Horn <tassilo@member.fsf.org>
1527
1528 * simple.el (just-one-space): Make argument n default to 1 if
1529 omitted.
1530
1531 2010-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
1532
1533 * electric.el (electric-indent-post-self-insert-function):
1534 Delete trailing newlines even if we don't reindent.
1535
1536 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1537
1538 * minibuffer.el (completion-at-point): Remove the `arg'.
1539 * bindings.el (complete-symbol): Move back from minibuffer.el.
1540
1541 2010-12-06 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1542
1543 * simple.el (just-one-space): Delete newlines for negative arg.
1544
1545 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1546
1547 * ansi-color.el (ansi-color-unfontify-region): Replace by trivial def.
1548 (ansi-color-filter-apply): Simplify.
1549 (ansi-color-apply): Use `font-lock-face' rather than `face'.
1550
1551 2010-12-05 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
1552
1553 * vc/vc-dir.el (vc-dir-query-replace-regexp): Doc fix (Bug#7501).
1554
1555 2010-12-04 Chong Yidong <cyd@stupidchicken.com>
1556
1557 * dired.el (dired-use-ls-dired): Set default to a special
1558 "unspecified" value.
1559 (dired-insert-directory): When called the first time, check
1560 whether "ls --dired" succeeds and set dired-use-ls-dired (Bug#7546).
1561
1562 2010-12-04 Tak Ota <Takaaki.Ota@am.sony.com>
1563
1564 * replace.el: Add "collect" feature to occur.
1565 (occur-collect-regexp-history): New var.
1566 (occur-read-primary-args): Return a replace string for nlines,
1567 if needed.
1568 (occur): Extend the meaning of nlines.
1569
1570 2010-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
1571
1572 * progmodes/which-func.el (which-func-ff-hook): Log the error message.
1573 (which-func-update-1): Distinguish symbols from strings.
1574 (which-function): Stay within 80 columns.
1575
1576 2010-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
1577
1578 * subr.el (with-demoted-errors): Distinguish symbols from strings.
1579
1580 * newcomment.el (comment-styles): Add docs to each style (bug#7509).
1581 Improve docstring.
1582 (comment-style): Use comment-styles's docs to describe values.
1583
1584 2010-12-03 Jan Djärv <jan.h.d@swipnet.se>
1585
1586 * term/common-win.el (x-setup-function-keys): Restore ns-new-frame
1587 and ns-show-prefs (Bug#7535).
1588
1589 * term/ns-win.el (global-map): Restore ns-new-frame and ns-show-prefs
1590 bindings (Bug#7535).
1591
1592 2010-12-03 Glenn Morris <rgm@gnu.org>
1593
1594 * nxml/nxml-mode.el: Require rng-nxml.
1595 (rng-nxml-mode-init, nxml-enable-unicode-char-name-sets):
1596 Remove declarations.
1597
1598 * nxml/nxml-mode.el, nxml/nxml-outln.el, nxml/rng-loc.el:
1599 * nxml/rng-nxml.el, nxml/rng-valid.el:
1600 Remove leading `*' from defcustom docs.
1601
1602 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
1603 (normal-top-level-add-to-load-path, tty-handle-args):
1604 Convert comments to basic doc-strings.
1605
1606 * net/browse-url.el (browse-url-url-at-point)
1607 (browse-url-default-browser): Remove autoload cookies.
1608
1609 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
1610 Remove more undefined cl functions.
1611
1612 * vc/diff.el (diff-sentinel): Make new arguments optional.
1613 * ibuf-ext.el (diff-sentinel): Update declaration.
1614
1615 2010-12-03 Daiki Ueno <ueno@unixuser.org>
1616
1617 * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
1618 "RIPEMD160" (Bug#7490). Reported by Daniel Kahn Gillmor.
1619 (epg-context-set-passphrase-callback): Mention that the callback
1620 is not called when used with GnuPG 2.x.
1621
1622 2010-12-02 Michael Albinus <michael.albinus@gmx.de>
1623
1624 * net/tramp.el (tramp-local-host-regexp): Add "localhost6".
1625 (tramp-file-name-port): Check also for `tramp-default-port'.
1626 (tramp-get-connection-name): New defun.
1627 (tramp-get-connection-process): Use it.
1628 (tramp-debug-message): Extend function exclude list.
1629 (tramp-drop-volume-letter): Fix doc string.
1630
1631 * net/tramp-cmds.el: Remove solved todo item.
1632
1633 * net/tramp-efs.el:
1634 * net/tramp-ftp.el:
1635 * net/tramp-gvfs.el:
1636 * net/tramp-gw.el:
1637 * net/tramp-imap.el:
1638 * net/tramp-smb.el: Fix regexps added to `tramp-default-method-alist'
1639 and `tramp-default-user-alist', respectively.
1640
1641 * net/tramp-gw.el (tramp-gw-open-connection):
1642 Use `tramp-get-connection-name' and `tramp-get-connection-buffer'.
1643
1644 * net/tramp-imap.el (tramp-imap-make-iht): Use just
1645 `tramp-file-name-port'.
1646
1647 * net/tramp-sh.el (tramp-methods): Add recursive options to "pscp"
1648 and "psftp". Exchange "%k" marker with options.
1649 (tramp-do-copy-or-rename-file, tramp-sh-handle-file-local-copy):
1650 Compute size of link target.
1651 (tramp-do-copy-or-rename-file-out-of-band). Move setting of
1652 `tramp-current-*' up due to gateway methods. Optimze computing of
1653 copy arguments. Use `tramp-get-connection-name' and
1654 `tramp-get-connection-buffer'. Improve debug messages.
1655 (tramp-compute-multi-hops): Remove port determination.
1656 (tramp-maybe-open-connection): Use `tramp-get-connection-name'.
1657
1658 * net/trampver.el: Update release number.
1659
1660 2010-12-02 Glenn Morris <rgm@gnu.org>
1661
1662 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
1663 Avoid infinite loop over windows. (Bug#7492)
1664
1665 * progmodes/flymake.el (flymake-check-file-limit):
1666 Allow nil to mean "no limit".
1667 (flymake-check-patch-master-file-buffer): Update for above change.
1668 Allow a .tex file-name extension to be optional.
1669 (flymake-master-tex-init): Also match \include statements.
1670
1671 2010-11-30 Sam Steingold <sds@gnu.org>
1672
1673 * nxml/nxml-mode.el (nxml-parent-document): Add a variable.
1674 (nxml-parent-document-set): A function to set `nxml-parent-document'.
1675 (nxml-mode): Define using `define-derived-mode' instead of `defun'.
1676 (nxml-mode-hook): Remove `defcustom' (auto-defined by
1677 define-derived-mode').
1678 * nxml/rng-valid.el (rng-dtd-trivial-p): Add a helper function for
1679 users who want to call `nxml-parent-document-set'.
1680
1681 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
1682
1683 * log-edit.el (log-edit-font-lock-keywords): Don't try matching
1684 stand-alone lines, since that is handled by log-edit-match-to-eoh
1685 (Bug#6465).
1686
1687 2010-11-27 Eduard Wiebe <usenet@pusto.de>
1688
1689 * dired.el (dired-get-filename): Replace backslashes with slashes
1690 in file names on MS-Windows, needed by `locate'. (Bug#7308)
1691 * locate.el (locate-default-make-command-line): Don't consider
1692 drive letter and root directory part of
1693 `directory-listing-before-filename-regexp'. (Bug#7308)
1694 (locate-post-command-hook, locate-post-command-hook): New defcustoms.
1695
1696 2010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
1697
1698 * emacs-lisp/smie.el (smie-prec2->grammar): Simplify handling
1699 of :smie-open/close-alist.
1700 (smie-next-sexp): Make it accept a "start token" as argument.
1701 (smie-indent-keyword): Be careful not to misidentify tokens that span
1702 more than one line, as empty lines. Add argument `token'.
1703
1704 2010-11-27 Kenichi Handa <handa@m17n.org>
1705
1706 * mail/rmailmm.el (rmail-mime-insert-multipart): For unsupported
1707 multipart subtypes, insert all as usual.
1708
1709 * mail/rmail.el: Require rfc2047.
1710
1711 2010-11-27 Kenichi Handa <handa@m17n.org>
1712
1713 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-type)
1714 (rmail-mime-entity-disposition)
1715 (rmail-mime-entity-transfer-encoding, rmail-mime-entity-header)
1716 (rmail-mime-entity-body, rmail-mime-entity-children): New functions.
1717 (rmail-mime-save): Handle the case that the button's `data' is a
1718 MIME entity.
1719 (rmail-mime-insert-text): New function.
1720 (rmail-mime-insert-image): Handle the case that DATA is a MIME entity.
1721 (rmail-mime-bulk-handler): Just call rmail-mime-insert-bulk.
1722 (rmail-mime-insert-bulk): New function mostly copied from the old
1723 rmail-mime-bulk-handler.
1724 (rmail-mime-multipart-handler): Just call rmail-mime-process-multipart.
1725 (rmail-mime-process-multipart): New function mostly copied from
1726 the old rmail-mime-multipart-handler.
1727 (rmail-mime-show): Just call rmail-mime-process.
1728 (rmail-mime-process): New function mostly copied from the old
1729 rmail-mime-show.
1730 (rmail-mime-insert-multipart, rmail-mime-parse)
1731 (rmail-mime-insert, rmail-show-mime)
1732 (rmail-insert-mime-forwarded-message)
1733 (rmail-insert-mime-resent-message): New functions.
1734 (rmail-insert-mime-forwarded-message-function): Set to
1735 rmail-insert-mime-forwarded-message.
1736 (rmail-insert-mime-resent-message-function): Set to
1737 rmail-insert-mime-resent-message.
1738
1739 * mail/rmailsum.el: Require rfc2047.
1740 (rmail-header-summary): Handle multiline Subject: field.
1741 (rmail-summary-line-decoder): Change the default to
1742 rfc2047-decode-string.
1743
1744 * mail/rmail.el (rmail-enable-mime): Change the default to t.
1745 (rmail-mime-feature): Change the default to `rmailmm'.
1746 (rmail-quit): Delete the specifal code for rmail-enable-mime.
1747 (rmail-display-labels): Likewise.
1748 (rmail-show-message-1): Check rmail-enable-mime, and use
1749 rmail-show-mime-function for a MIME message. Decode the headers
1750 according to RFC2047.
1751
1752 2010-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
1753
1754 * progmodes/which-func.el (which-func-imenu-joiner-function):
1755 Return a string, as expected.
1756 (which-function-mode): Make sure we stop any previous timer before
1757 starting a new one.
1758
1759 2010-11-27 Michael Albinus <michael.albinus@gmx.de>
1760
1761 * net/tramp.el (tramp-default-method-alist)
1762 (tramp-default-user-alist, tramp-default-proxies-alist):
1763 Adapt custom options type. (Bug#7445)
1764
1765 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
1766
1767 * progmodes/python.el: Add Ipython support (Bug#5390).
1768 (python-shell-prompt-alist)
1769 (python-shell-continuation-prompt-alist): New options.
1770 (python--set-prompt-regexp): New function.
1771 (inferior-python-mode, run-python, python-shell):
1772 Require ansi-color. Use python--set-prompt-regexp to set the comint
1773 prompt based on the Python interpreter.
1774 (python--prompt-regexp): New var.
1775 (python-check-comint-prompt)
1776 (python-comint-output-filter-function): Use it.
1777 (run-python): Use a pipe (Bug#5694).
1778
1779 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
1780
1781 * progmodes/python.el (run-python): Doc fix.
1782 (python-keep-current-directory-in-path): New var (Bug#7454).
1783
1784 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
1785
1786 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
1787 Prompt user before actually printing.
1788
1789 2010-11-27 Glenn Morris <rgm@gnu.org>
1790
1791 * startup.el (package-enable-at-startup, package-initialize):
1792 Remove unnecessary declarations.
1793
1794 2010-11-27 Eli Zaretskii <eliz@gnu.org>
1795
1796 * international/characters.el (glyphless-char-display-control):
1797 Exclude newline and TAB from the c0-control group.
1798
1799 2010-11-27 Glenn Morris <rgm@gnu.org>
1800
1801 * mail/sendmail.el (build-mail-aliases): Doc fix for autoload.
1802 (expand-mail-aliases): Remove unnecessary autoload.
1803
1804 * allout.el (allout-command-prefix, allout-mode-map): Declare.
1805
1806 * shell.el (shell-dir-cookie-re): Move definition before use.
1807
1808 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
1809 Replace undefined CL functions.
1810
1811 2010-11-26 Eli Zaretskii <eliz@gnu.org>
1812
1813 * simple.el (prog-mode): Set bidi-paragraph-direction to
1814 left-to-right.
1815
1816 * term/pc-win.el (x-get-selection-internal): Emulation for MS-DOS.
1817
1818 2010-11-26 Glenn Morris <rgm@gnu.org>
1819
1820 * calendar/diary-lib.el (diary-outlook-format-1): New function, so that
1821 diary-outlook-formats can be sensitive to calendar-date-style.
1822 (diary-outlook-formats): Simplify the default setting.
1823 (diary-from-outlook-internal): Pass subject and body as arguments.
1824 Use dolist rather than dotimes. Don't save the diary buffer.
1825 (diary-from-outlook-gnus, diary-from-outlook-rmail):
1826 Pass subject and body as explicit arguments to the -internal function.
1827
1828 2010-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
1829
1830 * mail/rfc2368.el (rfc2368-parse-mailto-url): Unfold URLs before
1831 parsing them. This makes mailto:...?subject=foo\nbar work.
1832
1833 2010-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
1834
1835 * vc/diff.el (diff): Fix last change.
1836
1837 2010-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
1838
1839 * emacs-lisp/pcase.el: Improve pcase-let. Use "pcase--" prefix.
1840 (pcase--dontcare-upats): New var.
1841 (pcase-let, pcase-let*): Generate better code.
1842 Accept the same bodies as `let'.
1843 (pcase-dolist): New macro.
1844 (pcase--trivial-upat-p): New helper function.
1845 (pcase--expand): Strip leading "(let nil" if any.
1846
1847 2010-11-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
1848
1849 * mail/mailclient.el (browse-url): Require.
1850 (mailclient-send-it): Bind `browse-url-mailto-function' to nil to
1851 use the external browser function to send the mail (bug#7469).
1852
1853 * net/browse-url.el (browse-url-browser-function): Revert the
1854 default back to the previous value, since the new value broke
1855 mailclient.el.
1856 (browse-url-mailto-function): New variable for mailto: URLs.
1857 (browse-url): Use the new variable for mailto: URLs.
1858
1859 2010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
1860
1861 * eshell/esh-cmd.el (eshell-parse-command):
1862 * eshell/esh-arg.el (eshell-parse-arguments):
1863 * eshell/em-script.el (eshell-source-file):
1864 Use with-silent-modifications.
1865
1866 2010-11-23 Chong Yidong <cyd@stupidchicken.com>
1867
1868 * vc/vc.el (vc-merge): Remove optional arg PROMPT. Always prompt
1869 for a merge location.
1870
1871 * vc/vc-bzr.el (vc-bzr-pull): Remove unused var.
1872 (vc-bzr-merge-branch): Always prompt.
1873 (vc-bzr-async-command): Use the full branch filename.
1874
1875 2010-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
1876
1877 * shell.el (shell): Use current-buffer by default if it's already
1878 a shell mode buffer and its process is dead.
1879 Suggested by Jose E. Marchesi <jemarch@gnu.org>.
1880
1881 2010-11-23 Tassilo Horn <tassilo@member.fsf.org>
1882
1883 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
1884 Mention that the keywords should be comma separated.
1885
1886 2010-11-23 Chong Yidong <cyd@stupidchicken.com>
1887
1888 * vc/vc.el (vc-merge): Use vc-BACKEND-merge-branch if available.
1889 Accept optional prefix arg meaning to prompt for a command.
1890 (vc-update): Use vc-BACKEND-pull if available. Accept optional
1891 prefix arg meaning to prompt for a command.
1892 (vc-pull): Alias for vc-update.
1893
1894 * vc/vc-bzr.el (vc-bzr-admin-branchconf, vc-bzr-history): New vars.
1895 (vc-bzr--branch-conf, vc-bzr-async-command, vc-bzr-pull)
1896 (vc-bzr-merge-branch): New functions, implementing merge-branch
1897 and pull operations.
1898
1899 2010-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
1900
1901 * Makefile.in: Fix up last merge.
1902
1903 * vc/diff.el (diff-old-temp-file, diff-new-temp-file): Remove.
1904 (diff-sentinel): Get them as arguments instead.
1905 (diff-old-file, diff-new-file, diff-extra-args): Remove.
1906 (diff-file-local-copy, diff-better-file-name): New funs.
1907 (diff-no-select): Rename from diff-into-buffer.
1908 Support buffers additionally to files. Move `buf' arg. Don't display buf.
1909 Prefer closures to buffer-local variables.
1910 (diff): Adjust accordingly.
1911 (diff-buffer-with-file): Move from files.el.
1912 * files.el (diff-buffer-with-file): Move to vc/diff.el.
1913 (diff-buffer-internal): Remove.
1914 (diff-buffer-buffer): Remove.
1915 (save-some-buffers-action-alist): Use diff-no-select so as not to guess
1916 the buffer name used, and so as not to mess up windows and frames.
1917
1918 2010-11-22 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
1919
1920 * files.el: Make revert work with diff-buffer-with-file (bug#7277).
1921 (diff-buffer-internal): New function extracted from diff-buffer-with-file
1922 (diff-buffer-with-file): Use it.
1923 * vc/diff.el (diff-into-buffer): New fun, extracted from diff.
1924 (diff): Use it.
1925
1926 2010-11-22 Tassilo Horn <tassilo@member.fsf.org>
1927
1928 * textmodes/reftex-ref.el (reftex-goto-label): Use the current
1929 \ref's or \pageref's value as default instead of initial input.
1930
1931 2010-11-21 Michael Albinus <michael.albinus@gmx.de>
1932
1933 * files.el (backup-by-copying-when-mismatch): The default value is
1934 now t.
1935
1936 * startup.el (normal-top-level):
1937 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
1938 `backup-by-copying-when-mismatch'.
1939
1940 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
1941
1942 * tool-bar.el (tool-bar-setup): Remove save as, print and customize.
1943
1944 2010-11-21 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1945
1946 * progmodes/python.el (python-font-lock-keywords):
1947 Highlight top-level augmented assignments (Bug#6445).
1948
1949 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
1950
1951 * term/ns-win.el (ns-right-control-modifier)
1952 (ns-right-command-modifier): Defvar them.
1953
1954 * cus-start.el (all): Add ns-right-control-modifier and
1955 ns-right-command-modifier (Bug#7458).
1956
1957 2010-11-20 Glenn Morris <rgm@gnu.org>
1958
1959 * emacs-lisp/authors.el (authors-ignored-files)
1960 (authors-valid-file-names, authors-renamed-files-alist): Add entries.
1961
1962 2010-11-20 Tassilo Horn <tassilo@member.fsf.org>
1963
1964 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs)
1965 (report-emacs-bug-parse-query-results)
1966 (report-emacs-bug-create-existing-bugs-buffer): Pass through
1967 keywords used for querying the bug database to show them in the
1968 existing bugs buffer.
1969
1970 2010-11-20 Jan Djärv <jan.h.d@swipnet.se>
1971
1972 * tool-bar.el (tool-bar-setup): Add some :vert-only keywords.
1973
1974 * info.el (info-tool-bar-map): Add some :vert-only keywords.
1975
1976 2010-11-20 Eli Zaretskii <eliz@gnu.org>
1977
1978 * international/characters.el (glyphless-char-display-control):
1979 Make it a defcustom, with update-glyphless-char-display as its
1980 :set attribute.
1981 (top level): Don't call update-glyphless-char-display.
1982
1983 2010-11-20 Michael Albinus <michael.albinus@gmx.de>
1984
1985 Sync with Tramp 2.2.0.
1986
1987 * net/tramp.el (tramp-handle-insert-file-contents): Don't use
1988 `file-remote-p' (due to compatibility).
1989
1990 * net/tramp-sh.el (tramp-do-copy-or-rename-file-directly)
1991 (tramp-do-copy-or-rename-file-out-of-band): Use `ignore-errors'.
1992
1993 * net/trampver.el: Update release number.
1994
1995 2010-11-20 Eli Zaretskii <eliz@gnu.org>
1996
1997 * faces.el (glyphless-char): Define value for `pc'.
1998
1999 2010-11-20 Tassilo Horn <tassilo@member.fsf.org>
2000
2001 Implemented a bug querying mechanism.
2002 * mail/emacsbug.el (report-emacs-bug-tracker-url): New variable.
2003 (report-emacs-bug-create-existing-bugs-buffer)
2004 (report-emacs-bug-parse-query-results)
2005 (report-emacs-bug-query-existing-bugs): New functions.
2006
2007 2010-11-19 Tassilo Horn <tassilo@member.fsf.org>
2008
2009 * textmodes/reftex-ref.el (reftex-goto-label): If point is inside
2010 a \ref{} or \pageref{} macro, then use its value as initial input.
2011
2012 2010-11-19 Jay Belanger <jay.p.belanger@gmail.com>
2013
2014 * calc/calc-units.el (math-build-units-table-buffer):
2015 calc/README: Mention that the TeX specific units won't use the
2016 `tex' prefix in TeX mode.
2017 calc/calc-lang.el (math-variable-table): Don't use the `tex'
2018 prefix for units in TeX mode.
2019
2020 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
2021
2022 * simple.el (kill-new, kill-append, kill-region):
2023 * comint.el (comint-kill-region): Make the yank-handler argument
2024 obsolete.
2025
2026 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
2027
2028 * emacs-lisp/smie.el (smie-bnf-classify): Signal errors for tokens
2029 that are both openers (resp. closers) and something else.
2030 (smie-grammar): Loosen definition of valid values.
2031 (smie-next-sexp, smie-down-list, smie-blink-matching-open)
2032 (smie-indent--parent, smie-rule-parent, smie-indent-keyword)
2033 (smie-indent-after-keyword): Adjust users.
2034 (smie-indent-keyword): Don't indent empty lines.
2035
2036 * vc-hg.el (vc-hg-program): New var.
2037 Suggested by Norman Gray <norman@astro.gla.ac.uk>.
2038 (vc-hg-state, vc-hg-working-revision, vc-hg-command): Use it.
2039
2040 2010-11-18 Glenn Morris <rgm@gnu.org>
2041
2042 * emacs-lisp/autoload.el (autoload-find-destination): The function
2043 coding-system-eol-type may return non-numeric values. (Bug#7414)
2044
2045 2010-11-18 Ulrich Mueller <ulm@gentoo.org>
2046
2047 * server.el (server-force-stop): Ensure the server is stopped (Bug#7409).
2048
2049 2010-11-18 Eli Zaretskii <eliz@gnu.org>
2050
2051 * subr.el (posn-col-row): Pay attention to header line. (Bug#7390)
2052
2053 2010-11-18 Chong Yidong <cyd@stupidchicken.com>
2054
2055 * textmodes/picture.el (picture-mouse-set-point): Don't use
2056 posn-col-row; explicitly compute the motion based on the posn at
2057 the window-start (Bug#7390).
2058
2059 2010-11-18 Glenn Morris <rgm@gnu.org>
2060
2061 * novice.el (disabled-command-function):
2062 Fix 2009-11-15 change. (Bug#7384)
2063
2064 2010-11-18 Glenn Morris <rgm@gnu.org>
2065
2066 * calendar/calendar.el (diary-iso-date-forms): Make elements
2067 mutually exclusive. (Bug#7377)
2068
2069 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
2070
2071 * emacs-lisp/smie.el (smie-prec2->grammar): Obey equality constraints
2072 when filling the remaining "unconstrained" values.
2073
2074 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
2075
2076 * emacs-lisp/bytecomp.el (byte-compile-warnings): Simplify the
2077 safety predicate.
2078
2079 * files.el (safe-local-variable-p): Gracefully handle errors.
2080
2081 * emacs-lisp/smie.el (smie-rule-parent, smie-indent--rule):
2082 Use smie-indent-virtual when indenting relative to an opener.
2083 (smie-rule-separator): Use smie-rule-parent.
2084 (smie-indent-keyword): Consult rules, even for openers at bol.
2085 (smie-indent-comment-close): Try to align closer's content.
2086
2087 2010-11-18 Glenn Morris <rgm@gnu.org>
2088
2089 * ls-lisp.el (ls-lisp-dired-ignore-case): Make it an obsolete alias.
2090
2091 2010-11-18 Glenn Morris <rgm@gnu.org>
2092
2093 * printing.el (pr-menu-bind): Doc fix.
2094
2095 * speedbar.el (speedbar-toggle-images): Doc fix.
2096
2097 * progmodes/python.el (python-shell): Doc fix.
2098
2099 * wid-edit.el (widget-field-use-before-change)
2100 (widget-use-overlay-change): Doc fixes.
2101
2102 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
2103
2104 Minor cleanup to improve style.
2105 * textmodes/rst.el (rst-update-section): Use point-marker.
2106 (rst-get-decoration): Eliminate unneeded assignment.
2107 (rst-promote-region, rst-straighten-decorations)
2108 (rst-section-tree, rst-adjust): Use point-marker.
2109 (rst-toc-mode-mouse-goto): Avoid setq.
2110 (rst-shift-region-guts, rst-shift-region-left)
2111 (rst-iterate-leftmost-paragraphs, rst-iterate-leftmost-paragraphs-2)
2112 (rst-convert-bullets-to-enumeration): Use copy-marker.
2113
2114 * minibuffer.el (completion-fail-discreetly): New var.
2115 (completion--do-completion): Use it.
2116
2117 * electric.el (electric-pair-pairs): New var.
2118 (electric-pair-post-self-insert-function): Use it.
2119 (electric-layout-post-self-insert-function): Don't insert a before
2120 newline unless it's actually needed.
2121
2122 2010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
2123
2124 * progmodes/python.el (run-python): Explain why we remove the current
2125 directory from sys.path. Suggested by Eric Hanchrow <erich@cozi.com>.
2126
2127 * progmodes/grep.el (grep-regexp-alist): Tighten the regexp (bug#7378).
2128
2129 2010-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
2130
2131 * progmodes/octave-mod.el: Rely on elecric-*-modes.
2132 (octave-mode-map): Don't bind ;, SPC, and LF.
2133 (octave-auto-indent, octave-auto-newline): Remove.
2134 (electric-layout-rules): Declare.
2135 (octave-mode): Set electric-layout-rules.
2136 (octave-indent-new-comment-line): Use reindent-then-newline-and-indent.
2137 (octave-reindent-then-newline-and-indent, octave-electric-semi)
2138 (octave-electric-space): Remove.
2139
2140 * electric.el (electric-layout-mode): New minor mode.
2141 (electric--after-char-pos): New function.
2142 (electric-indent-post-self-insert-function): Use it.
2143 (electric-layout-rules): New var.
2144 (electric-layout-post-self-insert-function): New function.
2145 (electric-indent-mode): Make them interact better.
2146
2147 2010-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
2148
2149 * emacs-lisp/checkdoc.el (checkdoc-syntax-table): Fix last change.
2150 (checkdoc-sentencespace-region-engine, checkdoc-this-string-valid)
2151 (checkdoc-proper-noun-region-engine): Use with-syntax-table.
2152
2153 2010-11-15 Agustín Martín <agustin.martin@hispalinux.es>
2154
2155 * textmodes/flyspell.el (flyspell-generic-progmode-verify):
2156 Make sure to check inside the word (Bug#6761).
2157
2158 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
2159
2160 * startup.el (command-line): If the cursorColor resource is set,
2161 change the cursor face-spec (Bug#7392).
2162
2163 2010-11-13 Ken Manheimer <ken.manheimer@gmail.com>
2164
2165 The main features of the following allout.el changes are:
2166 - implement user customization for the allout key bindings
2167 - add a customization control by which the user can inhibit use of
2168 a trailing Ctrl-H, so by default it's reserved for use with
2169 describe-prefix-bindings
2170 - adapt to new version of called-interactively-p, while
2171 maintaining backwards compatibility with old version
2172 - fix hotspot navigation so i works properly with meta-modified keys
2173
2174 * allout.el (allout-keybindings, allout-bind-keys)
2175 (allout-keybindings-binding, allout-prefixed-keybindings)
2176 (allout-unprefixed-keybindings, allout-preempt-trailing-ctrl-h)
2177 (allout-keybindings-list, allout-mode-map-adjustments)
2178 (allout-setup-mode-map): Establish allout-mode keymaps as user
2179 customizable settings, and also establish a customizable setting which
2180 regulates whether or not a trailing control-h is reserved for use with
2181 describe-prefix-bindings - and inhibit it by default, so that control-h
2182 *is* reserved for describe-prefix-bindings unless the user changes it.
2183
2184 * allout.el (allout-hotspot-key-handler): Distinguish more explicitly
2185 and accurately between modified and unmodified events, and handle
2186 modified events more comprehensively.
2187
2188 * allout.el (allout-substring-no-properties):
2189 Alias to use or provide version of `substring-no-properties'.
2190 (allout-solicit-alternate-bullet): Use `allout-substring-no-properties'.
2191
2192 * allout.el (allout-next-single-char-property-change):
2193 Alias to use or provide version of `next-single-char-property-change'.
2194 (allout-annotate-hidden, allout-hide-by-annotation):
2195 Use `allout-next-single-char-property-change'.
2196
2197 * allout.el (allout-select-safe-coding-system):
2198 Alias to use or provide version of `select-safe-coding-system'.
2199 (allout-toggle-subtree-encryption):
2200 Use `allout-select-safe-coding-system'.
2201
2202 * allout.el (allout-set-buffer-multibyte):
2203 Alias to use or provide version of `set-buffer-multibyte'.
2204 (allout-encrypt-string): Use `allout-set-buffer-multibyte'.
2205
2206 * allout.el (allout-called-interactively-p): Macro for using the
2207 different versions of called-interactively-p identically, depending on
2208 the subroutine's argument signature.
2209 (allout-back-to-current-heading, allout-beginning-of-current-entry):
2210 Use `(interactive "p")' instead of `(called-interactively-p)'.
2211
2212 * allout.el (allout-init, allout-ascend, allout-end-of-level)
2213 (allout-previous-visible-heading, allout-forward-current-level)
2214 (allout-backward-current-level, allout-show-children):
2215 Use `allout-called-interactively-p' instead of `called-interactively-p'.
2216
2217 * allout.el (allout-before-change-handler):
2218 Exempt edits to the (overlaid) character after the allout outline
2219 bullet from edit confirmation prompt.
2220
2221 * allout.el (allout-add-resumptions):
2222 Ensure that it respects correct buffer for keybindings.
2223
2224 * allout.el (allout-beginning-of-line):
2225 Use `allout-previous-single-char-property-change' alias for the sake of
2226 diverse compatibility.
2227
2228 * allout.el (allout-end-of-line):
2229 Use `allout-mark-active-p' to encapsulate respect for mark activity.
2230
2231 2010-11-13 Chong Yidong <cyd@stupidchicken.com>
2232
2233 * frame.el (frame-notice-user-settings): Don't clobber other
2234 user-set parameters when calling face-set-after-frame-default in
2235 response to background-color parameter (Bug#7373).
2236
2237 2010-11-13 Eli Zaretskii <eliz@gnu.org>
2238
2239 * international/characters.el (glyphless-char-display-control):
2240 Rename from glyphless-char-control; all users changed. Doc fix.
2241 Signal an error if display method is not one of the recognized
2242 symbols.
2243
2244 2010-11-13 Michael Albinus <michael.albinus@gmx.de>
2245
2246 * net/tramp-compat.el (tramp-compat-line-beginning-position)
2247 (tramp-compat-line-end-position): Remove them.
2248
2249 * net/tramp.el (tramp-parse-rhosts-group)
2250 (tramp-parse-shosts-group, tramp-parse-sconfig-group)
2251 (tramp-parse-hosts-group, tramp-parse-passwd-group)
2252 (tramp-parse-netrc-group, tramp-parse-putty-group)
2253 * net/tramp-cmds.el (tramp-append-tramp-buffers)
2254 * net/tramp-sh.el (tramp-do-file-attributes-with-ls)
2255 (tramp-sh-handle-file-selinux-context)
2256 (tramp-sh-handle-file-name-all-completions)
2257 (tramp-sh-handle-insert-directory)
2258 (tramp-sh-handle-expand-file-name, tramp-find-executable)
2259 (tramp-wait-for-output, tramp-send-command-and-read)
2260 * net/tramp-smb.el (tramp-smb-read-file-entry)
2261 (tramp-smb-get-cifs-capabilities): Use `point-at-eol'.
2262
2263 * net/tramp-sh.el (tramp-sh-handle-insert-directory) Use
2264 `point-at-bol'.
2265 (tramp-remote-coding-commands): Add an alternative using "base64
2266 -d -i". This is needed for older base64 versions from GNU
2267 coreutils. Reported by Klaus Reichl
2268 <Klaus.Reichl@thalesgroup.com>.
2269
2270 2010-11-13 Hrvoje Niksic <hniksic@xemacs.org>
2271
2272 * simple.el (count-words-region): New function.
2273
2274 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
2275
2276 * shell.el (shell-dir-cookie-re): New custom variable.
2277 (shell-dir-cookie-watcher): New function.
2278
2279 * vc/vc.el (vc-deduce-backend): Use default-directory in shell-mode
2280 and compilation-mode (bug#7350).
2281
2282 * vc/smerge-mode.el (smerge-refine): Choose better default part to
2283 highlight when one of them is empty.
2284
2285 * skeleton.el (skeleton-read): Don't use `newline' since it may strip
2286 trailing space.
2287 (skeleton-newline): New function.
2288 (skeleton-internal-1): Use it.
2289
2290 * simple.el (open-line): `newline' may strip trailing space.
2291
2292 2010-11-12 Kevin Ryde <user42@zip.com.au>
2293
2294 * international/mule-cmds.el (princ-list): Use mapc.
2295
2296 2010-11-12 Glenn Morris <rgm@gnu.org>
2297
2298 * emacs-lisp/bytecomp.el (byte-compile-log-buffer): New constant.
2299 Use it to replace all instances of "*Compile-Log*"
2300
2301 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
2302
2303 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Add debug and
2304 indentation specs.
2305
2306 2010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
2307
2308 * progmodes/modula2.el: Use SMIE and skeleton.
2309 (m2-mode-syntax-table): (*..*) can be nested.
2310 Add //...\n. Fix paren syntax.
2311 (m2-mode-map): Remove LF and TAB bindings.
2312 (m2-indent): Add safety property.
2313 (m2-smie-grammar): New var.
2314 (m2-smie-refine-colon, m2-smie-refine-of, m2-smie-backward-token)
2315 (m2-smie-forward-token, m2-smie-refine-semi, m2-smie-rules): New funs.
2316 (m2-mode): Use define-derived-mode.
2317 (m2-newline, m2-tab): Remove.
2318 (m2-begin, m2-case, m2-definition, m2-else, m2-for, m2-header)
2319 (m2-if, m2-loop, m2-module, m2-or, m2-procedure, m2-with, m2-record)
2320 (m2-stdio, m2-type, m2-until, m2-var, m2-while, m2-export)
2321 (m2-import): Use define-skeleton.
2322
2323 2010-11-11 Glenn Morris <rgm@gnu.org>
2324
2325 * obsolete/lucid.el: Don't warn about any CL functions in this file.
2326
2327 * ls-lisp.el (ls-lisp-ignore-case, ls-lisp-dirs-first)
2328 (ls-lisp-verbosity): Add custom :set-after property.
2329 (ls-lisp-verbosity, ls-lisp-use-localized-time-format): Doc fixes.
2330 (ls-lisp-format, ls-lisp-format-time): Don't take `now' as an argument.
2331 (ls-lisp-insert-directory): Update caller.
2332 (ls-lisp-set-options): New function.
2333 (ls-lisp-emulation): Use ls-lisp-set-options for custom :set.
2334 Doc fix.
2335
2336 * play/landmark.el (lm-prompt-for-move):
2337 * play/gomoku.el (gomoku-prompt-for-move): Remove nonsensical code.
2338
2339 * progmodes/idlw-complete-structtag.el: Remove unused dec `name'.
2340
2341 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins)
2342 (idlwave-study-twins): Prefix dynamic local variable `name'.
2343 (idlwave-routine-twin-compare): Update for above change.
2344
2345 * progmodes/idlw-help.el (idlwave-do-mouse-completion-help):
2346 Prefix dynamic local variables `name', `kwd', and `link'.
2347 * progmodes/idlw-shell.el (idlwave-shell-complete-execcomm-help):
2348 * progmodes/idlw-complete-structtag.el
2349 (idlwave-complete-structure-tag-help):
2350 * progmodes/idlwave.el (idlwave-complete-sysvar-help)
2351 (idlwave-complete-sysvar-tag-help)
2352 (idlwave-complete-class-structure-tag-help):
2353 Update for above name changes.
2354
2355 2010-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2356
2357 * net/browse-url.el (browse-url-browser-function): Change the
2358 default to use `browse-url-mail' on mailto: URLs.
2359
2360 2010-11-10 Chong Yidong <cyd@stupidchicken.com>
2361
2362 * emacs-lisp/package.el (package-read-all-archive-contents):
2363 Reset package-archive-contents to nil before re-reading.
2364
2365 2010-11-10 Brandon Craig Rhodes <brandon@rhodesmill.org> (tiny change)
2366
2367 * textmodes/flyspell.el (flyspell-word): Do not re-check words
2368 already found as misspellings by (flyspell-large-region), just
2369 do highlighting (bug#7322).
2370
2371 2010-11-10 Glenn Morris <rgm@gnu.org>
2372
2373 * progmodes/octave-mod.el (octave-mark-block): Update for smie change.
2374
2375 * emulation/edt.el (edt-with-position): New macro.
2376 (edt-find-forward, edt-find-backward, edt-find-next-forward)
2377 (edt-find-next-backward, edt-sentence-forward, edt-sentence-backward)
2378 (edt-paragraph-forward, edt-paragraph-backward): Use it.
2379
2380 * emulation/tpu-extras.el (tpu-with-position): New macro.
2381 (tpu-paragraph, tpu-page, tpu-search-internal): Use it.
2382
2383 * textmodes/texnfo-upd.el (texinfo-pointer-name): Fix typo.
2384
2385 * textmodes/texnfo-upd.el (texinfo-all-menus-update)
2386 (texinfo-menu-copy-old-description, texinfo-start-menu-description)
2387 (texinfo-master-menu, texinfo-insert-node-lines)
2388 (texinfo-multiple-files-update):
2389 * textmodes/texinfmt.el (texinfo-append-refill, texinfo-copying):
2390 Use line-beginning-position.
2391
2392 * progmodes/cperl-mode.el (cperl-find-pods-heres, cperl-write-tags):
2393 No recent Emacs supports system-type `emx'.
2394
2395 * progmodes/ada-xref.el (is-windows): Rename to ada-on-ms-windows.
2396 (ada-command-separator, ada-default-prj-properties)
2397 (ada-find-any-references): Update for above name change.
2398
2399 * dirtrack.el (dirtrack-directory-function)
2400 (dirtrack-canonicalize-function):
2401 * filecache.el (file-cache-completion-ignore-case)
2402 (file-cache-case-fold-search, file-cache-ignore-case):
2403 * term.el (serial-port-is-file-p): Cosmetic change.
2404
2405 * emulation/viper-init.el (viper-ms-style-os-p): Doc fix.
2406 Remove non-existent `windows-95' system-type.
2407 * dired.el (dired-chown-program): Remove non-existent `linux'
2408 system-type.
2409
2410 * net/net-utils.el (net-utils-remove-ctl-m): Use memq for system-types.
2411 (ping-program-options): Remove non-existent `linux' system-type.
2412
2413 * startup.el (package-initialize): Update declaration.
2414
2415 * ls-lisp.el (ls-lisp-time-lessp, ls-lisp-time-to-seconds): Remove.
2416 (ls-lisp-handle-switches): Use time-less-p.
2417 (ls-lisp-format-time): Use float-time.
2418
2419 * textmodes/remember.el (remember-time-to-seconds): Remove.
2420 (remember-store-in-mailbox): Use float-time.
2421
2422 * calendar/timeclock.el (timeclock-time-to-seconds): Make it an alias.
2423
2424 * calendar/time-date.el (time-to-seconds): Always an alias on Emacs,
2425 never a real function.
2426 (with-no-warnings): Remove compat stub, now unused.
2427 (time-less-p): Doc fix.
2428 (time-to-number-of-days): Simplify.
2429
2430 * eshell/esh-util.el (eshell-time-less-p, eshell-time-to-seconds):
2431 Remove.
2432 (eshell-read-passwd, eshell-read-hosts): Use time-less-p.
2433 * eshell/esh-test.el (eshell-test, eshell-show-usage-metrics):
2434 * eshell/em-unix.el (eshell-show-elapsed-time, eshell/time):
2435 * eshell/em-pred.el (eshell-pred-file-time): Use float-time.
2436 * eshell/em-ls.el (eshell-ls-sort-entries): Use time-less-p.
2437
2438 * eshell/em-unix.el (eshell-remove-entries, eshell/rm)
2439 (eshell-shuffle-files, eshell-shorthand-tar-command)
2440 (eshell-mvcpln-template, eshell/mv, eshell/cp, eshell/ln):
2441 Prefix dynamic locals `interactive', `preview', `recursive', `verbose'.
2442 * eshell/em-glob.el (eshell-extended-glob, eshell-glob-entries):
2443 Prefix dynamic local variable `matches'.
2444
2445 * skeleton.el (skeleton-internal-list, skeleton-internal-1):
2446 Prefix dynamic local variable `skeleton'.
2447
2448 2010-11-10 Katsumi Yamaoka <yamaoka@jpl.org>
2449
2450 * net/browse-url.el (browse-url-mail): Insert body part of mailto url
2451 in mail buffer; make yank-action always a command that yanks original
2452 buffer.
2453
2454 2010-11-09 Glenn Morris <rgm@gnu.org>
2455
2456 * progmodes/tcl.el (tcl-hairy-scan-for-comment): Doc fix.
2457
2458 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2459
2460 * minibuffer.el (minibuffer-completion-help): Specify the end of the
2461 completion field (bug#7211).
2462
2463 * progmodes/python.el (python-font-lock-syntactic-keywords): (bug#7322)
2464 Fix handling of backslash escapes.
2465 (python-quote-syntax): Adjust accordingly.
2466
2467 2010-11-09 Richard Levitte <richard@levitte.org> (tiny change)
2468
2469 * vc-mtn.el (vc-mtn-working-revision, vc-mtn-after-dir-status)
2470 (vc-mtn-workfile-branch): Adjust to new output format.
2471
2472 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2473
2474 * international/mule-cmds.el (princ-list): Mark as obsolete.
2475
2476 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2477
2478 * emacs-lisp/smie.el: New package.
2479
2480 2010-11-09 Michael Albinus <michael.albinus@gmx.de>
2481
2482 * files.el (backup-by-copying-when-mismatch):
2483 Set `permanent-local' property.
2484
2485 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
2486 `permanent-local' property for `backup-by-copying-when-mismatch'.
2487
2488 2010-11-09 Eli Zaretskii <eliz@gnu.org>
2489
2490 * ls-lisp.el (insert-directory): Doc fix. (bug#7285)
2491
2492 2010-11-09 Wilson Snyder <wsnyder@wsnyder.org>
2493
2494 * progmodes/verilog-mode.el (verilog-insert-one-definition)
2495 (verilog-read-decls, verilog-read-sub-decls-sig): Fix AUTOWIRE and
2496 AUTOINOUT for SV style multidimensional arrays, bug294.
2497 Reported by Eric Mastromarchi.
2498 (verilog-preprocess): Use with-current-buffer and
2499 font-lock-fontify-buffer to cleanup style issues.
2500
2501 2010-11-09 Glenn Morris <rgm@gnu.org>
2502
2503 * locate.el (locate, locate-mode): Doc fixes.
2504
2505 2010-11-09 Chong Yidong <cyd@stupidchicken.com>
2506
2507 * server.el (server-start): New arg INHIBIT-PROMPT prevents asking
2508 user for confirmation.
2509 (server-force-stop): Use it.
2510 (server-start): Use server-force-stop for kill-emacs-hook, to
2511 avoid user interaction while killing Emacs.
2512
2513 2010-11-09 Glenn Morris <rgm@gnu.org>
2514
2515 * progmodes/meta-mode.el: Remove leading `*' from defcustom docs.
2516 (meta-indent-line): Simplify.
2517
2518 * vc/emerge.el (emerge-line-number-in-buf):
2519 * textmodes/ispell.el (ispell-region):
2520 * textmodes/fill.el (current-fill-column):
2521 * progmodes/xscheme.el (xscheme-send-current-line):
2522 * progmodes/vhdl-mode.el (vhdl-current-line, vhdl-line-copy):
2523 * progmodes/tcl.el (tcl-hairy-scan-for-comment):
2524 * progmodes/sh-script.el (sh-handle-prev-do):
2525 * progmodes/meta-mode.el (meta-indent-line):
2526 * progmodes/idlwave.el (idlwave-goto-comment, idlwave-fill-paragraph)
2527 (idlwave-in-quote):
2528 * progmodes/idlw-shell.el (idlwave-shell-current-frame)
2529 (idlwave-shell-update-bp-overlays, idlwave-shell-sources-filter):
2530 * progmodes/fortran.el (fortran-looking-at-if-then):
2531 * progmodes/etags.el (find-tag-in-order, etags-snarf-tag):
2532 * progmodes/cperl-mode.el (cperl-sniff-for-indent)
2533 (cperl-find-pods-heres):
2534 * progmodes/ada-mode.el (ada-get-current-indent, ada-narrow-to-defun):
2535 * net/quickurl.el (quickurl-list-insert):
2536 * net/ldap.el (ldap-search-internal):
2537 * net/eudc.el (eudc-expand-inline):
2538 * mail/sendmail.el (sendmail-send-it):
2539 * mail/mspools.el (mspools-visit-spool, mspools-get-spool-name):
2540 * emulation/viper-cmd.el (viper-paren-match, viper-backward-indent)
2541 (viper-brac-function):
2542 * calc/calc-yank.el (calc-do-grab-region):
2543 * calc/calc-keypd.el (calc-keypad-press):
2544 * term.el (term-move-columns, term-insert-spaces):
2545 * speedbar.el (speedbar-highlight-one-tag-line):
2546 * simple.el (current-word):
2547 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
2548 * info.el (Info-find-node-in-buffer-1, Info-follow-reference)
2549 (Info-scroll-down):
2550 * hippie-exp.el (he-line-beg):
2551 * epa.el (epa--marked-keys):
2552 * dired-aux.el (dired-kill-line, dired-do-kill-lines)
2553 (dired-update-file-line, dired-add-entry, dired-remove-entry)
2554 (dired-relist-entry):
2555 * buff-menu.el (Buffer-menu-buffer):
2556 * array.el (current-line):
2557 * allout.el (allout-resolve-xref)
2558 (allout-latex-verbatim-quote-curr-line):
2559 Replace yet more uses of end-of-line etc with line-end-position, etc.
2560
2561 2010-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2562
2563 * emacs-lisp/checkdoc.el (checkdoc-display-status-buffer)
2564 (checkdoc-interactive-loop, checkdoc-recursive-edit): Avoid princ-list.
2565 (checkdoc-syntax-table): Initialize in the declaration.
2566 (emacs-lisp-mode-hook): Use just checkdoc-minor-mode now that it turns
2567 the mode on unconditionally.
2568
2569 * emacs-lisp/cl-macs.el (extent-data, extent-face, extent-priority)
2570 (extent-end-position, extent-start-position): Remove setf method for
2571 non-existing functions (bug#7319).
2572
2573 2010-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
2574
2575 * emacs-lisp/smie.el: Simplify the smie-rules-function return values.
2576 (smie-precs->prec2): Rename from smie-precs-precedence-table.
2577 (smie-bnf->prec2): Rename from smie-bnf-precedence-table.
2578 (smie-prec2->grammar): Rename from smie-prec2-levels.
2579 (smie-grammar): Rename from smie-op-levels.
2580 (smie-indent--hanging-p): Rename from smie-hanging-p.
2581 (smie-rule-hanging-p): New alias.
2582 (smie-indent--bolp): Rename from smie-bolp.
2583 (smie-indent--hanging-p): New alias.
2584 (smie--token): New dynamically bound variable.
2585 (smie-indent--parent): New function.
2586 (smie-rule-parent-p): Use it; rename from smie-parent-p.
2587 (smie-rule-next-p): Rename from smie-next-p.
2588 (smie-rule-prev-p): Rename from smie-prev-p.
2589 (smie-rule-sibling-p, smie-rule-parent)
2590 (smie-indent--separator-outdent, smie-rule-separator): New functions.
2591 (smie-rule-separator-outdent): New var.
2592 (smie-indent--rule): Merge with smie-indent--column.
2593 (smie-indent-forward-token, smie-indent-backward-token):
2594 Also recognize close parens.
2595 (smie-indent-keyword): Don't use smie-indent--column any more.
2596 (smie-indent-after-keyword): Ignore closers by default.
2597 (smie-indent-line): Use with-demoted-errors.
2598 * progmodes/octave-mod.el (octave-smie-grammar):
2599 Rename from octave-smie-op-levels.
2600 (octave-smie-rules): Adjust to new behavior.
2601 * progmodes/prolog.el (prolog-smie-grammar):
2602 Rename from prolog-smie-op-levels.
2603
2604 2010-11-07 Glenn Morris <rgm@gnu.org>
2605
2606 * eshell/esh-util.el (subst-char-in-string)
2607 (directory-files-and-attributes): These compatibility definitions are
2608 not needed on any version of Emacs since at least 21.4.
2609
2610 * progmodes/verilog-mode.el (verilog-get-beg-of-line)
2611 (verilog-get-end-of-line): Remove.
2612 (verilog-within-string, verilog-re-search-forward-substr)
2613 (verilog-re-search-backward-substr, verilog-set-auto-endcomments)
2614 (verilog-surelint-off, verilog-getopt-file, verilog-highlight-region):
2615 Use point-at-bol, point-at-eol.
2616 * progmodes/pascal.el (pascal-get-beg-of-line, pascal-get-end-of-line):
2617 Remove.
2618 (pascal-declaration-end, pascal-declaration-beg, pascal-within-string)
2619 (electric-pascal-terminate-line, pascal-set-auto-comments)
2620 (pascal-indent-paramlist, pascal-indent-declaration)
2621 (pascal-get-lineup-indent, pascal-func-completion)
2622 (pascal-get-completion-decl, pascal-var-completion, pascal-completion):
2623 Use point-at-bol, point-at-eol.
2624 * progmodes/flymake.el (flymake-line-beginning-position)
2625 (flymake-line-end-position): Remove.
2626 (flymake-highlight-line): Use point-at-bol, point-at-eol.
2627 * eshell/esh-util.el (line-end-position, line-beginning-position):
2628 Remove compat definitions.
2629
2630 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2631 Use end-of-line N.
2632 (checkdoc-this-string-valid-engine, checkdoc-file-comments-engine):
2633 Use line-end-position.
2634
2635 * emacs-lisp/chart.el (chart-zap-chars):
2636 * play/decipher.el (decipher-set-map):
2637 * progmodes/ada-mode.el (ada-get-current-indent)
2638 (ada-search-ignore-string-comment, ada-tab-hard, ada-untab-hard):
2639 * progmodes/ada-prj.el (ada-prj-load-from-file, ada-prj-display-help):
2640 * progmodes/ada-xref.el (ada-initialize-runtime-library)
2641 (ada-get-all-references):
2642 * progmodes/cperl-mode.el (cperl-electric-paren)
2643 (cperl-electric-rparen, cperl-electric-keyword, cperl-electric-else)
2644 (cperl-linefeed, cperl-sniff-for-indent, cperl-to-comment-or-eol)
2645 (cperl-find-pods-heres, cperl-indent-exp, cperl-fix-line-spacing)
2646 (cperl-word-at-point-hard):
2647 * progmodes/idlw-shell.el (idlwave-shell-move-or-history)
2648 (idlwave-shell-filename-string, idlwave-shell-batch-command)
2649 (idlwave-shell-display-line):
2650 * progmodes/idlwave.el (idlwave-show-begin, idlwave-fill-paragraph)
2651 (idlwave-calc-hanging-indent, idlwave-auto-fill, idlwave-template):
2652 * progmodes/js.el (js--re-search-forward-inner)
2653 (js--re-search-backward-inner):
2654 * progmodes/vhdl-mode.el (vhdl-align-region-1, vhdl-align-region-2)
2655 (vhdl-fix-clause, vhdl-compose-configuration-architecture):
2656 * progmodes/ruby-mode.el (ruby-parse-partial, eval-when-compile):
2657 * textmodes/flyspell.el (flyspell-process-localwords):
2658 * textmodes/ispell.el (ispell-buffer-local-parsing)
2659 (ispell-buffer-local-dict, ispell-buffer-local-words):
2660 Use point-at-bol and point-at-eol.
2661
2662 * speedbar.el (speedbar-generic-item-info)
2663 (speedbar-item-info-tag-helper, speedbar-change-expand-button-char)
2664 (speedbar-add-indicator, speedbar-check-vc-this-line)
2665 (speedbar-check-obj-this-line, speedbar-extract-one-symbol)
2666 (speedbar-buffers-line-directory, speedbar-buffer-revert-buffer):
2667 Replace more uses of end-of-line etc with line-end-position.
2668
2669 2010-11-06 Glenn Morris <rgm@gnu.org>
2670
2671 * textmodes/texnfo-upd.el (texinfo-start-menu-description)
2672 (texinfo-update-menu-region-beginning, texinfo-menu-first-node)
2673 (texinfo-delete-existing-pointers, texinfo-find-pointer)
2674 (texinfo-clean-up-node-line, texinfo-insert-node-lines)
2675 (texinfo-multiple-files-update):
2676 * textmodes/table.el (table--probe-cell-left-up)
2677 (table--probe-cell-right-bottom):
2678 * textmodes/picture.el (picture-tab-search):
2679 * textmodes/page-ext.el (pages-copy-header-and-position)
2680 (pages-directory-for-addresses):
2681 * progmodes/vera-mode.el (vera-get-offset):
2682 * progmodes/simula.el (simula-calculate-indent):
2683 * progmodes/python.el (python-pdbtrack-overlay-arrow):
2684 * progmodes/prolog.el (end-of-prolog-clause):
2685 * progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
2686 * progmodes/icon.el (indent-icon-exp):
2687 * progmodes/etags.el (tag-re-match-p):
2688 * progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
2689 * progmodes/ebnf2ps.el (ebnf-begin-file):
2690 * progmodes/dcl-mode.el (dcl-back-to-indentation-1)
2691 (dcl-save-local-variable):
2692 * play/life.el (life-setup):
2693 * play/gametree.el (gametree-looking-at-ply):
2694 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
2695 * mail/sendmail.el (mail-mode-auto-fill):
2696 * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
2697 * emacs-lisp/edebug.el (edebug-overlay-arrow):
2698 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
2699 * woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
2700 (woman-tab-to-tab-stop, WoMan-warn-ignored):
2701 * type-break.el (type-break-file-keystroke-count):
2702 * term.el (term-replace-by-expanded-history-before-point)
2703 (term-skip-prompt, term-extract-string):
2704 * speedbar.el (speedbar-edit-line, speedbar-expand-line)
2705 (speedbar-contract-line, speedbar-toggle-line-expansion)
2706 (speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
2707 (speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
2708 * sort.el (sort-skip-fields):
2709 * skeleton.el (skeleton-internal-list):
2710 * simple.el (line-move-finish, line-move-to-column):
2711 * shell.el (shell-forward-command):
2712 * misc.el (copy-from-above-command):
2713 * makesum.el (double-column):
2714 * ebuff-menu.el (electric-buffer-update-highlight):
2715 * dired.el (dired-move-to-end-of-filename):
2716 * dframe.el (dframe-popup-kludge):
2717 * bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
2718 * arc-mode.el (archive-get-lineno):
2719 Use line-end-position and line-beginning-position.
2720
2721 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins):
2722 (idlwave-study-twins): Prefix dynamic local `class'.
2723 (idlwave-routine-twin-compare): Update for above name change.
2724
2725 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod):
2726 Use boundp tests to silence compiler. Update for changed name of
2727 bytecomp-filename variable.
2728
2729 * emulation/viper-cmd.el (viper-read-string-with-history):
2730 Prefix dynamic local `initial'.
2731 (viper-minibuffer-standard-hook): Update for above name change.
2732
2733 * emacs-lisp/elint.el (elint-init-env): Prefix dynamic local `env'.
2734 (elint-init-form): Update for above name change.
2735
2736 * mail/mail-extr.el (mail-extract-address-components): Give dynamic
2737 local variables `cbeg' and `cend' a prefix.
2738 (mail-extr-voodoo): Update for above name change.
2739
2740 * textmodes/reftex-toc.el (reftex-toc-do-promote)
2741 (reftex-toc-promote-prepare): Pass `delta' as an explicit argument.
2742 (reftex-toc-promote-action): Doc fix.
2743
2744 * textmodes/reftex-sel.el (reftex-select-item): Give local variables
2745 `prompt', `data' a prefix.
2746 (reftex-select-post-command-hook, reftex-select-callback)
2747 (reftex-select-mouse-accept, reftex-select-read-cite):
2748 Update for above name changes.
2749
2750 * textmodes/reftex-ref.el (reftex-reference): Rename local variable
2751 `refstyle' to reftex-refstyle.
2752 (reftex-offer-label-menu): Update for above name change.
2753 * textmodes/reftex-sel.el (reftex-select-toggle-varioref): Update for
2754 `refstyle' name change.
2755
2756 * vc/emerge.el (emerge-eval-in-buffer): Remove, and replace all uses
2757 with with-current-buffer.
2758 (diff, template): Give dynamic local variables a prefix.
2759 (emerge-line-numbers): Rename local `diff' to emerge-line-diff.
2760 (emerge-line-number-in-buf): Update for above name change.
2761 (emerge-combine-versions-internal): Rename local `template' to
2762 emerge-combine-template.
2763 (emerge-combine-versions-edit): Update for above name change.
2764
2765 2010-11-06 Ralf Angeli <angeli@caeruleus.net>
2766
2767 * textmodes/reftex-cite.el
2768 (reftex-extract-bib-entries-from-thebibliography): Match bibitem
2769 entries with whitespace after \bibitem.
2770 (reftex-create-bibtex-file): Match entries containing numbers and
2771 symbol constituents. Make sure that entries with whitespace at
2772 various places are found.
2773
2774 2010-11-05 Christian Millour <cm@abtela.com> (tiny change)
2775
2776 * shell.el (shell-process-popd): Made aware of comint-file-name-prefix.
2777
2778 2010-11-05 Jan Djärv <jan.h.d@swipnet.se>
2779
2780 * mouse.el (mouse-yank-primary): Update comment (Bug#6802).
2781
2782 2010-11-05 Glenn Morris <rgm@gnu.org>
2783
2784 * woman.el (woman0-roff-buffer, woman1-roff-buffer)
2785 (woman2-roff-buffer): Give local variable `request' a prefix.
2786 (woman0-macro): Rename argument `request' in the same way.
2787 (woman-request): New name for `request' dynamic variable.
2788 (woman-unquote, woman-forward-arg): Update for above name change.
2789 (woman1-roff-buffer): Give local variable `unquote' a prefix.
2790 (woman1-unquote): New name for `unquote' dynamic variable.
2791 (woman1-B-or-I, woman1-alt-fonts): Update for above name change.
2792 (woman-translations): Rename from `translations'. No longer global.
2793 (woman2-tr, woman-translate): Update for above name change.
2794 (woman-translate): Check for bound variable.
2795 (woman2-roff-buffer): Give local variable `translations' a prefix.
2796
2797 * play/doctor.el: Give all local variables a prefix. Update callers.
2798 (doc$, doctor-put-meaning): Use backquote.
2799
2800 * emacs-lisp/cl-macs.el (loop): Give local variable args a prefix.
2801 (cl-parse-loop-clause, cl-loop-handle-accum): Update for above change.
2802
2803 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Give local
2804 variables bytes, ptr, op a prefix.
2805 (disassemble-offset): Update for above change.
2806
2807 2010-11-03 Chong Yidong <cyd@stupidchicken.com>
2808
2809 * emacs-lisp/package.el (package-unpack): Remove no-op.
2810 (package--builtins, package--dir): Doc fix.
2811 (package-activate-1, package-activate, package-install)
2812 (package-compute-transaction): Fix error message.
2813 (package-delete): Use delete-directory. Omit system packages.
2814 (package-initialize): Set package-alist to nil first.
2815 (package-menu-mark-delete, package-menu-mark-install): Don't add
2816 symbols that are inconsistent with the package state.
2817 (package-menu-execute): Perform deletions and installations as
2818 single batch operations.
2819
2820 2010-11-03 Glenn Morris <rgm@gnu.org>
2821
2822 * progmodes/idlwave.el (idlwave-pset): Only used on XEmacs.
2823 (props): Remove unnecessary declaration.
2824
2825 * textmodes/ispell.el (ispell-init-process): On Emacs, always use
2826 set-process-query-on-exit-flag.
2827
2828 * textmodes/reftex-toc.el (name1, dummy, dummy2): Remove unused decs.
2829 (reftex-toc-do-promote): Remove unused local `mpos'.
2830 (reftex-toc-restore-region): Make `mpos' local to this function.
2831
2832 * net/dbus.el (dbus-name-owner-changed-handler): Doc fix.
2833
2834 * play/landmark.el (lm-losing-threshold): Correct spelling.
2835 (lm-human-plays): Use new name.
2836
2837 * play/gomoku.el (gomoku-loosing-threshold): Correct spelling.
2838 (gomoku-human-plays): Use new name.
2839
2840 * play/gomoku.el (nil-score, Xscore, XXscore, XXXscore, XXXXscore)
2841 (Oscore, OOscore, OOOscore, OOOOscore): Rename with gomoku- prefix.
2842 (gomoku-score-trans-table, gomoku-winning-threshold)
2843 (gomoku-loosing-threshold, gomoku-init-score-table): Use new names.
2844
2845 2010-11-03 Chong Yidong <cyd@stupidchicken.com>
2846
2847 * emacs-lisp/package.el: Don't put built-in packages in
2848 package-alist, to avoid loading inefficiencies.
2849 (package-built-in-p): Make VERSION optional, and treat it as a
2850 minimum acceptable version.
2851 (package-activate): Search separately for built-in packages.
2852 Emit a warning if a dependency fails.
2853 (define-package): Handle most common case, where there is no
2854 obsolete package, first.
2855 (package-compute-transaction): Print required version in error.
2856 (package--initialized): New variable.
2857 (list-packages): Use it.
2858 (package-initialize): Optional arg NO-ACTIVATE. Don't put
2859 built-in packages in packages-alist; keep it separate.
2860 Set package--initialized.
2861 (describe-package): Avoid activating packages as a side-effect.
2862 Search separately for built-in packages.
2863 (describe-package-1): Handle the case where an elpa package is
2864 simultaneously built-in and available/installed.
2865 (package-installed-p, package--generate-package-list):
2866 Search separately for built-in packages.
2867 (package-load-descriptor): Doc fix.
2868
2869 2010-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
2870
2871 * progmodes/perl-mode.el (perl-syntax-propertize-function):
2872 Handle __DATA__ and __END__.
2873
2874 2010-11-02 Noah Friedman <friedman@splode.com>
2875
2876 * emacs-lisp/bytecomp.el (byte-recompile-file): If bytecomp-arg is
2877 nil, do not ask to recompile files that are not already compiled,
2878 and do not recompile them.
2879
2880 2010-11-02 Chong Yidong <cyd@stupidchicken.com>
2881
2882 * emacs-lisp/package.el (package-initialize): Ensure that
2883 obsoleted built-in packages are not in package-activated-list
2884 during activation.
2885 (describe-package-1): Make the "installed" status override
2886 "built-in".
2887
2888 2010-11-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2889
2890 * subr.el (version-separator, version-regexp-alist): Remove '*'
2891 from docstring.
2892 (version-list-<=, version<=, version=): Doc fix.
2893
2894 2010-11-01 Kenichi Handa <handa@m17n.org>
2895
2896 * faces.el (glyphless-char): Inherit underline for tty.
2897
2898 2010-11-01 Kenichi Handa <handa@m17n.org>
2899
2900 Implement various display methods for glyphless characters.
2901
2902 * international/characters.el (char-acronym-table): New variable.
2903 (glyphless-char-control): New variable.
2904 (update-glyphless-char-display): New funciton.
2905
2906 * faces.el (glyphless-char): New face.
2907
2908 2010-11-01 Glenn Morris <rgm@gnu.org>
2909
2910 * calendar/holidays.el (general-holidays, oriental-holidays)
2911 (local-holidays, other-holidays, hebrew-holidays, christian-holidays)
2912 (islamic-holidays, bahai-holidays, solar-holidays): Move aliases before
2913 the definitions of their targets.
2914
2915 * emacs-lisp/smie.el (smie): New custom group.
2916 (smie-blink-matching-inners, smie-indent-basic): Add :group.
2917
2918 * faces.el (xw-defined-colors, x-setup-function-keys):
2919 * mouse-sel.el (x-select-text):
2920 * term/w32console.el (x-setup-function-keys): Update declarations.
2921
2922 * progmodes/ruby-mode.el (ruby-syntax-propertize-heredoc): Declare.
2923
2924 * textmodes/ispell.el (comment-add): Declare.
2925
2926 * net/gnutls.el (gnutls-boot, gnutls-errorp, gnutls-error-string):
2927 Declare.
2928
2929 * info.el (finder-keywords-hash, package-alist): Declare.
2930
2931 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
2932
2933 * finder.el (finder-compile-keywords): Don't use intern-soft,
2934 since package names may not yet exist in the obarray.
2935
2936 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
2937
2938 * vc/vc-arch.el (vc-arch-checkin):
2939 * vc/vc-cvs.el (vc-cvs-checkin):
2940 * vc/vc-mtn.el (vc-mtn-checkin):
2941 * vc/vc-rcs.el (vc-rcs-checkin):
2942 * vc/vc-sccs.el (vc-sccs-checkin):
2943 * vc/vc-svn.el (vc-svn-checkin): Remove optional extra arg, unused
2944 since 2010-04-21 commit by Stefan Monnier.
2945
2946 2010-11-01 Glenn Morris <rgm@gnu.org>
2947
2948 * emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change.
2949
2950 * startup.el (package-enable-at-startup, package-initialize):
2951 Silence compiler.
2952
2953 * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
2954 Silence compiler.
2955
2956 2010-10-31 Julien Danjou <julien@danjou.info>
2957
2958 * emacs-lisp/bytecomp.el (byte-recompile-file): New fun (bug#7297).
2959 (byte-recompile-directory):
2960 * emacs-lisp/lisp-mode.el (emacs-lisp-byte-compile-and-load):
2961 Use `byte-recompile-file'.
2962
2963 2010-10-31 Glenn Morris <rgm@gnu.org>
2964
2965 * cus-start.el: Handle standard values via a keyword.
2966 Only set version property if specified.
2967 (cursor-in-non-selected-windows, menu-bar-mode)
2968 (tool-bar-mode, show-trailing-whitespace):
2969 Do not specify standard values.
2970 (transient-mark-mode, temporary-file-directory): Use :standard.
2971
2972 2010-10-31 Jan Djärv <jan.h.d@swipnet.se>
2973
2974 * term/x-win.el (x-get-selection-value): New function that gets
2975 PRIMARY with type as specified in x-select-request-type. (Bug#6802).
2976
2977 2010-10-31 Michael Albinus <michael.albinus@gmx.de>
2978
2979 * net/tramp.el (tramp-handle-insert-file-contents): For root,
2980 preserve owner and group when editing files. (Bug#7289)
2981
2982 2010-10-31 Glenn Morris <rgm@gnu.org>
2983
2984 * speedbar.el (speedbar-mode):
2985 * play/fortune.el (fortune-in-buffer, fortune):
2986 * play/gomoku.el (gomoku-mode):
2987 * play/landmark.el (lm-mode):
2988 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
2989 Replace inappropriate uses of toggle-read-only. (Bug#7292)
2990
2991 * select.el (x-selection): Mark it as an obsolete alias.
2992
2993 2010-10-31 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2994
2995 * vc/add-log.el (find-change-log): Use derived-mode-p rather than
2996 major-mode (bug#7284).
2997
2998 2010-10-31 Glenn Morris <rgm@gnu.org>
2999
3000 * menu-bar.el (menu-bar-files-menu): Make it into an actual alias,
3001 rather than just an unused variable that inherits from the real one.
3002
3003 2010-10-31 Alan Mackenzie <acm@muc.de>
3004
3005 * progmodes/cc-cmds.el (c-mask-paragraph): Fix an off-by-1 error.
3006 This fixes bug #7185.
3007
3008 2010-10-30 Chong Yidong <cyd@stupidchicken.com>
3009
3010 * startup.el (command-line): Search for package directories, and
3011 don't load package.el if none are found.
3012
3013 * emacs-lisp/package.el (describe-package, list-packages):
3014 Call package-initialize if it has not been called yet.
3015
3016 2010-10-30 Alan Mackenzie <acm@muc.de>
3017
3018 * progmodes/cc-fonts.el (c-font-lock-enum-tail): New function
3019 which fontifies the tail of an enum.
3020 (c-basic-matchers-after): Insert a call to the above new function.
3021 This fixes bug #7264.
3022
3023 2010-10-30 Glenn Morris <rgm@gnu.org>
3024
3025 * cus-start.el: Add :set properties for minor modes menu-bar-mode,
3026 tool-bar-mode, transient-mark-mode. (Bug#7306)
3027 Include the :set property in the dumped Emacs.
3028
3029 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3030
3031 SMIE: change indent rules format, improve smie-setup.
3032 * emacs-lisp/smie.el (smie-precs-precedence-table)
3033 (smie-merge-prec2s, smie-bnf-precedence-table, smie-prec2-levels):
3034 Mark them pure so the tables gets built at compile time.
3035 (smie-bnf-precedence-table): Store the closer-alist in the table.
3036 (smie-prec2-levels): Preserve the closer-alist.
3037 (smie-blink-matching-open): Be more forgiving in case of indentation.
3038 (smie-hanging-p): Rename from smie-indent--hanging-p.
3039 (smie-bolp): Rename from smie-indent--bolp.
3040 (smie--parent, smie--after): New dynamic vars.
3041 (smie-parent-p, smie-next-p, smie-prev-p): New funs.
3042 (smie-indent-rules): Remove.
3043 (smie-indent--offset-rule): Remove fun.
3044 (smie-rules-function): New var.
3045 (smie-indent--rule): New fun.
3046 (smie-indent--offset, smie-indent-keyword, smie-indent-after-keyword)
3047 (smie-indent-exps): Use it.
3048 (smie-setup): Setup paren blinking; add keyword args for token
3049 functions; extract closer-alist from op-levels.
3050 (smie-indent-debug-log): Remove var.
3051 (smie-indent-debug): Remove fun.
3052 * progmodes/prolog.el (prolog-smie-indent-rules): Remove.
3053 (prolog-smie-rules): New fun to replace it.
3054 (prolog-mode-variables): Simplify.
3055 * progmodes/octave-mod.el (octave-smie-closer-alist): Remove, now that
3056 it's setup automatically.
3057 (octave-smie-indent-rules): Remove.
3058 (octave-smie-rules): New fun to replace it.
3059 (octave-mode): Simplify.
3060
3061 2010-10-29 Glenn Morris <rgm@gnu.org>
3062
3063 * files.el (temporary-file-directory): Remove (already defined in C).
3064 * cus-start.el: Add temporary-file-directory.
3065
3066 * abbrev.el (abbrev-mode):
3067 * composite.el (auto-composition-mode):
3068 * menu-bar.el (menu-bar-mode):
3069 * simple.el (transient-mark-mode):
3070 * tool-bar.el (tool-bar-mode): Adjust the define-minor-mode calls so
3071 that they do not define the associated variables twice.
3072 * simple.el (transient-mark-mode): Remove defvar.
3073 * composite.el (auto-composition-mode): Make variable auto-buffer-local.
3074 * cus-start.el: Add transient-mark-mode, menu-bar-mode, tool-bar-mode.
3075 Handle multiple groups, and also custom-delayed-init-variables.
3076 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
3077
3078 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3079
3080 * emacs-lisp/pcase.el (pcase): New `string' and `guard' patterns.
3081 (pcase-if): Add one minor optimization.
3082 (pcase-split-equal): Rename from pcase-split-eq.
3083 (pcase-split-member): Rename from pcase-split-memq.
3084 (pcase-u1): Add strings to the member optimization.
3085 Add `guard' variant of predicates.
3086 (pcase-q1): Add string patterns.
3087
3088 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3089
3090 * vc/log-edit.el (log-edit-rewrite-fixes): State its safety pred.
3091
3092 2010-10-28 Glenn Morris <rgm@gnu.org>
3093
3094 * term/ns-win.el (global-map, menu-bar-final-items, menu-bar-help-menu):
3095 Move menu-bar related settings to ../menu-bar.el.
3096 * menu-bar.el (global-map, menu-bar-final-items, menu-bar-help-menu):
3097 Move ns-specific settings here from term/ns-win.el.
3098
3099 * simple.el (x-selection-owner-p): Remove unused declaration.
3100
3101 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3102
3103 * minibuffer.el (completion-cycling): New var (bug#7266).
3104 (minibuffer-complete, completion--do-completion):
3105 Use completion--flush-all-sorted-completions.
3106 (minibuffer-complete): Only cycle if completion-cycling is set.
3107 (completion--flush-all-sorted-completions): Unset completion-cycling.
3108 (minibuffer-force-complete): Set completion-cycling.
3109 (completion-all-sorted-completions): Move declaration before first use.
3110
3111 2010-10-28 Leo <sdl.web@gmail.com>
3112
3113 * iswitchb.el (iswitchb-kill-buffer): Avoid `iswitchb-make-buflist'
3114 which changes the order of matches seen by users (bug#7231).
3115
3116 2010-10-28 Jes Bodi Klinke <jes@bodi-klinke.dk> (tiny change)
3117
3118 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3119 Don't confuse -omega as "-o mega".
3120
3121 2010-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
3122
3123 * vc/log-edit.el (log-edit-rewrite-fixes): New var.
3124 (log-edit-author): New dynamic var.
3125 (log-edit-changelog-ours-p, log-edit-insert-changelog-entries): Use it
3126 to return the author if different from committer.
3127 (log-edit-insert-changelog): Use them to add Author: and Fixes headers.
3128
3129 * play/landmark.el: Adjust commenting convention.
3130 (lm-nil-score): Rename from nil-score.
3131 (Xscore, XXscore, XXXscore, XXXXscore, Oscore, OOscore, OOOscore)
3132 (OOOOscore): Move into a let in lm-score-trans-table.
3133 (lm-winning-threshold, lm-loosing-threshold): Use lm-score-trans-table.
3134
3135 * electric.el (electric-indent-chars): Autoload.
3136 * progmodes/octave-mod.el (octave-mode):
3137 * progmodes/ruby-mode.el (ruby-mode): Take advantage of it.
3138 (ruby-mode-abbrev-table): Merge initialization and declaration.
3139
3140 2010-10-27 Glenn Morris <rgm@gnu.org>
3141
3142 * abbrev.el (abbrev-mode): Remove one of the three definitions of this
3143 variable.
3144
3145 * server.el (server-host, server-port, server-auth-dir): Autoload risky.
3146
3147 * term/ns-win.el: Restore require of cl when compiling.
3148 (menu-bar-final-items): Remove non-existent `windows' menu.
3149 (ns-handle-nxopen): Optionally handle the temp-case.
3150 (ns-handle-nxopentemp): Just call ns-handle-nxopen.
3151 (ns-insert-file, ns-find-file): Use `pop'.
3152
3153 2010-10-26 Glenn Morris <rgm@gnu.org>
3154
3155 * term/common-win.el (xw-defined-colors): Simplify the 'ns case.
3156
3157 2010-10-26 Adrian Robert <Adrian.B.Robert@gmail.com>
3158
3159 * term/ns-win.el (ns-new-frame, ns-show-prefs): Don't add to
3160 global map.
3161 * term/common-win.el (x-setup-function-keys): Remove most of the
3162 keymappings. Comment on the remaining ones.
3163
3164 2010-10-26 Peter Oliver <p.d.oliver@mavit.org.uk> (tiny change)
3165
3166 * server.el (server-port): New option. (Bug#854)
3167 (server-start): Use server-port.
3168
3169 2010-10-26 Glenn Morris <rgm@gnu.org>
3170
3171 * term/ns-win.el (ns-version-string): Remove unused declaration.
3172 (ns-invocation-args): Change to x-invocation-args.
3173 (ns-handle-switch, ns-handle-numeric-switch, ns-handle-iconic)
3174 (ns-handle-name-switch, ns-ignore-2-arg): Remove.
3175 (ns-handle-nxopen, ns-handle-nxopentemp, ns-ignore-1-arg):
3176 Use x-invocation-args instead of ns-invocation-args.
3177 (ns-initialize-window-system, handle-args-function-alist):
3178 Use x-handle-args instead of ns-handle-args.
3179 * term/common-win.el (x-handle-args): Also handle nextstep arguments.
3180 * startup.el (command-line-ns-option-alist): Replace
3181 ns-handle-name-switch, ns-handle-switch, ns-handle-numeric-switch,
3182 ns-handle-iconic with the x- equivalents.
3183
3184 * term/common-win.el (x-select-enable-clipboard):
3185 * term/pc-win.el (x-select-enable-clipboard): Doc fix.
3186
3187 * term/ns-win.el: No need to require cl when compiling.
3188 (x-display-name, x-setup-function-keys, x-select-text, x-colors)
3189 (xw-defined-colors): Use the common-win definitions.
3190 (ns-alternatives-map): Make it an obsolete alias for x-alternatives-map.
3191 (ns-handle-iconic): Make it an alias for x-handle-iconic.
3192 * term/common-win.el (x-select-text, x-alternatives-map)
3193 (x-setup-function-keys, x-colors, xw-defined-colors): Handle 'ns case.
3194 * loadup.el [ns]: Load common-win.
3195
3196 2010-10-26 Daiki Ueno <ueno@unixuser.org>
3197
3198 * epa-mail.el (epa-mail-encrypt): Handle local-part only
3199 recipients; expand mail aliases (Bug#7280).
3200
3201 2010-10-25 Glenn Morris <rgm@gnu.org>
3202
3203 * term/common-win.el (x-handle-switch): Simplify with pop.
3204 Optionally handle numeric switches.
3205 (x-handle-numeric-switch): Just call x-handle-switch.
3206 (x-handle-initial-switch, x-handle-xrm-switch, x-handle-geometry)
3207 (x-handle-name-switch, x-handle-display, x-handle-args):
3208 Simplify with pop.
3209
3210 * term/ns-win.el: Do not require easymenu.
3211 (menu-bar-edit-menu) <copy, paste, paste-from-menu, separator-undo>:
3212 <spell>: Move adjustments to menu-bar.el.
3213 * menu-bar.el (menu-bar-edit-menu) <copy, paste, paste-from-menu>:
3214 <separator-undo, spell>: Move ns-win's adjustments here.
3215 * loadup.el [ns]: Do not load easymenu.
3216
3217 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
3218
3219 * image.el (image-checkbox-checked, image-checkbox-unchecked):
3220 Delete (Bug#7222).
3221
3222 * startup.el (fancy-startup-tail): Instead of using inline images,
3223 refer to image files from etc/.
3224
3225 * wid-edit.el (checkbox): Likewise.
3226 (widget-image-find): Center image specs.
3227
3228 2010-10-24 Glenn Morris <rgm@gnu.org>
3229
3230 * term/ns-win.el (x-select-text): Doc fix.
3231 * w32-fns.el (x-alternatives-map, x-setup-function-keys)
3232 (x-select-text): Move to term/common-win.
3233 * term/w32-win.el (xw-defined-colors): Move to common-win.
3234 * term/x-win.el (xw-defined-colors, x-alternatives-map)
3235 (x-setup-function-keys, x-select-text): Move to common-win.
3236 * term/common-win.el (x-select-text, x-alternatives-map)
3237 (x-setup-function-keys, xw-defined-colors): Merge x- and w32-
3238 definitions here.
3239
3240 2010-10-24 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
3241
3242 * net/mairix.el (mairix-searches-mode-map):
3243 * mail/mspools.el (mspools-mode-map): Fix 2010-10-10 change.
3244
3245 2010-10-24 Michael McNamara <mac@mail.brushroad.com>
3246
3247 * verilog-mode.el (verilog-directive-re): Make this variable
3248 auto-built for efficiency of execution and updating.
3249 (verilog-extended-complete-re): Support 'pure' fucntion & task
3250 declarations (these have no bodies).
3251 (verilog-beg-of-statement): General cleanup to enable support of
3252 'pure' fucntion & task declarations (these have no bodies).
3253 These efforts together fix Verilog bug210 from veripool; which was also
3254 noticed by Steve Pearlmutter.
3255 (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
3256 (verilog-directive-nest-re, verilog-set-auto-endcomments):
3257 Support `elsif. Reported by Shankar Giri.
3258 (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
3259 attribute handling for lining up declarations and assignments.
3260 (verilog-beg-of-statement-1): Fix issue where continued declaration
3261 is indented differently if it is after a begin..end clock.
3262 (verilog-in-attribute-p, verilog-skip-backward-comments)
3263 (verilog-skip-forward-comment-p): Support proper treatment of
3264 attributes by indent code. Reported by Jeff Steele.
3265 (verilog-in-directive-p): Fix comment to correctly describe function.
3266 (verilog-backward-up-list, verilog-in-struct-region-p)
3267 (verilog-backward-token, verilog-in-struct-p)
3268 (verilog-in-coverage-p, verilog-do-indent)
3269 (verilog-pretty-declarations): Use verilog-backward-up-list as
3270 wrapper around backward-up-list inorder to properly skip comments.
3271 Reported by David Rogoff.
3272 (verilog-property-re, verilog-endcomment-reason-re)
3273 (verilog-beg-of-statement, verilog-set-auto-endcomments)
3274 (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
3275 of if). Reported by Max Bjurling and
3276 (verilog-calc-1): Fix for clocking block in modport
3277 declaration. Reported by Brian Hunter.
3278
3279 2010-10-24 Wilson Snyder <wsnyder@wsnyder.org>
3280
3281 * verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
3282 (verilog-gate-keywords, verilog-read-sub-decls)
3283 (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
3284 (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
3285 AUTOINST for gate primitives, bug284. Reported by Mark Johnson.
3286 (verilog-read-decls): Fix spaces in V2K module parameters causing
3287 mis-identification as interfaces, bug287.
3288 (verilog-read-decls): Fix not treating "parameter string" as a
3289 parameter in AUTOINSTPARAM.
3290 (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
3291 treating `elsif similar to `endif inside AUTOSENSE.
3292 (verilog-do-indent): Implement correct automatic or static task or
3293 function end comment highlight. Reported by Steve Pearlmutter.
3294 (verilog-font-lock-keywords-2): Fix highlighting of single
3295 character pins, bug264. Reported by Michael Laajanen.
3296 (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
3297 (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
3298 (verilog-subdecls-get-interfaced, verilog-subdecls-new):
3299 Support interfaces with AUTOINST, bug270. Reported by Luis Gutierrez.
3300 (verilog-pretty-expr): Fix interactive arguments, bug272.
3301 Reported by Mark Johnson.
3302 (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp):
3303 Add 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
3304 bug269. Suggested by Gary Delp.
3305 (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
3306 (verilog-preprocessor, verilog-set-compile-command):
3307 Create verilog-preprocess and verilog-preprocessor to show
3308 preprocessed output.
3309 (verilog-get-beg-of-line, verilog-get-end-of-line)
3310 (verilog-modi-file-or-buffer, verilog-modi-name)
3311 (verilog-modi-point, verilog-within-string): Move defmacro's
3312 before first use to avoid warning. Reported by Steve Pearlmutter.
3313 (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
3314 (verilog-colorize-region, verilog-highlight-buffer)
3315 (verilog-highlight-includes, verilog-highlight-modules)
3316 (verilog-highlight-region, verilog-mode): Rename colorize to
3317 highlight to match other packages. Disable module highlighting,
3318 as received speed complaints, reenable for experimentation only
3319 using new verilog-highlight-modules.
3320 (verilog-read-decls): Fix regexp stack overflow in very large
3321 AUTO_TEMPLATEs, bug250.
3322 (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
3323 (verilog-scan): Create verilog-save-buffer-state to standardize
3324 making insignificant changes that shouldn't call hooks.
3325 (verilog-save-no-change-functions, verilog-save-scan-cache)
3326 (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
3327 Create verilog-save-no-change-functions to wrap verilog-scan
3328 preservation, and fix to work with nested preserved calls.
3329 (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
3330 port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
3331 generate .name with AUTOINST, bug245. Suggested by David Rogoff.
3332 (verilog-submit-bug-report): Update variable list to be complete.
3333 (verilog-auto, verilog-colorize-region): Fix AUTO expansion
3334 breaking on-the-fly font-locking.
3335 (verilog-colorize-buffer, verilog-colorize-include-files)
3336 (verilog-colorize-include-files-buffer, verilog-colorize-region)
3337 (verilog-load-file-at-mouse, verilog-load-file-at-point)
3338 (verilog-mode, verilog-read-inst-module-matcher): With point on a
3339 AUTOINST cell instance name, middle mouse button now finds-file on
3340 it. Suggested by Brad Dobbie.
3341 (verilog-alw-get-temps, verilog-auto-reset)
3342 (verilog-auto-sense-sigs, verilog-read-always-signals)
3343 (verilog-read-always-signals-recurse): Fix loop indexes being
3344 AUTORESET. AUTORESET now assumes any variables in the
3345 initialization section of a for() should be ignored.
3346 Reported by Dan Dever.
3347 (verilog-error-font-lock-keywords)
3348 (verilog-error-regexp-emacs-alist)
3349 (verilog-error-regexp-xemacs-alist): Fix error detection of
3350 Cadence HAL, reported by David Asher. Repair drift between the
3351 three similar error variables.
3352 (verilog-modi-lookup, verilog-modi-lookup-cache)
3353 (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
3354 (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
3355 Fix slow verilog-auto expansion on very large files.
3356 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line):
3357 Fix AUTOOUTPUT treating "1*2" as a signal name in submodule connection
3358 "{1*2{...". Broke in last revision.
3359 (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
3360 submodule connections with replications "{#{a},#{b}}".
3361
3362 2010-10-24 Juanma Barranquero <lekktu@gmail.com>
3363
3364 * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
3365 Fix typo in docstring.
3366
3367 2010-10-24 Kenichi Handa <handa@m17n.org>
3368
3369 * face-remap.el (text-scale-adjust): Call read-event with a proper
3370 prompt.
3371
3372 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
3373
3374 * emacs-lisp/unsafep.el: Don't mark functions that display
3375 messages as safe. Suggested by Johan Bockgård.
3376
3377 2010-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
3378
3379 * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
3380 Turn comments into docstrings.
3381
3382 * minibuffer.el (completion--replace): Move point where it belongs
3383 when there's a common suffix (bug#7215).
3384
3385 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
3386
3387 Merge read-color and facemenu-read-color (Bug#7242).
3388
3389 * faces.el (read-color): Use the completion code from
3390 facemenu-read-color. Require match in completion. Doc fix.
3391
3392 * facemenu.el (facemenu-read-color): Alias for read-color.
3393 (facemenu-set-foreground, facemenu-set-background):
3394 Use read-color.
3395
3396 * frame.el (set-background-color, set-foreground-color)
3397 (set-cursor-color, set-mouse-color, set-border-color):
3398 Use read-color.
3399
3400 2010-10-24 Leo <sdl.web@gmail.com>
3401
3402 * eshell/em-unix.el (eshell-remove-entries): Use the TRASH
3403 argument of delete-file and delete-directory (Bug#7011).
3404
3405 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
3406
3407 * emacs-lisp/package.el (package-menu-mode-map): Inherit from
3408 button-buffer-map.
3409
3410 2010-10-24 Ralf Angeli <angeli@caeruleus.net>
3411
3412 * emacs-lisp/package.el (package--generate-package-list): Make the
3413 *Packages* buffer read-only.
3414
3415 2010-10-24 Alan Mackenzie <acm@muc.de>
3416
3417 * progmodes/cc-fonts.el (c-font-lock-declarations): Cache the
3418 result of `c-beginning-of-decl-1' between invocations of a lambda
3419 function (Bug #7265).
3420
3421 2010-10-24 Daiki Ueno <ueno@unixuser.org>
3422
3423 * epg-config.el (epg-gpg-program): Try to use "gpg2" if "gpg"
3424 executable is not available on the system (Bug#7268).
3425
3426 2010-10-24 Glenn Morris <rgm@gnu.org>
3427
3428 * select.el (selection-coding-system, next-selection-coding-system):
3429 Sync doc with C versions.
3430
3431 * w32-vars.el (x-select-enable-clipboard):
3432 * term/x-win.el (x-select-enable-clipboard): Move to common-win.
3433 * term/common-win.el (x-select-enable-clipboard): Move here.
3434
3435 * term/tty-colors.el (tty-defined-color-alist): Remove duplicate
3436 definition of C variable.
3437
3438 * frame.el (show-trailing-whitespace, auto-hscroll-mode)
3439 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
3440 Don't redefine things that are defined in C.
3441 * cus-start.el: Also handle :risky, :safe, :set, and :tag.
3442 (show-trailing-whitespace, auto-hscroll-mode)
3443 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
3444 Set up the appropriate custom properties.
3445
3446 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
3447
3448 Bind "C-c ]" to ...
3449 * progmodes/f90.el (f90-mode-map): ... f90-insert-end.
3450 * nxml/nxml-mode.el (nxml-mode-map): ... nxml-finish-element.
3451 * textmodes/tex-mode.el (tex-mode-map): ... latex-close-block.
3452 * textmodes/sgml-mode.el (sgml-mode-map): ... sgml-close-tag.
3453
3454 2010-10-23 Glenn Morris <rgm@gnu.org>
3455
3456 * textmodes/flyspell.el (flyspell-mode): If there was an error,
3457 say what it was.
3458
3459 * frame.el (auto-hscroll-mode, cursor-in-non-selected-windows):
3460 Sync docs with C version.
3461
3462 * term/ns-win.el (xw-defined-colors):
3463 * term/x-win.el (xw-defined-colors): Make docs identical to w32-win.
3464
3465 * term/pc-win.el (x-select-enable-clipboard):
3466 * term/x-win.el (x-select-enable-clipboard):
3467 * w32-vars.el (x-select-enable-clipboard): Make doc-strings identical.
3468
3469 * comint.el (comint-password-prompt-regexp): Make it less vague.
3470 Bump version.
3471
3472 * help-fns.el (doc-file-to-man, doc-file-to-info): New commands.
3473
3474 * help.el (finder-by-keyword): Remove unnecessary autoload.
3475
3476 2010-10-22 Glenn Morris <rgm@gnu.org>
3477
3478 * loadup.el: Unconditionally load float-sup.
3479 * paren.el (show-paren-delay):
3480 * emacs-lisp/float-sup.el:
3481 * emulation/cua-base.el (cua-prefix-override-inhibit-delay):
3482 * obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice)
3483 (lazy-lock-stealth-verbose): Assume float support.
3484 * ps-print.el: Assume float support on Emacs.
3485 * emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
3486 Remove non-float branch.
3487
3488 * emacs-lisp/autoload.el (batch-update-autoloads): Update for
3489 src/Makefile no longer being pre-processed.
3490
3491 2010-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
3492
3493 * emacs-lisp/find-func.el (find-library): Use test-completion.
3494
3495 2010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3496
3497 * newcomment.el (comment-dwim): Fix the intentation in the doc string.
3498
3499 2010-10-21 Michael Albinus <michael.albinus@gmx.de>
3500
3501 * net/tramp-sh.el (tramp-do-file-attributes-with-stat): Do not use
3502 space in stat format string.
3503 (tramp-send-command): Unset $PS1 when using here documents, in
3504 order not to get several prompts.
3505 (tramp-get-inline-coding): Return `nil' in case of errors.
3506
3507 2010-10-21 Daiki Ueno <ueno@unixuser.org>
3508
3509 * hexl.el (hexl-mode, hexl-mode-exit):
3510 Tweak revert-buffer-function to inhibit auto-mode-alist (Bug#7252).
3511 (hexl-revert-buffer-function): New function.
3512 (hexl-before-revert-hook, hexl-after-revert-hook): Abolish.
3513
3514 2010-10-19 Alan Mackenzie <acm@muc.de>
3515
3516 * progmodes/cc-langs.el (c-type-decl-prefix-key): C++ bit:
3517 Move "\(const\|throw\|volatile\)\>" nearer the start of the regexp, so
3518 that these keywords aren't wrongly matched as identifiers.
3519
3520 * progmodes/cc-mode.el (c-before-change, c-after-change): Move the
3521 setting of c-new-BEG and c-new-END from c-before-change to
3522 c-after-change. (Bug#7181)
3523
3524 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
3525
3526 * cus-face.el (custom-theme-set-faces): Revert 2010-10-18 change.
3527 Don't mark as safe.
3528
3529 * custom.el (custom-theme-set-variables): Likewise.
3530 (load-theme): Add custom-theme-set-faces and
3531 custom-theme-set-variables to safe-functions while loading.
3532 (custom-enabled-themes): Mark as risky.
3533
3534 2010-10-18 Julien Danjou <julien@danjou.info>
3535
3536 * bindings.el: Remove end dashes in default mode-line-format.
3537
3538 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
3539
3540 * bindings.el (global-map): Bind C-d to delete-char and deletechar
3541 to delete-forward-char.
3542
3543 * simple.el (normal-erase-is-backspace-mode): Remap delete to
3544 deletechar, and hence delete-forward-char.
3545
3546 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3547
3548 * repeat.el (repeat): Use read-key (bug#6256).
3549
3550 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
3551
3552 * emacs-lisp/unsafep.el: Don't mark functions that display
3553 messages as safe. Suggested by Johan Bockgård.
3554
3555 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3556
3557 * minibuffer.el (completion--replace): Move point where it belongs
3558 when there's a common suffix (bug#7215).
3559
3560 2010-10-19 Kenichi Handa <handa@m17n.org>
3561
3562 * international/characters.el: Add category '|' (word breakable)
3563 to fullwidth characters.
3564
3565 2010-10-19 Michael Albinus <michael.albinus@gmx.de>
3566
3567 * net/tramp-sh.el (tramp-do-file-attributes-with-stat)
3568 (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
3569 order to make stat results a float. Patch by Andreas Schwab
3570 <schwab@linux-m68k.org>.
3571
3572 2010-10-18 Julien Danjou <julien@danjou.info>
3573
3574 * avoid.el (mouse-avoidance-ignore-p): Ignore mouse when it is
3575 hidden by `make-pointer-invisible'.
3576
3577 2010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
3578
3579 * files.el (locate-file-completion-table): Strip non-matching elements
3580 before checking length of list (bug#7238).
3581
3582 2010-10-18 Chong Yidong <cyd@stupidchicken.com>
3583
3584 * custom.el (custom-theme-set-variables): Mark as a safe function.
3585 (load-theme): Check forms using unsafep.
3586
3587 * cus-face.el (custom-theme-set-faces): Mark as a safe function.
3588
3589 2010-10-17 Agustín Martín <agustin.martin@hispalinux.es>
3590
3591 * textmodes/ispell.el (ispell-aspell-find-dictionary):
3592 Fix aspell data file searching (bug#7230).
3593
3594 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
3595
3596 * cus-theme.el (custom-theme--migrate-settings): New var.
3597 (customize-create-theme): Allow editing the `user' theme.
3598 (custom-theme-add-variable, custom-theme-add-var-1)
3599 (custom-theme-add-face, custom-theme-add-face-1): Add a checkbox
3600 to the front of each variable or face widget.
3601 (custom-theme-write): Save theme settings in the correct order.
3602 Optionally, remove saved settings from user customizations.
3603 (custom-theme-write-variables, custom-theme-write-faces):
3604 Save only the checked widgets.
3605 (customize-themes): Add a link for migrating custom settings.
3606
3607 * custom.el (custom-declare-theme, provide-theme):
3608 Use custom-theme-name-valid-p.
3609 (custom-theme-name-valid-p): Remove checks that are now
3610 unnecessary since themes no longer obey load-path.
3611
3612 * cus-edit.el (custom-variable-value-create): For the simple
3613 style, hide documentation string when hidden.
3614
3615 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
3616
3617 * cus-edit.el (custom-variable, custom-face): Combine the
3618 :inhibit-magic and :display-style properties into a single
3619 :custom-style property.
3620 (custom-toggle-hide-variable, custom-toggle-hide-face):
3621 New functions. If hiding an edited value, save it to :shown-value.
3622 (custom-variable-value-create, custom-face-value-create): Use them.
3623 (custom-magic-reset): Allow magic property to be unset.
3624
3625 * custom.el: Custom themes no longer use load-path.
3626 (custom-theme-load-path): New option. Change built-in theme
3627 directory to etc/.
3628 (custom-enabled-themes): Add custom-theme-load-path dependency.
3629 (custom-theme--load-path): New function.
3630 (load-theme, custom-available-themes): Use it.
3631
3632 * cus-theme.el (describe-theme-1): Use custom-theme--load-path.
3633 (customize-themes): Link to custom-theme-load-path variable.
3634 (custom-theme-add-var-1, custom-theme-add-face-1): Use the
3635 :custom-style property.
3636
3637 * themes/*.el: Moved to etc/.
3638
3639 2010-10-16 Ralf Angeli <angeli@caeruleus.net>
3640
3641 * textmodes/reftex-cite.el
3642 (reftex-extract-bib-entries-from-thebibliography): Do not move
3643 point when searching for \bibitem entries. Match entries with
3644 spaces or tabs in front of arguments.
3645
3646 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
3647
3648 * cus-theme.el (customize-create-theme): Delete overlays after
3649 erasing. If given a THEME arg, display only the faces of that arg
3650 instead of custom-theme--listed-faces.
3651 (custom-theme-variable-menu, custom-theme-variable-action)
3652 (custom-variable-reset-theme, custom-theme-delete-variable): Delete.
3653 (custom-theme-add-variable, custom-theme-add-face): Apply value
3654 from the theme settings, instead of the current value.
3655 (custom-theme-add-var-1, custom-theme-add-face-1): New functions.
3656 (custom-theme-visit-theme): Allow calling outside theme buffers.
3657 (custom-theme-merge-theme): Don't enable the theme when merging.
3658 (custom-theme-write-variables, custom-theme-write-faces): Use the
3659 :shown-value properties to save buffer values, not global ones.
3660 (customize-themes): Display a warning about user customizations.
3661
3662 * cus-edit.el (custom-variable-value-create)
3663 (custom-face-value-create): Obey new special properties
3664 :shown-value and :inhibit-magic.
3665
3666 2010-10-15 Michael Albinus <michael.albinus@gmx.de>
3667
3668 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
3669 Suppress expansion of tabs to spaces. Reported by Dale Sedivec
3670 <dale@codefu.org>.
3671
3672 2010-10-14 Kenichi Handa <handa@m17n.org>
3673
3674 * mail/rmail.el (rmail-show-message-1): Catch an error of
3675 base64-decode-region and just show an error message (bug#7165).
3676
3677 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used anymore.
3678 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
3679 a font-spec (bug#7197).
3680
3681 2010-10-14 Glenn Morris <rgm@gnu.org>
3682
3683 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
3684
3685 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
3686
3687 * international/mule.el (define-coding-system):
3688 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
3689 * composite.el (compose-region): Fix typo in docstring.
3690
3691 2010-10-14 Chong Yidong <cyd@stupidchicken.com>
3692
3693 * cus-face.el (custom-theme-set-faces): Call custom-push-theme
3694 only after checking the theme-face property.
3695
3696 * faces.el (face-spec-reset-face): Reset all attributes in one
3697 single call to set-face-attribute.
3698 (face-spec-match-p): Make it a defsubst.
3699 (frame-set-background-mode): New arg KEEP-FACE-SPECS.
3700 (x-create-frame-with-faces, tty-create-frame-with-faces)
3701 (tty-set-up-initial-frame-faces): Don't recompute face specs in
3702 frame-set-background-mode, since they are recomputed immediately
3703 afterwards in face-set-after-frame-default.
3704 (face-set-after-frame-default): Minor optimization.
3705 (cursor): Provide non-trivial defface spec.
3706
3707 * custom.el (custom-theme-recalc-face): Simplify.
3708
3709 2010-10-14 Jay Belanger <jay.p.belanger@gmail.com>
3710
3711 * calc/calc-alg.el (math-var): Rename from `var'.
3712 (math-is-polynomial, math-is-poly-rec): Replace `var'
3713 with `math-var'.
3714
3715 * calc/calcalg2.el (math-var): Rename from `var'.
3716 (calcFunc-table, math-scan-for-limits): Replace `var'
3717 with `math-var'.
3718
3719 2010-10-13 Glenn Morris <rgm@gnu.org>
3720
3721 * subr.el (last): Deal with dotted lists (reported in bug#7174).
3722
3723 2010-10-13 Stephen Berman <stephen.berman@gmx.net>
3724
3725 * subr.el (last): Use `safe-length' instead of `length' (bug#7206).
3726
3727 2010-10-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3728
3729 * net/tls.el (tls-program): Remove spurious %s from openssl.
3730 (tls-starttls-switches): Remove starttls hack.
3731 (open-tls-stream): Ditto.
3732 (tls-find-starttls-argument): Ditto.
3733
3734 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
3735
3736 * image.el (image-library-alist): Declare as obsolete alias.
3737 (image-type-available-p): Use `dynamic-library-alist'.
3738
3739 * term/w32-win.el (dynamic-library-alist):
3740 Use instead of `image-library-alist'.
3741
3742 2010-10-13 IRIE Shinsuke <irieshinsuke@yahoo.co.jp> (tiny change)
3743
3744 * subr.el (last): Make it faster. (Bug#7174)
3745
3746 2010-10-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
3747
3748 * Makefile.in (compile-clean): Use `` instead of $(). (Bug#7178)
3749
3750 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
3751
3752 * cus-theme.el (custom-theme--listed-faces): Add cursor face.
3753 (describe-theme-1): Extract doc from unloaded themes.
3754
3755 * custom.el (custom-theme-name-valid-p): Don't list color-themes.
3756
3757 * themes/tango-theme.el:
3758 * themes/tango-dark-theme.el:
3759 * themes/wheatgrass-theme.el: New files.
3760
3761 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
3762
3763 * cus-theme.el (describe-theme, customize-themes)
3764 (custom-theme-save): New commands.
3765 (custom-new-theme-mode-map): Bind C-x C-s.
3766 (custom-new-theme-mode): Use custom--initialize-widget-variables.
3767 (customize-create-theme): New optional arg THEME.
3768 (custom-theme-revert): Use it.
3769 (custom-theme-visit-theme): Remove dead code.
3770 (custom-theme-merge-theme): Use custom-available-themes.
3771 (custom-theme-write): Make interactive.
3772 (custom-theme-write): Use custom-theme-name-valid-p.
3773 (describe-theme-1, custom-theme-choose-revert)
3774 (custom-theme-checkbox-toggle, custom-theme-selections-toggle):
3775 New funs.
3776 (custom-theme-allow-multiple-selections): New option.
3777 (custom-theme-choose-mode): New major mode.
3778
3779 * custom.el (custom-theme-set-variables): Remove dead code.
3780 Obey custom--inhibit-theme-enable.
3781 (custom--inhibit-theme-enable): New var.
3782 (provide-theme): Obey it.
3783 (load-theme): Replace load with manual read/eval, in order to
3784 check for correctness. Use custom-theme-name-valid-p.
3785 (custom-theme-name-valid-p): New function.
3786 (custom-available-themes): Use it.
3787
3788 * cus-edit.el (custom--initialize-widget-variables): New function.
3789 (Custom-mode): Use it.
3790
3791 * cus-face.el (custom-theme-set-faces): Remove dead code.
3792 Obey custom--inhibit-theme-enable.
3793
3794 * help-mode.el (help-theme-def, help-theme-edit): New buttons.
3795
3796 2010-10-12 Juanma Barranquero <lekktu@gmail.com>
3797
3798 * net/telnet.el (telnet-mode-map): Fix previous change (bug#7193).
3799
3800 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
3801
3802 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
3803 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
3804 (mac-right-option-modifier): New alias for ns-right-option-modifier.
3805
3806 * cus-start.el (all): ns-right-alternate-modifier is new.
3807
3808 2010-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
3809
3810 * emacs-lisp/lisp.el (lisp-completion-at-point):
3811 Use emacs-lisp-mode-syntax-table for the whole function.
3812
3813 2010-10-12 David Koppelman <koppel@ece.lsu.edu>
3814
3815 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
3816 instead of font-lock-mode before adding keywords.
3817 Remove hi-lock-mode off code. Remove inhibit hack.
3818 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
3819 non-nil; removed hook inhibit hack.
3820
3821 2010-10-12 Glenn Morris <rgm@gnu.org>
3822
3823 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
3824 (load-path-shadows-find): ... to this.
3825 (list-load-path-shadows): Update for above change.
3826
3827 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
3828
3829 2010-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
3830
3831 * mail/hashcash.el, net/imap.el, pgg-parse.el, pgg.el:
3832 Fix comment for declare-function.
3833
3834 2010-10-11 Chong Yidong <cyd@stupidchicken.com>
3835
3836 * custom.el (custom-fix-face-spec): New function; code moved from
3837 custom-face-edit-fix-value.
3838 (custom-push-theme): Use it when checking if a face has been
3839 changed outside customize.
3840 (custom-available-themes): New function.
3841 (load-theme): Use it.
3842
3843 * cus-edit.el (custom-face-edit-fix-value): Use custom-fix-face-spec.
3844
3845 * custom.el (custom-push-theme): Cleanup (use cond).
3846 (disable-theme): Recompute the saved-face property.
3847 (custom-theme-recalc-face): Follow face alias before setting prop.
3848
3849 * image.el (image-checkbox-checked, image-checkbox-unchecked):
3850 New variables, containing checkbox images.
3851
3852 * startup.el (fancy-startup-tail):
3853 * wid-edit.el (checkbox): Use them.
3854
3855 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
3856
3857 * shell.el (shell-mode-map):
3858 * progmodes/modula2.el (m2-mode-map):
3859 * progmodes/inf-lisp.el (inferior-lisp-mode-map):
3860 * play/mpuz.el (mpuz-mode-map):
3861 * play/landmark.el (lm-mode-map):
3862 * play/decipher.el (decipher-mode-map):
3863 * play/5x5.el (5x5-mode-map):
3864 * net/telnet.el (telnet-mode-map):
3865 * net/quickurl.el (quickurl-list-mode-map):
3866 * net/mairix.el (mairix-searches-mode-map):
3867 * net/eudc-hotlist.el (eudc-hotlist-mode-map):
3868 * net/dig.el (dig-mode-map):
3869 * mail/mspools.el (mspools-mode-map):
3870 * hexl.el (hexl-mode-map):
3871 * emulation/ws-mode.el (wordstar-C-k-map, wordstar-mode-map)
3872 (wordstar-C-o-map, wordstar-C-q-map):
3873 * emacs-lisp/edebug.el (edebug-eval-mode-map):
3874 * emacs-lisp/chart.el (chart-map):
3875 * edmacro.el (edmacro-mode-map):
3876 * erc/erc-list.el (erc-list-menu-mode-map):
3877 * array.el (array-mode-map): Declare and define in one step.
3878
3879 * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
3880
3881 2010-10-10 Daiki Ueno <ueno@unixuser.org>
3882
3883 * epa.el (epa-passphrase-callback-function): Display filename
3884 passed as the 3rd arg.
3885 * epa-file.el (epa-file-passphrase-callback-function):
3886 Pass filename to epa-passphrase-callback-function.
3887
3888 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
3889
3890 * cus-edit.el (custom-face-widget-to-spec)
3891 (custom-face-get-current-spec, custom-face-state): New functions.
3892 (custom-face-set, custom-face-mark-to-save)
3893 (custom-face-value-create, custom-face-state-set): Use them.
3894
3895 * cus-theme.el (custom-theme--listed-faces): New var.
3896 (customize-create-theme): Use *Custom Theme* as the buffer name.
3897 Set revert-buffer-function. Optional arg BUFFER. Insert all
3898 faces listed in custom-theme--listed-faces.
3899 (custom-theme-revert): New function.
3900 (custom-theme-add-variable, custom-theme-add-face): Insert at the
3901 bottom of the list.
3902 (custom-theme-write): Prompt for theme name if empty.
3903 (custom-theme-write-variables): Use dolist.
3904 (custom-theme-write-faces): Handle hidden (collapsed) widgets.
3905
3906 2010-10-09 Alan Mackenzie <acm@muc.de>
3907
3908 Enhance fontification of declarators to take account of the
3909 presence/absence of "typedef".
3910
3911 * cc-engine.el (c-forward-type): New &optional param
3912 "brace-block-too".
3913 (c-forward-decl-or-cast-1): cdr of return value now indicates the
3914 presence of either or both of a "struct"-like keyword and "typedef".
3915
3916 * cc-fonts.el (c-complex-decl-matchers): Remove the heuristic
3917 fontification of declarators which follow a "}".
3918 (c-font-lock-declarations): Fontify declarators according to the
3919 presence/absence of "typedef".
3920
3921 * cc-langs.el (c-typedef-kwds c-typedef-key): New lang variable
3922 for "typedef".
3923 (c-typedef-decl-key): New lang variable built from
3924 c-typedef-decl-kwds.
3925
3926 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
3927
3928 * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
3929 since that's too annoying. Move the filter groups commands to
3930 TAB/backtab.
3931
3932 * epa.el (epa-passphrase-callback-function): Say what we're
3933 querying the password for.
3934
3935 * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
3936 behaviour, don't bury the ibuffer buffer when visiting other buffers.
3937
3938 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
3939
3940 * cus-edit.el (custom-commands, custom-buffer-create-internal)
3941 (custom-magic-value-create): Pad button tags with spaces.
3942 (custom-face-edit): New variable.
3943 (custom-face-value-create): Determine whether to use the usual
3944 face editor here, instead of using custom-face-selected.
3945 Pass face defaults to custom-face-edit widget.
3946 (custom-face-selected, custom-display-unselected): Delete widgets.
3947 (custom-display-unselected-match): Function removed.
3948 (custom-face-set, custom-face-mark-to-save):
3949 Accept custom-face-edit widgets as the direct widget child.
3950
3951 * wid-edit.el (widget--completing-widget): New var.
3952 (widget-default-complete): Bind it when doing completion.
3953 (widget-string-complete, widget-file-complete): Use it.
3954
3955 2010-10-09 Glenn Morris <rgm@gnu.org>
3956
3957 * calendar/cal-hebrew.el (holiday-hebrew-rosh-hashanah)
3958 (holiday-hebrew-passover, holiday-hebrew-tisha-b-av)
3959 (holiday-hebrew-misc): Small simplifications.
3960
3961 * emacs-lisp/authors.el (authors-valid-file-names): Add b2m.c.
3962
3963 * net/browse-url.el: Don't require thingatpt, term, dired,
3964 executable, or w3-auto when compiling.
3965 (dired-get-filename, term-char-mode, term-send-down, term-send-string):
3966 Declare.
3967 (browse-url-text-emacs): Require term.
3968
3969 2010-10-08 Andreas Schwab <schwab@linux-m68k.org>
3970
3971 * net/browse-url.el (browse-url-xdg-open): Remove use of /bin/sh.
3972
3973 2010-10-08 Glenn Morris <rgm@gnu.org>
3974
3975 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
3976
3977 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
3978 (shadows-compare-text-p): Make it an obsolete alias for...
3979 (load-path-shadows-compare-text): ... new name.
3980 (find-emacs-lisp-shadows): Update for above name change.
3981 (load-path-shadows-same-file-or-nonexistent): New name for the old
3982 shadow-same-file-or-nonexistent.
3983
3984 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
3985
3986 * minibuffer.el (completion--some, completion--do-completion)
3987 (minibuffer-complete-and-exit, minibuffer-completion-help)
3988 (completion-basic-try-completion)
3989 (completion-basic-all-completions)
3990 (completion-pcm--find-all-completions): Use lexical-let to
3991 avoid some false matches in variable completion (Bug#7056)
3992
3993 2010-10-08 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
3994
3995 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
3996
3997 2010-10-08 Leo <sdl.web@gmail.com>
3998
3999 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
4000 return non-nil if the file exists (Bug#7090).
4001
4002 2010-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
4003
4004 * minibuffer.el (completion--replace):
4005 Better preserve markers (bug#7138).
4006
4007 2010-10-08 Juanma Barranquero <lekktu@gmail.com>
4008
4009 * server.el (server-process-filter): Doc fix.
4010
4011 2010-10-08 Drew Adams <drew.adams@oracle.com>
4012
4013 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
4014
4015 2010-10-08 Glenn Morris <rgm@gnu.org>
4016
4017 * vc/ediff-wind.el (ediff-setup-control-frame):
4018 * vc/ediff-ptch.el (ediff-default-backup-extension):
4019 * vc/ediff-diff.el (ediff-shell, ediff-diff-options)
4020 (ediff-exec-process): Remove system-types emx, windows-95.
4021
4022 * net/browse-url.el (browse-url-xdg-open): Shell-quote url. (Bug#7166)
4023
4024 2010-10-07 Chong Yidong <cyd@stupidchicken.com>
4025
4026 * cus-edit.el (custom-variable, custom-face): Doc fix.
4027 (custom-face-edit): Add value-create attribute.
4028 (custom-face-edit-value-create)
4029 (custom-face-edit-value-visibility-action): New functions.
4030 Hide unused face attributes by default, and add a visibility toggle.
4031 (custom-face-edit-deactivate): Show empty values with shadow face.
4032 (custom-face-selected): Only use this for face specs with default
4033 attributes.
4034 (custom-face-value-create): Cleanup.
4035
4036 * wid-edit.el (widget-checklist-value-create): Use dolist.
4037 (widget-checklist-match-find): Make second arg optional.
4038
4039 2010-10-07 Glenn Morris <rgm@gnu.org>
4040
4041 * hilit-chg.el (hilit-chg-get-diff-info, hilit-chg-get-diff-list-hk):
4042 Prefix things.
4043
4044 * emacs-lisp/shadow.el (shadow-font-lock-keywords)
4045 (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to
4046 load-path-shadows-mode, update references.
4047 (load-path-shadows-font-lock-keywords, load-path-shadows-find-file):
4048 Rename variable and button.
4049 (list-load-path-shadows): Update button caller.
4050
4051 2010-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
4052
4053 * emacs-lisp/smie.el (smie-bnf-classify): New function.
4054 (smie-bnf-precedence-table): Use it to remember the closers/openers.
4055 (smie-merge-prec2s): Handle those new entries.
4056 (smie-prec2-levels): Only set precedence to nil for actual
4057 openers/closers.
4058 * progmodes/octave-mod.el (octave-smie-op-levels): Remove dummy entry
4059 that is now unnecessary.
4060
4061 2010-10-07 Miles Bader <miles@gnu.org>
4062
4063 * emacs-lisp/regexp-opt.el (regexp-opt): Add `symbols' mode.
4064
4065 2010-10-07 Glenn Morris <rgm@gnu.org>
4066
4067 * mail/rmail.el (mail-sendmail-delimit-header, mail-header-end)
4068 (mail-position-on-field): Remove declarations.
4069 (mail-position-on-field): Autoload it.
4070 (rmail-retry-failure): Replace use of mail-sendmail-delimit-header
4071 and mail-header-end. Don't require sendmail.
4072
4073 * emacs-lisp/shadow.el (shadow-font-lock-keywords): New variable.
4074 (shadow-mode): New mode.
4075 (shadow-find-file): New button.
4076 (list-load-path-shadows): Use shadow-mode and buttons.
4077
4078 * iimage.el (iimage-version): Remove.
4079 (iimage-mode-image-search-path, iimage-mode-image-regex-alist):
4080 Turn into defcustoms.
4081 (iimage-mode-map): Give it a doc string.
4082
4083 * calendar/appt.el (appt-activate): Give a warning rather than an error
4084 if there is no diary-file.
4085
4086 2010-10-06 Michael Albinus <michael.albinus@gmx.de>
4087
4088 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
4089 Use `tramp-handle-find-backup-file-name'.
4090
4091 2010-10-06 Glenn Morris <rgm@gnu.org>
4092
4093 * font-core.el (font-lock-defaults-alist): Remove variable.
4094 (font-lock-mode): Doc fix.
4095 (font-lock-default-function): Do not consult font-lock-defaults-alist.
4096 * font-lock.el (font-lock-refresh-defaults): Doc fix.
4097 (font-lock-set-defaults): Doc fix.
4098 Do not consult font-lock-defaults-alist.
4099
4100 * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
4101
4102 * emacs-lisp/cl.el: No longer provide cl-19.
4103
4104 2010-10-05 Michael Albinus <michael.albinus@gmx.de>
4105
4106 * net/tramp.el (tramp-handle-directory-files-and-attributes)
4107 (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p):
4108 New defuns, taken from tramp-smb.el.
4109 (tramp-coding-system-change-eol-conversion)
4110 (tramp-set-process-query-on-exit-flag): Remove.
4111
4112 * net/tramp-compat.el (top): Do not check for byte-compiler objects.
4113 (tramp-compat-coding-system-change-eol-conversion)
4114 (tramp-compat-set-process-query-on-exit-flag): New defuns, taken
4115 from tramp.el.
4116
4117 * net/tramp-gvfs.el:
4118 * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag'
4119 by `tramp-compat-set-process-query-on-exit-flag'.
4120
4121 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
4122 Use `tramp-handle-directory-files-and-attributes',
4123 `tramp-handle-file-exists-p' and
4124 `tramp-handle-file-newer-than-file-p'.
4125 (tramp-imap-handle-file-exists-p)
4126 (tramp-imap-handle-file-executable-p)
4127 (tramp-imap-handle-file-readable-p)
4128 (tramp-imap-handle-directory-files-and-attributes)
4129 (tramp-imap-handle-file-newer-than-file-p): Remove.
4130
4131 * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag'
4132 by `tramp-compat-set-process-query-on-exit-flag' and
4133 `tramp-coding-system-change-eol-conversion' by
4134 `tramp-compat-coding-system-change-eol-conversion'.
4135
4136 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
4137 Use `tramp-handle-directory-files-and-attributes',
4138 `tramp-handle-file-exists-p' and
4139 `tramp-handle-file-newer-than-file-p'.
4140 (tramp-smb-handle-directory-files-and-attributes)
4141 (tramp-smb-handle-file-exists-p)
4142 (tramp-smb-handle-file-newer-than-file-p): Remove.
4143 (tramp-smb-maybe-open-connection):
4144 Replace `tramp-set-process-query-on-exit-flag' by
4145 `tramp-compat-set-process-query-on-exit-flag'.
4146
4147 2010-10-05 Glenn Morris <rgm@gnu.org>
4148
4149 * obsolete/rnews.el, obsolete/rnewspost.el: Remove files.
4150
4151 2010-10-04 Michael Albinus <michael.albinus@gmx.de>
4152
4153 Continue reorganization of load dependencies. (Bug#7156)
4154
4155 * net/tramp.el (tramp-handle-file-local-copy-hook)
4156 (tramp-delete-temp-file-function): Move down.
4157 (tramp-exists-file-name-handler): Move up.
4158 (tramp-register-file-name-handlers): Simplify autoload.
4159 (tramp-handle-write-region-hook, tramp-handle-directory-file-name)
4160 (tramp-handle-directory-files, tramp-handle-dired-uncache)
4161 (tramp-handle-file-modes, tramp-handle-file-name-as-directory)
4162 (tramp-handle-file-name-completion)
4163 (tramp-handle-file-name-directory)
4164 (tramp-handle-file-name-nondirectory, tramp-handle-file-regular-p)
4165 (tramp-handle-file-remote-p, tramp-handle-file-symlink-p)
4166 (tramp-handle-find-backup-file-name)
4167 (tramp-handle-insert-file-contents, tramp-handle-load)
4168 (tramp-handle-substitute-in-file-name)
4169 (tramp-handle-unhandled-file-name-directory)
4170 (tramp-mode-string-to-int, tramp-local-host-p)
4171 (tramp-make-tramp-temp-file): Move from tramp-sh.el.
4172
4173 * net/tramp-gvfs.el (top):
4174 * net/tramp-smb.el (top): Do not require 'tramp-sh.
4175
4176 * net/tramp-sh.el (all): Move several objects to tramp.el, see
4177 there. Rename `tramp-handle-*' to `tramp-sh-handle-*'.
4178
4179 2010-10-04 Glenn Morris <rgm@gnu.org>
4180
4181 * calendar/appt.el (appt-add): Ensure reminders are enabled.
4182 (appt-activate): Give status messages.
4183
4184 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
4185
4186 * net/gnutls.el: Improve docs. Remove starttls and ssl emulation.
4187 Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
4188 `gnutls-negotiate' (formerly `starttls-negotiate').
4189 Remove trivial wrapper `starttls-open-stream'.
4190
4191 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
4192
4193 Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
4194 log-outgoing commands.
4195 * vc/vc.el (vc-log-internal-common): Add a new argument and use it
4196 to create a buffer local revert-buffer-function variable.
4197 (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
4198 revert-buffer-function lambda.
4199
4200 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
4201
4202 * net/gnutls.el (starttls-negotiate): Use the plist interface to
4203 `gnutls-boot'. Make TYPE the only required parameter.
4204 Allow TRUSTFILES and KEYFILES to be lists.
4205 (open-ssl-stream): Use it.
4206
4207 2010-10-03 Glenn Morris <rgm@gnu.org>
4208
4209 * subr.el (directory-sep-char): Remove obsolete variable.
4210 * net/tramp-compat.el: Don't mess about with the byte-compiler unless
4211 it is "necessary".
4212
4213 * vc/vc-hooks.el (vc-header-alist): Remove obsolete variable.
4214 * vc/vc.el (vc-static-header-alist): Doc fix.
4215 * vc/vc-cvs.el (vc-cvs-header):
4216 * vc/vc-rcs.el (vc-rcs-header):
4217 * vc/vc-sccs.el (vc-sccs-header):
4218 * vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist.
4219 * obsolete/vc-mcvs.el (vc-mcvs-header):
4220 * progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist
4221 on XEmacs.
4222
4223 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
4224
4225 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
4226 Remove obsolete use of binary-overwrite-mode (Bug#7001).
4227
4228 2010-10-03 Glenn Morris <rgm@gnu.org>
4229
4230 * obsolete/x-menu.el: Remove file, obsolete since 21.1
4231
4232 * textmodes/rst.el (rst-font-lock-keywords-function):
4233 Drop Emacs 20 code.
4234
4235 * textmodes/artist.el (artist-replace-char): Drop Emacs 20 code.
4236
4237 * printing.el: Drop Emacs 20 code.
4238
4239 * calendar/appt.el (appt-delete): Don't autoload it (you can't use it
4240 without having used appt.el already).
4241
4242 * subr.el (make-local-hook): Remove function obsolete since 21.1.
4243 * progmodes/cc-mode.el (make-local-hook): Don't do cc-bytecomp stuff.
4244 (c-basic-common-init, c-font-lock-init): Only call make-local-hook on
4245 XEmacs.
4246 * progmodes/cc-styles.el (make-local-hook): Don't do cc-bytecomp stuff.
4247 (c-make-styles-buffer-local): Only call make-local-hook on XEmacs.
4248
4249 * ps-def.el (leading-code-private-22, charset-bytes, charset-id)
4250 (charset-width, find-charset-region, chars-in-region, forward-point)
4251 (encode-coding-string, coding-system-p, ccl-execute-on-string)
4252 (define-ccl-program, multibyte-string-p, string-make-multibyte):
4253 Remove compatibility cruft (none of these are used by ps*.el).
4254
4255 2010-10-03 Kevin Rodgers <kevin.d.rodgers@gmail.com>
4256
4257 * subr.el (booleanp): Return t instead of a list (Bug#7086).
4258
4259 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
4260
4261 * server.el (server-process-filter, server-return-error):
4262 Give emacsclient time to shut down after receiving an error string.
4263
4264 2010-10-02 Michael Albinus <michael.albinus@gmx.de>
4265
4266 * files.el (remote-file-name-inhibit-cache): New defcustom.
4267
4268 * time.el (display-time-file-nonempty-p):
4269 Use `remote-file-name-inhibit-cache'.
4270
4271 * net/tramp.el (tramp-completion-reread-directory-timeout):
4272 Fix docstring.
4273
4274 * net/tramp-cache.el (tramp-cache-inhibit-cache): Remove.
4275 (tramp-get-file-property): Replace `tramp-cache-inhibit-cache' by
4276 `remote-file-name-inhibit-cache'. Check also for an integer
4277 value. Add/increase counter when `tramp-verbose' >= 10.
4278 (tramp-set-file-property): Add/increase counter when
4279 `tramp-verbose' >= 10.
4280
4281 * net/tramp-cmds.el (tramp-cleanup-all-connections)
4282 (tramp-cleanup-all-buffers): Set tramp-autoload cookie.
4283 (tramp-bug): Set tramp-autoload cookie. Report all interned
4284 tramp-* variables. Report also `remote-file-name-inhibit-cache'.
4285 (tramp-reporter-dump-variable): Fix docstring. Mask non-7bit
4286 characters only in strings.
4287
4288 * net/tramp-compat.el (remote-file-name-inhibit-cache): Define due
4289 to backward compatibility.
4290
4291 * net/tramp-sh.el (tramp-handle-verify-visited-file-modtime)
4292 (tramp-handle-file-name-all-completions)
4293 (tramp-handle-vc-registered): Use `remote-file-name-inhibit-cache'.
4294 (tramp-open-connection-setup-interactive-shell):
4295 Call `tramp-cleanup-connection' directly.
4296
4297 2010-10-02 Glenn Morris <rgm@gnu.org>
4298
4299 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
4300
4301 * subr.el (char-bytes): Remove obsolete function.
4302
4303 * isearch.el (isearch-return-char): Remove obsolete function.
4304
4305 * mouse.el: No longer provide mldrag.
4306 (mldrag-drag-mode-line, mldrag-drag-vertical-line):
4307 Remove obsolete aliases.
4308
4309 * comint.el (comint-kill-output): Remove obsolete alias.
4310
4311 * composite.el (decompose-composite-char): Remove obsolete function.
4312 * ps-def.el (decompose-composite-char): Remove unused function.
4313
4314 * iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
4315
4316 * outline.el (outline-visible): Remove obsolete function.
4317
4318 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
4319 * faces.el (internal-find-face, internal-get-face)
4320 (frame-update-faces, frame-update-face-colors)
4321 (x-frob-font-weight, x-frob-font-slant)
4322 (internal-frob-font-weight, internal-frob-font-slant)
4323 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
4324 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
4325 (x-make-font-bold-italic): Remove functions and aliases, obsolete
4326 since Emacs 21.1.
4327 * emulation/viper-util.el (viper-get-face):
4328 * obsolete/lucid.el (find-face, get-face): Use facep.
4329 * vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
4330 Remove unused functions.
4331 * vc/ediff-util.el (ediff-submit-report): Doc fix.
4332
4333 * emacs-lisp/bytecomp.el (byte-compile-file): Use kill-emacs-hook to
4334 delete tempfile if interrupted during compilation.
4335
4336 2010-10-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
4337
4338 * net/tls.el (tls-starttls-switches): Give up on using starttls with
4339 gnutls-cli.
4340 (tls-program): Add --insecure to be consistent with the defaults from
4341 openssl s_client. Now all three commands are insecure.
4342
4343 2010-10-01 Eli Zaretskii <eliz@gnu.org>
4344
4345 * makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
4346 (TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
4347 (TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
4348
4349 2010-10-01 Glenn Morris <rgm@gnu.org>
4350
4351 * obsolete/sc.el: Remove file.
4352
4353 * files.el (temporary-file-directory): On darwin, also try
4354 DARWIN_USER_TEMP_DIR (see discussion in bug#7135).
4355
4356 2010-10-01 Juanma Barranquero <lekktu@gmail.com>
4357
4358 * server.el (server-start): Revert part of 2010-09-30T02:53:26Z!lekktu@gmail.com.
4359 Let's not break compatibility gratuitously, shall we?
4360
4361 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4362
4363 * net/tls.el (tls-starttls-switches): New variable.
4364 (tls-find-starttls-argument): Use it.
4365 (open-tls-stream): Ditto.
4366
4367 * net/netrc.el (netrc-credentials): Return the value of the "default"
4368 entry.
4369 (netrc-machine): Ditto.
4370
4371 2010-09-30 Eli Zaretskii <eliz@gnu.org>
4372
4373 * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
4374
4375 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
4376
4377 * server.el (server-start): Don't write pid to the authentication file.
4378 (server-create-tty-frame): Don't send pid.
4379 (server-process-filter): Send pid at the start of every connection.
4380
4381 2010-09-30 Glenn Morris <rgm@gnu.org>
4382
4383 * calendar/diary-lib.el (view-diary-entries, list-diary-entries)
4384 (show-all-diary-entries): Remove obsolete function aliases.
4385
4386 * calendar/appt.el (appt-issue-message, appt-visible, appt-msg-window):
4387 Remove options, obsolete since 22.1.
4388 (appt-display-format, appt-display-message):
4389 Remove backwards-compatibility code.
4390 (appt-check): No longer check appt-issue-message.
4391 (appt-make-list): No longer autoload it. Doc fix. No longer
4392 activate the package.
4393
4394 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
4395
4396 * net/gnutls.el (starttls-negotiate): Loop a lot longer.
4397 (starttls-negotiate): Just call boot, and let the handshake be
4398 triggered from the read loop.
4399
4400 2010-09-29 Glenn Morris <rgm@gnu.org>
4401
4402 * calendar/diary-lib.el (diary-list-entries): Use temp buffers when
4403 not displaying the diary.
4404 (diary-add-to-list): If no buffer-file-name, fall back to diary-file.
4405 * calendar/appt.el (appt-check): No longer need to kill diary.
4406
4407 * calendar/diary-lib.el (diary-list-entries): Move the
4408 "Preparing..." message entirely here.
4409 (diary-simple-display, diary-fancy-display): Move "Preparing..."
4410 messages to diary-list-entries.
4411 (diary-include-other-diary-files): Use LIST-ONLY rather than setting
4412 diary-display-function.
4413
4414 * calendar/diary-lib.el (diary-include-other-diary-files):
4415 Trap some recursive includes.
4416
4417 * calendar/appt.el (appt-activate): Check diary file.
4418
4419 2010-09-29 Katsumi Yamaoka <yamaoka@jpl.org>
4420
4421 * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
4422 construction.
4423
4424 * calendar/time-date.el: No need to require cl for Emacs 21.
4425
4426 2010-09-28 Glenn Morris <rgm@gnu.org>
4427
4428 * calendar/appt.el (appt-check): Minor simplification.
4429
4430 2010-09-28 Katsumi Yamaoka <yamaoka@jpl.org>
4431
4432 * mail/sendmail.el (mail-citation-prefix-regexp): Remove "}" from
4433 citation prefix.
4434
4435 2010-09-27 Andreas Schwab <schwab@linux-m68k.org>
4436
4437 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
4438 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
4439
4440 2010-09-27 Kenichi Handa <handa@m17n.org>
4441
4442 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
4443 "ustar" format.
4444
4445 2010-09-27 Kenichi Handa <handa@m17n.org>
4446
4447 * international/mule.el (define-coding-system): Docstring fixed.
4448
4449 * international/mule-diag.el (describe-character-set): Use princ
4450 with proper print-length and print-level instead of insert.
4451
4452 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
4453
4454 * window.el (walk-windows): Doc fix (bug#7105).
4455
4456 2010-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
4457
4458 * emacs-lisp/float-sup.el (e): Remove.
4459
4460 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
4461
4462 * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom
4463 variable.
4464 (starttls-negotiate): Use it.
4465
4466 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4467
4468 * net/gnutls.el (starttls-negotiate): Stop looping when we get a t
4469 back.
4470
4471 2010-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
4472
4473 * emacs-lisp/pcase.el (pcase-let*, pcase-let): plet -> pcase-let.
4474
4475 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4476
4477 * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function.
4478
4479 * net/netrc.el (netrc-store-data): New function.
4480
4481 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
4482
4483 * net/gnutls.el: GnuTLS glue code to set up a connection.
4484
4485 2010-09-25 Julien Danjou <julien@danjou.info>
4486
4487 * notifications.el: Call dbus-register-signal only if it is bound.
4488
4489 2010-09-25 Glenn Morris <rgm@gnu.org>
4490
4491 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
4492 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
4493 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
4494 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
4495 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
4496 * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
4497 * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
4498 * eshell/esh-util.el, eshell/esh-var.el:
4499 Remove leading `*' from docs of faces and defcustoms.
4500
4501 2010-09-25 Ulrich Mueller <ulm@gentoo.org>
4502
4503 * eshell/em-ls.el (eshell-ls-archive-regexp):
4504 * eshell/esh-util.el (eshell-tar-regexp):
4505 * ibuffer.el (ibuffer-compressed-file-name-regexp):
4506 * info.el (Info-suffix-list):
4507 * international/mule.el (auto-coding-alist):
4508 * woman.el (woman-file-regexp, woman-file-compression-regexp):
4509 * progmodes/etags.el (tags-compression-info-list):
4510 Support xz compression.
4511
4512 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
4513
4514 * files.el (get-free-disk-space): Don't assume the "df" output
4515 columns line up (Bug#6995).
4516
4517 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
4518
4519 * finder.el (finder-unknown-keywords):
4520 * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
4521 * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
4522
4523 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
4524
4525 * server.el (server-start): Revert part of 2010-08-08 change. Using
4526 address 127.0.0.1 for local host is now done in Fmake_network_process.
4527
4528 2010-09-24 Glenn Morris <rgm@gnu.org>
4529
4530 * image-mode.el, progmodes/compile.el, progmodes/gud.el:
4531 * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
4532 * textmodes/css-mode.el, textmodes/dns-mode.el:
4533 Move autoloaded auto-mode-alist entries to files.el.
4534 * files.el (auto-mode-alist): Move entries here.
4535
4536 2010-09-23 Glenn Morris <rgm@gnu.org>
4537
4538 * isearch.el (isearch-lazy-highlight-cleanup)
4539 (isearch-lazy-highlight-initial-delay)
4540 (isearch-lazy-highlight-interval)
4541 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
4542 * net/net-utils.el (ipconfig-program-options):
4543 Move aliases to options before the associated definitions.
4544
4545 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
4546
4547 * newcomment.el (comment-normalize-vars): Better test validity of
4548 comment-end-skip.
4549
4550 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
4551
4552 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
4553 (float-e): New name for `e'.
4554 (degrees-to-radians, radians-to-degrees):
4555 * calendar/solar.el (solar-longitude):
4556 * calculator.el (calculator-registers, calculator-funcall):
4557 * textmodes/artist.el (artist-spray-random-points):
4558 * play/bubbles.el (bubbles--initialize-images): Use new names.
4559
4560 2010-09-23 Eric M. Ludlam <zappo@gnu.org>
4561
4562 Update to CEDET 1.0's version of EIEIO.
4563
4564 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
4565 New function.
4566 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
4567 (eieio-default-eval-maybe): Eval val instead of unquoting only.
4568 (class-precedence-list): If class is nil, return nil.
4569 (eieio-generic-call): If class of first input arg is nil, don't
4570 look up static methods, and do check for primary methods.
4571 (initialize-instance): See if the default needs to be evaluated
4572 during the constructor.
4573 (eieio-perform-slot-validation-for-default): Don't do the check
4574 for values that will eventually be evaluated.
4575 (eieio-eval-default-p): New function.
4576 (eieio-default-eval-maybe): Use it.
4577
4578 2010-09-23 Jan Moringen <jan.moringen@uni-bielefeld.de>
4579
4580 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
4581 method-invocation-order.
4582 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
4583 (eieio-class-precedence-dfs): Compute class precedence list using
4584 dfs algorithm.
4585 (eieio-class-precedence-bfs): Compute class precedence list using
4586 bfs algorithm.
4587 (eieio-class-precedence-c3): Compute class precedence list using
4588 c3 algorithm.
4589 (class-precedence-list): New function.
4590 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
4591 (inconsistent-class-hierarchy): New error symbol.
4592 (call-next-method): Stow the replacement argument list for future
4593 call-next-method invocations.
4594
4595 2010-09-23 Glenn Morris <rgm@gnu.org>
4596
4597 * calendar/appt.el (appt-check): If not displaying the diary,
4598 use (diary 1) to only get the entries we need.
4599 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
4600 that it is in day order. (Bug#7019)
4601
4602 * calendar/appt.el (appt-check): Rather than showing the diary,
4603 just turn off invisible display, and only if needed.
4604
4605 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
4606
4607 2010-09-23 Glenn Morris <rgm@gnu.org>
4608
4609 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
4610 (byte-compile-defvar, byte-compile-cl-warn):
4611 Start warnings with lower-case, like the majority.
4612
4613 * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
4614
4615 * files.el (auto-mode-alist): Prefer C-mode for .xs. (Bug#7071)
4616
4617 * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
4618 * files.el (auto-mode-alist): Move ld-script entries here, further down
4619 the list.
4620
4621 * vc/add-log.el: Don't require timezone when compiling.
4622 (timezone-make-date-sortable): Autoload it.
4623 (change-log-sortable-date-at): Don't require timezone.
4624 Use `ignore-errors'.
4625
4626 * comint.el (comint-use-prompt-regexp-instead-of-fields):
4627 Move alias before definition, so it does not need autoloading.
4628
4629 * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
4630 * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
4631 * international/kkc.el, international/ogonek.el, mail/feedmail.el:
4632 * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
4633 * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
4634 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
4635 * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
4636 * textmodes/tex-mode.el, textmodes/two-column.el:
4637 Remove leading `*' from docs of defcustoms etc.
4638
4639 2010-09-23 Teodor Zlatanov <tzz@lifelogs.com>
4640
4641 * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
4642
4643 2010-09-22 Dan Christensen <jdc@uwo.ca>
4644
4645 * calendar/time-date.el (date-to-time): Try using parse-time-string
4646 first before using the slower timezone-make-date-arpa-standard.
4647
4648 2010-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
4649
4650 * calendar/time-date.el (format-seconds): Comment fix.
4651
4652 2010-09-22 Glenn Morris <rgm@gnu.org>
4653
4654 * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
4655 is not automatically buffer-local.
4656
4657 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
4658
4659 * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
4660 (smie-indent-comment): Be more careful with comment-start-skip.
4661 (smie-indent-comment-close, smie-indent-comment-inside): New funs.
4662 (smie-indent-functions): Use them.
4663
4664 2010-09-21 Michael Albinus <michael.albinus@gmx.de>
4665
4666 * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
4667
4668 2010-09-21 Jan Djärv <jan.h.d@swipnet.se>
4669
4670 * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
4671 tool-bar-position. Don't modify frame parameters here.
4672 (menu-bar-options-save): Add tool-bar-position.
4673
4674 * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
4675
4676 2010-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
4677
4678 * textmodes/reftex-parse.el (reftex-what-macro)
4679 (reftex-context-substring): Let-bind forward-sexp-function to nil
4680 since we don't need/want to treat \begin...\end as a block (bug#7053).
4681
4682 * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
4683
4684 * simple.el (blink-matching-open): Use syntax-class.
4685
4686 * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
4687 Set invisibility spec for pascal's outline mode.
4688 (pascal-outline-change): Clean up calling convention.
4689 (pascal-show-all, pascal-hide-other-defuns): Update callers.
4690
4691 * progmodes/prolog.el (prolog-smie-forward-token)
4692 (prolog-smie-backward-token): New functions.
4693 (prolog-mode-variables): Use them to parse "!," correctly.
4694 Set up smie-blink-matching for ".".
4695
4696 * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
4697 and `end'.
4698 (ispell-region, ispell-process-line): Update users.
4699
4700 * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
4701 point-min==1.
4702
4703 * textmodes/ispell.el: Fix commenting convention.
4704 (ispell-parse-output): Simplify, use push.
4705 (ispell-region): Use match-string-no-properties.
4706 (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
4707 (ispell-minor-mode): Use define-minor-mode.
4708 (ispell-message): Remove unused var `skip-regexp'.
4709 (ispell-add-per-file-word-list): Use dynamic let-binding.
4710 Try and use the proper comment marker.
4711
4712 * mail/sendmail.el: Fix commenting convention.
4713 (sendmail-send-it): Use line-beginning-position.
4714
4715 * help-fns.el (describe-variable): Add original value, if applicable.
4716
4717 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
4718
4719 * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
4720
4721 * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
4722
4723 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
4724
4725 * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
4726 (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
4727 (smie-prec2-levels): Use them to better diagnose precedence cycles.
4728 (smie-blink-matching-check): Don't signal a mismatch if car is t.
4729 (smie-blink-matching-open): Rewrite to remove assumptions, so that
4730 something like "." can also be a closer.
4731 (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
4732 (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
4733 Rename internal functions to use "--". Update callers.
4734
4735 * frame.el (make-frame-names-alist): Don't list frames on other displays.
4736
4737 * fringe.el (fringe-styles): New var.
4738 (fringe-mode, fringe-query-style): Use it.
4739
4740 2010-09-18 Michael R. Mauger <mmaug@yahoo.com>
4741
4742 * progmodes/sql.el: Version 2.8
4743 (sql-login-params): Update widget structure; changes still needed.
4744 (sql-product-alist): Add :list-all and :list-table features for
4745 SQLite, Postgres and MySQL products.
4746 (sql-redirect): Handle default value.
4747 (sql-execute, sql-execute-feature): New functions.
4748 (sql-read-table-name): New function.
4749 (sql-list-all, sql-list-table): New functions. User API.
4750 (sql-mode-map, sql-interactive-mode-map): Add key definitions
4751 for above functions.
4752 (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
4753 for above functions.
4754 (sql-postgres-login-params): Add user and database defaults.
4755 (sql-buffer-live-p): Bug fix.
4756 (sql-product-history): New variable.
4757 (sql-read-product): New function. Use it.
4758 (sql-set-product, sql-product-interactive): Use it.
4759 (sql-connection-history): New variable.
4760 (sql-read-connection): New function. Use it.
4761 (sql-connect): New function.
4762 (sql-for-each-login): Redesign function interface.
4763 (sql-make-alternate-buffer-name, sql-save-connection): Use it.
4764 (sql-get-login-ext, sql-get-login): Use it. Handle default values.
4765 (sql-comint): Check for program. Existing live buffer.
4766 (sql-comint-postgres): Add port parameter.
4767
4768 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
4769
4770 * emacs-lisp/warnings.el: Fix commenting convention.
4771 (display-warning): Use special mode and make the buffer read-only.
4772
4773 2010-09-18 Jay Belanger <jay.p.belanger@gmail.com>
4774
4775 * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
4776 empty string when it follows a repeated or optional pattern.
4777
4778 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
4779
4780 * indent.el (indent-according-to-mode): Apply syntax-propertize.
4781 (indent-region): Use indent-according-to-mode.
4782
4783 2010-09-18 Eli Zaretskii <eliz@gnu.org>
4784
4785 * fringe.el (fringe-mode): Doc fix.
4786
4787 2010-09-14 Kan-Ru Chen <kanru@kanru.info> (tiny change)
4788
4789 * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
4790 refreshing the preview buffer.
4791
4792 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
4793
4794 * textmodes/tex-mode.el (tex-syntax-propertize-rules)
4795 (latex-syntax-propertize-rules): New consts; replace
4796 tex-font-lock-syntactic-keywords.
4797 (tex-env-mark, latex-env-before-change): New functions.
4798 (latex-electric-env-pair-mode): New minor mode.
4799 (tex-font-lock-verb): Change arguments; do move point.
4800 (tex-font-lock-syntactic-face-function): Adjust to new verbatim
4801 representation as a form of comment.
4802 (tex-font-lock-keywords-1): Remove workaround, now unneeded.
4803 (doctex-syntax-propertize-rules): New const; replaces
4804 doctex-font-lock-syntactic-keywords.
4805 (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
4806
4807 * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
4808 (fortran-make-syntax-propertize-function): New function; replaces
4809 fortran-font-lock-syntactic-keywords.
4810 (fortran-mode): Use it.
4811 (fortran-line-length): Use it. Improve interactive spec.
4812
4813 * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
4814 (syntax-propertize-rules): Add var-ref case. Fix offset computation
4815 when adding surrounding \(..\).
4816
4817 * progmodes/js.el (js-mode): Fix last change (bug#7054).
4818
4819 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
4820
4821 * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
4822 Use with-current-buffer.
4823
4824 * isearch.el (isearch-face): Rename from `isearch'.
4825 (isearch-highlight): Use new name.
4826
4827 2010-09-17 Eli Zaretskii <eliz@gnu.org>
4828
4829 * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
4830 5, for `half' width fringes. (Bug#6933)
4831
4832 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
4833
4834 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
4835 (byte-compile-defvar): "foo/bar" does not lack a prefix.
4836
4837 * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
4838
4839 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
4840
4841 * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
4842 in calculating new frame position. Add more space between new and
4843 parent on the left (Bug#7048).
4844
4845 2010-09-17 Michael Albinus <michael.albinus@gmx.de>
4846
4847 * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
4848 defmacro.
4849
4850 2010-09-16 Chong Yidong <cyd@stupidchicken.com>
4851
4852 * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
4853
4854 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
4855 obsolete alias for x-selection-value.
4856
4857 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
4858
4859 2010-09-16 Michael Albinus <michael.albinus@gmx.de>
4860
4861 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
4862 cookie.
4863
4864 2010-09-15 Michael Albinus <michael.albinus@gmx.de>
4865
4866 * net/tramp-compat.el (tramp-compat-with-temp-message)
4867 (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
4868 (tramp-compat-process-put): New defuns.
4869
4870 * net/tramp.el (top):
4871 * net/tramp-gvfs.el (top):
4872 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
4873
4874 * net/tramp.el (tramp-progress-reporter-update):
4875 Use `tramp-compat-funcall'.
4876
4877 * net/tramp.el (tramp-process-actions):
4878 * net/tramp-gvfs.el (tramp-handle-vc-registered):
4879 * net/tramp-sh.el (tramp-gvfs-handler-askquestion)
4880 (tramp-get-remote-stat, tramp-get-remote-readlink):
4881 Use `tramp-compat-with-temp-message'.
4882
4883 * net/tramp-sh.el (top): Require 'cl.
4884 (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
4885 (tramp-open-connection-setup-interactive-shell):
4886 Use `tramp-compat-process-put'.
4887
4888 2010-09-15 Alan Mackenzie <acm@muc.de>
4889
4890 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
4891 indentation.
4892 (c-forward-<>-arglist-recur): Fix an infinite recursion.
4893
4894 2010-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
4895
4896 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
4897 `lexical' for warnings related to lexical scoping.
4898 (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
4899 global vars which don't have a prefix and could hence affect lexical
4900 scoping in unrelated files.
4901
4902 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
4903
4904 * net/imap.el: Revert back to version
4905 cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
4906 seem problematic.
4907
4908 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
4909
4910 * obsolete/old-whitespace.el (whitespace-unload-function):
4911 Explicitly pass `obarray' to `unintern' to avoid a warning.
4912
4913 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
4914
4915 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
4916 Add `when' argument. Update callers.
4917
4918 * subr.el (unintern): Declare the obarray arg mandatory.
4919
4920 2010-09-14 Glenn Morris <rgm@gnu.org>
4921
4922 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
4923 Doc fixes.
4924
4925 * calendar/diary-lib.el (diary-included-files): New variable.
4926 (diary-list-entries): Maybe initialize diary-included-files.
4927 (diary-include-other-diary-files): Append to diary-included-files.
4928 * calendar/appt.el (appt-update-list): Also check the members of
4929 diary-included-files. (Bug#6999)
4930 (appt-check): Doc fix.
4931
4932 2010-09-14 David Reitter <david.reitter@gmail.com>
4933
4934 * simple.el (line-move-visual): Do not truncate goal column to
4935 integer size. (Bug#7020)
4936
4937 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
4938
4939 * repeat.el (repeat): Allow repeating when the last event is a click.
4940 Suggested by Drew Adams (bug#6256).
4941
4942 2010-09-14 Sascha Wilde <wilde@sha-bang.de>
4943
4944 * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
4945 Replace setting HGRCPATH to "" by some less invasive --config options.
4946
4947 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
4948
4949 * font-lock.el (font-lock-beginning-of-syntax-function):
4950 Mark as obsolete.
4951
4952 2010-09-14 Glenn Morris <rgm@gnu.org>
4953
4954 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
4955 and tool-bar modes. (Bug#6211)
4956 (menu-bar-mode): Move setting of standard-value after the
4957 minor-mode definition, otherwise it seems to have no effect.
4958
4959 2010-09-14 Masatake YAMATO <yamato@redhat.com>
4960
4961 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
4962 Fix typo. (Bug#6976)
4963
4964 2010-09-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4965
4966 * whitespace.el: Allow cleaning up blanks without blank
4967 visualization (Bug#6651). Adjust help window for
4968 whitespace-toggle-options (Bug#6479). Allow to use fill-column
4969 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
4970 (whitespace-style): Add new value 'face. Adjust docstring.
4971 (whitespace-space, whitespace-hspace, whitespace-tab):
4972 Adjust foreground property face.
4973 (whitespace-line-column): Adjust docstring and type declaration.
4974 (whitespace-style-value-list, whitespace-toggle-option-alist)
4975 (whitespace-help-text): Adjust const initialization.
4976 (whitespace-toggle-options, global-whitespace-toggle-options):
4977 Adjust docstring.
4978 (whitespace-display-window, whitespace-interactive-char)
4979 (whitespace-style-face-p, whitespace-color-on): Adjust code.
4980 (whitespace-help-scroll): New fun.
4981
4982 2010-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
4983
4984 * calendar/time-date.el (format-seconds): Comment fix.
4985
4986 2010-09-13 Michael R. Mauger <mmaug@yahoo.com>
4987
4988 * progmodes/sql.el: Version 2.7.
4989 (sql-buffer-live-p): Improve detection.
4990 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
4991 (sql-set-sqli-buffer): Use it.
4992 (sql-product-interactive): Run `sql-set-sqli-hook'.
4993 (sql-rename-buffer): Code cleanup.
4994 (sql-redirect, sql-redirect-value): New functions. More to come.
4995
4996 2010-09-13 Juanma Barranquero <lekktu@gmail.com>
4997
4998 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.
4999 * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
5000 (TRAMP_SRC): New macro.
5001 ($(lisp)/net/tramp-loaddefs.el): New target.
5002
5003 2010-09-13 Michael Albinus <michael.albinus@gmx.de>
5004
5005 Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el.
5006
5007 * Makefile.in (TRAMP_SRC): Remove tramp-fish.el. Add tramp-sh.el.
5008
5009 * net/tramp.el (top): Don't show loading message. Require just
5010 'tramp-compat, everything else is required there.
5011 Use `ignore-errors' where appropriate.
5012 (tramp-inline-compress-start-size, tramp-copy-size-limit)
5013 (tramp-terminal-type, tramp-end-of-output)
5014 (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
5015 (tramp-completion-function-alist-ssh)
5016 (tramp-completion-function-alist-telnet)
5017 (tramp-completion-function-alist-su)
5018 (tramp-completion-function-alist-putty, tramp-remote-path)
5019 (tramp-remote-process-environment, tramp-sh-extra-args)
5020 (tramp-actions-before-shell, tramp-uudecode)
5021 (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
5022 (tramp-perl-file-attributes)
5023 (tramp-perl-directory-files-and-attributes)
5024 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
5025 (tramp-perl-encode, tramp-perl-decode)
5026 (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
5027 (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
5028 (tramp-handle-make-symbolic-link, tramp-handle-load)
5029 (tramp-handle-file-name-as-directory)
5030 (tramp-handle-file-name-directory)
5031 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
5032 (tramp-handle-file-exists-p, tramp-handle-file-attributes)
5033 (tramp-do-file-attributes-with-ls)
5034 (tramp-do-file-attributes-with-perl)
5035 (tramp-do-file-attributes-with-stat)
5036 (tramp-handle-set-visited-file-modtime)
5037 (tramp-handle-verify-visited-file-modtime)
5038 (tramp-handle-set-file-modes, tramp-handle-set-file-times)
5039 (tramp-set-file-uid-gid, tramp-remote-selinux-p)
5040 (tramp-handle-file-selinux-context)
5041 (tramp-handle-set-file-selinux-context)
5042 (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
5043 (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
5044 (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
5045 (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
5046 (tramp-handle-file-ownership-preserved-p)
5047 (tramp-handle-directory-file-name, tramp-handle-directory-files)
5048 (tramp-handle-directory-files-and-attributes)
5049 (tramp-do-directory-files-and-attributes-with-perl)
5050 (tramp-do-directory-files-and-attributes-with-stat)
5051 (tramp-handle-file-name-all-completions)
5052 (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
5053 (tramp-handle-copy-file, tramp-handle-copy-directory)
5054 (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
5055 (tramp-do-copy-or-rename-file-via-buffer)
5056 (tramp-do-copy-or-rename-file-directly)
5057 (tramp-do-copy-or-rename-file-out-of-band)
5058 (tramp-handle-make-directory, tramp-handle-delete-directory)
5059 (tramp-handle-delete-file)
5060 (tramp-handle-dired-recursive-delete-directory)
5061 (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
5062 (tramp-handle-insert-directory)
5063 (tramp-handle-unhandled-file-name-directory)
5064 (tramp-handle-expand-file-name)
5065 (tramp-handle-substitute-in-file-name)
5066 (tramp-handle-executable-find, tramp-process-sentinel)
5067 (tramp-handle-start-file-process, tramp-handle-process-file)
5068 (tramp-handle-call-process-region, tramp-handle-shell-command)
5069 (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
5070 (tramp-handle-insert-file-contents)
5071 (tramp-handle-insert-file-contents-literally)
5072 (tramp-handle-find-backup-file-name)
5073 (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
5074 (tramp-vc-registered-file-names, tramp-handle-vc-registered)
5075 (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
5076 (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
5077 (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
5078 (tramp-find-file-exists-command, tramp-open-shell)
5079 (tramp-find-shell, tramp-barf-if-no-shell-prompt)
5080 (tramp-open-connection-setup-interactive-shell)
5081 (tramp-local-coding-commands, tramp-remote-coding-commands)
5082 (tramp-find-inline-encoding, tramp-call-local-coding-command)
5083 (tramp-inline-compress-commands, tramp-find-inline-compress)
5084 (tramp-compute-multi-hops, tramp-maybe-open-connection)
5085 (tramp-send-command, tramp-wait-for-output)
5086 (tramp-send-command-and-check, tramp-barf-unless-okay)
5087 (tramp-send-command-and-read, tramp-mode-string-to-int)
5088 (tramp-convert-file-attributes, tramp-check-cached-permissions)
5089 (tramp-file-mode-from-int, tramp-file-mode-permissions)
5090 (tramp-shell-case-fold, tramp-make-copy-program-file-name)
5091 (tramp-method-out-of-band-p, tramp-local-host-p)
5092 (tramp-get-remote-path, tramp-get-remote-tmpdir)
5093 (tramp-get-ls-command, tramp-get-ls-command-with-dired)
5094 (tramp-get-test-command, tramp-get-test-nt-command)
5095 (tramp-get-file-exists-command, tramp-get-remote-ln)
5096 (tramp-get-remote-perl, tramp-get-remote-stat)
5097 (tramp-get-remote-readlink, tramp-get-remote-trash)
5098 (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
5099 (tramp-get-local-uid, tramp-get-local-gid)
5100 (tramp-get-inline-compress, tramp-get-inline-coding): Move to
5101 tramp-sh.el.
5102 (tramp-methods, tramp-default-method-alist)
5103 (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
5104 Move initialization to tramp-sh.el.
5105 (tramp-temp-name-prefix): Make it a defconst.
5106 (tramp-dissect-file-name): Don't check anymore for multi-hop
5107 methods.
5108 (tramp-debug-outline-regexp): Add a docstring.
5109 (tramp-debug-outline-level): Rename from `tramp-outline-level'.
5110 (tramp-get-debug-buffer): Use it.
5111
5112 * net/tramp-cache.el (top): Set tramp-autoload cookie for
5113 initialization forms.
5114 (tramp-set-connection-property): Don't protect `tramp-message'
5115 call, it isn't necessary any longer.
5116 (tramp-dump-connection-properties): Use `ignore-errors'.
5117
5118 * net/tramp-compat.el (top): Require 'advice, 'format-spec,
5119 'password-cache and 'auth-source.
5120
5121 * net/tramp-gvfs.el (top):
5122 * net/tramp-smb.el (top): Require 'tramp-sh.
5123
5124 * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
5125
5126 * net/tramp-sh.el: New file, derived from tramp.el.
5127 (top): Initialize `tramp-methods', `tramp-default-method-alist',
5128 `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
5129 Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
5130 Use `ignore-errors' where appropriate.
5131 (tramp-sh-file-name-handler-alist): Rename from
5132 `tramp-file-name-handler-alist'.
5133 (tramp-send-command-and-check): Return t or nil. Remove all
5134 `zerop' checks, where called.
5135 (tramp-handle-set-file-modes)
5136 (tramp-do-copy-or-rename-file-directly)
5137 (tramp-handle-delete-directory, tramp-handle-delete-file)
5138 (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
5139 (tramp-sh-file-name-handler, tramp-send-command-and-check)
5140 (tramp-get-remote-ln): Set tramp-autoload cookie.
5141
5142 * net/tramp-fish.el: Remove file.
5143
5144 2010-09-13 Daiki Ueno <ueno@unixuser.org>
5145
5146 * epa-file.el (epa-file-insert-file-contents): If visiting, bind
5147 buffer-file-name to avoid file-locking. (Bug#7026)
5148
5149 2010-09-13 Julien Danjou <julien@danjou.info>
5150
5151 * notifications.el (notifications-notify): Add support for
5152 image-path and sound-name.
5153 (notifications-specification-version): Add this variable.
5154
5155 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5156
5157 * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
5158
5159 2010-09-12 Leo <sdl.web@gmail.com>
5160
5161 * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
5162 (rcirc-completion-start): New variables.
5163 (rcirc-nick-completions): Rename to rcirc-completions.
5164 (rcirc-nick-completion-start-offset): Delete.
5165 (rcirc-completion-at-point): New function for constructing
5166 completion data for both nicks and irc commands. Add to
5167 completion-at-point-functions in rcirc mode.
5168 (rcirc-complete): Rename from rcirc-nick-complete; use
5169 rcirc-completion-at-point.
5170 (defun-rcirc-command): Update rcirc-client-commands.
5171
5172 2010-09-11 Glenn Morris <rgm@gnu.org>
5173
5174 * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
5175 atomically, to avoid parallel build errors. (Bug#4196)
5176
5177 2010-09-11 Michael R. Mauger <mmaug@yahoo.com>
5178
5179 * progmodes/sql.el: Version 2.6
5180 (sql-dialect): Synonym for "sql-product".
5181 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
5182 (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
5183 Set "sql-buffer" to buffer name not buffer object so multiple sql
5184 interactive buffers work properly. Reverts misguided changes in
5185 earlier work.
5186 (sql-comint): Make sure different buffer name is used if "*SQL*"
5187 buffer is for a different product.
5188 (sql-make-alternate-buffer-name): Fix bug with "sql-database"
5189 login param.
5190 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
5191 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
5192 (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
5193 Accept new buffer name or prompt for one.
5194 (sql-port): Default to zero.
5195 (sql-comint-mysql): Handle "sql-port" as a numeric.
5196 (sql-port-history): Delete unused variable.
5197 (sql-get-login): Default "sql-port" to a number.
5198 (sql-product-alist): Correct Postgres prompt and terminator regexp.
5199 (sql-sqlite-program): Dynamically detect presence of "sqlite" or
5200 "sqlite3" executables.
5201 (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
5202 (sql-buffer-live-p): New function.
5203 (sql-mode-menu, sql-send-string): Use it.
5204 (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
5205 syntax pattern.
5206 (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
5207 (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
5208
5209 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
5210
5211 * net/netrc.el (netrc-credentials): New convenience function.
5212
5213 2010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
5214
5215 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
5216 to replace texinfo-font-lock-syntactic-keywords.
5217 (texinfo-mode): Use it.
5218
5219 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
5220 Use syntax-propertize-function.
5221
5222 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
5223 replace sgml-font-lock-syntactic-keywords.
5224 (sgml-mode): Use it.
5225
5226 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
5227 since we don't use it.
5228
5229 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
5230
5231 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
5232 if available.
5233 (vhdl-fontify-buffer): Adjust.
5234
5235 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
5236 replace tcl-font-lock-syntactic-keywords.
5237 (tcl-mode): Use it.
5238
5239 * progmodes/simula.el (simula-syntax-propertize-function): New var to
5240 replace simula-font-lock-syntactic-keywords.
5241 (simula-mode): Use it.
5242
5243 * progmodes/sh-script.el (sh-st-symbol): Remove.
5244 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
5245 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
5246 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
5247 (sh-font-lock-paren): Set syntax-multiline.
5248 (sh-font-lock-syntactic-keywords): Remove.
5249 (sh-syntax-propertize-function): New function to replace it.
5250 (sh-mode): Use it.
5251
5252 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
5253 Define while compiling.
5254 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
5255 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
5256 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
5257 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
5258 (ruby-here-doc-end-syntax): Only define when
5259 syntax-propertize is not available.
5260 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
5261 New functions.
5262 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
5263 (electric-indent-chars): Silence bytecompiler.
5264 (ruby-mode): Use prog-mode, syntax-propertize-function, and
5265 electric-indent-chars.
5266
5267 * progmodes/python.el (python-syntax-propertize-function): New var to
5268 replace python-font-lock-syntactic-keywords.
5269 (python-mode): Use it.
5270 (python-quote-syntax): Simplify and adjust to new use.
5271
5272 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
5273 replace perl-font-lock-syntactic-keywords.
5274 (perl-syntax-propertize-special-constructs): New fun to replace
5275 perl-font-lock-special-syntactic-constructs.
5276 (perl-font-lock-syntactic-face-function): New fun.
5277 (perl-mode): Use it.
5278
5279 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
5280 to replace octave-font-lock-close-quotes.
5281 (octave-syntax-propertize-function): New function to replace
5282 octave-font-lock-syntactic-keywords.
5283 (octave-mode): Use it.
5284
5285 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
5286 replaces mixal-font-lock-syntactic-keywords.
5287 (mixal-mode): Use it.
5288
5289 * progmodes/make-mode.el (makefile-syntax-propertize-function):
5290 New var; replaces makefile-font-lock-syntactic-keywords.
5291 (makefile-mode): Use it.
5292 (makefile-imake-mode): Adjust.
5293
5294 * progmodes/js.el (js--regexp-literal): Define while compiling.
5295 (js-syntax-propertize-function): New var; replaces
5296 js-font-lock-syntactic-keywords.
5297 (js-mode): Use it.
5298
5299 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
5300 replaces gdb-script-font-lock-syntactic-keywords.
5301 (gdb-script-mode): Use it.
5302
5303 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
5304 (fortran--font-lock-syntactic-keywords): New var.
5305 (fortran-line-length): Update syntax-propertize-function and
5306 fortran--font-lock-syntactic-keywords.
5307
5308 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
5309
5310 * progmodes/cfengine.el (cfengine-mode):
5311 Use syntax-propertize-function.
5312 (cfengine-font-lock-syntactic-keywords): Remove.
5313
5314 * progmodes/autoconf.el (autoconf-mode):
5315 Use syntax-propertize-function.
5316 (autoconf-font-lock-syntactic-keywords): Remove.
5317
5318 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
5319 (ada-after-change-function, ada-initialize-syntax-table-properties)
5320 (ada-handle-syntax-table-properties): Only define when
5321 syntax-propertize is not available.
5322 (ada-mode): Use syntax-propertize-function.
5323
5324 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
5325 (font-lock-fontify-syntactic-keywords-region): Move handling of
5326 font-lock-syntactically-fontified to...
5327 (font-lock-default-fontify-region): ...here.
5328 Let syntax-propertize-function take precedence.
5329 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
5330
5331 * emacs-lisp/syntax.el (syntax-propertize-function)
5332 (syntax-propertize-chunk-size, syntax-propertize--done)
5333 (syntax-propertize-extend-region-functions): New vars.
5334 (syntax-propertize-wholelines, syntax-propertize-multiline)
5335 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
5336 (syntax-propertize): New functions.
5337 (syntax-propertize-rules): New macro.
5338 (syntax-ppss-flush-cache): Set syntax-propertize--done.
5339 (syntax-ppss): Call syntax-propertize.
5340
5341 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
5342
5343 2010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
5344
5345 * textmodes/ispell.el (ispell-init-process): Improve comments.
5346 XEmacs compatibility changes regarding (add-hook) 'local option
5347 and (set-process-query-on-exit-flag).
5348
5349 2010-09-09 Michael Albinus <michael.albinus@gmx.de>
5350
5351 * net/tramp-cache.el (tramp-parse-connection-properties):
5352 Set tramp-autoload cookie.
5353
5354 2010-09-09 Glenn Morris <rgm@gnu.org>
5355
5356 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
5357 (imagemagick-register-types): Doc fix.
5358
5359 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
5360
5361 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
5362
5363 * progmodes/js.el (require): Require is already "eval-and-compile".
5364 (js--re-search-forward): Avoid `eval'. Preserve the error data.
5365 (js--re-search-backward): Use js--re-search-forward.
5366
5367 * progmodes/fortran.el (fortran-line-length): Don't recompute
5368 syntactic keywords redundantly a second time.
5369
5370 * progmodes/ada-mode.el: Replace "(set '" with setq.
5371 (ada-mode): Simplify.
5372 (ada-create-case-exception, ada-adjust-case-interactive)
5373 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
5374 (ada-search-ignore-string-comment, ada-move-to-start)
5375 (ada-move-to-end): Use with-syntax-table.
5376
5377 * font-lock.el (save-buffer-state): Remove `varlist' arg.
5378 (font-lock-unfontify-region, font-lock-default-fontify-region):
5379 Update usage correspondingly.
5380 (font-lock-fontify-syntactic-keywords-region):
5381 Set parse-sexp-lookup-properties buffer-locally here.
5382 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
5383
5384 * simple.el (blink-matching-open): Don't burp if we can't find a match.
5385
5386 2010-09-08 Glenn Morris <rgm@gnu.org>
5387
5388 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
5389 Error if not compiled with -DBYTE_CODE_METER.
5390
5391 * emacs-lisp/bytecomp.el (byte-recompile-directory):
5392 Ignore dir-locals-file.
5393
5394 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
5395
5396 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5397 Not a const.
5398 (compilation-error-regexp-alist-alist): Rule out ": " in file names
5399 for the `gnu' messages.
5400 (compilation-set-skip-threshold): New command.
5401 (compilation-start): Use \' rather than $.
5402 (compilation-forget-errors): Use clrhash.
5403
5404 2010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
5405
5406 * textmodes/ispell.el (ispell-valid-dictionary-list):
5407 Simplify logic.
5408
5409 2010-09-08 Michael Albinus <michael.albinus@gmx.de>
5410
5411 Migrate to Tramp 2.2. Rearrange load dependencies.
5412 (Bug#1529, Bug#5448, Bug#5705)
5413
5414 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
5415 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
5416 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
5417
5418 * net/tramp.el (top): Remove all other tramp-* loads except
5419 tramp-compat.el. Remove all changes to tramp-unload-hook for
5420 other tramp-* packages. Rearrange defun order. Change calls of
5421 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
5422 `tramp-compat-octal-to-decimal' to new function names.
5423 (tramp-terminal-type, tramp-initial-end-of-output)
5424 (tramp-methods, tramp-foreign-file-name-handler-alist)
5425 (tramp-tramp-file-p, tramp-completion-mode-p)
5426 (tramp-send-command-and-check, tramp-get-remote-path)
5427 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
5428 (tramp-shell-quote-argument): Set tramp-autoload cookie.
5429 (with-file-property, with-connection-property): Move to
5430 tramp-cache.el.
5431 (tramp-local-call-process, tramp-decimal-to-octal)
5432 (tramp-octal-to-decimal): Move to tramp-compat.el.
5433 (tramp-handle-shell-command): Do not require 'shell.
5434 (tramp-compute-multi-hops): No special handling for tramp-gw-*
5435 symbols.
5436 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
5437
5438 * net/tramp-cache.el (top): Require 'tramp. Add to
5439 `tramp-unload-hook'.
5440 (tramp-cache-data, tramp-get-file-property)
5441 (tramp-set-file-property, tramp-flush-file-property)
5442 (tramp-flush-directory-property, tramp-get-connection-property)
5443 (tramp-set-connection-property, tramp-flush-connection-property)
5444 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
5445 cookie.
5446 (with-file-property, with-connection-property): New defuns, moved
5447 from tramp.el.
5448 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
5449 macro.
5450
5451 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
5452 (tramp-version): Set tramp-autoload cookie.
5453
5454 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
5455 changes to tramp-unload-hook for other tramp-* packages. Add to
5456 `tramp-unload-hook'.
5457 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
5458 (tramp-compat-call-process): New defuns, moved from tramp.el.
5459
5460 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
5461 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
5462 Add to `tramp-unload-hook'. Change call of
5463 `tramp-compat-decimal-to-octal' to new function name.
5464 (tramp-fish-method): Make it a defconst.
5465 (tramp-fish-file-name-p): Make it a defsubst.
5466 (tramp-fish-method, tramp-fish-file-name-handler)
5467 (tramp-fish-file-name-p): Set tramp-autoload cookie.
5468
5469 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
5470 `tramp-foreign-file-name-handler-alist'. Add to
5471 `tramp-unload-hook'.
5472 (tramp-ftp-method): Make it a defconst.
5473 (tramp-ftp-file-name-p): Make it a defsubst.
5474 (tramp-ftp-method, tramp-ftp-file-name-handler)
5475 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
5476
5477 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
5478 `tramp-foreign-file-name-handler-alist'. Add to
5479 `tramp-unload-hook'. Change checks, whether package can be
5480 loaded.
5481 (tramp-gvfs-file-name-p): Make it a defsubst.
5482 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
5483 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
5484 (tramp-gvfs-handle-file-directory-p): New defun.
5485 (tramp-gvfs-file-name-handler-alist): Use it.
5486
5487 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
5488 `tramp-foreign-file-name-handler-alist'. Add to
5489 `tramp-unload-hook'.
5490 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
5491 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
5492 defconst.
5493 (tramp-gw-tunnel-method, tramp-gw-socks-method)
5494 (tramp-gw-open-connection): Set tramp-autoload cookie.
5495
5496 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
5497 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
5498 Add to `tramp-unload-hook'. Change checks, whether package can be
5499 loaded.
5500 (tramp-imap-file-name-p): Make it a defsubst.
5501 (tramp-imap-method, tramp-imaps-method)
5502 (tramp-imap-file-name-handler)
5503 (tramp-imap-file-name-p): Set tramp-autoload cookie.
5504
5505 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
5506 `tramp-methods' and `tramp-foreign-file-name-handler-alist'.
5507 Add to `tramp-unload-hook'. Change checks, whether package can be
5508 loaded. Change call of `tramp-compat-decimal-to-octal' to new
5509 function name.
5510 (tramp-smb-tunnel-method): Make it a defconst.
5511 (tramp-smb-file-name-p): Make it a defsubst.
5512 (tramp-smb-method, tramp-smb-file-name-handler)
5513 (tramp-smb-file-name-p): Set tramp-autoload cookie.
5514
5515 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
5516 (tramp-uuencode-region): Set tramp-autoload cookie.
5517
5518 * net/trampver.el (top) Add to `tramp-unload-hook'.
5519 (tramp-version, tramp-bug-report-address): Set tramp-autoload
5520 cookie. Update release number.
5521
5522 2010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
5523
5524 * textmodes/ispell.el (ispell-start-process): Make sure original
5525 arg list is properly initialized (Bug#6993, Bug#6994).
5526
5527 2010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
5528
5529 * files.el (directory-abbrev-alist): Use \` as default regexp.
5530
5531 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
5532 chars like - or ] (bug#6984).
5533 (rx-any-condense-range): Explode 2-char ranges.
5534
5535 2010-09-06 Glenn Morris <rgm@gnu.org>
5536
5537 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
5538
5539 2010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
5540
5541 * textmodes/bibtex.el:
5542 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
5543
5544 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5545
5546 * net/imap.el (imap-message-map): Remove optional buffer parameter,
5547 since no callers use it.
5548 (imap-message-get): Ditto.
5549 (imap-message-put): Ditto.
5550 (imap-mailbox-map): Ditto.
5551 (imap-mailbox-put): Ditto.
5552 (imap-mailbox-get): Ditto.
5553 (imap-mailbox-get): Revert last change for this function.
5554
5555 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5556
5557 * net/imap.el (imap-fetch-safe): Remove function, and alter all
5558 callers to use `imap-fetch' instead. According to the comments, this
5559 should be safe, since all other IMAP clients use the 1:* syntax.
5560 (imap-enable-exchange-bug-workaround): Remove.
5561 (imap-debug): Remove -- doesn't seem very useful.
5562
5563 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5564
5565 * net/imap.el (imap-log): New convenience function used throughout
5566 instead of repeating the same code all over the place.
5567
5568 2010-09-05 David De La Harpe Golden <david@harpegolden.net>
5569
5570 * mouse.el (mouse-save-then-kill): Save region to kill-ring
5571 when mouse-drag-copy-region is non-nil (Bug#6956).
5572
5573 2010-09-05 Chong Yidong <cyd@stupidchicken.com>
5574
5575 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
5576 Improve regexps (Bug#6987).
5577 (dired-sort-toggle): Search more robustly for -t flag.
5578
5579 * files.el (get-free-disk-space): Search more robustly for
5580 "available" column. Suggested by Ehud Karni
5581 <ehud@unix.mvs.co.il>.
5582
5583 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
5584
5585 * international/uni-bidi.el:
5586 * international/uni-category.el:
5587 * international/uni-combining.el:
5588 * international/uni-decimal.el:
5589 * international/uni-mirrored.el:
5590 * international/uni-name.el: Regenerate.
5591
5592 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
5593
5594 * electric.el (electric-indent-post-self-insert-function):
5595 Don't reindent with a sloppy indentation function.
5596
5597 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
5598 border case in change-log-mode.
5599
5600 2010-09-04 Chong Yidong <cyd@stupidchicken.com>
5601
5602 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5603 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
5604 Recognize leading tab in gcc-include regexp. Ignore names with
5605 leading "from" or "in" in gnu regexp (Bug#6937).
5606
5607 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
5608
5609 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
5610 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
5611 (ispell-start-process): Avoid setq and simplify logic.
5612 (ispell-init-process): Setup kill-buffer-hook locally when needed.
5613 (kill-buffer-hook): Don't use it globally with code that uses
5614 expand-file-name since that may call kill-buffer via
5615 code_conversion_restore.
5616
5617 2010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
5618
5619 * emacs-lisp/package.el (package-directory-list): Only call
5620 file-name-nondirectory on a string.
5621
5622 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
5623
5624 * emacs-lisp/package.el (package--download-one-archive):
5625 Ensure that archive-contents is valid before saving it.
5626 (package-activate-1, package-mark-obsolete, define-package)
5627 (package-compute-transaction, package-list-maybe-add): Use push.
5628
5629 2010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
5630
5631 Use SMIE's blink-paren for octave-mode.
5632 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
5633 Backslashes do not escape single-quotes, single-quotes do.
5634 (octave-block-else-regexp, octave-block-end-regexp)
5635 (octave-block-match-alist): Remove.
5636 (octave-smie-bnf-table): New var, with old content.
5637 (octave-smie-op-levels): Use it.
5638 (octave-smie-closer-alist): New var.
5639 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
5640 (octave-blink-matching-block-open): Remove.
5641 (octave-reindent-then-newline-and-indent, octave-electric-semi)
5642 (octave-electric-space): Let self-insert-command run expand-abbrev and
5643 blink parens.
5644
5645 * electric.el (electricity): New group.
5646 (electric-indent-chars): New var.
5647 (electric-indent-post-self-insert-function): New fun.
5648 (electric-indent-mode): New minor mode.
5649 (electric-pair-skip-self): New custom.
5650 (electric-pair-post-self-insert-function): New function.
5651 (electric-pair-mode): New minor mode.
5652
5653 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
5654 calcAlg-blink-matching-open.
5655 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
5656 (calc-do-alg-entry): Only touch the part of the keymap that varies.
5657 Use the new blink-matching-check-function.
5658
5659 Provide blink-matching support to SMIE.
5660 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
5661 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
5662 (smie-blink-matching-check, smie-blink-matching-open): New functions.
5663
5664 * simple.el (newline): Fix last change to properly remove itself from
5665 the hook.
5666
5667 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
5668
5669 * simple.el (newline): Eliminate optimization.
5670 Use post-self-insert-hook to set hard-newline and things before
5671 running post-self-insert-hook.
5672 (blink-matching-check-mismatch): New function.
5673 (blink-matching-check-function): New variable.
5674 (blink-matching-open): Use them.
5675 Skip back forward over prefix chars skipped by forward-sexp.
5676 Don't check if the parens are backslash escaped.
5677 (blink-paren-post-self-insert-function): Check backslash escaping here.
5678
5679 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
5680
5681 * emacs-lisp/package.el (package-menu-mode-map):
5682 Change package-menu-revert bindings to revert-buffer.
5683 (package-menu-mode): Set revert-buffer-function.
5684 (package-menu-revert): Doc fix.
5685
5686 2010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
5687
5688 * textmodes/ispell.el (ispell-init-process): Use "~/" as
5689 `default-directory' unless using Ispell per-directory personal
5690 dictionaries and not in a mini-buffer under XEmacs.
5691 (kill-buffer-hook): Do not kill ispell process on exit when
5692 `ispell-process-directory' is "~/". (Bug#6143)
5693
5694 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
5695
5696 * simple.el (kill-new): Call interprogram-cut-function with only
5697 one argument.
5698
5699 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
5700 Remove cut buffer from error message.
5701
5702 * term/x-win.el (x-select-text):
5703 * term/pc-win.el (x-selection-value):
5704 * term/ns-win.el (x-selection-value):
5705 * eshell/em-term.el:
5706 * w32-fns.el (x-get-selection-value):
5707 * mouse-sel.el (mouse-sel-set-selection-function):
5708 * frame.el (display-selections-p): Remove cut-buffer in documentation.
5709
5710 * term/x-win.el: Update documentation for x-last-selected-text-*.
5711 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
5712 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
5713 (x-select-text): Remove argument PUSH, update documentation.
5714 Remove cut-buffer code.
5715 (x-selection-value-internal): Was previously x-selection-value.
5716 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
5717 Update documentation, remove cut-buffer code.
5718 Call x-selection-value-internal.
5719 (x-clipboard-yank): Call x-selection-value-internal.
5720 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
5721
5722 * term/pc-win.el (x-last-selected-text):
5723 x-cut-buffer-or-selection-value renamed to x-selection-value
5724 (x-select-text): Remove argument PUSH, update documentation.
5725
5726 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
5727 x-cut-buffer-or-selection-value renamed to x-selection-value
5728 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
5729 (x-select-text): Remove argument PUSH, update documentation.
5730
5731 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
5732
5733 * w32-fns.el (x-last-selected-text):
5734 x-cut-buffer-or-selection-value renamed to x-selection-value.
5735 (x-cut-buffer-max): Remove.
5736 (x-select-text): Remove argument PUSH, update documentation.
5737
5738 * simple.el (interprogram-cut-function): Remove mention of PUSH.
5739
5740 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
5741
5742 * mouse-sel.el (mouse-sel-get-selection-function):
5743 x-cut-buffer-or-selection-value renamed to x-selection-value.
5744 (x-select-text): Remove optional push.
5745
5746 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
5747
5748 * simple.el (blink-paren-function): Move from C to here.
5749 (blink-paren-post-self-insert-function): New function.
5750 (post-self-insert-hook): Use it.
5751
5752 * emacs-lisp/pcase.el (pcase-split-memq):
5753 Fix overenthusiastic optimisation.
5754 (pcase-u1): Handle the case of a lambda pred.
5755
5756 2010-08-31 Kenichi Handa <handa@m17n.org>
5757
5758 * international/mule-cmds.el (standard-display-european-internal):
5759 Setup standard-display-table for 8-bit characters by storing 8-bit
5760 characters in the element vector.
5761
5762 * disp-table.el (standard-display-8bit):
5763 Setup standard-display-table for 8-bit characters by storing 8-bit
5764 characters in the element vector.
5765 (standard-display-european): Likewise.
5766
5767 2010-08-31 Masatake YAMATO <yamato@redhat.com>
5768
5769 * textmodes/nroff-mode.el (nroff-view): New command.
5770 (nroff-mode-map): Bind it to C-c C-c.
5771
5772 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
5773
5774 * emacs-lisp/smie.el (smie-down-list): New command.
5775
5776 Remove old indentation and navigation code on octave-mode.
5777 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
5778 smie-down-list rather than add a binding for octave-down-block.
5779 (octave-mark-block, octave-blink-matching-block-open):
5780 Rely on forward-sexp-function.
5781 (octave-fill-paragraph): Don't narrow, so you can use
5782 indent-according-to-mode.
5783 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
5784 (octave-in-block-p, octave-re-search-forward-kw)
5785 (octave-re-search-backward-kw, octave-indent-calculate)
5786 (octave-end-as-array-index-p, octave-block-end-offset)
5787 (octave-scan-blocks, octave-forward-block, octave-backward-block)
5788 (octave-down-block, octave-backward-up-block, octave-up-block)
5789 (octave-before-magic-comment-p, octave-indent-line): Remove.
5790
5791 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
5792
5793 * emacs-lisp/package.el (package--read-archive-file): Just use
5794 `read', to avoid copying an additional string.
5795 (package-menu-mode): Set header-line-format here.
5796 (package-menu-refresh, package-menu-revert): Signal an error if
5797 not in the Package Menu.
5798 (package-menu-package-list): New var.
5799 (package--generate-package-list): Operate on the current buffer;
5800 don't assume that it is *Packages*, since the user may rename it.
5801 Allow persistent package listings and sort keys using
5802 package-menu-package-list and package-menu-package-sort-key.
5803 (package-menu--version-predicate): Fix version calculation.
5804 (package-menu-sort-by-column): Don't select the window.
5805 (package--list-packages): Create the *Packages* buffer.
5806 Set package-menu-package-list-key.
5807 (list-packages): Sorting by status is now the default.
5808 (package-buffer-info): Use match-string-no-properties.
5809 (define-package): Add a &rest argument for future proofing, but
5810 don't use it yet.
5811 (package-install-from-buffer, package-install-buffer-internal):
5812 Merge into a single function, package-install-from-buffer.
5813 (package-install-file): Change caller.
5814
5815 * finder.el: Load finder-inf using `require'.
5816 (finder-list-matches): Sorting by status is now the default.
5817 (finder-compile-keywords): Simpify printing.
5818
5819 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
5820
5821 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
5822 (octave-mode-map): Remove special bindings for forward/backward-block
5823 and octave-backward-up-block. Use smie-close-block.
5824 (octave-continuation-marker-regexp): New var.
5825 (octave-continuation-regexp): Use it.
5826 (octave-operator-table, octave-smie-op-levels)
5827 (octave-operator-regexp, octave-smie-indent-rules): New vars.
5828 (octave-smie-backward-token, octave-smie-forward-token): New funs.
5829 (octave-mode): Use SMIE.
5830 (octave-close-block): Delete.
5831
5832 2010-08-30 Eli Zaretskii <eliz@gnu.org>
5833
5834 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
5835 CLIPBOARD, not in PRIMARY. (Bug#6944)
5836
5837 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
5838
5839 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
5840 a list of parents.
5841 (smie-indent-column): Allow indirection through variables.
5842
5843 * composite.el (save-buffer-state): Delete, unused.
5844 * font-lock.el (save-buffer-state): Use with-silent-modifications.
5845 (font-lock-default-fontify-region): Use with-syntax-table.
5846 * jit-lock.el (with-buffer-unmodified): Remove.
5847 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
5848
5849 Use `declare' in defmacros.
5850 * window.el (save-selected-window):
5851 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
5852 * progmodes/python.el (def-python-skeleton):
5853 * net/dbus.el (dbus-ignore-errors):
5854 * jka-cmpr-hook.el (with-auto-compression-mode):
5855 * international/mule.el (with-category-table):
5856 * emacs-lisp/timer.el (with-timeout):
5857 * emacs-lisp/lisp-mnt.el (lm-with-file):
5858 * emacs-lisp/eieio.el (with-slots):
5859 * emacs-lisp/easymenu.el (easy-menu-define):
5860 * emacs-lisp/debug.el (debugger-env-macro):
5861 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
5862 (Multiple-value-call, Multiple-value-prog1):
5863 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
5864 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
5865 edebug rule to definition.
5866 * emacs-lisp/lisp-mode.el (save-selected-window)
5867 (with-current-buffer, combine-after-change-calls)
5868 (with-output-to-string, with-temp-file, with-temp-buffer)
5869 (with-temp-message, with-syntax-table, read-if, eval-after-load)
5870 (dolist, dotimes, when, unless):
5871 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
5872
5873 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
5874
5875 * finder.el: Require `package'.
5876 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
5877 (finder-package-info): Var deleted.
5878 (finder-keywords-hash, finder--builtins-alist): New vars.
5879 (finder-compile-keywords): Compute package--builtins and
5880 finder-keywords-hash instead of finder-keywords-hash, respecting
5881 the "Package" header.
5882 (finder-unknown-keywords, finder-list-matches):
5883 Use finder-keywords-hash and package--list-packages.
5884 (finder-mode): Don't set font-lock-defaults.
5885 (finder-exit): We don't use "*Finder-package*" and "*Finder
5886 Category*" buffers anymore.
5887
5888 * emacs-lisp/package.el (package--builtins-base): Var deleted.
5889 (package--builtins): Set default value to nil.
5890 (package-initialize): Load precomputed value of package--builtins
5891 from finder-inf.el.
5892 (package-alist, package-compute-transaction)
5893 (package-download-transaction): Improve docstring.
5894 (package-read-all-archive-contents): Do not change
5895 package--builtins here.
5896 (list-packages): Make package-list-packages an alias for this.
5897 Sort by status by default.
5898 (package--list-packages): Add optional PACKAGES arg.
5899 (describe-package-1): Use font-lock-face property. For built-in
5900 packages, insert file commentary.
5901 (package--generate-package-list): Rename from
5902 package-list-packages-internal; all callers changed. Add optional
5903 PACKAGES arg. Add alphabetical sort fallbacks.
5904 (package-menu--version-predicate, package-menu--status-predicate)
5905 (package-menu--description-predicate)
5906 (package-menu--name-predicate): New functions.
5907
5908 * info.el (Info-finder-find-node): Search package-alist instead of
5909 finder-package-info.
5910
5911 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
5912
5913 * subr.el (version-regexp-alist): Don't use "a" and "b" for
5914 "alpha" and "beta".
5915 (version-to-list): Handle versions like "10.3d".
5916
5917 2010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
5918
5919 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
5920 (macroexp-accumulate): Use `declare'.
5921
5922 2010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5923
5924 * whitespace.el (whitespace-style): Adjust type declaration.
5925
5926 2010-08-26 Magnus Henoch <magnus.henoch@gmail.com>
5927
5928 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
5929 empty argument to gvfs-copy.
5930
5931 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
5932
5933 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
5934 handle new TRASH arg of `delete-file'.
5935
5936 2010-08-26 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
5937
5938 * net/tramp.el (tramp-handle-insert-directory): Don't use
5939 `forward-word', its default syntax could be changed.
5940
5941 2010-08-26 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
5942 Michael Albinus <michael.albinus@gmx.de>
5943
5944 Implement compression for inline methods.
5945
5946 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
5947 (tramp-copy-size-limit): Allow also nil.
5948 (tramp-inline-compress-commands): New defconst.
5949 (tramp-find-inline-compress, tramp-get-inline-compress)
5950 (tramp-get-inline-coding): New defuns.
5951 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
5952 replaced by `tramp-get-inline-coding'.
5953 (tramp-handle-file-local-copy, tramp-handle-write-region)
5954 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
5955
5956 2010-08-26 Noah Lavine <noah549@gmail.com> (tiny change)
5957
5958 Detect ssh 'ControlMaster' argument automatically in some cases.
5959
5960 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
5961 (tramp-default-method): Use it.
5962
5963 2010-08-26 Karel Klíč <kklic@redhat.com>
5964
5965 * net/tramp.el (tramp-file-name-for-operation):
5966 Add file-selinux-context.
5967
5968 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
5969
5970 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
5971
5972 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
5973
5974 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
5975 (Bug#6907).
5976
5977 2010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
5978
5979 * progmodes/js.el: Make indentation more customizable (Bug#6914).
5980 (js-paren-indent-offset, js-square-indent-offset)
5981 (js-curly-indent-offset): New options.
5982 (js--proper-indentation): Use them.
5983
5984 2010-08-26 Daniel Colascione <dan.colascione@gmail.com>
5985
5986 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
5987 instead of inspecting font-lock properties (Bug#6916).
5988
5989 2010-08-26 David Reitter <david.reitter@gmail.com>
5990
5991 * server.el (server-visit-files): Run pre-command-hook and
5992 post-command-hook for each buffer while it is current (Bug#6910).
5993 (server-execute): Do not run hooks here.
5994
5995 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
5996
5997 Sync with Tramp 2.1.19.
5998
5999 * net/tramp-cmds.el (tramp-cleanup-all-connections)
6000 (tramp-reporter-dump-variable, tramp-load-report-modules)
6001 (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
6002 (tramp-bug): Recommend setting of `tramp-verbose' to 9.
6003
6004 * net/tramp-compat.el (top): Do not autoload
6005 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
6006 only when `start-file-process' is not bound.
6007 (byte-compile-not-obsolete-vars): Define if not bound.
6008 (tramp-compat-funcall): New defmacro.
6009 (tramp-compat-line-beginning-position)
6010 (tramp-compat-line-end-position)
6011 (tramp-compat-temporary-file-directory)
6012 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
6013 (tramp-compat-copy-file, tramp-compat-copy-directory)
6014 (tramp-compat-delete-file, tramp-compat-delete-directory)
6015 (tramp-compat-number-sequence, tramp-compat-process-running-p):
6016 Use it.
6017 (tramp-advice-file-expand-wildcards): Do not use
6018 `tramp-handle-file-remote-p'.
6019 (tramp-compat-make-temp-file): Simplify fallback implementation.
6020 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
6021 (tramp-compat-copy-tree): Remove function.
6022 (tramp-compat-delete-file): New defun.
6023 (tramp-compat-delete-directory): Provide implementation for older
6024 Emacsen.
6025 (tramp-compat-file-attributes): Handle only
6026 `wrong-number-of-arguments' error.
6027
6028 * net/tramp-fish.el (tramp-fish-handle-copy-file):
6029 Add PRESERVE_SELINUX_CONTEXT.
6030 (tramp-fish-handle-delete-file): Add TRASH arg.
6031 (tramp-fish-handle-directory-files-and-attributes):
6032 Do not use `tramp-fish-handle-file-attributes.
6033 (tramp-fish-handle-file-local-copy)
6034 (tramp-fish-handle-insert-file-contents)
6035 (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
6036
6037 * net/tramp-gvfs.el (top): Require url-util.
6038 (tramp-gvfs-mount-point): Remove.
6039 (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
6040 and `set-file-selinux-context'.
6041 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
6042 (tramp-gvfs-handle-file-selinux-context)
6043 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
6044 (with-tramp-dbus-call-method): Format trace message.
6045 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
6046 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
6047 Implement backup call, when operation on local files fails.
6048 Use progress reporter. Flush properties of changed files.
6049 (tramp-gvfs-handle-delete-file): Add TRASH arg.
6050 Use `tramp-compat-delete-file'.
6051 (tramp-gvfs-handle-expand-file-name): Expand "~/".
6052 (tramp-gvfs-handle-make-directory): Make more traces.
6053 (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
6054 (tramp-gvfs-url-file-name): Hexify file name in url.
6055 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
6056 into account for the resulting file name.
6057 (tramp-gvfs-handler-askquestion): Preserve current message, in
6058 order to let progress reporter continue afterwards. (Bug#6257)
6059 Return dummy mountpoint, when the answer is "no".
6060 See `tramp-gvfs-maybe-open-connection'.
6061 (tramp-gvfs-handler-mounted-unmounted)
6062 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
6063 attribute "default_location". Set "prefix" property.
6064 Handle default-location.
6065 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
6066 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
6067 exists. Raise an error, if not (due to a corresponding answer
6068 "no" in interactive questions, for example).
6069 Use `tramp-compat-funcall'.
6070
6071 * net/tramp-imap.el (top): Autoload `epg-make-context'.
6072 (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
6073 (tramp-imap-do-copy-or-rename-file)
6074 (tramp-imap-handle-insert-file-contents)
6075 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
6076 (tramp-imap-handle-delete-file): Add TRASH arg.
6077
6078 * net/tramp-smb.el (tramp-smb-handle-copy-file):
6079 Add PRESERVE-SELINUX-CONTEXT.
6080 (tramp-smb-handle-copy-file)
6081 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
6082 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
6083 Use `with-progress-reporter'.
6084 (tramp-smb-handle-delete-file): Add TRASH arg.
6085
6086 * net/tramp.el (tramp-methods): Move hostname to the end in all
6087 ssh `tramp-login-args'. Add `tramp-async-args' attribute where
6088 appropriate.
6089 (tramp-verbose): Describe verbose level 9.
6090 (tramp-completion-function-alist)
6091 (tramp-file-name-regexp, tramp-chunksize)
6092 (tramp-local-coding-commands, tramp-remote-coding-commands)
6093 (with-connection-property, tramp-completion-mode-p)
6094 (tramp-action-process-alive, tramp-action-out-of-band)
6095 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
6096 (tramp-exists-file-name-handler): Fix docstring.
6097 (tramp-remote-process-environment): Use `format' instead of
6098 `concat'. Protect version string by apostroph.
6099 (tramp-shell-prompt-pattern): Do not use a shy group in case of
6100 XEmacs.
6101 (tramp-file-name-regexp-unified)
6102 (tramp-completion-file-name-regexp-unified): On W32 systems, do
6103 not regard the volume letter as remote filename. (Bug#5447)
6104 (tramp-perl-file-attributes)
6105 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
6106 (tramp-vc-registered-read-file-names): Read input as
6107 here-document, otherwise the command could exceed maximum length
6108 of command line.
6109 (tramp-file-name-handler-alist): Add `file-selinux-context' and
6110 `set-file-selinux-context'.
6111 (tramp-debug-message): Add `tramp-compat-funcall' to ignored
6112 backtrace functions.
6113 (tramp-error-with-buffer): Don't show the connection buffer when
6114 we are in completion mode.
6115 (tramp-progress-reporter-update, tramp-remote-selinux-p)
6116 (tramp-handle-file-selinux-context)
6117 (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
6118 (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
6119 New defuns.
6120 (with-progress-reporter): New defmacro.
6121 (tramp-debug-outline-regexp): New defconst.
6122 (top, tramp-rfn-eshadow-setup-minibuffer)
6123 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
6124 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
6125 (tramp-completion-mode-p, tramp-check-for-regexp)
6126 (tramp-open-connection-setup-interactive-shell)
6127 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
6128 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
6129 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
6130 Use `tramp-compat-funcall'.
6131 (tramp-handle-make-symbolic-link): Flush file properties.
6132 (tramp-handle-load, tramp-handle-file-local-copy)
6133 (tramp-handle-insert-file-contents, tramp-handle-write-region)
6134 (tramp-handle-vc-registered, tramp-maybe-send-script)
6135 (tramp-find-shell): Use `with-progress-reporter'.
6136 (tramp-do-file-attributes-with-stat): Add space in format string,
6137 in order to work around a bug in pdksh. Reported by Gilles Pion
6138 <gpion@lfdj.com>.
6139 (tramp-handle-verify-visited-file-modtime): Do not send a command
6140 when the connection is not established.
6141 (tramp-handle-set-file-times): Simplify the check for utc.
6142 (tramp-handle-directory-files-and-attributes)
6143 (tramp-get-remote-path): Use `copy-tree'.
6144 (tramp-completion-handle-file-name-all-completions): Ensure, that
6145 non remote files are still checked. Oops.
6146 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
6147 Handle PRESERVE-SELINUX-CONTEXT.
6148 (tramp-do-copy-or-rename-file): Add progress reporter.
6149 (tramp-do-copy-or-rename-file-directly): Do not use
6150 `tramp-handle-file-remote-p'.
6151 (tramp-do-copy-or-rename-file-out-of-band):
6152 Use `tramp-compat-delete-directory'.
6153 (tramp-do-copy-or-rename-file-out-of-band)
6154 (tramp-compute-multi-hops, tramp-maybe-open-connection):
6155 Use `format-spec-make'.
6156 (tramp-handle-delete-file): Add TRASH arg.
6157 (tramp-handle-dired-uncache): Flush directory cache, not only file
6158 cache.
6159 (tramp-handle-expand-file-name)
6160 (tramp-completion-handle-file-name-all-completions)
6161 (tramp-completion-handle-file-name-completion):
6162 Use `tramp-connectable-p'.
6163 (tramp-handle-start-file-process): Set connection property "vec".
6164 Use it, in order to invalidate file caches. Check only for
6165 `remote-tty' process property.
6166 Implement tty setting. (Bug#4604, Bug#6360)
6167 (tramp-file-name-for-operation): Add `call-process-region' and
6168 `set-file-selinux-context'.
6169 (tramp-find-foreign-file-name-handler)
6170 (tramp-advice-make-auto-save-file-name)
6171 (tramp-set-auto-save-file-modes): Remove superfluous check for
6172 `stringp'. This is done inside `tramp-tramp-file-p'.
6173 (tramp-file-name-handler): Trace 'quit. Catch the error for some
6174 operations when we are in completion mode. This gives the user
6175 the chance to correct the file name in the minibuffer.
6176 (tramp-completion-mode-p): Use `non-essential'.
6177 (tramp-handle-file-name-all-completions): Backward/ XEmacs
6178 compatibility: Use `completion-ignore-case' if
6179 `read-file-name-completion-ignore-case' does not exist.
6180 (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
6181 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
6182 `tramp-open-shell'.
6183 (tramp-action-password): Hide password prompt before next run.
6184 (tramp-process-actions): Widen connection buffer for the trace.
6185 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
6186 process property. Trace stty settings if `tramp-verbose' >= 9.
6187 Apply workaround for IRIX64 bug. Move argument of last
6188 `tramp-send-command' where it belongs to.
6189 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
6190 front of `login-args'.
6191 (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
6192 on "/dev/null" instead of "/".
6193 (tramp-get-ls-command-with-dired): Make test for "--dired"
6194 stronger.
6195 (tramp-set-auto-save-file-modes): Adapt version check.
6196 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
6197 (tramp-handle-process-file): Call the program in a subshell, in
6198 order to preserve working directory.
6199 (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
6200 `tramp-remote-sh' from `tramp-methods'.
6201 (tramp-get-ls-command): Make test for "--color=never" stronger.
6202 (tramp-check-for-regexp): Use (forward-line 1).
6203
6204 * net/trampver.el: Update release number.
6205
6206 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
6207
6208 * help.el (help-map): Bind `C-h P' to describe-package.
6209
6210 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
6211
6212 * emacs-lisp/package.el (package-refresh-contents): Catch errors
6213 when downloading archives.
6214 (describe-package-1): Add package commentary.
6215 (package-install-button-action): New function.
6216 (package-menu-mode-map): Bind ? to package-menu-describe-package.
6217 (package-menu-view-commentary): Function removed.
6218 (package-list-packages-internal): Hide the `package' package too.
6219
6220 2010-08-25 Kenichi Handa <handa@m17n.org>
6221
6222 * language/misc-lang.el ("Arabic"): New language environment.
6223 Setup composition-function-table for Arabic characters.
6224
6225 * international/fontset.el (setup-default-fontset): Fix typo for
6226 arabic OTF spec (fini->fina).
6227
6228 2010-08-25 Jan Djärv <jan.h.d@swipnet.se>
6229
6230 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
6231 on all frames.
6232
6233 2010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6234
6235 * whitespace.el: Allow cleaning up blanks without blank
6236 visualization (Bug#6651). Adjust help window for
6237 whitespace-toggle-options (Bug#6479). Allow to use fill-column
6238 instead of whitespace-line-column (from EmacsWiki). New version
6239 13.1.
6240 (whitespace-style): Add new value 'face. Adjust docstring.
6241 (whitespace-space, whitespace-hspace, whitespace-tab):
6242 Adjust foreground property face.
6243 (whitespace-line-column): Adjust docstring and type declaration.
6244 (whitespace-style-value-list, whitespace-toggle-option-alist)
6245 (whitespace-help-text): Adjust const initialization.
6246 (whitespace-toggle-options, global-whitespace-toggle-options):
6247 Adjust docstring.
6248 (whitespace-display-window, whitespace-interactive-char)
6249 (whitespace-style-face-p, whitespace-color-on): Adjust code.
6250 (whitespace-help-scroll): New fun.
6251
6252 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
6253
6254 * emacs-lisp/package.el (list-packages): Alias for
6255 package-list-packages.
6256
6257 2010-08-24 Kevin Ryde <user42@zip.com.au>
6258
6259 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
6260 (Bug#5651).
6261
6262 * progmodes/ruby-mode.el (ruby): Add defgroup.
6263
6264 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
6265
6266 * progmodes/python.el: Add Ipython support (Bug#5390).
6267 (python-shell-prompt-alist)
6268 (python-shell-continuation-prompt-alist): New options.
6269 (python--set-prompt-regexp): New function.
6270 (inferior-python-mode, run-python, python-shell):
6271 Require ansi-color. Use python--set-prompt-regexp to set the comint
6272 prompt based on the Python interpreter.
6273 (python--prompt-regexp): New var.
6274 (python-check-comint-prompt)
6275 (python-comint-output-filter-function): Use it.
6276 (run-python): Use a pipe (Bug#5694).
6277
6278 2010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
6279
6280 * progmodes/python.el (python-send-region): Send a different
6281 Python command if Ipython is in use.
6282 (python-check-version): Use a Python command to find the version.
6283
6284 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
6285
6286 * mouse.el (mouse-yank-primary): Avoid setting primary when
6287 deactivating the mark (Bug#6872).
6288
6289 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
6290
6291 * progmodes/python.el (python-block-pairs): Allow use of "finally"
6292 with "else" (Bug#3991).
6293
6294 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
6295
6296 * net/dbus.el: Accept UNIX domain sockets as bus address.
6297 (top): Don't initialize `dbus-registered-objects-table' anymore,
6298 this is done in dbusbind,c.
6299 (dbus-check-event): Adapt test for bus.
6300 (dbus-return-values-table, dbus-unregister-service)
6301 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
6302 Adapt doc string.
6303
6304 2010-08-23 Juanma Barranquero <lekktu@gmail.com>
6305
6306 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
6307
6308 2010-08-22 Juri Linkov <juri@jurta.org>
6309
6310 * simple.el (read-extended-command): New function with the logic
6311 for `completing-read' moved to Elisp from `execute-extended-command'.
6312 Use `function-called-at-point' in `minibuffer-default-add-function'
6313 to get a command name for M-n (bug#5364, bug#5214).
6314
6315 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
6316
6317 * startup.el (command-line-1): Issue warning for ignored arguments
6318 --unibyte, etc (Bug#6886).
6319
6320 2010-08-22 Leo <sdl.web@gmail.com>
6321
6322 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
6323 (ignore, bright, dim, keyword): Split list of nicknames before
6324 passing to rcirc-add-or-remove (Bug#6894).
6325
6326 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
6327
6328 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
6329
6330 2010-08-22 Leo <sdl.web@gmail.com>
6331
6332 Fix buffer-list rename&refresh after killing a buffer in ido.
6333 * ido.el: Revert Óscar's.
6334 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
6335 Remember the buffers at head, rather than their name.
6336 * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
6337
6338 2010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
6339 Stefan Monnier <monnier@iro.umontreal.ca>
6340
6341 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
6342 extra backslash added to each line (bug#6890).
6343
6344 2010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
6345
6346 * subr.el (read-key): Don't echo keystrokes (bug#6883).
6347
6348 2010-08-22 Glenn Morris <rgm@gnu.org>
6349
6350 * menu-bar.el (menu-bar-games-menu): Add landmark.
6351
6352 2010-08-22 Glenn Morris <rgm@gnu.org>
6353
6354 * align.el (align-regexp): Make group and spacing arguments
6355 use the interactive defaults when non-interactive. (Bug#6698)
6356
6357 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
6358 expansion, so as not to need sendmail.
6359 (mail-text-start): Remove declaration.
6360 (rmail-retry-failure): Require sendmail.
6361
6362 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
6363
6364 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
6365
6366 2010-08-22 Michael Albinus <michael.albinus@gmx.de>
6367
6368 * progmodes/flymake.el (flymake-start-syntax-check-process):
6369 Use `start-file-process' in order to let it run also on remote hosts.
6370
6371 2010-08-22 Kenichi Handa <handa@m17n.org>
6372
6373 * files.el: Add `word-wrap' as safe local variable.
6374
6375 2010-08-22 Glenn Morris <rgm@gnu.org>
6376
6377 * woman.el (woman-translate): Case matters. (Bug#6849)
6378
6379 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
6380
6381 * simple.el (kill-region): Doc fix (Bug#6787).
6382
6383 2010-08-22 Glenn Morris <rgm@gnu.org>
6384
6385 * calendar/diary-lib.el (diary-header-line-format):
6386 Fit it to the window, not the frame.
6387
6388 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
6389
6390 * subr.el (ignore-errors): Add debug declaration.
6391
6392 2010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
6393
6394 * whitespace.el (whitespace-color-off): Remove post-command-hook
6395 locally.
6396
6397 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
6398
6399 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
6400
6401 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
6402
6403 * cus-edit.el (custom-group-value-create): Add extra newline
6404 before end line (Bug#6876).
6405
6406 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
6407
6408 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
6409 when extending it. Before killing on the second click, check if
6410 the buffer is the correct one. Doc fix.
6411 (mouse-secondary-save-then-kill): Allow usage without first
6412 calling mouse-start-secondary, by defaulting to point. Don't save
6413 an empty secondary selection. Doc fix.
6414
6415 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6416
6417 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
6418 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
6419 New version 13.0.
6420 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
6421 Adjust initialization.
6422 (whitespace-bob-marker, whitespace-eob-marker)
6423 (whitespace-buffer-changed): New vars.
6424 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
6425 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
6426 (whitespace-post-command-hook, whitespace-display-char-on):
6427 Adjust code.
6428 (whitespace-looking-back, whitespace-buffer-changed): New funs.
6429 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
6430
6431 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
6432
6433 * files.el (locate-file-completion-table): Only list the .el and .elc
6434 extensions if there's no other choice (bug#5955).
6435
6436 * facemenu.el (facemenu-self-insert-data): New var.
6437 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
6438 New functions.
6439 (facemenu-add-face): Use them.
6440
6441 * simple.el (blink-matching-open): Obey forward-sexp-function.
6442
6443 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
6444
6445 * simple.el (prog-mode-map): New var.
6446 (prog-indent-sexp): New command.
6447
6448 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
6449
6450 * progmodes/prolog.el (smie): Require.
6451
6452 * emacs-lisp/smie.el (smie-default-backward-token)
6453 (smie-default-forward-token): Strip properties.
6454 (smie-next-sexp): Be more careful with associative operators.
6455 (smie-forward-sexp-command): Generalize.
6456 (smie-backward-sexp-command): Simplify.
6457 (smie-closer-alist): New var.
6458 (smie-close-block): New command.
6459 (smie-indent-debug-log): New var.
6460 (smie-indent-offset-rule): Add a few more cases.
6461 (smie-indent-column): New function.
6462 (smie-indent-after-keyword): Use it.
6463 (smie-indent-keyword): Use it.
6464 Fix up the opener code's point position.
6465 (smie-indent-comment): Only applies at BOL.
6466 (smie-indent-debug): New command.
6467
6468 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
6469 declarations that are useful before running the macro.
6470
6471 2010-08-18 Joakim Verona <joakim@verona.se>
6472
6473 * image.el (imagemagick-types-inhibit): New variable.
6474 (imagemagick-register-types): New function.
6475 * image-mode.el (image-transform-properties): New function.
6476 (image-transform-set-scale, image-transform-fit-to-height)
6477 (image-transform-set-rotation, image-transform-set-resize)
6478 (image-transform-fit-to-width, image-transform-fit-to-height):
6479 New functions.
6480 (image-toggle-display-image): Support image transforms.
6481
6482 2010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
6483
6484 * image.el (create-animated-image): Don't add heuristic mask to image
6485 (Bug#6839).
6486
6487 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
6488
6489 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
6490 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
6491
6492 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
6493
6494 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
6495
6496 Font-lock '...' strings, plus various simplifications and fixes.
6497 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
6498 (octave-font-lock-close-quotes): New function.
6499 (octave-font-lock-syntactic-keywords): New var.
6500 (octave-mode): Use it. Set beginning-of-defun-function.
6501 (octave-mode-map): Don't override the <foo>-defun commands.
6502 (octave-mode-menu): Pass it directly to easy-menu-define;
6503 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
6504 (octave-block-match-alist): Fix up last change so that
6505 octave-close-block uses the more specific keyword.
6506 (info-lookup-mode): Silence byte-compiler.
6507 (octave-beginning-of-defun): Not interactive any more.
6508 Optimize slightly.
6509 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
6510 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
6511 (octave-completion-at-point-function): Make sure point is within
6512 beg..end.
6513 (octave-reindent-then-newline-and-indent):
6514 Use reindent-then-newline-and-indent.
6515 (octave-add-octave-menu): Remove.
6516
6517 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
6518
6519 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
6520 (report-emacs-bug-can-use-xdg-email): New functions.
6521 (report-emacs-bug): Set can-xdg-email to result of
6522 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
6523 \C-cm to report-emacs-bug-insert-to-mailer and add help text
6524 about it.
6525
6526 * net/browse-url.el (browse-url-default-browser): Add cond
6527 for browse-url-xdg-open.
6528 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
6529
6530 2010-08-17 Glenn Morris <rgm@gnu.org>
6531
6532 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
6533 (c-fontify-recorded-types-and-refs): Define for compiler.
6534 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
6535 before use.
6536
6537 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
6538 Fix format call.
6539
6540 2010-08-17 Michael Albinus <michael.albinus@gmx.de>
6541
6542 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
6543 properties.
6544 (tramp-handle-process-file): Call the program in a subshell, in
6545 order to preserve working directory.
6546 (tramp-action-password): Hide password prompt before next run.
6547 (tramp-process-actions): Widen connection buffer for the trace.
6548
6549 2010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
6550
6551 * net/rcirc.el (rcirc-log-process-buffers): New option.
6552 (rcirc-print): Use it.
6553 (rcirc-generate-log-filename): New function.
6554 (rcirc-log-filename-function): Change default to
6555 rcirc-generate-log-filename (Bug#6828).
6556
6557 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
6558
6559 * simple.el (deactivate-mark): If select-active-regions is `only',
6560 only set selection for temporarily active regions.
6561
6562 * cus-start.el: Change defcustom for select-active-regions.
6563
6564 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
6565
6566 * mouse.el (mouse--drag-set-mark-and-point): New function.
6567 (mouse-drag-track): Use LOCATION arg to push-mark.
6568 Use mouse--drag-set-mark-and-point to take click-count into
6569 consideration when updating point and mark (Bug#6840).
6570
6571 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
6572
6573 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6574 Give the Ruby rule a lower priority than Gnu (Bug#6778).
6575
6576 2010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
6577
6578 * font-lock.el (lisp-font-lock-keywords-2):
6579 Add combine-after-change-calls, condition-case-no-debug,
6580 with-demoted-errors, and with-silent-modifications (Bug#6025).
6581
6582 2010-08-14 Kevin Ryde <user42@zip.com.au>
6583
6584 * emacs-lisp/copyright.el (copyright-update-year)
6585 (copyright-update): Temporary switch-to-buffer to ensure the
6586 buffer change being queried is visible (Bug#5394).
6587
6588 2010-08-14 Tom Tromey <tromey@redhat.com>
6589
6590 * progmodes/etags.el (tags-file-name): Mark safe if stringp
6591 (Bug#6733).
6592
6593 2010-08-14 Eli Zaretskii <eliz@gnu.org>
6594
6595 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
6596 MS-DOS. (Bug#6689)
6597
6598 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
6599
6600 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
6601 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
6602 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
6603 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
6604 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
6605 Call menu-bar-set-tool-bar-position.
6606
6607 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
6608
6609 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
6610 comment style (bug#6834).
6611 * progmodes/scheme.el (scheme-mode-syntax-table):
6612 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
6613 "b" flag in "' 14b" syntax.
6614
6615 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
6616 for (un)commenting the region and performing completion.
6617 (octave-mode-menu): Use standard commands for help and completion.
6618 (octave-mode-syntax-table): Support %{..%} comments (sort of).
6619 (octave-mode): Use define-derived-mode.
6620 Set completion-at-point-functions and don't set columns.
6621 Don't disable adaptive-fill-regexp.
6622 (octave-describe-major-mode, octave-comment-region)
6623 (octave-uncomment-region, octave-comment-indent)
6624 (octave-indent-for-comment): Remove.
6625 (octave-indent-calculate): Rename from calculate-octave-indent.
6626 (octave-indent-line, octave-fill-paragraph): Update caller.
6627 (octave-initialize-completions): No need to make an alist.
6628 (octave-completion-at-point-function): New function.
6629 (octave-complete-symbol): Use it.
6630 (octave-insert-defun): Use define-skeleton.
6631
6632 * progmodes/octave-mod.el (octave-mode): Set comment-add.
6633 (octave-mode-map): Use comment-dwim (bug#6829).
6634
6635 2010-08-12 Antoine Levitt <antoine.levitt@gmail.com> (tiny change)
6636
6637 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
6638 indentation of inserted comment.
6639
6640 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
6641
6642 * faces.el (region): Add type gtk that uses gtk colors.
6643
6644 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
6645 Handle theme-name change.
6646
6647 2010-08-10 Michael R. Mauger <mmaug@yahoo.com>
6648
6649 * progmodes/sql.el: Version 2.5
6650 (sql-product-alist): Add :prompt-cont-regexp property for several
6651 database products.
6652 (sql-prompt-cont-regexp): New variable.
6653 (sql-output-newline-count, sql-output-by-send):
6654 New variables. Record number of newlines in input text.
6655 (sql-send-string): Handle multiple filters and count newlines.
6656 (sql-send-magic-terminator): Count terminator newline.
6657 (sql-interactive-remove-continuation-prompt): Filters output to
6658 remove continuation prompts; one for each newline.
6659 (sql-interactive-mode): Set up new variables, prompt regexp and
6660 output filter.
6661 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
6662 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
6663
6664 2010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
6665
6666 * emacs-lisp/pcase.el: New file.
6667
6668 2010-08-10 Michael Albinus <michael.albinus@gmx.de>
6669
6670 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
6671 as here-document, otherwise the command could exceed maximum
6672 length of command line.
6673 (tramp-handle-vc-registered): Call script accordingly.
6674 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
6675
6676 2010-08-10 Kenichi Handa <handa@m17n.org>
6677
6678 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
6679 composable pattern.
6680
6681 2010-08-09 Chong Yidong <cyd@stupidchicken.com>
6682
6683 * emacs-lisp/package.el (package-version-split)
6684 (package--version-first-nonzero, package-version-compare):
6685 Functions removed.
6686 (package-directory-list, package-load-all-descriptors)
6687 (package--built-in, package-activate, define-package)
6688 (package-installed-p, package-compute-transaction)
6689 (package-read-all-archive-contents)
6690 (package--add-to-archive-contents, package-buffer-info)
6691 (package-tar-file-info, package-list-packages-internal):
6692 Use version-to-list and version-list-*.
6693
6694 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6695 Use version-to-list.
6696 (package-upload-buffer-internal): Use version-list-<=.
6697
6698 2010-08-09 Kenichi Handa <handa@m17n.org>
6699
6700 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
6701 composable pattern.
6702
6703 2010-08-08 Chong Yidong <cyd@stupidchicken.com>
6704
6705 * tutorial.el (tutorial--default-keys): C-d is now bound to
6706 delete-forward-char (Bug#6826).
6707
6708 * mouse.el (mouse-drag-track): Remove accidentally-removed check
6709 for `double' value of mouse-1-click-follows-link (Bug#6807).
6710
6711 2010-08-08 Johan Bockgård <bojohan@gnu.org>
6712
6713 * replace.el (replace-highlight): Bind isearch-forward and
6714 isearch-error, ensuring that highlighting is updated if the user
6715 switches the search direction (Bug#6808).
6716
6717 * isearch.el (isearch-lazy-highlight-forward): New var.
6718 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
6719 (isearch-lazy-highlight-update): Use it.
6720
6721 2010-08-08 Kenichi Handa <handa@m17n.org>
6722
6723 * international/mule.el (define-charset): Store NAME as :base property.
6724 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
6725 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
6726 current priority. Force using the designation of the specific
6727 charset by adding `charset' text property. Improve the whole algorithm.
6728
6729 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
6730
6731 * emulation/pc-select.el (pc-selection-mode-hook)
6732 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
6733 (pc-selection-mode): Fix typos in docstrings.
6734
6735 2010-08-08 Kenichi Handa <handa@m17n.org>
6736
6737 * language/cyrillic.el: Don't add "microsoft-cp1251" to
6738 ctext-non-standard-encodings-alist here.
6739
6740 * international/mule.el (ctext-non-standard-encodings-alist):
6741 Add "koi8-r" and "microsoft-cp1251".
6742 (ctext-standard-encodings): New variable.
6743 (ctext-non-standard-encodings-table): List only elements for
6744 non-standard encodings.
6745 (ctext-pre-write-conversion): Adjust for the above change.
6746 Check ctext-standard-encodings.
6747
6748 * international/mule-conf.el (compound-text): Doc fix.
6749 (ctext-no-compositions): Doc fix.
6750 (compound-text-with-extensions): Doc fix.
6751
6752 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
6753
6754 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
6755
6756 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
6757
6758 * progmodes/which-func.el (which-func-format): Split help-echo text
6759 into lines, like other mode-line tooltips.
6760
6761 * server.el (server-start): When using TCP sockets, force IPv4
6762 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
6763
6764 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
6765
6766 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
6767
6768 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
6769
6770 * term.el (term-delimiter-argument-list): Reflow docstring.
6771 (term-read-input-ring, term-write-input-ring, term-send-input)
6772 (term-bol, term-erase-in-display, serial-supported-or-barf):
6773 Fix typos in docstrings.
6774
6775 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
6776
6777 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
6778
6779 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
6780
6781 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
6782
6783 2010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
6784
6785 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
6786 Fix typo in docstring (bug#6747).
6787
6788 2010-08-08 Leo <sdl.web@gmail.com>
6789
6790 * eshell/esh-io.el (eshell-get-target): Better detection of
6791 read-only file (Bug#6762).
6792
6793 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
6794
6795 * align.el (align-default-spacing): Doc fix.
6796 (align-region-heuristic, align-regexp): Fix typos in docstrings.
6797
6798 2010-08-08 Stephen Peters <speters@itasoftware.com>
6799
6800 * calendar/icalendar.el
6801 (icalendar--split-value): Fix splitting regexp. (Bug#6766)
6802 (icalendar--get-weekday-numbers): New.
6803 (icalendar--convert-recurring-to-diary): Handle multiple byday
6804 values in weekly rules. (Bug#6766)
6805
6806 2010-08-08 Ulf Jasper <ulf.jasper@web.de>
6807
6808 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
6809 (icalendar--create-uid, icalendar-export-region)
6810 (icalendar--parse-summary-and-rest): Code formatting.
6811
6812 2010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
6813
6814 * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
6815 to italicize headers.
6816 (calc-highlight-selections-with-faces): New variable.
6817 (calc-selected-face, calc-nonselected-face): New faces.
6818
6819 * calc/calccomp.el (math-comp-highlight-string): Use
6820 `calc-highlight-selections-with-faces' to determine how to highlight
6821 sub-formulas.
6822
6823 * calc/calc-sel.el (calc-show-selections): Change message to when
6824 using faces to highlight selections.
6825
6826 2010-08-07 Michael R. Mauger <mmaug@yahoo.com>
6827
6828 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
6829 Add SQLite 3 keywords, functions and datatypes.
6830 (sql-interactive-mode): Remove `comint-process-echoes' set to t
6831 (Bug#6686).
6832
6833 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
6834
6835 * simple.el (select-active-regions): Move to keyboard.c.
6836 (deactivate-mark): Used saved-region-selection.
6837 (select-active-region): Function removed.
6838 (activate-mark, set-mark, push-mark-command)
6839 (handle-shift-selection): Don't call it.
6840 (keyboard-quit): Avoid adding the region to the window selection.
6841
6842 * mouse.el (mouse-drag-track): Remove hacks to deal with old
6843 select-active-regions implementation.
6844 (mouse-yank-at-click): Doc fix.
6845
6846 * cus-start.el: Add custom declaration for select-active-regions.
6847
6848 2010-08-07 Eli Zaretskii <eliz@gnu.org>
6849
6850 * simple.el (delete-forward-char): Doc fix.
6851
6852 * tutorial.el (help-with-tutorial): Hack safe file-local variables
6853 after reading the tutorial.
6854
6855 2010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
6856
6857 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph):
6858 Fix for the case that a C style comment has its delimiters alone on
6859 their respective lines.
6860
6861 2010-08-06 Michael Albinus <michael.albinus@gmx.de>
6862
6863 * net/tramp.el (tramp-handle-start-file-process): Set connection
6864 property "vec".
6865 (tramp-process-sentinel): Use it for flushing the cache.
6866 We cannot do it via the process buffer, the buffer could be deleted
6867 already when running the sentinel.
6868
6869 2010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
6870
6871 * comint.el (comint-mode): Make directory tracking functions
6872 functional on remote files. (Bug#6764)
6873
6874 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
6875
6876 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
6877
6878 2010-08-05 Eli Zaretskii <eliz@gnu.org>
6879
6880 * emacs-lisp/find-gc.el (find-gc-source-files):
6881 Rename unexec.c => unexcoff.c.
6882
6883 * emacs-lisp/authors.el (authors-fixed-entries):
6884 Rename unexec.c => unexcoff.c.
6885
6886 2010-08-05 Michael Albinus <michael.albinus@gmx.de>
6887
6888 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
6889 cache, not only file cache.
6890 (tramp-process-sentinel): New defun.
6891 (tramp-handle-start-file-process): Use it, in order to invalidate
6892 file caches.
6893
6894 2010-08-03 Leo <sdl.web@gmail.com>
6895
6896 * server.el (server-start): Simplify loop.
6897
6898 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
6899
6900 * frame.el (screen-height, screen-width, set-screen-width)
6901 (set-screen-height): Remove ancient compatibility aliases.
6902
6903 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
6904 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
6905
6906 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
6907 that change current buffer.
6908
6909 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6910
6911 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
6912 beginning of the string. Use `string-match-p'. (Bug#6765)
6913
6914 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
6915
6916 * cus-start.el (x-gtk-use-system-tooltips): New variable.
6917
6918 2010-08-01 Chong Yidong <cyd@stupidchicken.com>
6919
6920 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
6921 (package--builtins): Tweak descriptions.
6922 (package-print-package): Upcase descriptions if necessary.
6923 Show all built-in packages in font-lock-builtin-face.
6924 (package-list-packages-internal): Omit "emacs" package.
6925 Show status of built-in packages as "built-in".
6926
6927 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
6928
6929 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
6930 before killing to preserve the primary selection (Bug#6701).
6931
6932 * term/x-win.el (x-select-text): Doc fix.
6933
6934 2010-07-31 Nathaniel Flath <flat0103@gmail.com>
6935
6936 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
6937 (objc-font-lock-extra-types):
6938 * progmodes/cc-mode.el (c-basic-common-init):
6939 * progmodes/cc-langs.el (c-make-mode-syntax-table)
6940 (c++-make-template-syntax-table)
6941 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
6942 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
6943 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
6944 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
6945 * progmodes/cc-fonts.el (c-make-inverse-face)
6946 (c-basic-matchers-after):
6947 * progmodes/cc-engine.el (c-forward-keyword-clause)
6948 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
6949 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
6950 (c-guess-continued-construct, c-guess-basic-syntax):
6951 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
6952 The above functions were modified or created.
6953
6954 2010-07-31 Jan Djärv <jan.h.d@swipnet.se>
6955
6956 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
6957
6958 2010-07-31 Eli Zaretskii <eliz@gnu.org>
6959
6960 * files.el (bidi-paragraph-direction): Define safe local values.
6961
6962 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
6963 language-info-alist. Remove outdated FIXME in a comment.
6964
6965 2010-07-31 Alan Mackenzie <acm@muc.de>
6966
6967 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
6968 Auto-fill broken in C/C++ modes.
6969
6970 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
6971
6972 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
6973 (menu-bar-showhide-tool-bar-menu-customize-disable)
6974 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
6975 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
6976 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
6977 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
6978 make a menu for Options => toolbar that can move it.
6979
6980 2010-07-29 Chong Yidong <cyd@stupidchicken.com>
6981
6982 * emacs-lisp/package-x.el (package--make-rss-entry):
6983 (package-maint-add-news-item, package--update-news)
6984 (package-upload-buffer-internal): New arg ARCHIVE-URL.
6985
6986 * emacs-lisp/package.el (package-archive-url): Rename from
6987 package-archive-id.
6988 (package-install): Doc fix.
6989 (package-download-single, package-download-tar, package-install)
6990 (package-menu-view-commentary): Callers changed.
6991
6992 2010-07-29 Michael Albinus <michael.albinus@gmx.de>
6993
6994 * net/tramp.el (tramp-handle-start-file-process): Check only for
6995 `remote-tty' process property.
6996 (tramp-open-shell): Don't check for tty.
6997 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
6998 process property.
6999
7000 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
7001 host.
7002
7003 2010-07-28 Chong Yidong <cyd@stupidchicken.com>
7004
7005 * emacs-lisp/package.el (package-load-list, package-archives)
7006 (package-archive-contents, package-user-dir)
7007 (package-directory-list, package--builtins, package-alist)
7008 (package-activated-list, package-obsolete-alist): Mark as risky.
7009
7010 2010-07-28 Phil Hagelberg <phil@evri.com>
7011
7012 Add support for non-default package repositories.
7013 * emacs-lisp/package.el (package-archive-base): Var deleted.
7014 (package-archives): New variable.
7015 (package-archive-contents): Doc fix.
7016 (package-load-descriptor): Do nothing if descriptor file is missing.
7017 (package--write-file-no-coding): New function.
7018 (package-unpack-single): Use it.
7019 (package-archive-id): New function.
7020 (package-download-single, package-download-tar)
7021 (package-menu-view-commentary): Use it.
7022 (package-installed-p): Make second argument optional.
7023 (package-read-all-archive-contents): New function.
7024 (package-initialize): Use it.
7025 (package-read-archive-contents): Add ARCHIVE argument.
7026 (package--add-to-archive-contents): New function.
7027 (package-install): Don't call package-read-archive-contents.
7028 (package--download-one-archive): Store archive file in a
7029 subdirectory of package-user-dir.
7030 (package-menu-execute): Remove spurious line movement.
7031
7032 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
7033
7034 * cus-start.el (tool-bar-style): Add text-image-horiz.
7035
7036 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
7037
7038 * progmodes/gud.el (gud-common-init): Check for remoteness of
7039 `file', and not of `default-directory'.
7040
7041 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
7042
7043 * net/tramp.el (tramp-methods): Move hostname to the end in all
7044 ssh `tramp-login-args'.
7045 (tramp-verbose): Describe verbose level 9.
7046 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
7047 (tramp-open-connection-setup-interactive-shell): Trace stty
7048 settings if `tramp-verbose' >= 9.
7049 (tramp-handle-start-file-process): Implement tty setting.
7050 (Bug#4604, Bug#6360)
7051
7052 * net/tramp-cmds.el (tramp-bug): Recommend setting of
7053 `tramp-verbose' to 9.
7054
7055 2010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
7056
7057 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
7058 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
7059 Remove references to package `lisp-re' (bug#4369).
7060
7061 2010-07-27 Tom Tromey <tromey@redhat.com>
7062
7063 * progmodes/js.el (js-mode):
7064 * progmodes/make-mode.el (makefile-mode):
7065 * progmodes/simula.el (simula-mode):
7066 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
7067
7068 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
7069
7070 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
7071
7072 * time.el (display-time-day-and-date): Remove spurious * in docstring.
7073 (display-time-world-buffer-name, display-time-world-mode-map):
7074 Fix typos in docstrings.
7075
7076 2010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
7077
7078 * image-mode.el (image-display-size): New function.
7079 (image-forward-hscroll, image-next-line, image-eol, image-eob)
7080 (image-mode-fit-frame): Use it (Bug#6639).
7081
7082 2010-07-27 Chong Yidong <cyd@stupidchicken.com>
7083
7084 * dired.el (dired-buffers-for-dir): Handle list values of
7085 dired-directory (Bug#6636).
7086
7087 2010-07-26 Sam Steingold <sds@gnu.org>
7088
7089 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
7090 Do not call `x-get-selection' the second time, reuse the value.
7091
7092 2010-07-26 Daiki Ueno <ueno@unixuser.org>
7093
7094 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
7095 which consist of control chars only. Suggested by Richard Stallman.
7096
7097 2010-07-25 Daiki Ueno <ueno@unixuser.org>
7098
7099 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
7100 exists before passing an error to find-file-not-found-functions
7101 (bug#6723).
7102
7103 2010-07-23 Lukas Huonker <l.huonker@gmail.com>
7104
7105 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
7106 Remove leading nil element, adjust values.
7107 (tetris-shapes, tetris-shape-scores):
7108 Change representation of shapes and remove some redundancy.
7109 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
7110 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
7111 Adjust for working with new representation of shapes.
7112 (tetris-shape-rotations): New function.
7113 (tetris-move-bottom, tetris-move-left, tetris-move-right)
7114 (tetris-rotate-prev, tetris-rotate-next):
7115 Adjust for working with the new version of tetris-test-shape.
7116
7117 2010-07-23 Markus Triska <markus.triska@gmx.at>
7118
7119 * progmodes/ps-mode.el: Use comint (bug#5954).
7120 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
7121 (ps-mode-other-newline): Simplify.
7122 (ps-run-mode): Derive from comint-mode instead of
7123 fundamental-mode, yielding input history etc.
7124 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
7125 (ps-run-send-string): Adapt for comint-mode.
7126 (ps-run-newline): Remove now unneeded function.
7127
7128 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
7129
7130 * net/tramp.el (tramp-methods): Move hostname to the end in all
7131 plink `tramp-login-args'.
7132
7133 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
7134
7135 * net/tramp.el (tramp-open-shell): New defun.
7136 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
7137 Use it.
7138
7139 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
7140
7141 * net/tramp.el (tramp-file-name-regexp-unified)
7142 (tramp-completion-file-name-regexp-unified): On W32 systems, do
7143 not regard the volume letter as remote filename. (Bug#5447)
7144
7145 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
7146
7147 * custom.el (custom-declare-variable): Give a clearer error message
7148 when the docstring is missing (bug#6476).
7149
7150 2010-07-22 Michael R. Mauger <mmaug@yahoo.com>
7151
7152 * progmodes/sql.el: Version 2.4. Improved Login prompting.
7153 (sql-login-params): New widget definition.
7154 (sql-oracle-login-params, sql-mysql-login-params)
7155 (sql-solid-login-params, sql-sybase-login-params)
7156 (sql-informix-login-params, sql-ingres-login-params)
7157 (sql-ms-login-params, sql-postgres-login-params)
7158 (sql-interbase-login-params, sql-db2-login-params)
7159 (sql-linter-login-params): Use it.
7160 (sql-sqlite-login-params): Use it; Define "database" parameter as
7161 a file name.
7162 (sql-sqlite-program): Change to "sqlite3".
7163 (sql-comint-sqlite): Make sure database name is complete.
7164 (sql-for-each-login): New function.
7165 (sql-connect, sql-save-connection): Use it.
7166 (sql-get-login-ext): New function.
7167 (sql-get-login): Use it.
7168 (sql-make-alternate-buffer-name): Handle :file parameters.
7169
7170 2010-07-22 Juanma Barranquero <lekktu@gmail.com>
7171
7172 * dired.el (dired-no-confirm): Document value t and fix defcustom to
7173 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
7174
7175 2010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
7176
7177 * dired.el (dired-mode-map): Use command remapping (bug#6632).
7178
7179 2010-07-22 Lawrence Mitchell <wence@gmx.li>
7180
7181 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
7182
7183 2010-07-21 Michael Albinus <michael.albinus@gmx.de>
7184
7185 * net/tramp.el (tramp-get-ls-command)
7186 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
7187 instead of "/".
7188
7189 2010-07-20 Michael R. Mauger <mmaug@yahoo.com>
7190
7191 * progmodes/sql.el: Version 2.3.
7192 (sql-connection-alist): Change keys from symbols to strings;
7193 enhanced the widget definition.
7194 (sql-mode-menu): Add submenu to select connections.
7195 (sql-interactive-mode-menu): Add "Save Connection" item.
7196 (sql-add-product): Fix menu item.
7197 (sql-get-product-feature): Improved error handling.
7198 (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
7199 (sql-make-alternate-buffer-name): Simplified.
7200 (sql-product-interactive): Handle missing product.
7201 (sql-connect): Support string keys, minor improvements.
7202 (sql-save-connection): New function.
7203 (sql-connection-menu-filter): New function.
7204
7205 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
7206
7207 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
7208 (tramp-open-connection-setup-interactive-shell):
7209 Apply workaround for IRIX64 bug. Move argument of last
7210 `tramp-send-command' where it belongs to.
7211
7212 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
7213
7214 * net/tramp.el (tramp-perl-file-attributes)
7215 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
7216 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
7217 front of `login-args'.
7218
7219 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
7220
7221 * time.el (display-time-world-mode): Define with `define-derived-mode'.
7222 Set `show-trailing-whitespace' to nil.
7223 (display-time-world-display): Simplify.
7224
7225 2010-07-18 Alan Mackenzie <acm@muc.de>
7226
7227 Enhance `c-file-style' in file/directory local variables.
7228 * progmodes/cc-mode.el (c-count-cfss): New function.
7229 (c-before-hack-hook): Call `c-set-style' differently according to
7230 whether c-file-style was set in file or directory local
7231 variables.
7232
7233 2010-07-18 Michael R. Mauger <mmaug@yahoo.com>
7234
7235 * progmodes/sql.el: Version 2.2.
7236 (sql-product, sql-user, sql-database, sql-server, sql-port):
7237 Use defcustom :safe keyword rather than putting safe-local-variable
7238 property.
7239 (sql-password): Use defcustom :risky keyword rather than putting
7240 risky-local-variable property.
7241 (sql-oracle-login-params, sql-sqlite-login-params)
7242 (sql-solid-login-params, sql-sybase-login-params)
7243 (sql-informix-login-params, sql-ingres-login-params)
7244 (sql-ms-login-params, sql-postgres-login-params)
7245 (sql-interbase-login-params, sql-db2-login-params)
7246 (sql-linter-login-params): Add `port' option.
7247 (sql-get-product-feature): Add NO-INDIRECT parameter.
7248 (sql-comint-oracle, sql-comint-sybase)
7249 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
7250 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
7251 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
7252 (sql-comint-linter): Rename sql-connect-* functions to
7253 sql-comint-*.
7254 (sql-product-alist, sql-mode-menu): Rename as above and
7255 :sqli-connect-func to :sqli-comint-func.
7256 (sql-connection): New variable.
7257 (sql-interactive-mode): Set it.
7258 (sql-connection-alist): New variable.
7259 (sql-connect): New function.
7260 (sql--alt-buffer-part, sql--alt-if-not-empty)
7261 (sql-make-alternate-buffer-name): Improved alternative buffer name.
7262
7263 2010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7264
7265 * image-mode.el (image-bookmark-make-record): Do not set context
7266 in an image (Bug#6650).
7267
7268 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
7269
7270 * simple.el (select-active-region): New function.
7271 (push-mark-command, set-mark, activate-mark)
7272 (handle-shift-selection): Use it.
7273 (deactivate-mark): Don't check for size of region.
7274
7275 * mouse.el (mouse-drag-track): Use select-active-region.
7276
7277 2010-07-17 Michael Albinus <michael.albinus@gmx.de>
7278
7279 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
7280 "--dired" stronger.
7281
7282 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
7283
7284 * term/x-win.el (x-select-enable-primary): Change default to nil.
7285 (x-select-enable-clipboard): Add :version keyword.
7286
7287 * mouse.el (mouse-drag-copy-region):
7288 * simple.el (select-active-regions): Likewise.
7289
7290 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
7291
7292 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
7293 (vc-coding-system-for-diff): Use it to decide whether to inherit
7294 from the file the EOL format for reading the diffs of that file.
7295 (Bug#4451)
7296
7297 2010-07-16 Eli Zaretskii <eliz@gnu.org>
7298
7299 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
7300 unibyte, so compressed attachments are not compressed again.
7301
7302 2010-07-16 Michael Albinus <michael.albinus@gmx.de>
7303
7304 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
7305 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
7306 (tramp-find-shell): Simplify setting connection property.
7307 (tramp-get-ls-command): Make test for "--color=never" stronger.
7308
7309 2010-07-15 Simon South <ssouth@member.fsf.org>
7310
7311 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
7312 blocks within record declarations (i.e. variant parts) correctly.
7313
7314 2010-07-15 Simon South <ssouth@member.fsf.org>
7315
7316 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
7317 over literal tokens when parsing so newlines aren't "absorbed" by
7318 single-line comments. Corrects the indentation of case blocks
7319 that have a comment on the first line.
7320
7321 2010-07-14 Karl Fogel <kfogel@red-bean.com>
7322
7323 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
7324 by Drew Adams (Bug#5504).
7325
7326 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
7327
7328 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
7329 now that Unicode is used (Bug#6594).
7330
7331 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
7332
7333 * term/x-win.el (x-select-enable-clipboard): Default to t.
7334 (x-initialize-window-system): Don't overwrite Paste menu item.
7335
7336 * simple.el (select-active-regions): Default to t.
7337 (push-mark-command): Don't overwrite primary with empty string.
7338
7339 * mouse.el: Bind mouse-2 to mouse-yank-primary.
7340 (mouse-drag-copy-region): Default to nil.
7341
7342 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
7343 Cut/Copy/Paste menu bar items.
7344
7345 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7346
7347 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
7348 Patch applied by Karl Fogel.
7349
7350 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
7351 and `bookmark-current-buffer' if they have been already set in
7352 another buffer (e.g gnus-art).
7353
7354 2010-07-13 Karl Fogel <kfogel@red-bean.com>
7355 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7356
7357 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
7358
7359 * bookmark.el (bookmark-make-record-default): Allow unneeded
7360 information to be omitted from the record.
7361
7362 Adjust declarations and calls:
7363
7364 * info.el (bookmark-make-record-default): Adjust declaration.
7365 (Info-bookmark-make-record): Adjust call.
7366
7367 * woman.el (bookmark-make-record-default): Adjust declaration.
7368 (woman-bookmark-make-record): Adjust call.
7369
7370 * man.el (bookmark-make-record-default): Adjust declaration.
7371 (Man-bookmark-make-record): Adjust call.
7372
7373 * image-mode.el (bookmark-make-record-default): Adjust declaration.
7374
7375 * doc-view.el (bookmark-make-record-default): Adjust declaration.
7376
7377 2010-07-13 Karl Fogel <kfogel@red-bean.com>
7378
7379 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
7380 This is also from Thierry Volpiatto's patch in bug #6444. However,
7381 because it was extraneous to the functional change in that patch,
7382 and causes a re-indendation, I am committing it separately.
7383
7384 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7385
7386 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
7387 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
7388 Patch applied by Karl Fogel (Bug#6444).
7389
7390 2010-07-13 Chong Yidong <cyd@stupidchicken.com>
7391
7392 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
7393
7394 2010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
7395
7396 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
7397 Dempsky; bug#5084). Remove incorrect binding for S-tab.
7398 (ns-alternatives-map): Change S-tab binding to backtab
7399 (bug#6616).
7400
7401 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
7402 under ns.
7403
7404 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
7405
7406 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
7407 (Bug#5806)
7408
7409 * language/tv-util.el (tai-viet-re): Remove format.
7410
7411 2010-07-12 Kenichi Handa <handa@m17n.org>
7412
7413 * language/hebrew.el: Remove no-byte-compile declaration.
7414 Change coding: tag to utf-8. Register hebrew-shape-gstring in
7415 composition-function-table for 3-character looking back.
7416 (hebrew-font-get-precomposed): New function.
7417 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
7418
7419 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
7420
7421 * mouse.el (mouse-drag-track): Handle select-active-regions
7422 (Bug#6612).
7423
7424 2010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
7425
7426 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
7427 empty argument to gvfs-copy.
7428
7429 2010-07-10 Glenn Morris <rgm@gnu.org>
7430
7431 * calendar/calendar.el (calendar-week-end-day): New function.
7432 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
7433 Respect calendar-week-start-day. (Bug#6606)
7434 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
7435 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
7436 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
7437 respect calendar-week-start-day.
7438
7439 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
7440
7441 * simple.el (use-region-p): Doc fix (Bug#6607).
7442
7443 2010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
7444
7445 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7446 Add regexps for cucumber and ruby.
7447
7448 2010-07-08 Daiki Ueno <ueno@unixuser.org>
7449
7450 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
7451 (epa-file-insert-file-contents): Hack to prevent
7452 find-file from opening empty buffer when decryption failed
7453 (bug#6568).
7454
7455 2010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
7456
7457 * textmodes/ispell.el (ispell-alternate-dictionary):
7458 Use file-readable-p.
7459 Return nil if no word-list is found at default locations.
7460 (ispell-complete-word-dict): Default to nil.
7461 (ispell-command-loop): Use 'word-list' when using lookup-words.
7462 (lookup-words): Use ispell-complete-word-dict or
7463 ispell-alternate-dictionary. Check for word-list availability
7464 and handle errors if needed with better messages (Bug#6539).
7465 (ispell-complete-word): Use ispell-complete-word-dict or
7466 ispell-alternate-dictionary.
7467
7468 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
7469
7470 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
7471 builtins (BufferError, BytesWarning, WindowsError; callables
7472 bin, bytearray, bytes, format, memoryview, next, print; __package__).
7473
7474 2010-07-07 Glenn Morris <rgm@gnu.org>
7475
7476 * play/zone.el (top-level): Do not require timer, tabify, or cl.
7477 (zone-shift-left): Ignore intangibility, and any errors from
7478 forward-char.
7479 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
7480 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
7481 deleting, and copying text properties.
7482 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
7483 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
7484 to point-max is hard.
7485 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
7486 (zone-fill-out-screen): Ignore intangibility.
7487
7488 2010-07-05 Chong Yidong <cyd@stupidchicken.com>
7489
7490 * menu-bar.el (menu-bar-mode):
7491 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
7492 if it has been set.
7493
7494 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
7495 word/line selection (Bug#6565).
7496
7497 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
7498
7499 * net/dbus.el (dbus-send-signal): Declare function.
7500
7501 2010-07-04 Michael Albinus <michael.albinus@gmx.de>
7502
7503 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
7504 (dbus-register-property): New optional argument EMITS-SIGNAL.
7505 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
7506
7507 2010-07-03 Chong Yidong <cyd@stupidchicken.com>
7508
7509 * mouse.el (mouse-drag-overlay): Variable deleted.
7510 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
7511 (mouse--remap-link-click-p): New function.
7512 (mouse-drag-track): Handle dragging by using temporary Transient
7513 Mark mode, instead of a special overlay.
7514 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
7515 mouse-show-mark.
7516
7517 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
7518 deleted.
7519
7520 2010-07-02 Juri Linkov <juri@jurta.org>
7521
7522 * autoinsert.el (auto-insert-alist): Fix readability
7523 by using dotted pair notation for lambda.
7524
7525 2010-07-02 Juri Linkov <juri@jurta.org>
7526
7527 * faces.el (read-face-name): Rename arg `string-describing-default'
7528 to `default'. Doc fix. Display the default value in quotes
7529 in the prompt. With empty input, return the `default' arg,
7530 unless the default value is a string (in which case return nil).
7531 (describe-face): Replace the string `default' arg of `read-face-name'
7532 with the symbol `default'.
7533
7534 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
7535
7536 * emulation/viper-cmd.el (viper-delete-backward-char)
7537 (viper-del-backward-char-in-insert)
7538 (viper-del-backward-char-in-replace, viper-change)
7539 (viper-backward-indent): Replace delete-backward-char with
7540 delete-char (Bug#6552).
7541
7542 2010-07-01 Chong Yidong <cyd@stupidchicken.com>
7543
7544 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
7545
7546 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
7547
7548 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
7549 argument passed to frame-creation-function (Bug#5378).
7550
7551 * faces.el (x-handle-named-frame-geometry)
7552 (x-handle-reverse-video, x-create-frame-with-faces)
7553 (face-set-after-frame-default, tty-create-frame-with-faces):
7554 Don't separately consult default-frame-alist. It is now passed as the
7555 PARAMETER argument.
7556
7557 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
7558
7559 * startup.el (command-line): Don't call tool-bar-setup in a
7560 tty-only build.
7561
7562 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
7563
7564 * ruler-mode.el (ruler--save-header-line-format): New fun.
7565 (ruler-mode): Use it as a setter function, so as not to overwrite
7566 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
7567
7568 2010-06-29 Chong Yidong <cyd@stupidchicken.com>
7569
7570 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
7571 (vc-root-diff, vc-print-root-log, vc-log-incoming)
7572 (vc-log-outgoing): Use it.
7573 (vc-diff-internal): Set diff-vc-backend.
7574
7575 * vc/diff-mode.el (diff-vc-backend): New var.
7576
7577 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
7578
7579 * dynamic-setting.el (font-setting-change-default-font):
7580 Remove call to message.
7581
7582 2010-06-28 Kenichi Handa <handa@m17n.org>
7583
7584 * international/quail.el (quail-insert-kbd-layout): Fix the
7585 showing of untranslated characters.
7586
7587 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
7588
7589 * simple.el (delete-active-region): New option.
7590 (delete-backward-char): Implement in Lisp.
7591 (delete-forward-char): New command.
7592
7593 * mouse.el (mouse-region-delete-keys): Deleted.
7594 (mouse-show-mark): Simplify.
7595
7596 * bindings.el (global-map): Bind delete and DEL, the former to
7597 delete-forward-char.
7598
7599 2010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
7600
7601 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
7602 (ruby-mode): Bind indent-line-function (Bug#5119).
7603
7604 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
7605
7606 * startup.el (command-line): Recognize "0" X resource value.
7607
7608 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
7609
7610 * startup.el (command-line): Use X resources to set the value of
7611 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
7612
7613 * menu-bar.el (menu-bar-mode):
7614 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
7615 Set init-value to t.
7616
7617 * frame.el (frame-notice-user-settings): Don't change
7618 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
7619 vice versa (Bug#2249).
7620
7621 2010-06-26 Eli Zaretskii <eliz@gnu.org>
7622
7623 * w32-fns.el (w32-convert-standard-filename): Doc fix.
7624
7625 2010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
7626
7627 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
7628 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
7629
7630 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
7631 default directories are expanded (Bug#6143).
7632
7633 2010-06-24 Juri Linkov <juri@jurta.org>
7634
7635 * minibuffer.el (completions-format): Change default from nil to
7636 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
7637
7638 2010-06-24 Juri Linkov <juri@jurta.org>
7639
7640 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
7641 buffer-locally to lambda that re-runs the vc diff command.
7642 (Bug#6447)
7643
7644 2010-06-24 Chong Yidong <cyd@stupidchicken.com>
7645
7646 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
7647 echo area is in use (Bug#3412).
7648
7649 2010-06-22 Glenn Morris <rgm@gnu.org>
7650
7651 * textmodes/texinfmt.el (texinfo-format-region)
7652 (texinfo-raise-lower-sections, texinfo-format-separate-node)
7653 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
7654 (texinfo-format-option, texinfo-noindent):
7655 Use line-beginning-position and line-end-position.
7656
7657 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
7658 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
7659 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
7660 utf-8 characters.
7661
7662 2010-06-21 Karl Fogel <kfogel@red-bean.com>
7663
7664 * play/zone.el (zone-fall-through-ws): Fix next-line ->
7665 forward-line fallout.
7666
7667 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
7668
7669 * mouse.el (mouse-appearance-menu): Add docstring.
7670
7671 * help.el (describe-key): Print up-event using key-description.
7672
7673 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
7674
7675 * net/zeroconf.el (zeroconf-resolve-service)
7676 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
7677 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
7678
7679 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
7680
7681 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
7682
7683 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
7684
7685 Avoid displaying files with a nil state in vc-dir.
7686 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
7687 cases that cause insertion.
7688 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
7689 with a nil state.
7690
7691 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
7692
7693 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
7694
7695 2010-06-29 Leo <sdl.web@gmail.com>
7696
7697 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
7698
7699 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
7700
7701 * generic-x.el (bat-generic-mode): Fix regexp for command line
7702 switches (Bug#5719).
7703
7704 2010-06-27 Masatake YAMATO <yamato@redhat.com>
7705
7706 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
7707 of nconc to avoid pure storage error (Bug#6239).
7708
7709 2010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
7710
7711 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
7712 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
7713 bindings of bookmark-automatically-show-annotations (Bug#6515).
7714
7715 2010-06-25 Eli Zaretskii <eliz@gnu.org>
7716
7717 * arc-mode.el (archive-zip-extract): Don't quote the file name on
7718 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
7719
7720 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
7721
7722 * comint.el (make-comint, make-comint-in-buffer): Mention return
7723 value in the docstrings. (Bug#6498)
7724
7725 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
7726
7727 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
7728 since it is not present when using some non-default switches.
7729
7730 2010-06-23 Karl Fogel <kfogel@red-bean.com>
7731
7732 * simple.el (compose-mail): Fix doc string to refer to
7733 `compose-mail-user-agent-warnings', instead of to the
7734 nonexistent `compose-mail-check-user-agent'.
7735
7736 2010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
7737
7738 Fix an indentation bug:
7739
7740 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
7741 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
7742 of existing values.
7743
7744 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
7745 (c-clear->-pair-props-if-match-before): now return t when they've
7746 cleared properties, nil otherwise.
7747 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
7748 by taking account of the existing value.
7749
7750 * progmodes/cc-defs.el
7751 (c-clear-char-property-with-value-function): Fix this to clear the
7752 property rather than overwriting it with nil.
7753
7754 2010-06-20 Chong Yidong <cyd@stupidchicken.com>
7755
7756 * emacs-lisp/package.el (package-print-package): Add link to
7757 package description via describe-package.
7758 (describe-package-1): List package requirements. Add button to
7759 perform installation.
7760 (package-menu-describe-package): New command.
7761
7762 * help-mode.el (help-package): New button type.
7763
7764 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
7765
7766 * emacs-lisp/package.el: Move package-list-packages binding to
7767 menu-bar.el.
7768 (describe-package, describe-package-1, package--dir): New funs.
7769 (package-activate-1): Use package--dir.
7770
7771 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
7772
7773 * help-mode.el (help-package-def): New button type.
7774
7775 * menu-bar.el: Move package-list-packages binding here from
7776 package.el.
7777
7778 2010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
7779
7780 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
7781
7782 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
7783
7784 * emacs-lisp/edebug.el (edebug-read-list):
7785 Phase out old-style backquotes.
7786
7787 2010-06-17 Juri Linkov <juri@jurta.org>
7788
7789 * help-mode.el (help-mode): Set buffer-local variable
7790 revert-buffer-function to help-mode-revert-buffer.
7791 (help-mode-revert-buffer): New function.
7792
7793 * info.el (Info-revert-find-node): Check for major-mode Info-mode
7794 before popping to "*info*" (like in other Info functions).
7795 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
7796 old-history-forward. Pop to old-buffer-name or "*info*" to
7797 recreate the killed buffer. Set Info-history-forward from
7798 old-history-forward.
7799 (Info-breadcrumbs-depth): Add :group and :version.
7800
7801 2010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
7802
7803 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
7804
7805 2010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
7806
7807 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
7808 for languages like Portuguese with pt_{BR,PT} and no plain pt.
7809
7810 2010-06-17 Juanma Barranquero <lekktu@gmail.com>
7811
7812 * emacs-lisp/package.el (package-menu-mode-map):
7813 Move initialization into declaration.
7814
7815 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
7816
7817 2010-06-17 Chong Yidong <cyd@stupidchicken.com>
7818
7819 * emacs-lisp/package.el (package-archive-base): Point to
7820 elpa.gnu.org.
7821 (package-enable, package-load-list): New defcustoms.
7822 (package-user-dir, package-directory-list): Turn into defcustoms.
7823 Don't include package-user-dir in package-directory-list.
7824 (package--builtins-base): Don't include Emacs as a "package".
7825 (package-subdirectory-regexp): New var.
7826 (package-load-all-descriptors, package-compute-transaction)
7827 (package-download-transaction): Obey package-load-list.
7828 (package-activate-1): Rename from package-do-activate.
7829 (package-list-packages-internal): Check package-load-list.
7830 (package-load-descriptor, package-generate-autoloads)
7831 (package-unpack, package-unpack-single)
7832 (package--read-archive-file, package-delete):
7833 Use expand-file-name.
7834
7835 * emacs-lisp/package-x.el: New file. Package uploading
7836 functionality split out from package.el.
7837
7838 * startup.el (command-line): Load packages after reading init file.
7839
7840 2010-06-17 Tom Tromey <tromey@redhat.com>
7841
7842 * emacs-lisp/package.el: New file.
7843
7844 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
7845
7846 Fix vc-annotate for renamed files when using Git.
7847 * vc/vc-git.el (vc-git-find-revision): Deal with empty results from
7848 ls-files. Doe not pass the object as a file name to cat-file, it
7849 is not a file name.
7850 (vc-git-annotate-command): Pass the file name using -- to avoid
7851 ambiguity with the revision.
7852 (vc-git-previous-revision): Pass a relative file name.
7853
7854 2010-06-22 Glenn Morris <rgm@gnu.org>
7855
7856 * progmodes/js.el (js-mode-map): Use standard capitalization and
7857 ellipses for menu entries.
7858
7859 * wid-edit.el (widget-complete): Doc fix.
7860
7861 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
7862
7863 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
7864
7865 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
7866
7867 Fix annotating other revisions for renamed files in vc-annotate.
7868 * vc/vc-annotate.el (vc-annotate): Add an optional argument for the
7869 VC backend. Use it when non-nil.
7870 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
7871 (Bug#6487).
7872
7873 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
7874 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
7875 Do not pass the file name to the 'previous-revision call when we
7876 don't want a file diff. (Bug#6489)
7877
7878 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
7879
7880 Fix finding revisions for renamed files in vc-annotate.
7881 * vc/vc.el (vc-find-revision): Add an optional argument for
7882 the VC backend. Use it when non-nil.
7883 * vc/vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
7884 backend to vc-find-revision. (Bug#6487)
7885
7886 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
7887
7888 Fix reading file names in Git annotate buffers.
7889 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line):
7890 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
7891
7892 2010-06-20 Alan Mackenzie <acm@muc.de>
7893
7894 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
7895 in file local variables, set it first.
7896
7897 2010-06-19 Glenn Morris <rgm@gnu.org>
7898
7899 * descr-text.el (describe-char-unicode-data): Insert separating
7900 space when needed. (Bug#6422)
7901
7902 * progmodes/idlwave.el (idlwave-action-and-binding):
7903 Fix typo in 2009-12-03 change. (Bug#6450)
7904
7905 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
7906
7907 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
7908 handling for `lambda' (misunderstanding).
7909
7910 2010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
7911
7912 * calc/calc-poly.el (math-accum-factors): Make sure that
7913 constants aren't distributed after they are factored out.
7914
7915 2010-06-16 Juri Linkov <juri@jurta.org>
7916
7917 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
7918 `list-colors-print'. (Bug#6332)
7919
7920 * subr.el (read-quoted-char): Fix up last change (bug#6290).
7921
7922 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
7923
7924 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
7925 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
7926
7927 * font-lock.el (font-lock-major-mode): Rename from
7928 font-lock-mode-major-mode to distinguish it from
7929 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
7930 (font-lock-set-defaults):
7931 * font-core.el (font-lock-default-function): Adjust users.
7932 (font-lock-mode): Don't set it at all.
7933
7934 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
7935
7936 * vc/vc-annotate.el (vc-annotate): Use vc-read-revision.
7937
7938 2010-06-16 Glenn Morris <rgm@gnu.org>
7939
7940 * calendar/appt.el (appt-time-msg-list): Doc fix.
7941 (appt-check): Let-bind appt-warn-time.
7942 (appt-add): Make the 3rd argument optional.
7943 Simplify argument names. Doc fix. Check for integer WARNTIME.
7944 Only add WARNTIME to the output list if non-nil.
7945
7946 2010-06-16 Ivan Kanis <apple@kanis.eu>
7947
7948 * calendar/appt.el (appt-check): Let the 3rd element of
7949 appt-time-msg-list specify the warning time.
7950 (appt-add): Add new argument with the warning time. (Bug#5176)
7951
7952 2010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
7953
7954 * vc/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
7955 older than version 1.6. (Bug#6361)
7956
7957 2010-06-16 Helmut Eller <eller.helmut@gmail.com>
7958
7959 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
7960 used by cl-do-arglist. (Bug#6408)
7961
7962 2010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
7963
7964 * textmodes/ispell.el (ispell-dictionary-base-alist):
7965 Fix portuguese casechars/not-casechars for missing 'çÇ'.
7966 Suggested by Rolando Pereira (bug#6434).
7967
7968 2010-06-15 Juanma Barranquero <lekktu@gmail.com>
7969
7970 * facemenu.el (list-colors-sort): Doc fix.
7971
7972 2010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
7973
7974 * progmodes/sql.el (sql-connect-mysql): Fix typo.
7975
7976 2010-06-14 Juri Linkov <juri@jurta.org>
7977
7978 Add sort option `list-colors-sort'. (Bug#6332)
7979 * facemenu.el (color-rgb-to-hsv): New function.
7980 (list-colors-sort): New defcustom.
7981 (list-colors-sort-key): New function.
7982 (list-colors-display): Doc fix. Sort list according to the option
7983 `list-colors-sort'.
7984 (list-colors-print): Add HSV values to `help-echo' property of
7985 RGB strings.
7986
7987 2010-06-14 Juri Linkov <juri@jurta.org>
7988
7989 * compare-w.el: Move to the "vc" subdirectory.
7990
7991 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
7992
7993 * image-mode.el (image-mode-map): Remap left-char and right-char.
7994
7995 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
7996
7997 2010-06-12 Chong Yidong <cyd@stupidchicken.com>
7998
7999 * term/common-win.el (x-colors): Add all the color names defined
8000 in rgb.txt (Bug#6332).
8001
8002 * facemenu.el (list-colors-print): Don't print extra names if it
8003 will overflow the window width.
8004
8005 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
8006 change (Bug#6343).
8007
8008 2010-06-12 Eli Zaretskii <eliz@gnu.org>
8009
8010 * files.el (make-directory): Doc fix (bug#6396).
8011
8012 2010-06-12 Michael Albinus <michael.albinus@gmx.de>
8013
8014 * net/tramp.el (tramp-remote-process-environment): Protect version
8015 string by apostroph.
8016 (tramp-shell-prompt-pattern): Do not use a shy group in case of
8017 XEmacs.
8018 (tramp-file-name-for-operation): Add `call-process-region'.
8019 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
8020
8021 * net/tramp-compat.el (top): Do not autoload
8022 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
8023 only when `start-file-process' is not bound.
8024 (tramp-advice-file-expand-wildcards): Do not use
8025 `tramp-handle-file-remote-p'.
8026 (tramp-compat-make-temp-file): Handle the case, that
8027 `make-temp-file' has no third argument EXTENSION.
8028
8029 2010-06-11 Juanma Barranquero <lekktu@gmail.com>
8030
8031 * makefile.w32-in (WINS_BASIC): Include new directory vc.
8032
8033 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
8034
8035 2010-06-11 Juri Linkov <juri@jurta.org>
8036
8037 * finder.el (finder-known-keywords): Add keyword "vc"
8038 for version control.
8039
8040 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
8041 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
8042 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
8043 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
8044
8045 2010-06-11 Juri Linkov <juri@jurta.org>
8046
8047 Move version control related files to the "vc" subdirectory.
8048 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
8049 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
8050 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
8051 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
8052 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
8053 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
8054 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
8055 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
8056 Move files to the "vc" subdirectory.
8057
8058 2010-06-11 Chong Yidong <cyd@stupidchicken.com>
8059
8060 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
8061 (Bug#6367).
8062
8063 2010-06-11 Stephen Eglen <stephen@gnu.org>
8064
8065 * shell.el: Bind `shell-resync-dirs' to M-RET.
8066
8067 2010-06-10 Michael Albinus <michael.albinus@gmx.de>
8068
8069 * notifications.el: Move file from lisp/net, because it is
8070 supposed to talk locally to the user.
8071
8072 2010-06-10 Julien Danjou <julien@danjou.info>
8073
8074 * net/notifications.el (notifications-on-action-signal)
8075 (notifications-on-closed-signal): Pass notification id as first
8076 argument to the callback functions. Add docstrings.
8077 (notifications-notify): Fix docstring.
8078
8079 2010-06-10 Glenn Morris <rgm@gnu.org>
8080
8081 * emacs-lisp/authors.el (authors-ignored-files)
8082 (authors-valid-file-names): Add some files.
8083
8084 2010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
8085
8086 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
8087 merge conflict, giving preference to the emacs-23 version of the code.
8088
8089 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
8090
8091 * emacs-lisp/advice.el (ad-compile-function):
8092 Define warning-suppress-types before we let-bind it (bug#6275).
8093
8094 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
8095 declare it, make it buffer-local and permanent-local (bug#6324).
8096 (vc-resynch-window): Adjust name.
8097 * vc-hooks.el (vc-find-file-hook): Adjust name.
8098
8099 2010-06-09 Michael Albinus <michael.albinus@gmx.de>
8100
8101 * net/notifications.el (notifications-notify): Fix docstring.
8102
8103 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
8104
8105 Update to Unicode 6.0.0 beta.
8106 * international/charprop.el: Update copyright.
8107 * international/mule-cmds.el (ucs-names): Update character ranges.
8108 * international/uni-bidi.el:
8109 * international/uni-category.el:
8110 * international/uni-combining.el:
8111 * international/uni-comment.el:
8112 * international/uni-decimal.el:
8113 * international/uni-decomposition.el:
8114 * international/uni-digit.el:
8115 * international/uni-lowercase.el:
8116 * international/uni-mirrored.el:
8117 * international/uni-name.el:
8118 * international/uni-numeric.el:
8119 * international/uni-old-name.el:
8120 * international/uni-titlecase.el:
8121 * international/uni-uppercase.el: Regenerate.
8122
8123 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
8124
8125 * emacs-lisp/smie.el (comment-string-strip): Declare function.
8126 (smie-precs-precedence-table): Fix typo in docstring.
8127
8128 * vc-mtn.el (log-edit-extract-headers): Declare function.
8129
8130 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
8131
8132 * net/notifications.el (dbus-register-signal): Declare function.
8133 (notifications-notify): Fix typos and reflow docstring.
8134
8135 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
8136
8137 Improve VC create/retrieve tag/branch.
8138 * vc.el (vc-create-tag): Do not read the directory name for VCs
8139 with repository revision granularity. Adjust the tag/branch
8140 prompt. Reset VC properties.
8141 (vc-retrieve-tag): Do not read the directory name for VCs
8142 with repository revision granularity. Reset VC properties.
8143
8144 2010-06-09 Julien Danjou <julien@danjou.info>
8145
8146 * net/notifications.el: New file.
8147
8148 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
8149
8150 Add optional support for resetting VC properties.
8151 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
8152 call vc-file-clearprops when true.
8153 (vc-resynch-buffer): Add new optional argument, pass it down.
8154 (vc-resynch-buffers-in-directory): Likewise.
8155
8156 Improve support for special markup in the VC commit message.
8157 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
8158 * vc-hg.el (vc-hg-checkin): Add support for Date:.
8159 * vc-git.el (vc-git-checkin):
8160 * vc-bzr.el (vc-bzr-checkin): Likewise.
8161
8162 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
8163
8164 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
8165 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
8166
8167 2010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
8168
8169 * iimage.el: Remove images as soon as the underlying text is modified.
8170 (iimage-modification-hook): New function.
8171 (iimage-mode-buffer): Use it.
8172
8173 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
8174
8175 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
8176 smie-indent-offset-after. Add :prev case. Make a bit more generic.
8177 (smie-indent-virtual): Remove `virtual' arg. Update callers.
8178 (smie-indent-keyword): Add handling of open-paren keywords.
8179 (smie-indent-comment-continue): Don't assume comment-continue.
8180
8181 2010-06-07 Martin Rudalics <rudalics@gmx.at>
8182
8183 * window.el (pop-to-buffer): Remove the conditional that
8184 compares new-window and old-window, so it will reselect
8185 the selected window unconditionally.
8186 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
8187
8188 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
8189
8190 * emacs-lisp/smie.el (smie-indent-offset-after)
8191 (smie-indent-forward-token, smie-indent-backward-token): New functions.
8192 (smie-indent-after-keyword): Use them.
8193 (smie-indent-fixindent): Only applies to the indentation of the BOL.
8194 (smie-indent-keyword): Tweak the black magic.
8195 (smie-indent-comment-continue): Strip comment-continue before use.
8196 (smie-indent-functions): Indent comments before keywords.
8197
8198 2010-06-06 Juri Linkov <juri@jurta.org>
8199
8200 * isearch.el (isearch-lazy-highlight-search): Fix looping
8201 by checking for empty match. This syncs this loop with the
8202 similar loop in `isearch-search'. (Bug#6362)
8203
8204 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
8205
8206 * net/dbus.el (dbus-register-method): Declare function.
8207 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
8208 (dbus-introspect): Doc fix.
8209 (dbus-event-bus-name, dbus-introspect-get-interface)
8210 (dbus-introspect-get-argument): Reflow docstrings.
8211
8212 2010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
8213
8214 vc-log-incoming/vc-log-outgoing fixes for Git.
8215 * vc-git.el (vc-git-log-view-mode): Fix font lock for
8216 incoming/outgoing logs.
8217 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
8218 instead of vc-git-compute-remote.
8219 (vc-git-compute-remote): Remove.
8220
8221 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
8222
8223 * term/common-win.el (x-colors): Add "dark green" and "dark
8224 turquoise" (Bug#6332).
8225
8226 2010-06-04 Juri Linkov <juri@jurta.org>
8227
8228 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
8229 Instead of setting `replace' to t and replacing the same string
8230 with itself, don't do certain actions when
8231 kill-do-not-save-duplicates is non-nil and string is equal to car
8232 of kill-ring: don't call menu-bar-update-yank-menu, don't push
8233 interprogram-paste strings to kill-ring, and don't push the input
8234 argument `string' to kill-ring.
8235 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
8236
8237 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
8238
8239 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
8240
8241 2010-06-04 Michael Albinus <michael.albinus@gmx.de>
8242
8243 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
8244 (tramp-gvfs-handler-mounted-unmounted)
8245 (tramp-gvfs-connection-mounted-p): Handle default-location.
8246
8247 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
8248 move files to trash.
8249
8250 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
8251
8252 * international/mule-cmds.el (nonascii-insert-offset)
8253 (nonascii-translation-table): Add obsolescence information.
8254
8255 * international/mule.el (make-translation-table-from-vector): Doc fix.
8256
8257 2010-06-03 Glenn Morris <rgm@gnu.org>
8258
8259 * desktop.el (desktop-clear-preserve-buffers):
8260 Add "*Warnings*" buffer. (Bug#6336)
8261
8262 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
8263
8264 vc-log-incoming/vc-log-outgoing improvements for Git.
8265 * vc-git.el (vc-git-log-outgoing): Use the same format as the
8266 short log.
8267 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
8268
8269 Add bindings for vc-log-incoming and vc-log-outgoing.
8270 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
8271 and vc-log-outgoing.
8272 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
8273 and vc-log-outgoing.
8274
8275 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
8276
8277 * net/rcirc.el (rcirc-sort-nicknames): Remove.
8278 (rcirc-handler-366): Always sort nicknames.
8279
8280 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
8281
8282 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
8283
8284 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
8285
8286 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
8287
8288 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
8289
8290 * net/rcirc.el (rcirc-sort-nicknames): Change default.
8291 (rcirc-sort-nicknames-join): Avoid setq.
8292
8293 2010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
8294
8295 * net/rcirc.el (rcirc-sort-nicknames): New custom.
8296 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
8297 (rcirc-handler-366): Use them.
8298
8299 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
8300
8301 Split smie-indent-calculate into more manageable chunks.
8302 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
8303 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
8304 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
8305 (smie-indent-exps): Extract from smie-indent-calculate.
8306 (smie-indent-functions): New var.
8307 (smie-indent-functions): Use them.
8308
8309 2010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
8310
8311 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
8312 (smie-indent-calculate): Simplify and cleanup.
8313
8314 2010-06-02 Michael Albinus <michael.albinus@gmx.de>
8315
8316 * net/tramp-gvfs.el (top): Require url-util.
8317 (tramp-gvfs-mount-point): Remove.
8318 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
8319 New defuns.
8320 (with-tramp-dbus-call-method): Format trace message.
8321 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
8322 Implement backup call, when operation on local files fails.
8323 Use progress reporter. Flush properties of changed files.
8324 (tramp-gvfs-handle-make-directory): Make more traces.
8325 (tramp-gvfs-url-file-name): Hexify file name in url.
8326 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
8327 into account for the resulting file name.
8328 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
8329 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
8330 (tramp-gvfs-handler-mounted-unmounted)
8331 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
8332 attribute "default_location". Set "prefix" property.
8333 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
8334 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
8335 exists. Raise an error, if not (due to a corresponding answer
8336 "no" in interactive questions, for example).
8337
8338 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
8339
8340 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
8341
8342 2010-06-01 Juanma Barranquero <lekktu@gmail.com>
8343
8344 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
8345 right-*. (Bug#6265)
8346
8347 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
8348
8349 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
8350 * vc-git.el (vc-git-compute-remote): New function.
8351 (vc-git-log-outgoing): Use it instead of hard coding a value.
8352 (vc-git-log-incoming): New function.
8353
8354 Improve state updating for VC tag commands.
8355 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
8356 to update the state of all buffers in the directory.
8357
8358 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
8359
8360 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
8361
8362 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
8363 `file-directory-p' to the filename part rather than to the whole text.
8364
8365 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
8366
8367 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
8368
8369 2010-05-31 Drew Adams <drew.adams@oracle.com>
8370
8371 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
8372
8373 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
8374
8375 * subr.el (momentary-string-display): Just use read-event to read
8376 the exit event (Bug#6238).
8377
8378 2010-05-30 Eli Zaretskii <eliz@gnu.org>
8379
8380 * international/mule.el (define-coding-system): Doc fix (bug#6313).
8381
8382 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
8383
8384 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
8385 Suggested by Eli Zaretskii <eliz@gnu.org>.
8386
8387 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
8388
8389 * minibuffer.el (completion-file-name-table): Don't return a boundary
8390 past the end of `string' (bug#6299).
8391 (completion--file-name-table): Delegate to completion-file-name-table
8392 for the `boundaries' case.
8393
8394 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
8395
8396 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
8397 movement commands.
8398
8399 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
8400 `path-separator', but maintain compatibility with Emacs 20.2.
8401
8402 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
8403
8404 * server.el (server-process-filter): Receive parent-id argument
8405 from emacsclient.
8406 (server-create-window-system-frame): New arg. Pass parent-id as
8407 frame parameter.
8408
8409 2010-05-29 Eli Zaretskii <eliz@gnu.org>
8410
8411 Bidi-sensitive word movement with arrow keys.
8412 * subr.el (right-arrow-command, left-arrow-command): Move to
8413 bindings.el.
8414
8415 * bindings.el (right-char, left-char): Move from subr.el and
8416 rename from right-arrow-command and left-arrow-command.
8417 (right-word, left-word): New functions.
8418 (global-map) <right>: Bind to right-char.
8419 (global-map) <left>: Bind to left-char.
8420 (global-map) <C-right>: Bind to right-word.
8421 (global-map) <C-left>: Bind to left-word.
8422
8423 * ls-lisp.el (ls-lisp-classify-file): New function.
8424 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
8425 (ls-lisp-classify): Call ls-lisp-classify-file.
8426 (insert-directory): Remove blanks from switches.
8427
8428 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
8429
8430 * ansi-color.el: Delete unused escape sequences (Bug#6085).
8431 (ansi-color-drop-regexp): New constant.
8432 (ansi-color-apply, ansi-color-filter-region)
8433 (ansi-color-apply-on-region): Delete unrecognized control sequences.
8434 (ansi-color-apply): Build string list before calling concat.
8435
8436 2010-05-28 Juri Linkov <juri@jurta.org>
8437
8438 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
8439 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
8440 (Bug#5270)
8441
8442 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
8443
8444 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
8445 to ignored backtrace functions.
8446 (with-progress-reporter): Expand docstring.
8447 (tramp-handle-delete-file): Implement TRASH argument.
8448 (tramp-get-remote-trash): New defun.
8449
8450 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
8451
8452 * net/tramp-compat.el (tramp-compat-delete-file):
8453 Use `symbol-value' for backward compatibility.
8454
8455 * net/tramp.el (tramp-handle-make-symbolic-link)
8456 (tramp-handle-load)
8457 (tramp-do-copy-or-rename-file-via-buffer)
8458 (tramp-do-copy-or-rename-file-directly)
8459 (tramp-do-copy-or-rename-file-out-of-band)
8460 (tramp-handle-process-file, tramp-handle-call-process-region)
8461 (tramp-handle-shell-command, tramp-handle-file-local-copy)
8462 (tramp-handle-insert-file-contents, tramp-handle-write-region)
8463 (tramp-delete-temp-file-function): Use `delete-file' instead
8464 of `tramp-compat-delete-file'.
8465
8466 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
8467 (tramp-fish-handle-make-symbolic-link)
8468 (tramp-fish-handle-process-file): Use `delete-file' instead
8469 of `tramp-compat-delete-file'.
8470
8471 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
8472 Use `delete-file' instead of `tramp-compat-delete-file'.
8473
8474 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
8475 (tramp-gvfs-handle-write-region): Use `delete-file' instead of
8476 `tramp-compat-delete-file'.
8477
8478 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file):
8479 Use `delete-file' instead of `tramp-compat-delete-file'.
8480
8481 * net/tramp-smb.el (tramp-smb-handle-copy-file)
8482 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
8483 (tramp-smb-handle-write-region): Use `delete-file' instead of
8484 `tramp-compat-delete-file'.
8485 (tramp-smb-handle-delete-directory): Use 'trash as arg.
8486
8487 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8488
8489 * dired.el (dired-delete-file): New arg TRASH.
8490 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
8491 (dired-do-flagged-delete, dired-do-delete): Use trash.
8492
8493 * speedbar.el (speedbar-item-delete): Allow trashing.
8494
8495 * files.el (delete-directory): New arg TRASH.
8496
8497 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
8498 (ange-ftp-rename-remote-to-remote)
8499 (ange-ftp-rename-local-to-remote)
8500 (ange-ftp-rename-remote-to-local, ange-ftp-load)
8501 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
8502 `delete-file'.
8503 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
8504 allow trashing.
8505
8506 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
8507 handle new TRASH arg of `delete-file'.
8508
8509 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
8510 (tramp-handle-make-symbolic-link, tramp-handle-load)
8511 (tramp-do-copy-or-rename-file-via-buffer)
8512 (tramp-do-copy-or-rename-file-directly)
8513 (tramp-do-copy-or-rename-file-out-of-band)
8514 (tramp-handle-process-file, tramp-handle-call-process-region)
8515 (tramp-handle-shell-command, tramp-handle-file-local-copy)
8516 (tramp-handle-insert-file-contents, tramp-handle-write-region)
8517 (tramp-delete-temp-file-function): Use null TRASH arg in
8518 tramp-compat-delete-file call.
8519
8520 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
8521 (tramp-fish-handle-delete-file)
8522 (tramp-fish-handle-make-symbolic-link)
8523 (tramp-fish-handle-process-file): Use null TRASH arg in
8524 `tramp-compat-delete-file' call.
8525
8526 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
8527 arg in `tramp-compat-delete-file' call.
8528
8529 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
8530 (tramp-gvfs-handle-write-region): Use null TRASH arg in
8531 `tramp-compat-delete-file' call.
8532
8533 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
8534 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
8535 `tramp-compat-delete-file' call.
8536
8537 * net/tramp-smb.el (tramp-smb-handle-copy-file)
8538 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
8539 (tramp-smb-handle-write-region): Use null TRASH arg in
8540 tramp-compat-delete-file call.
8541 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
8542 (tramp-smb-handle-delete-file): Rename arg.
8543
8544 * diff.el (diff-sentinel):
8545 * epg.el (epg--make-temp-file, epg-decrypt-string)
8546 (epg-verify-string, epg-sign-string, epg-encrypt-string):
8547 * jka-compr.el (jka-compr-partial-uncompress)
8548 (jka-compr-call-process, jka-compr-write-region):
8549 * server.el (server-sentinel): Remove optional arg from
8550 delete-file, reverting 2010-05-03 change.
8551
8552 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8553
8554 * progmodes/verilog-mode.el (verilog-type-font-keywords):
8555 Use font-lock-constant-face, not obsolete font-lock-reference-face.
8556
8557 2010-05-27 Kenichi Handa <handa@m17n.org>
8558
8559 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
8560 element of GSTRING is nil.
8561
8562 2010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
8563
8564 * emacs-lisp/smie.el (smie-forward-token-function)
8565 (smie-backward-token-function): New vars.
8566 (smie-backward-sexp, smie-forward-sexp)
8567 (smie-indent-hanging-p, smie-indent-calculate): Use them.
8568 (smie-default-backward-token): Rename from smie-backward-token and
8569 skip comments.
8570 (smie-default-forward-token): Rename from smie-forward-token and
8571 skip comments.
8572 (smie-next-sexp): Handle nil results from next-token.
8573 (smie-indent-calculate): Add a new case for special `fixindent' comments.
8574
8575 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8576
8577 * progmodes/verilog-mode.el (verilog-type-font-keywords):
8578 Use font-lock-constant-face, not obsolete font-lock-reference-face.
8579
8580 2010-05-27 Masatake YAMATO <yamato@redhat.com>
8581
8582 * htmlfontify.el (hfy-face-resolve-face): New function.
8583 (hfy-face-to-style): Use it (Bug#6279).
8584
8585 2010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
8586
8587 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
8588 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
8589
8590 2010-05-26 Glenn Morris <rgm@gnu.org>
8591
8592 * emulation/edt.el (edt-load-keys): Use locate-library.
8593
8594 2010-05-25 Chong Yidong <cyd@stupidchicken.com>
8595
8596 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
8597 (log-edit-changelog-entries): Doc fix.
8598 (log-edit-changelog-insert-entries): Args changed.
8599 Rename relative filenames in ChangeLog entries. Delete tabs.
8600 (log-edit-insert-changelog-entries): Reorganize return value of
8601 `log-edit-changelog-entries' to pass filenames to
8602 log-edit-changelog-insert-entries.
8603
8604 2010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8605
8606 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
8607 `image-dired-dired-insert-marked-thumbs' to
8608 `image-dired-dired-toggle-marked-thumbs'.
8609
8610 * image-dired.el: Require cl when compiling.
8611 (image-dired-dired-toggle-marked-thumbs): Rename from
8612 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
8613 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
8614 to 'no-dir. Skip files whose names don't match
8615 `image-file-name-regexp'. When file has a thumbnail overlay,
8616 delete it. (Bug#5270)
8617
8618 2010-05-25 Juri Linkov <juri@jurta.org>
8619
8620 * image-mode.el (image-mode): Add image-after-revert-hook to
8621 after-revert-hook.
8622 (image-after-revert-hook): New function. (Bug#5669)
8623
8624 2010-05-25 Juri Linkov <juri@jurta.org>
8625
8626 * image.el (image-animated-p): When delay between animated images
8627 is 0, set it to 10 (0.1 sec). (Bug#6258)
8628
8629 2010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
8630
8631 * net/tramp.el (tramp-handle-insert-directory): Don't use
8632 `forward-word', its default syntax could be changed.
8633
8634 2010-05-25 Michael Albinus <michael.albinus@gmx.de>
8635
8636 * net/tramp.el (tramp-progress-reporter-update): New defun.
8637 (with-progress-reporter): Use it.
8638 (tramp-process-actions):
8639 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion):
8640 Preserve current message, in order to let progress reporter continue
8641 afterwards. (Bug#6257)
8642
8643 2010-05-25 Glenn Morris <rgm@gnu.org>
8644
8645 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
8646 Add :version.
8647
8648 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
8649
8650 * net/rcirc.el (rcirc-default-user-name): Change to "user".
8651 (rcirc-default-full-name): Change to "unknown".
8652 (rcirc-user-name-history): Add variable.
8653
8654 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
8655 Jonathan Rockway <jon@jrock.us>
8656
8657 * net/rcirc.el (rcirc-server-alist): Add :pass.
8658 (rcirc): When prompting for connection parameters, also prompt for
8659 username and password.
8660 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
8661 value to server when connecting.
8662
8663 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
8664
8665 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
8666 (smie-merge-prec2s): Pass the tables as separate args.
8667 (smie-bnf-precedence-table): Adjust call accordingly.
8668 (smie-prec2-levels): Set levels at the end.
8669
8670 Replace Lisp calls to delete-backward-char by delete-char.
8671 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
8672 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
8673 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
8674 * calc/calc.el, emacs-lisp/cl-extra.el, emacs-lips/cl-loaddefs.el,
8675 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
8676 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
8677 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
8678 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
8679 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
8680 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
8681 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
8682 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
8683 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
8684 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
8685 delete-backward-char by calls to delete-char.
8686
8687 2010-05-25 Kenichi Handa <handa@m17n.org>
8688
8689 * language/hebrew.el (hebrew-shape-gstring): New function.
8690 Register it in composition-function-table for all Hebrew combining
8691 characters.
8692
8693 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
8694
8695 * epa.el (epa--select-keys): Don't explicitly delete the window since
8696 that can fail (e.g. sole window in frame). Use dedication instead.
8697
8698 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
8699
8700 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
8701
8702 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
8703
8704 * image.el (image-refresh): Define as an alias for image-flush.
8705
8706 * image-mode.el (image-toggle-display-image): Caller changed.
8707
8708 2010-05-21 Juri Linkov <juri@jurta.org>
8709
8710 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
8711 Remove "all" from grep-files-aliases. Split grep-files-aliases by
8712 whitespace, call wildcard-to-regexp on substrings and concat them
8713 with "\\|". (Bug#6114)
8714
8715 2010-05-21 Alan Mackenzie <acm@muc.de>
8716
8717 * progmodes/cc-engine.el (c-parse-state-get-strategy):
8718 Replace parameter `here' with `here-' and `here-plus', which sandwich
8719 any pertinent CPP construct.
8720 (c-remove-stale-state-cache-backwards): Fix a bug which happens
8721 when doing (c-parse-state) in a CPP construct: Exclude any "new"
8722 CPP construct from taking part in the scanning.
8723
8724 2010-05-21 Michael Albinus <michael.albinus@gmx.de>
8725
8726 * net/tramp.el (tramp-do-copy-or-rename-file)
8727 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
8728 Tune `with-progress-reporter' messages.
8729 (tramp-handle-vc-registered):
8730 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
8731 (tramp-fish-handle-insert-file-contents)
8732 (tramp-fish-maybe-open-connection):
8733 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
8734 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
8735 (tramp-imap-handle-insert-file-contents)
8736 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
8737
8738 2010-05-21 Juanma Barranquero <lekktu@gmail.com>
8739
8740 * add-log.el (change-log-font-lock-keywords):
8741 Highlight all authors in multi-author entries.
8742
8743 * smerge-mode.el (smerge-refine-ignore-whitespace)
8744 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
8745 Fix typos in docstrings.
8746 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
8747
8748 2010-05-21 Glenn Morris <rgm@gnu.org>
8749
8750 * progmodes/fortran.el (fortran-mode):
8751 * progmodes/f90.el (f90-mode): Derive from prog-mode.
8752
8753 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
8754 having a relative path in src/Makefile.in.
8755
8756 2010-05-20 Kevin Ryde <user42@zip.com.au>
8757
8758 * help-mode.el (help-make-xrefs): For Info node links turn
8759 newlines into spaces. Link node names with newlines are matched
8760 by help-xref-info-regexp and buttonized, this change ensures they
8761 can be followed successfully with RET. (Bug#6206)
8762
8763 2010-05-20 Juri Linkov <juri@jurta.org>
8764
8765 * locate.el (locate): Use pop-to-buffer instead of
8766 switch-to-buffer-other-window. (Bug#6204)
8767
8768 2010-05-20 Juri Linkov <juri@jurta.org>
8769
8770 * replace.el (replace-highlight): Fix lazy-highlighting
8771 for `M-s w str M-% str RET'.
8772
8773 2009-12-15 Masatake YAMATO <yamato@redhat.com>
8774
8775 * isearch.el (isearch-yank-word-or-char): Pull next subword
8776 when `subword-mode' is activated. (Bug#6220)
8777
8778 2010-05-20 Mark A. Hershberger <mah@everybody.org>
8779
8780 * isearch.el (isearch-update-post-hook): New hook.
8781 (isearch-update): Use the new hook. (Bug#6225)
8782
8783 2010-05-20 Juri Linkov <juri@jurta.org>
8784
8785 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
8786 [f1], [help], and (char-to-string help-char) instead of "\C-h".
8787 (Bug#6222)
8788
8789 2010-05-20 Juri Linkov <juri@jurta.org>
8790
8791 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
8792 (Bug#6223)
8793
8794 2010-05-20 Juri Linkov <juri@jurta.org>
8795
8796 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
8797 FILE-NAME to read from the minibuffer when called interactively
8798 with prefix argument instead of using buffer-file-name.
8799 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
8800
8801 * dired.el: Update autoloads.
8802
8803 2010-05-20 Chong Yidong <cyd@stupidchicken.com>
8804
8805 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
8806 nxml-finish-element, for consistency with SGML mode.
8807
8808 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
8809 octave-close-block.
8810
8811 2010-05-20 Juanma Barranquero <lekktu@gmail.com>
8812
8813 * composite.el: Require cl when compiling.
8814 (reference-point-alist, compose-gstring-for-graphic)
8815 (compose-gstring-for-terminal): Fix typos in docstrings.
8816
8817 2010-05-19 Juri Linkov <juri@jurta.org>
8818
8819 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
8820 set-window-parameter.
8821
8822 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
8823
8824 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
8825 where appropriate.
8826 (tramp-maybe-open-connection): Use it.
8827
8828 2010-05-19 Eli Zaretskii <eliz@gnu.org>
8829
8830 * simple.el (move-end-of-line): Make sure we are at line beginning
8831 before backing up to end of previous line.
8832
8833 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
8834
8835 * password-cache.el (password-cache-remove): Fix docstring.
8836
8837 * net/secrets.el: Autoload the widget functions.
8838 (secrets-search-items, secrets-create-item)
8839 (secrets-get-attributes, secrets-expand-item): Attributes will be
8840 stored on the password database without leading ":", as all other
8841 clients do as well.
8842 (secrets-mode): Fix docstring.
8843 (secrets-show-secrets): Provide it as autoloaded command only when
8844 D-Bus support is available. Check existence of Secret Service API.
8845
8846 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
8847
8848 * indent.el (indent-region): Deactivate region (bug#6200).
8849
8850 2010-05-19 Glenn Morris <rgm@gnu.org>
8851
8852 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
8853
8854 2010-05-19 Kenichi Handa <handa@m17n.org>
8855
8856 * composite.el: Register compose-gstring-for-graphic in
8857 composition-function-table only for combining characters (Mn, Mc, Me).
8858
8859 2010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
8860
8861 * calc/calc-trail.el (calc-trail-isearch-forward)
8862 (calc-trail-isearch-backward): Ensure that the new window
8863 point is set correctly.
8864
8865 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
8866
8867 * subr.el (read-quoted-char): Resolve modifiers after key
8868 remapping (bug#6212).
8869
8870 2010-05-18 Michael Albinus <michael.albinus@gmx.de>
8871
8872 Add visualization code for secrets.
8873 * net/secrets.el (secrets-mode): New major mode.
8874 (secrets-show-secrets, secrets-show-collections)
8875 (secrets-expand-collection, secrets-expand-item)
8876 (secrets-tree-widget-after-toggle-function)
8877 (secrets-tree-widget-show-password): New defuns.
8878
8879 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
8880
8881 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
8882 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
8883 handled in smie-next-sexp.
8884 (smie-indent-calculate): Provide a starting indentation (so the
8885 recursion is well-founded ;-).
8886
8887 Fix handling of non-associative equal levels.
8888 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
8889 when it's not needed.
8890 (smie-op-left, smie-op-right): New functions.
8891 (smie-next-sexp): New function, extracted from smie-backward-sexp.
8892 Better handle equal levels to distinguish the associative case from
8893 the "multi-keyword construct" case.
8894 (smie-backward-sexp, smie-forward-sexp): Use it.
8895
8896 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
8897
8898 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
8899
8900 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
8901 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
8902
8903 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
8904
8905 Provide a simple generic indentation engine and use it for Prolog.
8906 * emacs-lisp/smie.el: New file.
8907 * progmodes/prolog.el (prolog-smie-op-levels)
8908 (prolog-smie-indent-rules): New var.
8909 (prolog-mode-variables): Use them to configure SMIE.
8910 (prolog-indent-line, prolog-indent-level): Remove.
8911
8912 2010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
8913
8914 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
8915 order before computing the averages.
8916
8917 2010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
8918
8919 * calc/calc-vec.el (calc-histogram):
8920 (calcFunc-histogram): Allow vectors as inputs.
8921 (math-vector-avg): New function.
8922
8923 * calc/calc-ext.el (math-group-float): Have the number of digits
8924 being grouped depend on the radix (Bug#6189).
8925
8926 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
8927
8928 * version.el (emacs-copyright, emacs-version): Don't define here,
8929 now that emacs.c defines it.
8930
8931 2010-05-15 Eli Zaretskii <eliz@gnu.org>
8932
8933 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
8934 "Describe Language Environment" menu item.
8935
8936 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
8937
8938 Bidi-sensitive movement with arrow keys.
8939 * subr.el (right-arrow-command, left-arrow-command): New functions.
8940
8941 * bindings.el (global-map): Bind them to right and left arrow keys.
8942
8943 Don't override standard definition of convert-standard-filename.
8944 * files.el (convert-standard-filename):
8945 Call w32-convert-standard-filename and dos-convert-standard-filename on
8946 the corresponding systems.
8947
8948 * w32-fns.el (w32-convert-standard-filename): Rename from
8949 convert-standard-filename. Doc fix.
8950
8951 * dos-fns.el (dos-convert-standard-filename): Doc fix.
8952 (convert-standard-filename): Don't defalias.
8953 (register-name-alist, make-register, register-value)
8954 (set-register-value, intdos): Obsolete aliases for the
8955 corresponding dos-* functions and variables.
8956 (dos-intdos): Add a doc string.
8957
8958 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
8959
8960 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
8961 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
8962 (math-compose-tex-func):
8963 * calc/calccomp.el (math-compose-expr):
8964 * calc/calc-ext.el (math-format-flat-expr-fancy):
8965 * calc/calc-store.el (calc-read-var-name):
8966 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
8967
8968 * calc/calc.el (var-π, var-φ, var-γ): New variables.
8969 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
8970 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
8971 (math-standard-units): Add units.
8972
8973 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
8974
8975 * progmodes/asm-mode.el (asm-mode):
8976 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
8977
8978 * pcomplete.el (pcomplete-completions-at-point): New function,
8979 extracted from pcomplete-std-complete.
8980 (pcomplete-std-complete): Use it.
8981
8982 2010-05-15 Glenn Morris <rgm@gnu.org>
8983
8984 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
8985 Remove references to CVS, RCS and Old directories.
8986
8987 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
8988
8989 * calc/calc-bin.el (math-format-twos-complement): Group digits when
8990 appropriate.
8991
8992 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
8993
8994 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
8995 (sh-mode-syntax-table): Give it a default value instead.
8996 (sh-header-marker): Make buffer-local.
8997 (sh-mode): Move make-local-variable to the corresponding setq.
8998 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
8999 Use complete-with-action.
9000
9001 * simple.el (prog-mode): New (abstract) major mode.
9002 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
9003 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
9004
9005 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
9006
9007 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
9008 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
9009 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
9010 (sql-make-alternate-buffer-name, sql-placeholders-filter)
9011 (sql-escape-newlines-filter, sql-input-sender)
9012 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
9013
9014 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
9015
9016 Add TeX open-block and close-block keybindings to SGML, and vice versa.
9017
9018 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
9019 latex-open-block and C-c / to latex-close-block.
9020
9021 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
9022 and C-c C-e to sgml-close-tag.
9023
9024 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
9025
9026 * net/tramp.el (with-progress-reporter): Create reporter object
9027 only when the message would be displayed. Handle nested calls.
9028 (tramp-handle-load, tramp-handle-file-local-copy)
9029 (tramp-handle-insert-file-contents, tramp-handle-write-region)
9030 (tramp-maybe-send-script, tramp-find-shell):
9031 Use `with-progress-reporter'.
9032 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
9033 Fix message text.
9034
9035 * net/tramp-smb.el (tramp-smb-handle-copy-file)
9036 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
9037 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
9038 Use `with-progress-reporter'.
9039
9040 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
9041
9042 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
9043 process everytime when spellchecking from the minibuffer (bug#6143).
9044
9045 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
9046
9047 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
9048
9049 * dos-fns.el: Add "dos-" prefix for namespace control.
9050 (convert-standard-filename): Define as alias for
9051 dos-convert-standard-filename but only if applicable.
9052
9053 2010-05-12 Alan Mackenzie <acm@muc.de>
9054
9055 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
9056 Push the mark at the start of these functions when appropriate.
9057
9058 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
9059
9060 * minibuffer.el (completion-cycle-threshold): New custom var.
9061 (completion--do-completion): Use it.
9062 (minibuffer-complete): Use cycling if appropriate.
9063
9064 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
9065
9066 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
9067 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
9068
9069 2010-05-11 Juri Linkov <juri@jurta.org>
9070
9071 * scroll-all.el (scroll-all-check-to-scroll):
9072 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
9073
9074 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
9075
9076 * iimage.el (iimage-mode-map): Move initialization into declaration.
9077 (iimage-mode-buffer): Use with-silent-modifications.
9078 Simplify calling convention. Adjust callers.
9079 (iimage-mode): Don't run hook redundantly.
9080
9081 * minibuffer.el (completion-pcm--pattern->regex):
9082 Fix last change (bug#6160).
9083
9084 2010-05-10 Juri Linkov <juri@jurta.org>
9085
9086 Remove nodes visited during Isearch from the Info history.
9087 * info.el (Info-isearch-initial-history)
9088 (Info-isearch-initial-history-list): New variables.
9089 (Info-isearch-start): Record initial values of
9090 Info-isearch-initial-history and Info-isearch-initial-history-list.
9091 Add Info-isearch-end to isearch-mode-end-hook.
9092 (Info-isearch-end): New function.
9093
9094 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
9095
9096 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
9097 format string, in order to work around a bug in pdksh.
9098 Reported by Gilles Pion <gpion@lfdj.com>.
9099 (tramp-handle-verify-visited-file-modtime): Do not send a command
9100 when the connection is not established.
9101 (tramp-handle-set-file-times): Simplify the check for utc.
9102
9103 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
9104
9105 Fix use of `filter-buffer-substring' (rework previous change).
9106 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
9107 (cua-repeat-replace-region):
9108 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
9109 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
9110 (cua-cut-region-to-global-mark): Use it.
9111
9112 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
9113
9114 * progmodes/sql.el: Version 2.1.
9115 (sql-product-alist): Redesign structure of product info.
9116 (sql-product, sql-user, sql-server, sql-database): Safe variables.
9117 (sql-port, sql-port-history): New variables.
9118 (sql-interactive-product): New variable.
9119 (sql-send-terminator): New variable.
9120 (sql-imenu-generic-expression): Add "Types" imenu entry.
9121 (sql-oracle-login-params, sql-sqlite-login-params)
9122 (sql-mysql-login-params, sql-solid-login-params)
9123 (sql-sybase-login-params, sql-informix-login-params)
9124 (sql-ingres-login-params, sql-ms-login-params)
9125 (sql-postgres-login-params, sql-interbase-login-params)
9126 (sql-db2-login-params, sql-linter-login-params)
9127 (sql-oracle-scan-on): New variables.
9128 (sql-mode-map): Add C-c C-i to start interactive mode.
9129 (sql-mode-menu): Update existing menu entries.
9130 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
9131 (sql-mode-oracle-font-lock-keywords)
9132 (sql-mode-postgres-font-lock-keywords)
9133 (sql-mode-ms-font-lock-keywords)
9134 (sql-mode-sybase-font-lock-keywords)
9135 (sql-mode-informix-font-lock-keywords)
9136 (sql-mode-interbase-font-lock-keywords)
9137 (sql-mode-ingres-font-lock-keywords)
9138 (sql-mode-solid-font-lock-keywords)
9139 (sql-mode-mysql-font-lock-keywords)
9140 (sql-mode-sqlite-font-lock-keywords)
9141 (sql-mode-db2-font-lock-keywords)
9142 (sql-mode-linter-font-lock-keywords): Update initialization to
9143 reduce run-time complexity.
9144 (sql-add-product, sql-del-product): New functions.
9145 (sql-set-product-feature, sql-get-product-feature): New functions.
9146 (sql-product-font-lock): Update product API.
9147 (sql-add-product-keywords): New function.
9148 (sql-highlight-product): Update product API.
9149 (sql-help-list-products): New function.
9150 (sql-help): Dynamically lists free and non-free products.
9151 (sql-get-login): Correct bug in handling history and added
9152 prompt for port.
9153 (sql-copy-column): Copy without properties.
9154 (sqli-input-sender): Apply filters to SQLi input.
9155 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
9156 Implement as a filter.
9157 (sql-escape-newlines-filter): Implement as a filter.
9158 (sql-remove-tabs-filter): New function.
9159 (sql-send-magic-terminator): New function.
9160 (sql-send-string): Implement magic terminator.
9161 (sql-send-region): Use `sql-send-string'.
9162 (sql-interactive-mode): Use product API.
9163 (sql-product-interactive): Use product API.
9164 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
9165 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
9166 (sql-db2, sql-linter): Use `sql-product-interactive'.
9167 (sql-connect): New function.
9168 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
9169 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
9170 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
9171 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
9172 Use `sql-connect'.
9173
9174 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
9175
9176 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
9177 New custom variable.
9178 (completion-pcm--string->pattern): Use it.
9179 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
9180 Make it handle any symbol as `any'.
9181 (completion-pcm--merge-completions): Extract common suffix for the new
9182 `prefix' symbol as well.
9183 (completion-substring--all-completions): Use the new `prefix' symbol.
9184
9185 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
9186
9187 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
9188 not bound.
9189 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
9190 (tramp-compat-funcall): New defmacro.
9191 (tramp-compat-line-beginning-position)
9192 (tramp-compat-line-end-position)
9193 (tramp-compat-temporary-file-directory)
9194 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
9195 (tramp-compat-copy-file, tramp-compat-copy-directory)
9196 (tramp-compat-delete-file, tramp-compat-delete-directory)
9197 (tramp-compat-number-sequence, tramp-compat-process-running-p)
9198 * net/tramp.el (top, with-progress-reporter)
9199 (tramp-rfn-eshadow-setup-minibuffer)
9200 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
9201 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
9202 (tramp-completion-mode-p, tramp-check-for-regexp)
9203 (tramp-open-connection-setup-interactive-shell)
9204 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
9205 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
9206 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
9207 * net/tramp-cmds.el (tramp-cleanup-all-connections)
9208 (tramp-reporter-dump-variable, tramp-load-report-modules)
9209 (tramp-append-tramp-buffers)
9210 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
9211
9212 * net/tramp-imap.el (top): Autoload `epg-make-context'.
9213
9214 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
9215
9216 * progmodes/compile.el (compilation-buffer-modtime): Rename from
9217 buffer-modtime. Adjust users.
9218
9219 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
9220
9221 * international/mule.el (auto-coding-alist): Only purecopy
9222 car of each item, not the whole list (Bug#6083).
9223
9224 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
9225
9226 * progmodes/js.el (js-mode): Make paragraph variables local before
9227 calling c-setup-paragraph-variables (Bug#6071).
9228
9229 2010-05-08 Eli Zaretskii <eliz@gnu.org>
9230
9231 * composite.el (compose-region, reference-point-alist): Fix typos
9232 in the doc strings.
9233
9234 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
9235
9236 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
9237 gnuplot's "set" command.
9238
9239 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
9240
9241 * abbrev.el (last-abbrev-text): Doc fix.
9242 (abbrev-prefix-mark): Don't escape parenthesis.
9243
9244 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
9245
9246 * composite.el (find-composition): Doc fix.
9247
9248 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
9249
9250 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
9251 (sql-oracle-program, sql-sqlite-options)
9252 (sql-query-placeholders-and-send): Doc fixes.
9253 (sql-set-product, sql-interactive-mode): Reflow docstrings.
9254 (sql-imenu-generic-expression, sql-buffer)
9255 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
9256 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
9257 (sql-mode-sybase-font-lock-keywords)
9258 (sql-mode-informix-font-lock-keywords)
9259 (sql-mode-interbase-font-lock-keywords)
9260 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
9261 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
9262 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
9263 (sql-product-feature, sql-highlight-product)
9264 (comint-line-beginning-position, sql-rename-buffer)
9265 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
9266 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
9267 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
9268 Fix typos in docstrings.
9269
9270 2010-05-08 Juri Linkov <juri@jurta.org>
9271
9272 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
9273 property instead of `invisible' and `after-string' (bug#5998).
9274
9275 2010-05-08 Juri Linkov <juri@jurta.org>
9276
9277 * image-mode.el (image-mode-as-text): Fix typo in docstring.
9278
9279 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
9280
9281 * filecache.el (file-cache-add-directory-list)
9282 (file-cache-add-directory-recursively): Fix typos in docstrings.
9283
9284 2010-05-08 Kenichi Handa <handa@m17n.org>
9285
9286 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
9287 (gujarati-composable-pattern): Fix typo.
9288
9289 2010-05-08 Kenichi Handa <handa@m17n.org>
9290
9291 * language/indian.el (oriya-composable-pattern)
9292 (tamil-composable-pattern, malayalam-composable-pattern):
9293 Add two-part vowels to "v" (vowel sign).
9294
9295 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
9296
9297 * files.el (copy-directory): Handle symlinks (Bug#5982).
9298
9299 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
9300
9301 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
9302 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
9303 (Bug#5846).
9304
9305 2010-05-08 Glenn Morris <rgm@gnu.org>
9306
9307 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
9308
9309 * minibuffer.el (completion-at-point): Doc fix.
9310
9311 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
9312
9313 * electric.el (Electric-command-loop): Minor tweak.
9314
9315 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
9316 better with dedicated windows.
9317
9318 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
9319
9320 * Version 23.2 released.
9321
9322 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
9323 Stefan Monnier <monnier@iro.umontreal.ca>
9324
9325 Highlight vendor specific properties.
9326 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
9327 (css-proprietary-property): New face.
9328 (css-font-lock-keywords): Use them.
9329
9330 2010-05-07 Eli Zaretskii <eliz@gnu.org>
9331
9332 * cus-start.el (all): Add native condition for tool-bar-* symbols.
9333
9334 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
9335
9336 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
9337 * files.el (auto-mode-alist): Remove redundant entries.
9338
9339 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
9340 * simple.el (auto-save-mode): Move from files.el.
9341 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
9342
9343 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
9344
9345 * epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
9346
9347 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
9348
9349 * mail/binhex.el (binhex-decode-region-internal)
9350 * mail/uudecode.el (uudecode-decode-region-internal)
9351 * net/dns.el (dns-read-string-name, dns-write, dns-read)
9352 (dns-read-type, dns-query)
9353 * pgg-parse.el (pgg-parse-armor)
9354 * pgg.el (pgg-verify-region)
9355 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
9356 XEmacs.
9357
9358 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
9359
9360 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
9361
9362 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
9363
9364 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
9365 * emulation/cua-base.el (cua-repeat-replace-region):
9366 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
9367 (cua-cut-region-to-global-mark):
9368 Remove text properties with `set-text-properties'.
9369
9370 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
9371
9372 * net/tramp.el (top, with-progress-reporter):
9373 Use `symbol-function' inside `funcall'.
9374
9375 * net/tramp-compat.el (tramp-compat-file-attributes)
9376 (tramp-compat-delete-file, tramp-compat-delete-directory):
9377 Handle only `wrong-number-of-arguments' error.
9378
9379 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
9380 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
9381 inside `funcall'.
9382
9383 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
9384
9385 * minibuffer.el (completion--sreverse, completion--common-suffix):
9386 New functions.
9387 (completion-pcm--merge-completions): Extract common suffix when safe.
9388
9389 * emacs-lisp/easy-mmode.el (define-minor-mode):
9390 Make :variable more flexible.
9391 * files.el (auto-save-mode): Use it to define using define-minor-mode.
9392
9393 2010-05-05 Juri Linkov <juri@jurta.org>
9394
9395 Add `slow' and `history' tags to the desktop data.
9396
9397 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
9398 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
9399 (Info-finder-find-node): Require `finder.el' to be able
9400 to restore node from the desktop.
9401 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
9402 data `Info-history' and `slow' tag in the assoc list.
9403 (Info-restore-desktop-buffer): Don't restore nodes with the
9404 `slow' tag. Restore `Info-history'.
9405
9406 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
9407
9408 Add FORCE argument to `delete-file'.
9409
9410 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
9411 forcing to delete the temporary file.
9412 (ange-ftp-delete-file): Add FORCE arg.
9413 (ange-ftp-rename-remote-to-remote)
9414 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
9415 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
9416 Force file deletion.
9417
9418 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
9419
9420 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
9421 (tramp-handle-make-symbolic-link, tramp-handle-load)
9422 (tramp-do-copy-or-rename-file-via-buffer)
9423 (tramp-do-copy-or-rename-file-directly)
9424 (tramp-do-copy-or-rename-file-out-of-band)
9425 (tramp-handle-process-file, tramp-handle-call-process-region)
9426 (tramp-handle-shell-command, tramp-handle-file-local-copy)
9427 (tramp-handle-insert-file-contents, tramp-handle-write-region)
9428 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
9429
9430 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
9431 (tramp-fish-handle-make-symbolic-link)
9432 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
9433
9434 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
9435 Use `tramp-compat-delete-file'.
9436
9437 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
9438 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
9439
9440 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
9441 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
9442
9443 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
9444 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
9445 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
9446 Use `tramp-compat-delete-file'.
9447
9448 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
9449
9450 Minor cleanups.
9451 * subr.el (add-minor-mode): Use push.
9452 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
9453 * emulation/edt.el (edt-select-mode): Simplify.
9454
9455 Use define-minor-mode in more cases.
9456 * term/tvi970.el (tvi970-set-keypad-mode):
9457 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
9458 (normal-erase-is-backspace-mode):
9459 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
9460 (set-scroll-bar-mode-1): (Re)move to its sole caller.
9461 (get-scroll-bar-mode): New function.
9462 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
9463
9464 Use define-minor-mode for less obvious cases.
9465 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
9466 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
9467 * international/iso-ascii.el (iso-ascii-mode):
9468 * frame.el (auto-raise-mode, auto-lower-mode):
9469 * composite.el (global-auto-composition-mode): Use define-minor-mode.
9470
9471 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
9472
9473 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
9474 in order to see error messages for failed logins.
9475
9476 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
9477
9478 * diff.el (diff-sentinel):
9479
9480 * epg.el (epg--make-temp-file, epg-decrypt-string)
9481 (epg-verify-string, epg-sign-string, epg-encrypt-string):
9482
9483 * jka-compr.el (jka-compr-partial-uncompress)
9484 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
9485
9486 * server.el (server-sentinel): Use delete-file's new FORCE arg
9487 (Bug#6070).
9488
9489 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
9490
9491 Use define-minor-mode where applicable.
9492 * view.el (view-mode):
9493 * type-break.el (type-break-query-mode)
9494 (type-break-mode-line-message-mode):
9495 * textmodes/reftex.el (reftex-mode):
9496 * term/vt100.el (vt100-wide-mode):
9497 * tar-mode.el (tar-subfile-mode):
9498 * savehist.el (savehist-mode):
9499 * ibuf-ext.el (ibuffer-auto-mode):
9500 * composite.el (auto-composition-mode):
9501 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
9502 Use define-minor-mode.
9503 (vhdl-mode): Use static mode-line format.
9504 (vhdl-mode-line-update): Delete.
9505 (vhdl-create-mode-menu, vhdl-activate-customizations)
9506 (vhdl-hs-minor-mode): Don't bother calling it.
9507
9508 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
9509
9510 * simple.el (with-wrapper-hook): Move.
9511 (buffer-substring-filters): Mark obsolete.
9512 (filter-buffer-substring-functions): New variable.
9513 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
9514
9515 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
9516 Michael Albinus <michael.albinus@gmx.de>
9517
9518 Implement compression for inline methods.
9519
9520 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
9521 (tramp-copy-size-limit): Allow also nil.
9522 (tramp-inline-compress-commands): New defconst.
9523 (tramp-find-inline-compress, tramp-get-inline-compress)
9524 (tramp-get-inline-coding): New defuns.
9525 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
9526 replaced by `tramp-get-inline-coding'.
9527 (tramp-handle-file-local-copy, tramp-handle-write-region)
9528 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
9529
9530 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
9531
9532 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
9533 Remove unused functions.
9534
9535 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
9536 Set find-tag-default-function as a variable rather than a property.
9537
9538 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
9539 * progmodes/etags.el (tags-completion-at-point-function):
9540 Remove left over interactive spec. Add autoloading stub.
9541 (complete-tag): Use tags-completion-at-point-function.
9542
9543 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
9544
9545 * minibuffer.el (tags-completion-at-point-function): Fix return value.
9546
9547 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
9548
9549 * ido.el (ido-init-completion-maps): Remove C-v binding.
9550 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
9551
9552 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
9553
9554 * minibuffer.el (tags-completion-at-point-function): New function.
9555 (completion-at-point-functions): Use it.
9556
9557 * progmodes/etags.el (complete-tag): Revert last change.
9558
9559 2010-04-29 Alan Mackenzie <acm@muc.de>
9560
9561 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
9562 off-by-one error (in end of macro position).
9563
9564 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
9565
9566 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
9567 firefox is absent. Don't autoload.
9568 (browse-url-galeon-program): Don't autoload.
9569
9570 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
9571
9572 * bindings.el (complete-symbol): Move into minibuffer.el.
9573
9574 * minibuffer.el (complete-tag): Move from etags.el. If tags
9575 completion cannot be performed, return nil instead of signalling
9576 an error.
9577 (completion-at-point): Make it an alias for complete-symbol.
9578 (complete-symbol): Move from bindings.el, and replace with the
9579 body of completion-at-point.
9580
9581 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
9582
9583 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
9584
9585 * net/tramp.el (tramp-remote-selinux-p): New defun.
9586 (tramp-handle-file-selinux-context)
9587 (tramp-handle-set-file-selinux-context): Use it.
9588
9589 2010-04-28 Sam Steingold <sds@gnu.org>
9590
9591 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
9592 `safe-local-variable' if the value is a string or a symbol with
9593 the property `bug-reference-url-format'.
9594
9595 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
9596
9597 * progmodes/bug-reference.el (bug-reference-url-format):
9598 Revert 2010-04-27 change due to security risk.
9599
9600 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
9601
9602 Make it possible to locally disable a globally enabled mode.
9603 * simple.el (fundamental-mode): Run fundamental-mode-hook.
9604 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
9605 rather than kill-all-local-variables so it runs fundamental-mode-hook.
9606 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9607 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
9608 that subsequent hooks get a chance to disable it.
9609
9610 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
9611
9612 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9613 Avoid re-enabling a minor mode after the user turned the minor mode
9614 off if MODE-enable-in-buffers is run twice (typically once from
9615 fundamental-mode's after-change-major-mode-hook and a second time from
9616 run-mode-hook's own after-change-major-mode-hook).
9617
9618 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
9619
9620 2010-04-27 Sam Steingold <sds@gnu.org>
9621
9622 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
9623 `safe-local-variable' if the value is a string or a function, as
9624 documented and implemented on 2010-04-02.
9625
9626 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
9627
9628 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
9629 when method is 'kill.
9630
9631 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
9632
9633 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
9634 condition in default directory check.
9635 (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
9636 Kill ispell process when killing its associated buffer.
9637
9638 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
9639
9640 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
9641 but we aren't using it.
9642
9643 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
9644
9645 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
9646 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
9647
9648 2010-04-24 Glenn Morris <rgm@gnu.org>
9649
9650 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
9651 Ignore VCS-ignore files, and deleted nextstep preferences files.
9652 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
9653 (authors-ambiguous-files): New list.
9654 (authors-valid-file-names): Add some deleted files.
9655 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
9656 (authors-disambiguate-file-name): New function. (Bug#5501)
9657 (authors-canonical-file-name): Doc fix.
9658 Don't warn about obsolete files.
9659 (authors-canonical-file-name, authors-scan-el):
9660 Use authors-disambiguate-file-name.
9661
9662 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
9663 Add autoload cookies.
9664 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
9665 (generated-autoload-file): Set file-local value to "htmlfontify.el".
9666 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
9667 They have definitions / compiler macros in cl.el.
9668 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
9669 Replace manual autoloads with generated ones.
9670 (htmlfontify-unload-rgb-file): Remove autoload.
9671 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
9672
9673 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
9674
9675 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
9676 (byte-compile-setq-default): Optimize for the
9677 single-var case and don't call byte-compile-form in this case to avoid
9678 inf-loop with byte-compile-set-default.
9679
9680 * progmodes/compile.el (compilation-start): Abbreviate default directory.
9681
9682 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
9683
9684 Implement SELINUX backends.
9685
9686 * net/tramp.el (tramp-file-name-handler-alist):
9687 Add `file-selinux-context' and `set-file-selinux-context'.
9688 (tramp-handle-file-selinux-context)
9689 (tramp-handle-set-file-selinux-context): New defuns.
9690 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
9691 Handle PRESERVE-SELINUX-CONTEXT.
9692
9693 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
9694 Add `file-selinux-context' and `set-file-selinux-context'.
9695 (tramp-gvfs-handle-file-selinux-context)
9696 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
9697 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
9698
9699 * net/ange-ftp.el (ange-ftp-copy-file):
9700 * net/tramp-fish.el (tramp-fish-handle-copy-file):
9701 * net/tramp-imap.el (tramp-imap-handle-copy-file):
9702 * net/tramp-smb.el (tramp-smb-handle-copy-file):
9703 Add PRESERVE-SELINUX-CONTEXT.
9704
9705 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
9706
9707 Synchronize with Tramp repository.
9708
9709 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
9710 (tramp-action-process-alive, tramp-action-out-of-band)
9711 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
9712 (tramp-exists-file-name-handler): Fix docstring.
9713 (with-progress-reporter): New defmacro.
9714 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
9715 (tramp-maybe-open-connection): Use it.
9716
9717 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
9718
9719 Detect ssh 'ControlMaster' argument automatically in some cases.
9720
9721 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
9722 (tramp-default-method): Use it.
9723
9724 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
9725
9726 * net/tramp.el (tramp-handle-copy-file): Add new optional
9727 parameter `preserve-selinux-context'.
9728 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
9729
9730 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
9731
9732 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
9733 Ensure, that non remote files are still checked. Oops.
9734
9735 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
9736
9737 Fix Bug#5840.
9738
9739 * icomplete.el (icomplete-completions): Use `non-essential'.
9740
9741 * net/tramp.el (tramp-connectable-p): New defun.
9742 (tramp-handle-expand-file-name)
9743 (tramp-completion-handle-file-name-all-completions)
9744 (tramp-completion-handle-file-name-completion): Use it.
9745
9746 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
9747
9748 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
9749
9750 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
9751
9752 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
9753
9754 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
9755
9756 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
9757 is present.
9758
9759 * info.el (info-tool-bar-map): Add labels.
9760
9761 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
9762
9763 * cus-edit.el (custom-commands): Add labels for tool bar.
9764 (custom-buffer-create-internal, Custom-mode): Adjust for
9765 labels in custom-commands.
9766
9767 * dynamic-setting.el: Renamed from font-setting.el.
9768
9769 2010-04-21 John Wiegley <jwiegley@gmail.com>
9770
9771 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
9772 toggles the use of virtual buffers.
9773 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
9774 (ido-toggle-virtual-buffers): New function.
9775
9776 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
9777
9778 Use `define-derived-mode'; fix window selection; doc fixes.
9779 * play/tetris.el (tetris, tetris-update-speed-function)
9780 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
9781 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
9782 (tetris-rotate-next, tetris-end-game, tetris-start-game)
9783 (tetris-pause-game): Fix typos in docstrings.
9784 (tetris-mode-map, tetris-null-map):
9785 Move initialization into declaration.
9786 (tetris-mode): Define with `define-derived-mode';
9787 set show-trailing-whitespace to nil.
9788 (tetris): Prefer window already displaying the "*Tetris*" buffer.
9789
9790 2010-04-21 Karel Klíč <kklic@redhat.com>
9791
9792 * files.el (backup-buffer): Handle SELinux context, and return it
9793 if a backup was made by renaming.
9794 (backup-buffer-copy): Set SELinux context to the target file.
9795 (basic-save-buffer): Set SELinux context of the newly written file.
9796 (basic-save-buffer-1): Now it also returns any SELinux context.
9797 (basic-save-buffer-2): Set SELinux context of the newly created file,
9798 and return it.
9799 * net/tramp.el (tramp-file-name-for-operation):
9800 Add file-selinux-context.
9801
9802 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
9803
9804 Make the log-edit comments use RFC822 format throughout.
9805
9806 * vc.el (vc-checkin, vc-modify-change-comment):
9807 Adjust to new vc-start/finish-logentry.
9808 (vc-find-conflicted-file): New command.
9809 (vc-transfer-file): Adjust to new vc-checkin.
9810 (vc-next-action): Improve scoping.
9811
9812 * vc-hg.el (vc-hg-log-edit-mode): Remove.
9813 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
9814
9815 * vc-git.el (vc-git-log-edit-mode): Remove.
9816 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
9817 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
9818
9819 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
9820 (vc-start-logentry): Remove argument `extra'.
9821 (vc-finish-logentry): Remove extra args.
9822
9823 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
9824 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
9825 (vc-bzr-conflicted-files): New function.
9826
9827 * log-edit.el (log-edit-extra-flags)
9828 (log-edit-before-checkin-process): Remove.
9829 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
9830 (log-edit-headers-alist): New var.
9831 (log-edit-header-contents-regexp): New const.
9832 (log-edit-match-to-eoh): New function.
9833 (log-edit-font-lock-keywords): Use them.
9834 (log-edit): Insert a "Summary:" header as default.
9835 (log-edit-mode): Mark font-lock rules as case-insensitive.
9836 (log-edit-done): Cleanup headers.
9837 (log-view-process-buffer): Remove.
9838 (log-edit-extract-headers): New function to replace it.
9839
9840 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
9841
9842 * subr.el (default-direction-reversed): Remove obsolescence info.
9843
9844 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9845
9846 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
9847 windows/frames.
9848
9849 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
9850 I.e. include text after point in the completion region.
9851 Also, return nil when we're not after/in a symbol.
9852
9853 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
9854 default enable-multibyte-characters.
9855
9856 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9857
9858 * international/mule.el: Help the user choose a valid coding-system.
9859 (read-buffer-file-coding-system): New function.
9860 (set-buffer-file-coding-system): Use it. Prompt the user if the
9861 coding-system cannot encode all the chars.
9862
9863 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
9864 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
9865 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
9866 Don't use *vc-bzr-shelve*.
9867
9868 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
9869
9870 Fix the version number for added files.
9871 * vc-hg.el (vc-hg-working-revision): Check if the file is
9872 registered after hg parent fails (Bug#5961).
9873
9874 2010-04-19 Glenn Morris <rgm@gnu.org>
9875
9876 * htmlfontify.el (htmlfontify-buffer)
9877 (htmlfontify-copy-and-link-dir): Autoload entry points.
9878
9879 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
9880
9881 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
9882 name relative to the project root (Bug#5960).
9883
9884 2010-04-19 Glenn Morris <rgm@gnu.org>
9885
9886 * vc-git.el (vc-git-print-log): Doc fix.
9887
9888 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
9889
9890 * ido.el (ido-file-internal): Fix 2009-12-02 change.
9891
9892 2010-04-19 Christoph <cschol2112@googlemail.com> (tiny change)
9893
9894 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
9895 default settings (Bug#5928).
9896
9897 2010-04-19 Glenn Morris <rgm@gnu.org>
9898
9899 * progmodes/fortran.el (fortran-match-and-skip-declaration):
9900 New function.
9901 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
9902
9903 2010-04-19 Kenichi Handa <handa@m17n.org>
9904
9905 * language/indian.el (malayalam-composable-pattern): Fix previous
9906 change (add U+0D4D "SIGN VIRAMA").
9907 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
9908 (tamil-composable-pattern): Fix typo in the regexp.
9909 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
9910 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
9911 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
9912
9913 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
9914
9915 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
9916 paragraph-separate (Bug#5821).
9917
9918 2010-04-19 Juri Linkov <juri@jurta.org>
9919
9920 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
9921
9922 * info.el (Info-find-node-2): Comment out code that skips
9923 breadcrumbs line.
9924 (Info-mouse-follow-link): New command.
9925 (Info-link-keymap): New keymap.
9926 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
9927 Return a string with links instead of inserting breadcrumbs
9928 to the Info buffer.
9929 (Info-fontify-node): Comment out code that inserts breadcrumbs.
9930 Instead of putting the `invisible' text property over the Info
9931 header, make an overlay over the Info header with the `invisible'
9932 property and `after-string' set to the string returned by
9933 `Info-breadcrumbs'.
9934
9935 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
9936
9937 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
9938 Reported by monkey@sandpframing.com.
9939
9940 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9941
9942 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
9943 (tmm-get-keymap): Add key-binding shortcuts now that they're not
9944 available in the "keyseq cache" any more.
9945
9946 * custom.el (defcustom): Add edebug spec.
9947
9948 2010-04-18 Juri Linkov <juri@jurta.org>
9949
9950 Test for special mode-class in view-buffer instead of view-file (bug#5513).
9951
9952 * view.el (view-file, view-buffer): Move test for special mode-class
9953 from view-file to view-buffer.
9954
9955 * tar-mode.el (tar-extract): Turn if's into one cond
9956 like in arc-mode.el.
9957
9958 2010-04-18 Juri Linkov <juri@jurta.org>
9959
9960 Add 7z archive format support (bug#5475).
9961
9962 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
9963 (archive-7z-extract): New defcustom.
9964 (archive-find-type): Add magic string for 7z.
9965 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
9966 If `stderr-file' is non-nil, use `(t stderr-file)' for the
9967 `buffer' arg of `call-process'.
9968 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
9969 call the function `archive-7z-extract' with the variable
9970 `archive-7z-extract' let-bound to `archive-zip-extract'.
9971 (archive-7z-summarize, archive-7z-extract): New functions.
9972
9973 * international/mule.el (auto-coding-alist):
9974 * files.el (auto-mode-alist): Add 7z file extension.
9975
9976 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
9977
9978 * loadup.el: Setup hash-cons for pure data.
9979
9980 Fix duplicate entries in cedet's loaddefs.el files.
9981 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
9982 Should make most file-local generated-autoload-file unnecessary.
9983 (print-readably): Silence warnings.
9984 (autoload-find-destination): Take load-name as an arg to make sure
9985 it's the same as the one that will be in the file.
9986 (autoload-generate-file-autoloads): Adjust to above changes.
9987 Try to make the dataflow a bit simpler.
9988
9989 * cvs-status.el (cvs-refontify): Remove unused.
9990
9991 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
9992
9993 * calc/calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
9994
9995 * calc/calc-bin.el (calc-radix): Have the "O" option turn on
9996 twos-complement mode.
9997
9998 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
9999
10000 * calc/calc-ext.el (calc-init-extensions): Add keybinding for
10001 'calc-option'. Add `calc-option-prefix-help' to calc-help autoloads.
10002 (calc-inverse): Add "Option" to message, as appropriate.
10003 (calc-hyperbolic): Add "Option" to message, as appropriate.
10004 (calc-option, calc-is-option): New functions.
10005
10006 * calc/calc-help.el (calc-full-help): Add `calc-option-help'.
10007 (calc-option-prefix-help): New function.
10008
10009 * calc/calc-misc.el (calc-help): Add "Option" entry.
10010
10011 * calc/calc.el (calc-local-var-list): Add `calc-option-flag'.
10012 (calc-option-flag): New variable.
10013 (calc-do): Set `calc-option-flag to nil.
10014 (calc-set-mode-line): Add "Opt " as appropriate.
10015
10016 2010-04-16 Juri Linkov <juri@jurta.org>
10017
10018 Move scrolling commands from simple.el to window.el
10019 because their primitives are implemented in window.c.
10020
10021 * simple.el (scroll-error-top-bottom)
10022 (scroll-up-command, scroll-down-command, scroll-up-line)
10023 (scroll-down-line, scroll-other-window-down)
10024 (beginning-of-buffer-other-window, end-of-buffer-other-window):
10025 * window.el (scroll-error-top-bottom)
10026 (scroll-up-command, scroll-down-command, scroll-up-line)
10027 (scroll-down-line, scroll-other-window-down)
10028 (beginning-of-buffer-other-window, end-of-buffer-other-window):
10029 Move from simple.el to window.el because their primitives are
10030 implemented in window.c.
10031
10032 2010-04-16 Juri Linkov <juri@jurta.org>
10033
10034 * isearch.el (isearch-lookup-scroll-key): Check both
10035 `isearch-scroll' and `scroll-command' properties.
10036 (scroll-up, scroll-down): Remove `isearch-scroll' property.
10037
10038 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
10039
10040 * simple.el (scroll-up-command, scroll-down-command)
10041 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
10042
10043 2010-04-15 Juri Linkov <juri@jurta.org>
10044
10045 * simple.el (scroll-up-command, scroll-down-command)
10046 (scroll-up-line, scroll-down-line): Put `scroll-command'
10047 property on the these symbols. Remove them from
10048 `scroll-preserve-screen-position-commands'.
10049
10050 * mwheel.el (mwheel-scroll): Put `scroll-command' and
10051 `isearch-scroll' properties on the `mwheel-scroll' symbol.
10052 Remove it from `scroll-preserve-screen-position-commands'.
10053
10054 * isearch.el (isearch-allow-scroll): Doc fix.
10055
10056 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
10057
10058 * net/tramp.el (tramp-error-with-buffer): Don't show the
10059 connection buffer when we are in completion mode.
10060 (tramp-file-name-handler): Catch the error for some operations
10061 when we are in completion mode. This gives the user the chance to
10062 correct the file name in the minibuffer.
10063
10064 2010-04-15 Glenn Morris <rgm@gnu.org>
10065
10066 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
10067
10068 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
10069
10070 Simplify by using `define-derived-mode'.
10071 * info.el (Info-mode):
10072 * calendar/todo-mode.el (todo-mode):
10073 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
10074 (gomoku-mode-map): Move initialization into declaration.
10075
10076 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
10077
10078 Fix Bug#5840.
10079 * ido.el (ido-file-name-all-completions-1):
10080 * minibuffer.el (minibuffer-completion-help):
10081 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
10082
10083 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
10084
10085 * simple.el (non-essential): New var.
10086
10087 Add a new field `location' to bookmarks for non-file bookmarks.
10088 * bookmark.el (bookmark-location): Use the new field, if present.
10089 (bookmark-insert-location): Undo last change, not needed any more.
10090 * man.el (Man-bookmark-make-record):
10091 * woman.el (woman-bookmark-make-record): Add `location' field.
10092
10093 2010-04-14 Juri Linkov <juri@jurta.org>
10094
10095 * simple.el (scroll-error-top-bottom): New defcustom.
10096 (scroll-up-command, scroll-down-command): Use it. Doc fix.
10097
10098 * emulation/pc-select.el (pc-select-override-scroll-error):
10099 Obsolete in favor of `scroll-error-top-bottom'.
10100
10101 2010-04-14 Juri Linkov <juri@jurta.org>
10102
10103 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
10104 `scroll-up-command' and `M-v' to `scroll-down-command'.
10105
10106 * emulation/cua-rect.el (cua--init-rectangles):
10107 * forms.el (forms--change-commands):
10108 * image-mode.el (image-mode-map):
10109 Remap scroll-down-command and scroll-up-command
10110 in addition to scroll-down and scroll-up.
10111
10112 2010-04-14 Juri Linkov <juri@jurta.org>
10113
10114 * mwheel.el (scroll-preserve-screen-position-commands):
10115 Add mwheel-scroll to this list of commands.
10116
10117 * simple.el (scroll-preserve-screen-position-commands):
10118 Add scroll-up-command, scroll-down-command, scroll-up-line,
10119 scroll-down-line to this list of commands.
10120
10121 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
10122
10123 * obsolete/complete.el: Move from lisp/complete.el.
10124
10125 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
10126
10127 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
10128 to the minor mode function now turns the mode ON unconditionally.
10129
10130 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
10131
10132 * vc-dir.el (vc-dir-kill-line): New command.
10133 (vc-dir-mode-map): Bind it to C-k.
10134
10135 * bookmark.el (bookmark-insert-location): Handle a nil filename.
10136
10137 * woman.el: Add bookmark declarations to silence the compiler.
10138 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
10139 step to compatibility between man and woman bookmarks.
10140 Adjust for Man-default-bookmark-title renaming.
10141 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
10142
10143 * man.el: Add bookmark declarations to silence the compiler.
10144 (Man-name-local-regexp): Make it match NAME as well.
10145 (Man-getpage-in-background): Return the buffer.
10146 (Man-notify-when-ready): Use `case'.
10147 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
10148 Don't hardcode "NAME". Simplify.
10149 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
10150 Rename from Man-bookmark-make-record.
10151 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
10152 we have the actual man-args. Use Man-getpage-in-background rather
10153 than `man' since the arg is already processed. Let bookmark.el do the
10154 window handling. Only wait for the relevant process.
10155 Don't forget to autoload.
10156
10157 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
10158
10159 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10160
10161 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
10162 New functions.
10163 (woman-mode): Setup bookmark support.
10164
10165 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
10166 (man-bookmark-jump): New functions.
10167 (Man-mode): Setup bookmark support.
10168
10169 2010-04-10 Jari Aalto <jari.aalto@cante.net>
10170
10171 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
10172 recognize ssh-keygen prompt (Bug#2817).
10173
10174 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
10175
10176 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
10177
10178 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
10179
10180 Synchronize with Tramp repository.
10181
10182 * net/tramp.el (tramp-completion-function-alist)
10183 (tramp-file-name-regexp, tramp-chunksize)
10184 (tramp-local-coding-commands, tramp-remote-coding-commands):
10185 Fix docstring.
10186 (tramp-remote-process-environment): Use `format' instead of `concat'.
10187 (tramp-handle-directory-files-and-attributes)
10188 (tramp-get-remote-path): Use `copy-tree'.
10189 (tramp-handle-file-name-all-completions): Backward/ XEmacs
10190 compatibility: Use `completion-ignore-case' if
10191 `read-file-name-completion-ignore-case' does not exist.
10192 (tramp-do-copy-or-rename-file-directly): Do not use
10193 `tramp-handle-file-remote-p'.
10194 (tramp-do-copy-or-rename-file-out-of-band):
10195 Use `tramp-compat-delete-directory'.
10196 (tramp-do-copy-or-rename-file-out-of-band)
10197 (tramp-compute-multi-hops, tramp-maybe-open-connection):
10198 Use `format-spec-make'.
10199 (tramp-find-foreign-file-name-handler)
10200 (tramp-advice-make-auto-save-file-name)
10201 (tramp-set-auto-save-file-modes): Remove superfluous check for
10202 `stringp'. This is done inside `tramp-tramp-file-p'.
10203 (tramp-debug-outline-regexp): New defconst.
10204 (tramp-get-debug-buffer): Use it.
10205 (tramp-check-for-regexp): Use (forward-line 1).
10206 (tramp-set-auto-save-file-modes): Adapt version check.
10207
10208 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
10209 Wrap call of `featurep' for 2nd argument.
10210 (tramp-compat-make-temp-file): Simplify fallback implementation.
10211 (tramp-compat-copy-tree): Remove function.
10212 (tramp-compat-delete-directory): Provide implementation for older
10213 Emacsen.
10214
10215 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
10216 Do not use `tramp-fish-handle-file-attributes.
10217
10218 * net/trampver.el: Update release number.
10219
10220 2010-04-10 Glenn Morris <rgm@gnu.org>
10221
10222 * progmodes/compile.el (compilation-save-buffers-predicate):
10223 Add missing :version tag.
10224
10225 2010-04-09 Sam Steingold <sds@gnu.org>
10226
10227 * progmodes/compile.el (compilation-save-buffers-predicate):
10228 Remove the "autoload" cookie.
10229
10230 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
10231 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
10232 and `bug-reference-prog-mode' can be used in hooks directly.
10233
10234 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
10235
10236 Add --author support to git commit.
10237 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
10238 (vc-git-log-edit-mode): New minor mode.
10239 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
10240 New declarations.
10241
10242 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
10243
10244 * vc-hooks.el, vc-git.el: Improve documentation comments.
10245
10246 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
10247
10248 Fix some of the problems in defsubst* (bug#5728).
10249 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
10250 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
10251
10252 2010-04-07 Sam Steingold <sds@gnu.org>
10253
10254 * progmodes/compile.el (compilation-save-buffers-predicate):
10255 New custom variable.
10256 (compile, recompile): Pass it to `save-some-buffers'.
10257
10258 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
10259
10260 * wid-edit.el (widget-choose): Move cursor to the second line of
10261 the buffer (Bug#5695).
10262
10263 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
10264
10265 Add new VC methods: vc-log-incoming and vc-log-outgoing.
10266 * vc.el (vc-print-log-setup-buttons): New function split out from
10267 vc-print-log-internal.
10268 (vc-log-internal-common): New function, a parametrized version of
10269 vc-print-log-internal.
10270 (vc-print-log-internal): Just call vc-log-internal-common with the
10271 right arguments.
10272 (vc-incoming-outgoing-internal):
10273 (vc-log-incoming, vc-log-outgoing): New functions.
10274 (vc-log-view-type): New permanent local variable.
10275
10276 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
10277
10278 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
10279 of the dynamic bound vc-short-log.
10280 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
10281
10282 * vc-git.el (vc-git-log-outgoing): New function.
10283 (vc-git-log-view-mode): Use vc-log-view-type instead
10284 of the dynamic bound vc-short-log.
10285
10286 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
10287 of the dynamic bound vc-short-log. Highlight the tag.
10288 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
10289 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
10290 (vc-hg-incoming-mode): Remove.
10291 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
10292
10293 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
10294
10295 Fix default-directory for vc-root-diff.
10296 * vc.el (vc-root-diff): Bind default-directory to the root
10297 directory for the diff command.
10298
10299 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
10300
10301 * progmodes/verilog-mode.el (verilog-forward-sexp):
10302 (verilog-calc-1): Support "disable fork" and "fork wait" multi
10303 word keywords, suggested by Steve Pearlmutter.
10304 (verilog-pretty-declarations): Support lineup of declarations in
10305 port lists.
10306 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
10307 fix bug for /* / comments.
10308 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
10309 Speed up and simplfy as this is never called with a bound.
10310 (verilog-pretty-declarations): Enhance to line up declarations
10311 inside a parameter list, suggested by Alan Morgan.
10312 (verilog-pretty-expr): Tune assignment regular expression match
10313 string for corner cases; also use markers instead of character
10314 number as indent changes the later.
10315
10316 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
10317
10318 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
10319 as missing keyword.
10320 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
10321 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
10322 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
10323 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
10324 Tennant.
10325 (verilog-keywords):
10326 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
10327 1800-2009 keywords, including "global.".
10328
10329 2010-04-06 John Wiegley <jwiegley@gmail.com>
10330
10331 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
10332 appearing in buffer list (if a live buffer name matched a recentf
10333 file basename). Should use uniquify to offer a real solution.
10334
10335 2010-04-06 John Wiegley <jwiegley@gmail.com>
10336
10337 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
10338 comment to code, and add a :version tag.
10339 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
10340
10341 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
10342
10343 Enable recentf-mode if using virtual buffers.
10344 * ido.el (recentf-list): Declare for byte-compiler.
10345 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
10346 (ido-make-buffer-list): Simplify.
10347 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
10348
10349 2010-04-05 Juri Linkov <juri@jurta.org>
10350
10351 Scrolling commands which scroll a line instead of full screen.
10352 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
10353
10354 * simple.el (scroll-up-line, scroll-down-line): New commands.
10355 Put property isearch-scroll=t on them.
10356
10357 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
10358 Remove commands.
10359
10360 2010-04-05 Juri Linkov <juri@jurta.org>
10361
10362 Scrolling commands which do not signal errors at top/bottom.
10363 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
10364
10365 * simple.el (scroll-up-command, scroll-down-command): New commands.
10366 Put property isearch-scroll=t on them.
10367
10368 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
10369 `scroll-down-command' and [next] from `scroll-up' to
10370 `scroll-up-command'.
10371
10372 * emulation/cua-base.el: Put property CUA=move on
10373 `scroll-up-command' and `scroll-down-command'.
10374 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
10375 and `scroll-down-command' to `cua-scroll-down'.
10376
10377 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
10378
10379 * help.el (describe-mode): Return nil.
10380
10381 2010-04-04 John Wiegley <jwiegley@gmail.com>
10382
10383 * ido.el (ido-use-virtual-buffers): New variable to indicate
10384 whether "virtual buffer" support is enabled for IDO.
10385 (ido-virtual): Face used to indicate virtual buffers in the list.
10386 (ido-buffer-internal): If a buffer is chosen, and no such buffer
10387 exists, but a virtual buffer of that name does (which would be why
10388 it was in the list), recreate the buffer by reopening the file.
10389 (ido-make-buffer-list): If virtual buffers are being used, call
10390 `ido-add-virtual-buffers-to-list' before the make list hook.
10391 (ido-virtual-buffers): New variable which contains a copy of the
10392 current contents of the `recentf-list', albeit pared down for the
10393 sake of speed, and with proper faces applied.
10394 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
10395 create a list of "virtual buffers" to present to the user in
10396 addition to the currently open set. Note that this logic could
10397 get rather slow if that list is too large. With the default
10398 `recentf-max-saved-items' of 200, there is little speed penalty.
10399
10400 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
10401
10402 * font-lock.el: Require CL when compiling.
10403 (font-lock-turn-on-thing-lock): Use `case'.
10404
10405 2010-04-03 Eli Zaretskii <eliz@gnu.org>
10406
10407 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
10408 Zaretskii.
10409
10410 2010-04-02 Juri Linkov <juri@jurta.org>
10411
10412 * ehelp.el (electric-help-orig-major-mode):
10413 New buffer-local variable.
10414 (electric-help-mode): Set it to original major-mode. Doc fix.
10415 (with-electric-help): Use `electric-help-orig-major-mode' instead
10416 of (default-value 'major-mode). Doc fix.
10417 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
10418
10419 2010-04-02 Sam Steingold <sds@gnu.org>
10420
10421 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
10422 `vc-hg-command' with a list of flags.
10423
10424 * progmodes/bug-reference.el (bug-reference-bug-regexp):
10425 Also accept "patch" and "RFE".
10426 (bug-reference-fontify): `bug-reference-url-format' can also be a
10427 function to be able to handle the bug kind.
10428 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
10429
10430 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
10431
10432 * tmm.el (tmm-get-keymap): Check with symbolp before passing
10433 value to fboundp, it may not be a symbol.
10434
10435 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10436
10437 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
10438
10439 2010-03-31 Juri Linkov <juri@jurta.org>
10440
10441 * simple.el (next-line, previous-line): Re-throw a signal
10442 with `signal' instead of using `ding'.
10443 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
10444
10445 2010-03-31 Juri Linkov <juri@jurta.org>
10446
10447 * simple.el (keyboard-escape-quit): Raise deselecting the active
10448 region higher than exiting the minibuffer.
10449 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
10450
10451 2010-03-31 Juri Linkov <juri@jurta.org>
10452
10453 * image.el (image-animated-p): Use `image-metadata' instead of
10454 `image-extension-data'. Get GIF extenstion data from metadata
10455 property `extension-data'.
10456
10457 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10458
10459 * simple.el (append-to-buffer): Simplify.
10460
10461 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
10462
10463 * textmodes/artist.el (artist-mode): Fix typo in docstring.
10464 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
10465
10466 2010-03-31 Kenichi Handa <handa@m17n.org>
10467
10468 * language/sinhala.el (composition-function-table): Fix regexp for
10469 the new Unicode specification.
10470
10471 * language/indian.el (devanagari-composable-pattern)
10472 (tamil-composable-pattern, kannada-composable-pattern)
10473 (malayalam-composable-pattern): Adjust for the new Unicode
10474 specification.
10475 (bengali-composable-pattern, gurmukhi-composable-pattern)
10476 (gujarati-composable-pattern, oriya-composable-pattern)
10477 (telugu-composable-pattern): New variables to cope with the new
10478 Unicode specification. Use them in composition-function-table.
10479
10480 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10481
10482 Make tmm-menubar work for the Buffers menu again (bug#5726).
10483 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
10484 vectors rather than cons cells, as used in menu-bar-update-buffers.
10485
10486 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10487
10488 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
10489 (js-insert-and-indent): Revert 2009-08-15 change, restoring
10490 electric punctuation for "{}();,:" (Bug#5586).
10491
10492 * mail/sendmail.el (mail-default-directory): Doc fix.
10493
10494 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10495
10496 * mail/sendmail.el (mail-default-directory): Doc fix.
10497
10498 2010-03-31 Eli Zaretskii <eliz@gnu.org>
10499
10500 * subr.el (version-regexp-alist, version-to-list)
10501 (version-list-<, version-list-=, version-list-<=)
10502 (version-list-not-zero, version<, version<=, version=): Doc fix.
10503 (Bug#5744).
10504
10505 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
10506
10507 * vc.el (vc-root-diff): Doc fix.
10508
10509 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10510
10511 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
10512
10513 * simple.el (append-to-buffer): Fix last change.
10514
10515 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10516
10517 * simple.el (append-to-buffer): Ensure that point is preserved if
10518 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
10519 (Bug#5749)
10520
10521 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10522
10523 * files.el (auto-mode-case-fold): Change default to t.
10524
10525 2010-03-30 Juri Linkov <juri@jurta.org>
10526
10527 * dired-x.el (dired-omit-mode): Doc fix.
10528
10529 2010-03-30 Juri Linkov <juri@jurta.org>
10530
10531 * replace.el (occur-accumulate-lines): Move occur-engine related
10532 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
10533 to be located after `occur-engine'.
10534
10535 2010-03-30 Juri Linkov <juri@jurta.org>
10536
10537 Make occur handle multi-line matches cleanly with context.
10538 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
10539
10540 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
10541 (occur-engine): Add local variables `ret', `prev-after-lines',
10542 `prev-lines'. Use more arguments for `occur-context-lines'.
10543 Set first elem of its returned list to `data', and the second elem
10544 to `prev-after-lines'. Don't print the separator line.
10545 In the end, print remaining context after-lines.
10546 (occur-context-lines): Add new arguments `begpt', `endpt',
10547 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
10548 after-lines of the previous match with before-lines of the
10549 current match and not overlap them. Return a list with two
10550 values: the output line and the list of context after-lines.
10551
10552 2010-03-30 Juri Linkov <juri@jurta.org>
10553
10554 * replace.el (occur-accumulate-lines): Fix a bug where the first
10555 context line at the beginning of the buffer was missing.
10556
10557 2010-03-30 Eli Zaretskii <eliz@gnu.org>
10558
10559 * files.el: Make bidi-display-reordering safe variable for boolean
10560 values.
10561
10562 2010-03-29 Phil Hagelberg <phil@evri.com>
10563 Chong Yidong <cyd@stupidchicken.com>
10564
10565 * subr.el: Extend progress reporters to perform "spinning".
10566 (progress-reporter-update, progress-reporter-do-update):
10567 Handle non-numeric value arguments.
10568 (progress-reporter--pulse-characters): New var.
10569
10570 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
10571
10572 * progmodes/compile.el (compilation-start): Fix regexp detection
10573 of initial cd command (Bug#5771).
10574
10575 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
10576
10577 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
10578
10579 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
10580
10581 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
10582 * progmodes/gdb-mi.el: Restore.
10583 * progmodes/gdb-ui.el: Remove.
10584 * progmodes/gud.el: Re-accommodate for gdb-mi.el.
10585
10586 2010-03-25 Glenn Morris <rgm@gnu.org>
10587
10588 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
10589 all dired buffers, even tramp ones. (Bug#5755)
10590
10591 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
10592
10593 Add "union tags" in mpc.el.
10594 * mpc.el: Remove backward compatibility code.
10595 (mpc-browser-tags): Change default.
10596 (mpc--find-memoize-union-tags): New var.
10597 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
10598 (mpc-cmd-find): Handle the case where the playlist does not exist.
10599 Handle union-tags.
10600 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
10601 (mpc-cmd-add): Use mpc-cmd-flush.
10602 (mpc-tagbrowser-tag-name): New fun.
10603 (mpc-tagbrowser-buf): Use it.
10604 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
10605
10606 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
10607
10608 Misc cleanup.
10609 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
10610 Use replace-regexp-in-string.
10611 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
10612 (makefile-imake-mode-syntax-table): Move init into defvar.
10613 (makefile-mode): Use define-derived-mode.
10614
10615 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
10616 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
10617 not be present any more.
10618
10619 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
10620
10621 * faces.el (set-face-attribute): Fix typo in docstring.
10622 (face-valid-attribute-values): Reflow docstring.
10623
10624 2010-03-24 Glenn Morris <rgm@gnu.org>
10625
10626 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
10627
10628 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
10629
10630 * indent.el (indent-for-tab-command): Doc fix.
10631
10632 2010-03-24 Alan Mackenzie <acm@muc.de>
10633
10634 * progmodes/cc-engine.el (c-remove-stale-state-cache):
10635 Fix off-by-one error. Fixes bug #5747.
10636
10637 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
10638
10639 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
10640 (image-dired-read-comment): Doc fix.
10641
10642 * json.el (json-object-type, json-array-type, json-key-type)
10643 (json-false, json-null, json-read-number):
10644 * minibuffer.el (completion-in-region-functions):
10645 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
10646 (cal-tex-cursor-week):
10647 * emacs-lisp/trace.el (trace-function):
10648 * eshell/em-basic.el (eshell/printnl):
10649 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
10650 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
10651 * obsolete/levents.el (allocate-event, event-key, event-object)
10652 (event-point, event-process, event-timestamp, event-to-character)
10653 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
10654 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
10655 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
10656 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
10657 (reftex-highlight-selection): Fix typos in docstrings.
10658
10659 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
10660
10661 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
10662
10663 2010-03-24 Glenn Morris <rgm@gnu.org>
10664
10665 * mail/rmail.el (rmail-highlight-face): Restore option deleted
10666 2008-02-13 without comment; mark it obsolete.
10667 (rmail-highlight-headers): Use rmail-highlight-face once more.
10668
10669 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
10670
10671 * woman.el (woman2-process-escapes): Only consume the newline if
10672 the filler character is on a line by itself (Bug#5729).
10673
10674 2010-03-24 Kenichi Handa <handa@m17n.org>
10675
10676 * language/indian.el (devanagari-composable-pattern): Add more
10677 consonants.
10678
10679 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
10680
10681 * net/trampver.el: Update release number.
10682
10683 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
10684
10685 * net/tramp.el (tramp-find-executable):
10686 Use `tramp-get-connection-buffer'. Make the regexp for checking
10687 output of "wc -l" more robust.
10688 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
10689 (tramp-open-connection-setup-interactive-shell): Remove workaround
10690 for OpenSolaris bug, it is not needed anymore.
10691
10692 2010-03-24 Glenn Morris <rgm@gnu.org>
10693
10694 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
10695
10696 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
10697
10698 * files.el (auto-mode-alist): Accept more verilog file patterns.
10699
10700 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
10701
10702 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
10703
10704 2010-03-24 Glenn Morris <rgm@gnu.org>
10705
10706 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
10707 log-edit-before-checkin-process.
10708
10709 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
10710
10711 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
10712
10713 * vc-dispatcher.el (vc-start-logentry): Doc fix.
10714 (log-view-process-buffer, log-edit-extra-flags): Declare.
10715
10716 * log-edit.el (log-edit-before-checkin-process): Doc fix.
10717
10718 2010-03-23 Sam Steingold <sds@gnu.org>
10719
10720 Fix bug#5620: recalculate all markers on compilation buffer
10721 modifications, not on file modifications.
10722 * progmodes/compile.el (compilation-buffer-modtime): New buffer-local
10723 variable: the buffer modification time, for buffers not associated with
10724 files.
10725 (compilation-mode): Create it.
10726 (compilation-filter): Update it.
10727 (compilation-next-error-function): Use it instead of
10728 `visited-file-modtime' for timestamp.
10729
10730 2010-03-23 Juri Linkov <juri@jurta.org>
10731
10732 Implement Occur multi-line matches.
10733 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
10734
10735 * replace.el (occur): Doc fix.
10736 (occur-engine): Set `begpt' to the beginning of the first line.
10737 Set `endpt' to the end of the last match line. At first, count
10738 line numbers between `origpt' and `begpt'. Split out code from
10739 `out-line' variable to new let-bindings `match-prefix' and
10740 `match-str'. In `out-line' add non-numeric prefix to all
10741 non-first lines of multi-line matches. Finally, count lines
10742 between `begpt' and `endpt' and add to `lines'.
10743
10744 2010-03-23 Juri Linkov <juri@jurta.org>
10745
10746 * replace.el (occur-accumulate-lines, occur-engine):
10747 Use `occur-engine-line' instead of duplicate code.
10748 (occur-engine-line): New function created from duplicate code
10749 in `occur-accumulate-lines' and `occur-engine'.
10750
10751 * replace.el (occur-engine-line): Add optional arg `keep-props'.
10752 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
10753
10754 2010-03-23 Juri Linkov <juri@jurta.org>
10755
10756 * finder.el: Remove TODO tasks.
10757
10758 * info.el (Info-finder-find-node): Add node "all"
10759 with all package info. Handle a list of multiple keywords
10760 separated by comma.
10761 (info-finder): In interactive use with a prefix argument,
10762 use `completing-read-multiple' to read a list of keywords
10763 separated by comma.
10764
10765 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
10766
10767 Add a new completion style `substring'.
10768 * minibuffer.el (completion-basic--pattern): New function.
10769 (completion-basic-try-completion, completion-basic-all-completions):
10770 Use it.
10771 (completion-substring--all-completions)
10772 (completion-substring-try-completion)
10773 (completion-substring-all-completions): New functions.
10774 (completion-styles-alist): New style `substring'.
10775
10776 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
10777
10778 Get rid of .elc files after removal of the corresponding .el.
10779 * Makefile.in (compile-clean): New target.
10780 (compile-main): Use it.
10781
10782 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
10783
10784 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
10785 don't do make there. When compiling with separate object dir, there
10786 is no Makefile there.
10787
10788 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
10789
10790 Get rid of the ELCFILES abomination, again.
10791 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
10792 (all, compile): Don't call compile-last.
10793 (compile-main): Build the "elcfiles" list dynamically.
10794 (compile-targets): New (internal) target.
10795
10796 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
10797
10798 * Makefile.in (top_srcdir): Define.
10799 (abs_top_builddir): Define.
10800 (srcdir): Don't append `/..'.
10801 (EMACS): Use ${abs_top_builddir}.
10802 (all, compile, compile-always, compile-last): Don't set emacswd.
10803 (update-subdirs, update-authors): Use $(top_srcdir) instead of
10804 $(srcdir).
10805 (lisp): Use $(srcdir) instead of @srcdir@.
10806
10807 2010-03-21 Juri Linkov <juri@jurta.org>
10808
10809 Fix message of multi-line occur regexps and multi-buffer header lines.
10810 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
10811
10812 * replace.el (occur-1): Don't display regexp if it is longer
10813 than window-width. Use `query-replace-descr' to display regexp.
10814 (occur-engine): Don't display regexp in the buffer header for
10815 multi-buffer occur. Display a separate header line with total
10816 match count and regexp for multi-buffer occur.
10817 Use `query-replace-descr' to display regexp.
10818
10819 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
10820
10821 * net/secrets.el: Fix parenthesis.
10822 (secrets-enabled): Fix parenthesis.
10823
10824 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
10825
10826 Use more relative file and directory names.
10827 * Makefile.in (EMACS): Arrange for it to work when we chdir.
10828 (setwins, setwins_almost, setwins_for_subdirs):
10829 Don't `cd'; output relative names.
10830 (all, compile, compile-always, compile-last): Set emacswd.
10831 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
10832 Just cd to the lisp source dir so we can use relative file names.
10833
10834 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
10835
10836 2010-03-20 Glenn Morris <rgm@gnu.org>
10837
10838 * textmodes/rst.el: Use faces for font-lock customization, and make the
10839 old -face variables obsolete.
10840 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
10841 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
10842 (rst-block-face, rst-external-face, rst-definition-face)
10843 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
10844 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
10845 Make obsolete.
10846 (rst-font-lock-keywords-function): Update for above changes.
10847
10848 2010-03-20 Juri Linkov <juri@jurta.org>
10849
10850 * s-region.el:
10851 * obsolete/s-region.el: Move to obsolete.
10852
10853 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
10854
10855 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
10856
10857 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
10858
10859 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
10860
10861 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
10862
10863 Add special markup processing for commit logs.
10864 * log-edit.el (log-edit-extra-flags): New variable.
10865 (log-edit): Add new argument MODE. Use that mode when non-nil
10866 instead of the log-view-mode.
10867 (log-view-process-buffer): New function.
10868
10869 * vc.el: Document that the checkin method takes optional
10870 arguments. Document new backend specific method: log-view-mode.
10871 (vc-default-log-edit-mode): New function.
10872 (vc-checkin): Use a backend specific log-view-mode.
10873 Pass extra arguments to the checkin method.
10874 (vc-modify-change-comment): Pass a dummy extra argument.
10875
10876 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
10877 log-edit.
10878 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
10879 (vc-finish-logentry): Process the log buffer before passing it
10880 down. Pass log-edit-extra-flags.
10881
10882 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
10883 command.
10884 (log-edit-extra-flags, log-edit-before-checkin-process):
10885 New declarations.
10886
10887 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
10888 command.
10889 (log-edit-extra-flags, log-edit-before-checkin-process):
10890 New declarations.
10891 (vc-hg-log-edit-mode): New derived mode.
10892
10893 * vc-arch.el (vc-arch-checkin):
10894 * vc-cvs.el (vc-cvs-checkin):
10895 * vc-git.el (vc-git-checkin):
10896 * vc-mtn.el (vc-mtn-checkin):
10897 * vc-rcs.el (vc-rcs-checkin):
10898 * vc-sccs.el (vc-sccs-checkin):
10899 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
10900
10901 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
10902
10903 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
10904 parent typo).
10905
10906 2010-03-19 Glenn Morris <rgm@gnu.org>
10907
10908 * password-cache.el (password-cache, password-cache-expiry): Autoload.
10909
10910 2010-03-18 Glenn Morris <rgm@gnu.org>
10911
10912 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
10913
10914 * replace.el (query-replace-history): Give it a doc string.
10915 (map-query-replace-regexp): Use query-replace-from-history-variable
10916 and query-replace-to-history-variable.
10917
10918 * mail/hashcash.el (declare-function): Remove duplicate definition.
10919
10920 * mail/emacsbug.el (report-emacs-bug-pretest-address):
10921 Make it an obsolete alias for report-emacs-bug-address.
10922 (message-strip-special-text-properties): Declare.
10923 (report-emacs-bug): Remove test for a pretest bug address.
10924 Combine message-mode-specific code.
10925
10926 * mail/supercite.el: Don't require sendmail.
10927 (mh-in-header-p): Declare rather than using with-no-warnings.
10928 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
10929 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
10930
10931 * calendar/cal-french.el: Convert to utf-8.
10932
10933 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
10934 Emacs scripts.
10935
10936 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
10937
10938 * net/secrets.el (secrets-enabled): New variable. Use it instead
10939 of a subfeature.
10940
10941 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
10942
10943 * net/secrets.el (top): Register the D-Bus signals only when the
10944 service "org.freedesktop.secrets" can be pinged.
10945 Provide subfeature `enabled'.
10946
10947 2010-03-14 Juri Linkov <juri@jurta.org>
10948
10949 Add finder unknown keywords.
10950
10951 * finder.el (finder-unknown-keywords): New function.
10952
10953 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
10954 to create a Finder node with unknown keywords.
10955
10956 2010-03-14 Juri Linkov <juri@jurta.org>
10957
10958 * finder.el (finder-compile-keywords): Replace `princ' with
10959 `prin1' on a list of symbols interned from keyword strings.
10960
10961 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
10962 a comma, then split keywords using a comma and optional whitespace.
10963 Otherwise, split by whitespace.
10964
10965 * complete.el:
10966 * face-remap.el:
10967 * log-view.el:
10968 * net/hmac-def.el:
10969 * net/hmac-md5.el:
10970 * net/netrc.el:
10971 * progmodes/mixal-mode.el: Fix keywords.
10972
10973 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
10974
10975 * Makefile.in (ELCFILES): Add net/secrets.elc.
10976
10977 * net/secrets.el: New file.
10978
10979 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
10980
10981 * facemenu.el (list-colors-display, list-colors-print): New arg
10982 callback. Use it to allow selecting colors.
10983
10984 * wid-edit.el (widget-image-insert): Insert image prop even if the
10985 current display is non-graphic.
10986 (widget-field-value-set): New fun.
10987 (editable-field): Use it.
10988 (widget-field-value-get): Clean up unused var.
10989 (widget-color-value-create, widget-color--choose-action):
10990 New funs. Allow using list-colors-display to choose color.
10991
10992 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
10993
10994 * cus-edit.el: Resort topmost custom groups.
10995 (custom-buffer-sort-alphabetically): Default to t.
10996 (customize-apropos): Use apropos-parse-pattern.
10997 (custom-search-field): New var.
10998 (custom-buffer-create-internal): Add custom-apropos search field.
10999 (custom-add-parent-links): Don't display parent doc.
11000 (custom-group-value-create): Don't sort top-level custom group.
11001 (custom-magic-value-create): Show visibility button before option name.
11002
11003 (custom-variable-state): New fun, from custom-variable-state-set.
11004 (custom-variable-state-set): Use it.
11005 (custom-group-value-create): Hide options with standard values
11006 using the :hidden-states property. Use progress reporter.
11007
11008 (custom-show): Simplify.
11009 (custom-visibility): Disable images by default.
11010 (custom-variable): New property :hidden-states.
11011 (custom-variable-value-create): Enable images for
11012 custom-visibility widgets. Use :hidden-states property to
11013 determine initial visibility.
11014
11015 * wid-edit.el (widget-image-find): Give images center ascent.
11016 (visibility): Add :on-image and :off-image properties.
11017 (widget-visibility-value-create): Use them.
11018
11019 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
11020
11021 * cus-edit.el (processes): Remove from development group.
11022 (oop, hypermedia): Delete group.
11023 (comm): Promote to top-level group.
11024
11025 * net/browse-url.el (browse-url):
11026 * net/xesam.el (xesam):
11027 * net/tramp.el (tramp):
11028 * net/goto-addr.el (goto-address):
11029 * net/ange-ftp.el (ange-ftp): Put in comm group.
11030
11031 * view.el (view): Remove from editing group.
11032
11033 * uniquify.el (uniquify): Put in files group.
11034
11035 * net/browse-url.el (browse-url):
11036 * ps-print.el (postscript): Put in external group.
11037
11038 * cus-edit.el (outlines):
11039 * textmodes/text-mode.el (text-mode-hook):
11040 * textmodes/table.el (table):
11041 * textmodes/picture.el (picture):
11042 * outline.el (outlines): Put in wp group.
11043
11044 * nxml/nxml-mode.el (nxml): Remove from wp group.
11045
11046 * net/tramp-imap.el (tramp-imap): Put in tramp group.
11047
11048 * mail/metamail.el (metamail): Remove from hypermedia group.
11049
11050 * cus-edit.el (abbrev):
11051 * whitespace.el (whitespace):
11052 * vcursor.el (vcursor):
11053 * reveal.el (reveal):
11054 * hl-line.el (hl-line): Put in convenience group.
11055
11056 * epg-config.el (epg): Put in data group.
11057
11058 * emulation/pc-select.el (pc-select): Put in emulations group.
11059
11060 * calculator.el (calculator): Put in applications group.
11061
11062 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
11063
11064 Add .dir-locals.el support for file-less buffers.
11065 * files.el (hack-local-variables): Split out code to apply local
11066 variable settings ...
11067 (hack-local-variables-apply): ... here. New function.
11068 (hack-dir-local-variables): Use the default directory for when the
11069 buffer does not have an associated file.
11070 (hack-dir-local-variables-non-file-buffer): New function.
11071 * diff-mode.el (diff-mode):
11072 * vc-annotate.el (vc-annotate-mode):
11073 * vc-dir.el (vc-dir-mode):
11074 * log-edit.el (log-edit-mode):
11075 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
11076
11077 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
11078
11079 Add support for shelving snapshots and for showing shelves.
11080 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
11081 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
11082 New functions.
11083 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
11084 (vc-bzr-extra-menu-map): Map them.
11085
11086 2010-03-11 Glenn Morris <rgm@gnu.org>
11087
11088 * cus-edit.el (customize-changed-options-previous-release):
11089 Bump to 23.1.
11090
11091 * image.el (image-animate-max-time): Fix :version tag.
11092
11093 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
11094
11095 * Branch for 23.2.
11096
11097 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
11098
11099 * vc-git.el (vc-git-revision-table): Include remote branches.
11100
11101 2010-03-10 Kim F. Storm <storm@cua.dk>
11102
11103 Animated image API.
11104 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
11105
11106 * image.el (image-animate-max-time): New defcustom.
11107 (image-animated-types): New defconst.
11108 (create-animated-image, image-animate-timer)
11109 (image-animate-start, image-animate-stop, image-animate-timeout)
11110 (image-animated-p): New functions.
11111
11112 * image-mode.el (image-toggle-display-image):
11113 Replace `create-image' with `create-animated-image'.
11114
11115 2010-03-09 Miles Bader <miles@gnu.org>
11116
11117 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
11118 instead of "format:"; this ensures that the output is
11119 newline-terminated.
11120
11121 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
11122
11123 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
11124 that all errors are caught, and that the return value is always a
11125 list (Bug#5692).
11126
11127 2010-03-08 Kenichi Handa <handa@m17n.org>
11128
11129 * language/misc-lang.el (windows-1256): New coding system.
11130 (cp1256): New alias of windows-1256 (bug#5690).
11131
11132 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
11133
11134 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
11135 call to rfc822-bad-address. (Bug#5692)
11136
11137 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
11138
11139 * vc-git.el (vc-git-annotate-extract-revision-at-line):
11140 Use vc-git-root as default directory for revision path (Bug#5657).
11141
11142 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
11143
11144 * calculator.el (calculator): Don't bind split-window-keep-point
11145 (Bug#5674).
11146
11147 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
11148
11149 * vc-git.el: Re-flow to fit into 80 columns.
11150 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
11151 Remove spurious `quote' element in each case alternative.
11152 (vc-git-show-log-entry): Use prog1.
11153 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
11154
11155 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
11156
11157 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
11158
11159 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
11160
11161 * macros.el (insert-kbd-macro): Look up keyboard macro using the
11162 definition, not the name (Bug#5481).
11163
11164 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
11165
11166 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
11167 argument with a local variable. (Bug#5670)
11168
11169 2010-03-02 Juri Linkov <juri@jurta.org>
11170
11171 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
11172
11173 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
11174
11175 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
11176 error when FILENAME and NEWNAME are existing remote directories.
11177
11178 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
11179 parameter DIR-FLAG.
11180
11181 2010-03-02 Glenn Morris <rgm@gnu.org>
11182
11183 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
11184 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
11185
11186 2010-03-01 Kenichi Handa <handa@m17n.org>
11187
11188 * language/burmese.el (burmese-composable-pattern): Rename from
11189 myanmar-composable-pattern.
11190
11191 * international/characters.el (script-list):
11192 * international/fontset.el (script-representative-chars):
11193 Change myanmar to burmese.
11194 (otf-script-alist): Likewise.
11195 (setup-default-fontset): Likewise. Re-fix :otf spec.
11196
11197 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
11198
11199 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
11200
11201 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
11202
11203 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
11204
11205 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
11206
11207 * net/tramp.el (tramp-handle-write-region): START can be a string.
11208 Take care in the checks. Reported by Dan Davison
11209 <davison@stats.ox.ac.uk>.
11210
11211 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
11212
11213 * net/dbus.el (dbus-introspect, dbus-get-property)
11214 (dbus-set-property, dbus-get-all-properties):
11215 Use `dbus-call-method' when noninteractive. (Bug#5645)
11216
11217 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
11218
11219 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
11220 * emacs-lisp/elint.el (elint-add-required-env):
11221 * calendar/icalendar.el (icalendar--add-diary-entry):
11222 * calc/calcalg2.el (math-tracing-integral):
11223 * files.el (recover-session-finish): Use with-current-buffer
11224 instead of save-excursion.
11225
11226 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
11227
11228 Fix in-buffer completion when after-change-functions modify the buffer.
11229 * minibuffer.el (completion--replace): New function.
11230 (completion--do-completion): Use it and use relative movement.
11231
11232 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
11233
11234 * international/fontset.el (setup-default-fontset): Fix :otf spec.
11235
11236 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
11237
11238 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
11239 Allow the characters _<> in the stack entry (Bug#5653).
11240
11241 2010-02-26 Kenichi Handa <handa@m17n.org>
11242
11243 * language/burmese.el: Fix entries in composition-function-table.
11244 (myanmar-composable-pattern): New variable.
11245
11246 * international/fontset.el (setup-default-fontset): Add an entry
11247 for myanmar.
11248
11249 * international/characters.el (script-list): Add Myanmar
11250 Extended-A.
11251
11252 2010-02-26 Glenn Morris <rgm@gnu.org>
11253
11254 * custom.el (custom-initialize-delay): Doc fix.
11255
11256 * mail/sendmail.el (send-mail-function): Autoload the call
11257 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
11258
11259 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
11260
11261 * files.el (hack-local-variables-filter): For eval forms, also
11262 check safe-local-variable-p (Bug#5636).
11263
11264 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
11265
11266 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
11267 setting the modes by `ignore-errors'. It might fail, for example
11268 if the file is not owned by the user but the group.
11269 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
11270
11271 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
11272
11273 * files.el (directory-listing-before-filename-regexp):
11274 Use stricter matching for iso-style dates, to avoid false matches with
11275 date-like filenames (Bug#5597).
11276
11277 * htmlfontify.el (htmlfontify): Doc fix.
11278
11279 * eshell/eshell.el (eshell): Doc fix.
11280
11281 * startup.el (fancy-about-screen): In mode-line, apply
11282 mode-line-buffer-id face only to the buffer name (Bug#5613).
11283
11284 2010-02-20 Kevin Ryde <user42@zip.com.au>
11285
11286 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11287 In `watcom' anchor regexp to start of line, to avoid slowness
11288 (Bug#5599).
11289
11290 2010-02-20 Eli Zaretskii <eliz@gnu.org>
11291
11292 * subr.el (remove-yank-excluded-properties): Explain in a comment
11293 why `category' property is removed.
11294
11295 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
11296
11297 * isearch.el (isearch-update-post-hook, isearch-update):
11298 Revert 2010-02-17 change.
11299
11300 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
11301
11302 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
11303 (icalendar--convert-weekly-to-ical)
11304 (icalendar--convert-yearly-to-ical)
11305 (icalendar--convert-block-to-ical)
11306 (icalendar--convert-cyclic-to-ical)
11307 (icalendar--convert-anniversary-to-ical): Take care of time
11308 specifications where hour has 1-digit only (Bug#5549).
11309
11310 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
11311
11312 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
11313 of disassemble output in GDB 7.1.
11314
11315 2010-02-19 Glenn Morris <rgm@gnu.org>
11316
11317 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
11318 property. (Bug#5593)
11319
11320 2010-02-18 Sam Steingold <sds@gnu.org>
11321
11322 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
11323
11324 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
11325
11326 Use abbreviated file names in bookmarks (bug#5591).
11327 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
11328 calls to expand-file-name.
11329 (bookmark-relocate): Use abbreviated file names in bookmarks.
11330 (bookmark-load): Use abbreviated file names in messages.
11331
11332 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
11333
11334 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
11335 expand "." and "..". Reported by Thierry Volpiatto
11336 <thierry.volpiatto@gmail.com>.
11337
11338 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
11339
11340 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
11341 permissions of the temporary file to "0600". In case the remote
11342 file has no read permissions for the owner, there might be
11343 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
11344
11345 22010-02-18 Glenn Morris <rgm@gnu.org>
11346
11347 * emacs-lisp/authors.el (authors-renamed-files-alist):
11348 Add entries for INSTALL.CVS.
11349
11350 2010-02-17 Mark A. Hershberger <mah@everybody.org>
11351
11352 * vc-bzr.el: Fix typo in Known Bugs section.
11353
11354 * isearch.el (isearch-update-post-hook): New hook.
11355 (isearch-update): Use the new hook.
11356
11357 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
11358
11359 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
11360 Fix errors in copying directories.
11361 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
11362 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
11363 (tramp-handle-delete-file)
11364 (tramp-handle-dired-recursive-delete-directory)
11365 (tramp-handle-write-region): Flush also the cache for the upper
11366 directory.
11367
11368 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
11369
11370 * simple.el (save-interprogram-paste-before-kill): Doc fix.
11371
11372 * cus-edit.el (hardware): Doc fix.
11373
11374 * man.el (man): Add to external custom group.
11375
11376 * delim-col.el (columns): Move to wp custom group.
11377
11378 * doc-view.el (doc-view): Add to data custom group.
11379
11380 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
11381
11382 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
11383 by ispell-parse-output (Bug#5575).
11384
11385 2010-02-16 Kenichi Handa <handa@m17n.org>
11386
11387 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
11388 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
11389 (skkdic-convert): Use `euc-japan' coding system for writing.
11390
11391 2010-02-16 Glenn Morris <rgm@gnu.org>
11392
11393 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
11394 tex-main-file before using it. (Bug#5562)
11395
11396 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
11397
11398 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
11399 warnings, since it is annoying for the user to see them each time he
11400 runs the code.
11401
11402 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
11403
11404 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
11405 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
11406 instead of PROC for caching "first-password-request". Otherwise,
11407 new processes would not profit from passwords already entered.
11408
11409 * net/tramp-cache.el (tramp-dump-connection-properties):
11410 Don't save "first-password-request" property.
11411
11412 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
11413
11414 * outline.el (outline-head-from-level):
11415 * simple.el (with-wrapper-hook):
11416 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
11417 (elint-defun, elint-buffer-env, elint-top-form-logged)
11418 (elint-unbound-variable):
11419 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
11420 Fix typos in docstrings.
11421
11422 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
11423
11424 * files.el (insert-directory): When WILDCARD-REGEXP and
11425 FULL-DIRECTORY-P are nil, insert the file entry instead of the
11426 whole directory. (Bug#5551)
11427
11428 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
11429 dired's alignment sanity. (Bug#5516)
11430
11431 2010-02-14 Juri Linkov <juri@jurta.org>
11432
11433 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
11434 Remove remaining ^H with their preceding chars. (Bug#5566)
11435
11436 2010-02-13 Glenn Morris <rgm@gnu.org>
11437
11438 * simple.el (transpose-subr): Give it a doc-string.
11439
11440 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
11441 Doc fixes.
11442
11443 2010-02-12 Juri Linkov <juri@jurta.org>
11444
11445 * arc-mode.el (archive-unique-fname): Make directories for nested
11446 archives. (Bug#5540)
11447
11448 2010-02-12 Juri Linkov <juri@jurta.org>
11449
11450 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
11451
11452 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
11453
11454 * subr.el (copy-overlay): Handle deleted overlays.
11455
11456 * man.el (Man-completion-table): Don't signal an error if we can't run
11457 manual-program (bug#4056).
11458
11459 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
11460
11461 * textmodes/artist.el (artist-mt): Fix typos in docstring.
11462
11463 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11464
11465 * info.el (Info-bookmark-jump): Simplify.
11466
11467 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
11468 (bookmark-default-handler): Accept new bookmark field `buffer'.
11469
11470 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
11471
11472 * iswitchb.el (iswitchb-completions): Revert last change.
11473
11474 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
11475
11476 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
11477 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
11478 This prevents file names like "~/" being listed literally.
11479
11480 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
11481
11482 * term/xterm.el (xterm-maybe-set-dark-background-mode):
11483 Remove dead code. (Bug#5546)
11484
11485 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
11486
11487 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
11488 correctly (Bug#5548).
11489
11490 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
11491
11492 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
11493 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
11494
11495 2010-02-08 Kenichi Handa <handa@m17n.org>
11496
11497 * international/mule-util.el (with-coding-priority): Add autoload
11498 cookie for putting `lisp-indent-function'.
11499
11500 2010-02-07 Glenn Morris <rgm@gnu.org>
11501
11502 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
11503 Move F2003 named interfaces from keywords-2 to keywords-1, and
11504 use function-name-face rather than constant-face.
11505 Simplify "abstract interface" regexp.
11506
11507 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
11508
11509 * eshell/esh-util.el (eshell-file-attributes): New optional arg
11510 ID-FORMAT. Pass it to `file-attributes'.
11511
11512 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
11513
11514 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
11515
11516 * faces.el (set-face-attribute): Allow calling
11517 internal-set-lisp-face-attribute with 'unspecified family and
11518 foundry argument (Bug#5536).
11519
11520 2010-02-07 Glenn Morris <rgm@gnu.org>
11521
11522 * progmodes/f90.el (f90-font-lock-keywords-2)
11523 (f90-looking-at-type-like, f90-looking-at-program-block-end):
11524 Handle F2003 named interfaces.
11525
11526 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
11527
11528 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
11529 beg and end before calling c-get-state-before-change-functions.
11530
11531 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
11532
11533 * vc-bzr.el (vc-bzr-dir-extra-headers):
11534 Disable the pending merges header.
11535
11536 2010-02-05 Juri Linkov <juri@jurta.org>
11537
11538 * doc-view.el (doc-view-mode):
11539 * image-mode.el (image-mode): Put property mode-class=special.
11540 (Bug#4896)
11541
11542 2010-02-05 Mark A. Hershberger <mah@everybody.org>
11543
11544 * vc-svn.el (vc-svn-revision-table): New function.
11545
11546 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
11547
11548 * net/ange-ftp.el (ange-ftp-insert-directory):
11549 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
11550 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
11551 Handle also directories. (Bug#5478)
11552
11553 2010-02-05 Glenn Morris <rgm@gnu.org>
11554
11555 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
11556
11557 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
11558
11559 * startup.el (command-line-1): Convert options beginning with a
11560 single dash as well (Bug#5519).
11561
11562 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
11563
11564 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
11565 * minibuffer.el (completion-initials-expand): Only check the presence
11566 of delims *within* the boundaries, since otherwise the / delim is
11567 always found for files.
11568
11569 Fix up various corner case problems.
11570 * doc-view.el (doc-view-last-page-number): New function.
11571 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
11572 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
11573 (doc-view-kill-proc): Avoid inf-loop in freak cases.
11574 (doc-view-reconvert-doc): Use the new recursive delete-directory.
11575 (doc-view-convert-current-doc): Don't create the resolution.el file
11576 here any more.
11577 (doc-view-pdf/ps->png): Do it here instead.
11578 (doc-view-already-converted-p): Check that resolution.el is present.
11579 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
11580 windows that are not yet showing images.
11581
11582 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
11583
11584 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
11585 `dired-uncache' for every elemnt which is an absolute file name.
11586
11587 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
11588 directory, handle its directory component.
11589 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
11590 function is called permanently and creates noise, otherwise.
11591
11592 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
11593 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
11594 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
11595
11596 2010-02-04 David Burger <dburger@google.com> (tiny change)
11597
11598 * macros.el (apply-macro-to-region-lines):
11599 Minor simplification. (Bug#5485)
11600
11601 2010-02-04 Glenn Morris <rgm@gnu.org>
11602
11603 * mail/rmail.el (rmail-show-message-1): Handle malformed
11604 quoted-printable text. (Bug#5441)
11605
11606 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
11607
11608 * simple.el (visual-line-mode): Capitalize lighter.
11609
11610 2010-02-03 John Wiegley <jwiegley@gmail.com>
11611
11612 * iswitchb.el (iswitchb-completions): Add bookmark files to the
11613 list of files considered for "virtual buffer" completions.
11614
11615 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
11616
11617 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
11618 also in case of (and (not full) (not wildcard)). This is needed
11619 when dired is called with a list of files, which are not in
11620 `default-directory'. (Bug#5478)
11621
11622 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
11623
11624 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
11625
11626 2010-02-02 Juri Linkov <juri@jurta.org>
11627
11628 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
11629 from unidiff to allow function-line after @@.
11630
11631 2010-02-02 Juri Linkov <juri@jurta.org>
11632
11633 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
11634 '(RCS SCCS) with inverted condition.
11635
11636 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
11637
11638 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
11639 messages.
11640
11641 2010-02-01 Juri Linkov <juri@jurta.org>
11642
11643 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
11644 compare with "pkunzip" and "pkzip" instead of only "pkzip".
11645 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
11646 only when (car archive-zip-extract) is "unzip". (Bug#5475)
11647
11648 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
11649
11650 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
11651 (doc-view-revert-buffer): New command.
11652 (doc-view-mode-map): Use it.
11653
11654 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
11655
11656 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
11657 pending merge is detected.
11658
11659 2010-01-31 Juri Linkov <juri@jurta.org>
11660
11661 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
11662 beginning of interactive spec like all other grep commands do.
11663 Put "all" in front of "gz". (Bug#5260)
11664
11665 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
11666
11667 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
11668
11669 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
11670
11671 * dirtrack.el (dirtrack): Warn instead of signalling error if the
11672 regexp is incorrect (Bug#5476).
11673
11674 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
11675
11676 * net/tramp.el (tramp-handle-insert-directory): Handle also
11677 symlinks, when FILENAME is not in `default-directory'.
11678
11679 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
11680
11681 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
11682 FILE is not in `default-directory'. (Bug#5478)
11683
11684 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
11685 of SWITCHES. Handle the case, FILENAME is not in
11686 `default-directory'. (Bug#5478)
11687 (tramp-register-file-name-handlers): Add safe-magic property.
11688
11689 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
11690
11691 * arc-mode.el (archive-zip-extract): Quote the argument passed to
11692 unzip (Bug#5475).
11693
11694 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
11695
11696 * progmodes/flymake.el (flymake-allowed-file-name-masks)
11697 (flymake-master-make-header-init): Add other C++ filename masks.
11698 (flymake-find-possible-master-files)
11699 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
11700
11701 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
11702
11703 Fix some busybox annoyances.
11704
11705 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
11706 not responding." string.
11707 (tramp-open-connection-setup-interactive-shell): Dump stty
11708 settings. Enable "neveropen" arg for all `tramp-send-command'
11709 calls. Handle "=" in variable values properly.
11710 (tramp-find-inline-encoding): Raise an error, when no encoding is
11711 found.
11712 (tramp-wait-for-output): Check, whether PROC buffer is available.
11713 Remove spurious " ^H" sequences, sent by busybox.
11714 (tramp-get-ls-command): Suppress coloring, if possible.
11715
11716 2010-01-28 Glenn Morris <rgm@gnu.org>
11717
11718 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
11719
11720 * log-edit.el (log-edit-strip-single-file-name): Add missing
11721 :safe, :group, and :version tags.
11722
11723 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
11724
11725 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
11726 buffers. (Bug#5477)
11727
11728 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
11729
11730 * files.el (delete-directory): Handle moving to trash without
11731 first doing recursion (Bug#5436).
11732
11733 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
11734
11735 * vc-hooks.el (vc-path): Mark as obsolete.
11736
11737 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
11738
11739 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
11740 names too.
11741
11742 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
11743 for the short log.
11744 (vc-bzr-log-view-mode): Adjust regexp for the above change.
11745
11746 2010-01-25 Mark A. Hershberger <mah@everybody.org>
11747
11748 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
11749
11750 * vc-bzr.el (vc-bzr-revision-table): New function.
11751
11752 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com>
11753
11754 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
11755 diff-index command. This requires at least git-1.5.5. (Bug#1589).
11756
11757 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
11758
11759 Remove support for adding --signoff on commit.
11760 Future support will use an incompatible generic mechanism.
11761 * vc-git.el (vc-git-add-signoff): Remove variable.
11762 (vc-git-toggle-signoff): Remove function.
11763 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
11764
11765 * term/xterm.el (xterm-maybe-set-dark-background-mode):
11766 Rename from xterm-set-background-mode. Return t if the background mode
11767 was set.
11768 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
11769 earlier, call it again in case the background mode has changed.
11770
11771 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
11772
11773 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
11774 (Bug#3541).
11775
11776 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
11777
11778 * emacs-lisp/assoc.el (aelement): Doc fix.
11779 (aput, adelete, amake): Use lexical-let (Bug#5450).
11780
11781 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
11782
11783 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
11784 is the same as subprogram call, not declaration. (Bug#5435).
11785
11786 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
11787
11788 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
11789 (tramp-smb-maybe-open-connection): Use it.
11790
11791 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
11792
11793 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
11794
11795 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
11796
11797 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
11798 just because we see "encoding: 8bit".
11799 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
11800
11801 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
11802
11803 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
11804
11805 2010-01-22 Eli Zaretskii <eliz@gnu.org>
11806
11807 * jka-compr.el (jka-compr-load): If load-file is not in
11808 load-history, try its file-truename version. (bug#5447)
11809
11810 2010-01-21 Alan Mackenzie <acm@muc.de>
11811
11812 Fix a situation where deletion of a cpp construct throws an error.
11813 * progmodes/cc-engine.el (c-invalidate-state-cache):
11814 Before invoking c-with-all-but-one-cpps-commented-out, check that the
11815 special cpp construct is still in the buffer.
11816 (c-parse-state): Record the special cpp with markers, not numbers.
11817
11818 2010-01-21 Kenichi Handa <handa@m17n.org>
11819
11820 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
11821 process last-command-event, as it is now decoded first (Bug#5380).
11822
11823 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
11824
11825 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
11826
11827 2010-01-20 Glenn Morris <rgm@gnu.org>
11828
11829 * indent.el (tab-always-indent): Fix custom-type.
11830
11831 2010-01-19 Alan Mackenzie <acm@muc.de>
11832
11833 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
11834 buffer throws "args out of range".
11835 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
11836 playing the role of delimiter.
11837
11838 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
11839
11840 * progmodes/ada-mode.el: Fix bug#5400.
11841 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
11842 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
11843 changed. Delete RECURSIVE parameter; never used. Improve doc string.
11844 Improve comments in "is" portion. Handle null procedure declaration.
11845 (ada-move-to-end): Improve doc string.
11846
11847 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
11848
11849 * ido.el (ido-cur-list): Initialize to nil.
11850 Remove obsolete information from commentary.
11851 (ido-choice-list): Initialize to nil.
11852 (ido-get-bufname): Reject minibuffers.
11853 (ido-make-buffer-list): If "default" is a nonexistent
11854 buffer, ignore it, as per the function's comment.
11855 (ido-kill-buffer-internal): New function.
11856 (ido-kill-buffer-at-head): Use it.
11857 (ido-visit-buffer): Likewise.
11858
11859 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
11860
11861 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
11862
11863 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
11864
11865 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
11866 Fix typos in chart titles.
11867
11868 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
11869 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
11870 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
11871 (describe-class, eieio-describe-generic, describe-generic):
11872 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
11873 (eieio-speedbar-expand):
11874 * emulation/viper-cmd.el (viper-exec-form-in-vi)
11875 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
11876 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
11877 (viper-del-backward-char-in-replace, viper-backward-indent)
11878 (viper-brac-function, viper-register-to-point, viper-submit-report):
11879 * net/tramp.el (tramp-remote-coding-commands):
11880 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
11881 Fix typos in docstrings.
11882
11883 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
11884
11885 * mail/sendmail.el (mail-yank-original): Set the mark if the
11886 specified function for yanking does not do it.
11887
11888 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
11889
11890 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
11891
11892 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
11893 resyncing a directory.
11894
11895 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
11896
11897 * progmodes/ada-mode.el: Fix bug#1920.
11898 (ada-ident-re): Delete ., allow multibyte characters.
11899 (ada-goto-label-re): New; matches goto labels.
11900 (ada-block-label-re): New; matches block labels.
11901 (ada-label-re): New; matches both.
11902 (ada-named-block-re): Deleted; callers changed to use
11903 `ada-block-label-re' instead.
11904 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
11905 Use `ada-block-label-re'.
11906 (ada-indent-on-previous-lines): Improve handling of goto labels.
11907 (ada-get-indent-block-start): Special-case block label.
11908 (ada-get-indent-label): Split into `ada-indent-block-label' and
11909 `ada-indent-goto-label'.
11910 (ada-goto-stmt-start, ada-goto-next-non-ws):
11911 Optionally ignore goto labels.
11912 (ada-goto-next-word): Simplify.
11913 (ada-indent-newline-indent-conditional): Insert newline before
11914 trying to fix indentation; doc fix.
11915
11916 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
11917
11918 * calc/calc.el (calc-command-flags): Give it an initial value.
11919
11920 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
11921
11922 * files.el (minibuffer-with-setup-hook):
11923 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
11924 (artist-key-draw-continously, artist-key-do-continously-continously)
11925 (artist-key-set-point-continously, artist-mouse-draw-continously):
11926 Fix typos in docstrings.
11927
11928 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
11929
11930 * nxml/nxml-mode.el (nxml-extend-after-change-region):
11931 Never return t (Bug#3898).
11932
11933 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
11934
11935 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
11936 can parse the output of the external commands (Bug#5279).
11937
11938 2010-01-16 Jari Aalto <jari.aalto@cante.net>
11939
11940 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
11941
11942 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
11943
11944 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
11945
11946 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
11947
11948 * startup.el (command-line): Remove unused --icon-type arg.
11949 Handle --display arg, passing it to command-line-1 (Bug#5392).
11950
11951 2010-01-16 Mario Lang <mlang@delysid.org>
11952
11953 * emacs-lisp/chart.el (chart-translate-namezone):
11954 * textmodes/artist.el (artist-compute-popup-menu-table):
11955 Remove duplicated words in doc-strings.
11956
11957 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
11958
11959 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
11960 to mairix-search to suppress threading (Bug#5342).
11961
11962 2010-01-15 Kenichi Handa <handa@m17n.org>
11963
11964 * international/mule-cmds.el (canonicalize-coding-system-name):
11965 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
11966
11967 2010-01-15 Glenn Morris <rgm@gnu.org>
11968
11969 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
11970
11971 * wid-edit.el (widget-keymap): Doc fix.
11972
11973 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
11974 former seems to be more widely accepted by various svn versions.
11975
11976 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
11977
11978 * find-cmd.el (find-constituents):
11979 * vc-arch.el (vc-arch-root):
11980 * window.el (window-body-height, pop-up-frames):
11981 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
11982 * progmodes/ada-stmt.el (ada-if):
11983 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
11984 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
11985 (ispell-encoding8-command, ispell-aspell-supports-utf8)
11986 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
11987
11988 * progmodes/flymake.el (flymake-post-syntax-check):
11989 Fix typo in error message.
11990
11991 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
11992
11993 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
11994 which is always a string. (Bug#5313)
11995
11996 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
11997
11998 * progmodes/ada-xref.el (ada-default-prj-properties):
11999 Simplify previous change.
12000
12001 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
12002
12003 * progmodes/ada-xref.el (ada-default-prj-properties):
12004 Default ada_project_path to $ADA_PROJECT_PATH.
12005
12006 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
12007
12008 * progmodes/ada-mode.el (ada-create-keymap):
12009 Override `narrow-to-defun' with `ada-narrow-to-defun'.
12010
12011 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
12012
12013 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
12014 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
12015 (ada-get-current-indent, ada-imenu-generic-expression)
12016 (ada-which-function): Check for it.
12017
12018 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
12019
12020 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
12021 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
12022
12023 2010-01-14 Glenn Morris <rgm@gnu.org>
12024
12025 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
12026
12027 2010-01-14 Kenichi Handa <handa@m17n.org>
12028
12029 * composite.el (auto-composition-mode): Make it a buffer local
12030 variable (permanent-local).
12031 (auto-composition-function): Set the default value to
12032 auto-compose-chars.
12033 (auto-composition-mode): Make it a simple function, not a minor mode.
12034 (global-auto-composition-mode): Likewise.
12035 (turn-on-auto-composition-if-enabled): Delete it.
12036
12037 2010-01-13 Karl Fogel <kfogel@red-bean.com>
12038
12039 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
12040
12041 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
12042
12043 * files.el (copy-directory): Compute target for recursive
12044 directories with identical names. (Bug#5343)
12045
12046 2010-01-12 Glenn Morris <rgm@gnu.org>
12047
12048 * mail/emacsbug.el (report-emacs-bug-pretest-address):
12049 Set it to bug-gnu-emacs rather than emacs-pretest-bug.
12050
12051 2010-01-11 Sam Steingold <sds@gnu.org>
12052
12053 * imenu.el (imenu-default-create-index-function): Detect infinite
12054 loops caused by imenu-prev-index-position-function.
12055
12056 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
12057
12058 * htmlfontify.el (htmlfontify-load-rgb-file)
12059 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
12060 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
12061 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
12062 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
12063 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
12064 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
12065 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
12066 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
12067 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
12068 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
12069 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
12070 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
12071 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
12072 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
12073 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
12074 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
12075 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
12076 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
12077 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
12078 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
12079 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
12080 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
12081 backslash-quoting from parentheses, etc.
12082
12083 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
12084
12085 * progmodes/js.el: Autoload javascript-mode alias.
12086
12087 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
12088
12089 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
12090 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
12091 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
12092 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
12093 Fix typos in docstrings.
12094 (ffap-url-regexp): Doc fix.
12095 (ffap-at-mouse): Fix typo in message.
12096
12097 2010-01-11 Glenn Morris <rgm@gnu.org>
12098
12099 * version.el (emacs-copyright): Set copyright year to 2010.
12100
12101 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
12102
12103 * format.el (format-annotate-function): Only set
12104 write-region-post-annotation-function after running to-fn so as not to
12105 affect nested write-region calls (bug#5273).
12106
12107 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
12108
12109 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
12110 wisent/python.el.
12111
12112 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
12113
12114 * man.el (Man-goto-section): Signal error if the section is not
12115 found (Bug#5317).
12116
12117 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
12118
12119 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
12120 URLs with a leading triple slash in the file: scheme. (Bug#5345)
12121
12122 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
12123
12124 * progmodes/compile.el: Don't treat compile-command as safe if
12125 compilation-read-command might be nil (Bug#4218).
12126
12127 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
12128
12129 * startup.el (command-line-1): Use orig-argi to check for ignored X and
12130 NS options.
12131
12132 2010-01-08 Kenichi Handa <handa@m17n.org>
12133
12134 * international/fontset.el (build-default-fontset-data):
12135 Exclude characters in scripts kana, hangul, han, or cjk-misc.
12136
12137 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
12138
12139 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
12140 to `create-file-buffer' as it expects, not just a buffer name.
12141 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
12142 to help uniquify. (Bug#3224)
12143
12144 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
12145
12146 * font-setting.el (font-setting-change-default-font): Use user-spec
12147 instead of name.
12148
12149 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
12150
12151 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
12152
12153 2010-01-05 Tom Tromey <tromey@redhat.com>
12154
12155 * progmodes/python.el (python-font-lock-keywords):
12156 Handle qualified decorators (Bug#881).
12157
12158 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
12159
12160 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
12161 in a lightweight checkout.
12162
12163 2010-01-05 Kenichi Handa <handa@m17n.org>
12164
12165 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
12166
12167 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
12168
12169 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
12170
12171 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
12172
12173 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
12174 checkouts. (Bug#618)
12175 (vc-bzr-log-view-mode): Also highlight the author.
12176 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
12177 (vc-bzr-shelve-menu-map):
12178 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
12179 (vc-bzr-shelve-apply): Make prompt more explicit.
12180
12181 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
12182
12183 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
12184 They are valid characters in URL paths (rfc3986), and at least
12185 Firefox does not understand the encoded version (Bug#3166).
12186
12187 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
12188
12189 * progmodes/octave-mod.el (octave-end-keywords)
12190 (octave-block-begin-or-end-regexp, octave-block-match-alist):
12191 Add "end" keyword (Bug#3061).
12192 (octave-end-as-array-index-p): New function.
12193 (calculate-octave-indent): Use it.
12194
12195 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12196
12197 * bookmark.el: Consistently put the text property on the bookmark name.
12198 (bookmark-bmenu-marks-width): Bump back to 2, to include
12199 annotation marks.
12200 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
12201 property on the bookmark name, instead of not putting it at all.
12202 (bookmark-bmenu-list): Fix where we put the text property.
12203
12204 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12205
12206 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
12207 for showing buffer modified state (as added in the previous change).
12208
12209 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12210
12211 * bookmark.el: Show modified state of bookmark buffer more accurately.
12212 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
12213 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
12214 (with-buffer-modified-unmodified): New macro.
12215 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
12216 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
12217 Use new macro to preserve the buffer modified state.
12218
12219 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12220
12221 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
12222 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
12223 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
12224 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
12225 (bookmark-bmenu-rename, bookmark-bmenu-locate)
12226 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
12227 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
12228
12229 2010-01-02 Eli Zaretskii <eliz@gnu.org>
12230
12231 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
12232 Make the lines in the generated doc string shorter. (Bug#4668)
12233
12234 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
12235
12236 * net/rcirc.el: Add follow-link binding (Bug#4738).
12237
12238 2010-01-02 Eli Zaretskii <eliz@gnu.org>
12239
12240 * Makefile.in (bzr-update): Rename from cvs-update.
12241 (cvs-update): New target for backward compatibility.
12242
12243 * makefile.w32-in (bzr-update): Rename from cvs-update.
12244 (cvs-update): New target for backward compatibility.
12245
12246 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12247
12248 * bookmark.el: Remove gratuitous gratitude.
12249
12250 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12251
12252 * bookmark.el (bookmark-bmenu-any-marks): New function.
12253 (bookmark-bmenu-save): Clear buffer modification if no marks.
12254
12255 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12256
12257 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
12258 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
12259 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
12260 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
12261
12262 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
12263 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
12264 To: emacs-devel {_AT_} gnu.org
12265 Subject: bookmark.el bug report
12266 Date: Mon, 28 Dec 2009 14:19:16 +0800
12267 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
12268
12269 2010-01-02 Karl Fogel <kfogel@red-bean.com>
12270
12271 * bookmark.el: Improvements suggested by Drew Adams:
12272 (bookmark-bmenu-ensure-position): New name for
12273 `bookmark-bmenu-check-position'. Just ensure the position,
12274 don't return any meaningful value.
12275 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
12276 New constants.
12277
12278 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
12279
12280 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
12281 (bookmark-yank-point, bookmark-bmenu-check-position):
12282 Fix typos in docstrings.
12283 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
12284 (bookmark-name-from-full-record, bookmark-get-position)
12285 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
12286 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
12287 Remove useless quoting of parenthesis, etc. in docstrings.
12288
12289 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
12290 (ediff-append-custom-diff): Fix typo in error message.
12291 (ediff-meta-mark-equal-files): Fix typos in messages.
12292
12293 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
12294
12295 * net/imap-hash.el (imap-hash-make): Doc fix.
12296 (imap-hash-test): Fix typo in error message; reflow docstring.
12297 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
12298 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
12299 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
12300 Fix typos in docstrings.
12301 (imap-hash-open-connection): Fix typo in error message.
12302
12303 * play/gomoku.el (gomoku): Fix typos in docstring.
12304
12305 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
12306 (gdb-jsonify-buffer): Fix typos in docstring.
12307 (gdb-goto-breakpoint): Fix typo in error message.
12308 ("Display Other Windows"): Fix typo in help message.
12309 (gdb-speedbar-expand-node): Fix typo in question.
12310
12311 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
12312 (idlwave-html-system-help-location, idlwave-html-help-location)
12313 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
12314 (idlwave-help-browser-generic-args, idlwave-help-directory)
12315 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
12316 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
12317 (idlwave-online-help, idlwave-help-html-link)
12318 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
12319 Fix typos in docstrings.
12320 (idlwave-help-with-source, idlwave-help-find-routine-definition):
12321 Reflow docstrings.
12322 (idlwave-help-assistant-start): Fix typo in error message.
12323
12324 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
12325 (octave-electric-space): Fix typos in docstrings.
12326
12327 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
12328
12329 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
12330
12331 2010-01-01 Juri Linkov <juri@jurta.org>
12332
12333 * comint.el (comint-input-ring-size): Make it a defcustom and
12334 increase the default to 500 (Bug#5148).
12335
12336 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
12337
12338 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
12339 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
12340 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
12341
12342 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
12343
12344 Show working revision correctly for mercurial.
12345 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
12346 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
12347
12348 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
12349
12350 Declare some functions for the byte-compiler.
12351 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
12352 (speedbar-timer-fn, speedbar-change-expand-button-char)
12353 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
12354
12355 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
12356
12357 This changeset reverts GDB Graphical Interface to use annotations.
12358 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
12359
12360 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
12361
12362 Make vc-dir work on subdirectories of the bzr root.
12363 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.
12364 Return file names relative to it.
12365 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
12366 relative directory to vc-bzr-after-dir-status.
12367
12368 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
12369
12370 * font-lock.el (font-lock-refresh-defaults): New function, which
12371 can be used to let font-lock react to external changes in
12372 variables like font-lock-defaults and keywords.
12373 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
12374
12375 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
12376
12377 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
12378
12379 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
12380
12381 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
12382
12383 Supersede color.diff settings in git log (bug#5211).
12384
12385 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
12386 escape chars in its output when the user has color.diff set to `always'.
12387 This fix works on git 1.4.2 and newer (released on 2006-08-13).
12388
12389 2009-12-26 Kevin Ryde <user42@zip.com.au>
12390
12391 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
12392 node. Keep previous "Index" name to work with past coreutils too.
12393
12394 * man.el (man): Revise docstring a bit to show -a and -l as
12395 examples. Add -k description since support for it has otherwise
12396 been a secret. (Further to bug#3717.)
12397 (Man-bgproc-sentinel): When "-k foo" produces no output show error
12398 "no matches" rather than "Can't find manpage", as the latter reads
12399 like -k was interpreted as a page name, which is not so. (Bug#5431)
12400
12401 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
12402
12403 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
12404 switches. Check also for //SUBDIRED// line.
12405
12406 2009-12-25 Kenichi Handa <handa@m17n.org>
12407
12408 * language/indian.el (devanagari-composable-pattern): Fix to
12409 handle ZWNJ and ZWJ. Use it in composition-function-table for
12410 Devanagari.
12411 (malayalam-composable-pattern): Fix previous change.
12412
12413 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12414
12415 * ps-print.el (ps-face-attributes): It was not returning the
12416 attribute face for faces specified as string. Reported by harven
12417 <harven@free.fr>. (Bug#5254)
12418 (ps-print-version): New version 7.3.5.
12419
12420 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
12421
12422 * calendar/icalendar.el (icalendar--convert-tz-offset):
12423 Fix timezone names.
12424 (icalendar--convert-tz-offset): Fix the "last-day-problem".
12425 (icalendar--add-diary-entry): Remove the trailing blank that
12426 diary-make-entry inserts.
12427
12428 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
12429
12430 Make `file-expand-wildcards' work for remote files.
12431
12432 * files.el (file-expand-wildcards): In case of remote files, check
12433 only local file name part for wildcards. Provide feature 'files
12434 and subfeature 'remote-wildcards. (Bug#5198)
12435
12436 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
12437 if there is already an established connection.
12438 (tramp-advice-file-expand-wildcards): Remove it.
12439
12440 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
12441 (tramp-advice-file-expand-wildcards): Move from tramp.el.
12442 Activate advice for older GNU Emacs versions. (Bug#5237)
12443
12444 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
12445
12446 Some doc fixes (more needed).
12447
12448 * find-cmd.el (find-constituents): Reflow docstring.
12449 (find-cmd, find-prune, find-command): Fix typos in docstrings.
12450 (find-generic): Doc fix.
12451
12452 2009-12-17 Juri Linkov <juri@jurta.org>
12453
12454 Fix regression from 23.1 to allow multiple modes in Local Variables.
12455
12456 * files.el (hack-local-variables-filter): While ignoring duplicates,
12457 don't take `mode' into account.
12458 (hack-local-variables-filter, hack-dir-local-variables):
12459 Don't remove duplicate `mode' from local-variables-alist (like `eval').
12460
12461 2009-12-17 Juri Linkov <juri@jurta.org>
12462
12463 Make `dired-diff' safer. (Bug#5225)
12464
12465 * dired-aux.el (dired-diff): Signal an error when `file' equals to
12466 `current' or when `file' is a directory of the `current' file.
12467
12468 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
12469
12470 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
12471 unconditionally preloaded files.
12472
12473 2009-12-16 Juri Linkov <juri@jurta.org>
12474
12475 Revert to old 23.1 logic of using the file at the mark as default.
12476 * dired-aux.el (dired-diff): Use the file at the mark as default
12477 if it's not the same as the current file, and the target dir is
12478 the current dir or the mark is active. Add the current file
12479 as the arg of `dired-dwim-target-defaults'. Use the default file
12480 in the prompt. (Bug#5225)
12481
12482 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
12483
12484 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
12485 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
12486 (tramp-check-for-regexp): Check also, when an echoing shell stops
12487 to echo sent commands.
12488
12489 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
12490
12491 * Makefile.in: Revert last change (Bug#5191).
12492
12493 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
12494
12495 * vc-hg.el (vc-hg-print-log): Fix argument order.
12496 (vc-hg-working-revision): Make sure the command is executed in a
12497 known environment so that we can parse the output. (Bug#4417)
12498
12499 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
12500
12501 * progmodes/python.el (python-symbol-completions): Remove text
12502 properties from symbol string before calling python-send-receive.
12503
12504 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
12505
12506 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
12507 when there are values for both file and line. (Bug#5060)
12508
12509 2009-12-14 Juri Linkov <juri@jurta.org>
12510
12511 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
12512 whitespace after the file name of the first line of unified format,
12513 because git-diff doesn't output whitespace and file modification time
12514 after the file name.
12515
12516 2009-12-14 David Kastrup <dak@gnu.org>
12517
12518 * info.el (Info-hide-cookies-node): Before hiding a cookie,
12519 check if it already has the `display' property added by
12520 `Info-display-images-node', and not put the `invisible' property
12521 in this case.
12522
12523 2009-12-13 Glenn Morris <rgm@gnu.org>
12524
12525 * mail/emacsbug.el (message-sort-headers): Define for compiler.
12526 (report-emacs-bug): In message-mode, sort manually before storing
12527 original report text. (Bug#5178)
12528 Remove superfluous save-excursion.
12529
12530 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
12531
12532 * net/dbus.el (dbus-property-handler): Filter lambda forms out
12533 when responding to "GetAll" properties.
12534
12535 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
12536
12537 * simple.el (compose-mail): Remove mail-setup-with-from from
12538 customization checks.
12539
12540 2009-12-12 Eli Zaretskii <eliz@gnu.org>
12541
12542 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
12543 RAR archives created on Unix systems.
12544
12545 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
12546
12547 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
12548 the varalias that was accidentally removed by the 2009-11-19 change
12549 (bug#5186).
12550
12551 2009-12-12 Kenichi Handa <handa@m17n.org>
12552
12553 * language/indian.el (indian-compose-regexp): New function.
12554 (malayalam-composable-pattern): Fix the pattern.
12555 (composition-function-table): Set malayalam-composable-pattern for
12556 Malayalam characters.
12557
12558 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
12559
12560 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
12561 rather than down-mouse-1, based on follow-link conventions.
12562
12563 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
12564 are compiled.
12565
12566 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
12567
12568 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
12569 (verilog-vmm-statement-re, verilog-ovm-statement-re)
12570 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
12571 (verilog-leap-to-head, verilog-backward-token):
12572 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
12573
12574 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
12575
12576 * progmodes/verilog-mode.el (verilog-auto-lineup)
12577 (verilog-nameable-item-re): Cleanup user-visible spelling and
12578 documentation errors. One reported by Gary Delp.
12579 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
12580 (verilog-read-decls): Fix AUTOWIRE with types declared in a
12581 package, bug195. Reported by Pierre-David Pfister.
12582
12583 2009-12-11 Glenn Morris <rgm@gnu.org>
12584
12585 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
12586
12587 * mail/emacsbug.el: No longer require sendmail.
12588 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
12589 (report-emacs-bug-orig-text): Doc fix.
12590 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
12591 New local variables, to adapt to different mail-user-agents.
12592 (report-emacs-bug): Fix test for a gnu.org address.
12593 Use overlays for emphasis, since font-lock defeats 'face property.
12594 Pretest bugs also end up at the newsgroup these days.
12595 Stop message-mode stripping text properties.
12596 Set and use the new buffer-local variables.
12597 (report-emacs-bug-hook): Add doc-string.
12598 Remove some unnecessary save-excursions and simplify.
12599 Use the appropriate hook and send-command.
12600
12601 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
12602 capitalization of some menu entries.
12603
12604 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12605
12606 * whitespace.el (whitespace-display-char-on):
12607 Ensure `buffer-display-table' is unique when two or more windows are
12608 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
12609 New version 12.1.
12610
12611 2009-12-10 Eli Zaretskii <eliz@gnu.org>
12612
12613 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
12614 characters in the Attribute field.
12615
12616 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
12617
12618 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
12619
12620 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
12621
12622 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
12623 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12624 Disregard autoload-excludes.
12625 (update-directory-autoloads): Obey autoload-excludes here instead.
12626 But don't store its contents in no-autoloads and remove entries that
12627 refer to excludes files.
12628
12629 2009-12-10 Glenn Morris <rgm@gnu.org>
12630
12631 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
12632 (expand-mail-aliases): Define for compiler.
12633
12634 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
12635 Define for compiler.
12636
12637 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
12638 appropriate for the mail-user-agent in use.
12639
12640 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
12641
12642 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
12643
12644 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
12645
12646 Fix short log parsing and fontification.
12647 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
12648 Fix fontification for the [merge] label.
12649
12650 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
12651
12652 Drop some properties to avoid surprises (bug#5002).
12653 * htmlfontify.el (hfy-ignored-properties): New defcustom.
12654 (hfy-fontify-buffer): Use it.
12655
12656 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
12657
12658 Minor cleanup.
12659 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
12660 Adjust all callers.
12661 (ffap-locate-file): Remove unused arg `dir-ok' and make other
12662 args compulsory. Adjust callers.
12663 (ffap-gopher-at-point): Remove unused var `name'.
12664
12665 Get rid of the ELCFILES abomination.
12666 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
12667 (compile-elcfiles): New phony target.
12668 (compile-main): Compute ELCFILES dynamically.
12669 (compile-clean): New target to remove left-over elc files.
12670 (compile, all): Use it.
12671
12672 2009-12-09 Kenichi Handa <handa@etlken>
12673
12674 * international/mule-diag.el: Require help-mode instead of help-fns.
12675
12676 2009-12-09 Kenichi Handa <handa@m17n.org>
12677
12678 * international/mule-cmds.el (ucs-names): Supply sufficiently
12679 fine ranges instead of pre-calculating accurate ranges.
12680 Iterate with bigger gc-cons-threshold.
12681
12682 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
12683
12684 Add support for stashing a snapshot of the current tree.
12685 * vc-git.el (vc-git-stash-snapshot): New function.
12686 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
12687
12688 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
12689
12690 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
12691 instead of `(beginning|end)-of-line'.
12692
12693 2009-12-08 Glenn Morris <rgm@gnu.org>
12694
12695 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
12696
12697 * Makefile.in (ELCFILES): Regenerate.
12698
12699 2009-12-07 Juri Linkov <juri@jurta.org>
12700
12701 Don't lazy-highlight the comint output in history Isearch mode.
12702
12703 * comint.el (comint-history-isearch-search): Instead of
12704 `comint-line-beginning-position', use `comint-after-pmark-p'
12705 to check if point if before the process mark, and go to
12706 `process-mark' in this case.
12707
12708 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
12709
12710 * textmodes/tex-mode.el (latex-complete)
12711 (latex-indent-or-complete): Remove.
12712 (latex-mode): Set completion-at-point-functions instead.
12713
12714 Provide a standard completion command and hook it into TAB.
12715 * minibuffer.el (completion-at-point-functions): New var.
12716 (completion-at-point): New command.
12717 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
12718 * progmodes/python.el (python-mode-map): Use completion-at-point.
12719 (python-completion-at-point): Rename from python-partial-symbol and
12720 adjust for use in completion-at-point-functions.
12721 (python-mode): Setup completion-at-point for Python completion.
12722 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
12723 extracted from lisp-complete-symbol.
12724 (lisp-complete-symbol): Use it.
12725 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
12726 setup completion-at-point for Elisp completion.
12727 (emacs-lisp-mode-map, lisp-interaction-mode-map):
12728 Use completion-at-point.
12729 * ielm.el (ielm-map): Use completion-at-point.
12730 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
12731 * progmodes/sym-comp.el: Move to...
12732 * obsolete/sym-comp.el: Move from progmodes.
12733
12734 2009-12-07 Eli Zaretskii <eliz@gnu.org>
12735
12736 Prevent save-buffer in Rmail buffers from using the coding-system
12737 of the current message, and from clobbering the encoding mnemonics
12738 in the mode line (Bug#4623).
12739
12740 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
12741 flag, too.
12742 (rmail-message-encoding): New variable.
12743 (rmail-write-region-annotate): Record the encoding of the current
12744 message in rmail-message-encoding.
12745 (rmail-after-save-hook): New function, restores the encoding of
12746 the current message after the message collection is saved.
12747
12748 2009-12-07 Juri Linkov <juri@jurta.org>
12749
12750 * progmodes/grep.el (grep-read-files): Use `completing-read'
12751 instead of `read-string'. Set its `collection' arg to
12752 `read-file-name-internal'. (Bug#4301)
12753
12754 2009-12-07 Juri Linkov <juri@jurta.org>
12755
12756 Correctly restore original Isearch point. (Bug#4994)
12757
12758 * isearch.el (isearch-mode): Move `isearch-push-state' after
12759 `(run-hooks 'isearch-mode-hook)'.
12760 (isearch-cancel): When `isearch-push-state-function' is defined,
12761 let-bind `isearch-cmds' to the first state (the last element of
12762 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
12763 function and restores the original point). Otherwise, move point
12764 to `isearch-opoint'.
12765
12766 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
12767
12768 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
12769 chars that don't have names, so the table can be built much faster at
12770 run-time.
12771
12772 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
12773
12774 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
12775 change. Suggested by David Kastrup.
12776
12777 * simple.el (compose-mail): Check for incompatibilities and warn.
12778 (compose-mail-user-agent-warnings): New option.
12779
12780 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
12781
12782 Support showing a single log entry from vc-annotate.
12783 * vc.el (print-log): Add a new argument: START-REVISION.
12784 (vc-print-log-internal): Add a new optional argument and
12785 pass it to the backend.
12786 (vc-print-log, vc-print-root-log): Adjust callers.
12787 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
12788 buffer already displays the requested log entry, use it.
12789 Otherwise display only the log entry in question.
12790 * vc-svn.el (vc-svn-print-log):
12791 * vc-mtn.el (vc-mtn-print-log):
12792 * vc-hg.el (vc-hg-state):
12793 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
12794 (vc-git-show-log-entry): Return t on success.
12795 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
12796 (vc-bzr-show-log-entry): Return t on success.
12797 * vc-rcs.el (vc-rcs-print-log):
12798 * vc-sccs.el (vc-sccs-print-log):
12799 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
12800
12801 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
12802
12803 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
12804 Add menus to the meta mode. (Bug#5043)
12805
12806 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
12807
12808 * ediff-init.el (ediff-event-key): Use event-to-character instead of
12809 event-key.
12810
12811 * ediff.el (ediff-buffers-internal): Add unwind-protect.
12812
12813 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
12814
12815 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
12816 Berbain <raphael.berbain@gmail.com>.
12817
12818 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
12819 characters.
12820 (tramp-initial-end-of-output): New defconst.
12821 (tramp-methods, tramp-find-shell)
12822 (tramp-open-connection-setup-interactive-shell)
12823 (tramp-maybe-open-connection): Use it.
12824 (tramp-shell-prompt-pattern, tramp-wait-for-output):
12825 Handle existence of `#' and `$'.
12826
12827 * net/tramp-fish.el (tramp-fish-maybe-open-connection):
12828 Use `tramp-initial-end-of-output'.
12829
12830 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
12831
12832 Get the background mode from the terminal for xterm, and set
12833 faces accordingly.
12834 * term/xterm.el (xterm-set-background-mode): New function.
12835 (terminal-init-xterm): Use it in case xterm supports background
12836 color queries. Recompute faces after getting the background
12837 color.
12838
12839 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
12840
12841 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
12842 number comment back on its own line, for easier parsing.
12843
12844 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
12845
12846 Make it work for non-file buffers (bug#5102).
12847 * doc-view.el (doc-view-current-cache-dir):
12848 Use doc-view-buffer-file-name rather than buffer-file-name.
12849 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
12850
12851 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
12852
12853 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
12854 author field is too short.
12855
12856 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
12857
12858 * vc-git.el (vc-git-print-log): Handle a limit argument.
12859 Display the short log in graph form and with labels.
12860 (vc-git-log-view-mode): Handle labels.
12861
12862 Make vc-revert change VC state from 'added to 'unregistered.
12863 * vc-git.el (vc-git-revert): Call git reset first.
12864
12865 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
12866
12867 * net/newst-backend.el, net/newst-plainview.el:
12868 * net/newst-reader.el, net/newst-ticker.el:
12869 * net/newst-treeview.el, net/newsticker.el:
12870 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
12871
12872 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
12873
12874 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
12875
12876 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
12877 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
12878 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
12879 Update annotation regexp.
12880
12881 * simple.el (beginning-of-visual-line): Constrain to field
12882 boundaries (Bug#5106).
12883
12884 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
12885
12886 * xml.el (xml-substitute-numeric-entities):
12887 Move newsticker--decode-numeric-entities in newst-backend.el to
12888 xml-substitute-numeric-entities in xml.el. (Bug#5008)
12889 * net/newst-backend.el (newsticker--parse-generic-feed)
12890 (newsticker--parse-generic-items)
12891 (newsticker--decode-numeric-entities):
12892 Move newsticker--decode-numeric-entities in newst-backend.el to
12893 xml-substitute-numeric-entities in xml.el. (Bug#5008)
12894
12895 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
12896
12897 * progmodes/js.el (js--js-not): Add null to the list of values.
12898
12899 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
12900
12901 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
12902
12903 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12904
12905 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
12906 delimiter if it is at the end of the current line.
12907 (bibtex-generate-url-list): Fix docstring.
12908
12909 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
12910
12911 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
12912 minibuffer's content with itself.
12913 Fold the confirm-after-completion case into the `confirm' case.
12914 (completion-pcm-word-delimiters): Add : and / to the delimiters.
12915
12916 2009-12-06 Kevin Ryde <user42@zip.com.au>
12917
12918 * ffap.el (ffap-rfc-path): Make this a defcustom since
12919 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
12920
12921 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
12922 manuals, similar to existing setup for help-mode. (Bug#3913.)
12923
12924 2009-12-05 Juri Linkov <juri@jurta.org>
12925
12926 Save and restore dired buffer's point positions too. (Bug#4880)
12927
12928 * dired.el (dired-save-positions): Return in the first element
12929 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
12930 Doc fix.
12931 (dired-restore-positions): First restore buffer's position.
12932 While restoring window's positions, check if window still displays
12933 the original buffer.
12934
12935 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
12936
12937 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
12938 if possible.
12939
12940 * shell.el (shell): Require ansi-color (Bug#5113).
12941
12942 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
12943
12944 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
12945
12946 2009-12-05 Alan Mackenzie <acm@muc.de>
12947
12948 * progmodes/cc-mode.el (c-before-hack-hook)
12949 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
12950 `c-file-style' to work again. This reversion restores the current
12951 software to its state in Emacs 23.1. (Bug#4146)
12952
12953 2009-12-05 Kevin Ryde <user42@zip.com.au>
12954
12955 * textmodes/sgml-mode.el (sgml-lexical-context):
12956 Recognise comment-start-skip to comment-end-skip as comment (Bug#4781).
12957
12958 2009-12-05 Juri Linkov <juri@jurta.org>
12959
12960 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
12961 for virtual nodes. (Bug#4147)
12962 (Info-find-node-2): Set `Info-current-node-virtual' to nil
12963 when moving from a virtual node.
12964 (Info-mode-menu): Add `Info-virtual-index' to the menu.
12965 (Info-mode): Add `Info-virtual-index' to the docstring.
12966
12967 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12968
12969 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
12970 track of the buffer position of the end of a BibTeX entry as this
12971 position may change during reformatting.
12972 (bibtex-format-entry): Remove whitespace before processing
12973 numerical fields so that we recognize the latter properly.
12974 (bibtex-reformat): Do not use push which changes the global value
12975 of bibtex-entry-format.
12976 (bibtex-field-braces-alist, bibtex-field-strings-alist)
12977 (bibtex-field-re-init): Replace only space characters by regexp
12978 for whitespace.
12979 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
12980 (bibtex-initialize): Also update bibtex-strings.
12981 (bibtex-kill-field): Preserve white space at end of entry.
12982 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
12983 Update bibtex-reference-keys.
12984
12985 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
12986
12987 * minibuffer.el (completion-pcm--merge-try): Also consider placing
12988 point after a star, if that's the only place where modifications can
12989 make progress.
12990
12991 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
12992
12993 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
12994 in docstrings.
12995
12996 2009-12-04 Juri Linkov <juri@jurta.org>
12997
12998 * proced.el (proced): Call `(proced-update t)' to update process
12999 information instead of only running proced-post-display-hook.
13000 (proced-send-signal): Add a leading space to the buffer name
13001 " *Marked Processes*" to make this buffer ephemeral.
13002
13003 2009-12-04 Juri Linkov <juri@jurta.org>
13004
13005 * dired.el (dired-auto-revert-buffer): New defcustom.
13006 (dired-internal-noselect): Use it.
13007
13008 2009-12-04 Juri Linkov <juri@jurta.org>
13009
13010 Change roles of modes and functions in image-mode.el (Bug#5062).
13011
13012 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
13013 in `auto-mode-alist'.
13014 (image-mode-previous-major-mode): New variable.
13015 (image-minor-mode-map): Rename from `image-mode-text-map'.
13016 (image-mode): Move graceful error-handling code from
13017 `image-minor-mode' to here. On errors call `image-mode-as-text'.
13018 (image-minor-mode): Remove all image-handling code.
13019 Replace `image-mode-text-map' with `image-minor-mode-map'.
13020 Check for `image-type' in mode-line format string.
13021 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
13022 (image-mode-as-text): New function with most code from
13023 `image-mode-maybe'.
13024 (image-toggle-display-text): Move code that removes image
13025 properties from `image-toggle-display' to here.
13026 (image-toggle-display-image): New function with code that adds
13027 image properties copied from `image-toggle-display'.
13028 (image-toggle-display): Remove most code with leaving only code
13029 that toggles between `image-mode-as-text' and `image-mode'.
13030
13031 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
13032
13033 * net/newst-treeview.el
13034 (newsticker--treeview-list-highlight-start): Restored call to
13035 save-excursion: Selected item was stuck.
13036 (newsticker--treeview-list-select): New.
13037 (newsticker--treeview-item-show-text)
13038 (newsticker--treeview-item-show)
13039 (newsticker--treeview-item-update): Use new
13040 newsticker-treeview-item-mode.
13041 (newsticker-treeview-update): Keep current item.
13042 (newsticker-treeview-next-new-or-immortal-item): Doc change.
13043 (newsticker--treeview-first-feed): Doc change.
13044 (newsticker-treeview-list-menu)
13045 (newsticker-treeview-item-menu): Add menu entries.
13046 (newsticker-treeview-item-mode): New.
13047
13048 * net/newst-backend.el (newsticker-customize): Delete other
13049 windows.
13050
13051 2009-12-04 Sam Steingold <sds@gnu.org>
13052
13053 * log-view.el (log-view-mode-map): "q" calls quit-window,
13054 like in all the other non-self-insert buffers.
13055
13056 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
13057
13058 Minor cleanup.
13059 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
13060 key decoding rather than do it manually via last-input-event +
13061 ascii-character.
13062 (term-exec): Use delete-and-extract-region.
13063 (term-handle-ansi-terminal-messages): Remove unused var `end'.
13064 (term-process-pager): Remove unused var `i'.
13065 (term-dynamic-simple-complete): Make obsolete.
13066 (serial-update-config-menu): Remove unused vars `y' and `str'.
13067 (term-update-mode-line): Remove unused var `temp'.
13068
13069 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
13070
13071 Limit the number of log entries displayed by default.
13072 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
13073 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
13074 using a prefix argument.
13075
13076 2009-12-03 Glenn Morris <rgm@gnu.org>
13077
13078 * progmodes/idlwave.el (class): Restore still useful declaration.
13079
13080 2009-12-03 Alan Mackenzie <acm@muc.de>
13081
13082 Enhance `c-parse-state' to run efficiently in "brace deserts".
13083
13084 * progmodes/cc-mode.el (c-basic-common-init):
13085 Call c-state-cache-init.
13086 (c-neutralize-syntax-in-and-mark-CPP): Rename from
13087 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
13088 placing `category' properties value 'c-cpp-delimiter at its boundaries.
13089
13090 * progmodes/cc-langs.el (c-before-font-lock-function):
13091 c-extend-and-neutralize-syntax-in-CPP has been renamed
13092 c-neutralize-syntax-in-and-mark-CPP.
13093
13094 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
13095 with `category' properties now, not `syntax-table' ones.
13096
13097 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
13098 enhanced (but slower) version of c-end-of-macro that won't land
13099 inside a literal or on another awkward character.
13100 (c-state-cache-too-far, c-state-cache-start)
13101 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
13102 (c-state-nonlit-pos-cache-limit, c-state-point-min)
13103 (c-state-point-min-lit-type, c-state-point-min-lit-start)
13104 (c-state-min-scan-pos, c-state-brace-pair-desert)
13105 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
13106 buffer local variables.
13107 (c-state-literal-at, c-state-lit-beg)
13108 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
13109 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
13110 (c-state-cache-top-paren, c-state-cache-after-top-paren)
13111 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
13112 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
13113 (c-renarrow-state-cache)
13114 (c-append-lower-brace-pair-to-state-cache)
13115 (c-state-push-any-brace-pair, c-append-to-state-cache)
13116 (c-remove-stale-state-cache)
13117 (c-remove-stale-state-cache-backwards, c-state-cache-init)
13118 (c-invalidate-state-cache-1, c-parse-state-1)
13119 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
13120 (c-parse-state): Enhance and refactor.
13121 (c-debug-parse-state): Amend to deal with all the new variables.
13122
13123 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
13124 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
13125 modify to use category text properties rather than syntax-table ones.
13126 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
13127 to switch off/on the syntactic paren property of C++ template
13128 delimiters using the category property.
13129 (c-with-<->-as-parens-suppressed): Macro to invoke code with
13130 template delims suppressed.
13131 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
13132 New constant/macros which apply category properties to the start
13133 and end of preprocessor constructs.
13134 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
13135 "comment out" the syntactic value of characters in preprocessor
13136 constructs.
13137 (c-with-cpps-commented-out)
13138 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
13139 with characters in all or all but one preprocessor constructs
13140 "commented out".
13141
13142 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
13143
13144 * proced.el (proced-filter-alist): Use regexp-quote.
13145
13146 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
13147
13148 Cleanup.
13149 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
13150 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
13151 arguments. Expand `default-directory'.
13152
13153 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
13154 the benefit of returning an expanded localname.
13155 (tramp-tramp-file-p): Handle the case NAME is not a string.
13156
13157 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
13158
13159 Add support for bzr shelve/unshelve.
13160 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
13161 (vc-bzr-extra-menu-map): New variables.
13162 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
13163 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
13164 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
13165 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
13166 (vc-bzr-dir-extra-headers): Display shelves.
13167
13168 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
13169
13170 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
13171
13172 * textmodes/bibtex.el (bibtex-complete-internal):
13173 Use completion-in-region.
13174 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
13175
13176 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
13177
13178 Support applying stashes. Improve UI.
13179 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
13180 (vc-git-stash-apply, vc-git-stash-pop)
13181 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
13182 (vc-git-stash-menu): New functions.
13183 (vc-git-stash-menu-map): New variable.
13184 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
13185
13186 2009-12-03 Glenn Morris <rgm@gnu.org>
13187
13188 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
13189 (vc-print-log-internal): Fix previous change.
13190 (vc-revert): Correct pluralization.
13191
13192 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
13193
13194 * progmodes/make-mode.el (makefile-special-targets-list): No need for
13195 it to be an alist any more.
13196 (makefile-complete): Use completion-in-region.
13197
13198 * progmodes/octave-mod.el (octave-complete-symbol):
13199 Use completion-in-region.
13200
13201 Misc cleanup.
13202 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
13203 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
13204 (idlwave-complete-class): Don't quote lambda.
13205 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
13206 (idlwave-mode-map): Move initialization into declaration.
13207 (idlwave-action-and-binding): Use backquotes.
13208 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
13209 Simplify.
13210 (idlwave-is-pointer-dereference): Remove unused var `pos'.
13211 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
13212 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
13213 `parts', and `all-parts'.
13214 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
13215 (idlwave-convert-xml-system-routine-info): Remove unused string
13216 `version-string'.
13217 (idlwave-display-user-catalog-widget): Use dolist.
13218 (idlwave-scanning-lib): Declare dynamically-scoped var.
13219 (idlwave-scan-library-catalogs): Remove unused var `flags'.
13220 (completion-highlight-first-word-only): Declare to silence bytecomp.
13221 (idlwave-popup-select): Tighten scope of `resp'.
13222 (idlwave-find-struct-tag): Remove unused var `beg'.
13223 (idlwave-after-load-rinfo-hook): Declare.
13224 (idlwave-sintern-class-info): Remove unused var `taglist'.
13225 (idlwave-find-class-definition): Remove unused var `list'.
13226 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
13227 (idlwave-what-module-find-class): Remove unused var `classes'.
13228
13229 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
13230
13231 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
13232
13233 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
13234
13235 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
13236 buffers visited. Remove redundant current-buffer-saving.
13237
13238 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
13239
13240 Use completion-in-buffer and remove uses of dynamic scoping.
13241 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
13242 (pascal-buffer-to-use, pascal-flag): Don't declare.
13243 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
13244 (pascal-get-completion-decl, pascal-keyword-completion):
13245 Add `pascal-str' argument, save-excursion,
13246 return the found completions, and don't filter with pascal-pred.
13247 (pascal-completion-cache): New var.
13248 (pascal-completion): Don't switch buffer any more (it was never
13249 necessary). Don't save-excursion any more (it's done by the called
13250 subroutines). Use a cache to avoid redundant computations.
13251 Use complete-with-action rather than pascal-completion-response and
13252 let it apply the predicate as well.
13253 (pascal-complete-word): Use completion-in-buffer when
13254 pascal-toggle-completions is nil.
13255 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
13256 not used any more.
13257 (pascal-comp-defun): Don't change buffer any more.
13258 Use complete-with-action rather than pascal-completion-response and
13259 let it apply the predicate as well.
13260 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
13261 when neded.
13262
13263 2009-12-02 Kenichi Handa <handa@m17n.org>
13264
13265 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
13266 shape for all Indic scripts.
13267
13268 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
13269
13270 Use completion-in-buffer.
13271 * wid-edit.el (widget-field-text-end): New function.
13272 (widget-field-value-get): Use it.
13273 (widget-string-complete, widget-file-complete)
13274 (widget-color-complete): Use it and completion-in-region.
13275 (widget-complete): Don't narrow the buffer.
13276
13277 2009-12-02 Glenn Morris <rgm@gnu.org>
13278
13279 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
13280 (rmail-select-summary): Use rmail-pop-to-buffer.
13281 * mail/rmailsum.el: Replace all pop-to-buffer calls with
13282 rmail-pop-to-buffer, to prevent horizontal splits.
13283
13284 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
13285 save-excursion with save-current-buffer.
13286 Widen before searching. (Bug#5093)
13287 (diary-list-sexp-entries): Remove superfluous save-excursion.
13288
13289 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
13290
13291 * woman.el (woman-make-bufname): Handle man-pages with "." in the
13292 name. (Bug#5038)
13293
13294 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
13295
13296 * ido.el (ido-file-internal): Handle filenames at point that do
13297 not have a directory part. (Bug#5049)
13298
13299 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
13300
13301 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
13302 (mpc-songs-jump-to, mpc-resume): Doc fixes.
13303
13304 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
13305
13306 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
13307 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
13308 any more.
13309
13310 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
13311
13312 * comint.el (comint-insert-input): Ignore clicks to the right of
13313 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
13314
13315 * vc.el (vc-print-log-internal): Don't wait for the process to
13316 terminate before setting up the major mode.
13317
13318 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
13319 in case.
13320
13321 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
13322 the last element.
13323
13324 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
13325
13326 2009-12-01 Glenn Morris <rgm@gnu.org>
13327
13328 * window.el (window--display-buffer-2): Fix previous changes.
13329
13330 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
13331
13332 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
13333
13334 2009-12-01 Glenn Morris <rgm@gnu.org>
13335
13336 * Makefile.in (ELCFILES): Add mpc.elc.
13337
13338 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
13339
13340 * mpc.el: New file.
13341
13342 2009-12-01 Glenn Morris <rgm@gnu.org>
13343
13344 * window.el (window-to-use): Define for compiler.
13345
13346 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
13347 consistent with others (no final period).
13348
13349 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
13350 (rmail-mime-show): Downcase the encoding. (Bug#5070)
13351
13352 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
13353
13354 Make vc-print-log buttons work.
13355 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
13356
13357 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
13358
13359 * savehist.el (savehist-autosave-interval): Allow setting to nil
13360 through customize. (Bug#5056)
13361
13362 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
13363
13364 Fix references to jit-lock properties.
13365 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
13366 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
13367 (perl-font-lock-special-syntactic-constructs):
13368 Quote jit-lock-defer-multiline property.
13369
13370 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
13371
13372 * vc-git.el (vc-git-registered): Call vc-git-root only once.
13373
13374 2009-11-30 Juri Linkov <juri@jurta.org>
13375
13376 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
13377 value `buffer' of `multi-isearch-next-buffer-current-function'.
13378 Use `(current-buffer)' when `buffer' is nil.
13379 (multi-isearch-next-buffer-from-list): Don't fallback to
13380 `(current-buffer)' when `buffer' is nil. (Bug#4947)
13381
13382 2009-11-30 Juri Linkov <juri@jurta.org>
13383
13384 * misearch.el (multi-isearch-read-buffers): Move canonicalization
13385 of buffers with `get-buffer' to `multi-isearch-buffers'.
13386 (multi-isearch-buffers, multi-isearch-buffers-regexp):
13387 Canonicalize BUFFERS with `get-buffer'. Doc fix.
13388 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
13389 FILES with `expand-file-name' converting relative file names
13390 to absolute. Doc fix. (Bug#4727)
13391
13392 2009-11-30 Juri Linkov <juri@jurta.org>
13393
13394 * misearch.el (multi-isearch-read-buffers)
13395 (multi-isearch-read-matching-buffers): New functions.
13396 (multi-isearch-buffers, multi-isearch-buffers-regexp):
13397 Use them in the `interactive' spec. Doc fix.
13398 (multi-isearch-read-files, multi-isearch-read-matching-files):
13399 New functions.
13400 (multi-isearch-files, multi-isearch-files-regexp):
13401 Use them in the `interactive' spec. Doc fix. (Bug#4725)
13402
13403 2009-11-30 Juri Linkov <juri@jurta.org>
13404
13405 * doc-view.el (doc-view-continuous):
13406 Rename from `doc-view-continuous-mode'.
13407 (doc-view-menu): Move "Toggle display" to the top.
13408 Add submenu "Continuous" with radio buttons "Off"/"On"
13409 and "Save as Default".
13410 (doc-view-scroll-up-or-next-page)
13411 (doc-view-scroll-down-or-previous-page)
13412 (doc-view-next-line-or-next-page)
13413 (doc-view-previous-line-or-previous-page):
13414 Rename `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
13415
13416 2009-11-30 Juri Linkov <juri@jurta.org>
13417
13418 * comint.el (comint-mode-map): Rebind `M-r' from
13419 `comint-previous-matching-input' to
13420 `comint-history-isearch-backward-regexp'.
13421 Unbind `M-s' to allow global key binding `M-s'.
13422 Add menu items for `comint-history-isearch-backward' and
13423 `comint-history-isearch-backward-regexp'. (Bug#3746)
13424
13425 2009-11-30 Juri Linkov <juri@jurta.org>
13426
13427 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
13428 For def=recenter, replace `recenter' with `recenter-top-bottom'
13429 that is called with `this-command' and `last-command' let-bound
13430 to `recenter-top-bottom'. When the last `def' was not `recenter',
13431 set `recenter-last-op' to nil. (Bug#4981)
13432
13433 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
13434
13435 Minor cleanup and simplification.
13436 * filecache.el (file-cache-add-directory)
13437 (file-cache-add-directory-recursively)
13438 (file-cache-add-from-file-cache-buffer)
13439 (file-cache-delete-file-regexp, file-cache-delete-directory)
13440 (file-cache-files-matching-internal, file-cache-display): Use dolist.
13441 (file-cache-temp-minibuffer-message): Delete function.
13442 (file-cache-minibuffer-complete): Use minibuffer-message instead.
13443
13444 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
13445 Don't signal an error when bumping into EOB in tr, s, or y.
13446
13447 2009-11-29 Juri Linkov <juri@jurta.org>
13448
13449 * startup.el (fancy-about-text): Fix wording of Guided Tour.
13450 (Bug#4960)
13451
13452 * descr-text.el (describe-char-unidata-list): Use lowercase name
13453 for "Unicode name" like in other tags.
13454
13455 2009-11-29 Juri Linkov <juri@jurta.org>
13456
13457 * ediff-util.el (ediff-minibuffer-with-setup-hook):
13458 New compatibility macro.
13459 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
13460
13461 2009-11-29 Juri Linkov <juri@jurta.org>
13462
13463 Add defcustom to define the cycling order of `recenter-top-bottom'.
13464 (Bug#4981)
13465
13466 * window.el (recenter-last-op): Doc fix.
13467 (recenter-positions): New defcustom.
13468 (recenter-top-bottom): Rewrite to use `recenter-positions'.
13469 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
13470
13471 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
13472
13473 Improve integration of Tramp and ange-ftp in eshell.
13474
13475 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
13476 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
13477 (eshell/sudo): Flatten args. Let-bind `default-directory'.
13478
13479 * eshell/esh-util.el (top): Require also Tramp when compiling.
13480 (eshell-directory-files-and-attributes): Check for FTP remote
13481 connection.
13482 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
13483 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
13484 (eshell-file-attributes): Handle ".". Return `entry'.
13485
13486 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
13487 (ange-ftp-directory-files-and-attributes)
13488 (ange-ftp-real-directory-files-and-attributes): New defuns.
13489
13490 * net/tramp.el (tramp-maybe-open-connection): Open the remote
13491 shell with "exec" when possible. This prevents trailing prompts
13492 in `start-file-process'.
13493
13494 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
13495
13496 Try and remove assumptions about point-min==1.
13497 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
13498 (rng-compute-mode-line-string): Show the validation percentage in
13499 terms of the narrowed text, not the widened text.
13500 (rng-do-some-validation): Don't catch internal errors when debugging.
13501 (rng-first-error): Simplify.
13502 (rng-after-change-function): Remove work around. AFAIK the bug has
13503 been fixed a while ago.
13504
13505 * image-mode.el (image-minor-mode): Exit more gracefully when the image
13506 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
13507
13508 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
13509
13510 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
13511 `cd' doesn't always do it for us (bug#5067).
13512
13513 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
13514 on 2009-10-25 as part of some other change (bug#5067).
13515
13516 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
13517
13518 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
13519 `suspicious'.
13520 (byte-compile-warnings): Use byte-compile-warning-types.
13521 (byte-compile-save-excursion): Warn about use of set-buffer right
13522 after save-excursion.
13523
13524 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
13525 the excursion as well.
13526
13527 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
13528
13529 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
13530 providing a Tramp related implementation of "su" and "sudo".
13531 (eshell-unix-initialize): Add "su" and "sudo".
13532
13533 2009-11-27 Daiki Ueno <ueno@unixuser.org>
13534
13535 * net/socks.el (socks-send-command): Convert binary request to
13536 unibyte before sending. This fixes mishandling of some port
13537 numbers such as 129.
13538
13539 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
13540
13541 * help.el (describe-bindings-internal): Remove `interactive'.
13542
13543 * man.el (Man-completion-table): Trim a terminating "(".
13544 Remove the space between name page a section.
13545 Add the command's description on the `help-echo' property.
13546 Remove `process-connection-type' binding since it's unused by
13547 call-process.
13548 Provide completion for the "<section> <name>" format as well.
13549 (Man-default-man-entry): Remove spurious var shadowing the argument.
13550
13551 2009-11-26 Kevin Ryde <user42@zip.com.au>
13552
13553 * log-view.el: Add "Keywords: tools", since its other keywords
13554 aren't in finder-known-keywords, and following vc.el.
13555
13556 * sha1.el (sha1-string-external): default-directory "/" in case
13557 otherwise non-existent. process-connection-type pipe for touch of
13558 efficiency recommended by elisp manual. (An aside in Bug#3911.)
13559
13560 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
13561
13562 Misc coding convention cleanups.
13563 * htmlfontify.el (hfy-init-kludge-hook): Rename from
13564 hfy-init-kludge-hooks.
13565 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
13566 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
13567 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
13568 and push.
13569 (hfy-slant, hfy-weight): Use tables rather than code.
13570 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
13571 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
13572 (hfy-face-attr-for-class): Initialize `face-spec' directly.
13573 (hfy-face-to-css): Remove `nconc' with single arg.
13574 (hfy-p-to-face-lennart): Use `or'.
13575 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
13576 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
13577 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
13578 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
13579 (hfy-force-fontification): Use run-hooks.
13580
13581 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
13582
13583 Various minor fixes.
13584 * htmlfontify.el (hfy-default-header): Add toggle_invis since
13585 Javascript belongs in the header, not the body.
13586 (hfy-javascript): Remove.
13587 (hfy-fontify-buffer): Don't insert it any more.
13588 (hfy-face-at): Handle (face0 face1 face2) style face properties.
13589 Fix bug in invis handling when there were no invis props in a chunk.
13590
13591 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
13592
13593 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
13594
13595 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
13596
13597 * finder.el (finder-mode-map): Add a menu.
13598
13599 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
13600
13601 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
13602 "unsigned" structs.
13603
13604 (verilog-leap-to-head, verilog-backward-token): Handle "disable
13605 fork" statement better.
13606
13607 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
13608
13609 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
13610 (verilog-delete-auto, verilog-delete-empty-auto-pair)
13611 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
13612 Reported by Clay Douglass.
13613
13614 (verilog-auto-inst, verilog-auto-star-safe)
13615 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
13616 Fix removing "// Interfaces" when saving .* expansions.
13617 Reported by Pierre-David Pfister.
13618
13619 2009-11-26 Glenn Morris <rgm@gnu.org>
13620
13621 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
13622 the scope.
13623
13624 2009-11-25 Johan Bockgård <bojohan@gnu.org>
13625
13626 * vc-annotate.el (vc-annotate-revision-previous-to-line):
13627 Really use previous revision.
13628
13629 2009-11-25 Kevin Ryde <user42@zip.com.au>
13630
13631 * man.el (Man-completion-table): default-directory "/" in case
13632 doesn't otherwise exist. process-environment COLUMNS=999 so as
13633 not to truncate long names. process-connection-type pipe to avoid
13634 any chance of hitting the pseudo-tty TIOCGWINSZ.
13635 (man): completion-ignore-case t for friendliness and since man
13636 itself is case-insensitive on the command line.
13637 Further to Bug#3717.
13638
13639 * arc-mode.el: Add "Keywords: files", so the details in its
13640 commentary can be reached from finder-by-keyword.
13641 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
13642 editing mode, but it's comms related and sgml-mode.el has "comm"
13643 on that basis too.
13644 * textmodes/bibtex-style.el: Add "Keywords: tex".
13645 * international/isearch-x.el, international/ja-dic-cnv.el:
13646 * international/ja-dic-utl.el, international/kkc.el:
13647 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
13648
13649 2009-11-25 Juri Linkov <juri@jurta.org>
13650
13651 * man.el (Man-completion-table): Modify regexp to include
13652 section names to completion strings. (Bug#3717)
13653
13654 2009-11-25 Juri Linkov <juri@jurta.org>
13655
13656 Search recursively in gzipped files. (Bug#4982)
13657
13658 * progmodes/grep.el (grep-highlight-matches): Add new options
13659 `always' and `auto'. Doc fix.
13660 (grep-process-setup): Check `grep-highlight-matches' for
13661 `auto-detect' to determine the need to compute grep defaults.
13662 Move Windows/DOS specific --colors settings handling
13663 to `grep-compute-defaults'. Check `grep-highlight-matches'
13664 to get the value of "--color=".
13665 (grep-compute-defaults): Compute `grep-highlight-matches' when it
13666 has the value `auto-detect'. Move Windows/DOS specific settings
13667 from `grep-process-setup'.
13668 (zrgrep): New command with alias `rzgrep'.
13669
13670 2009-11-25 Juri Linkov <juri@jurta.org>
13671
13672 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
13673 to nil instead of switching off view-mode. (Bug#4896)
13674
13675 2009-11-25 Juri Linkov <juri@jurta.org>
13676
13677 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
13678
13679 * mwheel.el (mwheel-scroll-up-function)
13680 (mwheel-scroll-down-function): New defvars.
13681 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
13682 `scroll-up', and `mwheel-scroll-down-function' instead of
13683 `scroll-down'.
13684
13685 * doc-view.el (doc-view-scroll-up-or-next-page)
13686 (doc-view-scroll-down-or-previous-page): Add optional ARG.
13687 Use this ARG in the call to image-scroll-up/image-scroll-down.
13688 Change `interactive' spec to "P". Goto next/previous page only
13689 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
13690 SPC/DEL case). Doc fix.
13691 (doc-view-next-line-or-next-page)
13692 (doc-view-previous-line-or-previous-page): Rename arg to ARG
13693 for consistency.
13694 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
13695 `doc-view-scroll-up-or-next-page', and buffer-local
13696 `mwheel-scroll-down-function' to
13697 `doc-view-scroll-down-or-previous-page'.
13698
13699 2009-11-25 Juri Linkov <juri@jurta.org>
13700
13701 Provide additional default values (directories at other Dired
13702 windows) via M-n in the minibuffer of some Dired commands.
13703
13704 * dired-aux.el (dired-diff, dired-compare-directories)
13705 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
13706 `minibuffer-default' in `minibuffer-with-setup-hook'.
13707 (dired-dwim-target-directory): Find a window that displays Dired
13708 buffer instead of failing when the next window is not Dired.
13709 Use `get-window-with-predicate' to find for the next Dired window.
13710 (dired-dwim-target-defaults): New function.
13711
13712 * ediff-util.el (ediff-read-file-name):
13713 Use `dired-dwim-target-defaults' to set `minibuffer-default'
13714 in `minibuffer-with-setup-hook'.
13715
13716 2009-11-25 Juri Linkov <juri@jurta.org>
13717
13718 Provide additional default values (file name at point or at the
13719 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
13720
13721 * minibuffer.el (read-file-name-defaults): New function.
13722 (read-file-name): Reset `minibuffer-default' to nil when
13723 it duplicates initial input `insdef'.
13724 Bind `minibuffer-default-add-function' to lambda that
13725 calls `read-file-name-defaults' in `minibuffer-selected-window'.
13726 (minibuffer-insert-file-name-at-point): New command.
13727
13728 * files.el (file-name-at-point-functions): New defcustom.
13729 (find-file-default): Remove defvar.
13730 (find-file-read-args): Don't use `find-file-default'.
13731 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
13732 to `read-file-name'.
13733 (find-file-literally): Use `read-file-name' with
13734 `confirm-nonexistent-file-or-buffer'.
13735
13736 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
13737
13738 * dired.el (dired-read-dir-and-switches):
13739 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
13740 to `read-file-name'.
13741 (dired-file-name-at-point): New function.
13742 (dired-mode): Add hook `dired-file-name-at-point' to
13743 `file-name-at-point-functions'.
13744
13745 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
13746
13747 Really make the *Completions* window soft-dedicated (bug#5030).
13748 * window.el (window--display-buffer-2): Add `dedicated' argument.
13749 (display-buffer): Pass it when needed so the dedicated flag is set
13750 after calling set-window-buffer, which would otherwise reset it.
13751
13752 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
13753
13754 * progmodes/meta-mode.el (meta-complete-symbol):
13755 * progmodes/etags.el (complete-tag):
13756 * mail/mailabbrev.el (mail-abbrev-complete-alias):
13757 Use completion-in-region.
13758
13759 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
13760 (dabbrev-completion): Use completion-in-region.
13761 (dabbrev--abbrev-at-point): Simplify regexp.
13762
13763 * abbrev.el (abbrev--before-point): Use word-motion functions
13764 if :regexp is not specified (bug#5031).
13765
13766 * subr.el (string-prefix-p): New function.
13767
13768 * man.el (Man-completion-cache): New var.
13769 (Man-completion-table): Use it.
13770
13771 * vc.el (vc-print-log-internal): Make `limit' optional for better
13772 compatibility (e.g. with vc-annotate.el).
13773
13774 2009-11-24 Kevin Ryde <user42@zip.com.au>
13775
13776 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
13777 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
13778
13779 * emacs-lisp/elint.el (elint-add-required-env): Better error message
13780 when .el source file not found or other error.
13781
13782 2009-11-24 Markus Triska <markus.triska@gmx.at>
13783
13784 * linum.el (linum-update-window): Ignore intangible (bug#4996).
13785
13786 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
13787
13788 Handle the [back] button properly (bug#4979).
13789 * descr-text.el (describe-text-properties): Add a `buffer' argument.
13790 Use help-setup-xref, help-buffer, and with-help-window.
13791 (describe-char): Add `buffer' argument.
13792 Pass proper command to help-setup-xref. Don't meddle with
13793 help-xref-stack-item directly.
13794 (describe-text-category): Use with-help-window and help-buffer.
13795
13796 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
13797 for the displayed buffer (bug#4887).
13798
13799 * man.el (Man-completion-table): New function.
13800 (man): Use it.
13801
13802 2009-11-24 David Reitter <david.reitter@gmail.com>
13803
13804 * vc-git.el (vc-git-registered): Use checkout directory (where
13805 .git is) rather than the file's directory and a relative path spec
13806 to work around a bug in git.
13807
13808 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
13809
13810 Improve handling of processes on remote hosts.
13811
13812 * eshell/esh-util.el (eshell-path-env): New defvar.
13813 (eshell-parse-colon-path): New defun.
13814 (eshell-file-attributes): Use `eshell-parse-colon-path'.
13815
13816 * eshell/esh-ext.el (eshell-search-path):
13817 Use `eshell-parse-colon-path'.
13818 (eshell-remote-command): Remove argument HANDLER.
13819 (eshell-external-command): Check for FTP remote connection.
13820
13821 * eshell/esh-proc.el (eshell-gather-process-output):
13822 Use `file-truename', in order to start also symlinked files.
13823 Apply `start-file-process' instead of `start-process'.
13824 Shorten `command' to the local file name part.
13825
13826 * eshell/em-cmpl.el (eshell-complete-commands-list):
13827 Use `eshell-parse-colon-path'.
13828
13829 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
13830
13831 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
13832 to `eshell-directory-change-hook'.
13833
13834 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
13835
13836 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
13837 because it could be enabled automatically if view-read-only is non-nil.
13838
13839 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
13840
13841 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
13842 made on 2009-11-22.
13843
13844 2009-11-24 Glenn Morris <rgm@gnu.org>
13845
13846 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
13847 deleted variable bookmark-bmenu-bookmark-column.
13848
13849 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
13850
13851 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
13852
13853 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
13854
13855 * net/browse-url.el (browse-url-filename-alist): On Windows, add
13856 two slashes to the "file:" prefix.
13857 (browse-url-file-url): De-munge Cygwin filenames before passing
13858 them to Windows browser.
13859 (browse-url-default-windows-browser): Use call-process.
13860
13861 2009-11-23 Juri Linkov <juri@jurta.org>
13862
13863 Implement DocView Continuous mode. (Bug#4896)
13864 * doc-view.el (doc-view-continuous-mode): New defcustom.
13865 (doc-view-mode-map): Bind C-n/<down> to
13866 `doc-view-next-line-or-next-page', C-p/<up> to
13867 `doc-view-previous-line-or-previous-page'.
13868 (doc-view-next-line-or-next-page)
13869 (doc-view-previous-line-or-previous-page): New commands.
13870
13871 2009-11-23 Juri Linkov <juri@jurta.org>
13872
13873 Implement Isearch in comint input history. (Bug#3746)
13874 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
13875 `isearch-mode-hook'.
13876 (comint-history-isearch): New defcustom.
13877 (comint-history-isearch-backward)
13878 (comint-history-isearch-backward-regexp): New commands.
13879 (comint-history-isearch-message-overlay): New buffer-local variable.
13880 (comint-history-isearch-setup, comint-history-isearch-end)
13881 (comint-goto-input, comint-history-isearch-search)
13882 (comint-history-isearch-message, comint-history-isearch-wrap)
13883 (comint-history-isearch-push-state)
13884 (comint-history-isearch-pop-state): New functions.
13885
13886 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
13887
13888 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
13889 return.
13890 (tramp-handle-make-symbolic-link)
13891 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
13892 Quote file names.
13893 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
13894 (tramp-handle-process-file): Use it.
13895
13896 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
13897
13898 * window.el (move-to-window-line-last-op): Remove.
13899 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
13900
13901 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
13902
13903 Make M-r mirror the new cycling behavior of C-l.
13904 * window.el (move-to-window-line-last-op): New var.
13905 (move-to-window-line-top-bottom): New command.
13906 (global-map): Bind M-r move-to-window-line-top-bottom.
13907
13908 2009-11-23 Sven Joachim <svenjoac@gmx.de>
13909
13910 * dired-x.el (dired-guess-shell-alist-default):
13911 Support xz format. (Bug#4953)
13912
13913 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
13914
13915 * emulation/viper-cmd.el: Use viper-last-command-char instead of
13916 last-command-char/last-command-event.
13917 (viper-prefix-arg-value): Do correct conversion of event-char for
13918 XEmacs.
13919
13920 * emulation/viper-util.el, emulation/viper.el:
13921 Use viper-last-command-char instead of
13922 last-command-char/last-command-event.
13923
13924 * ediff-init.el, ediff-mult.el, ediff-util.el:
13925 Replace last-command-char and last-command-event
13926 with (ediff-last-command-char) everywhere.
13927
13928 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
13929 created in fundamental mode.
13930
13931 * ediff.el (ediff-version): Revert the change of interactive-p to
13932 called-interactively-p.
13933
13934 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
13935
13936 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
13937 generation from word-movement command names.
13938
13939 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
13940
13941 * cus-start.el (all): Add native condition for font-use-system-font.
13942
13943 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
13944
13945 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
13946 Correct the patch from 2009-11-18. (Bug#3910)
13947
13948 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
13949
13950 * progmodes/subword.el: Rename from lisp/subword.el.
13951
13952 * subword.el: Rename to progmodes/subword.el.
13953
13954 * Makefile.in (ELCFILES): Adapt to subword.el move.
13955
13956 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13957 Stefan Monnier <monnier@iro.umontreal.ca>
13958
13959 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
13960 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
13961 (bookmark-bmenu-show-filenames): Use push.
13962 (bookmark-bmenu-hide-filenames): Use local var instead of
13963 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
13964 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
13965 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
13966 filenames now that the bookmark names are always available.
13967
13968 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
13969
13970 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
13971 (bookmark-search-pattern): Move and leave unbound.
13972 (bookmark-bmenu-mode-map): Change binding.
13973 (bookmark-read-search-input): Simplify.
13974 Don't use text-char-description. Don't error on non-char events.
13975 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
13976 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
13977 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
13978 Use a local var for the timer.
13979 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
13980 (i.e. bookmark-bmenu-search).
13981
13982 2009-11-21 Glenn Morris <rgm@gnu.org>
13983
13984 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
13985
13986 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
13987
13988 * net/browse-url.el (browse-url-default-windows-browser):
13989 Use cygstart for cygwin.
13990
13991 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
13992
13993 * bookmark.el: Formatting and doc fixes only:
13994 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
13995 (bookmark-bmenu-search): Wrap to fit within 80 columns.
13996 Minor grammar and punctuation fixes in doc string.
13997 (bookmark-read-search-input): Adjust to fit within 80 columns.
13998
13999 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
14000
14001 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
14002 (c-backward-into-nomenclature): Adapt to subword renaming.
14003
14004 * subword.el (subword-forward, subword-backward, subword-mark)
14005 (subword-kill, subword-backward-kill, subword-transpose)
14006 (subword-downcase, subword-upcase, subword-capitalize)
14007 (subword-forward-internal, subword-backward-internal):
14008 Rename from forward-subword, backward-subword, mark-subword,
14009 kill-subword, backward-kill-subword, transpose-subwords,
14010 downcase-subword, upcase-subword, capitalize-subword,
14011 forward-subword-internal, backward-subword-internal.
14012
14013 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14014
14015 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
14016 New options.
14017 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
14018 New vars.
14019 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
14020 (bookmark-bmenu-filter-alist-by-regexp)
14021 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
14022 (bookmark-bmenu-search): New command.
14023 (bookmark-bmenu-mode-map): Bind it.
14024
14025 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
14026
14027 * progmodes/cc-cmds.el: declare-functioned forward-subword and
14028 backward-subword to quit the byte-compiler.
14029
14030 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
14031
14032 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
14033
14034 * progmodes/cc-cmds.el (c-update-modeline)
14035 (c-forward-into-nomenclature, c-backward-into-nomenclature):
14036 Refer to subword.el functions instead of cc-subword.el.
14037
14038 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
14039 subword.el functions instead of cc-subword.el.
14040
14041 * progmodes/cc-subword.el: Rename to subword.el.
14042 * subword.el: Rename from progmodes/cc-subword.el.
14043 (subword-mode-map): Rename from c-subword-mode-map.
14044 (subword-mode): Rename from c-subword-mode.
14045 (global-subword-mode): New global minor mode.
14046 (forward-subword): Rename from c-forward-subword.
14047 (backward-subword): Rename from c-backward-subword.
14048 (mark-subword): Rename from c-mark-subword.
14049 (kill-subword): Rename from c-kill-subword.
14050 (backward-kill-subword): Rename from c-backward-kill-subword.
14051 (transpose-subwords): Rename from c-tranpose-subword.
14052 (downcase-subword): Rename from c-downcase-subword.
14053 (capitalize-subword): Rename from c-capitalize-subword.
14054 (forward-subword-internal): Rename from c-forward-subword-internal.
14055 (backward-subword-internal): Rename from c-backward-subword-internal.
14056
14057 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
14058
14059 * vc.el (vc-deduce-fileset): Allow non-state changing operations
14060 from a dired buffer.
14061 (vc-dired-deduce-fileset): New function.
14062 (vc-root-diff, vc-print-root-log): Use it.
14063
14064 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
14065 nil LIMIT argument to vc-print-log-internal.
14066
14067 2009-11-20 Glenn Morris <rgm@gnu.org>
14068
14069 * Makefile.in (ELCFILES): Regenerate.
14070
14071 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
14072
14073 * calc/calc.el (calc-set-mode-line):
14074 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
14075 (math-format-number): Rename `math-format-complement-signed' to
14076 `math-format-twos-complement'.
14077
14078 * calc/calc-bin.el (math-format-twos-complement): Rename from
14079 math-format-complement-signed.
14080 (calc-radix): Rename `calc-complement-signed-mode' to
14081 `calc-twos-complement-mode'.
14082 (calc-octal-radix, calc-hex-radix): Add an argument for
14083 two's complement.
14084
14085 * calc/calc-embed.el (calc-embedded-mode-vars):
14086 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
14087
14088 * calc/calc-ext.el (calc-init-extensions):
14089 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
14090 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
14091
14092 * calc/calc-units.el (math-build-units-table-buffer):
14093 Let `calc-twos-complement-mode' be nil.
14094
14095 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
14096 entries.
14097
14098 * calc/calc-vec.el (calcFunc-vunpack):
14099 * calc/calc-aent.el (calc-do-calc-eval):
14100 * calc/calc-forms.el (math-format-date):
14101 * calc/calc-graph.el (calc-graph-plot):
14102 * calc/calc-math.el (math-use-emacs-fn):
14103 * calc/calccomp.el (math-compose-expr):
14104 Let `calc-twos-complement-mode' be nil.
14105
14106 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
14107
14108 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
14109 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
14110 * minibuffer.el (completion-in-region-functions): New hook.
14111 (completion-in-region): New function.
14112 * emacs-lisp/lisp.el (lisp-complete-symbol):
14113 * pcomplete.el (pcomplete-std-complete): Use it.
14114
14115 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
14116
14117 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
14118 (latex-complete-alist): New vars.
14119 (latex-string-prefix-p, latex-complete-bibtex-keys)
14120 (latex-complete-envnames, latex-complete-refkeys)
14121 (latex-complete-data): New functions.
14122 (latex-complete, latex-indent-or-complete): New commands.
14123
14124 * window.el (display-buffer-mark-dedicated): New var.
14125 (display-buffer): Obey it.
14126 * minibuffer.el (minibuffer-completion-help): Use it.
14127
14128 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
14129
14130 * filecache.el (file-cache-add-file): Use push and cons.
14131 (file-cache-delete-file-regexp): Use push.
14132 (file-cache-complete): Use completion-in-region.
14133
14134 * simple.el (with-wrapper-hook): Fix thinko.
14135
14136 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
14137 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
14138 Use with-current-buffer and string-to-number.
14139 (hfy-fallback-colour-values): Use assoc-string.
14140 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
14141 (hfy-face-at): Remove unused var `found-face'.
14142 (hfy-compile-stylesheet): Remove unused var `css'.
14143 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
14144 and `orig-buffer'.
14145 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
14146 Use with-current-buffer.
14147 (hfy-text-p): Use expand-file-name and fewer setq.
14148
14149 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
14150
14151 * htmlfontify.el, hfy-cmap.el: New files.
14152
14153 2009-11-19 Juri Linkov <juri@jurta.org>
14154
14155 * minibuffer.el (completions-format): New defcustom.
14156 (completion--insert-strings): Implement vertical format.
14157
14158 * simple.el (switch-to-completions): Move point to the first
14159 completion when point was at the beginning of the buffer.
14160
14161 2009-11-19 Juri Linkov <juri@jurta.org>
14162
14163 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
14164
14165 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
14166
14167 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
14168
14169 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
14170 (mail-signature): Change default to t.
14171 (mail-from-style): Deprecate `system-default' value.
14172 (mail-insert-from-field): For default value of mail-from-style,
14173 default to `angles' unless `angles' needs quoting and `parens'
14174 does not.
14175 (mail-citation-prefix-regexp): Use citation regexp from
14176 message-mode.
14177
14178 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
14179
14180 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
14181 Set variables for computing the prompt for reading password.
14182
14183 2009-11-19 Glenn Morris <rgm@gnu.org>
14184
14185 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
14186
14187 * textmodes/flyspell.el (sgml-lexical-context): Declare.
14188
14189 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
14190 (newsticker-treeview-listwindow-height): Fix custom type.
14191
14192 2009-11-19 Kenichi Handa <handa@m17n.org>
14193
14194 * descr-text.el (describe-char-padded-string): Compose with TAB
14195 only if there's a font for CH.
14196 (describe-char): Fix the condition for detecting a trivial composition.
14197
14198 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
14199
14200 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
14201 more accurate version of the regexp. (Bug#3910)
14202
14203 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
14204
14205 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
14206
14207 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
14208
14209 * font-setting.el (font-use-system-font): Declare for byte-compiler.
14210 (font-setting-change-default-font): Fix typo in docstring.
14211
14212 2009-11-18 Alan Mackenzie <acm@muc.de>
14213
14214 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
14215
14216 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
14217
14218 * font-setting.el (font-use-system-font): Move ...
14219
14220 * cus-start.el (all): ... to here.
14221
14222 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
14223
14224 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
14225 Don't set `ad-return-value' if `ad-do-it' doesn't.
14226
14227 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
14228 modification time.
14229
14230 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
14231
14232 * menu-bar.el: Put "Use system font" in Option-menu.
14233 (menu-bar-options-save): Add font-use-system-font.
14234
14235 * loadup.el: If feature system-font-setting or font-render-setting is
14236 there, load font-setting.
14237
14238 * Makefile.in (ELCFILES): Add font-settings.el.
14239 * font-setting.el: New file.
14240
14241 2009-11-17 Glenn Morris <rgm@gnu.org>
14242
14243 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
14244
14245 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
14246 Preserve point in the list buffer. (Bug#4939)
14247 Use point-at-eol.
14248 (newsticker--treeview-list-update-highlight)
14249 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
14250
14251 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
14252
14253 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
14254 Remove.
14255
14256 * calc/calc-ext.el (calc-init-extensions): Remove references to
14257 symclip.
14258
14259 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
14260
14261 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
14262 * calc/calc-help.el (calc-b-prefix-help): Remove references to
14263 `calc-symclip'.
14264
14265 2009-11-16 Kevin Ryde <user42@zip.com.au>
14266
14267 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
14268 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
14269
14270 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
14271 (lm-keywords-list): Allow comma-only separator like "foo,bar".
14272 Ignore trailing spaces by omit-nulls to split-string (fixing
14273 regression from Emacs 21 due to the incompatible split-string
14274 change). (Bug #4928.)
14275
14276 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
14277
14278 * vc.el (vc-log-show-limit): Default to 2000.
14279 (vc-print-log-internal): Insert buttons to request more entries
14280 when limiting the output.
14281
14282 * vc-sccs.el (vc-sccs-print-log):
14283 * vc-rcs.el (vc-rcs-print-log):
14284 * vc-cvs.el (vc-cvs-print-log):
14285 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
14286 LIMIT is non-nil.
14287
14288 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
14289
14290 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
14291 error when `tramp-gvfs-dbus-event-vector' is set.
14292 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
14293
14294 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
14295
14296 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
14297
14298 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
14299
14300 * net/dbus.el (dbus-unregister-service): New defun.
14301 (dbus-register-property): Register the handlers of
14302 "org.freedesktop.DBus.Properties" for SERVICE.
14303 (dbus-property-handler): Fix docstring.
14304
14305 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14306
14307 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
14308 Quote doc string reference in defvaralias as it is not in special form.
14309 (byte-compile-output-docform): Doc fix.
14310
14311 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
14312
14313 * calc/calc.el (math-2-word-size, math-half-2-word-size)
14314 (calc-complement-signed-mode): New variables.
14315 (calc-set-mode-line): Add indicator for twos-complements.
14316 (math-format-number): Format twos-complement notation.
14317
14318 * calc/calc-bin.el (calc-word-size): Reset the variables
14319 `math-2-word-size' and `math-half-2-word-size'.
14320 (math-format-complement-signed, math-symclip, calcFunc-symclip)
14321 (calc-symclip): New functions.
14322
14323 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
14324
14325 * calc/calc-embed.el (calc-embedded-mode-vars):
14326 Add `calc-complement-signed-mode' to the list of modes.
14327
14328 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
14329 (calc-b-oper-keys): Add `calc-symclip' to list.
14330
14331 * calc/calc-ext.el (math-read-number-fancy): Read complement
14332 signed numbers.
14333 (calc-init-extensions): Add binding for `calc-symclip'.
14334 Add autoload for `calcFunc-symclip' and `calc-symclip'.
14335
14336 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
14337 `calc-symclip'.
14338 (calc-modes-menu): Add item for twos complement mode.
14339
14340 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
14341
14342 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
14343
14344 * register.el (jump-to-register, insert-register): Handle Semantic
14345 tags. From commented-out advice in semantic/senator.el.
14346
14347 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
14348
14349 * vc.el (vc-log-show-limit): New variable.
14350 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
14351 when using a prefix argument.
14352 (vc-print-log-internal): Add new argument LIMIT.
14353
14354 * vc-svn.el (vc-svn-print-log):
14355 * vc-mtn.el (vc-mtn-print-log):
14356 * vc-hg.el (vc-hg-print-log):
14357 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
14358 pass it to the log command when set. Make the BUFFER argument
14359 non-optional.
14360
14361 * vc-sccs.el (vc-sccs-print-log):
14362 * vc-rcs.el (vc-rcs-print-log):
14363 * vc-git.el (vc-git-print-log):
14364 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
14365 ignore it. Make the BUFFER argument non-optional
14366
14367 * bindings.el (mode-line-buffer-identification): Do not purecopy.
14368
14369 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
14370
14371 * dired.el (dired-mode-map): Move encryption items to "Operate"
14372 menu (Bug#4703).
14373
14374 * strokes.el (strokes-update-window-configuration): Make strokes
14375 buffer current before erasing (Bug#4906).
14376
14377 2009-11-15 Juri Linkov <juri@jurta.org>
14378
14379 * simple.el (set-mark-default-inactive): Add :type, :group
14380 and :version. (Bug#4876)
14381
14382 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
14383
14384 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
14385 (archive-unique-fname): ... here. (Bug#4929)
14386
14387 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
14388
14389 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
14390 with a real fix.
14391
14392 * novice.el (disabled-command-function): Add useful args.
14393 Setup the help buffer so that [back] works.
14394 Remove redundant call to help-mode.
14395 (disabled-command-function): Use `case'.
14396 (en/disable-command): New function extracted from enable-command.
14397 (enable-command, disable-command): Use it.
14398
14399 2009-11-14 Glenn Morris <rgm@gnu.org>
14400
14401 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
14402 constants. (Bug#4913)
14403
14404 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
14405
14406 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
14407
14408 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
14409 defined in C that have no doc-strings. (Bug#1063)
14410
14411 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
14412
14413 * cus-edit.el (data, files):
14414 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
14415
14416 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
14417
14418 * simple.el (shell-command): Doc fix (Bug#4891).
14419
14420 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
14421
14422 2009-11-14 Glenn Morris <rgm@gnu.org>
14423
14424 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
14425 statements for vc-diff, emerge-quit, and rmail-cease-edit.
14426 If they are already loaded, eval-after-load will do the right thing.
14427
14428 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
14429 compiling.
14430
14431 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
14432
14433 * simple.el (x-selection-owner-p): Declare.
14434 (read-mail-command): Use custom radio type rather than choice.
14435 (completion-no-auto-exit): Doc fix.
14436
14437 * custom.el (defgroup):
14438 * epg-config.el (epg): Doc fixes.
14439
14440 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
14441
14442 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
14443 * international/ccl.el (define-ccl-program): Do not purecopy the
14444 docstring, defconst does it anyway.
14445
14446 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
14447
14448 * add-log.el (add-change-log-entry): Avoid displaying the changelog
14449 a second time.
14450
14451 * x-dnd.el (x-dnd-maybe-call-test-function):
14452 * window.el (split-window-vertically):
14453 * whitespace.el (whitespace-help-on):
14454 * vc-rcs.el (vc-rcs-consult-headers):
14455 * userlock.el (ask-user-about-lock-help)
14456 (ask-user-about-supersession-help):
14457 * type-break.el (type-break-force-mode-line-update):
14458 * time-stamp.el (time-stamp-conv-warn):
14459 * terminal.el (te-set-output-log, te-more-break, te-filter)
14460 (te-sentinel, terminal-emulator):
14461 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
14462 (term-write-input-ring, term-check-source, term-start-output-log):
14463 (term-display-buffer-line, term-dynamic-list-completions):
14464 (term-ansi-make-term, serial-term):
14465 * subr.el (selective-display):
14466 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
14467 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
14468 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
14469 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
14470 (speedbar-remove-localized-speedbar-support)
14471 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
14472 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
14473 (speedbar-buffers-line-directory):
14474 * simple.el (shell-command-on-region, append-to-buffer)
14475 (prepend-to-buffer):
14476 * shadowfile.el (shadow-save-todo-file):
14477 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
14478 (scroll-bar-maybe-set-window-start):
14479 * sb-image.el (speedbar-image-dump):
14480 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
14481 (load-save-place-alist-from-file):
14482 * ps-samp.el (ps-print-message-from-summary):
14483 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
14484 (ps-background-image, ps-begin-job, ps-do-despool):
14485 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
14486 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
14487 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
14488 (pr-call-process, pr-file-list, pr-interface-save):
14489 * novice.el (disabled-command-function)
14490 (enable-command, disable-command):
14491 * mouse.el (mouse-buffer-menu-alist):
14492 * mouse-copy.el (mouse-kill-preserving-secondary):
14493 * macros.el (kbd-macro-query):
14494 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
14495 * informat.el (batch-info-validate):
14496 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
14497 * hippie-exp.el (try-expand-dabbrev-visible):
14498 * help-mode.el (help-make-xrefs):
14499 * help-fns.el (describe-variable):
14500 * generic-x.el (bat-generic-mode-run-as-comint):
14501 * finder.el (finder-mouse-select):
14502 * find-dired.el (find-dired-sentinel):
14503 * filesets.el (filesets-file-close):
14504 * files.el (list-directory):
14505 * faces.el (list-faces-display, describe-face):
14506 * facemenu.el (list-colors-display):
14507 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
14508 * epg.el (epg--process-filter, epg-cancel):
14509 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
14510 (epa--read-signature-type):
14511 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
14512 (emerge-file-names):
14513 * ehelp.el (electric-helpify):
14514 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
14515 * ediff-vers.el (rcs-ediff-view-revision):
14516 * ediff-util.el (ediff-setup):
14517 * ediff-mult.el (ediff-append-custom-diff):
14518 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
14519 (ediff-wordify):
14520 * echistory.el (Electric-command-history-redo-expression):
14521 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
14522 * disp-table.el (describe-display-table):
14523 * dired.el (dired-find-buffer-nocreate):
14524 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
14525 * dabbrev.el (dabbrev--same-major-mode-p):
14526 * chistory.el (list-command-history):
14527 * apropos.el (apropos-documentation):
14528 * allout.el (allout-obtain-passphrase):
14529 (allout-copy-exposed-to-buffer):
14530 (allout-verify-passphrase): Use with-current-buffer.
14531
14532 2009-11-13 Glenn Morris <rgm@gnu.org>
14533
14534 * Makefile.in (ELCFILES): Regenerate.
14535
14536 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
14537
14538 * net/dbus.el (dbus-registered-objects-table): Rename from
14539 `dbus-registered-functions-table', because it contains also properties.
14540 (dbus-unregister-object): Unregister also properties.
14541 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
14542 Use a timeout of 500 msec, in order to not block.
14543 (dbus-register-property, dbus-property-handler): New defuns.
14544
14545 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
14546
14547 * simple.el (minibuffer-default-add-completions): Drop deprecated
14548 4th arg.
14549
14550 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
14551
14552 * textmodes/artist.el (artist-mouse-choose-operation):
14553 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
14554 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
14555 (artist-compute-up-event-key): New function.
14556 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
14557
14558 2009-11-13 Kenichi Handa <handa@m17n.org>
14559
14560 * language/japan-util.el: Make sure that the value of jisx0208
14561 property is jisx0208 character.
14562
14563 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
14564
14565 * international/mule.el (auto-coding-regexp-alist): Only purecopy
14566 car or each item, not the whole list.
14567
14568 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
14569
14570 * minibuffer.el (minibuffer-completion-help):
14571 Use minibuffer-hide-completions.
14572
14573 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
14574
14575 * dired.el (dired-save-positions, dired-restore-positions): New funs.
14576 (dired-revert): Use them (bug#4880).
14577
14578 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
14579
14580 * tooltip.el (tooltip-frame-parameters): Undo previous change.
14581
14582 2009-11-12 Juri Linkov <juri@jurta.org>
14583
14584 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
14585 New functions.
14586 (find-file-literally-at-point): Alias of `ffap-literally'.
14587
14588 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
14589
14590 * textmodes/ispell.el (ispell-skip-region-alist):
14591 * textmodes/css-mode.el (auto-mode-alist):
14592 * progmodes/compile.el (auto-mode-alist):
14593 * international/mule.el (ctext-non-standard-encodings-alist)
14594 (ctext-non-standard-encodings-regexp):
14595 * simple.el (shell-command-switch, text-read-only):
14596 * replace.el (occur-mode-map):
14597 * paths.el (rmail-file-name):
14598 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
14599 * find-file.el (ff-special-constructs):
14600 * files.el (file-name-handler-alist):
14601 * composite.el: Purecopy strings.
14602
14603 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
14604
14605 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
14606
14607 * widget.el (define-widget): Purecopy the docstring.
14608 * international/mule-cmds.el (charset): Do not purecopy the
14609 docstring here, define-widget does it.
14610
14611 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
14612 * textmodes/bibtex-style.el (auto-mode-alist):
14613 * progmodes/inf-lisp.el (inferior-lisp-prompt):
14614 * progmodes/compile.el (compile-command):
14615 * language/korea-util.el (default-korean-keyboard):
14616 * international/mule-conf.el (file-coding-system-alist):
14617 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
14618 * tooltip.el (tooltip-frame-parameters):
14619 * newcomment.el (comment-end, comment-padding):
14620 * dired.el (dired-trivial-filenames):
14621 * comint.el (comint-file-name-prefix): Purecopy initial values.
14622
14623 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
14624
14625 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
14626 (tramp-advice-minibuffer-electric-tilde): Unload advices via
14627 `tramp-unload'.
14628 (tramp-advice-make-auto-save-file-name)
14629 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
14630 after removing the advice.
14631
14632 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
14633
14634 * progmodes/grep.el (grep-regexp-alist):
14635 * international/mule-cmds.el (iso-2022-control-alist):
14636 * emacs-lisp/timer.el (timer-duration-words):
14637 * subr.el (version-separator, version-regexp-alist):
14638 * minibuffer.el (completion-styles-alist):
14639 * faces.el (face-attribute-name-alist, list-faces-sample-text):
14640 Change defvars to defconsts.
14641
14642 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
14643 * loadup.el ("international/mule-conf"): Load the byte compiled version.
14644 * international/mule-conf.el: Allow to be byte compiled.
14645
14646 * international/mule.el (define-charset): Purecopy props.
14647 (load-with-code-conversion): Purecopy doc string and file name.
14648 (put-charset-property): Purecopy strings.
14649 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
14650
14651 * international/mule-cmds.el (register-input-method): Purecopy arguments.
14652 (define-char-code-property): Correctly purecopy the table.
14653
14654 * international/ccl.el (define-ccl-program): Purecopy the docstring.
14655
14656 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
14657
14658 * subr.el (add-hook): Purecopy strings.
14659 (eval-after-load): Purecopy load-history-regexp and the form.
14660
14661 * custom.el (custom-declare-group): Purecopy load-file-name.
14662
14663 * subr.el (menu-bar-separator): New defconst.
14664 * net/eudc.el (eudc-tools-menu):
14665 * international/mule-cmds.el (set-coding-system-map)
14666 (mule-menu-keymap):
14667 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
14668 * vc-hooks.el (vc-menu-map):
14669 * replace.el (occur-mode-map):
14670 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
14671 (menu-bar-edit-menu, menu-bar-goto-menu)
14672 (menu-bar-custom-menu, menu-bar-showhide-menu)
14673 (menu-bar-options-menu, menu-bar-tools-menu)
14674 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
14675 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
14676 (menu-bar-help-menu):
14677 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
14678 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
14679
14680 * term/x-win.el (x-gtk-stock-map):
14681 * progmodes/vera-mode.el (auto-mode-alist):
14682 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
14683 (inferior-lisp-program, inferior-lisp-load-command):
14684 * progmodes/hideshow.el (hs-special-modes-alist):
14685 * progmodes/gud.el (same-window-regexps):
14686 * progmodes/grep.el (grep-program, find-program, xargs-program):
14687 * net/telnet.el (same-window-regexps):
14688 * net/rlogin.el (same-window-regexps):
14689 * language/ethiopic.el (font-ccl-encoder-alist):
14690 * vc-sccs.el (vc-sccs-master-templates):
14691 * vc-rcs.el (vc-rcs-master-templates):
14692 * subr.el (cl-assertion-failed):
14693 * simple.el (next-error-overlay-arrow-position):
14694 * lpr.el (lpr-command):
14695 * locate.el (locate-ls-subdir-switches):
14696 * info.el (same-window-regexps, info)
14697 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
14698 * image-mode.el (image-mode, auto-mode-alist):
14699 * hippie-exp.el (hippie-expand-ignore-buffers):
14700 * format.el (format-alist):
14701 * find-dired.el (find-ls-subdir-switches, find-grep-options)
14702 (find-name-arg):
14703 * facemenu.el (facemenu-keybindings):
14704 * dired.el (dired-listing-switches, dired-chown-program):
14705 * diff.el (diff-switches, diff-command):
14706 * cus-edit.el (same-window-regexps):
14707 * bindings.el (mode-line-mule-info)
14708 (mode-line-buffer-identification): Purecopy strings.
14709
14710 2009-11-11 Juri Linkov <juri@jurta.org>
14711
14712 * simple.el (dired-get-filename) <declare-function>:
14713 Tell the byte-compiler about dired-get-filename.
14714 (shell-command): In Dired mode, get filename from the current line
14715 as the default value.
14716
14717 2009-11-10 Glenn Morris <rgm@gnu.org>
14718
14719 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
14720 * calendar/holidays.el, progmodes/cperl-mode.el:
14721 Update x-popup-menu declarations.
14722
14723 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
14724 (list-load-path-shadows): Use dolist.
14725 (list-load-path-shadows): Use with-current-buffer.
14726
14727 2009-11-10 Juri Linkov <juri@jurta.org>
14728
14729 * minibuffer.el (read-file-name): Support a list of default values
14730 in `default-filename'. Use the first file name where only one
14731 element is required. Doc fix.
14732
14733 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
14734
14735 * net/dbus.el (dbus-unregister-object): Release service, if no
14736 other method is registered for it.
14737
14738 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
14739
14740 * bookmark.el (bookmark-completing-read): Sort bookmark names if
14741 bookmark-sort-flag is non-nil (Bug#4653).
14742
14743 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
14744
14745 * emulation/cua-base.el: Add CUA property to some CC mode commands
14746 (Bug#4100).
14747
14748 2009-11-08 Kevin Ryde <user42@zip.com.au>
14749
14750 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
14751 at end of sentence (Bug#4818).
14752
14753 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
14754
14755 * progmodes/compile.el (compilation-error-regexp-alist-alist):
14756 Handle "see declaration of" MSFT statements (Bug#4100).
14757
14758 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
14759
14760 * net/tramp.el (tramp-advice-make-auto-save-file-name)
14761 (tramp-advice-file-expand-wildcards): Unload via
14762 `ad-remove-advice'.
14763
14764 * net/trampver.el: Update release number.
14765
14766 2009-11-08 Kevin Ryde <user42@zip.com.au>
14767
14768 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
14769 `ad-do-it'.
14770
14771 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
14772
14773 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
14774 in order to keep context in SELinux.
14775
14776 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
14777
14778 * dired-aux.el (dired-query): Place cursor in echo area and allow
14779 C-g.
14780
14781 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
14782 menu item if not on a directory (Bug#4701).
14783
14784 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
14785
14786 Sync with Tramp 2.1.17.
14787
14788 * net/tramp.el (tramp-handle-copy-directory): Don't use
14789 `file-remote-p' (due to compatibility).
14790
14791 * net/tramp-compat.el (tramp-compat-copy-directory)
14792 (tramp-compat-delete-directory): New defuns.
14793
14794 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
14795 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
14796 Use `tramp-compat-delete-directory'.
14797
14798 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
14799 (tramp-smb-handle-delete-directory):
14800 Use `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
14801
14802 * net/trampver.el: Update release number.
14803
14804 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
14805
14806 * tar-mode.el (tar-copy): Call write-region on the right buffer
14807 (Bug#4857).
14808
14809 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
14810 by hand, if necessary (Bug#4878).
14811
14812 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
14813
14814 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
14815 align size column (Bug#4839).
14816
14817 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
14818 statement.
14819
14820 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
14821
14822 * progmodes/ld-script.el (auto-mode-alist):
14823 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
14824
14825 * cus-face.el (custom-declare-face): Purecopy face spec.
14826
14827 2009-11-06 Kenichi Handa <handa@m17n.org>
14828
14829 * international/uni-bidi.el: Re-generated.
14830 * international/uni-category.el: Re-generated.
14831 * international/uni-combining.el: Re-generated.
14832 * international/uni-mirrored.el: Re-generated.
14833
14834 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
14835
14836 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
14837 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
14838 (tex-start-options, slitex-run-command, latex-run-command)
14839 (tex-run-command, tex-directory):
14840 * textmodes/ispell.el (ispell-html-skip-alists)
14841 (ispell-tex-skip-alists, ispell-tex-skip-alists):
14842 * textmodes/fill.el (adaptive-fill-first-line-regexp):
14843 (adaptive-fill-regexp):
14844 * textmodes/dns-mode.el (auto-mode-alist):
14845 * progmodes/python.el (interpreter-mode-alist):
14846 * progmodes/etags.el (tags-compression-info-list):
14847 * progmodes/etags.el (tags-file-name):
14848 * net/browse-url.el (browse-url-galeon-program)
14849 (browse-url-firefox-program):
14850 * mail/sendmail.el (mail-signature-file)
14851 (mail-citation-prefix-regexp):
14852 * international/mule-conf.el (eight-bit):
14853 * international/latexenc.el (latex-inputenc-coding-alist):
14854 * international/fontset.el (x-pixel-size-width-font-regexp):
14855 * emacs-lisp/warnings.el (warning-type-format):
14856 * emacs-lisp/trace.el (trace-buffer):
14857 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
14858 (emacs-lisp-mode-map):
14859 * calendar/holidays.el (holiday-solar-holidays)
14860 (holiday-bahai-holidays, holiday-islamic-holidays)
14861 (holiday-christian-holidays, holiday-hebrew-holidays)
14862 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
14863 (hebrew-holidays-1, holiday-oriental-holidays)
14864 (holiday-general-holidays):
14865 * x-dnd.el (x-dnd-known-types):
14866 * tool-bar.el (tool-bar):
14867 * startup.el (site-run-file):
14868 * shell.el (shell-dumb-shell-regexp):
14869 * rfn-eshadow.el (file-name-shadow-tty-properties)
14870 (file-name-shadow-properties):
14871 * paths.el (remote-shell-program, news-directory):
14872 * mouse.el ([C-down-mouse-3]):
14873 * menu-bar.el (menu-bar-tools-menu):
14874 * jka-cmpr-hook.el (jka-compr-load-suffixes)
14875 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
14876 (jka-compr-compression-info-list):
14877 * isearch.el (search-whitespace-regexp):
14878 * image-file.el (image-file-name-extensions):
14879 * find-dired.el (find-ls-option):
14880 * files.el (directory-listing-before-filename-regexp)
14881 (directory-free-space-args, insert-directory-program)
14882 (list-directory-brief-switches, magic-fallback-mode-alist)
14883 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
14884 (automount-dir-prefix):
14885 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
14886 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
14887 (face-font-registry-alternatives, face-font-registry-alternatives)
14888 (face-font-family-alternatives):
14889 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
14890 (facemenu-foreground-menu, facemenu-face-menu):
14891 * epa-hook.el (epa-file-name-regexp):
14892 * dnd.el (dnd-protocol-alist):
14893 * textmodes/rst.el (auto-mode-alist):
14894 * button.el (default-button): Purecopy strings.
14895
14896 2009-11-06 Glenn Morris <rgm@gnu.org>
14897
14898 * Makefile.in (ELCFILES): Update.
14899
14900 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
14901
14902 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
14903 * emacs-lisp/levents.el: Move to obsolete/levents.el.
14904
14905 * nxml/xsd-regexp.el (xsdre-gen-categories):
14906 * nxml/xmltok.el (xmltok-parse-entity):
14907 * nxml/rng-parse.el (rng-parse-validate-file):
14908 * nxml/rng-maint.el (rng-format-manual)
14909 (rng-manual-output-force-new-line):
14910 * nxml/rng-loc.el (rng-save-schema-location-1):
14911 * nxml/rng-cmpct.el (rng-c-parse-file):
14912 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
14913 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
14914
14915 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
14916
14917 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
14918 Remove extra save-excursions and make-variable-buffer-local's.
14919 Suggested by Stefan Monnier.
14920
14921 (verilog-getopt-file, verilog-module-inside-filename-p)
14922 (verilog-set-define): Merge GNU 1.35 and repair changes from
14923 switching to using with-current-buffer.
14924
14925 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
14926 being treated as a number and confusing AUTORESET.
14927 Reported by Dan Dever.
14928
14929 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
14930 Add verilog-auto-ignore-concat to fix backward compatibility with
14931 older verilog-modes. Reported by Dan Katz.
14932
14933 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
14934 containing closing anchors "...$".
14935
14936 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
14937 Reported by Wade Smith.
14938
14939 (verilog-batch-execute-func): Comment on function usage.
14940
14941 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
14942
14943 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
14944 for labels.
14945
14946 (verilog-label-re, verilog-calc-1): Support proper indent of named
14947 asserts.
14948
14949 (verilog-backward-token, verilog-basic-complete-re)
14950 (verilog-beg-of-statement, verilog-indent-re): Support proper
14951 indent of the assert statement at the beginning of a block of text.
14952
14953 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
14954 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
14955 tokens as begins.
14956
14957 2009-11-05 Glenn Morris <rgm@gnu.org>
14958
14959 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
14960 Emacs 19. (Bug#1531)
14961 (byte-compile-fix-header): Update for the above change.
14962 Drop test for epoch::version.
14963
14964 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
14965 * cus-dep.el (custom-make-dependencies):
14966 * finder.el (finder-compile-keywords):
14967 Use autoload-rubric's feature argument.
14968
14969 * calendar/diary-lib.el (top-level): Make load behave more like require.
14970
14971 * vc-git.el (vc-git-stash-map): Move definition before use.
14972
14973 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
14974
14975 * custom.el (custom-declare-group): Purecopy standard-value.
14976 (custom-declare-group): Purecopy custom-prefix.
14977
14978 * international/mule.el (load-with-code-conversion):
14979 Call do-after-load-evaluation unconditionally.
14980
14981 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
14982
14983 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
14984
14985 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
14986
14987 2009-11-04 Glenn Morris <rgm@gnu.org>
14988
14989 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
14990 (byte-compile-compatibility): Remove option.
14991 (byte-compile-close-variables, byte-compile-fix-header)
14992 (byte-compile-insert-header, byte-compile-output-docform)
14993 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
14994 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
14995 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
14996 (byte-compile-insert, byte-compile-defun):
14997 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
14998 (byte-defop-compiler19): Remove.
14999 Without byte-compile-compatibility, the 'emacs19-opcode property is not
15000 used by anything. Replace all calls with byte-defop-compiler.
15001
15002 2009-11-04 Juri Linkov <juri@jurta.org>
15003
15004 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
15005 (menu-bar-options-menu): Don't quote the `prop' arg of
15006 `menu-bar-make-mm-toggle'.
15007
15008 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
15009
15010 * calendar/calendar.el (cal-loaddefs):
15011 * calendar/diary-lib.el (diary-loaddefs):
15012 * calendar/holidays.el (hol-loaddefs):
15013 * eshell/esh-module.el (esh-groups): Load rather than require.
15014
15015 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
15016
15017 * calendar/todo-mode.el (todo-add-category): Don't hardcode
15018 point-min==1.
15019 (todo-top-priorities): Only display-buffer when called interactively.
15020 (todo-item-start): Don't save excursion point.
15021 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
15022 (todo-insert-item-here, todo-file-item, todo-remove-item):
15023 Adjust uses of todo-item-start and todo-item-end.
15024
15025 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
15026 (autoload-rubric): Don't use any more.
15027
15028 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
15029 and only put a prop if it is non-nil.
15030
15031 2009-11-03 Juri Linkov <juri@jurta.org>
15032
15033 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
15034 (menu-bar-options-menu): Fix list quoting (Bug#4429).
15035
15036 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
15037 and "Menu" to make top-level menu item visually one unit (like
15038 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
15039 multi-word menu items). Fix :help string for quit-window.
15040
15041 2009-11-03 Glenn Morris <rgm@gnu.org>
15042
15043 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
15044 (byte-compile-file-form-define-abbrev-table)
15045 (byte-compile-file-form-custom-declare-variable)
15046 (byte-compile-variable-ref, byte-compile-defvar):
15047 Whether or not a warning is enabled should only affect whether we issue
15048 the warning, not whether or not we collect the relevant data.
15049 Eg warnings can be turned on and off throughout the course of a file.
15050
15051 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
15052 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
15053
15054 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
15055
15056 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
15057 * play/mpuz.el (mpuz-create-buffer):
15058 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
15059 (lm-print-y,s,noise, lm-print-w0, lm-init):
15060 * play/gomoku.el (gomoku-prompt-for-move):
15061 * play/fortune.el (fortune-in-buffer):
15062 * play/dissociate.el (dissociated-press):
15063 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
15064 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
15065 * mail/supercite.el (sc-eref-show):
15066 * mail/smtpmail.el (smtpmail-send-it):
15067 * mail/rmailsum.el (rmail-summary-next-labeled-message)
15068 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
15069 (rmail-summary-undelete-many, rmail-summary-rmail-update)
15070 (rmail-summary-goto-msg, rmail-summary-expunge)
15071 (rmail-summary-get-new-mail, rmail-summary-search-backward)
15072 (rmail-summary-add-label, rmail-summary-output-menu)
15073 (rmail-summary-output-body):
15074 * mail/rfc822.el (rfc822-addresses):
15075 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
15076 * mail/mailpost.el (post-mail-send-it):
15077 * mail/hashcash.el (hashcash-generate-payment):
15078 * mail/feedmail.el (feedmail-run-the-queue)
15079 (feedmail-queue-send-edit-prompt-help-first)
15080 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
15081 (feedmail-deduce-address-list):
15082 * eshell/esh-ext.el (eshell-remote-command):
15083 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
15084 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
15085 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
15086 (viper-save-string-in-file, viper-valid-marker):
15087 * emulation/viper-keym.el (viper-toggle-key):
15088 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
15089 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
15090 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
15091 * emulation/viper-cmd.el (viper-exec-form-in-vi)
15092 (viper-exec-form-in-emacs, viper-brac-function):
15093 * emulation/viper.el (viper-delocalize-var):
15094 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
15095 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
15096 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
15097 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
15098 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
15099 * emulation/edt.el (edt-electric-helpify):
15100 * emulation/cua-rect.el (cua--rectangle-aux-replace):
15101 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
15102 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
15103 (cua-indent-to-global-mark-column):
15104 * calendar/diary-lib.el (calendar-mark-1):
15105 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
15106 Use with-current-buffer.
15107 * emulation/viper.el (viper-delocalize-var): Use dolist.
15108
15109 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
15110
15111 * comint.el (comint-replace-by-expanded-history-before-point):
15112 Replace !! with the previous input string literally (Bug#1795).
15113
15114 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
15115
15116 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
15117 to be made up of whitespace.
15118
15119 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
15120
15121 * minibuffer.el (read-file-name): Don't use file dialogs for
15122 remote directories (Bug#99).
15123
15124 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
15125
15126 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
15127
15128 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
15129
15130 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
15131 instead of deleting the window or frame.
15132
15133 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
15134
15135 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
15136 Support face colors.
15137
15138 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
15139 New function. Support face colors (Bug#1168).
15140 (tex-common-initialization): Use it.
15141
15142 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
15143 mode allows it (Bug#1168).
15144
15145 2009-10-31 Juri Linkov <juri@jurta.org>
15146
15147 * facemenu.el (list-colors-display): Don't mark buffer as
15148 modified (Bug#3948).
15149
15150 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
15151
15152 * international/mule-diag.el (list-character-sets-1):
15153 Minor message fix (Bug#3526).
15154
15155 * progmodes/etags.el (etags-list-tags, etags-tags-apropos):
15156 Fix face property (Bug#4834).
15157 (etags-list-tags, etags-tags-apropos-additional)
15158 (etags-tags-apropos, tags-select-tags-table): Add follow-link
15159 property.
15160
15161 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
15162 items.
15163
15164 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
15165
15166 * textmodes/two-column.el (2C-split):
15167 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
15168 * textmodes/tex-mode.el (tex-set-buffer-directory):
15169 * textmodes/spell.el (spell-region, spell-string):
15170 * textmodes/reftex.el (reftex-erase-buffer):
15171 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
15172 * textmodes/reftex-toc.el (reftex-toc-promote-action):
15173 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
15174 (reftex-select-item):
15175 * textmodes/reftex-ref.el (reftex-label-info-update)
15176 (reftex-offer-label-menu):
15177 * textmodes/reftex-index.el (reftex-index-change-entry)
15178 (reftex-index-phrases-info):
15179 * textmodes/reftex-global.el (reftex-create-tags-file)
15180 (reftex-save-all-document-buffers, reftex-ensure-write-access):
15181 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
15182 (reftex-view-crossref-from-bibtex):
15183 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
15184 (reftex-extract-bib-entries-from-thebibliography)
15185 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
15186 * textmodes/refbib.el (r2b-capitalize-title):
15187 (r2b-convert-buffer, r2b-help):
15188 * textmodes/page-ext.el (pages-directory)
15189 (pages-directory-goto-with-mouse):
15190 * textmodes/bibtex.el (bibtex-validate-globally):
15191 * textmodes/bib-mode.el (bib-capitalize-title):
15192 * textmodes/artist.el (artist-clear-buffer, artist-system):
15193 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
15194 (local-set-scheme-interaction-buffer, xscheme-process-filter)
15195 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
15196 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
15197 (xscheme-send-control-g-interrupt, xscheme-start-process)
15198 (xscheme-process-sentinel, xscheme-cd):
15199 * progmodes/verilog-mode.el (verilog-read-always-signals)
15200 (verilog-set-define, verilog-getopt-file)
15201 (verilog-module-inside-filename-p):
15202 * progmodes/sh-script.el:
15203 * progmodes/python.el (python-pdbtrack-get-source-buffer)
15204 (python-pdbtrack-grub-for-buffer, python-execute-file):
15205 * progmodes/octave-inf.el (inferior-octave):
15206 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
15207 (idlwave-shell-compile-helper-routines, idlwave-set-local)
15208 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
15209 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
15210 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
15211 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
15212 (idlwave-shell-filter, idlwave-shell-examine-highlight)
15213 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
15214 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
15215 (idlwave-shell-examine-display, idlwave-shell-run-region)
15216 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
15217 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
15218 * progmodes/idlw-help.el (idlwave-help-get-special-help)
15219 (idlwave-help-get-help-buffer):
15220 * progmodes/gud.el (gud-basic-call, gud-find-class)
15221 (gud-tooltip-activate-mouse-motions-if-enabled):
15222 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
15223 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
15224 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
15225 (ebrowse-tags-next-file):
15226 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
15227 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
15228 (ebnf-eps-finish-and-write):
15229 * progmodes/cpp.el (cpp-edit-save):
15230 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
15231 * progmodes/cc-defs.el (c-emacs-features):
15232 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
15233 (antlr-directory-dependencies):
15234 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
15235 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
15236 (ada-find-any-references, ada-make-filename-from-adaname)
15237 (ada-make-body-gnatstub):
15238 * obsolete/rnews.el (news-list-news-groups):
15239 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
15240 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
15241 * net/rcirc.el (rcirc-debug):
15242 * net/newst-treeview.el (newsticker--treeview-list-add-item)
15243 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
15244 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
15245 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
15246 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
15247 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
15248 (newsticker--treeview-list-clear-highlight)
15249 (newsticker--treeview-list-update-highlight)
15250 (newsticker--treeview-list-highlight-start)
15251 (newsticker--treeview-tree-update-highlight)
15252 (newsticker--treeview-get-selected-item)
15253 (newsticker-treeview-mark-list-items-old)
15254 (newsticker--treeview-set-current-node):
15255 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
15256 * net/newst-backend.el (newsticker--get-news-by-funcall)
15257 (newsticker--get-news-by-wget, newsticker--image-get)
15258 (newsticker--image-sentinel):
15259 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
15260 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
15261 (eudc-ph-close-session):
15262 * net/eudc.el (eudc-save-options):
15263 * language/thai-word.el (thai-update-word-table):
15264 * language/japan-util.el (japanese-string-conversion):
15265 * international/titdic-cnv.el (tsang-quick-converter)
15266 (ziranma-converter, ctlau-converter):
15267 * international/mule-cmds.el (describe-language-environment):
15268 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
15269 (skkdic-convert-postfix, skkdic-convert-prefix):
15270 (skkdic-convert-okuri-nasi, skkdic-convert):
15271 * emacs-lisp/re-builder.el (reb-update-overlays):
15272 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
15273 * emacs-lisp/gulp.el (gulp-send-requests):
15274 * emacs-lisp/find-gc.el (trace-call-tree):
15275 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
15276 (eieio-describe-generic):
15277 * emacs-lisp/eieio-base.el (eieio-persistent-read):
15278 * emacs-lisp/edebug.el (edebug-outside-excursion):
15279 * emacs-lisp/debug.el (debugger-make-xrefs):
15280 * emacs-lisp/cust-print.el (custom-prin1-to-string):
15281 * emacs-lisp/chart.el (chart-new-buffer):
15282 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
15283 Use with-current-buffer.
15284 * textmodes/artist.el (artist-system): Don't call
15285 copy-sequence on a fresh string.
15286 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
15287
15288 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
15289
15290 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
15291 is no item to edit. (Bug#4820)
15292 (todo-top-priorities): Restore point and restore narrowing in Todo
15293 buffer. (Bug#4820)
15294
15295 2009-10-31 Glenn Morris <rgm@gnu.org>
15296
15297 * net/ange-ftp.el (top-level): Don't require dired when compiling.
15298 (comint-last-output-start, comint-last-input-start)
15299 (comint-last-input-end): Don't defvar when compiling.
15300 (ange-ftp-process-file): Use bound-and-true-p.
15301
15302 * pcmpl-rpm.el (top-level): Move provide statement to end.
15303 (pcmpl-rpm): Remove unused custom group.
15304
15305 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
15306
15307 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
15308
15309 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
15310 (byte-compile-warnings): Add `constants' as an option.
15311 (byte-compile-callargs-warn, byte-compile-arglist-warn)
15312 (display-call-tree): Update for byte-compile-fdefinition possibly
15313 returning `(macro lambda ...)'. (Bug#4778)
15314 (byte-compile-variable-ref, byte-compile-setq-default):
15315 Respect `constants' member of byte-compile-warnings.
15316
15317 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
15318
15319 * vc-bzr.el (vc-bzr-revision-keywords): New var.
15320 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
15321 to "submit:".
15322
15323 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
15324
15325 * textmodes/ispell.el (ispell-skip-region-alist):
15326 * international/mule-conf.el (eight-bit):
15327 * international/fontset.el (font-encoding-alist):
15328 * startup.el (pure-space-overflow-message):
15329 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
15330 * paths.el (gnus-nntp-service, rmail-spool-directory)
15331 (term-file-prefix):
15332 * files.el (save-some-buffers-action-alist):
15333 * cmuscheme.el (same-window-buffer-names):
15334 * ielm.el (same-window-buffer-names):
15335 * shell.el (same-window-buffer-names):
15336 * mail/sendmail.el (same-window-buffer-names):
15337 * progmodes/inf-lisp.el (same-window-buffer-names):
15338 * bindings.el (mode-line-client)
15339 (mode-line-column-line-number-mode-map):
15340 * language/tibetan.el (tibetan-precomposition-rule-regexp)
15341 (tibetan-precomposed-regexp): Purecopy string arguments.
15342
15343 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
15344
15345 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
15346 (calcDigit-nondigit):
15347 * calc/calc-yank.el (calc-copy-to-buffer):
15348 * calc/calc-units.el (calc-invalidate-units-table):
15349 * calc/calc-trail.el (calc-trail-yank):
15350 * calc/calc-store.el (calc-insert-variables):
15351 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
15352 * calc/calc-prog.el (calc-read-parse-table):
15353 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
15354 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
15355 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
15356 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
15357 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
15358 (calc-graph-name, calc-graph-find-command, calc-graph-view)
15359 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
15360 * calc/calc-ext.el (calc-realign):
15361 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
15362 (calc-embedded-finish-edit, calc-embedded-make-info)
15363 (calc-embedded-finish-command, calc-embedded-stack-change):
15364 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
15365
15366 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
15367 shell-dynamic-complete-filename in preference to
15368 comint-dynamic-complete-filename.
15369
15370 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
15371 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
15372 Don't consider whether the display supports colors.
15373 (bookmark-import-new-list): Use dolist.
15374 (bookmark-bmenu-mode-map): Move initialization into declaration.
15375 (bookmark-bmenu-list): Use dolist, simplify.
15376 (bookmark-show-all-annotations): Use save-selected-window and dolist.
15377 (menu-bar-final-items): Use push.
15378
15379 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
15380
15381 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
15382 it works on remote files.
15383 (vc-hg-diff): Don't pass any `--cwd' argument.
15384
15385 2009-10-27 Kevin Ryde <user42@zip.com.au>
15386
15387 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
15388 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
15389 (Further to Bug#3921).
15390
15391 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
15392
15393 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
15394 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
15395 calling `tramp-imap-put-file'. Add file size to the call.
15396 (tramp-imap-get-file-entries): Compute also user name, file size,
15397 and date.
15398 (tramp-imap-handle-insert-directory): Insert uid and gid.
15399 (tramp-imap-handle-file-attributes): Transform uid and gid
15400 according to `id-format'.
15401 (tramp-imap-put-file): New optional parameter SIZE. Encode file
15402 size in header X-Size.
15403
15404 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
15405
15406 * simple.el (transpose-subr): Give clearer error when the mark
15407 is not set. (Bug#4807)
15408
15409 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
15410
15411 * net/tramp.el (tramp-perl-file-truename): New defconst.
15412 Perl code contributed by yary <not.com@gmail.com> (tiny change).
15413 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
15414 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
15415 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
15416
15417 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
15418 Ignore `dired-call-process'.
15419 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
15420
15421 2009-10-26 Julian Scheid <julians37@gmail.com>
15422
15423 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
15424 (tramp-get-remote-readlink): New defun.
15425 (tramp-handle-file-truename): Use it.
15426 (tramp-handle-file-exists-p): Check file-attributes cache, assume
15427 file exists if cache value present.
15428 (tramp-check-cached-permissions): New defun.
15429 (tramp-handle-file-readable-p): Use it.
15430 (tramp-handle-file-writable-p): Likewise.
15431 (tramp-handle-file-executable-p): Likewise.
15432 (tramp-handle-file-name-all-completions): Try using Perl to get
15433 partial completions. When perl not available, combine `cd' and
15434 `ls' into single remote operation and use shell expansion to get
15435 partial remote directory contents. Set `file-exists-p' cache for
15436 directory and any files returned by ls. Change cache handling to
15437 support partial directory contents. Use error message emitted by
15438 remote `cd' or Perl code for local tramp-error.
15439 (tramp-do-copy-or-rename-file-directly): Avoid separate
15440 tramp-send-command-and-check call.
15441 (tramp-handle-process-file): Merge three remote ops into one.
15442 Do not flush all caches when `process-file-side-effects' is set.
15443 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
15444 file-attributes shows uid/gid to be set already.
15445
15446 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
15447
15448 * textmodes/tex-mode.el (tex-dvi-view-command)
15449 (tex-show-queue-command, tex-open-quote):
15450 * progmodes/ruby-mode.el (auto-mode-alist)
15451 (interpreter-mode-alist): Purecopy strings.
15452
15453 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
15454
15455 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
15456 string for the hook, keymap and abbrev table.
15457
15458 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
15459
15460 * x-dnd.el (x-dnd-xdnd-to-action):
15461 * startup.el (fancy-startup-text, fancy-about-text): Change to
15462 defconst from defvar.
15463
15464 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
15465
15466 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
15467 Purecopy initialization strings.
15468
15469 * mail/sendmail.el (mail-header-separator)
15470 (mail-personal-alias-file):
15471 * mail/rmail.el (rmail-default-dont-reply-to-names)
15472 (rmail-ignored-headers, rmail-retry-ignored-headers)
15473 (rmail-highlighted-headers, rmail-secondary-file-directory)
15474 (rmail-secondary-file-regexp):
15475 * files.el (null-device, file-name-invalid-regexp)
15476 (locate-dominating-stop-dir-regexp)
15477 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
15478 (interpreter-mode-alist): Use mapcar instead of mapc.
15479
15480 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
15481
15482 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
15483 (completion-ignored-extensions):
15484 (debug-ignored-errors): Purecopy strings.
15485
15486 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
15487
15488 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
15489 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
15490 (pcomplete--here): Use push.
15491
15492 * subr.el (all-completions): Declare the 4th arg obsolete.
15493
15494 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
15495
15496 * pcomplete.el (pcomplete-unquote-argument-function): New var.
15497 (pcomplete-unquote-argument): New function.
15498 (pcomplete--common-suffix): Always pay attention to case.
15499 (pcomplete--table-subvert): Quote and unquote the text.
15500 (pcomplete--common-quoted-suffix): New function.
15501 (pcomplete-std-complete): Use it and pcomplete-begin.
15502
15503 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
15504 we're inside a dedicated or minibuffer window.
15505
15506 2009-10-24 Karl Fogel <kfogel@red-bean.com>
15507
15508 * bookmark.el: Update documentation, especially documentation
15509 of `bookmark-alist' and of the bookmark file format.
15510 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
15511
15512 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
15513
15514 * mail/emacsbug.el (report-emacs-bug): Clarify that the
15515 keybindings apply to the mail buffer (Bug#4003). Shrink help
15516 window to buffer.
15517
15518 * whitespace.el (whitespace-mode, whitespace-newline-mode)
15519 (global-whitespace-mode, global-whitespace-newline-mode)
15520 (whitespace-toggle-options, global-whitespace-toggle-options):
15521 Doc fix (Bug#3660).
15522
15523 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
15524 of xmltok-start before the end tag was inserted (Bug#2840).
15525
15526 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
15527 patterns that are preceded by an open-paren (Bug#1320).
15528
15529 2009-10-24 Sven Joachim <svenjoac@gmx.de>
15530
15531 * files.el (delete-directory): Delete symlinks to directories with
15532 delete-file (Bug#4739).
15533
15534 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
15535
15536 * vc.el (vc-backend-for-registration): Rename from
15537 vc-get-backend-for-registration. Update callers.
15538
15539 * international/mule-cmds.el (set-language-info-alist):
15540 Purecopy lang-env.
15541 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
15542 (charset): Purecopy the name.
15543 (define-char-code-property): Purecopy string arguments.
15544
15545 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
15546 Purecopy string arguments.
15547
15548 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
15549 * ediff-hook.el (menu-bar-ediff-menu):
15550 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
15551 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
15552
15553 2009-10-24 Glenn Morris <rgm@gnu.org>
15554
15555 * comint.el (comint-dynamic-list-completions):
15556 * term.el (term-dynamic-list-completions): Use choose-completion rather
15557 than obsolete alias mouse-choose-completion.
15558
15559 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
15560 file-cache-choose-completion.
15561 (file-cache-choose-completion): Handle an optional event argument.
15562 (file-cache-mouse-choose-completion): Make it an obsolete alias.
15563
15564 * progmodes/octave-mod.el (octave-complete-symbol):
15565 Use choose-completion if mouse-choose-completion is ever removed.
15566
15567 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
15568 use.
15569
15570 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
15571 compiler.
15572
15573 * vc-hooks.el (vc-responsible-backend): Fix declaration.
15574
15575 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
15576
15577 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
15578 Ignore `pred' now that we receive one.
15579 Handle test-completion specially.
15580
15581 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
15582
15583 * vc.el (vc-responsible-backend): Throw an error if not backend is
15584 found. Remove the REGISTER argument. Move the code dealing with
15585 REGISTER ...
15586 (vc-get-backend-for-registration): ... here. New function.
15587 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
15588 of vc-responsible-backend, pass the file name instead of the
15589 directory name.
15590
15591 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
15592
15593 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
15594 New funs.
15595 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
15596 (pcomplete-comint-setup): Don't modify a global var via
15597 accidental side-effects.
15598 (pcomplete-shell-setup): Adjust call accordingly.
15599 (pcomplete-parse-comint-arguments): Use push.
15600
15601 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
15602
15603 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
15604 Allow uncapitalized info node names (Bug#3921).
15605
15606 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
15607 to the DEBUG file (Bug#3781).
15608
15609 2009-10-23 Jari Aalto <jari.aalto@cante.net>
15610
15611 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
15612 dictionary entry (Bug#4579).
15613
15614 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
15615
15616 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
15617 from `rfn-eshadow-update-overlay-hook' when unloading.
15618 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
15619 "rsyncc". Adjust doc string.
15620 (tramp-temp-buffer-file-name): New buffer-local defvar.
15621 (tramp-handle-insert-file-contents, tramp-handle-write-region):
15622 Keep temporary file when indicated by method ("rsync" and
15623 "rsyncc").
15624 (tramp-handle-write-region): Handle APPEND.
15625 (tramp-delete-temp-file-function): New defun. Added to
15626 `kill-buffer-hook'.
15627
15628 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
15629
15630 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
15631
15632 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
15633
15634 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
15635 (color-name-rgb-alist, tty-standard-colors)
15636 (tty-color-mode-alist): Change to defconst.
15637
15638 * simple.el (mark-inactive): Purecopy message.
15639
15640 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
15641 (global-map, yank-menu):
15642 * textmodes/ispell.el (ispell-menu-map):
15643 * net/eudc.el (eudc-tools-menu):
15644 * international/mule-cmds.el (describe-language-environment-map)
15645 (setup-language-environment-map, set-coding-system-map)
15646 (mule-menu-keymap):
15647 * vc-hooks.el (vc-menu-entry, vc-menu-map):
15648 * replace.el (occur-mode-map):
15649 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
15650
15651 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
15652
15653 * calc/calc.el (math-read-number, math-read-number-simple):
15654 Use `save-match-data'.
15655
15656 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
15657
15658 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
15659 rather than fiddling with global-map bindings, since it should only
15660 affect per-terminal settings.
15661 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
15662
15663 * minibuffer.el (completion-table-with-terminator): Allow to specify
15664 the terminator-regexp.
15665
15666 * simple.el (switch-to-completions): Look for *Completions* in other
15667 frames as well.
15668
15669 * pcomplete.el: Allow the use of completion-tables.
15670 (pcomplete-std-complete): New command.
15671 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
15672 (pcomplete--here): Use a function for `form' rather than an expression,
15673 so it can be byte-compiled.
15674 (pcomplete-here, pcomplete-here*): Adjust accordingly.
15675 Add edebug declaration.
15676 (pcomplete-show-completions): Remove unused var `curbuf'.
15677 (pcomplete-do-complete, pcomplete-stub):
15678 Don't assume `completions' is a list of strings any more.
15679
15680 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
15681
15682 * find-dired.el (find-name-arg): Fix typo in docstring.
15683
15684 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
15685
15686 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
15687 (pcmpl-linux-fs-types): Same, and update to new modules layout.
15688
15689 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
15690 pcomplete-entries.
15691
15692 * comint.el (comint-read-input-ring, comint-write-input-ring)
15693 (comint-substitute-in-file-name)
15694 (comint-dynamic-complete-as-filename)
15695 (comint-dynamic-simple-complete)
15696 (comint-dynamic-list-filename-completions)
15697 (comint-dynamic-list-completions)
15698 (comint-redirect-results-list-from-process): Minor simplifications.
15699
15700 2009-10-21 Kevin Ryde <user42@zip.com.au>
15701
15702 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
15703 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
15704 the first form. And insert a blank line after ";;; Code" since
15705 that's usual style. (Bug#4612)
15706
15707 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
15708
15709 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
15710
15711 * minibuffer.el (completion-table-with-terminator): Properly implement
15712 boundaries, in case `terminator' appears in the suffix.
15713 (completion--embedded-envvar-table): Don't return boundaries if
15714 there's no valid completion. Simplify.
15715 (completion-file-name-table): New completion table extracted from
15716 completion--file-name-table.
15717 (completion--file-name-table): Use it.
15718 (read-file-name-predicate): Declare obsolete.
15719 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
15720 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
15721 completion-file-name-table, and use the `pred' argument.
15722 * files.el (locate-file-completion-table): Use the `pred' arg rather
15723 than read-file-name-predicate.
15724 (abbreviate-file-name): Use \` rather than ^ for BOS.
15725
15726 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
15727
15728 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
15729 vc-responsible-backend to register, it causes problems.
15730
15731 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
15732
15733 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
15734
15735 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
15736
15737 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
15738 (tramp-smb-handle-file-attributes): Use it.
15739 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
15740 (tramp-smb-handle-insert-directory): Use `mapc' rather than
15741 `mapcar'. Use `tramp-smb-get-stat-capability'.
15742 Add `dired-filename' text properties.
15743 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
15744 (tramp-smb-maybe-open-connection): Simplify check for smbclient
15745 version.
15746
15747 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
15748
15749 * subr.el (read-key-delay): Reduce to 0.01.
15750 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
15751 (bug#4751).
15752
15753 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
15754
15755 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
15756
15757 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
15758 (Info-menu): Remove unused vars `last' and `completions'.
15759 (Info-index-nodes): Remove unused var `node'.
15760
15761 * info.el (Info-complete-menu-item): Use complete-with-action.
15762
15763 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
15764
15765 Make vc-annotate work through copies and renames.
15766 * vc-annotate.el (vc-annotate-extract-revision-at-line):
15767 Return the file name too.
15768 (vc-annotate-revision-at-line)
15769 (vc-annotate-find-revision-at-line)
15770 (vc-annotate-revision-previous-to-line)
15771 (vc-annotate-show-log-revision-at-line): Update to get the file
15772 name from vc-annotate-extract-revision-at-line.
15773 (vc-annotate-show-diff-revision-at-line-internal): Change the
15774 argument to mean whether to show a file diff or not. Get the file
15775 name from vc-annotate-extract-revision-at-line.
15776 (vc-annotate-show-diff-revision-at-line):
15777 Update vc-annotate-show-diff-revision-at-line call.
15778 (vc-annotate-warp-revision): Add an optional file argument.
15779
15780 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
15781 (vc-git-annotate-extract-revision-at-line): Also return the file
15782 name if found.
15783
15784 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
15785 command. Remove unused code.
15786 (vc-hg-annotate-re): Update to match --follow output.
15787 (vc-hg-annotate-extract-revision-at-line): Also return the file
15788 name if found.
15789
15790 * vc.el: Update annotate-extract-revision-at-line documentation.
15791
15792 2009-10-18 Kevin Ryde <user42@zip.com.au>
15793
15794 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
15795 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
15796
15797 * net/browse-url.el (browse-url): Identify alist with "consp and
15798 not functionp" and let all other things go down the `apply' leg,
15799 as suggested by Stefan. (Further to bug#4531.)
15800
15801 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
15802
15803 * minibuffer.el (read-file-name): Check for repeat before putting
15804 a default argument in file-name-history (Bug#4657).
15805
15806 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
15807 read syntax (Bug#4737).
15808
15809 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
15810
15811 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
15812
15813 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
15814 (html-tag-alist, html-tag-help): Add descriptions for undocumented
15815 entries and make note of obsolete tags.
15816
15817 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
15818
15819 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
15820
15821 2009-10-18 Glenn Morris <rgm@gnu.org>
15822
15823 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
15824 grep, so that binary files (eg international/uni-bidi.el) can match.
15825 Remove test for "UnicodeData" files, since it is hopefully unnecessary
15826 now, and in any case the file header format has changed.
15827
15828 2009-10-17 Glenn Morris <rgm@gnu.org>
15829
15830 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
15831 (flyspell-get-word, flyspell-large-region)
15832 (flyspell-auto-correct-previous-word): Doc/error message fixes.
15833
15834 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
15835
15836 * Makefile.in (ELCFILES): Add ede/shell.
15837
15838 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
15839
15840 * term/common-win.el (x-colors): Purecopy it.
15841
15842 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
15843
15844 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
15845 permissive for when the buffer is empty.
15846 (tar-header-block-tokenize): Decode the username and groupname.
15847 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
15848
15849 2009-10-17 Eric Ludlam <zappo@gnu.org>
15850
15851 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
15852 contains multibyte characters, choose first applicable coding
15853 system automatically.
15854
15855 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
15856
15857 * international/mule-cmds.el (select-safe-coding-system): If the file
15858 has a coding cookie, use it regardless of any other setting (bug#4712).
15859
15860 2009-10-17 Glenn Morris <rgm@gnu.org>
15861
15862 * foldout.el (foldout-mouse-swallow-events):
15863 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
15864
15865 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
15866 (dired-keep-marker-copy, dired-keep-marker-hardlink)
15867 (dired-keep-marker-symlink, dired-dwim-target)
15868 (dired-copy-preserve-time): Do not autoload these defcustoms.
15869
15870 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
15871 messages from messing up the file coding. (Bug#4623)
15872
15873 2009-10-17 Jari Aalto <jari.aalto@cante.net>
15874
15875 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
15876 if no match is found for the current dictionary. (Bug#4578)
15877
15878 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
15879 optional, since that is how it is documented, and this is often called
15880 with a nil argument. (Bug#4577)
15881 (flyspell-external-point-words, flyspell-auto-correct-word)
15882 (flyspell-correct-word-before-point, flyspell-word-search-forward)
15883 (flyspell-word-search-backward): Remove nil argument in calls to
15884 flyspell-get-word, since it is not needed now.
15885
15886 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
15887
15888 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
15889
15890 2009-10-16 Glenn Morris <rgm@gnu.org>
15891
15892 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
15893
15894 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
15895
15896 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
15897 (ange-ftp-file-size): New function.
15898 (ange-ftp-file-attributes): Use it.
15899
15900 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
15901
15902 * net/tramp-smb.el (tramp-smb-version): New defvar.
15903 (tramp-smb-maybe-open-connection): Use it, in order to avoid
15904 repeated checks.
15905
15906 2009-10-16 Glenn Morris <rgm@gnu.org>
15907
15908 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
15909 Maybe copy some custom properties from old to new name. (Bug#4706)
15910
15911 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
15912
15913 * subr.el (error, sit-for, start-process-shell-command)
15914 (start-file-process-shell-command): Set the calling convention
15915 after the function definition.
15916
15917 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
15918
15919 * subr.el (error, sit-for, start-process-shell-command)
15920 (start-file-process-shell-command): Use the new
15921 set-advertised-calling-convention feature.
15922
15923 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
15924
15925 * international/ucs-normalize.el (ucs-normalize-version):
15926 Change to 1.2.
15927 (check-range): Adjust for Unicode 5.2.
15928
15929 2009-10-15 Juri Linkov <juri@jurta.org>
15930
15931 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
15932 to the `menu-item' format.
15933
15934 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
15935
15936 * net/tramp.el (tramp-replace-environment-variables): Do not fail
15937 if the environment variable does not exist.
15938
15939 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
15940 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
15941 parameter.
15942 (tramp-smb-handle-add-name-to-file)
15943 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
15944 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
15945 (tramp-smb-handle-file-attributes)
15946 (tramp-smb-do-file-attributes-with-stat)
15947 (tramp-smb-handle-file-local-copy)
15948 (tramp-smb-handle-insert-directory)
15949 (tramp-smb-handle-make-directory)
15950 (tramp-smb-handle-make-directory-internal)
15951 (tramp-smb-handle-make-symbolic-link)
15952 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
15953 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
15954 (tramp-smb-maybe-open-connection): Apply the changed parameters.
15955 (tramp-smb-read-file-entry): Read Disk names in compressed format.
15956 Handle long file names.
15957 (tramp-smb-get-cifs-capabilities): Check, whether the connection
15958 process is running.
15959 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
15960 Read share names with "-g" option.
15961
15962 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
15963
15964 * net/rcirc.el (rcirc-view-log-file): New command.
15965 (rcirc-track-minor-mode-map): Remove C-c ` binding.
15966 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
15967 specified.
15968
15969 2009-10-15 Glenn Morris <rgm@gnu.org>
15970
15971 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
15972 from the second command-line argument.
15973 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
15974 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
15975 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
15976 w32-batch-update-autoloads.
15977 * emacs-lisp/autoload.el (autoload-make-program): New variable.
15978 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
15979
15980 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
15981 the headers cannot be located. Simplify, subtracting superflous
15982 save-excursions.
15983
15984 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
15985
15986 Replace completion-base-size by completion-base-position to fix bugs
15987 such as (bug#4699).
15988 * simple.el (completion-base-position): New var.
15989 (completion-base-size): Mark as obsolete.
15990 (choose-completion): Make it work for mouse events as well.
15991 Pass the new base-position to choose-completion-string.
15992 (choose-completion-guess-base-position): New function, extracted from
15993 choose-completion-delete-max-match.
15994 (choose-completion-delete-max-match): Use it. Make obsolete.
15995 (choose-completion-string): Use the new base-position info.
15996 (completion-root-regexp): Delete.
15997 (completion-setup-function): Preserve completion-base-position.
15998 Eliminate obsolete base-size manipulation.
15999 * minibuffer.el (display-completion-list): Don't mess with base-size.
16000 (minibuffer-completion-help): Set completion-base-position instead.
16001 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
16002 choose-completion.
16003 * textmodes/bibtex.el (bibtex-complete):
16004 * emacs-lisp/crm.el (crm--choose-completion-string):
16005 Adjust to new calling convention.
16006 * complete.el (partial-completion-mode): Use minibufferp to avoid
16007 bumping into incompatible change to choose-completion-string-functions.
16008 * ido.el (ido-choose-completion-string): Make its calling convention
16009 more permissive.
16010 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
16011 base-size manipulation.
16012 (comint-dynamic-list-input-ring): Use dotimes and push.
16013 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
16014 fundamental-mode. Use `or'.
16015
16016 2009-10-14 Juri Linkov <juri@jurta.org>
16017
16018 * misearch.el (multi-isearch-next-buffer-from-list)
16019 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
16020
16021 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
16022
16023 * Makefile.in (compile-onefile): Load `bytecomp' rather than
16024 `bytecomp.el'.
16025
16026 * minibuffer.el (completion-pcm--merge-completions): Make sure the
16027 string we return is all made up of text from the completions rather
16028 than part from the completions and part from the input (bug#4219).
16029
16030 * ido.el (ido-everywhere): Use define-minor-mode.
16031
16032 * buff-menu.el (list-buffers, ctl-x-map):
16033 Mark the entry points with ;;;###autoload cookies.
16034
16035 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
16036
16037 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
16038 correctly in the detached head case.
16039 (vc-git-print-log): Remove unused binding.
16040
16041 * vc.el (vc-responsible-backend): When a directory is passed for
16042 for registration create a VC repository if no backend is
16043 responsible for the directory argument.
16044 (vc-deduce-fileset): Tell vc-responsible-backend to register.
16045
16046 * vc.el: Move comments about RCS and SCCS ...
16047 * vc-rcs.el:
16048 * vc-sccs.el: ... here, respectively.
16049
16050 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
16051
16052 * minibuffer.el (completion--file-name-table): Return nil if there's
16053 no file completion, even if substitute-in-file-name changed
16054 the string (bug#4708).
16055
16056 2009-10-13 Juri Linkov <juri@jurta.org>
16057
16058 * files-x.el (read-file-local-variable-value): Don't filter out
16059 minor modes from mode name completion (bug#4664).
16060
16061 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
16062
16063 * international/mule-cmds.el (ucs-names): Remove exclusion of
16064 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
16065
16066 2009-10-13 Kenichi Handa <handa@m17n.org>
16067
16068 * international/uni-name.el: Regenerated.
16069
16070 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
16071
16072 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
16073 should be automatically buffer-local, but isn't.)
16074
16075 2009-10-12 Sam Steingold <sds@gnu.org>
16076
16077 * progmodes/compile.el (compilation-next-error-function): Fix the
16078 timestamps if the buffer has been visited before.
16079 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
16080 non-anchored patterns, like the perl one (bug#3928).
16081
16082 2009-10-12 Glenn Morris <rgm@gnu.org>
16083
16084 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
16085 Let-bind `size'.
16086
16087 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
16088
16089 * proced.el (proced-unload-function): New function.
16090
16091 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
16092 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
16093 Doc fix.
16094
16095 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
16096
16097 2009-10-11 Juri Linkov <juri@jurta.org>
16098
16099 * files-x.el (read-file-local-variable-value):
16100 Provide default value only for bound variables (bug#4664).
16101
16102 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
16103
16104 * net/tramp.el (tramp-local-host-p): Function shall return nil for
16105 connection methods like smb.
16106
16107 * net/tramp-cache.el (tramp-flush-connection-property): The hash
16108 can be empty.
16109
16110 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
16111 (tramp-smb-file-name-handler-alist): Add handlers for
16112 `add-name-to-file', `make-symbolic-link'.
16113 (tramp-smb-handle-add-name-to-file)
16114 (tramp-smb-do-file-attributes-with-stat)
16115 (tramp-smb-handle-make-symbolic-link)
16116 (tramp-smb-get-cifs-capabilities): New defuns.
16117 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
16118 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
16119 (tramp-smb-handle-file-local-copy)
16120 (tramp-smb-handle-make-directory-internal)
16121 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
16122 The file name syntax depends on cifs capabilities.
16123 (tramp-smb-handle-file-attributes):
16124 Call `tramp-smb-do-file-attributes-with-stat' if possible.
16125 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
16126 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
16127
16128 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
16129
16130 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
16131 (eieio-defclass): Apply deftype handler and setf-method properties
16132 directly.
16133 (eieio-add-new-slot): Avoid union function from cl library.
16134 (eieio--typep): New function.
16135 (eieio-perform-slot-validation): Use it.
16136
16137 2009-10-10 Karl Fogel <kfogel@red-bean.com>
16138
16139 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
16140 Update documentation to refer to the variables documented in r1.135.
16141 (Bug#4188)
16142
16143 2009-10-10 Karl Fogel <kfogel@red-bean.com>
16144
16145 * bookmark.el (Info-suffix-list): Remove this unused variable.
16146 (bookmark-current-point): Remove this obsolete variable.
16147 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
16148 Adjust for removal of bookmark-current-point.
16149
16150 (bookmarks-already-loaded, bookmark-current-buffer)
16151 (bookmark-yank-point): Document. (Bug#4188)
16152
16153 2009-10-10 Glenn Morris <rgm@gnu.org>
16154
16155 * frame.el (frame-height): Doc fix.
16156
16157 * calendar/calendar.el (calendar-split-width-threshold): New option.
16158 (calendar-basic-setup): Use calendar-split-width-threshold.
16159
16160 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
16161
16162 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
16163 Ideographic Supplement" range (U+1F200..U+1F2FF).
16164
16165 2009-10-09 Karl Fogel <kfogel@red-bean.com>
16166
16167 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
16168 since the list will have been rebuilt anyway. (Bug#4349)
16169
16170 2009-10-09 Karl Fogel <kfogel@red-bean.com>
16171
16172 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
16173 (bookmark-bmenu-execute-deletions): Don't save here, as
16174 bookmark-delete will now do so if necessary.
16175 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
16176 (Bug#4348)
16177
16178 2009-10-09 Glenn Morris <rgm@gnu.org>
16179
16180 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
16181
16182 2009-10-09 Karl Fogel <kfogel@red-bean.com>
16183
16184 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
16185 (bookmark-jump-other-window): Just invoke bookmark-jump with new
16186 argument now, so the two function's behaviors will match. (Bug#3645)
16187
16188 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
16189
16190 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
16191 (tramp-file-name-real-host, tramp-file-name-port):
16192 Apply `save-match-data'.
16193
16194 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
16195 case both directories are remote.
16196 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
16197 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
16198
16199 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
16200
16201 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
16202
16203 2009-10-07 Glenn Morris <rgm@gnu.org>
16204
16205 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
16206 of concat.
16207
16208 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
16209
16210 * files-x.el (read-file-local-variable): Include some
16211 non-user-variables in the completion table (bug#4664).
16212
16213 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
16214
16215 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
16216 message.
16217
16218 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
16219 (tramp-smb-file-name-handler-alist): Add handler for
16220 `copy-directory', `expand-file-name', `set-file-modes'.
16221 (tramp-smb-handle-copy-directory)
16222 (tramp-smb-handle-expand-file-name)
16223 (tramp-smb-handle-set-file-modes): New defuns.
16224 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
16225 (tramp-smb-handle-file-attributes): Simplify check for retrieving
16226 entry.
16227 (tramp-smb-handle-insert-directory): Don't flush the cache.
16228 (tramp-smb-maybe-open-connection): Check for samba client and
16229 server versions.
16230
16231 2009-10-07 Eli Zaretskii <eliz@gnu.org>
16232
16233 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
16234 to not error out of search for "^lisp=" fails.
16235
16236 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
16237
16238 * makefile.w32-in (WINS_UPDATES): New macro.
16239 (custom-deps, finder-data, autoloads): Use it.
16240
16241 2009-10-07 Glenn Morris <rgm@gnu.org>
16242
16243 * Makefile.in (autoloads): Revert previous change.
16244 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
16245 the list of preloaded files passed on the command-line, get
16246 it from src/Makefile.
16247
16248 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
16249 show the original buffer rather than a random one.
16250
16251 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
16252
16253 * help.el (describe-no-warranty): Place point in a slightly better
16254 position in the GPLv3 text.
16255
16256 2009-10-06 Sam Steingold <sds@gnu.org>
16257
16258 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
16259 the comm attribute is present before calling regexp-quote.
16260
16261 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
16262
16263 * play/animate.el (animate-string): For good effect, make sure
16264 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
16265
16266 * play/animate.el (animate-sequence, animate-birthday-present):
16267 * misc.el (butterfly): Don't set `indent-tabs-mode'.
16268
16269 2009-10-06 Glenn Morris <rgm@gnu.org>
16270
16271 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
16272
16273 * emacs-lisp/autoload.el (autoload-excludes): New variable.
16274 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
16275 (batch-update-autoloads): Process a string value of autoload-excludes,
16276 set during the build process.
16277 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
16278
16279 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
16280 inside with-parsed... macro so that `v' is defined.
16281
16282 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
16283 * progmodes/fortran.el (fortran-end-of-block)
16284 (fortran-beginning-of-block):
16285 Also push mark in the macro case.
16286
16287 * emerge.el (emerge-show-file-name):
16288 * calc/calc.el (calc-quit):
16289 * calc/calc-misc.el (calc-big-or-small):
16290 * calc/calc-graph.el (calc-graph-view):
16291 * calc/calc-ext.el (calc-reset):
16292 * calendar/calendar.el (calendar-basic-setup):
16293 Use window-full-height-p.
16294
16295 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
16296 header we don't understand, don't insert another. (Bug#4624)
16297 If changing mime charset, insert the new one in the right place.
16298
16299 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
16300
16301 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
16302 (cal-tex-cursor-month): Correctly increment the end date for diary and
16303 holiday listing. (Bug#4626)
16304
16305 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16306
16307 * help-fns.el (describe-function-1): Don't burp if the function is not
16308 a symbol.
16309
16310 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
16311
16312 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
16313 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
16314 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
16315 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
16316
16317 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
16318 (eieio-default-superclass): Reflow docstrings.
16319 (this, class-option-assoc, defclass, eieio-class-un-autoload)
16320 (eieio-unbind-method-implementations, defmethod)
16321 (eieio-validate-slot-value, eieio-validate-class-slot-value)
16322 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
16323 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
16324 (eieio-slot-originating-class-p, eieio-slot-name-index)
16325 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
16326 (constructor, initialize-instance, no-next-method, object-print)
16327 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
16328 Fix typos in docstrings.
16329 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
16330 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
16331 (next-method-p): Doc fixes.
16332 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
16333 Fix typos in error messages.
16334 (eieio-defmethod): Fix typo in description of generic method.
16335
16336 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
16337 (eieio-persistent-save-interactive, slot-missing):
16338 Fix typos in docstrings.
16339 (eieio-instance-inheritor-slot-boundp): Doc fix.
16340
16341 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
16342 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
16343
16344 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
16345 (eieio-custom-object-apply-reset):
16346 Fix typos in docstrings and error messages.
16347
16348 * emacs-lisp/eieio-datadebug.el (data-debug-show):
16349 Fix typo in docstring.
16350
16351 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
16352 (eieio-browse-tree): Doc fix.
16353 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
16354 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
16355 Fix typos in docstrings.
16356
16357 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
16358 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
16359 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
16360 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
16361 Reflow docstrings.
16362
16363 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
16364
16365 * vc-hg.el (log-view-vc-backend): Declare for compiler.
16366 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
16367 Set log-view-vc-backend so that diff can work.
16368
16369 * log-view.el (log-view-diff): Use vc-diff-internal instead of
16370 vc-version-diff.
16371 (vc-diff-internal): Autoload this instead of vc-version-diff.
16372
16373 2009-10-05 Eli Zaretskii <eliz@gnu.org>
16374
16375 * simple.el (eval-expression): Doc fix.
16376
16377 * progmodes/cwarn.el (cwarn-mode): Doc fix.
16378
16379 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
16380
16381 * files.el (directory-files-no-dot-files-regexp): New defconst.
16382 (delete-directory): Use it.
16383 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
16384
16385 * net/tramp.el (tramp-verbose): Fix docstring.
16386 (tramp-methods): Add recursive option to `tramp-copy-args'.
16387 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
16388 "scp1_old", "scp2_old", "rsync", "rsyncc".
16389 (tramp-default-method): Check also for `auth-source-user-or-password'.
16390 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
16391 Add handler for `copy-directory'.
16392 (tramp-handle-copy-directory): New defun.
16393 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
16394 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
16395 Optimize sent command.
16396
16397 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16398
16399 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
16400 window if necessary.
16401
16402 * calendar/calendar.el (calendar-basic-setup): Don't call
16403 switch-to-buffer in a dedicated window.
16404
16405 2009-10-05 Karl Fogel <kfogel@red-bean.com>
16406
16407 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
16408 don't do anything related to relocating, just return nil.
16409 (bookmark-error-no-filename): New error.
16410 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
16411 bookmark has no file. Don't even attempt to handle things that
16412 are not files; the whole point of custom handlers is to keep that
16413 knowledge elsewhere anyway. Tighten some comments.
16414 (bookmark-file-or-variation-thereof): Remove now-unused function.
16415 (bookmark-location): Doc string fix.
16416 (Bug#4250)
16417
16418 2009-10-04 Karl Fogel <kfogel@red-bean.com>
16419
16420 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
16421 don't use a file dialog, because they usually don't know how to read
16422 a directory target from the user. (Bug#4230)
16423 Also, make sure the prompt can display directories as well as files.
16424
16425 2009-10-04 Karl Fogel <kfogel@red-bean.com>
16426
16427 * bookmark.el (bookmark-set, bookmark-buffer-name):
16428 Improve doc strings. (Bug#1193)
16429
16430 2009-10-04 Karl Fogel <kfogel@red-bean.com>
16431
16432 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
16433 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
16434 (bookmark-get-annotation, bookmark-set-annotation)
16435 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
16436 (bookmark-set-position, bookmark-get-front-context-string)
16437 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
16438 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
16439 (bookmark-jump-other-window, bookmark-handle-bookmark)
16440 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
16441 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
16442 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
16443 Improve doc strings to say whether bookmark can be a string or
16444 a record or both, and make other consistency and clarity fixes.
16445 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
16446 (bookmark-default-annotation-text, bookmark-yank-word)
16447 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
16448 (bookmark-import-new-list, bookmark-maybe-rename)
16449 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
16450 (bookmark-bmenu-bookmark): Give these doc strings.
16451 (bookmark-bmenu-check-position): Give this a doc string, but also
16452 add a FIXME comment about how the function may be pointless.
16453 (bookmark-default-handler): Rework doc string and change a
16454 parameter name, to clarify that this takes a bookmark record
16455 not a bookmark name.
16456 (bookmark-set): Change a parameter name to indicate its meaning,
16457 and improve the doc string a bit.
16458 (Bug#4188)
16459
16460 2009-10-04 Karl Fogel <kfogel@red-bean.com>
16461
16462 * bookmark.el (bookmark-alist): Document the new `handler' element
16463 in the param alist.
16464 (bookmark-make-record-function): Adjust documentation for above.
16465 (Bug#4193)
16466
16467 2009-10-04 Karl Fogel <kfogel@red-bean.com>
16468
16469 * info.el (Info-bookmark-make-record): Document this function.
16470 (Info-bookmark-jump): Document with a doc string, not just a comment.
16471 (Bug#4203)
16472
16473 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
16474
16475 * files.el (copy-directory): New defun.
16476
16477 * dired-aux.el (dired-copy-file-recursive): Use it.
16478
16479 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
16480
16481 * files-x.el (modify-dir-local-variable)
16482 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
16483 docstrings.
16484
16485 * recentf.el (recentf-unload-function): New function.
16486
16487 2009-10-04 Glenn Morris <rgm@gnu.org>
16488
16489 * window.el (window-full-height-p): Add doc string.
16490
16491 2009-10-04 Martin Rudalics <rudalics@gmx.at>
16492
16493 * window.el (window-full-height-p): New function. (Bug#4543)
16494
16495 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
16496
16497 * vc.el: Remove commented out code.
16498 (vc-derived-from-dir-mode): Remove, unused.
16499 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
16500
16501 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
16502
16503 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
16504 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
16505 there could be recursive loading when `default-directory' is a
16506 remote file name. (Bug#4614)
16507
16508 2009-10-03 Glenn Morris <rgm@gnu.org>
16509
16510 * calendar/calendar.el (calendar-basic-setup): Handle the case where
16511 the frame is wide.
16512 (calendar-generate-window): Test for shrinkability rather than width.
16513
16514 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
16515 reusing existing buffers, in case we happen to visit two files with the
16516 same basename. (Bug#4593)
16517
16518 2009-10-02 Eli Zaretskii <eliz@gnu.org>
16519
16520 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
16521 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
16522 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
16523 subdirs of cedet as well.
16524 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
16525
16526 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
16527
16528 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
16529 Obey advertised-signature-table.
16530
16531 * help-fns.el (help-function-arglist): Don't check
16532 advertised-signature-table.
16533 (describe-function-1): Do it here instead so it also applies to subrs.
16534
16535 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
16536
16537 * simple.el (start-file-process): Say in the doc-string, that file
16538 handlers might not support pty association, if PROGRAM is nil.
16539
16540 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
16541 HOST and USER are strings. They are nil, when there are
16542 incomplete entries in ~/.netrc, for example.
16543 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
16544 root directory ("device busy" error otherwise).
16545
16546 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
16547 Flush file properties of created directory.
16548
16549 2009-10-02 Eli Zaretskii <eliz@gnu.org>
16550
16551 * makefile.w32-in (WINS_BASIC): Remove cedet.
16552 (WINS_CEDET): Add cedet.
16553 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
16554
16555 2009-10-02 Kevin Ryde <user42@zip.com.au>
16556
16557 * net/browse-url.el (browse-url): Pass any symbol in
16558 browse-url-browser-function to `apply', since if you've mistakenly put
16559 an unbound symbol then the error is clearer. (Bug#4531)
16560
16561 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
16562
16563 * allout.el (allout-init, allout-back-to-current-heading)
16564 (allout-beginning-of-current-entry, allout-ascend-to-depth)
16565 (allout-ascend, allout-up-current-level, allout-end-of-level)
16566 (allout-previous-visible-heading, allout-forward-current-level)
16567 (allout-backward-current-level, allout-show-children):
16568 * apropos.el (apropos-describe-plist):
16569 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
16570 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
16571 * completion.el (add-completion, add-permanent-completion):
16572 * descr-text.el (describe-text-category, describe-char):
16573 * desktop.el (desktop-lazy-abort):
16574 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
16575 * dired.el (dired-build-subdir-alist):
16576 * ediff.el (ediff-version):
16577 * elide-head.el (elide-head, elide-head-show):
16578 * emerge.el (emerge-version):
16579 * env.el (getenv):
16580 * face-remap.el (variable-pitch-mode):
16581 * faces.el (describe-face):
16582 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
16583 (dired-at-point):
16584 * files.el (find-file-existing, auto-save-mode):
16585 * font-lock.el (font-lock-fontify-buffer):
16586 * help-fns.el (describe-function, describe-variable)
16587 (describe-syntax, describe-categories):
16588 * help.el (view-lossage, describe-bindings, describe-key)
16589 (describe-mode):
16590 * hexl.el (hexl-current-address):
16591 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
16592 * info.el (Info-goto-emacs-key-command-node):
16593 * log-edit.el (log-edit-insert-cvs-template)
16594 (log-edit-insert-cvs-rcstemplate):
16595 * menu-bar.el (menu-bar-mode):
16596 * mouse.el (mouse-appearance-menu):
16597 * newcomment.el (comment-indent-new-line):
16598 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
16599 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
16600 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
16601 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
16602 * recentf.el (recentf-mode):
16603 * savehist.el (savehist-mode, savehist-save):
16604 * shadowfile.el (shadow-copy-files):
16605 * simple.el (kill-ring-save, next-line, previous-line)
16606 (normal-erase-is-backspace-mode):
16607 * strokes.el (strokes-update-window-configuration)
16608 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
16609 (strokes-xpm-for-stroke):
16610 * time.el (emacs-uptime, emacs-init-time):
16611 * tutorial.el (tutorial--describe-nonstandard-key)
16612 (tutorial--detailed-help):
16613 * type-break.el (type-break-mode)
16614 (type-break-mode-line-message-mode, type-break-query-mode)
16615 (type-break-guesstimate-keystroke-threshold):
16616 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
16617 * version.el (emacs-version):
16618 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
16619 * winner.el (winner-mode):
16620 * calendar/timeclock.el (timeclock-in, timeclock-out)
16621 (timeclock-status-string, timeclock-change)
16622 (timeclock-workday-remaining-string)
16623 (timeclock-workday-elapsed-string)
16624 (timeclock-when-to-leave-string):
16625 * calendar/todo-mode.el (todo-add-category):
16626 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
16627 * emacs-lisp/autoload.el (update-file-autoloads):
16628 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
16629 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
16630 (checkdoc-message-text, checkdoc-defun):
16631 * emacs-lisp/debug.el (debugger-list-functions):
16632 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
16633 * emacs-lisp/eieio-opt.el (eieio-describe-class)
16634 (eieio-describe-generic):
16635 * emacs-lisp/lisp-mnt.el (lm-synopsis):
16636 * emacs-lisp/shadow.el (list-load-path-shadows):
16637 * emulation/cua-base.el (cua-mode):
16638 * emulation/edt.el (edt-set-scroll-margins):
16639 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
16640 (tpu-toggle-regexp, tpu-toggle-search-direction)
16641 (tpu-toggle-rectangle, tpu-toggle-control-keys):
16642 * emulation/tpu-extras.el (tpu-set-scroll-margins):
16643 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
16644 (viper-set-parsing-style-toggling-macro)
16645 (viper-set-emacs-state-searchstyle-macros):
16646 * emulation/viper.el (viper-set-hooks):
16647 * eshell/esh-mode.el (eshell-truncate-buffer):
16648 * international/mule-cmds.el (prefer-coding-system)
16649 (describe-input-method, describe-language-environment):
16650 * international/mule-diag.el (list-character-sets)
16651 (describe-character-set, describe-coding-system)
16652 (describe-fontset, list-fontsets, list-input-methods):
16653 * mail/sendmail.el (mail-signature):
16654 * net/ange-ftp.el (ange-ftp-copy-file):
16655 * net/browse-url.el (browse-url):
16656 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
16657 * net/quickurl.el (quickurl-add-url):
16658 * net/rcirc.el (names, topic):
16659 * net/xesam.el (xesam-mode):
16660 * play/5x5.el (5x5-new-game):
16661 * play/yow.el (apropos-zippy):
16662 * progmodes/ada-mode.el (ada-mode-version):
16663 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
16664 (f90-end-of-block)
16665 (f90-beginning-of-block):
16666 * progmodes/fortran.el (fortran-end-of-block)
16667 (fortran-beginning-of-block):
16668 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
16669 * progmodes/python.el (python-describe-symbol, python-shell):
16670 * term/ns-win.el (ns-print-buffer):
16671 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
16672 * textmodes/flyspell.el (flyspell-mode-on):
16673 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
16674 (pages-directory-for-addresses):
16675 * textmodes/table.el (table-recognize-cell)
16676 (table-query-dimension, table-generate-source)
16677 (table-insert-sequence, table--warn-incompatibility):
16678 * textmodes/tex-mode.el (tex-validate-buffer):
16679 * textmodes/texinfmt.el (texinfmt-version)
16680 (texinfo-format-buffer):
16681 Use `called-interactively-p' instead of `interactive-p'.
16682
16683 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
16684
16685 * image-mode.el (image-toggle-display):
16686 * emacs-lisp/elp.el (elp-instrument-function):
16687 * emacs-lisp/advice.el (ad-make-advised-definition):
16688 * emacs-lisp/easy-mmode.el (define-minor-mode):
16689 * net/browse-url.el (browse-url-maybe-new-window):
16690 * progmodes/sh-script.el (sh-learn-buffer-indent):
16691 Pass new argument 'any to `called-interactively-p'.
16692
16693 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
16694
16695 * international/uni-bidi.el:
16696 * international/uni-category.el:
16697 * international/uni-combining.el:
16698 * international/uni-comment.el:
16699 * international/uni-decimal.el:
16700 * international/uni-decomposition.el:
16701 * international/uni-digit.el:
16702 * international/uni-lowercase.el:
16703 * international/uni-mirrored.el:
16704 * international/uni-name.el:
16705 * international/uni-numeric.el:
16706 * international/uni-old-name.el:
16707 * international/uni-titlecase.el:
16708 * international/uni-uppercase.el:
16709 Regenerate from Unicode 5.2.0 data.
16710
16711 2009-10-01 Glenn Morris <rgm@gnu.org>
16712
16713 * Makefile.in (ELCFILES): Regenerate.
16714
16715 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
16716
16717 * subr.el (interactive-p): Mark obsolete.
16718 (called-interactively-p): Make the optional-ness of `kind' obsolete.
16719 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
16720 advertised-signature-table for subroutines as well.
16721
16722 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
16723 (set-advertised-calling-convention): New function.
16724 (make-obsolete, define-obsolete-function-alias)
16725 (make-obsolete-variable, define-obsolete-variable-alias):
16726 Make the optional-ness of `when' obsolete.
16727 (define-obsolete-face-alias): Make `when' non-optional.
16728 * help-fns.el (help-function-arglist):
16729 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
16730 Use advertised-signature-table.
16731
16732 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
16733
16734 * files.el (delete-directory): New defun. The original function
16735 in fileio.c has been renamed to `delete-directory-internal'.
16736
16737 * dired.el (dired-delete-file): Call `delete-directory' with
16738 RECURSIVE parameter.
16739
16740 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
16741 parameter RECURSIVE. Implementation is missing.
16742
16743 * net/tramp.el (tramp-handle-make-directory): Flush upper
16744 directory's file properties.
16745 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
16746 (tramp-handle-dired-recursive-delete-directory): Flush directory
16747 properties after the remove command only.
16748
16749 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
16750 Handle optional parameter RECURSIVE.
16751
16752 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
16753 Handle optional parameter RECURSIVE.
16754
16755 * net/tramp-smb.el (tramp-smb-errors): Add error message for
16756 connection timeout.
16757 (tramp-smb-handle-delete-directory): Handle optional parameter
16758 RECURSIVE.
16759
16760 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
16761
16762 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
16763 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
16764 (byte-compile-defmacro): Use backquotes.
16765
16766 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
16767
16768 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
16769 has no associated file.
16770 (vc-resynch-buffer): Use vc-dir-buffers.
16771
16772 2009-10-01 Glenn Morris <rgm@gnu.org>
16773
16774 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
16775 (chart-file-count):
16776 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
16777 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
16778 * emacs-lisp/eieio-opt.el (eieio-describe-class):
16779 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
16780 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
16781 (eieio-copy-parents-into-subclass, make-instance, class-children)
16782 (eieio-generic-form):
16783
16784 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
16785 match-data. (Bug#4555).
16786
16787 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
16788 rather than parsing it as a regexp. This relaxes the layout
16789 requirements and makes errors easier to detect.
16790 (check-declare-verify): Check file is regular.
16791 (check-declare-directory): Doc fix.
16792 * subr.el (declare-function): Doc fix.
16793
16794 * ibuffer.el (ibuffer-format-qualifier):
16795 * isearch.el (hi-lock-regexp-okay):
16796 * calc/calc.el (math-zerop):
16797 * mail/uce.el (rmail-msgbeg, rmail-msgend):
16798 * term/w32-win.el (setup-default-fontset, set-fontset-font):
16799 Remove unused declarations.
16800
16801 2009-09-30 Eric Ludlam <zappo@gnu.org>
16802
16803 * emacs-lisp/eieio.el (boolean-p): Delete.
16804
16805 2009-09-30 Glenn Morris <rgm@gnu.org>
16806
16807 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
16808
16809 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
16810 filename is not a string.
16811
16812 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
16813
16814 * files.el (safe-local-eval-forms): Fix typo.
16815
16816 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
16817
16818 * vc-hooks.el (vc-dir-buffers): New var.
16819 (vc-state-refresh): New function.
16820 (vc-state): Use it.
16821 (vc-after-save): Always ask the backend to recompute the new state.
16822 Always call vc-dir if necessary, using vc-dir-buffers.
16823 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
16824 Use vc-dir-buffers.
16825 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
16826 (vc-dir-prepare-status-buffer, vc-dir-update)
16827 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
16828 Don't call expand-file-name on default-directory.
16829
16830 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
16831
16832 * speedbar.el (speedbar-item-delete):
16833 * calc/calc-prog.el (calc-kbd-if):
16834 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
16835
16836 * epa.el (epa-key-list-mode-map):
16837 * hi-lock.el (hi-lock-menu): Fix typos in menus.
16838
16839 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
16840 (hs-show-hook): Fix typo in docstring.
16841
16842 2009-09-29 Glenn Morris <rgm@gnu.org>
16843
16844 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
16845 file-name-nondirectory call preventing location of cedet files.
16846 (check-declare-verify): Use literal search rather than re-search.
16847 Add basic defmethod and defclass, and define-overloadable-function.
16848
16849 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
16850 Use tramp-compat-file-attributes rather than nonexistent
16851 tramp-compat-handle-file-attributes.
16852
16853 * Makefile.in (lisptagsfiles4): New.
16854 (AUTOGENEL): Add cedet loaddefs files.
16855 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
16856 (update-elclist, compile-always, backup-compiled-files)
16857 (bootstrap-clean): Add yet another directory level.
16858 (update-elclist): Use LC_COLLATE rather than COLLATE.
16859 (ELCFILES): Update, via `make update-elclist'.
16860
16861 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
16862
16863 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
16864 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
16865 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
16866
16867 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
16868
16869 * Makefile.in (lisptagsfiles3): Define.
16870 (TAGS, TAGS-LISP): Use it.
16871 (update-elclist): Add third directory level to look for elc files.
16872 (compile-always): Likewise.
16873 (backup-compiled-files): Likewise.
16874 (bootstrap-clean): Likewise.
16875 (ELCFILES): Update.
16876
16877 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
16878
16879 * Makefile.in (ELCFILES): Add CEDET files.
16880
16881 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
16882
16883 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
16884
16885 * net/tramp.el (top): Require tramp-imap.
16886
16887 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
16888 Use `tramp-compat-handle-file-attributes'.
16889
16890 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
16891
16892 * net/tramp-imap.el: New package.
16893
16894 2009-09-28 Eric Ludlam <zappo@gnu.org>
16895
16896 * emacs-lisp/chart.el:
16897 * emacs-lisp/eieio-base.el:
16898 * emacs-lisp/eieio-comp.el:
16899 * emacs-lisp/eieio-custom.el:
16900 * emacs-lisp/eieio-datadebug.el:
16901 * emacs-lisp/eieio-opt.el:
16902 * emacs-lisp/eieio-speedbar.el:
16903 * emacs-lisp/eieio.el: New files.
16904
16905 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16906
16907 * whitespace.el (whitespace-trailing-regexp)
16908 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
16909 Fix doc string.
16910
16911 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
16912
16913 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
16914 menu.
16915
16916 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
16917 menu-bar-ediff-menu.
16918
16919 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
16920 define-overloadable-function.
16921
16922 * progmodes/autoconf.el: Provide autoconf as well, so that this
16923 file can be `require'd.
16924
16925 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
16926
16927 * emacs-lisp/autoload.el (generated-autoload-feature)
16928 (generated-autoload-load-name): New vars.
16929 (autoload-rubric, autoload-generate-file-autoloads): Use them.
16930 (make-autoload): Recognize define-overloadable-function and
16931 defclass forms (for EIEIO).
16932
16933 * Makefile.in (update-subdirs): Exclude cedet directory.
16934
16935 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
16936
16937 * term/ns-win.el: Don't set the region face background. (Bug#4381)
16938
16939 * faces.el: Default light-background background for region face to
16940 ns_selection_color under NS.
16941
16942 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
16943
16944 * net/imap-hash.el: New library, see NEWS.
16945
16946 * Makefile.in (ELCFILES): Add imap-hash.el.
16947
16948 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
16949
16950 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
16951 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
16952 * help-macro.el (make-help-screen): Avoid using an ambiguous function
16953 definition where the docstring could be taken for the return value.
16954
16955 2009-09-26 Glenn Morris <rgm@gnu.org>
16956
16957 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
16958 Add option to only show images below a certain size.
16959 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
16960 save-excursion calls.
16961
16962 2009-09-26 Eli Zaretskii <eliz@gnu.org>
16963
16964 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
16965 subdirectories) and eieio.
16966
16967 2009-09-26 Alan Mackenzie <acm@muc.de>
16968
16969 * progmodes/cc-engine.el (c-beginning-of-statement-1):
16970 Correct buggy bracketing. (Bug#4289)
16971
16972 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
16973 character constants (as case labels). (Bug#4289)
16974
16975 2009-09-25 Juri Linkov <juri@jurta.org>
16976
16977 * files.el (safe-local-eval-forms): Allow time-stamp in
16978 before-save-hook (Bug#4554).
16979
16980 2009-09-25 Drew Adams <drew.adams@oracle.com>
16981
16982 * menu-bar.el (list-buffers-directory): Doc fix.
16983
16984 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
16985
16986 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
16987 Try and avoid copying twice the same paragraph.
16988 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
16989 Remove save-excursion.
16990 (log-edit-changelog-entry): Do it here instead.
16991
16992 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
16993
16994 * bs.el (bs--get-file-name): Use `list-buffers-directory'
16995 when available, instead of hardcoding mode names. Doc fix.
16996
16997 * menu-bar.el (list-buffers-directory): Add docstring.
16998 Make automatically buffer-local.
16999
17000 * dired.el (dired-mode):
17001 * files.el (cd-absolute):
17002 * pcvs.el (cvs-temp-buffer):
17003 * pcvs-util.el (cvs-get-buffer-create):
17004 * shell.el (shell-mode):
17005 * vc-dir.el (vc-dir-mode):
17006 Don't make `list-buffers-directory' buffer local.
17007
17008 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
17009
17010 * comint.el (comint-exec, comint-run, make-comint):
17011 Doc fixes (Bug#4542).
17012
17013 2009-09-25 Glenn Morris <rgm@gnu.org>
17014
17015 * mail/rmailmm.el (rmail-mime): New custom group.
17016 Move all defcustoms in this file into this group.
17017 (rmail-mime-media-type-handlers-alist): Revert previous change.
17018 (rmail-mime-show-images): New option.
17019 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
17020 references to it, since it wasn't actually used for anything.
17021 (rmail-mime-insert-image): New function.
17022 (rmail-mime-image): Use rmail-mime-insert-image.
17023 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
17024 obey the value of `rmail-mime-show-images' option. Print the size of
17025 attachments.
17026
17027 2009-09-25 David Engster <deng@randomsample.de>
17028
17029 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
17030
17031 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17032
17033 * whitespace.el: Does not highlight trailing spaces While point is
17034 at end of line. Does not highligt spaces at beginning of buffer
17035 while point is at beginning of buffer. Does not highlight spaces
17036 at end of buffer while point is at end of buffer. (Bug#4177)
17037 New version 12.0.
17038 (whitespace-display-mappings): Adjust initialization.
17039 (whitespace-point, whitespace-font-lock-refontify): New vars.
17040 (whitespace-color-on, whitespace-color-off): Adjust code.
17041 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
17042 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
17043 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
17044
17045 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
17046
17047 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
17048
17049 * textmodes/sgml-mode.el: Remove xml-mode alias.
17050
17051 * files.el (auto-mode-alist, conf-mode-maybe)
17052 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
17053
17054 2009-09-24 Alan Mackenzie <acm@muc.de>
17055
17056 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
17057 c-forward-conditionals, but it doesn't move point and doesn't set
17058 the mark.
17059 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
17060 (c-down-conditional-with-else, c-backward-conditional)
17061 (c-forward-conditional): Refactor to use c-scan-conditionals.
17062
17063 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
17064
17065 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
17066 (help-default-arg-highlight): Remove.
17067 (help-highlight-arg): New function.
17068 (help-do-arg-highlight): Use it.
17069 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
17070
17071 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
17072
17073 * term.el (term-set-scroll-region, term-handle-ansi-escape):
17074 Undo last change, which didn't fix the problem and introduced others.
17075
17076 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
17077
17078 * progmodes/gdb-mi.el: Don't require speedbar.
17079 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
17080
17081 2009-09-24 Glenn Morris <rgm@gnu.org>
17082
17083 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
17084
17085 * term/ns-win.el (ns-reg-to-script): Define for compiler.
17086
17087 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
17088 there is no newline after the final mime boundary. (Bug#4539)
17089 Move markers on insertion so that any buttons inserted don't end up in
17090 the next part of a multipart message.
17091 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
17092 (rmail-mime-bulk-handler): Optionally handle images.
17093 (rmail-mime-image): New button action.
17094 (rmail-mime-image-handler): New function.
17095 (rmail-mime-mode): New mode.
17096 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
17097
17098 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
17099
17100 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
17101 than just dropping elements from it (bug#4504).
17102
17103 * term.el (term-set-scroll-region): Don't move cursor any more.
17104 (term-handle-ansi-escape): Call term-goto here instead.
17105 Suggested by Ivan Kanis <apple@kanis.eu>.
17106
17107 * term.el: Require CL.
17108 (term-ansi-reset): New function.
17109 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
17110 (term-handle-colors-array): Simplify.
17111
17112 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
17113
17114 * allout.el (allout-overlay-interior-modification-handler)
17115 (allout-obtain-passphrase):
17116 * epa-file.el (epa-file-write-region):
17117 * ps-print.el (ps-begin-job):
17118 * vc-hooks.el (vc-toggle-read-only):
17119 * vc-rcs.el (vc-rcs-rollback):
17120 * vc-sccs.el (vc-sccs-rollback):
17121 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
17122 (vc-version-diff, vc-revert, vc-rollback):
17123 * wdired.el (wdired-check-kill-buffer):
17124 * emacs-lisp/authors.el (authors):
17125 * net/socks.el (socks-open-connection):
17126 * net/zeroconf.el (zeroconf-service-add-hook):
17127 * obsolete/vc-mcvs.el (vc-mcvs-register):
17128 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
17129 (gdb-select-frame):
17130 * progmodes/grep.el (lgrep, rgrep):
17131 * progmodes/idlw-help.el (idlwave-help-check-locations)
17132 (idlwave-help-html-link, idlwave-help-assistant-open-link):
17133 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
17134 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
17135 (reftex-toc-rename-label): Fix typos in error messages.
17136
17137 * dired-aux.el (dired-do-shell-command): Reflow docstring.
17138 (dired-copy-how-to-fn): Doc fix.
17139 (dired-files-attributes, dired-read-shell-command):
17140 Fix typos in docstrings.
17141
17142 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
17143 (dired-x-find-file-other-window): Reflow docstrings.
17144 (dired-omit-marker-char, dired-read-shell-command)
17145 (dired-x-submit-report): Fix typos in docstrings.
17146
17147 * shell.el (shell-mode-hook):
17148 * view.el (View-scroll-line-forward):
17149 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
17150 Fix typos in docstrings.
17151
17152 * net/dig.el (dig-invoke): Fix typo in docstring.
17153 (query-dig): Reflow docstring.
17154
17155 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
17156 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
17157 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
17158 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
17159 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
17160 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
17161 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
17162 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
17163 (idlwave-completion-map, idlwave-current-indent)
17164 (idlwave-custom-ampersand-surround, idlwave-customize)
17165 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
17166 (idlwave-define-abbrev, idlwave-determine-class-special)
17167 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
17168 (idlwave-end-block-reg, idlwave-end-of-statement)
17169 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
17170 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
17171 (idlwave-explicit-class-listed, idlwave-file-header)
17172 (idlwave-fill-paragraph, idlwave-find-class-definition)
17173 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
17174 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
17175 (idlwave-in-quote, idlwave-indent-action-table)
17176 (idlwave-indent-expand-table, idlwave-indent-line)
17177 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
17178 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
17179 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
17180 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
17181 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
17182 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
17183 (idlwave-outlawed-buffers, idlwave-popup-select)
17184 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
17185 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
17186 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
17187 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
17188 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
17189 (idlwave-statement-type, idlwave-struct-skip)
17190 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
17191 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
17192 (idlwave-what-module-find-class): Fix typos in docstrings.
17193 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
17194 (idlwave-calculate-cont-indent, idlwave-expand-equal)
17195 (idlwave-find-module, idlwave-find-structure-definition)
17196 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
17197 (idlwave-list-load-path-shadows, idlwave-next-statement)
17198 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
17199 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
17200 (idlwave-template): Reflow docstrings.
17201
17202 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
17203 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
17204 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
17205 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
17206 (idlwave-shell-display-line, idlwave-shell-display-wframe)
17207 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
17208 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
17209 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
17210 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
17211 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
17212 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
17213 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
17214 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
17215 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
17216 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
17217 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
17218 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
17219 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
17220 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
17221 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
17222 Fix typos in docstrings.
17223 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
17224 (idlwave-shell-hide-output, idlwave-shell-mode)
17225 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
17226 Reflow docstrings.
17227
17228 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
17229
17230 2009-09-24 Ivan Kanis <apple@kanis.eu>
17231
17232 * term.el (term-bold-attribute): New var.
17233 (term-handle-colors-array): Use it.
17234
17235 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
17236
17237 * progmodes/gdb-mi.el (gdb-version): New variable.
17238 (gdb-non-stop-handler): Set gdb-version.
17239 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
17240 Condition "--thread" option on gdb-version.
17241 (gdb-invalidate-threads): Remove unused argument.
17242
17243 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
17244
17245 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
17246 to looking-back to avoid ridiculous slow down in large files (bug#4511).
17247
17248 2009-09-23 Glenn Morris <rgm@gnu.org>
17249
17250 * mail/rmail.el (rmail-reply): Don't try to add a References header when
17251 replying to mail without References or Message-Id. (Bug#4525)
17252
17253 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
17254
17255 * term/ns-win.el (ns-reg-to-script): New variable.
17256
17257 2009-09-23 Daiki Ueno <ueno@unixuser.org>
17258
17259 * epg.el (epg-wait-for-status): Preserve existing 'error results.
17260
17261 2009-09-22 Sam Steingold <sds@gnu.org>
17262
17263 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
17264 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
17265 to 1 because hg returns status 1 when nothing is found.
17266 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
17267
17268 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
17269
17270 * textmodes/fill.el: Convert to utf-8 encoding.
17271 (fill-french-nobreak-p): Remove redundant » and « inherited from our
17272 pre-Unicode days.
17273
17274 * add-log.el (change-log-fill-forward-paragraph): New function.
17275 (change-log-mode): Use it so fill-region DTRT.
17276 Set fill-indent-according-to-mode here rather than in
17277 change-log-fill-paragraph.
17278 (change-log-fill-paragraph): Remove.
17279
17280 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
17281
17282 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
17283 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
17284
17285 2009-09-22 Glenn Morris <rgm@gnu.org>
17286
17287 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
17288 the scroll-bar scroll the calendar window rather than the buffer.
17289
17290 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
17291 commands that move point (as opposed to scrolling).
17292
17293 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
17294
17295 * emacs-lisp/elint.el (elint): New custom group.
17296 (elint-log-buffer): Make it a defcustom.
17297 (elint-scan-preloaded, elint-ignored-warnings)
17298 (elint-directory-skip-re): New options.
17299 (elint-builtin-variables): Doc fix.
17300 (elint-preloaded-env): New variable.
17301 (elint-unknown-builtin-args): Add an entry for encode-time.
17302 (elint-extra-errors): Make it a variable rather than a constant.
17303 (elint-preloaded-skip-re): New constant.
17304 (elint-directory): Skip files matching elint-directory-skip-re.
17305 (elint-features): New variable, local to linted buffers.
17306 (elint-update-env): Initialize elint-features. Possibly add
17307 elint-preloaded-env to the buffer's environment.
17308 (elint-get-top-forms): Bind elint-current-pos, for log messages.
17309 Skip quoted forms.
17310 (elint-init-form): New function, extracted from elint-init-env.
17311 Make non-list forms a warning rather than an error.
17312 Add the mode-map for define-derived-mode. Handle define-minor-mode,
17313 easy-menu-define, put that adds an error-condition, and provide.
17314 When requiring cl, also require cl-macs. Really require cl, to handle
17315 some cl macros. Store required libraries in the list elint-features,
17316 so as not to re-load them. Treat cc-require like require.
17317 (elint-init-env): Call elint-init-form to do the work.
17318 Handle eval-and-compile and such like.
17319 (elint-add-required-env): Do not clear messages.
17320 (elint-special-forms): Add handlers for function, defalias, if, when,
17321 unless, and, or.
17322 (elint-form): Add optional argument to ignore elint-special-forms,
17323 useful to prevent recursive calls from handlers. Doc fix.
17324 Respect elint-ignored-warnings.
17325 (elint-form): Respect elint-ignored-warnings.
17326 (elint-bound-variable, elint-bound-function): New variables.
17327 (elint-unbound-variable): Respect elint-bound-variable.
17328 (elint-get-args): Respect elint-bound-function.
17329 (elint-check-cond-form): Add some simple handling for (f)boundp and
17330 featurep tests.
17331 (elint-check-defalias-form): New handler.
17332 (elint-check-let-form): Make an empty let a warning rather than an
17333 error.
17334 (elint-check-setq-form): Make an empty setq a warning rather than an
17335 error. Respect elint-ignored-warnings.
17336 (elint-check-defvar-form): Accept null doc-strings.
17337 (elint-check-conditional-form): New handler. Does some simple-minded
17338 checking of featurep and (f)boundp tests.
17339 (elint-put-function-args): New function.
17340 (elint-initialize): Use elint-scan-doc-file rather than
17341 elint-find-builtin-variables. Use elint-put-function-args.
17342 Possibly scan preloaded-file-list.
17343 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
17344 extend to handle functions as well.
17345
17346 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
17347
17348 * linum.el (linum-delete-overlays, linum-update-window):
17349 Do not modify the right margin. (Bug#3971)
17350
17351 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
17352
17353 * files.el (conf-mode-maybe, magic-fallback-mode-alist):
17354 Use nxml-mode instead of xml-mode.
17355
17356 2009-09-21 Kevin Ryde <user42@zip.com.au>
17357
17358 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
17359
17360 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
17361
17362 * net/dig.el (dig-mode): Use define-derived-mode.
17363
17364 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
17365
17366 * vc-dispatcher.el (vc-do-command): Return the process object in
17367 the asynchronous case. Use when instead of if. Do not run
17368 vc-exec-after to display a message if not enabled. (Bug#4463)
17369
17370 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
17371 properties to the stash strings.
17372 (vc-git-stash-list): Return a list of strings.
17373 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
17374 (vc-git-stash-show-at-point): New functions.
17375 (vc-git-stash-map): New keymap.
17376
17377 * register.el (ctl-x-r-map): Define the keys here instead of
17378 using autoload.
17379
17380 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
17381
17382 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
17383 list, to workaround performance problem (bug#4485).
17384
17385 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
17386
17387 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
17388
17389 2009-09-20 Daiki Ueno <ueno@unixuser.org>
17390
17391 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
17392 Document that this option is not recommended to use.
17393
17394 2009-09-19 Glenn Morris <rgm@gnu.org>
17395
17396 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
17397 variable `var'.
17398
17399 * calc/calc-alg.el (var):
17400 * calc/calcalg2.el (var): Define for compiler.
17401
17402 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
17403
17404 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
17405 Doc fix (Bug#3932).
17406
17407 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
17408
17409 * time-stamp.el (time-stamp-month-dd-yyyy)
17410 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
17411 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
17412 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
17413 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
17414 Remove functions that have been obsolete since 1995 (Bug#4436).
17415
17416 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
17417 indent buffer only if called interactively (Bug#4452).
17418
17419 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
17420 Eli Zaretskii <eliz@gnu.org>
17421
17422 This fixes bug#4197 (merged to bug#865, though not identical).
17423 * server.el (server-auth-dir): Add docstring note about FAT32.
17424 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
17425 but warn against using them.
17426
17427 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
17428
17429 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
17430 older GDB where there is no has_more field.
17431
17432 2009-09-19 Glenn Morris <rgm@gnu.org>
17433
17434 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
17435
17436 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
17437
17438 * files.el (auto-mode-alist): Change default for XML files to nXML
17439 mode (Bug#4169).
17440
17441 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
17442
17443 * server.el (server-ensure-safe-dir): Pass 'integer
17444 to `file-attributes', as suggested.
17445
17446 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
17447
17448 * dired-aux.el (dired-query-alist): Remove spurious backslash.
17449 (dired-query): Use read-key.
17450
17451 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
17452
17453 * cus-start.el (ns-use-qd-smoothing): Remove.
17454
17455 2009-09-18 Glenn Morris <rgm@gnu.org>
17456
17457 * allout.el (top-level): Remove unnecessary progn.
17458
17459 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
17460
17461 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
17462 definition of abbrev table.
17463
17464 * speedbar.el (speedbar-track-mouse):
17465 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
17466 * net/eudc.el (eudc-expand-inline):
17467 * net/newst-backend.el (newsticker--cache-read-feed):
17468 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
17469 condition-case handlers.
17470
17471 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
17472
17473 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
17474 (gdb-var-list): Add an element for has_more field.
17475 (gdb-non-stop-handler): Enable pretty printing for STL containers.
17476 (gdb-var-create-handler, gdb-var-list-children-handler-1)
17477 (gdb-var-update-handler-1): Parse output of dynamic variable
17478 objects (STL containers).
17479 (gdb-var-delete-1): Pass var1 as an explicit second argument.
17480 (gdb-get-field): Delete alias. Use bindat-get-field directly.
17481
17482 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
17483 gdb-var-list.
17484 (gud-speedbar-buttons): Make node expandable if expression "has more"
17485 children.
17486
17487 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
17488
17489 * startup.el (emacs-quick-startup): Remove variable and all uses.
17490 (command-line): Set `inhibit-x-resources' instead.
17491 (command-line-1): Use `inhibit-x-resources' instead.
17492
17493 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
17494
17495 * subr.el: Fix last change to avoid using the `unless' macro,
17496 which breaks bootstrapping.
17497
17498 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
17499
17500 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
17501 extended definitions, in case we reload subr.el after having
17502 loaded CL.
17503 (eval-next-after-load): Mark as obsolete.
17504
17505 2009-09-17 Juri Linkov <juri@jurta.org>
17506
17507 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
17508 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
17509 (menu-bar-showhide-menu, menu-bar-tools-menu)
17510 (menu-bar-describe-menu, menu-bar-help-menu)
17511 (minibuffer-local-completion-map, minibuffer-local-map):
17512 Fix list quoting.
17513
17514 2009-09-17 Glenn Morris <rgm@gnu.org>
17515
17516 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
17517 arguments, whether or not it has a handler.
17518
17519 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
17520
17521 * simple.el (hard-newline): Give it a doc-string.
17522
17523 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17524 (lisp-mode-syntax-table): Give them doc-strings.
17525
17526 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
17527
17528 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
17529 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
17530 (menu-bar-options-menu, menu-bar-showhide-menu)
17531 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
17532 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
17533 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
17534 (menu-bar-options-menu, menu-bar-tools-menu)
17535 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
17536 (menu-bar-help-menu):
17537 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
17538 string arguments.
17539
17540 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
17541 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
17542 calls for the menu names and :help.
17543
17544 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
17545
17546 * mouse.el (minor-mode-menu-from-indicator): Pay attention
17547 to :minor-mode-function (bug#4455).
17548
17549 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
17550
17551 * startup.el (command-line): Initialize the window-system after
17552 processing the command-line.
17553
17554 * textmodes/page.el (what-page): Make sure we don't inf-loop if
17555 page-delimiter matches the empty string.
17556
17557 2009-09-16 Glenn Morris <rgm@gnu.org>
17558
17559 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
17560 byte-compile-not-obsolete-var. It's a list now.
17561 (byte-compile-not-obsolete-funcs): New variable.
17562 (byte-compile-warn-obsolete): Don't warn about functions if they are in
17563 byte-compile-not-obsolete-funcs.
17564 (byte-compile-variable-ref, byte-compile-defvar): Update for
17565 byte-compile-not-obsolete-vars name-change and list nature.
17566 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
17567 and variables behind (f)boundp tests.
17568 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
17569
17570 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
17571
17572 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
17573
17574 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
17575
17576 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
17577 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
17578 Don't autoload.
17579
17580 2009-09-15 Stephen Eglen <stephen@gnu.org>
17581
17582 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
17583 the virtual-buffers, use the name of the buffer specified by
17584 find-file-noselect, as the match may be a symlink. (This was a
17585 problem if the target and the symlink had different names.)
17586
17587 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
17588
17589 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
17590
17591 * desktop.el (desktop-path): Check user-emacs-directory.
17592
17593 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
17594
17595 * loadup.el: Use after-load-functions to GC after loading each file.
17596 Remove the explicit GC calls that used to be sprinkled around.
17597
17598 * subr.el (after-load-functions): New hook.
17599 (do-after-load-evaluation): Run it. Use string-match-p to detect
17600 `obsolete' packages, rather than painfully extracting the relevant
17601 directory name.
17602
17603 2009-09-15 Glenn Morris <rgm@gnu.org>
17604
17605 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
17606 free variable `doc'.
17607
17608 * dired.el (dired-mode-map): Add menu entry for async shell command.
17609
17610 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
17611 variables, also consider the .elc files, since the .el files are
17612 normally gzipped (subsequent code locates the .el.gz from the .elc).
17613
17614 * calc/calc-prog.el (arglist): Define for compiler.
17615
17616 * calendar/diary-lib.el (diary-display-function): Change the default to
17617 fancy display.
17618 (body): Define for compiler.
17619
17620 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
17621 (byte-compile-file-form, byte-compile-lambda)
17622 (byte-compile-top-level-body, byte-compile-form)
17623 (byte-compile-variable-ref, byte-compile-setq)
17624 (byte-compile-setq-default, byte-compile-body)
17625 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
17626 (batch-byte-compile): Give some more local variables with common names
17627 a "bytecomp-" prefix to avoid masking warnings about free variables.
17628
17629 * startup.el (command-line-1): Give local variables with common names a
17630 distinguishing prefix, so as not to hide free variable warnings during
17631 bootstrap.
17632
17633 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
17634 clever and add a suffix to make a unique name, just let the user decide
17635 whether or not to overwrite it. If the input is a directory, write the
17636 default filename to that directory. (Bug#4388)
17637 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
17638 is a filename-as-a-directory.
17639
17640 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
17641
17642 * textmodes/page.el (what-page): Don't move to beginning of line.
17643 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
17644
17645 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
17646
17647 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
17648
17649 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
17650
17651 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
17652 * help.el (help-for-help-internal): Add purecopy calls for text.
17653
17654 * vc.el (top): print-log method now takes an optional SHORTLOG
17655 argument. Add a new method: root.
17656 (vc-root-diff, vc-print-root-log): New functions.
17657 (vc-log-short-style): New variable.
17658 (vc-print-log-internal): Add support for showing short logs.
17659
17660 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
17661 vc-print-root-log and vc-print-root-diff.
17662
17663 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
17664 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
17665 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
17666 short logs.
17667
17668 * vc-cvs.el (vc-cvs-print-log):
17669 * vc-mtn.el (vc-mtn-print-log):
17670 * vc-rcs.el (vc-rcs-print-log):
17671 * vc-sccs.el (vc-sccs-print-log):
17672 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
17673 that is ignored for now.
17674
17675 * vc-mtn.el (vc-mtn-annotate-command):
17676 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
17677
17678 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
17679
17680 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
17681 to function-key-map, and give them ascii-character property.
17682 * term/x-win.el (x-alternatives-map):
17683 * term/ns-win.el (ns-alternatives-map):
17684 * term/internal.el (msdos-key-remapping-map):
17685 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
17686
17687 2009-09-14 Glenn Morris <rgm@gnu.org>
17688
17689 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
17690 temp-buffers (2009-09-12).
17691
17692 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
17693
17694 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
17695 the new read-key function.
17696
17697 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
17698
17699 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
17700 is defined (Bug#4405).
17701
17702 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
17703
17704 * recentf.el (recentf-cleanup): Use a hash table to find
17705 duplicates (Bug#4407).
17706
17707 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
17708
17709 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
17710 kp-0 to ascii equivalents (Bug#4325).
17711
17712 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
17713
17714 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
17715
17716 * eshell/em-hist.el:
17717 * eshell/em-dirs.el (eshell-complete-user-reference):
17718 Declare pcomplete functions and variables to avoid compiler warnings.
17719
17720 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
17721
17722 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
17723 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
17724 * eshell/em-alias.el (eshell-aliases-file):
17725 * eshell/em-hist.el (eshell-history-file-name):
17726 Use expand-file-name instead of concat to make file names (Bug#4308).
17727
17728 2009-09-13 Glenn Morris <rgm@gnu.org>
17729
17730 * ediff-merg.el (ediff-do-merge):
17731 * filesets.el (filesets-run-cmd):
17732 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
17733 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
17734 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
17735 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
17736 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
17737 Replace empty `let's with `progn'.
17738
17739 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
17740
17741 * mail/sendmail.el (send-mail-function):
17742 * tooltip.el (tooltip-mode):
17743 * simple.el (transient-mark-mode):
17744 * rfn-eshadow.el (file-name-shadow-mode):
17745 * frame.el (blink-cursor-mode):
17746 * font-core.el (global-font-lock-mode):
17747 * files.el (temporary-file-directory)
17748 (small-temporary-file-directory, auto-save-file-name-transforms):
17749 * epa-hook.el (auto-encryption-mode):
17750 * composite.el (global-auto-composition-mode):
17751 Use custom-initialize-delay.
17752 * startup.el (command-line): Don't explicitly call
17753 custom-reevaluate-setting for all the above vars.
17754 * custom.el (custom-initialize-safe-set)
17755 (custom-initialize-safe-default): Delete.
17756
17757 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
17758
17759 * term/x-win.el (x-initialize-window-system):
17760 * term/w32-win.el (w32-initialize-window-system):
17761 * term/ns-win.el (ns-initialize-window-system): Don't call
17762 mouse-wheel-mode since it's enabled globally by default already.
17763
17764 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
17765 actually define the variable, but only silences the byte-compiler.
17766 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
17767 before looking it up.
17768 (mouse-wheel-scroll-amount): Also reset the bindings if this value
17769 is changed.
17770
17771 2009-09-12 Glenn Morris <rgm@gnu.org>
17772
17773 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
17774 1000.
17775 (elint-add-required-env): Don't beep on error.
17776 (elint-forms): In case of error, return ENV unchanged.
17777 (elint-init-env): Skip non-list forms.
17778 (elint-log): Handle unknown file positions.
17779
17780 2009-09-12 Daiki Ueno <ueno@unixuser.org>
17781
17782 * epg.el (epg-make-context): Add autoload cookie.
17783 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
17784 (epg-decrypt-string, epg-start-verify, epg-verify-file)
17785 (epg-verify-string, epg-start-sign, epg-sign-file)
17786 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
17787 (epg-encrypt-string, epg-start-export-keys)
17788 (epg-export-keys-to-file, epg-export-keys-to-string)
17789 (epg-start-import-keys, epg-import-keys-from-file)
17790 (epg-import-keys-from-string, epg-start-receive-keys)
17791 (epg-receive-keys, epg-import-keys-from-server)
17792 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
17793 (epg-sign-keys, epg-start-generate-key)
17794 (epg-generate-key-from-file, epg-generate-key-from-string):
17795 Remove autoload cookie.
17796
17797 2009-09-12 Eli Zaretskii <eliz@gnu.org>
17798
17799 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
17800 reevaluation of trash-directory.
17801
17802 * mwheel.el: Fix last change.
17803 (mouse-wheel-mode): New defvar.
17804 (mouse-wheel-mode): Remove autoload cookie.
17805
17806 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
17807
17808 * mwheel.el (mwheel-installed-bindings): New var.
17809 (mouse-wheel-mode): Use it, so as to make sure we really remove all
17810 the bindings we set last time. Use custom-initialize-delay.
17811 * loadup.el: Load mwheel after term/*-win.el.
17812 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
17813 and mouse-wheel-up-event now that their first evaluation is done
17814 sufficiently late to be correct.
17815
17816 * startup.el (tutorial-directory): Make it a defcustom.
17817 Use custom-initialize-delay rather than eval-at-startup to set it.
17818 * image.el (image-load-path): Make it a defcustom.
17819 Use custom-initialize-delay rather than eval-at-startup to set it.
17820 * subr.el (eval-at-startup): Remove.
17821 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
17822
17823 * subr.el (do-after-load-evaluation): Warn the user after loading an
17824 obsolete package.
17825
17826 2009-09-12 Glenn Morris <rgm@gnu.org>
17827
17828 * proced.el (proced-mark-alt): Remove alias.
17829 (proced-mode-map): Remove proced-mark-alt.
17830
17831 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
17832 Elint file and directory. Remove initialization entry.
17833
17834 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
17835 commands.
17836 (elint-current-buffer): Set mode-line-process.
17837 (elint-init-env): Handle define-derived-mode.
17838 Fix declare-function with unspecified arglist. Guard against odd
17839 defalias statements (eg iso-insert's 8859-1-map).
17840 (elint-add-required-env): Use a temp buffer.
17841 (elint-form): Just print the function/macro name, not the whole form.
17842 Return env unchanged if we fail to parse a macro.
17843 (elint-forms): Guard against parse errors.
17844 (elint-output): New function, to handle batch mode.
17845 (elint-log-message): Add optional argument. Use elint-output.
17846 (elint-set-mode-line): New function.
17847
17848 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
17849
17850 * emacs-lisp/elp.el (elp-not-profilable): Add more
17851 functions (Bug#4233).
17852
17853 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
17854
17855 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
17856 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
17857
17858 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
17859
17860 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
17861 (gdb-var-list-children): Use json parsing.
17862
17863 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
17864
17865 * progmodes/js.el (js--proper-indentation): Handle the case where
17866 char-before is null. Reported by Deniz Dogan.
17867
17868 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
17869
17870 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
17871
17872 2009-09-11 Daiki Ueno <ueno@unixuser.org>
17873
17874 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
17875 (epg-digest-algorithm-alist): Add SHA224.
17876 (epg-context-set-passphrase-callback)
17877 (epg-context-set-progress-callback): Add description about
17878 callback function.
17879
17880 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
17881
17882 * custom.el (custom-delayed-init-variables): New var.
17883 (custom-initialize-delay): New function.
17884 * startup.el (command-line): "Re"evaluate all vars in
17885 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
17886 explicitly any more.
17887 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
17888 to avoid creating a ~/.emacs.d at build-time (bug#4347).
17889
17890 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
17891
17892 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
17893
17894 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
17895 (gdb-var-update-handler): Use json parsing.
17896
17897 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
17898
17899 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
17900 decode annotated text, regardless of language environment. (Bug#2741)
17901
17902 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
17903
17904 * Makefile.in (autoloads): Make rmail.el writable as well.
17905
17906 2009-09-11 Glenn Morris <rgm@gnu.org>
17907
17908 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
17909 loaddefs.el.
17910 * dired.el: Regenerate with extracted autoloads.
17911 * Makefile.in (autoloads): Make dired.el writable.
17912
17913 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
17914 * ibuffer.el: Regenerate with extracted autoloads.
17915 * Makefile.in (autoloads): Make ibuffer.el writable.
17916
17917 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
17918 * version.el (emacs-copyright, emacs-major-version)
17919 (emacs-minor-version): Reformat doc-strings for make-docfile.
17920
17921 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
17922 functions and variables, since they must be stuff specific to some other
17923 platform.
17924 (apropos-print): Make mouse-click message less specific about button.
17925
17926 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
17927 that records where a macro was defined.
17928 * help-fns.el (describe-function-1): Mention if a function has a
17929 compiler-macro.
17930 * help-mode.el (help-function-cmacro): New button.
17931
17932 * locate.el (top-level): Always require dired.
17933 (locate-mode-map): Initialize inside the defvar.
17934
17935 * net/ange-ftp.el (dired-compress-file): Declare.
17936 (ange-ftp-dired-compress-file): Add doc string.
17937
17938 * term/ns-win.el (x-display-name, x-setup-function-keys):
17939 Unify doc-strings with X versions.
17940
17941 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
17942
17943 * emulation/crisp.el (crisp-mode-map): Move initialization
17944 into declaration.
17945 (crisp-mode): Use define-minor-mode.
17946
17947 * progmodes/xscheme.el (xscheme-evaluation-commands):
17948 Put a :advertised-binding property rather than using
17949 advertised-xscheme-send-previous-expression.
17950 (advertised-xscheme-send-previous-expression): Declare obsolete.
17951 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
17952 `advertised-undo'.
17953 (crisp-mode): Add corresponding bindings to
17954 undo's :advertised-binding instead.
17955 * dired.el (dired-mode-map): Put a :advertised-binding property rather
17956 than using dired-advertised-find-file.
17957 (dired-advertised-find-file):
17958 * simple.el (advertised-undo):
17959 * wid-edit.el (advertised-widget-backward): Declare obsolete.
17960 (widget-keymap): Put a :advertised-binding property rather
17961 than using advertised-widget-backward.
17962 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
17963 than using advertised-undo.
17964 * tutorial.el (tutorial--default-keys): Adjust accordingly.
17965
17966 2009-09-10 Simon South <ssouth@slowcomputing.org>
17967
17968 * progmodes/delphi.el (delphi-tab): Indent region when Transient
17969 Mark mode is enabled and region is active; otherwise indent or
17970 insert TAB as usual.
17971 (delphi-mode): Update description of TAB-key binding.
17972
17973 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
17974
17975 * subr.el (define-key-rebound-commands): Mark obsolete.
17976 * startup.el (precompute-menubar-bindings): Remove.
17977 (normal-top-level): Remove obsolete code that tried to precompute
17978 menubar bindings.
17979 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
17980 define-key-rebound-commands and precompute-menubar-bindings.
17981
17982 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
17983
17984 * net/imap.el (imap-interactive-login): Better messages.
17985 (imap-open): Fix bug with renamed buffer on reconnect.
17986 (imap-authenticate): Add buffer-local imap-last-authenticator variable
17987 for easier debugging and cleaner code. On successful (guessed based on
17988 server capabilities) secondary authentication, set imap-state
17989 correctly.
17990 (imap-last-authenticator): Define imap-last-authenticator as a variable
17991 to avoid warnings.
17992
17993 2009-09-10 Glenn Morris <rgm@gnu.org>
17994
17995 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
17996
17997 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
17998 (byte-compile-file-form-autoload): Don't warn about unknown functions
17999 where the autoload statement comes after the use.
18000 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
18001 that any handlers inside the body (eg require) are in turn respected.
18002
18003 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
18004 effects.
18005
18006 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
18007 and syntax and abbrev tables basic docs, if they don't have any.
18008
18009 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
18010
18011 * international/mule-cmds.el (top-level): Require cl when compiling.
18012 (view-hello-file): Use default-value rather than
18013 default-enable-multibyte-characters.
18014
18015 * progmodes/fortran.el: Move all safe and risky properties into the
18016 defcustoms.
18017
18018 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
18019 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
18020 * mail/undigest.el:
18021 Put autoloads in rmail.el rather than loaddefs.el.
18022 * mail/rmail.el: Regenerate with extracted autoloads.
18023
18024 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
18025 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
18026
18027 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
18028
18029 Reported in thread for Bug#4375.
18030 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
18031 "-data-evaluate-expression" instead of print.
18032 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
18033 (gdb-tooltip-print): Parse output from above MI command.
18034 (gdb): Revert 2009-08-11 change. User should detach inferior
18035 manually.
18036
18037 Remove the word "separate" from IO functions as inferior
18038 output is now never displayed in the GUD buffer.
18039
18040 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
18041
18042 * startup.el (command-line-normalize-file-name): On Windows and
18043 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
18044
18045 2009-09-10 Juri Linkov <juri@jurta.org>
18046
18047 * isearch.el (isearch-text-char-description): Propertize escape
18048 character sequences with the `escape-glyph' face. (Bug#4344)
18049
18050 * simple.el (shell-command): Set asynchronous process filter to
18051 `comint-output-filter'. (Bug#4343)
18052
18053 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
18054 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
18055 the list. Move "asm" to the bottom.
18056 (grep-find-ignored-directories): Add `choice' with nil value
18057 to empty the list easily.
18058 (grep-find-ignored-files): New option.
18059 (grep-files-history): Set to nil by default instead of '("ch" "el").
18060 (grep-compute-defaults): Add "<X>" to `grep-template'.
18061 (grep-read-files): Bind new local variables `default-alias' and
18062 `default-extension'. Use a list of default values for the file prompt.
18063 (lgrep): Add `--exclude=' command line options composed from
18064 `grep-find-ignored-files'.
18065 (rgrep): Add `-name' command line options composed from
18066 `grep-find-ignored-files'. (Bug#4301)
18067
18068 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
18069
18070 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
18071 (bug#4368).
18072
18073 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
18074
18075 * calendar/time-date.el (autoload):
18076 Expand define-obsolete-function-alias into defalias and make-obsolete
18077 for old Emacsen that Gnus supports.
18078 (with-no-warnings): Define it for old Emacsen.
18079 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
18080 is available.
18081 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
18082 float-time is available; suppress compile warning for time-to-seconds.
18083
18084 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
18085
18086 * net/imap.el (imap-message-map): Docstring fix.
18087
18088 2009-09-09 Glenn Morris <rgm@gnu.org>
18089
18090 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
18091 line numbers too. (Bug#4374)
18092
18093 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
18094
18095 * smerge-mode.el (smerge-remove-props, smerge-refine):
18096 Use with-silent-modifications (bug#4342).
18097
18098 * subr.el (with-silent-modifications): New macro.
18099
18100 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
18101
18102 * files.el (top-level): Require `cl' when compiling.
18103
18104 2009-09-07 Glenn Morris <rgm@gnu.org>
18105
18106 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
18107
18108 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
18109 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
18110
18111 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
18112
18113 * vc-git.el (vc-git-annotate-command): Use separator to parse
18114 arguments correctly.
18115
18116 2009-09-06 Eli Zaretskii <eliz@gnu.org>
18117
18118 * proced.el (proced-mode): Doc fix.
18119
18120 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
18121
18122 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
18123 lstat fails.
18124 (tramp-do-file-attributes-with-ls): Check for file existence at
18125 remote end.
18126 (tramp-do-file-attributes-with-stat): Likewise.
18127 (tramp-convert-file-attributes): Return nil when attr is nil.
18128
18129 2009-09-05 Glenn Morris <rgm@gnu.org>
18130
18131 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
18132 properties to this button.
18133 (diary-fancy-display): Don't extend the button to the final newline.
18134 (diary-fancy-display-mode): Continue to define "q" as a local key.
18135
18136 * calendar/cal-china.el (holiday-chinese): Make it slightly more
18137 efficient.
18138
18139 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
18140
18141 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
18142 (byte-compile-dest-file-function): New option.
18143 (byte-compile-dest-file): Doc fix.
18144 Obey byte-compile-dest-file-function.
18145 (byte-compile-cl-file-p): New function.
18146 (byte-compile-eval): Only suppress noruntime warnings about cl functions
18147 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
18148 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
18149 than for file being previously loaded.
18150 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
18151 (byte-compile-file-form-require): Handle the case where requiring a file
18152 indirectly causes CL to be loaded.
18153
18154 2009-09-05 Karl Fogel <kfogel@red-bean.com>
18155
18156 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
18157 before killing the old buffer, since by the time `kill-buffer' is
18158 run so many buffer variables have been set to nil that it may not
18159 behave as expected. (Bug#4061)
18160
18161 2009-09-05 Karl Fogel <kfogel@red-bean.com>
18162
18163 * files.el (find-alternate-file): If the old buffer is modified
18164 and visiting a file, behave similarly to `kill-buffer' when
18165 killing it, thus reverting to the pre-1.878 behavior; see
18166 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
18167 for discussion. Also, consult `buffer-file-name' as a variable
18168 not as a function, for consistency with the rest of the code.
18169
18170 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
18171
18172 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
18173 also when adding a new directory.
18174
18175 * net/tramp-compat.el (tramp-compat-line-beginning-position):
18176 New defun.
18177
18178 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
18179
18180 * files.el (locate-file-completion-table): Make it provide boundary
18181 information, so partial-completion works better.
18182
18183 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
18184
18185 * mail/footnote.el (Footnote-text-under-cursor):
18186 Check footnote-text-marker-alist before using it (bug#4324).
18187
18188 2009-09-04 Glenn Morris <rgm@gnu.org>
18189
18190 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
18191 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
18192 * play/solitaire.el, play/tetris.el:
18193 Remove leading * from defcustom and defface docs.
18194
18195 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
18196 necessary.
18197 (diary-fancy-overriding-map): New variable.
18198 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
18199 Use view-mode.
18200
18201 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
18202 goto-line.
18203
18204 2009-09-03 Glenn Morris <rgm@gnu.org>
18205
18206 * arc-mode.el (archive-mode):
18207 * dos-fns.el (set-default-process-coding-system):
18208 * man.el (Man-getpage-in-background):
18209 * menu-bar.el (menu-bar-describe-menu):
18210 * server.el (server-process-filter):
18211 * startup.el (command-line):
18212 * tar-mode.el (tar-header-block-tokenize, tar-extract):
18213 * w32-fns.el (set-default-process-coding-system):
18214 * x-dnd.el (x-dnd-handle-file-name):
18215 * international/mule-cmds.el (mule-menu-keymap)
18216 (set-default-coding-systems, language-info-alist, set-language-info)
18217 (set-language-environment, standard-display-european-internal)
18218 (set-locale-environment):
18219 * international/mule-diag.el (mule-diag):
18220 * mail/emacsbug.el (report-emacs-bug):
18221 * mail/rmail.el (rmail-mode):
18222 * mail/sendmail.el (mail-setup):
18223 Use default-value rather than default-enable-multibyte-characters.
18224
18225 * progmodes/f90.el: Move all safe properties into the defcustoms.
18226 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
18227
18228 * calendar/appt.el (appt-check):
18229 * calendar/diary-lib.el (diary-set-header, diary-live-p)
18230 (diary-check-diary-file, diary-list-entries)
18231 (diary-include-other-diary-files, diary-simple-display)
18232 (diary-fancy-display, diary-print-entries)
18233 (diary-mark-included-diary-files, diary-make-entry):
18234 Don't call substitute-in-file-name on diary-file.
18235
18236 2009-09-03 Eduard Wiebe <usenet@pusto.de>
18237 Stefan Monnier <monnier@iro.umontreal.ca>
18238
18239 * mail/footnote.el (footnote-prefix): Make it a defcustom.
18240 (footnote-mode-map): Move initialization into the declaration.
18241 (footnote-minor-mode-map): Define it rather than changing global-map.
18242 (footnote-mode): Use define-minor-mode.
18243
18244 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
18245
18246 * net/tramp.el (tramp-handle-file-attributes-with-ls)
18247 (tramp-do-file-attributes-with-perl)
18248 (tramp-do-file-attributes-with-stat): Rename from
18249 `tramp-handle-file-attributes-with-*'.
18250 (tramp-handle-file-attributes): Use them.
18251 (tramp-do-directory-files-and-attributes-with-perl)
18252 (tramp-do-directory-files-and-attributes-with-stat): Rename from
18253 `tramp-handle-directory-files-and-attributes-with-*'.
18254 (tramp-handle-directory-files-and-attributes): Use them.
18255 (tramp-method-out-of-band-p): Additional parameter SIZE.
18256 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
18257 (tramp-handle-write-region): Use it.
18258 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
18259 (tramp-handle-vc-registered): Check, whether the first run did
18260 return files to be tested.
18261 (tramp-advice-make-auto-save-file-name): Do not call directly
18262 `tramp-handle-make-auto-save-file-name', because this would bypass
18263 the locking mechanism.
18264
18265 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
18266 (file-remote-p, process-file, start-file-process, set-file-times)
18267 (tramp-compat-file-attributes): Compatibility functions shall not
18268 call directly `tramp-handle-*', because this would bypass the
18269 locking mechanism.
18270 (tramp-compat-number-sequence): New defun.
18271
18272 2009-09-02 Glenn Morris <rgm@gnu.org>
18273
18274 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
18275 alias for float-time.
18276 (time-to-number-of-days): In Emacs, use float-time.
18277 * net/newst-backend.el (time-add): Suppress warnings from compat
18278 function.
18279 * time.el (emacs-uptime, emacs-init-time):
18280 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
18281 Use float-time rather than time-to-seconds.
18282
18283 * minibuffer.el (completion-initials-expand): Fix typo.
18284
18285 * faces.el (modeline, modeline-inactive, modeline-highlight)
18286 (modeline-buffer-id):
18287 * info.el (info-menu-5): Mark these face aliases as obsolete.
18288
18289 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
18290
18291 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
18292 space ...
18293 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
18294 no "--thread" option.
18295 (gdb-stopped): Don't print "Switched to thread" message when it is
18296 unchanged.
18297
18298 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
18299
18300 * minibuffer.el (completion-try-completion)
18301 (completion-all-completions): Remove ill-defined (and
18302 mistakenly installed and luckily never used nor documented)
18303 `completion-styles' property.
18304 (completion-initials-expand, completion-initials-all-completions)
18305 (completion-initials-try-completion): New functions.
18306 (completion-styles-alist): Add doc to each entry.
18307 Add new `initials' entry.
18308
18309 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
18310
18311 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
18312 MI command -var-evaluate-expression.
18313 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
18314 and tweak for case of string child.
18315 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
18316
18317 2009-09-01 Glenn Morris <rgm@gnu.org>
18318
18319 * add-log.el (change-log-date-face, change-log-name-face)
18320 (change-log-email-face, change-log-file-face, change-log-list-face)
18321 (change-log-conditionals-face, change-log-function-face)
18322 (change-log-acknowledgement-face):
18323 * cus-edit.el (custom-invalid-face, custom-rogue-face)
18324 (custom-modified-face, custom-set-face, custom-changed-face)
18325 (custom-saved-face, custom-button-face, custom-button-pressed-face)
18326 (custom-documentation-face, custom-state-face, custom-comment-face)
18327 (custom-comment-tag-face, custom-variable-tag-face)
18328 (custom-variable-button-face, custom-face-tag-face)
18329 (custom-group-tag-face-1, custom-group-tag-face):
18330 * diff-mode.el (diff-header-face, diff-file-header-face)
18331 (diff-index-face, diff-hunk-header-face, diff-removed-face)
18332 (diff-added-face, diff-changed-face, diff-function-face)
18333 (diff-context-face, diff-nonexistent-face):
18334 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
18335 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
18336 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
18337 (Info-title-4-face):
18338 * isearch.el (isearch-lazy-highlight-face):
18339 * log-view.el (log-view-file-face, log-view-message-face):
18340 * paren.el (show-paren-match-face, show-paren-mismatch-face):
18341 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
18342 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
18343 (cvs-msg-face):
18344 * smerge-mode.el (smerge-mine-face, smerge-other-face)
18345 (smerge-base-face, smerge-markers-face):
18346 * wid-edit.el (widget-documentation-face, widget-button-face)
18347 (widget-field-face, widget-single-line-field-face)
18348 (widget-inactive-face, widget-button-pressed-face):
18349 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
18350 (woman-addition-face):
18351 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
18352 (eshell-ls-executable-face, eshell-ls-readonly-face)
18353 (eshell-ls-unreadable-face, eshell-ls-special-face)
18354 (eshell-ls-missing-face, eshell-ls-archive-face)
18355 (eshell-ls-backup-face, eshell-ls-product-face)
18356 (eshell-ls-clutter-face):
18357 * eshell/em-prompt.el (eshell-prompt-face):
18358 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
18359 * obsolete/old-whitespace.el (whitespace-highlight-face):
18360 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
18361 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
18362 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
18363 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
18364 (antlr-font-lock-literal-face):
18365 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
18366 (ebrowse-root-class-face, ebrowse-file-name-face)
18367 (ebrowse-default-face, ebrowse-member-attribute-face)
18368 (ebrowse-member-class-face, ebrowse-progress-face):
18369 * progmodes/make-mode.el (makefile-space-face):
18370 * progmodes/sh-script.el (sh-heredoc-face):
18371 * textmodes/flyspell.el (flyspell-incorrect-face)
18372 (flyspell-duplicate-face):
18373 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
18374 * textmodes/texinfo.el (texinfo-heading-face):
18375 Mark face aliases with "-face" suffix as obsolete.
18376
18377 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
18378 compiler.
18379
18380 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
18381 (eudc-bob-sound-menu): Use defvar rather than defconst, since
18382 easy-menu-define wants to modify these.
18383
18384 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
18385
18386 * net/browse-url.el (browse-url-file-url):
18387 * term/internal.el (dos-codepage-setup):
18388 Use default-value rather than default-enable-multibyte-characters.
18389
18390 * progmodes/etags.el (etags-goto-tag-location):
18391 * progmodes/flymake.el (flymake-highlight-line)
18392 (flymake-goto-file-and-line, flymake-goto-line):
18393 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
18394 (gdb-goto-breakpoint):
18395 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
18396 * progmodes/python.el (python-find-function)
18397 (python-pdbtrack-track-stack-file):
18398 * progmodes/verilog-mode.el (verilog-surelint-off):
18399 * term/ns-win.el (ns-open-file-select-line):
18400 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
18401 Use forward-line rather than goto-line.
18402
18403 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
18404 * textmodes/reftex-index.el (reftex-display-index):
18405 * textmodes/reftex-ref.el (reftex-offer-label-menu):
18406 * textmodes/reftex-toc.el (reftex-toc):
18407 Remove unnecessary bindings of default-major-mode (all are followed by
18408 major-mode check and possible mode switch).
18409
18410 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
18411
18412 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
18413 Handle watchpoints (bug#4282).
18414 (def-gdb-thread-buffer-command): Enable thread to be selected by
18415 clicking without selecting threads buffer first.
18416 (gdb-current-context-command): Use selected frame so that "up",
18417 "down" etc work in the GUD buffer.
18418 (gdb-update): Find selected frame before rendering stack buffer.
18419 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
18420
18421 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
18422
18423 * progmodes/sym-comp.el (displayed-completions): Remove.
18424 (symbol-complete): Use minibuffer-complete.
18425
18426 2009-08-31 Glenn Morris <rgm@gnu.org>
18427
18428 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
18429
18430 * apropos.el (apropos-symbols-internal):
18431 Handle (obsolete) face aliases.
18432
18433 * faces.el (describe-face): Adjust the output format to be more like
18434 describe-variable, and to mention (obsolete) face aliases.
18435 Adjust the whitespace so that help-setup-xref works.
18436
18437 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
18438 * calendar/diary-lib.el (diary-button-face):
18439 Mark these face aliases as obsolete.
18440
18441 * calendar/calendar.el (calendar-today): Doc fix.
18442
18443 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
18444
18445 * progmodes/gdb-mi.el (gdb-control-all-threads)
18446 (gdb-control-current-thread): Force tool bar update.
18447 (gdb-non-stop-handler): New function.
18448 (gdb-init-1): Use it to test if non-stop mode is supported.
18449 Remove unused gdbmi buffer type.
18450
18451 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
18452
18453 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
18454 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
18455
18456 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
18457
18458 * comint.el (comint-exec-1): Check command is non-null first.
18459 Part of gdb-mi.el change (2009-08-28).
18460
18461 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
18462
18463 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
18464
18465 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
18466
18467 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
18468 instead of `dolist' to avoid a recursive require when bootstrapping.
18469
18470 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
18471
18472 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
18473
18474 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
18475
18476 * net/imap.el (imap-send-command): Simplify.
18477 (imap-wait-for-tag): point-max -> buffer-size.
18478
18479 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
18480
18481 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
18482 with constant argument.
18483
18484 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
18485
18486 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
18487
18488 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
18489 Change default, since most of our files don't have a history.
18490 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
18491 the user.
18492
18493 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
18494 Add comint-run.
18495
18496 * calc/calc.el: Improve commenting convention.
18497 (calc-digit-map, toplevel): Simplify.
18498
18499 * comint.el (comint-insert-input): Be careful to only set point if we
18500 don't delegate to some other command.
18501
18502 * proced.el (proced-signal-list): Make it an alist.
18503 (proced-grammar-alist): Capitalize names.
18504 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
18505 Disable undo manually and make it read-only.
18506 Use completion-annotate-function.
18507
18508 * minibuffer.el (minibuffer-message): If the current buffer is not
18509 a minibuffer, insert the message in the echo area rather than at the
18510 end of the buffer.
18511 (completion-annotate-function): New variable.
18512 (minibuffer-completion-help): Use it.
18513 (completion--embedded-envvar-table): Environment vars are
18514 always case-sensitive.
18515
18516 2009-08-30 Glenn Morris <rgm@gnu.org>
18517
18518 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
18519 from fortran-current-defun.
18520 (fortran-beginning-of-subprogram): Be more precise about finding the
18521 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
18522 (fortran-end-of-subprogram): Simplify.
18523 (fortran-current-defun): Use fortran-start-prog-re.
18524
18525 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
18526
18527 * subr.el (do-after-load-evaluation): Simplify.
18528
18529 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
18530
18531 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
18532
18533 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
18534 (vc-rcs-print-log): Use it.
18535
18536 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
18537
18538 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
18539
18540 * paths.el (abbrev-file-name): Move to abbrev.el.
18541 * abbrev.el (abbrev-file-name): Move from paths.el.
18542 Obey user-emacs-directory.
18543 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
18544 user-emacs-directory.
18545 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
18546 abbrev-file-name and calc-settings-file any more.
18547 * startup.el (command-line): Recompute abbrev-file-name and
18548 abbreviated-home-dir.
18549 (normal-no-mouse-startup-screen): Improve the generic code and get rid
18550 of the special code for when C-h bindings haven't been changed.
18551 (display-startup-echo-area-message): Use with-current-buffer.
18552 (command-line-1): Use a list of strings, rather than a list of lists
18553 of strings for longopts.
18554
18555 * files.el (get-free-disk-space): Use / for default-directory.
18556
18557 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
18558 Use with-current-buffer.
18559
18560 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
18561 Recognize immutable variables like most-positive-fixnum.
18562 (byte-compile-setq-default): Check and warn if trying to assign
18563 to an immutable variable, or a non-variable.
18564
18565 * progmodes/cc-vars.el (c-comment-continuation-stars):
18566 * progmodes/cc-engine.el (c-looking-at-bos):
18567 * progmodes/cc-cmds.el (c-toggle-auto-state)
18568 (c-forward-into-nomenclature, c-backward-into-nomenclature)
18569 (c-comment-line-break-function): Add version of obsolescence.
18570
18571 2009-08-28 Juri Linkov <juri@jurta.org>
18572
18573 * files.el (magic-fallback-mode-alist): Add ZIP magic number
18574 associated with `archive-mode'.
18575
18576 * image.el (image-type-header-regexps): Use only JPEG magic number
18577 to determine JPEG images, and don't use `image-jpeg-p' because
18578 Emacs can display non-JFIF non-Exif JPEG images.
18579
18580 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
18581
18582 * arc-mode.el (archive-mode):
18583 * emacs-lisp/re-builder.el (re-builder-unload-function):
18584 Protect against the default value of `major-mode' being nil.
18585
18586 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
18587
18588 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
18589 Fix typos in docstrings.
18590
18591 * progmodes/js.el (js--macro-decl-re): Doc fix.
18592 (js--plain-method-re, js--split-name): Refloc docstring.
18593 (js--class-styles, js--make-merged-item, js--splice-into-items):
18594 Fix typos in docstrings; reflow docstrings.
18595 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
18596 (js--variable-decl-matcher, js--inside-pitem-p)
18597 (js--parse-state-at-point, js--get-all-known-symbols)
18598 (js--symbol-history, js-find-symbol, js--js-references)
18599 (js--moz-interactor, js--js-encode-value, js--read-tab):
18600 Fix typos in docstrings.
18601
18602 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
18603
18604 * textmodes/reftex.el (reftex-get-file-buffer-force):
18605 * progmodes/verilog-mode.el (verilog-batch-execute-func):
18606 * emulation/viper.el (viper-go-away, viper-set-hooks):
18607 * emacs-lisp/re-builder.el (re-builder-unload-function):
18608 * emacs-lisp/bytecomp.el (byte-compile-file):
18609 * ses.el (ses-unload-function):
18610 * hexl.el (hexl-find-file):
18611 * files.el (normal-mode):
18612 * ehelp.el (with-electric-help):
18613 * autoinsert.el (auto-insert-alist):
18614 * arc-mode.el (archive-mode):
18615 Use (default-value 'major-mode) instead of default-major-mode.
18616
18617 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
18618 * international/mule.el (load-with-code-conversion):
18619 * emacs-lisp/debug.el (debug):
18620 * ediff-vers.el (ediff-rcs-get-output-buffer):
18621 * dired.el (dired-internal-noselect): Don't let-bind
18622 default-major-mode around code that doesn't use it.
18623 E.g. buffer creation via get-buffer-create doesn't use it.
18624
18625 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
18626
18627 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
18628 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
18629 when writing the temp file. Otherwise, epa-file gets confused.
18630 (tramp-register-file-name-handlers): Make it a defun. Move also
18631 `epa-file-handler' to the front of `file-name-handler-alist'.
18632
18633 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
18634
18635 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
18636 start right after a ^M.
18637 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
18638 (tramp-completion-file-name-regexp-separate)
18639 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
18640 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
18641 Don't modify last-coding-system-used by accident.
18642 (tramp-completion-file-name-handler): Apply the checks here,
18643 instead during registration.
18644 (tramp-register-file-name-handlers): Rename from
18645 `tramp-register-file-name-handler'. Register both
18646 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
18647 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
18648
18649 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
18650
18651 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
18652 Remove variable ...
18653 (gdb-init-1, gdb-display-separate-io-buffer)
18654 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
18655 references to it.
18656 (gdb-inferior-io-mode): Use make-comint-in-buffer.
18657 (gdb-inferior-filter): Use comint-output-filter to stop
18658 echoing and remove ^M characters.
18659
18660 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
18661
18662 * emulation/viper-init.el (viper-restore-cursor-type):
18663 * emulation/cua-base.el (cua--update-indications):
18664 Replace default-cursor-type with (default-value 'cursor-type).
18665
18666 * mail/sendmail.el (mail-recover-1):
18667 * international/mule-diag.el (describe-current-coding-system-briefly)
18668 (describe-current-coding-system):
18669 * international/mule-cmds.el (select-safe-coding-system)
18670 (select-message-coding-system)
18671 (set-language-environment-coding-systems, set-locale-environment):
18672 * hexl.el (hexl-insert-multibyte-char):
18673 * dos-w32.el (find-buffer-file-type-coding-system):
18674 * simple.el (what-cursor-position):
18675 Replace uses of default-buffer-file-coding-system
18676 with (default-value 'buffer-file-coding-system).
18677
18678 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
18679 Replace uses of default-cursor-in-non-selected-windows
18680 with (default-value 'cursor-in-non-selected-windows).
18681 Use with-current-buffer.
18682
18683 * mail/feedmail.el: Use CL macros.
18684 (feedmail-run-the-queue, feedmail-send-it-immediately):
18685 * dos-w32.el (find-buffer-file-type): Replace uses of
18686 default-buffer-file-type with (default-value 'buffer-file-type).
18687
18688 2009-08-28 Glenn Morris <rgm@gnu.org>
18689
18690 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
18691 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
18692 Use default-value of major-mode rather than default-major-mode.
18693
18694 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
18695
18696 * Makefile.in (update-elcfiles): Report left over elc files.
18697
18698 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
18699 expand-file-name and with-current-buffer.
18700 (mail-get-names, mail-directory): Use with-current-buffer.
18701
18702 * vc.el (vc-read-revision): New function.
18703 (vc-version-diff, vc-merge): Use it.
18704
18705 2009-08-27 Sam Steingold <sds@gnu.org>
18706
18707 * simple.el (kill-do-not-save-duplicates): New user option.
18708 (kill-new): When it is non-nil, and the new string is the same as
18709 the latest kill, set replace to t to avoid duplicates in kill-ring.
18710
18711 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
18712
18713 * net/tramp.el (tramp-handle-process-file): Do not flush all
18714 caches when `process-file-side-effects' is set.
18715 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
18716 instead of `tramp-find-file-exists-command'.
18717 Unset `process-file-side-effects'.
18718
18719 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
18720
18721 * net/tramp.el (tramp-methods): New method "rsyncc".
18722 (top): Add completion function for "rsyncc".
18723 (tramp-message-show-message): New defvar.
18724 (tramp-message, tramp-error): Use it.
18725 (tramp-do-copy-or-rename-file-directly): Extend check for direct
18726 remote copying.
18727 (tramp-do-copy-or-rename-file-out-of-band): Handle new
18728 `tramp-methods' entry `copy-env' of "rsyncc".
18729 (tramp-vc-registered-read-file-names): New defconst.
18730 (tramp-vc-registered-file-names): New defvar.
18731 (tramp-handle-vc-registered): Implement optimization strategy.
18732 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
18733 (tramp-vc-file-name-handler): New defun.
18734 (tramp-get-ls-command, tramp-get-test-command)
18735 (tramp-get-file-exists-command, tramp-get-remote-ln)
18736 (tramp-get-remote-perl, tramp-get-remote-stat)
18737 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
18738
18739 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
18740 (tramp-cache-inhibit-cache): Extend doc string. It allows also
18741 timestamps.
18742 (tramp-get-file-property): Check for timestamps in
18743 `tramp-cache-inhibit-cache'.
18744 (tramp-set-file-property): Write timestamp.
18745
18746 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
18747
18748 * language/japan-util.el (japanese-symbol-table): Add entries for
18749 cp932-2-byte.
18750
18751 * international/characters.el: Add category `j' to cp932-2-byte.
18752
18753 2009-08-27 Kenichi Handa <handa@m17n.org>
18754
18755 * international/fontset.el (build-default-fontset-data): New macro.
18756 (setup-default-fontset): Use build-default-fontset-data for CJK,
18757 tibetan, ethiopic, and ipa.
18758
18759 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
18760
18761 * cus-start.el (default-major-mode): Customize `major-mode' instead.
18762 (enable-multibyte-characters): Not customizable any more.
18763
18764 * subr.el (default-mode-line-format, default-header-line-format)
18765 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
18766 (default-direction-reversed, default-truncate-lines)
18767 (default-left-margin, default-tab-width, default-case-fold-search)
18768 (default-left-margin-width, default-right-margin-width)
18769 (default-left-fringe-width, default-right-fringe-width)
18770 (default-fringes-outside-margins, default-scroll-bar-width)
18771 (default-vertical-scroll-bar, default-indicate-empty-lines)
18772 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
18773 (default-fringe-cursor-alist, default-scroll-up-aggressively)
18774 (default-scroll-down-aggressively, default-fill-column)
18775 (default-cursor-type, default-buffer-file-type)
18776 (default-cursor-in-non-selected-windows)
18777 (default-buffer-file-coding-system, default-major-mode)
18778 (default-enable-multibyte-characters): Mark as obsolete.
18779
18780 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
18781
18782 * vc-dir.el (vc-dir-update): Remove debug helper.
18783
18784 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
18785
18786 2009-08-26 Sam Steingold <sds@gnu.org>
18787
18788 * simple.el (save-interprogram-paste-before-kill): New user option.
18789 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
18790 save the interprogram-paste into kill-ring before overriding it
18791 with the Emacs kill.
18792
18793 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
18794
18795 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
18796 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
18797 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
18798 and move to vc-rcs.el.
18799 (vc-default-next-revision): Rename to vc-rcs-next-revision and
18800 move to vc-rcs.el.
18801 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
18802 (vc-rcs-update-changelog): Remove.
18803 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
18804 and move to vc-rcs.el.
18805
18806 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
18807 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
18808 renaming.
18809 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
18810 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
18811 vc.el, renamed to be RCS specific.
18812
18813 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
18814 New functions.
18815 (vc-cvs-update-changelog): Move here from vc.el.
18816
18817 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
18818 New functions.
18819
18820 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
18821
18822 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
18823
18824 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
18825
18826 * vc-git.el (vc-git-register): Use "git add" for directories.
18827 (vc-git-stash, vc-git-stash-show): New functions.
18828 (vc-git-extra-menu-map): Bind them.
18829
18830 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
18831 directory correctly in case the item is a directory itself.
18832
18833 * vc.el: Document the desired behavior for reverted files in the
18834 `added' state.
18835 (vc-default-prettify-state-info): Remove function, unused.
18836
18837 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
18838
18839 2009-08-26 Glenn Morris <rgm@gnu.org>
18840
18841 * bindings.el (standard-mode-line-format): Reposition dashes in
18842 which-func entry. (Bug#4217)
18843
18844 * files.el (enable-local-variables, enable-local-eval)
18845 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
18846 the defcustoms.
18847 (auto-mode-alist, ignored-local-variables)
18848 (save-some-buffers-action-alist): Move risky declarations to the
18849 definitions.
18850 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
18851 (font-lock-defaults, format-alist, imenu--index-alist)
18852 (imenu-generic-expression, input-method-alist, minor-mode-alist)
18853 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
18854 (mode-line-modified, mode-line-mule-info, mode-line-position)
18855 (mode-line-process, mode-line-remote, outline-level)
18856 (parse-time-rules, rmail-output-file-alist)
18857 (special-display-buffer-names, vc-mode):
18858 Move risky declarations to the relevant files.
18859 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
18860 (mode-line-modified, mode-line-process, mode-line-position)
18861 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
18862 * font-core.el (font-lock-defaults):
18863 * format.el (format-alist):
18864 * vc-hooks.el (vc-mode):
18865 * window.el (special-display-buffer-names):
18866 * international/mule-cmds.el (input-method-alist):
18867 Define riskiness here (dumped file) rather than in files.el.
18868 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
18869 * imenu.el (imenu-generic-expression, imenu--index-alist):
18870 * outline.el (outline-level):
18871 * time.el (display-time-string):
18872 * calendar/parse-time.el (parse-time-rules):
18873 * mail/rmailout.el (rmail-output-file-alist):
18874 Autoload riskiness here, rather than placing in files.el.
18875
18876 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
18877
18878 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
18879
18880 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
18881
18882 * simple.el (process-file-side-effects): New defvar.
18883
18884 * dired-aux.el (dired-show-file-type):
18885 * vc.el (vc-diff-internal):
18886 * vc-arch.el (vc-arch-diff):
18887 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
18888 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
18889 * vc-git.el (vc-git-registered, vc-git-working-revision)
18890 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
18891 (vc-git--empty-db-p):
18892 * vc-hooks.el (vc-user-login-name):
18893 * vc-svn.el (vc-svn-registered, vc-svn-state)
18894 (vc-svn-dir-extra-headers, vc-svn-find-revision):
18895 * progmodes/grep.el (grep-probe): Let-bind
18896 `process-file-side-effects' with nil.
18897
18898 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
18899
18900 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
18901 daemon. Replace ping by checking for running service for bluez
18902 and zeroconf. (Bug#4239)
18903
18904 2009-08-25 Kevin Ryde <user42@zip.com.au>
18905
18906 * net/dig.el (dig): Add autoload cookie.
18907
18908 2009-08-25 Glenn Morris <rgm@gnu.org>
18909
18910 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
18911 load-history for absolute file-names.
18912 (byte-compile-file-form-require): Warn about use of the cl package.
18913
18914 * format.el (format-alist): Doc fix.
18915
18916 * play/bubbles.el (top-level): Don't require cl at run-time.
18917
18918 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
18919 run-time cl).
18920
18921 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
18922
18923 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
18924 from cl package.
18925 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
18926
18927 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
18928
18929 * calc/calc-alg.el (math-trig-rewrite)
18930 (math-hyperbolic-trig-rewrite): New functions.
18931 (calc-simplify): Simplify trig functions when asked.
18932
18933 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
18934
18935 * diff-mode.el (diff-find-source-location): Avoid goto-line.
18936
18937 2009-08-24 Kenichi Handa <handa@m17n.org>
18938
18939 * language/ind-util.el (mapthread): Delete it.
18940 (combinatorial): New function.
18941 (indian--puthash-cv): Use combinatorial instead of mapthread.
18942
18943 2009-08-22 Kevin Ryde <user42@zip.com.au>
18944
18945 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
18946 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
18947 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
18948 Clarify docstring that the value is strings not symbols.
18949 (checkdoc-list-of-strings-p): New function.
18950
18951 2009-08-22 Glenn Morris <rgm@gnu.org>
18952
18953 * files.el (auto-mode-alist):
18954 * hippie-exp.el (he-concat-directory-file-name):
18955 * lpr.el (lpr-windows-system, printer-name):
18956 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
18957 * ps-print.el (ps-windows-system):
18958 * startup.el (command-line):
18959 * emulation/viper-ex.el (viper-glob-function):
18960 * international/mule-cmds.el (set-language-environment-coding-systems):
18961 * net/ange-ftp.el (ange-ftp-write-region):
18962 * obsolete/fast-lock.el (fast-lock-cache-name):
18963 Remove code for defunct system-types emx, macos, mswindows, next-mach,
18964 unisoft-unix, vax-vms, win32, w32.
18965
18966 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
18967 given name if the pattern is not more specific.
18968
18969 * calendar/lunar.el (lunar-phase-names): New option.
18970 (lunar-phase): Doc fix.
18971 (lunar-cycles-per-year): New constant.
18972 (lunar-index): New function.
18973 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
18974 (lunar-phase-name): Use lunar-phase-names.
18975 (calendar-lunar-phases): Use format.
18976 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
18977
18978 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
18979 Copy imenu-example--name-and-position function here for own use.
18980 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
18981
18982 * bs.el (bs--redisplay):
18983 * cus-edit.el (custom-redraw):
18984 * ibuffer.el (ibuffer-bury-buffer):
18985 * server.el (server-goto-line-column):
18986 * startup.el (command-line-1):
18987 * strokes.el (strokes-xpm-for-stroke):
18988 * term.el (term-display-buffer-line):
18989 * view.el (View-goto-line):
18990 * calc/calc.el (calc-do, calc-trail-buffer):
18991 * play/gamegrid.el (gamegrid-add-score-insecure):
18992 * progmodes/ada-mode.el (ada-compile-goto-error):
18993 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
18994 (ebrowse-select-1st-to-9nth):
18995 * progmodes/cperl-mode.el (cperl-time-fontification):
18996 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
18997 * progmodes/gud.el (gud-display-line):
18998 (idlwave-shell-display-line):
18999 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
19000 * progmodes/make-mode.el (makefile-browser-toggle):
19001 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
19002 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
19003 * textmodes/picture.el (picture-draw-rectangle):
19004 * textmodes/reftex-index.el (reftex-index-goto-letter):
19005 (reftex-select-jump-to-previous):
19006 * textmodes/reftex-sel.el (reftex-find-start-point)
19007 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
19008 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
19009 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
19010 * textmodes/tex-mode.el (tex-compilation-parse-errors):
19011 * textmodes/two-column.el (2C-associated-buffer):
19012 Use forward-line rather than goto-line.
19013
19014 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
19015 goto-line.
19016
19017 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
19018 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
19019 (quick-check-list-to-regexp): Declare.
19020
19021 * progmodes/make-mode.el (makefile-browser-insert-selection):
19022 Use goto-char rather than goto-line.
19023
19024 * progmodes/prolog.el (compilation-error-regexp-alist)
19025 (compilation-forget-errors): Declare.
19026
19027 2009-08-22 Juri Linkov <juri@jurta.org>
19028
19029 * progmodes/grep.el (lgrep, rgrep): At the beginning
19030 set `dir' to `default-directory' unless `dir' is a non-nil
19031 readable directory. (Bug#4052)
19032 (lgrep, rgrep): Change a weird way to report an error
19033 from using `read-string' to using `error'.
19034 Instead of using interactive arguments in the function body,
19035 add new argument `confirm'.
19036
19037 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
19038
19039 * textmodes/remember.el (remember-buffer):
19040 * progmodes/cperl-mode.el (cperl-vc-header-alist):
19041 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
19042 (icalendar-extract-ical-from-buffer):
19043 * net/newst-treeview.el (newsticker-groups-filename):
19044 * net/newst-backend.el (newsticker-cache-filename):
19045 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
19046 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
19047 (speedbar-add-ignored-path-regexp, speedbar-line-path)
19048 (speedbar-buffers-line-path, speedbar-path-line)
19049 (speedbar-buffers-line-path):
19050 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
19051 (epg-sign-keys):
19052 * epa.el (epa-display-verify-result):
19053 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
19054
19055 2009-08-21 Glenn Morris <rgm@gnu.org>
19056
19057 * progmodes/js.el (inferior-moz-process): Fix declaration.
19058
19059 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
19060
19061 * obsolete/rnewspost.el (news-mail-reply):
19062 Use goto-char rather than goto-line.
19063
19064 * term/ns-win.el (ns-open-file-select-line):
19065 Use line-beginning-position rather than goto-line.
19066
19067 * apropos.el (apropos-command):
19068 * ehelp.el (electric-helpify):
19069 * printing.el (pr-show-setup):
19070 * strokes.el (strokes-help):
19071 * tutorial.el (tutorial--describe-nonstandard-key)
19072 (tutorial--detailed-help):
19073 * woman.el (woman-mini-help, woman-display-extended-fonts):
19074 * calc/calc-help.el (calc-describe-key):
19075 * emulation/edt.el (edt-electric-helpify):
19076 * international/mule-diag.el (mule-diag):
19077 * play/yow.el (apropos-zippy):
19078 * progmodes/python.el (python-describe-symbol):
19079 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
19080 * textmodes/table.el (*table--cell-describe-mode)
19081 (*table--cell-describe-bindings):
19082 Use help-print-return-message rather than the now obsolete alias.
19083
19084 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
19085 (calendar-cursor-to-visible-date):
19086 * play/5x5.el (5x5-position-cursor):
19087 * play/decipher.el (decipher):
19088 * play/gomoku.el (gomoku-goto-xy):
19089 * play/landmark.el (lm-goto-xy):
19090 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
19091 (mpuz-paint-digit):
19092 Use forward-line, not goto-line.
19093
19094 * mail/rmail.el (rmail-obsolete): Delete custom group.
19095 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
19096 (rmail-remote-password, rmail-remote-password-required):
19097 Remove unneeded :set-after and :set properties.
19098
19099 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
19100
19101 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
19102
19103 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
19104
19105 * loadup.el: Remove leftover macos code.
19106
19107 * vc-git.el (vc-git-annotate-command): Run asynchronously.
19108 Explicitly pass the date format to git blame so that user local
19109 so that the output format can be parsed.
19110
19111 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
19112
19113 * net/dbus.el (top): Don't check for (getenv
19114 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
19115
19116 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
19117
19118 * log-edit.el (log-edit-strip-single-file-name): New var.
19119 (log-edit-insert-changelog): Use it. Bug#3571
19120
19121 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
19122
19123 * subr.el (read-passwd): Use read-key so keypad keys work as well.
19124 Bug#3287
19125
19126 * help.el (help-print-return-message): Rename from
19127 print-help-return-message.
19128
19129 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
19130 cvs-mode-map parent hack.
19131 (log-view-mode): Derive from special-mode.
19132
19133 * linum.el (linum-mode): window-size-change-functions is redundant.
19134 Adapt to new window-configuration-change-hook behavior.
19135 (linum-after-size, linum-after-config): Remove.
19136
19137 * imenu.el (imenu-example--name-and-position)
19138 (imenu-example--lisp-extract-index-name)
19139 (imenu-example--create-lisp-index, imenu-example--create-c-index):
19140 Mark as obsolete.
19141
19142 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
19143 (inferior-prolog-mode): Use it.
19144 (inferior-prolog-load-file): Reset list of errors.
19145
19146 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
19147
19148 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
19149
19150 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
19151
19152 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
19153
19154 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
19155 is running already.
19156
19157 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
19158
19159 * subr.el (listify-key-sequence-1): Use normal syntax since those
19160 integers are nowadays always represented by the same (positive) number
19161 on all platforms.
19162 (read-key-empty-map): New const.
19163 (read-key-delay): New var.
19164 (read-key): New function.
19165 (force-mode-line-update): Use with-current-buffer.
19166 (locate-user-emacs-file): Don't forget to abbreviate the file name.
19167 (start-process-shell-command, start-file-process-shell-command):
19168 Discourage the use of command-args.
19169
19170 2009-08-19 Glenn Morris <rgm@gnu.org>
19171
19172 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
19173
19174 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
19175
19176 * simple.el (choose-completion-string): Don't rely on
19177 minibuffer-completing-file-name and ad-hoc checks to decide whether
19178 to continue completion or not.
19179
19180 * minibuffer.el (minibuffer-hide-completions): New function.
19181 (completion--do-completion): Use it.
19182 (completions-annotations): New face.
19183 (completion--insert-strings): Use it.
19184 (completion-pcm--delim-wild-regex): Add docstring.
19185 (completion-pcm--string->pattern): Add support for 0-width delimiters
19186 in completion-pcm--delim-wild-regex.
19187
19188 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
19189
19190 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
19191 Remove unused var `buffer-modified-p'.
19192
19193 * minibuffer.el (completion--do-completion): Move point for the #b001
19194 case as well (bug#4176).
19195 (minibuffer-complete, minibuffer-complete-word): Don't move point.
19196
19197 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
19198
19199 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
19200 and :session buses.
19201
19202 2009-08-18 Kenichi Handa <handa@m17n.org>
19203
19204 * international/ucs-normalize.el (ucs-normalize-version):
19205 Change to 1.1.
19206 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
19207 (utf-8-hfs): Make it perform normalization on encoding too.
19208
19209 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
19210 (sentence-end-without-space): Delete duplicated chars.
19211 (sentence-end-base): Likewise.
19212
19213 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
19214 (html-mode): Delete duplicated chars from sentence-end-base.
19215
19216 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
19217 (texinfo-mode): Delete duplicated chars from sentence-end-base.
19218
19219 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
19220
19221 * files.el (hack-one-local-variable): If the mode function is for
19222 a minor mode, pass it an argument (Bug#4148).
19223
19224 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
19225
19226 * net/tramp.el (tramp-register-completion-file-name-handler):
19227 Check also for (member 'partial-completion completion-styles).
19228
19229 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
19230
19231 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
19232 abbrev (Bug#3943).
19233
19234 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
19235
19236 * progmodes/cperl-mode.el: Merge upstream 6.2.
19237 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
19238 (cperl-forward-re): Check cperl-brace-recursing.
19239 (cperl-highlight-charclass): New function.
19240 (cperl-find-pods-heres): Use it.
19241 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
19242 (cperl-beautify-regexp-piece): Fix column calculation.
19243 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
19244 (cperl-beautify-level): Don't process entire regexp.
19245 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
19246 calling man.
19247 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
19248 (cperl-init-faces): Build a list in the normal way.
19249
19250 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
19251
19252 * calendar/parse-time.el (parse-time-string-chars): Save match
19253 data.
19254
19255 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
19256
19257 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
19258 (sql-product): Use it.
19259 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
19260 (sql-set-product): Add completion.
19261 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
19262 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
19263 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
19264 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
19265 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
19266 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
19267 (sql-highlight-db2-keywords): Remove.
19268 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
19269 (sql-highlight-product): Use derived-mode-p.
19270 (sql-set-sqli-buffer): Use with-current-buffer.
19271 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
19272 Simplify.
19273
19274 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
19275
19276 * term.el: Fix commenting convention, turn comments into docstrings.
19277
19278 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
19279
19280 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
19281
19282 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
19283
19284 * calendar/parse-time.el (parse-time-string-chars): Compute using
19285 character classes, to handle non-ascii characters (Bug#3190).
19286
19287 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
19288
19289 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
19290 another heredoc if the user adds another < (Bug#3226).
19291
19292 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
19293 Don't initialize based on window-system (Bug#4124).
19294
19295 * facemenu.el (facemenu-read-color): Use a completion function
19296 that accepts any defined color, such as RGB triplets (Bug#3677).
19297
19298 * files.el (get-free-disk-space): Change fallback default
19299 directory to /. Expand DIR argument before switching to fallback.
19300 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
19301
19302 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
19303
19304 * files.el (load-library): Doc fix.
19305
19306 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
19307
19308 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
19309 (viper-if-string): Redefine C-s in the minibuffer to insert the last
19310 incremental search string.
19311
19312 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
19313 XEmacs.
19314
19315 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
19316 (ediff-merge-region-is-non-clash)
19317 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
19318 Also check if the job is really a merge job.
19319
19320 * ediff.el (ediff-current-file): New function.
19321
19322 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
19323
19324 * progmodes/js.el: Edit docstrings throughout to follow Emacs
19325 conventions.
19326 (js-insert-and-indent): Delete function.
19327 (js-mode-map): Don't bind keys to js-insert-and-indent.
19328 (js-beginning-of-defun): Rename from js--beginning-of-defun.
19329 (js-end-of-defun): Rename from js--end-of-defun.
19330 (js-auto-indent-flag): Delete variable.
19331
19332 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
19333
19334 * progmodes/js.el: Remove proclaim statement.
19335 Defvar which-func-imenu-joiner-function to silence compiler.
19336
19337 * files.el (auto-mode-alist): Use js-mode for .js files.
19338
19339 * progmodes/js2-mode.el: Remove file.
19340
19341 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
19342
19343 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
19344
19345 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
19346
19347 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
19348 Karl Landstrom <karl.landstrom@brgeight.se>
19349
19350 * progmodes/js.el: New file.
19351
19352 2009-08-14 Mark A. Hershberger <mah@everybody.org>
19353
19354 * timezone.el (timezone-parse-date): Add ability to understand ISO
19355 basic format (minimal separators) dates in addition to the
19356 already-supported extended format dates.
19357
19358 2009-08-14 Eli Zaretskii <eliz@gnu.org>
19359
19360 * international/ucs-normalize.el: Add a `coding' file variable.
19361
19362 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
19363
19364 2009-08-14 Sam Steingold <sds@gnu.org>
19365
19366 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
19367
19368 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
19369
19370 * faces.el (help-argument-name): Define it here instead of
19371 help-fns.el, because in daemon mode help-fns.el may be loaded when
19372 faces are still uninitialized (Bug#1078).
19373
19374 * help-fns.el (help-argument-name): Move defface to faces.el.
19375
19376 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
19377
19378 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
19379 create buffer with a pty but no process so that GDB can make the
19380 inferior the controlling process.
19381
19382 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
19383
19384 * international/ucs-normalize.el: New file.
19385
19386 2009-08-13 Richard Stallman <rms@gnu.org>
19387
19388 * mail/rmail.el (rmail-get-attr-names):
19389 Accept an attribute header that is too short.
19390
19391 * mail/rmail.el (rmail-forget-messages):
19392 Ignore nil elt in rmail-message-vector. Use dotimes.
19393
19394 * progmodes/compile.el (compilation-goto-locus):
19395 Use next-error-move-function.
19396
19397 * simple.el (next-error-move-function): New variable.
19398
19399 2009-08-12 Juri Linkov <juri@jurta.org>
19400
19401 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
19402 always non-nil. (Bug#4052)
19403
19404 * replace.el (read-regexp): Return empty string when
19405 `default-value' is nil.
19406 (keep-lines-read-args): Don't use empty string as the
19407 default value for `read-regexp'. (Bug#2495)
19408
19409 2009-08-12 Juri Linkov <juri@jurta.org>
19410
19411 * international/mule-cmds.el (ucs-insert): Change arguments
19412 from `arg' to `character', `count', `inherit' to be the same
19413 as in `insert-char'. Doc fix. (Bug#4039)
19414
19415 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
19416
19417 2009-08-12 Juri Linkov <juri@jurta.org>
19418
19419 * files-x.el: New file.
19420
19421 * files.el: Move code that deals with adding/deleting
19422 file/directory-local variables to files-x.el.
19423
19424 * Makefile.in (ELCFILES): Add files-x.elc.
19425
19426 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
19427
19428 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
19429 to use `goto-line'.
19430 (gdb-place-breakpoints, gdb-get-location): Rewritten without
19431 `goto-line'.
19432 (gdb-invalidate-disassembly): Do not refresh upon receiving
19433 'update signal. Instead, update all disassembly buffers only after
19434 threads list.
19435 (gdb): Send -target-detach when buffer is killed (Bug#3794).
19436 (gdb-starting): Move -data-list-register-names...
19437 (gdb-stopped): ...here so it's sent when first thread stops.
19438 (gdb-registers-handler-custom): Do nothing if register names are
19439 unknown yet.
19440
19441 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
19442 from `gdb-mi.el' to avoid extra tangling.
19443
19444 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
19445 change which breaks `gud-def' definitions used in `gdb'.
19446 (gdb-update-gud-running): No extra fuss for updating frame number.
19447
19448 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
19449
19450 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
19451 (describe-language-environment-map, setup-language-environment-map)
19452 (set-coding-system-map): Move initialization into declaration.
19453 (set-language-info-alist): Last arg to define-key-after can be skipped.
19454
19455 * international/quail.el (quail-completion-1): Simplify.
19456 (quail-define-rules): Use slightly more compact code.
19457 (quail-insert-decode-map): Propertize keys, compact columns.
19458
19459 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
19460 Add goto-line.
19461
19462 2009-08-10 Miles Bader <miles@gnu.org>
19463
19464 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
19465 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
19466 (js2-instance-member, js2-private-member, js2-private-function-call)
19467 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
19468 (js2-magic-paren, js2-external-variable):
19469 Remove "-face" suffix from face names.
19470 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
19471 (js2-highlight-undeclared-vars, js2-peek-token)
19472 (js2-parse-function-params, js2-mode-show-errors)
19473 (js2-mode-show-warnings, js2-make-magic-delimiter)
19474 (js2-mode-highlight-magic-parens): Update to use new face names.
19475
19476 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
19477
19478 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
19479 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
19480
19481 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
19482
19483 * subr.el: Provide hashtable-print-readable.
19484
19485 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
19486 hs-c-like-adjust-block-beginning.
19487 (hs-hide-block-at-point): Stop hiding at the beginning of
19488 hs-block-end-regexp (Bug#700).
19489
19490 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
19491
19492 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
19493 a macro.
19494 (gdb-registers-handler-custom): Do not fail when register names
19495 are unavailable.
19496
19497 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
19498
19499 * progmodes/gdb-mi.el (gdb-control-all-threads)
19500 (gdb-control-current-thread): Interactive setters for
19501 `gdb-gud-control-all-threads' to use in menu.
19502 (gdb-show-run-p): Show «Go» when process is not active.
19503 (gud-tool-bar-map): Add non-stop/A,T indicator.
19504 Uses gud/thread.xpm and gud/all.xpm.
19505
19506 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
19507
19508 * net/net-utils.el (net-utils-font-lock-keywords): New var.
19509 (nslookup-font-lock-keywords): Make it a variable.
19510 (net-utils-mode): New mode for viewing diagnostic network output.
19511 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
19512 (net-utils-run-simple): New function.
19513 (ifconfig, iwconfig, netstat, arp, route): Use it.
19514
19515 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
19516
19517 * progmodes/gdb-mi.el (gdb-read-memory-custom)
19518 (gdb-memory-set-address, def-gdb-set-positive-number)
19519 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
19520 after changing settings.
19521 (gdb-invalidate-disassembly): Update when first shown.
19522 (gdb-edit-locals-value): Fixed.
19523 (gdb-registers-handler-custom): Print registers in right order and
19524 allow changing register values (only for current thread yet).
19525 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
19526 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
19527 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
19528 (gdb-locals-handler-custom, gdb-registers-handler-custom):
19529 Thread info in mode name.
19530 (gdb-registers-mode-map): TAB to switch to locals.
19531
19532 2009-08-08 Eli Zaretskii <eliz@gnu.org>
19533
19534 * mail/rmail.el (rmail-add-mbox-headers)
19535 (rmail-set-message-counters-counter): Search for
19536 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
19537
19538 2009-08-08 Glenn Morris <rgm@gnu.org>
19539
19540 * Makefile.in (ELCFILES): Update.
19541
19542 2009-08-07 Eli Zaretskii <eliz@gnu.org>
19543
19544 * mail/sendmail.el (mail-yank-original):
19545 Set buffer-file-coding-system from the one used by the message whose
19546 text is yanked.
19547
19548 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
19549 to "windows" when "pgnuplot" is used.
19550 (calc-graph-command, calc-gnuplot-command, calc-graph-init):
19551 Don't call accept-process-output if "pgnuplot" is used.
19552 (calc-graph-init): Don't send -display and -geometry to
19553 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
19554 running "pgnuplot -V" with shell-command-to-string.
19555
19556 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
19557 the default.
19558
19559 2009-08-07 Eli Zaretskii <eliz@gnu.org>
19560
19561 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
19562 org/org-latex.elc.
19563
19564 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
19565
19566 * vc-dispatcher.el (vc-resynch-window): Update comment.
19567
19568 * term.el (term-handle-ansi-escape): Add comments with the
19569 terminfo capabilities implemented.
19570
19571 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
19572
19573 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
19574 (gdb-var-create-handler): Rewritten using JSON parser.
19575 (gdb-propertize-header): Move earlier.
19576 (gdb-set-header): Remove to avoid duplication.
19577 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
19578 Refresh disassembly buffers only after threads list have been
19579 update.
19580 (gdb-threads-header, gdb-registers-header): Per-buffer header line
19581 variables.
19582
19583 2009-08-04 Juri Linkov <juri@jurta.org>
19584
19585 * files.el: Commands to add/delete file/directory-local variables.
19586 (read-file-local-variable, read-file-local-variable-value)
19587 (read-file-local-variable-mode, modify-file-local-variable)
19588 (modify-file-local-variable-prop-line)
19589 (modify-dir-local-variable): New functions.
19590 (add-file-local-variable, delete-file-local-variable)
19591 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
19592 (add-dir-local-variable, delete-dir-local-variable)
19593 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
19594 (copy-dir-locals-to-file-locals-prop-line): New commands.
19595
19596 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
19597
19598 * abbrev.el (insert-abbrev-table-description): Prettify output.
19599 Suggested by Karl Chen.
19600
19601 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
19602
19603 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
19604 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
19605 (gdb-overlay-arrow-position, gdb-thread-position)
19606 (gdb-disassembly-position): Declare variables.
19607 (gdb-wait-for-pending): Function now.
19608 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
19609 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
19610 compilation goes smoothly.
19611 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
19612 (gdb-non-stop-setting): New customization setting which replaces
19613 `gdb-non-stop' so changing it doesn't break active GDB session.
19614 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
19615 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
19616 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
19617 (gdb-show-threads-by-default): New customization options.
19618 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
19619 routines.
19620 (gdb-get-buffer-create): Send buffers update signal when they are
19621 created.
19622 (gdb-invalidate-locals, gdb-invalidate-registers)
19623 (gdb-invalidate-breakpoints)
19624 (gdb-invalidate-threads, gdb-invalidate-disassembly)
19625 (gdb-invalidate-memory): Accept update signal.
19626 (gdb-current-context-command): Use --frame option.
19627 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
19628 Implement `gdb-frame-number' selection logic.
19629 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
19630 whether to show GUD toolbar buttons.
19631 (gdb-thread-exited): Unselect current thread when it exits.
19632 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
19633 (gdb-mark-line): Routine which sets overlay arrow or inverses
19634 video on fringeless displays.
19635 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
19636 to build aligned columns of data in GDB buffers and set text
19637 properties line-by-line.
19638 (gdb-invalidate-breakpoints)
19639 (gdb-breakpoints-list-handler-custom)
19640 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
19641 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
19642 (gdb-registers-handler-custom): Align data columns.
19643 (gdb-locals-handler-custom): Now prints data like in variable
19644 declarations.
19645 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
19646 Remove confusing buttons.
19647 (gdb-invalidate-threads): Append --frame.
19648 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
19649 between breakpoints/threads buffers.
19650 (gdb-set-window-buffer): Now can ignore dedicated windows.
19651 (gdb-propertize-header): Use `gdb-set-window-buffer'.
19652 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
19653 (def-gdb-thread-buffer-gud-command): Replaces
19654 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
19655 for fine thread control.
19656 (gdb-preempt-existing-or-display-buffer): New function used to
19657 display bound buffers without breaking window layout.
19658 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
19659 (gdb-select-frame): New version of `gdb-frames-select' which now
19660 sets `gdb-frame-number' so commands may use --frame option instead
19661 of inner debugger state.
19662 (gdb-frame-handler): Do not set `gdb-frame-number'.
19663 (gdb-threads-mode-map): Select threads with mouse.
19664
19665 * progmodes/gud.el (gdb-gud-context-call): Declare function to
19666 avoid compilation warning.
19667 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
19668 `gdb-show-stop-p`.
19669
19670 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
19671 Argument `key' renamed to `buffer-type'.
19672 (gdb-current-context-buffer-name): Do not add thread info to
19673 buffer name when no thread is selected.
19674 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
19675 command (bug 3794).
19676 (gdb-thread-selected): Handle `=thread-selected' notification.
19677 (gdb-wait-for-pending): New macro to deal with congestion problems.
19678 (gdb-breakpoints-list-handler-custom): Don't fail on pending
19679 breakpoints.
19680 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
19681 This fixes problem similar to one described in bug 3947.
19682 (gud-menu-map): More menu items.
19683 (gdb-init-1): Reset `gdb-thread-number' to nil.
19684
19685 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
19686 non-stop settings.
19687
19688 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
19689 (gdb-current-context-command): Do not append --thread if
19690 `gdb-thread-number' is nil.
19691 (gdb-running-threads-count, gdb-stopped-threads-count):
19692 New variables.
19693 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
19694 (gdb-stopped-hooks, gdb-switch-when-another-stopped):
19695 New customization options.
19696 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
19697 GUD commands.
19698 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
19699 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
19700 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
19701 set `gdb-thread-number' and update `gud-running' properly.
19702 (gdb-running): Update threads list when new threads appear.
19703 (gdb-stopped): Support non-stop operation and new thread switching
19704 logic.
19705 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
19706 (gdb-json-partial-output): New set of JSON routines.
19707 (def-gdb-auto-update-trigger): New `signal-list' optional
19708 argument.
19709 (gdb-thread-list-handler-custom): Update `gud-running',
19710 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
19711 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
19712 (gdb-continue-thread, gdb-step-thread): New commands for fine
19713 thread execution control.
19714 (gud-menu-map): New menu items to switch non-stop options.
19715 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
19716 (gdb-send): Mimic RET properly (bug 3794).
19717
19718 * progmodes/gdb-mi.el (gdb-rules-name-maker)
19719 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
19720 gdb-buffer-rules.
19721 (def-gdb-auto-update-handler): New nopreserve optional argument.
19722 (gdb-stack-list-frames-custom): Print stack from top to bottom.
19723
19724 * progmodes/gdb-mi.el (gdb-pc-address): Remove unused variable.
19725 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
19726 (gdb-parent-mode): New mode to derive other GDB modes from.
19727 (gdb-display-disassembly-for-thread)
19728 (gdb-frame-disassembly-for-thread): New commands for threads
19729 buffer.
19730
19731 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
19732 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
19733 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
19734 (gdb-update): We now store all GDB buffers in a list so that they
19735 can be updated by traversing a list instead of calling invalidate
19736 triggers explicitly.
19737 (def-gdb-trigger-and-handler): New macro to define trigger-handler
19738 pair for GDB buffer.
19739 (gdb-stack-buffer-name): Add thread information.
19740 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
19741 handle pending triggers.
19742 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
19743 (def-gdb-thread-buffer-simple-command)
19744 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
19745 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
19746 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
19747 New commands which show buffers bound to thread.
19748 (gdb-stack-list-locals-regexp): Remove unused regexp.
19749
19750 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
19751 (gdb-locals-buffer-name, gdb-registers-buffer-name)
19752 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
19753 to (gud-comint-buffer) in *-buffer-name functions
19754 because (gdb-get-target-string) already does that.
19755 (gdb-locals-handler-custom, gdb-registers-handler-custom)
19756 (gdb-changed-registers-handler): Rewritten without regexps.
19757
19758 * progmodes/gdb-mi.el: Basic thread selection support.
19759 (gdb-thread-number): New variable.
19760 (gdb-current-context-command): New macro which adds --thread
19761 option to command.
19762 (gdb-threads-mode-map): Select thread with SPC.
19763 (gdb-thread-list-handler-custom): Mark current thread with overlay
19764 arrow. Synchronize GDB thread and Emacs thread.
19765 (gdb-select-thread): New command which selects current thread.
19766 (gdb-invalidate-frames, gdb-invalidate-locals)
19767 (gdb-invalidate-registers): Use --thread option.
19768
19769 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
19770
19771 * net/tramp.el (top): Make check for tramp-gvfs loading more
19772 robust. (Bug#3977)
19773 (tramp-handle-insert-file-contents): `unwind-protect' must be
19774 inside `with-parsed-tramp-file-name'.
19775
19776 * net/tramp-gvfs.el (top): Remove superfluous message when loading
19777 fails.
19778
19779 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
19780
19781 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
19782 directory if CLASSPATH is not set.
19783
19784 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
19785
19786 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
19787 New defconst.
19788 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
19789
19790 2009-08-02 Kevin Ryde <user42@zip.com.au>
19791
19792 * net/newst-backend.el (newsticker--raw-url-list-defaults):
19793 Update freshmeat link. Delete newsforge.com as it seems gone.
19794
19795 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
19796
19797 * select.el (x-set-selection): Doc fix (Bug#4021).
19798
19799 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
19800
19801 * help-fns.el (describe-variable): Treat list return values from
19802 dir-locals-find-file properly (Bug#4005).
19803
19804 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
19805
19806 * net/tramp.el (tramp-debug-message): Print also microseconds.
19807
19808 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
19809
19810 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
19811 or END is non-nil.
19812 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
19813 (tramp-get-debug-buffer): Change `outline-regexp' according to new
19814 format.
19815
19816 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
19817 (tramp-get-file-property): Use it.
19818
19819 * autorevert.el (auto-revert-handler):
19820 Allow `auto-revert-tail-mode' for remote files.
19821
19822 2009-08-02 Jason Rumney <jasonr@gnu.org>
19823
19824 * minibuffer.el (read-file-name): Treat confirm options to
19825 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
19826
19827 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
19828
19829 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
19830 (font-lock-variable-name-face, font-lock-constant-face):
19831 Darken the colors for light backgrounds.
19832
19833 2009-08-01 Eli Zaretskii <eliz@gnu.org>
19834
19835 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
19836 month names. (Bug#3987)
19837
19838 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
19839
19840 * simple.el (line-move-finish): Pass whole number to
19841 line-move-to-column.
19842 (line-move-visual): Perform hscroll to the recorded position.
19843
19844 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
19845
19846 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
19847
19848 2009-07-29 Alan Mackenzie <acm@muc.de>
19849
19850 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
19851
19852 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
19853
19854 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
19855 (gdb-place-breakpoints): Use full path when setting breakpoints.
19856
19857 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
19858
19859 * calc/calc.el (calc-mode-map): Add keybinding for
19860 `calc-transpose-lines'.
19861
19862 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
19863
19864 * calc/calc-misc.el (calc-transpose-lines): New function.
19865
19866 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
19867
19868 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
19869 Simplify check for out-of-band methods.
19870 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
19871 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
19872
19873 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
19874
19875 * vc-git.el (vc-git-checkin): Fix typo.
19876
19877 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
19878
19879 * progmodes/js2-mode.el: New file.
19880
19881 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
19882
19883 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
19884 (gud-menu-map): Adjust tooltip accordingly.
19885
19886 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
19887
19888 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
19889 (vc-bzr-log-view-mode): Adjust log-view-file-re.
19890
19891 * add-log.el (change-log-mode-map): Add a menu.
19892
19893 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
19894
19895 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
19896 function returns nil.
19897 (dbus-handle-event): Handle special return value :ignore.
19898 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
19899
19900 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
19901
19902 * view.el (view-mode-enable): Don't define Helper-return-blurb if
19903 it's not needed.
19904
19905 2009-07-25 Eli Zaretskii <eliz@gnu.org>
19906
19907 Fix Bug#3888:
19908
19909 * w32-vars.el (x-select-enable-clipboard): Doc fix.
19910
19911 * term/pc-win.el (x-display-name, x-colors)
19912 (x-select-enable-clipboard, x-select-text): Doc fix.
19913
19914 * term/common-win.el (x-display-name, x-colors): Doc fix.
19915
19916 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
19917 (xw-defined-colors): Doc fix.
19918
19919 * w32-fns.el (x-select-text, x-setup-function-keys)
19920 (x-get-selection, x-set-selection): Doc fix.
19921
19922 * term/x-win.el (x-select-text, x-setup-function-keys)
19923 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
19924
19925 * select.el (x-set-selection): Doc fix.
19926
19927 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
19928
19929 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
19930 instead of "IsNSSSupportAvailable". Avahi ought to work also when
19931 "IsNSSSupportAvailable" method is not available.
19932 Reported by Steve Youngs <steve@sxemacs.org>.
19933
19934 2009-07-24 Kenichi Handa <handa@m17n.org>
19935
19936 * international/characters.el: Fix setting of category ?C, ?|, ?K,
19937 and ?H. Fix setting of case for Latin Extended and Greek Extended.
19938 (build-unicode-category-table): Fix range checks.
19939
19940 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
19941
19942 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
19943 the buffer we try to sync is current when calling
19944 vc-resynch-buffer.
19945
19946 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
19947 not show up to date files.
19948
19949 2009-07-24 Glenn Morris <rgm@gnu.org>
19950
19951 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
19952 Add autoload cookies. If necessary, initialize.
19953 (elint-log): Handle non-file buffers.
19954 (elint-initialize): Add optional argument to reinitialize.
19955 (elint-find-builtin-variables): Save excursion.
19956
19957 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
19958
19959 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
19960 for Lint.
19961
19962 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
19963
19964 * vc.el (vc-print-log-internal): New function, split out from ...
19965 (vc-print-log): ... here.
19966 (vc-dir-move-to-goal-column): Declare.
19967
19968 * vc-git.el (vc-git-add-signoff): New variable.
19969 (vc-git-checkin): Use it.
19970 (vc-git-toggle-signoff): New function.
19971 (vc-git-extra-menu-map): Bind it to menu.
19972 (vc-git--run-command-string): Accept a nil FILE argument.
19973 (vc-git-stash-list): New function.
19974 (vc-git-dir-extra-headers): Use it.
19975
19976 2009-07-23 Glenn Morris <rgm@gnu.org>
19977
19978 * help-fns.el (describe-variable): Describe ignored and risky local
19979 variables in a similar way to that in which we describe safe ones.
19980
19981 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
19982 (byte-compile-output-file-form, byte-compile-output-docform)
19983 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
19984 Give some more local variables with common names a "bytecomp-" prefix,
19985 so as not to shadow things during compilation.
19986 * emacs-lisp/cl-macs.el (load-time-value)
19987 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
19988 `outbuffer' to `bytecomp-outbuffer'.
19989
19990 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
19991 since the next two variables cover them automatically now.
19992 (elint-builtin-variables, elint-autoloaded-variables): New.
19993 (elint-unknown-builtin-args): Remove all members, since they can be
19994 parsed automatically now.
19995 (elint-extra-errors): New.
19996 (elint-env-add-env, elint-env-add-macro): Use cadr.
19997 (elint-current-buffer): Use or. Change final message.
19998 (elint-get-top-forms): Use line-end-position.
19999 (elint-init-env): Use cadr. Handle autoload, declare-function,
20000 and defalias.
20001 (elint-add-required-env): Doc fix. Use or. Standardize error.
20002 (regexp-assoc): Remove unused function.
20003 (elint-top-form): Set elint-current-pos, to record the start of the
20004 top-level form, for compilation-mode.
20005 (elint-form): Trap errors in macro expansion. Use dolist.
20006 (elint-unbound-variable): Use elint-builtin-variables and
20007 elint-autoloaded-variables.
20008 (elint-get-args): Use cadr, or.
20009 (elint-check-cond-form): Use dolist, cadr.
20010 (elint-check-condition-case-form): Doc fix. Use cadr.
20011 Use elint-extra-errors.
20012 (elint-log): New function.
20013 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
20014 Distinguish errors and warnings.
20015 (elint-log-message): Use with-current-buffer. Inhibit read-only.
20016 Use a bytecomp-style format.
20017 (elint-clear-log): Preserve default-directory. Inhibit read-only.
20018 (elint-get-log-buffer): Use compilation mode. Disable undo.
20019 Don't truncate lines.
20020 (elint-initialize): Set builtin and autoloaded variable lists.
20021 Only process elint-unknown-builtin-args if non-nil.
20022 (elint-find-builtin-variables, elint-find-autoloaded-variables):
20023 New functions.
20024 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
20025
20026 2009-07-22 Kevin Ryde <user42@zip.com.au>
20027
20028 * net/newst-backend.el (newsticker--parse-atom-1.0)
20029 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
20030 (newsticker--parse-rss-1.0):
20031 * progmodes/idlwave.el (idlwave-mode):
20032 * progmodes/idlw-shell.el (idlwave-shell-mode):
20033 * progmodes/vera-mode.el (vera-mode):
20034 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
20035 * progmodes/vhdl-mode.el (vhdl-mode):
20036 * textmodes/table.el (table-generate-source)
20037 (table--warn-incompatibility):
20038 Hyperlink urls in docstrings with URL `...'.
20039
20040 2009-07-22 Glenn Morris <rgm@gnu.org>
20041
20042 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
20043 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
20044 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
20045 Remove leading * from defcustom docs.
20046
20047 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
20048
20049 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
20050 defcustom doc.
20051 (list-load-path-shadows): Optionally, just return shadows as a string.
20052
20053 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
20054
20055 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
20056
20057 * mail/rmailedit.el (rmail-edit-mode):
20058 Use auto-save-include-big-deletions.
20059
20060 * mail/rmail.el (rmail-variables):
20061 Use auto-save-include-big-deletions.
20062
20063 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
20064 changes.
20065
20066 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
20067
20068 * calc/calc.el (calc-undo-length): New variable.
20069 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
20070
20071 2009-07-21 Richard Stallman <rms@gnu.org>
20072
20073 * files.el (auto-save-mode): Handle buffer-save-size = -2
20074 for toggling mode.
20075
20076 2009-07-21 Glenn Morris <rgm@gnu.org>
20077
20078 * textmodes/ispell.el (ispell-looking-back): Update declaration.
20079
20080 * calendar/todo-mode.el (calendar-current-date): Update declaration.
20081
20082 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
20083 silence compiler. Instead...
20084 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
20085 (ps-print-ensure-fontified): Update for above function name changes.
20086
20087 * printing.el (pr-mh-get-msg-num, pr-mh-show)
20088 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
20089 silence compiler. Instead...
20090 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
20091 (mh-show-buffer): Only define for compiler.
20092 (pr-mh-current-message): Update for above function name changes.
20093
20094 * files.el (abort-if-file-too-large): Explicitly pass `filename'
20095 as an argument.
20096 (find-file-noselect, insert-file-1): Update for above change.
20097
20098 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
20099
20100 * mail/mailclient.el (mailclient-send-it): Fix message.
20101
20102 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
20103 (edebug-eval): Check cl-debug-env is bound.
20104 (print-level, print-circle): Don't redefine built-in variables.
20105
20106 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
20107 (custom-print-vectors): Remove old comments from doc.
20108
20109 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
20110 (emerge-version): Make the variable an obsolete alias for the
20111 emacs-version variable. Make the function obsolete.
20112 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
20113 Emerge options, rather than merging in into the main Options menu.
20114 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
20115 and auto advance modes. Disable edit/fast items when not relevant.
20116
20117 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
20118
20119 * term/vt420.el (terminal-init-vt420): Fix typo.
20120
20121 2009-07-20 Sam Steingold <sds@gnu.org>
20122
20123 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
20124 variable (removed from compile.el on 2004-03-11).
20125
20126 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
20127
20128 * files.el (hack-local-variables-filter): Fix last change.
20129
20130 2009-07-19 Juri Linkov <juri@jurta.org>
20131
20132 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
20133 (dir-local-variables-alist): New buffer-local variable.
20134 (hack-local-variables-filter): If variable is not dir-local,
20135 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
20136 because file-local overrides dir-local.
20137 (c-postprocess-file-styles) <declare-function>:
20138 Remove obsolete declaration.
20139 (hack-dir-local-variables): Add dir-local variable/value pair to
20140 `dir-local-variables-alist' and remove duplicates. Doc fix.
20141
20142 * help-fns.el (describe-variable): Add information about
20143 file-local and dir-local variables.
20144
20145 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
20146
20147 * files.el (hack-local-variables-filter): Rewrite.
20148
20149 2009-07-19 Glenn Morris <rgm@gnu.org>
20150
20151 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
20152 Silence compiler by only defining on XEmacs.
20153
20154 * international/mule.el (auto-coding-regexp-alist): Only match
20155 BABYL... at the start of buffer, not of lines. (Bug#3790)
20156
20157 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
20158 non-calendar buffers (Bug#3862). Restore "not on a date" message.
20159 (cal-menu-context-mouse-menu): Doc fix.
20160
20161 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
20162
20163 * simple.el (mail-user-agent): Doc fix. Set :version tag.
20164
20165 2009-07-18 Juri Linkov <juri@jurta.org>
20166
20167 * info.el: Virtual Info keyword finder.
20168 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
20169 (Info-finder-file): New variable.
20170 (Info-finder-find-file): New function.
20171 (finder-known-keywords, finder-package-info)
20172 (find-library-name, lm-commentary): Use defvar and
20173 declare-function to silence compiler warnings.
20174 (Info-finder-find-node): New function.
20175 (info-finder): New command.
20176
20177 * subr.el (process-kill-buffer-query-function): New function.
20178 (add-hook)<kill-buffer-query-functions>: Add hook
20179 `process-kill-buffer-query-function'.
20180
20181 2009-07-18 Alan Mackenzie <acm@muc.de>
20182
20183 * progmodes/cc-mode.el (c-before-hack-hook)
20184 (c-postprocess-file-styles): Give invocation of `c-set-style'
20185 DONT-OVERRIDE parameter of t. Already set style variables will
20186 thus not be overridden by style settings given by `c-file-syle'.
20187
20188 * files.el (hack-local-variables-filter): Remove entries with
20189 duplicate keys from `file-local-variables-alist'.
20190
20191 2009-07-18 Eli Zaretskii <eliz@gnu.org>
20192
20193 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
20194 x-set-selection if display-selections-p returns nil for the
20195 current frame.
20196
20197 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
20198
20199 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
20200
20201 2009-07-18 Eli Zaretskii <eliz@gnu.org>
20202
20203 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
20204 Accept nil in addition to a regexp.
20205 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
20206 Accept nil in addition to a regexp.
20207 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
20208 buffers that have an associated file. Handle nil values of
20209 desktop-buffers-not-to-save and desktop-files-not-to-save.
20210 (Bug#3833)
20211
20212 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
20213 (x-disown-selection-internal): New functions.
20214
20215 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
20216
20217 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
20218 warning.
20219 (gdb-breakpoints-header): Move forward to avoid compiler warning.
20220 (gdb-make-header-line-mouse-map): Remove duplicate definition.
20221
20222 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
20223
20224 * simple.el (set-mark): Revert last change.
20225
20226 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
20227
20228 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
20229 rendering of pngs is not possible instead of messaging a long
20230 description.
20231
20232 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
20233
20234 * w32-fns.el (x-selection-owner-p): New function.
20235
20236 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
20237 (mouse-yank-at-click, mouse-yank-primary):
20238 If select-active-regions is non-nil, deactivate the mark before
20239 insertion.
20240
20241 * simple.el (deactivate-mark, set-mark): Only save selection if we
20242 own it.
20243
20244 2009-07-17 Kenichi Handa <handa@m17n.org>
20245
20246 * case-table.el (describe-buffer-case-table): Fix for the case
20247 that KEY is a cons.
20248
20249 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
20250
20251 * vc-rcs.el (vc-rcs-find-file-hook):
20252 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
20253
20254 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
20255
20256 * net/tramp.el (tramp-wait-for-output): Handle the case when
20257 commands do not return a newline but a null byte before the shell
20258 prompt. (Bug#3858)
20259
20260 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20261
20262 * term/ns-win.el (ns-set-alpha): Don't declare.
20263 (ns-set-background-alpha): Remove function.
20264
20265 2009-07-16 Kevin Ryde <user42@zip.com.au>
20266
20267 * emacs-lisp/copyright.el (copyright-update): Save match-data across
20268 y-or-n-p, for safety.
20269
20270 2009-07-16 Richard Stallman <rms@gnu.org>
20271
20272 * files.el (auto-save-mode): If buffer-saved-size is -2,
20273 don't clobber it.
20274
20275 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
20276 (rmail-retry-ignored-headers): Add more uninteresting fields.
20277
20278 2009-07-15 Jari Aalto <jari.aalto@cante.net>
20279
20280 * net/rcirc.el (rcirc): Use history variables.
20281 (rcirc-server-name-history, rcirc-nick-name-history)
20282 (rcirc-server-port-history): New variables.
20283
20284 2009-07-15 Kenichi Handa <handa@m17n.org>
20285
20286 * international/mule-cmds.el (set-language-environment-charset):
20287 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
20288 ignore them.
20289
20290 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
20291 Delete unibyte-display.
20292
20293 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
20294
20295 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
20296
20297 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
20298
20299 * simple.el (deactivate-mark): Optional argument FORCE.
20300 (set-mark): Use deactivate-mark.
20301
20302 * info.el (Info-search): No need to check transient-mark-mode
20303 before calling deactivate-mark.
20304
20305 * select.el (x-set-selection): Doc fix.
20306 (x-valid-simple-selection-p): Allow buffer values.
20307 (xselect--selection-bounds): Handle buffer values.
20308 Suggested by David De La Harpe Golden.
20309
20310 * mouse.el (mouse-set-region, mouse-drag-track):
20311 Call copy-region-as-kill before setting the mark, to let
20312 select-active-regions work.
20313
20314 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
20315
20316 * simple.el (deactivate-mark): If select-active-regions is
20317 non-nil, copy the selection data into a string.
20318 (activate-mark): If select-active-regions is non-nil, set the
20319 selection to the current buffer.
20320 (set-mark): Update selection if select-active-regions is non-nil.
20321
20322 * select.el (x-valid-simple-selection-p): Allow buffer values.
20323
20324 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
20325
20326 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
20327 and more featureful message-mode.
20328
20329 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
20330
20331 * select.el (x-set-selection): Doc fix.
20332 (x-valid-simple-selection-p): Disallow selection data consisting
20333 of a list or cons of integers, since that is not used.
20334 (xselect--selection-bounds, xselect--int-to-cons): New functions.
20335 (xselect-convert-to-string, xselect-convert-to-length)
20336 (xselect-convert-to-filename, xselect-convert-to-charpos)
20337 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
20338
20339 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
20340
20341 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
20342 output in -break-info command (Emacs bug #3794).
20343
20344 2009-07-14 Glenn Morris <rgm@gnu.org>
20345
20346 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
20347 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
20348 (edebug-print-length, edebug-print-level, edebug-print-circle)
20349 (edebug-sit-for-seconds, edebug-view-outside)
20350 (edebug-bounce-point, edebug-set-global-break-condition)
20351 (edebug-Go-nonstop-mode, edebug-trace-mode)
20352 (edebug-Trace-fast-mode, edebug-continue-mode)
20353 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
20354 (edebug-visit-eval-list): Doc fixes.
20355
20356 * subr.el (def-edebug-spec): Doc fix.
20357
20358 2009-07-14 Kenichi Handa <handa@m17n.org>
20359
20360 * international/characters.el: Fix setting of category ?C.
20361
20362 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
20363
20364 * term/ns-win.el (x-select-font): defalias x-select-font to
20365 ns-popup-font-panel instead of generate-fontset-menu.
20366
20367 2009-07-12 Eli Zaretskii <eliz@gnu.org>
20368
20369 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
20370
20371 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
20372
20373 * arc-mode.el (archive-find-type): Allow for a PK00 string before
20374 the PK\003\004 header (Bug#3770).
20375
20376 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
20377
20378 * pcomplete.el (pcomplete-comint-setup): Check for
20379 shell-dynamic-complete-filename too.
20380
20381 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
20382
20383 * simple.el (temporary-goal-column): Change the value for
20384 line-move-visual to a cons cell.
20385 (line-move-visual): Record or set the window hscroll, if
20386 necessary (Bug#3494).
20387 (line-move-1): Handle cons value of temporary-goal-column.
20388
20389 2009-07-11 Kenichi Handa <handa@m17n.org>
20390
20391 * international/mule-diag.el (describe-character-set): Don't show
20392 width.
20393
20394 2009-07-10 Sam Steingold <sds@gnu.org>
20395
20396 * progmodes/compile.el (compilation-mode-font-lock-keywords):
20397 Omake sometimes indents the errors it prints, so allow all
20398 regexps to start with spaces.
20399
20400 2009-07-10 Eli Zaretskii <eliz@gnu.org>
20401
20402 * cus-edit.el (customize-changed-options-previous-release):
20403 Bump value to 22.1. (Bug#3804)
20404
20405 2009-07-08 Sam Steingold <sds@gnu.org>
20406
20407 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
20408 to be a cons cell (test . ignored-directory) to selectively ignore
20409 some directories depending on the location of the search.
20410
20411 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
20412
20413 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
20414 remote user is root, on the local host.
20415 (tramp-local-host-p): Either the local user or the remote user
20416 must be root. (Bug#3771)
20417
20418 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
20419
20420 * progmodes/gdb-mi.el (gdb): Remove description of
20421 gdb-use-separate-io-buffer.
20422 (menu): Don't allow toggling of or enable
20423 gdb-use-separate-io-buffer from menubar.
20424
20425 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
20426
20427 * mail/unrmail.el (unrmail): Make sure the message ends with two
20428 newlines (Bug#3769).
20429
20430 2009-07-08 Glenn Morris <rgm@gnu.org>
20431
20432 * calendar/calendar.el (calendar-current-date): Rework previous change.
20433
20434 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
20435
20436 * calendar/calendar.el (calendar-current-date):
20437 Add an optional argument giving an offset from today.
20438
20439 2009-07-08 Glenn Morris <rgm@gnu.org>
20440
20441 * tutorial.el (tutorial--describe-nonstandard-key):
20442 Adjust the message for when a key has been unbound.
20443 (help-with-tutorial): Hide the arch-tag.
20444
20445 2009-07-08 Kenichi Handa <handa@m17n.org>
20446
20447 * international/fontset.el (setup-default-fontset): For each
20448 script, append (not set) font-specs.
20449
20450 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
20451 docstring.
20452
20453 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
20454
20455 * progmodes/gdb-mi.el (gdb-init-1): Move sending
20456 -data-list-register-names to ...
20457 (gdb-starting): ... here because GDB 7.0 requires execution to
20458 have started when using this MI command.
20459 (gdb-set-header): New function to distinguish select and
20460 unselected tabs in gdb buffers.
20461 (gdb-propertize-header): New macro that uses gdb-set-header.
20462 (gdb-breakpoints-header, gdb-locals-header): Use it.
20463 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
20464
20465 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
20466
20467 * Makefile.in (ELCFILES): Remove fadr.elc.
20468
20469 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
20470
20471 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
20472 may contain frame information, so `string-match' should be used.
20473 (gdb-update): Disassembly is invalidated through
20474 `gdb-get-selected-frame'.
20475 (gdb-pad-string): New function to pad string with spaces.
20476 (gdb-invalidate-disassembly): Invalidate only if the buffer
20477 exists.
20478 (gdb-disassembly-handler-custom): Column alignment.
20479 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
20480 placing new ones.
20481 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
20482 end of line, too.
20483 (gdb-frame-handler): Match convention to for disassembly buffer
20484 mode name.
20485 (gdb-stack-list-frames-handler): Rewritten without regexps.
20486 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
20487 not highlight breakpoints without line information.
20488 (gdb-input): Add trailing newline to command.
20489
20490 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
20491 buffer properly.
20492 (gdb-breakpoints-list-handler-custom): Replacement for
20493 `gdb-break-list-handler'. Using real parser instead of regexps
20494 now.
20495 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
20496 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
20497 to place breakpoints.
20498 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
20499 functions.
20500 (gdb-disassembly-handler-custom): Show overlay arrow.
20501 (gdb-disassembly-place-breakpoints): Show breakpoints in
20502 disassembly buffer.
20503 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
20504 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
20505 instead of parsing breakpoints buffer. Fixed old menu references
20506 in `gud-menu-map'.
20507
20508 * fadr.el: Remove.
20509
20510 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
20511 (gdb-memory-address): New variable which holds top address of
20512 memory page shown in memory buffer.
20513 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit):
20514 New customization variables.
20515 New functions:
20516 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
20517 display the memory buffer.
20518 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
20519 buffer display parameters.
20520 (def-gdb-memory-format, gdb-memory-format-binary)
20521 (gdb-memory-format-octal, gdb-memory-format-unsigned)
20522 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
20523 Functions for setting memory buffer format.
20524 (gdb-memory-unit-word, gdb-memory-unit-halfword)
20525 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
20526 unit size used in memory buffer.
20527 (gdb-memory-show-next-page, gdb-memory-show-previous-page):
20528 Switch to next/previous page of memory buffer.
20529 Now using (bindat-get-field) instead of fadr functions.
20530
20531 2009-07-07 Sam Steingold <sds@gnu.org>
20532
20533 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
20534 non-top-level files.
20535
20536 2009-07-07 Kenichi Handa <handa@m17n.org>
20537
20538 * international/mule-cmds.el (reset-language-environment):
20539 Put the highset priority to the charset iso-8859-1.
20540
20541 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
20542
20543 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
20544 to the end of the line when locating the block (Bug#700).
20545
20546 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
20547
20548 * net/tramp.el (tramp-handle-write-region): Flush file properties
20549 in case of short track.
20550
20551 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
20552
20553 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
20554 Coded custom representation of verilog error regular expressions
20555 to work with Emacs-22's new format.
20556 (verilog-error-regexp-xemacs-alist): Coded custom representation
20557 of verilog error regular expressions to work with XEmacs format.
20558 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
20559 error recognition into XEmacs.
20560 (verilog-error-regexp-add-emacs): Hook routine to install verilog
20561 error recognition into Emacs-22.
20562
20563 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
20564
20565 * woman.el: Remove stand-alone closing parentheses.
20566 (woman-file-name, woman2-format-paragraphs)
20567 (woman-leave-blank-lines): Code cleanup.
20568 (woman-use-own-frame): Change default to nil.
20569 (woman-italic, woman-bold, woman-unknown, woman-addition):
20570 Change defaults to inherit from default faces.
20571 (woman2-process-escapes): Consume the newline after a stand-alone
20572 filler character (Bug#3651).
20573
20574 2009-07-06 Glenn Morris <rgm@gnu.org>
20575
20576 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
20577 (top-level): Move provide to the end.
20578 (ffap): Remove defunct URL from custom group.
20579
20580 * subr.el (eval-after-load): Doc fix.
20581
20582 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
20583
20584 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
20585 `calc-embedded-word' is called twice.
20586
20587 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
20588
20589 * files.el (find-alternate-file-other-window, find-alternate-file):
20590 Obey confirm-nonexistent-file-or-buffer.
20591
20592 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
20593
20594 * dired-aux.el (dired-show-file-type): Handle remote files.
20595
20596 2009-07-05 Jari Aalto <jari.aalto@cante.net>
20597
20598 * desktop.el (desktop-globals-to-save):
20599 Add file-name-history (Bug#2750).
20600
20601 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
20602
20603 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
20604
20605 2009-07-04 Johan Bockgård <bojohan@gnu.org>
20606
20607 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
20608 property on entire argument since this is what eshell-lisp-command
20609 expects.
20610
20611 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
20612
20613 * net/tramp-gvfs.el (tramp-gvfs-methods)
20614 (tramp-gvfs-zeroconf-domain)
20615 (tramp-bluez-discover-devices-timeout): Add version flag.
20616 (tramp-gvfs-handler-mounted-unmounted)
20617 (tramp-gvfs-connection-mounted-p): Polish handling of
20618 incompatibilities between GVFS 0.2 and 1.0.
20619
20620 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
20621
20622 * cus-start.el (all): Add make-pointer-invisible.
20623
20624 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
20625
20626 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
20627 formatted correctly.
20628
20629 2009-07-02 Juri Linkov <juri@jurta.org>
20630
20631 * info.el: Virtual Info files and nodes.
20632 (Info-virtual-files, Info-virtual-nodes): New variables.
20633 (Info-current-node-virtual): New variable.
20634 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
20635 New functions.
20636 (Info-file-supports-index-cookies): Use Info-virtual-file-p
20637 to check for a virtual file instead of checking a fixed list
20638 of node names.
20639 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
20640 instead of ad-hoc processing of "dir" and (apropos history toc).
20641 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
20642 instead of ad-hoc processing of "dir" and (apropos history toc).
20643 Reread a file when moving from a virtual node.
20644 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
20645 (Info-directory-toc-nodes, Info-directory-find-file)
20646 (Info-directory-find-node): New functions.
20647 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
20648 (Info-history): Move part of code to
20649 `Info-history-find-node'.
20650 (Info-history-toc-nodes, Info-history-find-file)
20651 (Info-history-find-node): New functions.
20652 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
20653 (Info-toc): Move part of code to `Info-toc-find-node'.
20654 (Info-toc-find-node): New function.
20655 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
20656 the current Info file name to references because now the node
20657 "*TOC*" belongs to the same Info manual.
20658 (Info-toc-build): Rename from `Info-build-toc'.
20659 (Info-toc-nodes): Rename input argument `file' to `filename'.
20660 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
20661 instead of ad-hoc processing of ("dir" apropos history toc).
20662 (Info-index-nodes): Use Info-virtual-file-p
20663 to check for a virtual file instead of checking a fixed list
20664 of node names.
20665 (Info-index-node): Add check for `Info-current-node-virtual'.
20666 Raise `save-match-data' higher up the tree to contain
20667 `search-forward' too (bug fix).
20668 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
20669 (Info-virtual-index-nodes): New variable.
20670 (Info-virtual-index-find-node, Info-virtual-index): New functions.
20671 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
20672 (Info-apropos-file, Info-apropos-nodes): New variables.
20673 (Info-apropos-toc-nodes, Info-apropos-find-file)
20674 (Info-apropos-find-node, Info-apropos-matches): New functions.
20675 (info-apropos): Move part of code to `Info-apropos-find-node' and
20676 `Info-apropos-matches'.
20677 (Info-mode-map): Bind "I" to `Info-virtual-index'.
20678 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
20679 for a virtual file instead of checking a fixed list of node names.
20680
20681 * simple.el (async-shell-command): New command.
20682
20683 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
20684
20685 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
20686 instead of `mount-info'.
20687
20688 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
20689
20690 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
20691 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
20692
20693 2009-07-02 Kenichi Handa <handa@m17n.org>
20694
20695 * international/mule.el (set-keyboard-coding-system): Force *-unix
20696 coding-system to avoid eol conversion.
20697
20698 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
20699
20700 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
20701 Add handler for `process-file', `shell-command' and
20702 `start-file-process'.
20703 (tramp-gvfs-handle-shell-command)
20704 (tramp-gvfs-handle-start-file-process)
20705 (tramp-gvfs-handle-process-file): New defuns.
20706 (tramp-synce-list-devices): Simplify check for existence of property.
20707
20708 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
20709
20710 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
20711
20712 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
20713
20714 * language/korean.el (set-language-info-alist): Add korean-cp949,
20715 cp949 to spec.
20716
20717 2009-07-01 Kenichi Handa <handa@m17n.org>
20718
20719 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
20720
20721 * international/encoded-kb.el: Deleted.
20722
20723 * international/mule.el (set-keyboard-coding-system): Perform the
20724 necessary setup here instead of calling encoded-kbd-setup-display.
20725
20726 2009-07-01 Glenn Morris <rgm@gnu.org>
20727
20728 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
20729
20730 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
20731
20732 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
20733
20734 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
20735
20736 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
20737 Handle also the 'rename case, when setting file modes. (Bug#3712)
20738 (tramp-default-file-modes): Remove execute permissions.
20739
20740 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
20741 (top): Add a default for "synce" in `tramp-default-user-alist'.
20742 Add completion function for "synce" method.
20743 (tramp-hal-service, tramp-hal-path-manager)
20744 (tramp-hal-interface-manager, tramp-hal-interface-device):
20745 New defconst.
20746 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
20747 (tramp-synce-list-devices, tramp-synce-parse-device-names):
20748 New defuns.
20749
20750 * net/trampver.el: Update release number.
20751
20752 2009-06-30 Kenichi Handa <handa@m17n.org>
20753
20754 * international/fontset.el (setup-default-fontset): Add CJK fonts
20755 for symbols and the other miscellaneous characters.
20756
20757 * language/korea-util.el (setup-korean-environment-internal):
20758 Make char-width-table suitable for Korean environments.
20759 (exit-korean-environment): Cancel above.
20760
20761 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
20762 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
20763 setup-function to make char-width-table suitable for respective
20764 environments, and an exit-function to cancel that.
20765
20766 * language/japan-util.el (setup-japanese-environment-internal):
20767 Call use-cjk-char-width-table with arg `ja_JP'.
20768
20769 * international/characters.el (cjk-char-width-table): Delete it.
20770 (cjk-char-width-table-list): New variable.
20771 (use-cjk-char-width-table): New arg local-name.
20772 (use-default-char-width-table): Fix for the case that Emacs is
20773 already using the default char-width-table.
20774
20775 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
20776
20777 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
20778 modes mandatory. (Bug#3712)
20779
20780 2009-06-29 Alan Mackenzie <acm@muc.de>
20781
20782 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
20783 correction between the visible width of TABs and their number of bytes.
20784
20785 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
20786
20787 * server.el (server-buffer-done): Prevent kill-buffer from
20788 prompting by clearing the buffer modification flag (Bug#3696).
20789
20790 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
20791
20792 * progmodes/verilog-mode.el (verilog-beg-of-statement)
20793 (verilog-endcomment-reason-re): Support unique case and priority case.
20794 (verilog-basic-complete-re): Support localparam lineup.
20795 (verilog-beg-of-statement-1): Fix for robustness, unique case.
20796 (verilog-set-auto-endcomments): Fix for unique case, always_comb
20797 commenting.
20798 (verilog-leap-to-case-head): Now support *nested* unique &
20799 priority case statements.
20800 (verilog-auto-lineup): Make just declarations the default (as it
20801 had been).
20802 (verilog-leap-to-case-head): Support priority/unique case statements.
20803 (verilog-auto-lineup): Rework to give users radio buttons to
20804 select the various styles of automatic lineup.
20805 (verilog-error-regexp-alist): Rework to support the XEmacs style
20806 of error regular expressions from compilers, lint tools &
20807 simulators. Note that GNU Emacs has made it impossible for a mode
20808 to load such things.
20809 (electric-verilog-terminate-line, verilog-indent-declaration)
20810 (verilog-auto-wiure): Rework for radio button selection of
20811 auto-lineup selection of specification of auto lineup.
20812 (verilog-beg-of-statement-1): Redesign to support proper operation
20813 in additional code, based on testing with auto-lineup.
20814 (verilog-calculate-indent, assignments & declarations)
20815 (verilog-backward-token): Enhance to support auto-lineup of
20816 assignments & declarations.
20817 (verilog-in-directive-p, verilog-at-struct-p): New function for
20818 easy test of whether we are.
20819 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
20820 to support safe execution at almost anyline.
20821 (verilog-calc-1): Properly support indenting deep inside generate
20822 blocks.
20823 (verilog-init-font): Remove definition & use of verilog-init-font,
20824 as it is redundant with font-lock-defaults.
20825 (verilog-mode): Alter the definition of verilog-font-lock-defaults
20826 to avoid circular calls if syntax-ppss is a function (as is the
20827 case now in 22.x GNU Emacs) as that function would sometimes call
20828 itself, leading to (nearly) infinite recursion.
20829 (verilog-ovm-begin-re, verilog-ovm-end-re)
20830 (verilog-ovm-statement-re, verilog-leap-to-head)
20831 (verilog-backward-token): Add support for OVM macros. Some are
20832 complete statements, and others open and close scopes like begin
20833 and end.
20834 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
20835 (verilog-defun-level-generate-only-re): Really fix the defun-list
20836 compilation issue.
20837 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
20838 coverpoint, constraint and cross statements.
20839 (verilog-defun-level-list, verilog-generate-defun-level-list)
20840 (verilog-all-defun-level-list): Redo these specifications - it is
20841 too hard to support eval-when compile aggregation of lists also
20842 built at when-compile time.
20843 (verilog-defun-level-list): Place defconsts of variables used in
20844 building regular expressions which are built in eval-when-compile
20845 bodies in the same eval-when-compile body to facilitate compile
20846 without load.
20847 (verilog-beg-block-re-ordered): Support indenting
20848 virtual/protected tasks and functions.
20849 (verilog-defun-level-list, verilog-in-generate-region-p)
20850 (verilog-backward-ws&directives, verilog-calc-1): Speed up
20851 indentation of some module items (generate items).
20852 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
20853 across virtual/protected tasks and functions.
20854
20855 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
20856
20857 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
20858 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
20859 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
20860 in concatenations. Reported by Yishay Belkind.
20861 (verilog-auto-ascii-enum): Support one-hot state machines in
20862 AUTOASCIIENUM. Suggested by Lloyd Gomez.
20863 (verilog-auto-inst, verilog-auto-inst-port): Include interface
20864 modport in AUTOINST and add vl-modport for users.
20865 Reported by David Rogoff.
20866 (verilog-auto-inout-module, verilog-auto-inst)
20867 (verilog-decls-get-interfaces, verilog-insert-definition)
20868 (verilog-insert-one-definition, verilog-read-decls)
20869 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
20870 (verilog-sig-modport, verilog-signals-combine-bus)
20871 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
20872 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
20873 Suggested by David Rogoff.
20874 (verilog-repair-open-comma): Fix non-insertion of comma when
20875 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
20876 (verilog-make-width-expression): Simplify [A-1:0] expression
20877 widths to just {A{1'b0}}.
20878 (verilog-mode): Cleanup checkdoc warnings.
20879 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
20880 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
20881 inputs/outputs or data type. Suggested by Vasu Kandadi.
20882 (next-error-last-buffer): Fix byte-compiler warning.
20883 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
20884 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
20885 or shell command text during AUTO expansion. Suggested by Tad Truex.
20886 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
20887 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
20888 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
20889 in AUTOINOUT. Reported by Matthew Lovell.
20890 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
20891 causing use of <= assignments. Reported by Alex Reed.
20892 (verilog-read-decls): Fix triand, trior, wand, wor to be
20893 recognized by AUTOWIRE. Reported by Spencer Isaacson.
20894 (verilog-extended-complete-re): Support import "DPI-C" functions.
20895 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
20896 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
20897 (verilog-insert-date, verilog-insert-year)
20898 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
20899 Windows systems. Reported by Michael Potts.
20900 (verilog-read-module-name): Fix AUTOINST when the child module
20901 declaration's name is a tick define. Reported by Elliot Mednick.
20902 (verilog-read-decls): Fix V2K parameter bit subscripts getting
20903 passed to next parameter's definition. Reported by Bruce T.
20904 (verilog-read-decls): Fix detecting "parameter int" when using
20905 AUTOINSTPARAM. Reported by Bruce T.
20906 (verilog-goto-defun): Fix goto not finding modules unless first
20907 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
20908 (verilog-mode): Expand -f flag arguments on entry to mode so
20909 verilog-goto-defun will work. Reported by Lawrence Butcher.
20910 (verilog-getopt): Expand environment variables in -f file
20911 arguments. Suggested by Lawrence Butcher.
20912 (verilog-set-define): Fix "Symbol's value as variable is void"
20913 when reading enumerations.
20914 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
20915 Suggested by Stephen Peltan.
20916 (verilog-read-defines): Fix reading of enumerations in include
20917 files. Reported by Steve Peltan.
20918
20919 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
20920
20921 * files.el (trash-directory): Fix defcustom type.
20922
20923 2009-06-28 Juri Linkov <juri@jurta.org>
20924
20925 * help-fns.el (describe-function-1): Correctly locate adviced
20926 functions in hyperlink (Bug#2438).
20927
20928 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
20929
20930 * files.el (trash-directory): Change default to nil.
20931 (move-file-to-trash): If trash-directory is nil and
20932 system-move-file-to-trash is unbound, perform freedesktop-style
20933 trashing.
20934
20935 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
20936
20937 * files.el (move-file-to-trash): Add freedesktop trash
20938 support (Bug#973).
20939
20940 2009-06-28 Glenn Morris <rgm@gnu.org>
20941
20942 * autorevert.el (global-auto-revert-non-file-buffers)
20943 (global-auto-revert-mode): Doc fixes.
20944
20945 2009-06-27 Johan Bockgård <bojohan@gnu.org>
20946
20947 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
20948
20949 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
20950
20951 * faces.el (x-handle-named-frame-geometry): Ensure that we have
20952 opened an X connection before calling x-get-resource (Bug#3194).
20953
20954 * play/doctor.el: Remove reference to obsolete website.
20955 (make-doctor-variables): Correct grammar mistake (Bug#2633).
20956
20957 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
20958
20959 Remove find-file-not-found-hook VC method. (Bug#2757)
20960 * vc-hooks.el (vc-file-not-found-hook)
20961 (vc-default-find-file-not-found-hook): Remove functions.
20962 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
20963 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
20964 * vc.el:
20965 * vc-hg.el:
20966 * vc-git.el: Do not mention find-file-not-found-hook VC method.
20967
20968 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
20969
20970 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
20971 compatibility function for `looking-back'.
20972
20973 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
20974 Use `ispell-looking-back'.
20975
20976 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
20977
20978 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
20979 rather than `filename'.
20980
20981 2009-06-23 Miles Bader <miles@gnu.org>
20982
20983 * face-remap.el (text-scale-set): New function.
20984
20985 2009-06-23 Glenn Morris <rgm@gnu.org>
20986
20987 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
20988
20989 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
20990
20991 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
20992
20993 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
20994
20995 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
20996 Simplify Persian conditionals.
20997
20998 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
20999 variable `filename'.
21000
21001 * comint.el (comint-insert-input): Doc fix.
21002
21003 * Makefile.in (ELCFILES): Fix typo in previous change.
21004
21005 2009-06-23 Miles Bader <miles@gnu.org>
21006
21007 * cus-start.el: Add entry for `recenter-redisplay'.
21008
21009 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
21010
21011 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
21012 Add an optional argument for the backend, use it instead of
21013 calling vc-backend.
21014 (vc-mode-line): Add an optional argument for the backend.
21015 Pass the backend to vc-state and vc-working-revision. Move code for
21016 special handling for vc-state being a buffer to ...
21017
21018 * vc-rcs.el (vc-rcs-find-file-hook):
21019 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
21020
21021 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
21022 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
21023 vc-stay-local-p and vc-mode-line calls.
21024
21025 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
21026 (vc-cvs-diff, vc-cvs-annotate-command)
21027 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
21028 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
21029 vc-mode-line calls.
21030
21031 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
21032 direct comparison.
21033 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
21034 backend when calling vc-mode-line.
21035 (vc-register): Do not create a closure for calling the vc register
21036 function, call it directly.
21037
21038 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
21039
21040 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
21041 to make it obvious item can be clicked.
21042
21043 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
21044
21045 2009-06-23 Kenichi Handa <handa@m17n.org>
21046
21047 * language/korea-util.el (korean-key-bindings): Change the binding
21048 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
21049 same command.
21050
21051 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
21052
21053 Sync with Tramp 2.1.16.
21054
21055 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
21056
21057 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
21058 when a loading of a package fails. Completion function for rsync
21059 is `tramp-completion-function-alist-ssh'.
21060 (all): Replace all calls of `split-string' and
21061 `tramp-split-string' by `tramp-compat-split-string'.
21062 (tramp-default-method): Use `tramp-compat-process-running-p'.
21063 (tramp-default-proxies-alist): Allow also Lisp forms.
21064 (tramp-remote-path): Add choice "Private Directories".
21065 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
21066 (tramp-domain-regexp): Allow also "-", "_" and ".".
21067 (tramp-end-of-output): Remove newlines, and add "$" at the end.
21068 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
21069 (tramp-debug-message): Insert header line in debug buffer.
21070 (tramp-handle-directory-files-and-attributes-with-stat):
21071 Care about filenames with spaces, or starting with "-".
21072 (tramp-handle-dired-uncache): New defun.
21073 (tramp-handle-insert-directory): Don't flush the directory from
21074 cache, this is handled by `dired-uncache' now.
21075 (tramp-handle-insert-file-contents): Improve error handling.
21076 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
21077 Quote `tramp-end-of-output'.
21078 (tramp-action-password): Improve trace message.
21079 (tramp-check-for-regexp): Both echoes must be present, before removing.
21080 (tramp-open-connection-setup-interactive-shell): Trace coding system.
21081 (tramp-compute-multi-hops): Eval cons cells of
21082 `tramp-default-proxies-alist'.
21083 (tramp-maybe-open-connection): Use the same command pattern for
21084 first hop and further hops.
21085 (tramp-wait-for-output): Remove handling of newlines.
21086 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
21087 (tramp-split-string): Remove function. It is handled in
21088 tramp-compat now.
21089
21090 * net/tramp-cmds.el (tramp-bug):
21091 Recommend `tramp-cleanup-all-connections' in the bug mail.
21092
21093 * net/tramp-compat.el (tramp-compat-split-string)
21094 (tramp-compat-process-running-p): New defuns.
21095
21096 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
21097 for `dired-uncache'.
21098
21099 * net/tramp-gvfs.el: New package.
21100
21101 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
21102 Add handler for `dired-uncache'.
21103 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
21104
21105 * net/trampver.el: Update release number. Make version check fit
21106 for SXEmacs 22.
21107
21108 2009-06-22 Jim Meyering <meyering@redhat.com>
21109
21110 Automatically handle .xz suffix (XZ-compressed files), too.
21111 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
21112 XZ is the successor to LZMA: <http://tukaani.org/xz/>
21113
21114 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
21115 Nick Roberts <nickrob@snap.net.nz>
21116
21117 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
21118 repository (http://sphinx.net.ru/hg/gdb-mi/).
21119
21120 2009-06-22 Glenn Morris <rgm@gnu.org>
21121
21122 * files.el (dir-locals-collect-mode-variables): Allow for any number of
21123 `mode' and `eval' entries. (Bug#3430)
21124
21125 * Makefile.in (ELCFILES): Add fadr.elc.
21126
21127 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
21128 differing behavior of \n and ^ in strings. (Bug#3385)
21129
21130 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
21131
21132 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
21133 property.
21134 (lisp-indent-function): Make it a defcustom.
21135
21136 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
21137
21138 * progmodes/gdb-ui.el: Replace with ...
21139 * progmodes/gdb-mi.el: ... this file.
21140 * progmodes/gud.el: Modify for gdb-mi.el.
21141
21142 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
21143
21144 * fadr.el: New file.
21145
21146 See ChangeLog.14 for earlier changes.
21147
21148 ;; Local Variables:
21149 ;; coding: utf-8
21150 ;; End:
21151
21152 Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
21153
21154 This file is part of GNU Emacs.
21155
21156 GNU Emacs is free software: you can redistribute it and/or modify
21157 it under the terms of the GNU General Public License as published by
21158 the Free Software Foundation, either version 3 of the License, or
21159 (at your option) any later version.
21160
21161 GNU Emacs is distributed in the hope that it will be useful,
21162 but WITHOUT ANY WARRANTY; without even the implied warranty of
21163 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21164 GNU General Public License for more details.
21165
21166 You should have received a copy of the GNU General Public License
21167 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.