]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
ChangeLog OCD.
[gnu-emacs] / lisp / ChangeLog
1 2010-11-13 Ken Manheimer <ken.manheimer@gmail.com>
2
3 The main features of the following allout.el changes are:
4 - implement user customization for the allout key bindings
5 - add a customization control by which the user can inhibit use of
6 a trailing Ctrl-H, so by default it's reserved for use with
7 describe-prefix-bindings
8 - adapt to new version of called-interactively-p, while
9 maintaining backwards compatibility with old version
10 - fix hotspot navigation so i works properly with meta-modified keys
11
12 * allout.el (allout-keybindings, allout-bind-keys)
13 (allout-keybindings-binding, allout-prefixed-keybindings)
14 (allout-unprefixed-keybindings, allout-preempt-trailing-ctrl-h)
15 (allout-keybindings-list, allout-mode-map-adjustments)
16 (allout-setup-mode-map): Establish allout-mode keymaps as user
17 customizable settings, and also establish a customizable setting which
18 regulates whether or not a trailing control-h is reserved for use with
19 describe-prefix-bindings - and inhibit it by default, so that control-h
20 *is* reserved for describe-prefix-bindings unless the user changes it.
21
22 * allout.el (allout-hotspot-key-handler): Distinguish more explicitly
23 and accurately between modified and unmodified events, and handle
24 modified events more comprehensively.
25
26 * allout.el (allout-substring-no-properties):
27 Alias to use or provide version of `substring-no-properties'.
28 (allout-solicit-alternate-bullet): Use `allout-substring-no-properties'.
29
30 * allout.el (allout-next-single-char-property-change):
31 Alias to use or provide version of `next-single-char-property-change'.
32 (allout-annotate-hidden, allout-hide-by-annotation):
33 Use `allout-next-single-char-property-change'.
34
35 * allout.el (allout-select-safe-coding-system):
36 Alias to use or provide version of `select-safe-coding-system'.
37 (allout-toggle-subtree-encryption):
38 Use `allout-select-safe-coding-system'.
39
40 * allout.el (allout-set-buffer-multibyte):
41 Alias to use or provide version of `set-buffer-multibyte'.
42 (allout-encrypt-string): Use `allout-set-buffer-multibyte'.
43
44 * allout.el (allout-called-interactively-p): Macro for using the
45 different versions of called-interactively-p identically, depending on
46 the subroutine's argument signature.
47 (allout-back-to-current-heading, allout-beginning-of-current-entry):
48 Use `(interactive "p")' instead of `(called-interactively-p)'.
49
50 * allout.el (allout-init, allout-ascend, allout-end-of-level)
51 (allout-previous-visible-heading, allout-forward-current-level)
52 (allout-backward-current-level, allout-show-children):
53 Use `allout-called-interactively-p' instead of `called-interactively-p'.
54
55 * allout.el (allout-before-change-handler):
56 Exempt edits to the (overlaid) character after the allout outline
57 bullet from edit confirmation prompt.
58
59 * allout.el (allout-add-resumptions):
60 Ensure that it respects correct buffer for keybindings.
61
62 * allout.el (allout-beginning-of-line):
63 Use `allout-previous-single-char-property-change' alias for the sake of
64 diverse compatibility.
65
66 * allout.el (allout-end-of-line):
67 Use `allout-mark-active-p' to encapsulate respect for mark activity.
68
69 2010-11-13 Chong Yidong <cyd@stupidchicken.com>
70
71 * frame.el (frame-notice-user-settings): Don't clobber other
72 user-set parameters when calling face-set-after-frame-default in
73 response to background-color parameter (Bug#7373).
74
75 2010-11-13 Eli Zaretskii <eliz@gnu.org>
76
77 * international/characters.el (glyphless-char-display-control):
78 Renamed from glyphless-char-control; all users changed. Doc fix.
79 Signal an error if display method is not one of the recognized
80 symbols.
81
82 2010-11-13 Michael Albinus <michael.albinus@gmx.de>
83
84 * net/tramp-compat.el (tramp-compat-line-beginning-position)
85 (tramp-compat-line-end-position): Remove them.
86
87 * net/tramp.el (tramp-parse-rhosts-group)
88 (tramp-parse-shosts-group, tramp-parse-sconfig-group)
89 (tramp-parse-hosts-group, tramp-parse-passwd-group)
90 (tramp-parse-netrc-group, tramp-parse-putty-group)
91 * net/tramp-cmds.el (tramp-append-tramp-buffers)
92 * net/tramp-sh.el (tramp-do-file-attributes-with-ls)
93 (tramp-sh-handle-file-selinux-context)
94 (tramp-sh-handle-file-name-all-completions)
95 (tramp-sh-handle-insert-directory)
96 (tramp-sh-handle-expand-file-name, tramp-find-executable)
97 (tramp-wait-for-output, tramp-send-command-and-read)
98 * net/tramp-smb.el (tramp-smb-read-file-entry)
99 (tramp-smb-get-cifs-capabilities): Use `point-at-eol'.
100
101 * net/tramp-sh.el (tramp-sh-handle-insert-directory) Use
102 `point-at-bol'.
103 (tramp-remote-coding-commands): Add an alternative using "base64
104 -d -i". This is needed for older base64 versions from GNU
105 coreutils. Reported by Klaus Reichl
106 <Klaus.Reichl@thalesgroup.com>.
107
108 2010-11-13 Hrvoje Niksic <hniksic@xemacs.org>
109
110 * simple.el (count-words-region): New function.
111
112 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
113
114 * shell.el (shell-dir-cookie-re): New custom variable.
115 (shell-dir-cookie-watcher): New function.
116
117 * vc/vc.el (vc-deduce-backend): Use default-directory in shell-mode
118 and compilation-mode (bug#7350).
119
120 * vc/smerge-mode.el (smerge-refine): Choose better default part to
121 highlight when one of them is empty.
122
123 * skeleton.el (skeleton-read): Don't use `newline' since it may strip
124 trailing space.
125 (skeleton-newline): New function.
126 (skeleton-internal-1): Use it.
127
128 * simple.el (open-line): `newline' may strip trailing space.
129
130 2010-11-12 Kevin Ryde <user42@zip.com.au>
131
132 * international/mule-cmds.el (princ-list): Use mapc.
133
134 2010-11-12 Glenn Morris <rgm@gnu.org>
135
136 * emacs-lisp/bytecomp.el (byte-compile-log-buffer): New constant.
137 Use it to replace all instances of "*Compile-Log*"
138
139 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
140
141 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Add debug and
142 indentation specs.
143
144 2010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
145
146 * progmodes/modula2.el: Use SMIE and skeleton.
147 (m2-mode-syntax-table): (*..*) can be nested.
148 Add //...\n. Fix paren syntax.
149 (m2-mode-map): Remove LF and TAB bindings.
150 (m2-indent): Add safety property.
151 (m2-smie-grammar): New var.
152 (m2-smie-refine-colon, m2-smie-refine-of, m2-smie-backward-token)
153 (m2-smie-forward-token, m2-smie-refine-semi, m2-smie-rules): New funs.
154 (m2-mode): Use define-derived-mode.
155 (m2-newline, m2-tab): Remove.
156 (m2-begin, m2-case, m2-definition, m2-else, m2-for, m2-header)
157 (m2-if, m2-loop, m2-module, m2-or, m2-procedure, m2-with, m2-record)
158 (m2-stdio, m2-type, m2-until, m2-var, m2-while, m2-export)
159 (m2-import): Use define-skeleton.
160
161 2010-11-11 Glenn Morris <rgm@gnu.org>
162
163 * obsolete/lucid.el: Don't warn about any CL functions in this file.
164
165 * ls-lisp.el (ls-lisp-ignore-case, ls-lisp-dirs-first)
166 (ls-lisp-verbosity): Add custom :set-after property.
167 (ls-lisp-verbosity, ls-lisp-use-localized-time-format): Doc fixes.
168 (ls-lisp-format, ls-lisp-format-time): Don't take `now' as an argument.
169 (ls-lisp-insert-directory): Update caller.
170 (ls-lisp-set-options): New function.
171 (ls-lisp-emulation): Use ls-lisp-set-options for custom :set.
172 Doc fix.
173
174 * play/landmark.el (lm-prompt-for-move):
175 * play/gomoku.el (gomoku-prompt-for-move): Remove nonsensical code.
176
177 * progmodes/idlw-complete-structtag.el: Remove unused dec `name'.
178
179 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins)
180 (idlwave-study-twins): Prefix dynamic local variable `name'.
181 (idlwave-routine-twin-compare): Update for above change.
182
183 * progmodes/idlw-help.el (idlwave-do-mouse-completion-help):
184 Prefix dynamic local variables `name', `kwd', and `link'.
185 * progmodes/idlw-shell.el (idlwave-shell-complete-execcomm-help):
186 * progmodes/idlw-complete-structtag.el
187 (idlwave-complete-structure-tag-help):
188 * progmodes/idlwave.el (idlwave-complete-sysvar-help)
189 (idlwave-complete-sysvar-tag-help)
190 (idlwave-complete-class-structure-tag-help):
191 Update for above name changes.
192
193 2010-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
194
195 * net/browse-url.el (browse-url-browser-function): Change the
196 default to use `browse-url-mail' on mailto: URLs.
197
198 2010-11-10 Chong Yidong <cyd@stupidchicken.com>
199
200 * emacs-lisp/package.el (package-read-all-archive-contents):
201 Reset package-archive-contents to nil before re-reading.
202
203 2010-11-10 Brandon Craig Rhodes <brandon@rhodesmill.org> (tiny change)
204
205 * textmodes/flyspell.el (flyspell-word): Do not re-check words
206 already found as misspellings by (flyspell-large-region), just
207 do highlighting (bug#7322).
208
209 2010-11-10 Glenn Morris <rgm@gnu.org>
210
211 * progmodes/octave-mod.el (octave-mark-block): Update for smie change.
212
213 * emulation/edt.el (edt-with-position): New macro.
214 (edt-find-forward, edt-find-backward, edt-find-next-forward)
215 (edt-find-next-backward, edt-sentence-forward, edt-sentence-backward)
216 (edt-paragraph-forward, edt-paragraph-backward): Use it.
217
218 * emulation/tpu-extras.el (tpu-with-position): New macro.
219 (tpu-paragraph, tpu-page, tpu-search-internal): Use it.
220
221 * textmodes/texnfo-upd.el (texinfo-pointer-name): Fix typo.
222
223 * textmodes/texnfo-upd.el (texinfo-all-menus-update)
224 (texinfo-menu-copy-old-description, texinfo-start-menu-description)
225 (texinfo-master-menu, texinfo-insert-node-lines)
226 (texinfo-multiple-files-update):
227 * textmodes/texinfmt.el (texinfo-append-refill, texinfo-copying):
228 Use line-beginning-position.
229
230 * progmodes/cperl-mode.el (cperl-find-pods-heres, cperl-write-tags):
231 No recent Emacs supports system-type `emx'.
232
233 * progmodes/ada-xref.el (is-windows): Rename to ada-on-ms-windows.
234 (ada-command-separator, ada-default-prj-properties)
235 (ada-find-any-references): Update for above name change.
236
237 * dirtrack.el (dirtrack-directory-function)
238 (dirtrack-canonicalize-function):
239 * filecache.el (file-cache-completion-ignore-case)
240 (file-cache-case-fold-search, file-cache-ignore-case):
241 * term.el (serial-port-is-file-p): Cosmetic change.
242
243 * emulation/viper-init.el (viper-ms-style-os-p): Doc fix.
244 Remove non-existent `windows-95' system-type.
245 * dired.el (dired-chown-program): Remove non-existent `linux'
246 system-type.
247
248 * net/net-utils.el (net-utils-remove-ctl-m): Use memq for system-types.
249 (ping-program-options): Remove non-existent `linux' system-type.
250
251 * startup.el (package-initialize): Update declaration.
252
253 * ls-lisp.el (ls-lisp-time-lessp, ls-lisp-time-to-seconds): Remove.
254 (ls-lisp-handle-switches): Use time-less-p.
255 (ls-lisp-format-time): Use float-time.
256
257 * textmodes/remember.el (remember-time-to-seconds): Remove.
258 (remember-store-in-mailbox): Use float-time.
259
260 * calendar/timeclock.el (timeclock-time-to-seconds): Make it an alias.
261
262 * calendar/time-date.el (time-to-seconds): Always an alias on Emacs,
263 never a real function.
264 (with-no-warnings): Remove compat stub, now unused.
265 (time-less-p): Doc fix.
266 (time-to-number-of-days): Simplify.
267
268 * eshell/esh-util.el (eshell-time-less-p, eshell-time-to-seconds):
269 Remove.
270 (eshell-read-passwd, eshell-read-hosts): Use time-less-p.
271 * eshell/esh-test.el (eshell-test, eshell-show-usage-metrics):
272 * eshell/em-unix.el (eshell-show-elapsed-time, eshell/time):
273 * eshell/em-pred.el (eshell-pred-file-time): Use float-time.
274 * eshell/em-ls.el (eshell-ls-sort-entries): Use time-less-p.
275
276 * eshell/em-unix.el (eshell-remove-entries, eshell/rm)
277 (eshell-shuffle-files, eshell-shorthand-tar-command)
278 (eshell-mvcpln-template, eshell/mv, eshell/cp, eshell/ln):
279 Prefix dynamic locals `interactive', `preview', `recursive', `verbose'.
280 * eshell/em-glob.el (eshell-extended-glob, eshell-glob-entries):
281 Prefix dynamic local variable `matches'.
282
283 * skeleton.el (skeleton-internal-list, skeleton-internal-1):
284 Prefix dynamic local variable `skeleton'.
285
286 2010-11-10 Katsumi Yamaoka <yamaoka@jpl.org>
287
288 * net/browse-url.el (browse-url-mail): Insert body part of mailto url
289 in mail buffer; make yank-action always a command that yanks original
290 buffer.
291
292 2010-11-09 Glenn Morris <rgm@gnu.org>
293
294 * progmodes/tcl.el (tcl-hairy-scan-for-comment): Doc fix.
295
296 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
297
298 * minibuffer.el (minibuffer-completion-help): Specify the end of the
299 completion field (bug#7211).
300
301 * progmodes/python.el (python-font-lock-syntactic-keywords): (bug#7322)
302 Fix handling of backslash escapes.
303 (python-quote-syntax): Adjust accordingly.
304
305 2010-11-09 Richard Levitte <richard@levitte.org> (tiny change)
306
307 * vc-mtn.el (vc-mtn-working-revision, vc-mtn-after-dir-status)
308 (vc-mtn-workfile-branch): Adjust to new output format.
309
310 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
311
312 * international/mule-cmds.el (princ-list): Mark as obsolete.
313
314 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
315
316 * emacs-lisp/smie.el: New package.
317
318 2010-11-09 Michael Albinus <michael.albinus@gmx.de>
319
320 * files.el (backup-by-copying-when-mismatch):
321 Set `permanent-local' property.
322
323 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
324 `permanent-local' property for `backup-by-copying-when-mismatch'.
325
326 2010-11-09 Eli Zaretskii <eliz@gnu.org>
327
328 * ls-lisp.el (insert-directory): Doc fix. (bug#7285)
329
330 2010-11-09 Wilson Snyder <wsnyder@wsnyder.org>
331
332 * progmodes/verilog-mode.el (verilog-insert-one-definition)
333 (verilog-read-decls, verilog-read-sub-decls-sig): Fix AUTOWIRE and
334 AUTOINOUT for SV style multidimensional arrays, bug294.
335 Reported by Eric Mastromarchi.
336 (verilog-preprocess): Use with-current-buffer and
337 font-lock-fontify-buffer to cleanup style issues.
338
339 2010-11-09 Glenn Morris <rgm@gnu.org>
340
341 * locate.el (locate, locate-mode): Doc fixes.
342
343 2010-11-09 Chong Yidong <cyd@stupidchicken.com>
344
345 * server.el (server-start): New arg INHIBIT-PROMPT prevents asking
346 user for confirmation.
347 (server-force-stop): Use it.
348 (server-start): Use server-force-stop for kill-emacs-hook, to
349 avoid user interaction while killing Emacs.
350
351 2010-11-09 Glenn Morris <rgm@gnu.org>
352
353 * progmodes/meta-mode.el: Remove leading `*' from defcustom docs.
354 (meta-indent-line): Simplify.
355
356 * vc/emerge.el (emerge-line-number-in-buf):
357 * textmodes/ispell.el (ispell-region):
358 * textmodes/fill.el (current-fill-column):
359 * progmodes/xscheme.el (xscheme-send-current-line):
360 * progmodes/vhdl-mode.el (vhdl-current-line, vhdl-line-copy):
361 * progmodes/tcl.el (tcl-hairy-scan-for-comment):
362 * progmodes/sh-script.el (sh-handle-prev-do):
363 * progmodes/meta-mode.el (meta-indent-line):
364 * progmodes/idlwave.el (idlwave-goto-comment, idlwave-fill-paragraph)
365 (idlwave-in-quote):
366 * progmodes/idlw-shell.el (idlwave-shell-current-frame)
367 (idlwave-shell-update-bp-overlays, idlwave-shell-sources-filter):
368 * progmodes/fortran.el (fortran-looking-at-if-then):
369 * progmodes/etags.el (find-tag-in-order, etags-snarf-tag):
370 * progmodes/cperl-mode.el (cperl-sniff-for-indent)
371 (cperl-find-pods-heres):
372 * progmodes/ada-mode.el (ada-get-current-indent, ada-narrow-to-defun):
373 * net/quickurl.el (quickurl-list-insert):
374 * net/ldap.el (ldap-search-internal):
375 * net/eudc.el (eudc-expand-inline):
376 * mail/sendmail.el (sendmail-send-it):
377 * mail/mspools.el (mspools-visit-spool, mspools-get-spool-name):
378 * emulation/viper-cmd.el (viper-paren-match, viper-backward-indent)
379 (viper-brac-function):
380 * calc/calc-yank.el (calc-do-grab-region):
381 * calc/calc-keypd.el (calc-keypad-press):
382 * term.el (term-move-columns, term-insert-spaces):
383 * speedbar.el (speedbar-highlight-one-tag-line):
384 * simple.el (current-word):
385 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
386 * info.el (Info-find-node-in-buffer-1, Info-follow-reference)
387 (Info-scroll-down):
388 * hippie-exp.el (he-line-beg):
389 * epa.el (epa--marked-keys):
390 * dired-aux.el (dired-kill-line, dired-do-kill-lines)
391 (dired-update-file-line, dired-add-entry, dired-remove-entry)
392 (dired-relist-entry):
393 * buff-menu.el (Buffer-menu-buffer):
394 * array.el (current-line):
395 * allout.el (allout-resolve-xref)
396 (allout-latex-verbatim-quote-curr-line):
397 Replace yet more uses of end-of-line etc with line-end-position, etc.
398
399 2010-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
400
401 * emacs-lisp/checkdoc.el (checkdoc-display-status-buffer)
402 (checkdoc-interactive-loop, checkdoc-recursive-edit): Avoid princ-list.
403 (checkdoc-syntax-table): Initialize in the declaration.
404 (emacs-lisp-mode-hook): Use just checkdoc-minor-mode now that it turns
405 the mode on unconditionally.
406
407 * emacs-lisp/cl-macs.el (extent-data, extent-face, extent-priority)
408 (extent-end-position, extent-start-position): Remove setf method for
409 non-existing functions (bug#7319).
410
411 2010-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
412
413 * emacs-lisp/smie.el: Simplify the smie-rules-function return values.
414 (smie-precs->prec2): Rename from smie-precs-precedence-table.
415 (smie-bnf->prec2): Rename from smie-bnf-precedence-table.
416 (smie-prec2->grammar): Rename from smie-prec2-levels.
417 (smie-grammar): Rename from smie-op-levels.
418 (smie-indent--hanging-p): Rename from smie-hanging-p.
419 (smie-rule-hanging-p): New alias.
420 (smie-indent--bolp): Rename from smie-bolp.
421 (smie-indent--hanging-p): New alias.
422 (smie--token): New dynamically bound variable.
423 (smie-indent--parent): New function.
424 (smie-rule-parent-p): Use it; rename from smie-parent-p.
425 (smie-rule-next-p): Rename from smie-next-p.
426 (smie-rule-prev-p): Rename from smie-prev-p.
427 (smie-rule-sibling-p, smie-rule-parent)
428 (smie-indent--separator-outdent, smie-rule-separator): New functions.
429 (smie-rule-separator-outdent): New var.
430 (smie-indent--rule): Merge with smie-indent--column.
431 (smie-indent-forward-token, smie-indent-backward-token):
432 Also recognize close parens.
433 (smie-indent-keyword): Don't use smie-indent--column any more.
434 (smie-indent-after-keyword): Ignore closers by default.
435 (smie-indent-line): Use with-demoted-errors.
436 * progmodes/octave-mod.el (octave-smie-grammar):
437 Rename from octave-smie-op-levels.
438 (octave-smie-rules): Adjust to new behavior.
439 * progmodes/prolog.el (prolog-smie-grammar):
440 Rename from prolog-smie-op-levels.
441
442 2010-11-07 Glenn Morris <rgm@gnu.org>
443
444 * eshell/esh-util.el (subst-char-in-string)
445 (directory-files-and-attributes): These compatibility definitions are
446 not needed on any version of Emacs since at least 21.4.
447
448 * progmodes/verilog-mode.el (verilog-get-beg-of-line)
449 (verilog-get-end-of-line): Remove.
450 (verilog-within-string, verilog-re-search-forward-substr)
451 (verilog-re-search-backward-substr, verilog-set-auto-endcomments)
452 (verilog-surelint-off, verilog-getopt-file, verilog-highlight-region):
453 Use point-at-bol, point-at-eol.
454 * progmodes/pascal.el (pascal-get-beg-of-line, pascal-get-end-of-line):
455 Remove.
456 (pascal-declaration-end, pascal-declaration-beg, pascal-within-string)
457 (electric-pascal-terminate-line, pascal-set-auto-comments)
458 (pascal-indent-paramlist, pascal-indent-declaration)
459 (pascal-get-lineup-indent, pascal-func-completion)
460 (pascal-get-completion-decl, pascal-var-completion, pascal-completion):
461 Use point-at-bol, point-at-eol.
462 * progmodes/flymake.el (flymake-line-beginning-position)
463 (flymake-line-end-position): Remove.
464 (flymake-highlight-line): Use point-at-bol, point-at-eol.
465 * eshell/esh-util.el (line-end-position, line-beginning-position):
466 Remove compat definitions.
467
468 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
469 Use end-of-line N.
470 (checkdoc-this-string-valid-engine, checkdoc-file-comments-engine):
471 Use line-end-position.
472
473 * emacs-lisp/chart.el (chart-zap-chars):
474 * play/decipher.el (decipher-set-map):
475 * progmodes/ada-mode.el (ada-get-current-indent)
476 (ada-search-ignore-string-comment, ada-tab-hard, ada-untab-hard):
477 * progmodes/ada-prj.el (ada-prj-load-from-file, ada-prj-display-help):
478 * progmodes/ada-xref.el (ada-initialize-runtime-library)
479 (ada-get-all-references):
480 * progmodes/cperl-mode.el (cperl-electric-paren)
481 (cperl-electric-rparen, cperl-electric-keyword, cperl-electric-else)
482 (cperl-linefeed, cperl-sniff-for-indent, cperl-to-comment-or-eol)
483 (cperl-find-pods-heres, cperl-indent-exp, cperl-fix-line-spacing)
484 (cperl-word-at-point-hard):
485 * progmodes/idlw-shell.el (idlwave-shell-move-or-history)
486 (idlwave-shell-filename-string, idlwave-shell-batch-command)
487 (idlwave-shell-display-line):
488 * progmodes/idlwave.el (idlwave-show-begin, idlwave-fill-paragraph)
489 (idlwave-calc-hanging-indent, idlwave-auto-fill, idlwave-template):
490 * progmodes/js.el (js--re-search-forward-inner)
491 (js--re-search-backward-inner):
492 * progmodes/vhdl-mode.el (vhdl-align-region-1, vhdl-align-region-2)
493 (vhdl-fix-clause, vhdl-compose-configuration-architecture):
494 * progmodes/ruby-mode.el (ruby-parse-partial, eval-when-compile):
495 * textmodes/flyspell.el (flyspell-process-localwords):
496 * textmodes/ispell.el (ispell-buffer-local-parsing)
497 (ispell-buffer-local-dict, ispell-buffer-local-words):
498 Use point-at-bol and point-at-eol.
499
500 * speedbar.el (speedbar-generic-item-info)
501 (speedbar-item-info-tag-helper, speedbar-change-expand-button-char)
502 (speedbar-add-indicator, speedbar-check-vc-this-line)
503 (speedbar-check-obj-this-line, speedbar-extract-one-symbol)
504 (speedbar-buffers-line-directory, speedbar-buffer-revert-buffer):
505 Replace more uses of end-of-line etc with line-end-position.
506
507 2010-11-06 Glenn Morris <rgm@gnu.org>
508
509 * textmodes/texnfo-upd.el (texinfo-start-menu-description)
510 (texinfo-update-menu-region-beginning, texinfo-menu-first-node)
511 (texinfo-delete-existing-pointers, texinfo-find-pointer)
512 (texinfo-clean-up-node-line, texinfo-insert-node-lines)
513 (texinfo-multiple-files-update):
514 * textmodes/table.el (table--probe-cell-left-up)
515 (table--probe-cell-right-bottom):
516 * textmodes/picture.el (picture-tab-search):
517 * textmodes/page-ext.el (pages-copy-header-and-position)
518 (pages-directory-for-addresses):
519 * progmodes/vera-mode.el (vera-get-offset):
520 * progmodes/simula.el (simula-calculate-indent):
521 * progmodes/python.el (python-pdbtrack-overlay-arrow):
522 * progmodes/prolog.el (end-of-prolog-clause):
523 * progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
524 * progmodes/icon.el (indent-icon-exp):
525 * progmodes/etags.el (tag-re-match-p):
526 * progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
527 * progmodes/ebnf2ps.el (ebnf-begin-file):
528 * progmodes/dcl-mode.el (dcl-back-to-indentation-1)
529 (dcl-save-local-variable):
530 * play/life.el (life-setup):
531 * play/gametree.el (gametree-looking-at-ply):
532 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
533 * mail/sendmail.el (mail-mode-auto-fill):
534 * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
535 * emacs-lisp/edebug.el (edebug-overlay-arrow):
536 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
537 * woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
538 (woman-tab-to-tab-stop, WoMan-warn-ignored):
539 * type-break.el (type-break-file-keystroke-count):
540 * term.el (term-replace-by-expanded-history-before-point)
541 (term-skip-prompt, term-extract-string):
542 * speedbar.el (speedbar-edit-line, speedbar-expand-line)
543 (speedbar-contract-line, speedbar-toggle-line-expansion)
544 (speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
545 (speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
546 * sort.el (sort-skip-fields):
547 * skeleton.el (skeleton-internal-list):
548 * simple.el (line-move-finish, line-move-to-column):
549 * shell.el (shell-forward-command):
550 * misc.el (copy-from-above-command):
551 * makesum.el (double-column):
552 * ebuff-menu.el (electric-buffer-update-highlight):
553 * dired.el (dired-move-to-end-of-filename):
554 * dframe.el (dframe-popup-kludge):
555 * bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
556 * arc-mode.el (archive-get-lineno):
557 Use line-end-position and line-beginning-position.
558
559 * progmodes/idlwave.el (idlwave-routine-entry-compare-twins):
560 (idlwave-study-twins): Prefix dynamic local `class'.
561 (idlwave-routine-twin-compare): Update for above name change.
562
563 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod):
564 Use boundp tests to silence compiler. Update for changed name of
565 bytecomp-filename variable.
566
567 * emulation/viper-cmd.el (viper-read-string-with-history):
568 Prefix dynamic local `initial'.
569 (viper-minibuffer-standard-hook): Update for above name change.
570
571 * emacs-lisp/elint.el (elint-init-env): Prefix dynamic local `env'.
572 (elint-init-form): Update for above name change.
573
574 * mail/mail-extr.el (mail-extract-address-components): Give dynamic
575 local variables `cbeg' and `cend' a prefix.
576 (mail-extr-voodoo): Update for above name change.
577
578 * textmodes/reftex-toc.el (reftex-toc-do-promote)
579 (reftex-toc-promote-prepare): Pass `delta' as an explicit argument.
580 (reftex-toc-promote-action): Doc fix.
581
582 * textmodes/reftex-sel.el (reftex-select-item): Give local variables
583 `prompt', `data' a prefix.
584 (reftex-select-post-command-hook, reftex-select-callback)
585 (reftex-select-mouse-accept, reftex-select-read-cite):
586 Update for above name changes.
587
588 * textmodes/reftex-ref.el (reftex-reference): Rename local variable
589 `refstyle' to reftex-refstyle.
590 (reftex-offer-label-menu): Update for above name change.
591 * textmodes/reftex-sel.el (reftex-select-toggle-varioref): Update for
592 `refstyle' name change.
593
594 * vc/emerge.el (emerge-eval-in-buffer): Remove, and replace all uses
595 with with-current-buffer.
596 (diff, template): Give dynamic local variables a prefix.
597 (emerge-line-numbers): Rename local `diff' to emerge-line-diff.
598 (emerge-line-number-in-buf): Update for above name change.
599 (emerge-combine-versions-internal): Rename local `template' to
600 emerge-combine-template.
601 (emerge-combine-versions-edit): Update for above name change.
602
603 2010-11-06 Ralf Angeli <angeli@caeruleus.net>
604
605 * textmodes/reftex-cite.el
606 (reftex-extract-bib-entries-from-thebibliography): Match bibitem
607 entries with whitespace after \bibitem.
608 (reftex-create-bibtex-file): Match entries containing numbers and
609 symbol constituents. Make sure that entries with whitespace at
610 various places are found.
611
612 2010-11-05 Christian Millour <cm@abtela.com> (tiny change)
613
614 * shell.el (shell-process-popd): Made aware of comint-file-name-prefix.
615
616 2010-11-05 Jan Djärv <jan.h.d@swipnet.se>
617
618 * mouse.el (mouse-yank-primary): Update comment (Bug#6802).
619
620 2010-11-05 Glenn Morris <rgm@gnu.org>
621
622 * woman.el (woman0-roff-buffer, woman1-roff-buffer)
623 (woman2-roff-buffer): Give local variable `request' a prefix.
624 (woman0-macro): Rename argument `request' in the same way.
625 (woman-request): New name for `request' dynamic variable.
626 (woman-unquote, woman-forward-arg): Update for above name change.
627 (woman1-roff-buffer): Give local variable `unquote' a prefix.
628 (woman1-unquote): New name for `unquote' dynamic variable.
629 (woman1-B-or-I, woman1-alt-fonts): Update for above name change.
630 (woman-translations): Rename from `translations'. No longer global.
631 (woman2-tr, woman-translate): Update for above name change.
632 (woman-translate): Check for bound variable.
633 (woman2-roff-buffer): Give local variable `translations' a prefix.
634
635 * play/doctor.el: Give all local variables a prefix. Update callers.
636 (doc$, doctor-put-meaning): Use backquote.
637
638 * emacs-lisp/cl-macs.el (loop): Give local variable args a prefix.
639 (cl-parse-loop-clause, cl-loop-handle-accum): Update for above change.
640
641 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Give local
642 variables bytes, ptr, op a prefix.
643 (disassemble-offset): Update for above change.
644
645 2010-11-03 Chong Yidong <cyd@stupidchicken.com>
646
647 * emacs-lisp/package.el (package-unpack): Remove no-op.
648 (package--builtins, package--dir): Doc fix.
649 (package-activate-1, package-activate, package-install)
650 (package-compute-transaction): Fix error message.
651 (package-delete): Use delete-directory. Omit system packages.
652 (package-initialize): Set package-alist to nil first.
653 (package-menu-mark-delete, package-menu-mark-install): Don't add
654 symbols that are inconsistent with the package state.
655 (package-menu-execute): Perform deletions and installations as
656 single batch operations.
657
658 2010-11-03 Glenn Morris <rgm@gnu.org>
659
660 * progmodes/idlwave.el (idlwave-pset): Only used on XEmacs.
661 (props): Remove unnecessary declaration.
662
663 * textmodes/ispell.el (ispell-init-process): On Emacs, always use
664 set-process-query-on-exit-flag.
665
666 * textmodes/reftex-toc.el (name1, dummy, dummy2): Remove unused decs.
667 (reftex-toc-do-promote): Remove unused local `mpos'.
668 (reftex-toc-restore-region): Make `mpos' local to this function.
669
670 * net/dbus.el (dbus-name-owner-changed-handler): Doc fix.
671
672 * play/landmark.el (lm-losing-threshold): Correct spelling.
673 (lm-human-plays): Use new name.
674
675 * play/gomoku.el (gomoku-loosing-threshold): Correct spelling.
676 (gomoku-human-plays): Use new name.
677
678 * play/gomoku.el (nil-score, Xscore, XXscore, XXXscore, XXXXscore)
679 (Oscore, OOscore, OOOscore, OOOOscore): Rename with gomoku- prefix.
680 (gomoku-score-trans-table, gomoku-winning-threshold)
681 (gomoku-loosing-threshold, gomoku-init-score-table): Use new names.
682
683 2010-11-03 Chong Yidong <cyd@stupidchicken.com>
684
685 * emacs-lisp/package.el: Don't put built-in packages in
686 package-alist, to avoid loading inefficiencies.
687 (package-built-in-p): Make VERSION optional, and treat it as a
688 minimum acceptable version.
689 (package-activate): Search separately for built-in packages. Emit
690 a warning if a dependency fails.
691 (define-package): Handle most common case, where there is no
692 obsolete package, first.
693 (package-compute-transaction): Print required version in error.
694 (package--initialized): New variable.
695 (list-packages): Use it.
696 (package-initialize): Optional arg NO-ACTIVATE. Don't put
697 built-in packages in packages-alist; keep it separate. Set
698 package--initialized.
699 (describe-package): Avoid activating packages as a side-effect.
700 Search separately for built-in packages.
701 (describe-package-1): Handle the case where an elpa package is
702 simultaneously built-in and available/installed.
703 (package-installed-p, package--generate-package-list): Search
704 separately for built-in packages.
705 (package-load-descriptor): Doc fix.
706
707 2010-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
708
709 * progmodes/perl-mode.el (perl-syntax-propertize-function):
710 Handle __DATA__ and __END__.
711
712 2010-11-02 Noah Friedman <friedman@splode.com>
713
714 * emacs-lisp/bytecomp.el (byte-recompile-file): If bytecomp-arg is
715 nil, do not ask to recompile files that are not already compiled,
716 and do not recompile them.
717
718 2010-11-02 Chong Yidong <cyd@stupidchicken.com>
719
720 * emacs-lisp/package.el (package-initialize): Ensure that
721 obsoleted built-in packages are not in package-activated-list
722 during activation.
723 (describe-package-1): Make the "installed" status override
724 "built-in".
725
726 2010-11-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
727
728 * subr.el (version-separator, version-regexp-alist): Remove '*'
729 from docstring.
730 (version-list-<=, version<=, version=): Doc fix.
731
732 2010-11-01 Kenichi Handa <handa@m17n.org>
733
734 * faces.el (glyphless-char): Inherit underline for tty.
735
736 2010-11-01 Kenichi Handa <handa@m17n.org>
737
738 Implement various display methods for glyphless characters.
739
740 * international/characters.el (char-acronym-table): New variable.
741 (glyphless-char-control): New variable.
742 (update-glyphless-char-display): New funciton.
743
744 * faces.el (glyphless-char): New face.
745
746 2010-11-01 Glenn Morris <rgm@gnu.org>
747
748 * calendar/holidays.el (general-holidays, oriental-holidays)
749 (local-holidays, other-holidays, hebrew-holidays, christian-holidays)
750 (islamic-holidays, bahai-holidays, solar-holidays): Move aliases before
751 the definitions of their targets.
752
753 * emacs-lisp/smie.el (smie): New custom group.
754 (smie-blink-matching-inners, smie-indent-basic): Add :group.
755
756 * faces.el (xw-defined-colors, x-setup-function-keys):
757 * mouse-sel.el (x-select-text):
758 * term/w32console.el (x-setup-function-keys): Update declarations.
759
760 * progmodes/ruby-mode.el (ruby-syntax-propertize-heredoc): Declare.
761
762 * textmodes/ispell.el (comment-add): Declare.
763
764 * net/gnutls.el (gnutls-boot, gnutls-errorp, gnutls-error-string):
765 Declare.
766
767 * info.el (finder-keywords-hash, package-alist): Declare.
768
769 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
770
771 * finder.el (finder-compile-keywords): Don't use intern-soft,
772 since package names may not yet exist in the obarray.
773
774 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
775
776 * vc/vc-arch.el (vc-arch-checkin):
777 * vc/vc-cvs.el (vc-cvs-checkin):
778 * vc/vc-mtn.el (vc-mtn-checkin):
779 * vc/vc-rcs.el (vc-rcs-checkin):
780 * vc/vc-sccs.el (vc-sccs-checkin):
781 * vc/vc-svn.el (vc-svn-checkin): Remove optional extra arg, unused
782 since 2010-04-21 commit by Stefan Monnier.
783
784 2010-11-01 Glenn Morris <rgm@gnu.org>
785
786 * emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change.
787
788 * startup.el (package-enable-at-startup, package-initialize):
789 Silence compiler.
790
791 * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
792 Silence compiler.
793
794 2010-10-31 Julien Danjou <julien@danjou.info>
795
796 * emacs-lisp/bytecomp.el (byte-recompile-file): New fun (bug#7297).
797 (byte-recompile-directory):
798 * emacs-lisp/lisp-mode.el (emacs-lisp-byte-compile-and-load):
799 Use `byte-recompile-file'.
800
801 2010-10-31 Glenn Morris <rgm@gnu.org>
802
803 * cus-start.el: Handle standard values via a keyword.
804 Only set version property if specified.
805 (cursor-in-non-selected-windows, menu-bar-mode)
806 (tool-bar-mode, show-trailing-whitespace):
807 Do not specify standard values.
808 (transient-mark-mode, temporary-file-directory): Use :standard.
809
810 2010-10-31 Jan Djärv <jan.h.d@swipnet.se>
811
812 * term/x-win.el (x-get-selection-value): New function that gets
813 PRIMARY with type as specified in x-select-request-type. (Bug#6802).
814
815 2010-10-31 Michael Albinus <michael.albinus@gmx.de>
816
817 * net/tramp.el (tramp-handle-insert-file-contents): For root,
818 preserve owner and group when editing files. (Bug#7289)
819
820 2010-10-31 Glenn Morris <rgm@gnu.org>
821
822 * speedbar.el (speedbar-mode):
823 * play/fortune.el (fortune-in-buffer, fortune):
824 * play/gomoku.el (gomoku-mode):
825 * play/landmark.el (lm-mode):
826 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
827 Replace inappropriate uses of toggle-read-only. (Bug#7292)
828
829 * select.el (x-selection): Mark it as an obsolete alias.
830
831 2010-10-31 Aaron S. Hawley <aaron.s.hawley@gmail.com>
832
833 * vc/add-log.el (find-change-log): Use derived-mode-p rather than
834 major-mode (bug#7284).
835
836 2010-10-31 Glenn Morris <rgm@gnu.org>
837
838 * menu-bar.el (menu-bar-files-menu): Make it into an actual alias,
839 rather than just an unused variable that inherits from the real one.
840
841 2010-10-31 Alan Mackenzie <acm@muc.de>
842
843 * progmodes/cc-cmds.el (c-mask-paragraph): Fix an off-by-1 error.
844 This fixes bug #7185.
845
846 2010-10-30 Chong Yidong <cyd@stupidchicken.com>
847
848 * startup.el (command-line): Search for package directories, and
849 don't load package.el if none are found.
850
851 * emacs-lisp/package.el (describe-package, list-packages): Call
852 package-initialize if it has not been called yet.
853
854 2010-10-30 Alan Mackenzie <acm@muc.de>
855
856 * progmodes/cc-fonts.el (c-font-lock-enum-tail): New function
857 which fontifies the tail of an enum.
858 (c-basic-matchers-after): Insert a call to the above new function.
859 This fixes bug #7264.
860
861 2010-10-30 Glenn Morris <rgm@gnu.org>
862
863 * cus-start.el: Add :set properties for minor modes menu-bar-mode,
864 tool-bar-mode, transient-mark-mode. (Bug#7306)
865 Include the :set property in the dumped Emacs.
866
867 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
868
869 SMIE: change indent rules format, improve smie-setup.
870 * emacs-lisp/smie.el (smie-precs-precedence-table)
871 (smie-merge-prec2s, smie-bnf-precedence-table, smie-prec2-levels):
872 Mark them pure so the tables gets built at compile time.
873 (smie-bnf-precedence-table): Store the closer-alist in the table.
874 (smie-prec2-levels): Preserve the closer-alist.
875 (smie-blink-matching-open): Be more forgiving in case of indentation.
876 (smie-hanging-p): Rename from smie-indent--hanging-p.
877 (smie-bolp): Rename from smie-indent--bolp.
878 (smie--parent, smie--after): New dynamic vars.
879 (smie-parent-p, smie-next-p, smie-prev-p): New funs.
880 (smie-indent-rules): Remove.
881 (smie-indent--offset-rule): Remove fun.
882 (smie-rules-function): New var.
883 (smie-indent--rule): New fun.
884 (smie-indent--offset, smie-indent-keyword, smie-indent-after-keyword)
885 (smie-indent-exps): Use it.
886 (smie-setup): Setup paren blinking; add keyword args for token
887 functions; extract closer-alist from op-levels.
888 (smie-indent-debug-log): Remove var.
889 (smie-indent-debug): Remove fun.
890 * progmodes/prolog.el (prolog-smie-indent-rules): Remove.
891 (prolog-smie-rules): New fun to replace it.
892 (prolog-mode-variables): Simplify.
893 * progmodes/octave-mod.el (octave-smie-closer-alist): Remove, now that
894 it's setup automatically.
895 (octave-smie-indent-rules): Remove.
896 (octave-smie-rules): New fun to replace it.
897 (octave-mode): Simplify.
898
899 2010-10-29 Glenn Morris <rgm@gnu.org>
900
901 * files.el (temporary-file-directory): Remove (already defined in C).
902 * cus-start.el: Add temporary-file-directory.
903
904 * abbrev.el (abbrev-mode):
905 * composite.el (auto-composition-mode):
906 * menu-bar.el (menu-bar-mode):
907 * simple.el (transient-mark-mode):
908 * tool-bar.el (tool-bar-mode): Adjust the define-minor-mode calls so
909 that they do not define the associated variables twice.
910 * simple.el (transient-mark-mode): Remove defvar.
911 * composite.el (auto-composition-mode): Make variable auto-buffer-local.
912 * cus-start.el: Add transient-mark-mode, menu-bar-mode, tool-bar-mode.
913 Handle multiple groups, and also custom-delayed-init-variables.
914 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
915
916 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
917
918 * emacs-lisp/pcase.el (pcase): New `string' and `guard' patterns.
919 (pcase-if): Add one minor optimization.
920 (pcase-split-equal): Rename from pcase-split-eq.
921 (pcase-split-member): Rename from pcase-split-memq.
922 (pcase-u1): Add strings to the member optimization.
923 Add `guard' variant of predicates.
924 (pcase-q1): Add string patterns.
925
926 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
927
928 * vc/log-edit.el (log-edit-rewrite-fixes): State its safety pred.
929
930 2010-10-28 Glenn Morris <rgm@gnu.org>
931
932 * term/ns-win.el (global-map, menu-bar-final-items, menu-bar-help-menu):
933 Move menu-bar related settings to ../menu-bar.el.
934 * menu-bar.el (global-map, menu-bar-final-items, menu-bar-help-menu):
935 Move ns-specific settings here from term/ns-win.el.
936
937 * simple.el (x-selection-owner-p): Remove unused declaration.
938
939 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
940
941 * minibuffer.el (completion-cycling): New var (bug#7266).
942 (minibuffer-complete, completion--do-completion):
943 Use completion--flush-all-sorted-completions.
944 (minibuffer-complete): Only cycle if completion-cycling is set.
945 (completion--flush-all-sorted-completions): Unset completion-cycling.
946 (minibuffer-force-complete): Set completion-cycling.
947 (completion-all-sorted-completions): Move declaration before first use.
948
949 2010-10-28 Leo <sdl.web@gmail.com>
950
951 * iswitchb.el (iswitchb-kill-buffer): Avoid `iswitchb-make-buflist'
952 which changes the order of matches seen by users (bug#7231).
953
954 2010-10-28 Jes Bodi Klinke <jes@bodi-klinke.dk> (tiny change)
955
956 * progmodes/compile.el (compilation-mode-font-lock-keywords):
957 Don't confuse -omega as "-o mega".
958
959 2010-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
960
961 * vc/log-edit.el (log-edit-rewrite-fixes): New var.
962 (log-edit-author): New dynamic var.
963 (log-edit-changelog-ours-p, log-edit-insert-changelog-entries): Use it
964 to return the author if different from committer.
965 (log-edit-insert-changelog): Use them to add Author: and Fixes headers.
966
967 * play/landmark.el: Adjust commenting convention.
968 (lm-nil-score): Rename from nil-score.
969 (Xscore, XXscore, XXXscore, XXXXscore, Oscore, OOscore, OOOscore)
970 (OOOOscore): Move into a let in lm-score-trans-table.
971 (lm-winning-threshold, lm-loosing-threshold): Use lm-score-trans-table.
972
973 * electric.el (electric-indent-chars): Autoload.
974 * progmodes/octave-mod.el (octave-mode):
975 * progmodes/ruby-mode.el (ruby-mode): Take advantage of it.
976 (ruby-mode-abbrev-table): Merge initialization and declaration.
977
978 2010-10-27 Glenn Morris <rgm@gnu.org>
979
980 * abbrev.el (abbrev-mode): Remove one of the three definitions of this
981 variable.
982
983 * server.el (server-host, server-port, server-auth-dir): Autoload risky.
984
985 * term/ns-win.el: Restore require of cl when compiling.
986 (menu-bar-final-items): Remove non-existent `windows' menu.
987 (ns-handle-nxopen): Optionally handle the temp-case.
988 (ns-handle-nxopentemp): Just call ns-handle-nxopen.
989 (ns-insert-file, ns-find-file): Use `pop'.
990
991 2010-10-26 Glenn Morris <rgm@gnu.org>
992
993 * term/common-win.el (xw-defined-colors): Simplify the 'ns case.
994
995 2010-10-26 Adrian Robert <Adrian.B.Robert@gmail.com>
996
997 * term/ns-win.el (ns-new-frame, ns-show-prefs): Don't add to
998 global map.
999 * term/common-win.el (x-setup-function-keys): Remove most of the
1000 keymappings. Comment on the remaining ones.
1001
1002 2010-10-26 Peter Oliver <p.d.oliver@mavit.org.uk> (tiny change)
1003
1004 * server.el (server-port): New option. (Bug#854)
1005 (server-start): Use server-port.
1006
1007 2010-10-26 Glenn Morris <rgm@gnu.org>
1008
1009 * term/ns-win.el (ns-version-string): Remove unused declaration.
1010 (ns-invocation-args): Change to x-invocation-args.
1011 (ns-handle-switch, ns-handle-numeric-switch, ns-handle-iconic)
1012 (ns-handle-name-switch, ns-ignore-2-arg): Remove.
1013 (ns-handle-nxopen, ns-handle-nxopentemp, ns-ignore-1-arg):
1014 Use x-invocation-args instead of ns-invocation-args.
1015 (ns-initialize-window-system, handle-args-function-alist):
1016 Use x-handle-args instead of ns-handle-args.
1017 * term/common-win.el (x-handle-args): Also handle nextstep arguments.
1018 * startup.el (command-line-ns-option-alist): Replace
1019 ns-handle-name-switch, ns-handle-switch, ns-handle-numeric-switch,
1020 ns-handle-iconic with the x- equivalents.
1021
1022 * term/common-win.el (x-select-enable-clipboard):
1023 * term/pc-win.el (x-select-enable-clipboard): Doc fix.
1024
1025 * term/ns-win.el: No need to require cl when compiling.
1026 (x-display-name, x-setup-function-keys, x-select-text, x-colors)
1027 (xw-defined-colors): Use the common-win definitions.
1028 (ns-alternatives-map): Make it an obsolete alias for x-alternatives-map.
1029 (ns-handle-iconic): Make it an alias for x-handle-iconic.
1030 * term/common-win.el (x-select-text, x-alternatives-map)
1031 (x-setup-function-keys, x-colors, xw-defined-colors): Handle 'ns case.
1032 * loadup.el [ns]: Load common-win.
1033
1034 2010-10-26 Daiki Ueno <ueno@unixuser.org>
1035
1036 * epa-mail.el (epa-mail-encrypt): Handle local-part only
1037 recipients; expand mail aliases (Bug#7280).
1038
1039 2010-10-25 Glenn Morris <rgm@gnu.org>
1040
1041 * term/common-win.el (x-handle-switch): Simplify with pop.
1042 Optionally handle numeric switches.
1043 (x-handle-numeric-switch): Just call x-handle-switch.
1044 (x-handle-initial-switch, x-handle-xrm-switch, x-handle-geometry)
1045 (x-handle-name-switch, x-handle-display, x-handle-args):
1046 Simplify with pop.
1047
1048 * term/ns-win.el: Do not require easymenu.
1049 (menu-bar-edit-menu) <copy, paste, paste-from-menu, separator-undo>:
1050 <spell>: Move adjustments to menu-bar.el.
1051 * menu-bar.el (menu-bar-edit-menu) <copy, paste, paste-from-menu>:
1052 <separator-undo, spell>: Move ns-win's adjustments here.
1053 * loadup.el [ns]: Do not load easymenu.
1054
1055 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
1056
1057 * image.el (image-checkbox-checked, image-checkbox-unchecked):
1058 Delete (Bug#7222).
1059
1060 * startup.el (fancy-startup-tail): Instead of using inline images,
1061 refer to image files from etc/.
1062
1063 * wid-edit.el (checkbox): Likewise.
1064 (widget-image-find): Center image specs.
1065
1066 2010-10-24 Glenn Morris <rgm@gnu.org>
1067
1068 * term/ns-win.el (x-select-text): Doc fix.
1069 * w32-fns.el (x-alternatives-map, x-setup-function-keys)
1070 (x-select-text): Move to term/common-win.
1071 * term/w32-win.el (xw-defined-colors): Move to common-win.
1072 * term/x-win.el (xw-defined-colors, x-alternatives-map)
1073 (x-setup-function-keys, x-select-text): Move to common-win.
1074 * term/common-win.el (x-select-text, x-alternatives-map)
1075 (x-setup-function-keys, xw-defined-colors): Merge x- and w32-
1076 definitions here.
1077
1078 2010-10-24 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
1079
1080 * net/mairix.el (mairix-searches-mode-map):
1081 * mail/mspools.el (mspools-mode-map): Fix 2010-10-10 change.
1082
1083 2010-10-24 Michael McNamara <mac@mail.brushroad.com>
1084
1085 * verilog-mode.el (verilog-directive-re): Make this variable
1086 auto-built for efficiency of execution and updating.
1087 (verilog-extended-complete-re): Support 'pure' fucntion & task
1088 declarations (these have no bodies).
1089 (verilog-beg-of-statement): General cleanup to enable support of
1090 'pure' fucntion & task declarations (these have no bodies).
1091 These efforts together fix Verilog bug210 from veripool; which was also
1092 noticed by Steve Pearlmutter.
1093 (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
1094 (verilog-directive-nest-re, verilog-set-auto-endcomments):
1095 Support `elsif. Reported by Shankar Giri.
1096 (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
1097 attribute handling for lining up declarations and assignments.
1098 (verilog-beg-of-statement-1): Fix issue where continued declaration
1099 is indented differently if it is after a begin..end clock.
1100 (verilog-in-attribute-p, verilog-skip-backward-comments)
1101 (verilog-skip-forward-comment-p): Support proper treatment of
1102 attributes by indent code. Reported by Jeff Steele.
1103 (verilog-in-directive-p): Fix comment to correctly describe function.
1104 (verilog-backward-up-list, verilog-in-struct-region-p)
1105 (verilog-backward-token, verilog-in-struct-p)
1106 (verilog-in-coverage-p, verilog-do-indent)
1107 (verilog-pretty-declarations): Use verilog-backward-up-list as
1108 wrapper around backward-up-list inorder to properly skip comments.
1109 Reported by David Rogoff.
1110 (verilog-property-re, verilog-endcomment-reason-re)
1111 (verilog-beg-of-statement, verilog-set-auto-endcomments)
1112 (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
1113 of if). Reported by Max Bjurling and
1114 (verilog-calc-1): Fix for clocking block in modport
1115 declaration. Reported by Brian Hunter.
1116
1117 2010-10-24 Wilson Snyder <wsnyder@wsnyder.org>
1118
1119 * verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
1120 (verilog-gate-keywords, verilog-read-sub-decls)
1121 (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
1122 (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
1123 AUTOINST for gate primitives, bug284. Reported by Mark Johnson.
1124 (verilog-read-decls): Fix spaces in V2K module parameters causing
1125 mis-identification as interfaces, bug287.
1126 (verilog-read-decls): Fix not treating "parameter string" as a
1127 parameter in AUTOINSTPARAM.
1128 (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
1129 treating `elsif similar to `endif inside AUTOSENSE.
1130 (verilog-do-indent): Implement correct automatic or static task or
1131 function end comment highlight. Reported by Steve Pearlmutter.
1132 (verilog-font-lock-keywords-2): Fix highlighting of single
1133 character pins, bug264. Reported by Michael Laajanen.
1134 (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
1135 (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
1136 (verilog-subdecls-get-interfaced, verilog-subdecls-new): Support
1137 interfaces with AUTOINST, bug270. Reported by Luis Gutierrez.
1138 (verilog-pretty-expr): Fix interactive arguments, bug272.
1139 Reported by Mark Johnson.
1140 (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp):
1141 Add 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
1142 bug269. Suggested by Gary Delp.
1143 (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
1144 (verilog-preprocessor, verilog-set-compile-command):
1145 Create verilog-preprocess and verilog-preprocessor to show
1146 preprocessed output.
1147 (verilog-get-beg-of-line, verilog-get-end-of-line)
1148 (verilog-modi-file-or-buffer, verilog-modi-name)
1149 (verilog-modi-point, verilog-within-string): Move defmacro's
1150 before first use to avoid warning. Reported by Steve Pearlmutter.
1151 (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
1152 (verilog-colorize-region, verilog-highlight-buffer)
1153 (verilog-highlight-includes, verilog-highlight-modules)
1154 (verilog-highlight-region, verilog-mode): Rename colorize to
1155 highlight to match other packages. Disable module highlighting,
1156 as received speed complaints, reenable for experimentation only
1157 using new verilog-highlight-modules.
1158 (verilog-read-decls): Fix regexp stack overflow in very large
1159 AUTO_TEMPLATEs, bug250.
1160 (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
1161 (verilog-scan): Create verilog-save-buffer-state to standardize
1162 making insignificant changes that shouldn't call hooks.
1163 (verilog-save-no-change-functions, verilog-save-scan-cache)
1164 (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
1165 Create verilog-save-no-change-functions to wrap verilog-scan
1166 preservation, and fix to work with nested preserved calls.
1167 (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
1168 port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
1169 generate .name with AUTOINST, bug245. Suggested by David Rogoff.
1170 (verilog-submit-bug-report): Update variable list to be complete.
1171 (verilog-auto, verilog-colorize-region): Fix AUTO expansion
1172 breaking on-the-fly font-locking.
1173 (verilog-colorize-buffer, verilog-colorize-include-files)
1174 (verilog-colorize-include-files-buffer, verilog-colorize-region)
1175 (verilog-load-file-at-mouse, verilog-load-file-at-point)
1176 (verilog-mode, verilog-read-inst-module-matcher): With point on a
1177 AUTOINST cell instance name, middle mouse button now finds-file on
1178 it. Suggested by Brad Dobbie.
1179 (verilog-alw-get-temps, verilog-auto-reset)
1180 (verilog-auto-sense-sigs, verilog-read-always-signals)
1181 (verilog-read-always-signals-recurse): Fix loop indexes being
1182 AUTORESET. AUTORESET now assumes any variables in the
1183 initialization section of a for() should be ignored. Reported by
1184 Dan Dever.
1185 (verilog-error-font-lock-keywords)
1186 (verilog-error-regexp-emacs-alist)
1187 (verilog-error-regexp-xemacs-alist): Fix error detection of
1188 Cadence HAL, reported by David Asher. Repair drift between the
1189 three similar error variables.
1190 (verilog-modi-lookup, verilog-modi-lookup-cache)
1191 (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
1192 (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
1193 Fix slow verilog-auto expansion on very large files.
1194 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line):
1195 Fix AUTOOUTPUT treating "1*2" as a signal name in submodule connection
1196 "{1*2{...". Broke in last revision.
1197 (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
1198 submodule connections with replications "{#{a},#{b}}".
1199
1200 2010-10-24 Juanma Barranquero <lekktu@gmail.com>
1201
1202 * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
1203 Fix typo in docstring.
1204
1205 2010-10-24 Kenichi Handa <handa@m17n.org>
1206
1207 * face-remap.el (text-scale-adjust): Call read-event with a proper
1208 prompt.
1209
1210 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
1211
1212 * emacs-lisp/unsafep.el: Don't mark functions that display
1213 messages as safe. Suggested by Johan Bockgård.
1214
1215 2010-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1216
1217 * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
1218 Turn comments into docstrings.
1219
1220 * minibuffer.el (completion--replace): Move point where it belongs
1221 when there's a common suffix (bug#7215).
1222
1223 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
1224
1225 Merge read-color and facemenu-read-color (Bug#7242).
1226
1227 * faces.el (read-color): Use the completion code from
1228 facemenu-read-color. Require match in completion. Doc fix.
1229
1230 * facemenu.el (facemenu-read-color): Alias for read-color.
1231 (facemenu-set-foreground, facemenu-set-background): Use
1232 read-color.
1233
1234 * frame.el (set-background-color, set-foreground-color)
1235 (set-cursor-color, set-mouse-color, set-border-color): Use
1236 read-color.
1237
1238 2010-10-24 Leo <sdl.web@gmail.com>
1239
1240 * eshell/em-unix.el (eshell-remove-entries): Use the TRASH
1241 argument of delete-file and delete-directory (Bug#7011).
1242
1243 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
1244
1245 * emacs-lisp/package.el (package-menu-mode-map): Inherit from
1246 button-buffer-map.
1247
1248 2010-10-24 Ralf Angeli <angeli@caeruleus.net>
1249
1250 * emacs-lisp/package.el (package--generate-package-list): Make the
1251 *Packages* buffer read-only.
1252
1253 2010-10-24 Alan Mackenzie <acm@muc.de>
1254
1255 * progmodes/cc-fonts.el (c-font-lock-declarations): Cache the
1256 result of `c-beginning-of-decl-1' between invocations of a lambda
1257 function (Bug #7265).
1258
1259 2010-10-24 Daiki Ueno <ueno@unixuser.org>
1260
1261 * epg-config.el (epg-gpg-program): Try to use "gpg2" if "gpg"
1262 executable is not available on the system (Bug#7268).
1263
1264 2010-10-24 Glenn Morris <rgm@gnu.org>
1265
1266 * select.el (selection-coding-system, next-selection-coding-system):
1267 Sync doc with C versions.
1268
1269 * w32-vars.el (x-select-enable-clipboard):
1270 * term/x-win.el (x-select-enable-clipboard): Move to common-win.
1271 * term/common-win.el (x-select-enable-clipboard): Move here.
1272
1273 * term/tty-colors.el (tty-defined-color-alist): Remove duplicate
1274 definition of C variable.
1275
1276 * frame.el (show-trailing-whitespace, auto-hscroll-mode)
1277 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
1278 Don't redefine things that are defined in C.
1279 * cus-start.el: Also handle :risky, :safe, :set, and :tag.
1280 (show-trailing-whitespace, auto-hscroll-mode)
1281 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
1282 Set up the appropriate custom properties.
1283
1284 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
1285
1286 Bind "C-c ]" to ...
1287 * progmodes/f90.el (f90-mode-map): ... f90-insert-end.
1288 * nxml/nxml-mode.el (nxml-mode-map): ... nxml-finish-element.
1289 * textmodes/tex-mode.el (tex-mode-map): ... latex-close-block.
1290 * textmodes/sgml-mode.el (sgml-mode-map): ... sgml-close-tag.
1291
1292 2010-10-23 Glenn Morris <rgm@gnu.org>
1293
1294 * textmodes/flyspell.el (flyspell-mode): If there was an error,
1295 say what it was.
1296
1297 * frame.el (auto-hscroll-mode, cursor-in-non-selected-windows):
1298 Sync docs with C version.
1299
1300 * term/ns-win.el (xw-defined-colors):
1301 * term/x-win.el (xw-defined-colors): Make docs identical to w32-win.
1302
1303 * term/pc-win.el (x-select-enable-clipboard):
1304 * term/x-win.el (x-select-enable-clipboard):
1305 * w32-vars.el (x-select-enable-clipboard): Make doc-strings identical.
1306
1307 * comint.el (comint-password-prompt-regexp): Make it less vague.
1308 Bump version.
1309
1310 * help-fns.el (doc-file-to-man, doc-file-to-info): New commands.
1311
1312 * help.el (finder-by-keyword): Remove unnecessary autoload.
1313
1314 2010-10-22 Glenn Morris <rgm@gnu.org>
1315
1316 * loadup.el: Unconditionally load float-sup.
1317 * paren.el (show-paren-delay):
1318 * emacs-lisp/float-sup.el:
1319 * emulation/cua-base.el (cua-prefix-override-inhibit-delay):
1320 * obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice)
1321 (lazy-lock-stealth-verbose): Assume float support.
1322 * ps-print.el: Assume float support on Emacs.
1323 * emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
1324 Remove non-float branch.
1325
1326 * emacs-lisp/autoload.el (batch-update-autoloads): Update for
1327 src/Makefile no longer being pre-processed.
1328
1329 2010-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
1330
1331 * emacs-lisp/find-func.el (find-library): Use test-completion.
1332
1333 2010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
1334
1335 * newcomment.el (comment-dwim): Fix the intentation in the doc string.
1336
1337 2010-10-21 Michael Albinus <michael.albinus@gmx.de>
1338
1339 * net/tramp-sh.el (tramp-do-file-attributes-with-stat): Do not use
1340 space in stat format string.
1341 (tramp-send-command): Unset $PS1 when using here documents, in
1342 order not to get several prompts.
1343 (tramp-get-inline-coding): Return `nil' in case of errors.
1344
1345 2010-10-21 Daiki Ueno <ueno@unixuser.org>
1346
1347 * hexl.el (hexl-mode, hexl-mode-exit):
1348 Tweak revert-buffer-function to inhibit auto-mode-alist (Bug#7252).
1349 (hexl-revert-buffer-function): New function.
1350 (hexl-before-revert-hook, hexl-after-revert-hook): Abolish.
1351
1352 2010-10-19 Alan Mackenzie <acm@muc.de>
1353
1354 * progmodes/cc-langs.el (c-type-decl-prefix-key): C++ bit:
1355 Move "\(const\|throw\|volatile\)\>" nearer the start of the regexp, so
1356 that these keywords aren't wrongly matched as identifiers.
1357
1358 * progmodes/cc-mode.el (c-before-change, c-after-change): Move the
1359 setting of c-new-BEG and c-new-END from c-before-change to
1360 c-after-change. (Bug#7181)
1361
1362 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
1363
1364 * cus-face.el (custom-theme-set-faces): Revert 2010-10-18 change.
1365 Don't mark as safe.
1366
1367 * custom.el (custom-theme-set-variables): Likewise.
1368 (load-theme): Add custom-theme-set-faces and
1369 custom-theme-set-variables to safe-functions while loading.
1370 (custom-enabled-themes): Mark as risky.
1371
1372 2010-10-18 Julien Danjou <julien@danjou.info>
1373
1374 * bindings.el: Remove end dashes in default mode-line-format.
1375
1376 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
1377
1378 * bindings.el (global-map): Bind C-d to delete-char and deletechar
1379 to delete-forward-char.
1380
1381 * simple.el (normal-erase-is-backspace-mode): Remap delete to
1382 deletechar, and hence delete-forward-char.
1383
1384 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1385
1386 * repeat.el (repeat): Use read-key (bug#6256).
1387
1388 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
1389
1390 * emacs-lisp/unsafep.el: Don't mark functions that display
1391 messages as safe. Suggested by Johan Bockgård.
1392
1393 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1394
1395 * minibuffer.el (completion--replace): Move point where it belongs
1396 when there's a common suffix (bug#7215).
1397
1398 2010-10-19 Kenichi Handa <handa@m17n.org>
1399
1400 * international/characters.el: Add category '|' (word breakable)
1401 to fullwidth characters.
1402
1403 2010-10-19 Michael Albinus <michael.albinus@gmx.de>
1404
1405 * net/tramp-sh.el (tramp-do-file-attributes-with-stat)
1406 (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
1407 order to make stat results a float. Patch by Andreas Schwab
1408 <schwab@linux-m68k.org>.
1409
1410 2010-10-18 Julien Danjou <julien@danjou.info>
1411
1412 * avoid.el (mouse-avoidance-ignore-p): Ignore mouse when it is
1413 hidden by `make-pointer-invisible'.
1414
1415 2010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1416
1417 * files.el (locate-file-completion-table): Strip non-matching elements
1418 before checking length of list (bug#7238).
1419
1420 2010-10-18 Chong Yidong <cyd@stupidchicken.com>
1421
1422 * custom.el (custom-theme-set-variables): Mark as a safe function.
1423 (load-theme): Check forms using unsafep.
1424
1425 * cus-face.el (custom-theme-set-faces): Mark as a safe function.
1426
1427 2010-10-17 Agustín Martín <agustin.martin@hispalinux.es>
1428
1429 * textmodes/ispell.el (ispell-aspell-find-dictionary):
1430 Fix aspell data file searching (bug#7230).
1431
1432 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
1433
1434 * cus-theme.el (custom-theme--migrate-settings): New var.
1435 (customize-create-theme): Allow editing the `user' theme.
1436 (custom-theme-add-variable, custom-theme-add-var-1)
1437 (custom-theme-add-face, custom-theme-add-face-1): Add a checkbox
1438 to the front of each variable or face widget.
1439 (custom-theme-write): Save theme settings in the correct order.
1440 Optionally, remove saved settings from user customizations.
1441 (custom-theme-write-variables, custom-theme-write-faces):
1442 Save only the checked widgets.
1443 (customize-themes): Add a link for migrating custom settings.
1444
1445 * custom.el (custom-declare-theme, provide-theme):
1446 Use custom-theme-name-valid-p.
1447 (custom-theme-name-valid-p): Remove checks that are now
1448 unnecessary since themes no longer obey load-path.
1449
1450 * cus-edit.el (custom-variable-value-create): For the simple
1451 style, hide documentation string when hidden.
1452
1453 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
1454
1455 * cus-edit.el (custom-variable, custom-face): Combine the
1456 :inhibit-magic and :display-style properties into a single
1457 :custom-style property.
1458 (custom-toggle-hide-variable, custom-toggle-hide-face):
1459 New functions. If hiding an edited value, save it to :shown-value.
1460 (custom-variable-value-create, custom-face-value-create): Use them.
1461 (custom-magic-reset): Allow magic property to be unset.
1462
1463 * custom.el: Custom themes no longer use load-path.
1464 (custom-theme-load-path): New option. Change built-in theme
1465 directory to etc/.
1466 (custom-enabled-themes): Add custom-theme-load-path dependency.
1467 (custom-theme--load-path): New function.
1468 (load-theme, custom-available-themes): Use it.
1469
1470 * cus-theme.el (describe-theme-1): Use custom-theme--load-path.
1471 (customize-themes): Link to custom-theme-load-path variable.
1472 (custom-theme-add-var-1, custom-theme-add-face-1): Use the
1473 :custom-style property.
1474
1475 * themes/*.el: Moved to etc/.
1476
1477 2010-10-16 Ralf Angeli <angeli@caeruleus.net>
1478
1479 * textmodes/reftex-cite.el
1480 (reftex-extract-bib-entries-from-thebibliography): Do not move
1481 point when searching for \bibitem entries. Match entries with
1482 spaces or tabs in front of arguments.
1483
1484 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
1485
1486 * cus-theme.el (customize-create-theme): Delete overlays after
1487 erasing. If given a THEME arg, display only the faces of that arg
1488 instead of custom-theme--listed-faces.
1489 (custom-theme-variable-menu, custom-theme-variable-action)
1490 (custom-variable-reset-theme, custom-theme-delete-variable): Delete.
1491 (custom-theme-add-variable, custom-theme-add-face): Apply value
1492 from the theme settings, instead of the current value.
1493 (custom-theme-add-var-1, custom-theme-add-face-1): New functions.
1494 (custom-theme-visit-theme): Allow calling outside theme buffers.
1495 (custom-theme-merge-theme): Don't enable the theme when merging.
1496 (custom-theme-write-variables, custom-theme-write-faces): Use the
1497 :shown-value properties to save buffer values, not global ones.
1498 (customize-themes): Display a warning about user customizations.
1499
1500 * cus-edit.el (custom-variable-value-create)
1501 (custom-face-value-create): Obey new special properties
1502 :shown-value and :inhibit-magic.
1503
1504 2010-10-15 Michael Albinus <michael.albinus@gmx.de>
1505
1506 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
1507 Suppress expansion of tabs to spaces. Reported by Dale Sedivec
1508 <dale@codefu.org>.
1509
1510 2010-10-14 Kenichi Handa <handa@m17n.org>
1511
1512 * mail/rmail.el (rmail-show-message-1): Catch an error of
1513 base64-decode-region and just show an error message (bug#7165).
1514
1515 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used anymore.
1516 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
1517 a font-spec (bug#7197).
1518
1519 2010-10-14 Glenn Morris <rgm@gnu.org>
1520
1521 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
1522
1523 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
1524
1525 * international/mule.el (define-coding-system):
1526 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
1527 * composite.el (compose-region): Fix typo in docstring.
1528
1529 2010-10-14 Chong Yidong <cyd@stupidchicken.com>
1530
1531 * cus-face.el (custom-theme-set-faces): Call custom-push-theme
1532 only after checking the theme-face property.
1533
1534 * faces.el (face-spec-reset-face): Reset all attributes in one
1535 single call to set-face-attribute.
1536 (face-spec-match-p): Make it a defsubst.
1537 (frame-set-background-mode): New arg KEEP-FACE-SPECS.
1538 (x-create-frame-with-faces, tty-create-frame-with-faces)
1539 (tty-set-up-initial-frame-faces): Don't recompute face specs in
1540 frame-set-background-mode, since they are recomputed immediately
1541 afterwards in face-set-after-frame-default.
1542 (face-set-after-frame-default): Minor optimization.
1543 (cursor): Provide non-trivial defface spec.
1544
1545 * custom.el (custom-theme-recalc-face): Simplify.
1546
1547 2010-10-14 Jay Belanger <jay.p.belanger@gmail.com>
1548
1549 * calc/calc-alg.el (math-var): Rename from `var'.
1550 (math-is-polynomial, math-is-poly-rec): Replace `var'
1551 with `math-var'.
1552
1553 * calc/calcalg2.el (math-var): Rename from `var'.
1554 (calcFunc-table, math-scan-for-limits): Replace `var'
1555 with `math-var'.
1556
1557 2010-10-13 Glenn Morris <rgm@gnu.org>
1558
1559 * subr.el (last): Deal with dotted lists (reported in bug#7174).
1560
1561 2010-10-13 Stephen Berman <stephen.berman@gmx.net>
1562
1563 * subr.el (last): Use `safe-length' instead of `length' (bug#7206).
1564
1565 2010-10-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
1566
1567 * net/tls.el (tls-program): Remove spurious %s from openssl.
1568 (tls-starttls-switches): Remove starttls hack.
1569 (open-tls-stream): Ditto.
1570 (tls-find-starttls-argument): Ditto.
1571
1572 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
1573
1574 * image.el (image-library-alist): Declare as obsolete alias.
1575 (image-type-available-p): Use `dynamic-library-alist'.
1576
1577 * term/w32-win.el (dynamic-library-alist):
1578 Use instead of `image-library-alist'.
1579
1580 2010-10-13 IRIE Shinsuke <irieshinsuke@yahoo.co.jp> (tiny change)
1581
1582 * subr.el (last): Make it faster. (Bug#7174)
1583
1584 2010-10-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
1585
1586 * Makefile.in (compile-clean): Use `` instead of $(). (Bug#7178)
1587
1588 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
1589
1590 * cus-theme.el (custom-theme--listed-faces): Add cursor face.
1591 (describe-theme-1): Extract doc from unloaded themes.
1592
1593 * custom.el (custom-theme-name-valid-p): Don't list color-themes.
1594
1595 * themes/tango-theme.el:
1596 * themes/tango-dark-theme.el:
1597 * themes/wheatgrass-theme.el: New files.
1598
1599 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
1600
1601 * cus-theme.el (describe-theme, customize-themes)
1602 (custom-theme-save): New commands.
1603 (custom-new-theme-mode-map): Bind C-x C-s.
1604 (custom-new-theme-mode): Use custom--initialize-widget-variables.
1605 (customize-create-theme): New optional arg THEME.
1606 (custom-theme-revert): Use it.
1607 (custom-theme-visit-theme): Remove dead code.
1608 (custom-theme-merge-theme): Use custom-available-themes.
1609 (custom-theme-write): Make interactive.
1610 (custom-theme-write): Use custom-theme-name-valid-p.
1611 (describe-theme-1, custom-theme-choose-revert)
1612 (custom-theme-checkbox-toggle, custom-theme-selections-toggle):
1613 New funs.
1614 (custom-theme-allow-multiple-selections): New option.
1615 (custom-theme-choose-mode): New major mode.
1616
1617 * custom.el (custom-theme-set-variables): Remove dead code.
1618 Obey custom--inhibit-theme-enable.
1619 (custom--inhibit-theme-enable): New var.
1620 (provide-theme): Obey it.
1621 (load-theme): Replace load with manual read/eval, in order to
1622 check for correctness. Use custom-theme-name-valid-p.
1623 (custom-theme-name-valid-p): New function.
1624 (custom-available-themes): Use it.
1625
1626 * cus-edit.el (custom--initialize-widget-variables): New function.
1627 (Custom-mode): Use it.
1628
1629 * cus-face.el (custom-theme-set-faces): Remove dead code.
1630 Obey custom--inhibit-theme-enable.
1631
1632 * help-mode.el (help-theme-def, help-theme-edit): New buttons.
1633
1634 2010-10-12 Juanma Barranquero <lekktu@gmail.com>
1635
1636 * net/telnet.el (telnet-mode-map): Fix previous change (bug#7193).
1637
1638 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
1639
1640 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
1641 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
1642 (mac-right-option-modifier): New alias for ns-right-option-modifier.
1643
1644 * cus-start.el (all): ns-right-alternate-modifier is new.
1645
1646 2010-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1647
1648 * emacs-lisp/lisp.el (lisp-completion-at-point):
1649 Use emacs-lisp-mode-syntax-table for the whole function.
1650
1651 2010-10-12 David Koppelman <koppel@ece.lsu.edu>
1652
1653 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
1654 instead of font-lock-mode before adding keywords.
1655 Remove hi-lock-mode off code. Remove inhibit hack.
1656 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
1657 non-nil; removed hook inhibit hack.
1658
1659 2010-10-12 Glenn Morris <rgm@gnu.org>
1660
1661 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
1662 (load-path-shadows-find): ... to this.
1663 (list-load-path-shadows): Update for above change.
1664
1665 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
1666
1667 2010-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
1668
1669 * mail/hashcash.el, net/imap.el, pgg-parse.el, pgg.el:
1670 Fix comment for declare-function.
1671
1672 2010-10-11 Chong Yidong <cyd@stupidchicken.com>
1673
1674 * custom.el (custom-fix-face-spec): New function; code moved from
1675 custom-face-edit-fix-value.
1676 (custom-push-theme): Use it when checking if a face has been
1677 changed outside customize.
1678 (custom-available-themes): New function.
1679 (load-theme): Use it.
1680
1681 * cus-edit.el (custom-face-edit-fix-value): Use custom-fix-face-spec.
1682
1683 * custom.el (custom-push-theme): Cleanup (use cond).
1684 (disable-theme): Recompute the saved-face property.
1685 (custom-theme-recalc-face): Follow face alias before setting prop.
1686
1687 * image.el (image-checkbox-checked, image-checkbox-unchecked):
1688 New variables, containing checkbox images.
1689
1690 * startup.el (fancy-startup-tail):
1691 * wid-edit.el (checkbox): Use them.
1692
1693 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
1694
1695 * shell.el (shell-mode-map):
1696 * progmodes/modula2.el (m2-mode-map):
1697 * progmodes/inf-lisp.el (inferior-lisp-mode-map):
1698 * play/mpuz.el (mpuz-mode-map):
1699 * play/landmark.el (lm-mode-map):
1700 * play/decipher.el (decipher-mode-map):
1701 * play/5x5.el (5x5-mode-map):
1702 * net/telnet.el (telnet-mode-map):
1703 * net/quickurl.el (quickurl-list-mode-map):
1704 * net/mairix.el (mairix-searches-mode-map):
1705 * net/eudc-hotlist.el (eudc-hotlist-mode-map):
1706 * net/dig.el (dig-mode-map):
1707 * mail/mspools.el (mspools-mode-map):
1708 * hexl.el (hexl-mode-map):
1709 * emulation/ws-mode.el (wordstar-C-k-map, wordstar-mode-map)
1710 (wordstar-C-o-map, wordstar-C-q-map):
1711 * emacs-lisp/edebug.el (edebug-eval-mode-map):
1712 * emacs-lisp/chart.el (chart-map):
1713 * edmacro.el (edmacro-mode-map):
1714 * erc/erc-list.el (erc-list-menu-mode-map):
1715 * array.el (array-mode-map): Declare and define in one step.
1716
1717 * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
1718
1719 2010-10-10 Daiki Ueno <ueno@unixuser.org>
1720
1721 * epa.el (epa-passphrase-callback-function): Display filename
1722 passed as the 3rd arg.
1723 * epa-file.el (epa-file-passphrase-callback-function):
1724 Pass filename to epa-passphrase-callback-function.
1725
1726 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
1727
1728 * cus-edit.el (custom-face-widget-to-spec)
1729 (custom-face-get-current-spec, custom-face-state): New functions.
1730 (custom-face-set, custom-face-mark-to-save)
1731 (custom-face-value-create, custom-face-state-set): Use them.
1732
1733 * cus-theme.el (custom-theme--listed-faces): New var.
1734 (customize-create-theme): Use *Custom Theme* as the buffer name.
1735 Set revert-buffer-function. Optional arg BUFFER. Insert all
1736 faces listed in custom-theme--listed-faces.
1737 (custom-theme-revert): New function.
1738 (custom-theme-add-variable, custom-theme-add-face): Insert at the
1739 bottom of the list.
1740 (custom-theme-write): Prompt for theme name if empty.
1741 (custom-theme-write-variables): Use dolist.
1742 (custom-theme-write-faces): Handle hidden (collapsed) widgets.
1743
1744 2010-10-09 Alan Mackenzie <acm@muc.de>
1745
1746 Enhance fontification of declarators to take account of the
1747 presence/absence of "typedef".
1748
1749 * cc-engine.el (c-forward-type): New &optional param
1750 "brace-block-too".
1751 (c-forward-decl-or-cast-1): cdr of return value now indicates the
1752 presence of either or both of a "struct"-like keyword and "typedef".
1753
1754 * cc-fonts.el (c-complex-decl-matchers): Remove the heuristic
1755 fontification of declarators which follow a "}".
1756 (c-font-lock-declarations): Fontify declarators according to the
1757 presence/absence of "typedef".
1758
1759 * cc-langs.el (c-typedef-kwds c-typedef-key): New lang variable
1760 for "typedef".
1761 (c-typedef-decl-key): New lang variable built from
1762 c-typedef-decl-kwds.
1763
1764 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
1765
1766 * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
1767 since that's too annoying. Move the filter groups commands to
1768 TAB/backtab.
1769
1770 * epa.el (epa-passphrase-callback-function): Say what we're
1771 querying the password for.
1772
1773 * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
1774 behaviour, don't bury the ibuffer buffer when visiting other buffers.
1775
1776 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
1777
1778 * cus-edit.el (custom-commands, custom-buffer-create-internal)
1779 (custom-magic-value-create): Pad button tags with spaces.
1780 (custom-face-edit): New variable.
1781 (custom-face-value-create): Determine whether to use the usual
1782 face editor here, instead of using custom-face-selected.
1783 Pass face defaults to custom-face-edit widget.
1784 (custom-face-selected, custom-display-unselected): Delete widgets.
1785 (custom-display-unselected-match): Function removed.
1786 (custom-face-set, custom-face-mark-to-save):
1787 Accept custom-face-edit widgets as the direct widget child.
1788
1789 * wid-edit.el (widget--completing-widget): New var.
1790 (widget-default-complete): Bind it when doing completion.
1791 (widget-string-complete, widget-file-complete): Use it.
1792
1793 2010-10-09 Glenn Morris <rgm@gnu.org>
1794
1795 * calendar/cal-hebrew.el (holiday-hebrew-rosh-hashanah)
1796 (holiday-hebrew-passover, holiday-hebrew-tisha-b-av)
1797 (holiday-hebrew-misc): Small simplifications.
1798
1799 * emacs-lisp/authors.el (authors-valid-file-names): Add b2m.c.
1800
1801 * net/browse-url.el: Don't require thingatpt, term, dired,
1802 executable, or w3-auto when compiling.
1803 (dired-get-filename, term-char-mode, term-send-down, term-send-string):
1804 Declare.
1805 (browse-url-text-emacs): Require term.
1806
1807 2010-10-08 Andreas Schwab <schwab@linux-m68k.org>
1808
1809 * net/browse-url.el (browse-url-xdg-open): Remove use of /bin/sh.
1810
1811 2010-10-08 Glenn Morris <rgm@gnu.org>
1812
1813 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
1814
1815 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
1816 (shadows-compare-text-p): Make it an obsolete alias for...
1817 (load-path-shadows-compare-text): ... new name.
1818 (find-emacs-lisp-shadows): Update for above name change.
1819 (load-path-shadows-same-file-or-nonexistent): New name for the old
1820 shadow-same-file-or-nonexistent.
1821
1822 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
1823
1824 * minibuffer.el (completion--some, completion--do-completion)
1825 (minibuffer-complete-and-exit, minibuffer-completion-help)
1826 (completion-basic-try-completion)
1827 (completion-basic-all-completions)
1828 (completion-pcm--find-all-completions): Use lexical-let to
1829 avoid some false matches in variable completion (Bug#7056)
1830
1831 2010-10-08 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
1832
1833 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
1834
1835 2010-10-08 Leo <sdl.web@gmail.com>
1836
1837 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
1838 return non-nil if the file exists (Bug#7090).
1839
1840 2010-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1841
1842 * minibuffer.el (completion--replace):
1843 Better preserve markers (bug#7138).
1844
1845 2010-10-08 Juanma Barranquero <lekktu@gmail.com>
1846
1847 * server.el (server-process-filter): Doc fix.
1848
1849 2010-10-08 Drew Adams <drew.adams@oracle.com>
1850
1851 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
1852
1853 2010-10-08 Andreas Schwab <schwab@linux-m68k.org>
1854
1855 * Makefile.in (ELCFILES): Update.
1856
1857 2010-10-08 Glenn Morris <rgm@gnu.org>
1858
1859 * vc/ediff-wind.el (ediff-setup-control-frame):
1860 * vc/ediff-ptch.el (ediff-default-backup-extension):
1861 * vc/ediff-diff.el (ediff-shell, ediff-diff-options)
1862 (ediff-exec-process): Remove system-types emx, windows-95.
1863
1864 * net/browse-url.el (browse-url-xdg-open): Shell-quote url. (Bug#7166)
1865
1866 2010-10-07 Chong Yidong <cyd@stupidchicken.com>
1867
1868 * cus-edit.el (custom-variable, custom-face): Doc fix.
1869 (custom-face-edit): Add value-create attribute.
1870 (custom-face-edit-value-create)
1871 (custom-face-edit-value-visibility-action): New functions.
1872 Hide unused face attributes by default, and add a visibility toggle.
1873 (custom-face-edit-deactivate): Show empty values with shadow face.
1874 (custom-face-selected): Only use this for face specs with default
1875 attributes.
1876 (custom-face-value-create): Cleanup.
1877
1878 * wid-edit.el (widget-checklist-value-create): Use dolist.
1879 (widget-checklist-match-find): Make second arg optional.
1880
1881 2010-10-07 Glenn Morris <rgm@gnu.org>
1882
1883 * hilit-chg.el (hilit-chg-get-diff-info, hilit-chg-get-diff-list-hk):
1884 Prefix things.
1885
1886 * emacs-lisp/shadow.el (shadow-font-lock-keywords)
1887 (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to
1888 load-path-shadows-mode, update references.
1889 (load-path-shadows-font-lock-keywords, load-path-shadows-find-file):
1890 Rename variable and button.
1891 (list-load-path-shadows): Update button caller.
1892
1893 2010-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1894
1895 * emacs-lisp/smie.el (smie-bnf-classify): New function.
1896 (smie-bnf-precedence-table): Use it to remember the closers/openers.
1897 (smie-merge-prec2s): Handle those new entries.
1898 (smie-prec2-levels): Only set precedence to nil for actual
1899 openers/closers.
1900 * progmodes/octave-mod.el (octave-smie-op-levels): Remove dummy entry
1901 that is now unnecessary.
1902
1903 2010-10-07 Miles Bader <miles@gnu.org>
1904
1905 * emacs-lisp/regexp-opt.el (regexp-opt): Add `symbols' mode.
1906
1907 2010-10-07 Glenn Morris <rgm@gnu.org>
1908
1909 * mail/rmail.el (mail-sendmail-delimit-header, mail-header-end)
1910 (mail-position-on-field): Remove declarations.
1911 (mail-position-on-field): Autoload it.
1912 (rmail-retry-failure): Replace use of mail-sendmail-delimit-header
1913 and mail-header-end. Don't require sendmail.
1914
1915 * emacs-lisp/shadow.el (shadow-font-lock-keywords): New variable.
1916 (shadow-mode): New mode.
1917 (shadow-find-file): New button.
1918 (list-load-path-shadows): Use shadow-mode and buttons.
1919
1920 * iimage.el (iimage-version): Remove.
1921 (iimage-mode-image-search-path, iimage-mode-image-regex-alist):
1922 Turn into defcustoms.
1923 (iimage-mode-map): Give it a doc string.
1924
1925 * calendar/appt.el (appt-activate): Give a warning rather than an error
1926 if there is no diary-file.
1927
1928 2010-10-06 Michael Albinus <michael.albinus@gmx.de>
1929
1930 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
1931 Use `tramp-handle-find-backup-file-name'.
1932
1933 2010-10-06 Glenn Morris <rgm@gnu.org>
1934
1935 * font-core.el (font-lock-defaults-alist): Remove variable.
1936 (font-lock-mode): Doc fix.
1937 (font-lock-default-function): Do not consult font-lock-defaults-alist.
1938 * font-lock.el (font-lock-refresh-defaults): Doc fix.
1939 (font-lock-set-defaults): Doc fix.
1940 Do not consult font-lock-defaults-alist.
1941
1942 * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
1943
1944 * emacs-lisp/cl.el: No longer provide cl-19.
1945
1946 2010-10-05 Michael Albinus <michael.albinus@gmx.de>
1947
1948 * net/tramp.el (tramp-handle-directory-files-and-attributes)
1949 (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p):
1950 New defuns, taken from tramp-smb.el.
1951 (tramp-coding-system-change-eol-conversion)
1952 (tramp-set-process-query-on-exit-flag): Remove.
1953
1954 * net/tramp-compat.el (top): Do not check for byte-compiler objects.
1955 (tramp-compat-coding-system-change-eol-conversion)
1956 (tramp-compat-set-process-query-on-exit-flag): New defuns, taken
1957 from tramp.el.
1958
1959 * net/tramp-gvfs.el:
1960 * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag'
1961 by `tramp-compat-set-process-query-on-exit-flag'.
1962
1963 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
1964 Use `tramp-handle-directory-files-and-attributes',
1965 `tramp-handle-file-exists-p' and
1966 `tramp-handle-file-newer-than-file-p'.
1967 (tramp-imap-handle-file-exists-p)
1968 (tramp-imap-handle-file-executable-p)
1969 (tramp-imap-handle-file-readable-p)
1970 (tramp-imap-handle-directory-files-and-attributes)
1971 (tramp-imap-handle-file-newer-than-file-p): Remove.
1972
1973 * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag'
1974 by `tramp-compat-set-process-query-on-exit-flag' and
1975 `tramp-coding-system-change-eol-conversion' by
1976 `tramp-compat-coding-system-change-eol-conversion'.
1977
1978 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1979 Use `tramp-handle-directory-files-and-attributes',
1980 `tramp-handle-file-exists-p' and
1981 `tramp-handle-file-newer-than-file-p'.
1982 (tramp-smb-handle-directory-files-and-attributes)
1983 (tramp-smb-handle-file-exists-p)
1984 (tramp-smb-handle-file-newer-than-file-p): Remove.
1985 (tramp-smb-maybe-open-connection):
1986 Replace `tramp-set-process-query-on-exit-flag' by
1987 `tramp-compat-set-process-query-on-exit-flag'.
1988
1989 2010-10-05 Glenn Morris <rgm@gnu.org>
1990
1991 * obsolete/rnews.el, obsolete/rnewspost.el: Remove files.
1992
1993 2010-10-04 Michael Albinus <michael.albinus@gmx.de>
1994
1995 Continue reorganization of load dependencies. (Bug#7156)
1996
1997 * net/tramp.el (tramp-handle-file-local-copy-hook)
1998 (tramp-delete-temp-file-function): Move down.
1999 (tramp-exists-file-name-handler): Move up.
2000 (tramp-register-file-name-handlers): Simplify autoload.
2001 (tramp-handle-write-region-hook, tramp-handle-directory-file-name)
2002 (tramp-handle-directory-files, tramp-handle-dired-uncache)
2003 (tramp-handle-file-modes, tramp-handle-file-name-as-directory)
2004 (tramp-handle-file-name-completion)
2005 (tramp-handle-file-name-directory)
2006 (tramp-handle-file-name-nondirectory, tramp-handle-file-regular-p)
2007 (tramp-handle-file-remote-p, tramp-handle-file-symlink-p)
2008 (tramp-handle-find-backup-file-name)
2009 (tramp-handle-insert-file-contents, tramp-handle-load)
2010 (tramp-handle-substitute-in-file-name)
2011 (tramp-handle-unhandled-file-name-directory)
2012 (tramp-mode-string-to-int, tramp-local-host-p)
2013 (tramp-make-tramp-temp-file): Move from tramp-sh.el.
2014
2015 * net/tramp-gvfs.el (top):
2016 * net/tramp-smb.el (top): Do not require 'tramp-sh.
2017
2018 * net/tramp-sh.el (all): Move several objects to tramp.el, see
2019 there. Rename `tramp-handle-*' to `tramp-sh-handle-*'.
2020
2021 2010-10-04 Glenn Morris <rgm@gnu.org>
2022
2023 * calendar/appt.el (appt-add): Ensure reminders are enabled.
2024 (appt-activate): Give status messages.
2025
2026 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
2027
2028 * net/gnutls.el: Improve docs. Remove starttls and ssl emulation.
2029 Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
2030 `gnutls-negotiate' (formerly `starttls-negotiate').
2031 Remove trivial wrapper `starttls-open-stream'.
2032
2033 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
2034
2035 Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
2036 log-outgoing commands.
2037 * vc/vc.el (vc-log-internal-common): Add a new argument and use it
2038 to create a buffer local revert-buffer-function variable.
2039 (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
2040 revert-buffer-function lambda.
2041
2042 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
2043
2044 * net/gnutls.el (starttls-negotiate): Use the plist interface to
2045 `gnutls-boot'. Make TYPE the only required parameter.
2046 Allow TRUSTFILES and KEYFILES to be lists.
2047 (open-ssl-stream): Use it.
2048
2049 2010-10-03 Glenn Morris <rgm@gnu.org>
2050
2051 * subr.el (directory-sep-char): Remove obsolete variable.
2052 * net/tramp-compat.el: Don't mess about with the byte-compiler unless
2053 it is "necessary".
2054
2055 * vc/vc-hooks.el (vc-header-alist): Remove obsolete variable.
2056 * vc/vc.el (vc-static-header-alist): Doc fix.
2057 * vc/vc-cvs.el (vc-cvs-header):
2058 * vc/vc-rcs.el (vc-rcs-header):
2059 * vc/vc-sccs.el (vc-sccs-header):
2060 * vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist.
2061 * obsolete/vc-mcvs.el (vc-mcvs-header):
2062 * progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist
2063 on XEmacs.
2064
2065 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
2066
2067 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
2068 Remove obsolete use of binary-overwrite-mode (Bug#7001).
2069
2070 2010-10-03 Glenn Morris <rgm@gnu.org>
2071
2072 * obsolete/x-menu.el: Remove file, obsolete since 21.1
2073
2074 * textmodes/rst.el (rst-font-lock-keywords-function):
2075 Drop Emacs 20 code.
2076
2077 * textmodes/artist.el (artist-replace-char): Drop Emacs 20 code.
2078
2079 * printing.el: Drop Emacs 20 code.
2080
2081 * calendar/appt.el (appt-delete): Don't autoload it (you can't use it
2082 without having used appt.el already).
2083
2084 * subr.el (make-local-hook): Remove function obsolete since 21.1.
2085 * progmodes/cc-mode.el (make-local-hook): Don't do cc-bytecomp stuff.
2086 (c-basic-common-init, c-font-lock-init): Only call make-local-hook on
2087 XEmacs.
2088 * progmodes/cc-styles.el (make-local-hook): Don't do cc-bytecomp stuff.
2089 (c-make-styles-buffer-local): Only call make-local-hook on XEmacs.
2090
2091 * ps-def.el (leading-code-private-22, charset-bytes, charset-id)
2092 (charset-width, find-charset-region, chars-in-region, forward-point)
2093 (encode-coding-string, coding-system-p, ccl-execute-on-string)
2094 (define-ccl-program, multibyte-string-p, string-make-multibyte):
2095 Remove compatibility cruft (none of these are used by ps*.el).
2096
2097 2010-10-03 Kevin Rodgers <kevin.d.rodgers@gmail.com>
2098
2099 * subr.el (booleanp): Return t instead of a list (Bug#7086).
2100
2101 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
2102
2103 * server.el (server-process-filter, server-return-error):
2104 Give emacsclient time to shut down after receiving an error string.
2105
2106 2010-10-02 Michael Albinus <michael.albinus@gmx.de>
2107
2108 * files.el (remote-file-name-inhibit-cache): New defcustom.
2109
2110 * time.el (display-time-file-nonempty-p):
2111 Use `remote-file-name-inhibit-cache'.
2112
2113 * net/tramp.el (tramp-completion-reread-directory-timeout):
2114 Fix docstring.
2115
2116 * net/tramp-cache.el (tramp-cache-inhibit-cache): Remove.
2117 (tramp-get-file-property): Replace `tramp-cache-inhibit-cache' by
2118 `remote-file-name-inhibit-cache'. Check also for an integer
2119 value. Add/increase counter when `tramp-verbose' >= 10.
2120 (tramp-set-file-property): Add/increase counter when
2121 `tramp-verbose' >= 10.
2122
2123 * net/tramp-cmds.el (tramp-cleanup-all-connections)
2124 (tramp-cleanup-all-buffers): Set tramp-autoload cookie.
2125 (tramp-bug): Set tramp-autoload cookie. Report all interned
2126 tramp-* variables. Report also `remote-file-name-inhibit-cache'.
2127 (tramp-reporter-dump-variable): Fix docstring. Mask non-7bit
2128 characters only in strings.
2129
2130 * net/tramp-compat.el (remote-file-name-inhibit-cache): Define due
2131 to backward compatibility.
2132
2133 * net/tramp-sh.el (tramp-handle-verify-visited-file-modtime)
2134 (tramp-handle-file-name-all-completions)
2135 (tramp-handle-vc-registered): Use `remote-file-name-inhibit-cache'.
2136 (tramp-open-connection-setup-interactive-shell):
2137 Call `tramp-cleanup-connection' directly.
2138
2139 2010-10-02 Glenn Morris <rgm@gnu.org>
2140
2141 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
2142
2143 * subr.el (char-bytes): Remove obsolete function.
2144
2145 * isearch.el (isearch-return-char): Remove obsolete function.
2146
2147 * mouse.el: No longer provide mldrag.
2148 (mldrag-drag-mode-line, mldrag-drag-vertical-line):
2149 Remove obsolete aliases.
2150
2151 * comint.el (comint-kill-output): Remove obsolete alias.
2152
2153 * composite.el (decompose-composite-char): Remove obsolete function.
2154 * ps-def.el (decompose-composite-char): Remove unused function.
2155
2156 * iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
2157
2158 * outline.el (outline-visible): Remove obsolete function.
2159
2160 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
2161 * faces.el (internal-find-face, internal-get-face)
2162 (frame-update-faces, frame-update-face-colors)
2163 (x-frob-font-weight, x-frob-font-slant)
2164 (internal-frob-font-weight, internal-frob-font-slant)
2165 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
2166 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
2167 (x-make-font-bold-italic): Remove functions and aliases, obsolete
2168 since Emacs 21.1.
2169 * emulation/viper-util.el (viper-get-face):
2170 * obsolete/lucid.el (find-face, get-face): Use facep.
2171 * vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
2172 Remove unused functions.
2173 * vc/ediff-util.el (ediff-submit-report): Doc fix.
2174
2175 * emacs-lisp/bytecomp.el (byte-compile-file): Use kill-emacs-hook to
2176 delete tempfile if interrupted during compilation.
2177
2178 2010-10-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
2179
2180 * net/tls.el (tls-starttls-switches): Give up on using starttls with
2181 gnutls-cli.
2182 (tls-program): Add --insecure to be consistent with the defaults from
2183 openssl s_client. Now all three commands are insecure.
2184
2185 2010-10-01 Eli Zaretskii <eliz@gnu.org>
2186
2187 * makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
2188 (TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
2189 (TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
2190
2191 2010-10-01 Glenn Morris <rgm@gnu.org>
2192
2193 * obsolete/sc.el: Remove file.
2194
2195 * files.el (temporary-file-directory): On darwin, also try
2196 DARWIN_USER_TEMP_DIR (see discussion in bug#7135).
2197
2198 2010-10-01 Juanma Barranquero <lekktu@gmail.com>
2199
2200 * server.el (server-start): Revert part of 2010-09-30T02:53:26Z!lekktu@gmail.com.
2201 Let's not break compatibility gratuitously, shall we?
2202
2203 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
2204
2205 * net/tls.el (tls-starttls-switches): New variable.
2206 (tls-find-starttls-argument): Use it.
2207 (open-tls-stream): Ditto.
2208
2209 * net/netrc.el (netrc-credentials): Return the value of the "default"
2210 entry.
2211 (netrc-machine): Ditto.
2212
2213 2010-09-30 Eli Zaretskii <eliz@gnu.org>
2214
2215 * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
2216
2217 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
2218
2219 * server.el (server-start): Don't write pid to the authentication file.
2220 (server-create-tty-frame): Don't send pid.
2221 (server-process-filter): Send pid at the start of every connection.
2222
2223 2010-09-30 Glenn Morris <rgm@gnu.org>
2224
2225 * calendar/diary-lib.el (view-diary-entries, list-diary-entries)
2226 (show-all-diary-entries): Remove obsolete function aliases.
2227
2228 * calendar/appt.el (appt-issue-message, appt-visible, appt-msg-window):
2229 Remove options, obsolete since 22.1.
2230 (appt-display-format, appt-display-message): Remove
2231 backwards-compatibility code.
2232 (appt-check): No longer check appt-issue-message.
2233 (appt-make-list): No longer autoload it. Doc fix. No longer
2234 activate the package.
2235
2236 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
2237
2238 * net/gnutls.el (starttls-negotiate): Loop a lot longer.
2239 (starttls-negotiate): Just call boot, and let the handshake be
2240 triggered from the read loop.
2241
2242 2010-09-29 Glenn Morris <rgm@gnu.org>
2243
2244 * calendar/diary-lib.el (diary-list-entries): Use temp buffers when
2245 not displaying the diary.
2246 (diary-add-to-list): If no buffer-file-name, fall back to diary-file.
2247 * calendar/appt.el (appt-check): No longer need to kill diary.
2248
2249 * calendar/diary-lib.el (diary-list-entries): Move the
2250 "Preparing..." message entirely here.
2251 (diary-simple-display, diary-fancy-display): Move "Preparing..."
2252 messages to diary-list-entries.
2253 (diary-include-other-diary-files): Use LIST-ONLY rather than setting
2254 diary-display-function.
2255
2256 * calendar/diary-lib.el (diary-include-other-diary-files):
2257 Trap some recursive includes.
2258
2259 * calendar/appt.el (appt-activate): Check diary file.
2260
2261 2010-09-29 Katsumi Yamaoka <yamaoka@jpl.org>
2262
2263 * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
2264 construction.
2265
2266 * calendar/time-date.el: No need to require cl for Emacs 21.
2267
2268 2010-09-28 Glenn Morris <rgm@gnu.org>
2269
2270 * calendar/appt.el (appt-check): Minor simplification.
2271
2272 2010-09-28 Katsumi Yamaoka <yamaoka@jpl.org>
2273
2274 * mail/sendmail.el (mail-citation-prefix-regexp): Remove "}" from
2275 citation prefix.
2276
2277 2010-09-27 Andreas Schwab <schwab@linux-m68k.org>
2278
2279 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
2280 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
2281
2282 2010-09-27 Kenichi Handa <handa@m17n.org>
2283
2284 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
2285 "ustar" format.
2286
2287 2010-09-27 Kenichi Handa <handa@m17n.org>
2288
2289 * international/mule.el (define-coding-system): Docstring fixed.
2290
2291 * international/mule-diag.el (describe-character-set): Use princ
2292 with proper print-length and print-level instead of insert.
2293
2294 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
2295
2296 * window.el (walk-windows): Doc fix (bug#7105).
2297
2298 2010-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2299
2300 * emacs-lisp/float-sup.el (e): Remove.
2301
2302 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
2303
2304 * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom
2305 variable.
2306 (starttls-negotiate): Use it.
2307
2308 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
2309
2310 * net/gnutls.el (starttls-negotiate): Stop looping when we get a t
2311 back.
2312
2313 2010-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
2314
2315 * emacs-lisp/pcase.el (pcase-let*, pcase-let): plet -> pcase-let.
2316
2317 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
2318
2319 * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function.
2320
2321 * net/netrc.el (netrc-store-data): New function.
2322
2323 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
2324
2325 * net/gnutls.el: GnuTLS glue code to set up a connection.
2326
2327 2010-09-25 Julien Danjou <julien@danjou.info>
2328
2329 * notifications.el: Call dbus-register-signal only if it is bound.
2330
2331 2010-09-25 Glenn Morris <rgm@gnu.org>
2332
2333 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
2334 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
2335 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
2336 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
2337 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
2338 * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
2339 * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
2340 * eshell/esh-util.el, eshell/esh-var.el:
2341 Remove leading `*' from docs of faces and defcustoms.
2342
2343 2010-09-25 Ulrich Mueller <ulm@gentoo.org>
2344
2345 * eshell/em-ls.el (eshell-ls-archive-regexp):
2346 * eshell/esh-util.el (eshell-tar-regexp):
2347 * ibuffer.el (ibuffer-compressed-file-name-regexp):
2348 * info.el (Info-suffix-list):
2349 * international/mule.el (auto-coding-alist):
2350 * woman.el (woman-file-regexp, woman-file-compression-regexp):
2351 * progmodes/etags.el (tags-compression-info-list):
2352 Support xz compression.
2353
2354 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
2355
2356 * files.el (get-free-disk-space): Don't assume the "df" output
2357 columns line up (Bug#6995).
2358
2359 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
2360
2361 * finder.el (finder-unknown-keywords):
2362 * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
2363 * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
2364
2365 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
2366
2367 * server.el (server-start): Revert part of 2010-08-08 change. Using
2368 address 127.0.0.1 for local host is now done in Fmake_network_process.
2369
2370 2010-09-24 Glenn Morris <rgm@gnu.org>
2371
2372 * image-mode.el, progmodes/compile.el, progmodes/gud.el:
2373 * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
2374 * textmodes/css-mode.el, textmodes/dns-mode.el:
2375 Move autoloaded auto-mode-alist entries to files.el.
2376 * files.el (auto-mode-alist): Move entries here.
2377
2378 2010-09-23 Glenn Morris <rgm@gnu.org>
2379
2380 * isearch.el (isearch-lazy-highlight-cleanup)
2381 (isearch-lazy-highlight-initial-delay)
2382 (isearch-lazy-highlight-interval)
2383 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
2384 * net/net-utils.el (ipconfig-program-options):
2385 Move aliases to options before the associated definitions.
2386
2387 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
2388
2389 * newcomment.el (comment-normalize-vars): Better test validity of
2390 comment-end-skip.
2391
2392 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
2393
2394 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
2395 (float-e): New name for `e'.
2396 (degrees-to-radians, radians-to-degrees):
2397 * calendar/solar.el (solar-longitude):
2398 * calculator.el (calculator-registers, calculator-funcall):
2399 * textmodes/artist.el (artist-spray-random-points):
2400 * play/bubbles.el (bubbles--initialize-images): Use new names.
2401
2402 2010-09-23 Eric M. Ludlam <zappo@gnu.org>
2403
2404 Update to CEDET 1.0's version of EIEIO.
2405
2406 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
2407 New function.
2408 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
2409 (eieio-default-eval-maybe): Eval val instead of unquoting only.
2410 (class-precedence-list): If class is nil, return nil.
2411 (eieio-generic-call): If class of first input arg is nil, don't
2412 look up static methods, and do check for primary methods.
2413 (initialize-instance): See if the default needs to be evaluated
2414 during the constructor.
2415 (eieio-perform-slot-validation-for-default): Don't do the check
2416 for values that will eventually be evaluated.
2417 (eieio-eval-default-p): New function.
2418 (eieio-default-eval-maybe): Use it.
2419
2420 2010-09-23 Jan Moringen <jan.moringen@uni-bielefeld.de>
2421
2422 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
2423 method-invocation-order.
2424 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
2425 (eieio-class-precedence-dfs): Compute class precedence list using
2426 dfs algorithm.
2427 (eieio-class-precedence-bfs): Compute class precedence list using
2428 bfs algorithm.
2429 (eieio-class-precedence-c3): Compute class precedence list using
2430 c3 algorithm.
2431 (class-precedence-list): New function.
2432 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
2433 (inconsistent-class-hierarchy): New error symbol.
2434 (call-next-method): Stow the replacement argument list for future
2435 call-next-method invocations.
2436
2437 2010-09-23 Glenn Morris <rgm@gnu.org>
2438
2439 * calendar/appt.el (appt-check): If not displaying the diary,
2440 use (diary 1) to only get the entries we need.
2441 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
2442 that it is in day order. (Bug#7019)
2443
2444 * calendar/appt.el (appt-check): Rather than showing the diary,
2445 just turn off invisible display, and only if needed.
2446
2447 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
2448
2449 2010-09-23 Glenn Morris <rgm@gnu.org>
2450
2451 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
2452 (byte-compile-defvar, byte-compile-cl-warn):
2453 Start warnings with lower-case, like the majority.
2454
2455 * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
2456
2457 * files.el (auto-mode-alist): Prefer C-mode for .xs. (Bug#7071)
2458
2459 * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
2460 * files.el (auto-mode-alist): Move ld-script entries here, further down
2461 the list.
2462
2463 * vc/add-log.el: Don't require timezone when compiling.
2464 (timezone-make-date-sortable): Autoload it.
2465 (change-log-sortable-date-at): Don't require timezone.
2466 Use `ignore-errors'.
2467
2468 * comint.el (comint-use-prompt-regexp-instead-of-fields):
2469 Move alias before definition, so it does not need autoloading.
2470
2471 * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
2472 * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
2473 * international/kkc.el, international/ogonek.el, mail/feedmail.el:
2474 * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
2475 * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
2476 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
2477 * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
2478 * textmodes/tex-mode.el, textmodes/two-column.el:
2479 Remove leading `*' from docs of defcustoms etc.
2480
2481 2010-09-23 Teodor Zlatanov <tzz@lifelogs.com>
2482
2483 * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
2484
2485 2010-09-22 Dan Christensen <jdc@uwo.ca>
2486
2487 * calendar/time-date.el (date-to-time): Try using parse-time-string
2488 first before using the slower timezone-make-date-arpa-standard.
2489
2490 2010-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
2491
2492 * calendar/time-date.el (format-seconds): Comment fix.
2493
2494 2010-09-22 Glenn Morris <rgm@gnu.org>
2495
2496 * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
2497 is not automatically buffer-local.
2498
2499 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
2500
2501 * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
2502 (smie-indent-comment): Be more careful with comment-start-skip.
2503 (smie-indent-comment-close, smie-indent-comment-inside): New funs.
2504 (smie-indent-functions): Use them.
2505
2506 2010-09-21 Michael Albinus <michael.albinus@gmx.de>
2507
2508 * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
2509
2510 2010-09-21 Jan Djärv <jan.h.d@swipnet.se>
2511
2512 * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
2513 tool-bar-position. Don't modify frame parameters here.
2514 (menu-bar-options-save): Add tool-bar-position.
2515
2516 * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
2517
2518 2010-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2519
2520 * textmodes/reftex-parse.el (reftex-what-macro)
2521 (reftex-context-substring): Let-bind forward-sexp-function to nil
2522 since we don't need/want to treat \begin...\end as a block (bug#7053).
2523
2524 * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
2525
2526 * simple.el (blink-matching-open): Use syntax-class.
2527
2528 * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
2529 Set invisibility spec for pascal's outline mode.
2530 (pascal-outline-change): Clean up calling convention.
2531 (pascal-show-all, pascal-hide-other-defuns): Update callers.
2532
2533 * progmodes/prolog.el (prolog-smie-forward-token)
2534 (prolog-smie-backward-token): New functions.
2535 (prolog-mode-variables): Use them to parse "!," correctly.
2536 Set up smie-blink-matching for ".".
2537
2538 * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
2539 and `end'.
2540 (ispell-region, ispell-process-line): Update users.
2541
2542 * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
2543 point-min==1.
2544
2545 * textmodes/ispell.el: Fix commenting convention.
2546 (ispell-parse-output): Simplify, use push.
2547 (ispell-region): Use match-string-no-properties.
2548 (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
2549 (ispell-minor-mode): Use define-minor-mode.
2550 (ispell-message): Remove unused var `skip-regexp'.
2551 (ispell-add-per-file-word-list): Use dynamic let-binding.
2552 Try and use the proper comment marker.
2553
2554 * mail/sendmail.el: Fix commenting convention.
2555 (sendmail-send-it): Use line-beginning-position.
2556
2557 * help-fns.el (describe-variable): Add original value, if applicable.
2558
2559 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
2560
2561 * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
2562
2563 * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
2564
2565 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2566
2567 * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
2568 (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
2569 (smie-prec2-levels): Use them to better diagnose precedence cycles.
2570 (smie-blink-matching-check): Don't signal a mismatch if car is t.
2571 (smie-blink-matching-open): Rewrite to remove assumptions, so that
2572 something like "." can also be a closer.
2573 (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
2574 (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
2575 Rename internal functions to use "--". Update callers.
2576
2577 * frame.el (make-frame-names-alist): Don't list frames on other displays.
2578
2579 * fringe.el (fringe-styles): New var.
2580 (fringe-mode, fringe-query-style): Use it.
2581
2582 2010-09-18 Michael R. Mauger <mmaug@yahoo.com>
2583
2584 * progmodes/sql.el: Version 2.8
2585 (sql-login-params): Update widget structure; changes still needed.
2586 (sql-product-alist): Add :list-all and :list-table features for
2587 SQLite, Postgres and MySQL products.
2588 (sql-redirect): Handle default value.
2589 (sql-execute, sql-execute-feature): New functions.
2590 (sql-read-table-name): New function.
2591 (sql-list-all, sql-list-table): New functions. User API.
2592 (sql-mode-map, sql-interactive-mode-map): Add key definitions
2593 for above functions.
2594 (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
2595 for above functions.
2596 (sql-postgres-login-params): Add user and database defaults.
2597 (sql-buffer-live-p): Bug fix.
2598 (sql-product-history): New variable.
2599 (sql-read-product): New function. Use it.
2600 (sql-set-product, sql-product-interactive): Use it.
2601 (sql-connection-history): New variable.
2602 (sql-read-connection): New function. Use it.
2603 (sql-connect): New function.
2604 (sql-for-each-login): Redesign function interface.
2605 (sql-make-alternate-buffer-name, sql-save-connection): Use it.
2606 (sql-get-login-ext, sql-get-login): Use it. Handle default values.
2607 (sql-comint): Check for program. Existing live buffer.
2608 (sql-comint-postgres): Add port parameter.
2609
2610 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2611
2612 * emacs-lisp/warnings.el: Fix commenting convention.
2613 (display-warning): Use special mode and make the buffer read-only.
2614
2615 2010-09-18 Jay Belanger <jay.p.belanger@gmail.com>
2616
2617 * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
2618 empty string when it follows a repeated or optional pattern.
2619
2620 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
2621
2622 * indent.el (indent-according-to-mode): Apply syntax-propertize.
2623 (indent-region): Use indent-according-to-mode.
2624
2625 2010-09-18 Eli Zaretskii <eliz@gnu.org>
2626
2627 * fringe.el (fringe-mode): Doc fix.
2628
2629 2010-09-14 Kan-Ru Chen <kanru@kanru.info> (tiny change)
2630
2631 * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
2632 refreshing the preview buffer.
2633
2634 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
2635
2636 * textmodes/tex-mode.el (tex-syntax-propertize-rules)
2637 (latex-syntax-propertize-rules): New consts; replace
2638 tex-font-lock-syntactic-keywords.
2639 (tex-env-mark, latex-env-before-change): New functions.
2640 (latex-electric-env-pair-mode): New minor mode.
2641 (tex-font-lock-verb): Change arguments; do move point.
2642 (tex-font-lock-syntactic-face-function): Adjust to new verbatim
2643 representation as a form of comment.
2644 (tex-font-lock-keywords-1): Remove workaround, now unneeded.
2645 (doctex-syntax-propertize-rules): New const; replaces
2646 doctex-font-lock-syntactic-keywords.
2647 (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
2648
2649 * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
2650 (fortran-make-syntax-propertize-function): New function; replaces
2651 fortran-font-lock-syntactic-keywords.
2652 (fortran-mode): Use it.
2653 (fortran-line-length): Use it. Improve interactive spec.
2654
2655 * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
2656 (syntax-propertize-rules): Add var-ref case. Fix offset computation
2657 when adding surrounding \(..\).
2658
2659 * progmodes/js.el (js-mode): Fix last change (bug#7054).
2660
2661 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
2662
2663 * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
2664 Use with-current-buffer.
2665
2666 * isearch.el (isearch-face): Rename from `isearch'.
2667 (isearch-highlight): Use new name.
2668
2669 2010-09-17 Eli Zaretskii <eliz@gnu.org>
2670
2671 * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
2672 5, for `half' width fringes. (Bug#6933)
2673
2674 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
2675
2676 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
2677 (byte-compile-defvar): "foo/bar" does not lack a prefix.
2678
2679 * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
2680
2681 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
2682
2683 * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
2684 in calculating new frame position. Add more space between new and
2685 parent on the left (Bug#7048).
2686
2687 2010-09-17 Michael Albinus <michael.albinus@gmx.de>
2688
2689 * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
2690 defmacro.
2691
2692 2010-09-16 Chong Yidong <cyd@stupidchicken.com>
2693
2694 * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
2695
2696 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
2697 obsolete alias for x-selection-value.
2698
2699 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
2700
2701 2010-09-16 Michael Albinus <michael.albinus@gmx.de>
2702
2703 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
2704 cookie.
2705
2706 2010-09-15 Michael Albinus <michael.albinus@gmx.de>
2707
2708 * net/tramp-compat.el (tramp-compat-with-temp-message)
2709 (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
2710 (tramp-compat-process-put): New defuns.
2711
2712 * net/tramp.el (top):
2713 * net/tramp-gvfs.el (top):
2714 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
2715
2716 * net/tramp.el (tramp-progress-reporter-update):
2717 Use `tramp-compat-funcall'.
2718
2719 * net/tramp.el (tramp-process-actions):
2720 * net/tramp-gvfs.el (tramp-handle-vc-registered):
2721 * net/tramp-sh.el (tramp-gvfs-handler-askquestion)
2722 (tramp-get-remote-stat, tramp-get-remote-readlink):
2723 Use `tramp-compat-with-temp-message'.
2724
2725 * net/tramp-sh.el (top): Require 'cl.
2726 (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
2727 (tramp-open-connection-setup-interactive-shell):
2728 Use `tramp-compat-process-put'.
2729
2730 2010-09-15 Alan Mackenzie <acm@muc.de>
2731
2732 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
2733 indentation.
2734 (c-forward-<>-arglist-recur): Fix an infinite recursion.
2735
2736 2010-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
2737
2738 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
2739 `lexical' for warnings related to lexical scoping.
2740 (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
2741 global vars which don't have a prefix and could hence affect lexical
2742 scoping in unrelated files.
2743
2744 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
2745
2746 * net/imap.el: Revert back to version
2747 cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
2748 seem problematic.
2749
2750 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
2751
2752 * obsolete/old-whitespace.el (whitespace-unload-function):
2753 Explicitly pass `obarray' to `unintern' to avoid a warning.
2754
2755 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2756
2757 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
2758 Add `when' argument. Update callers.
2759
2760 * subr.el (unintern): Declare the obarray arg mandatory.
2761
2762 2010-09-14 Glenn Morris <rgm@gnu.org>
2763
2764 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
2765 Doc fixes.
2766
2767 * calendar/diary-lib.el (diary-included-files): New variable.
2768 (diary-list-entries): Maybe initialize diary-included-files.
2769 (diary-include-other-diary-files): Append to diary-included-files.
2770 * calendar/appt.el (appt-update-list): Also check the members of
2771 diary-included-files. (Bug#6999)
2772 (appt-check): Doc fix.
2773
2774 2010-09-14 David Reitter <david.reitter@gmail.com>
2775
2776 * simple.el (line-move-visual): Do not truncate goal column to
2777 integer size. (Bug#7020)
2778
2779 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2780
2781 * repeat.el (repeat): Allow repeating when the last event is a click.
2782 Suggested by Drew Adams (bug#6256).
2783
2784 2010-09-14 Sascha Wilde <wilde@sha-bang.de>
2785
2786 * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
2787 Replace setting HGRCPATH to "" by some less invasive --config options.
2788
2789 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2790
2791 * font-lock.el (font-lock-beginning-of-syntax-function):
2792 Mark as obsolete.
2793
2794 2010-09-14 Glenn Morris <rgm@gnu.org>
2795
2796 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
2797 and tool-bar modes. (Bug#6211)
2798 (menu-bar-mode): Move setting of standard-value after the
2799 minor-mode definition, otherwise it seems to have no effect.
2800
2801 2010-09-14 Masatake YAMATO <yamato@redhat.com>
2802
2803 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
2804 Fix typo. (Bug#6976)
2805
2806 2010-09-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2807
2808 * whitespace.el: Allow cleaning up blanks without blank
2809 visualization (Bug#6651). Adjust help window for
2810 whitespace-toggle-options (Bug#6479). Allow to use fill-column
2811 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
2812 (whitespace-style): Add new value 'face. Adjust docstring.
2813 (whitespace-space, whitespace-hspace, whitespace-tab):
2814 Adjust foreground property face.
2815 (whitespace-line-column): Adjust docstring and type declaration.
2816 (whitespace-style-value-list, whitespace-toggle-option-alist)
2817 (whitespace-help-text): Adjust const initialization.
2818 (whitespace-toggle-options, global-whitespace-toggle-options):
2819 Adjust docstring.
2820 (whitespace-display-window, whitespace-interactive-char)
2821 (whitespace-style-face-p, whitespace-color-on): Adjust code.
2822 (whitespace-help-scroll): New fun.
2823
2824 2010-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
2825
2826 * calendar/time-date.el (format-seconds): Comment fix.
2827
2828 2010-09-13 Michael R. Mauger <mmaug@yahoo.com>
2829
2830 * progmodes/sql.el: Version 2.7.
2831 (sql-buffer-live-p): Improve detection.
2832 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
2833 (sql-set-sqli-buffer): Use it.
2834 (sql-product-interactive): Run `sql-set-sqli-hook'.
2835 (sql-rename-buffer): Code cleanup.
2836 (sql-redirect, sql-redirect-value): New functions. More to come.
2837
2838 2010-09-13 Juanma Barranquero <lekktu@gmail.com>
2839
2840 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.
2841 * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
2842 (TRAMP_SRC): New macro.
2843 ($(lisp)/net/tramp-loaddefs.el): New target.
2844
2845 2010-09-13 Michael Albinus <michael.albinus@gmx.de>
2846
2847 Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el.
2848
2849 * Makefile.in (TRAMP_SRC): Remove tramp-fish.el. Add tramp-sh.el.
2850
2851 * net/tramp.el (top): Don't show loading message. Require just
2852 'tramp-compat, everything else is required there.
2853 Use `ignore-errors' where appropriate.
2854 (tramp-inline-compress-start-size, tramp-copy-size-limit)
2855 (tramp-terminal-type, tramp-end-of-output)
2856 (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
2857 (tramp-completion-function-alist-ssh)
2858 (tramp-completion-function-alist-telnet)
2859 (tramp-completion-function-alist-su)
2860 (tramp-completion-function-alist-putty, tramp-remote-path)
2861 (tramp-remote-process-environment, tramp-sh-extra-args)
2862 (tramp-actions-before-shell, tramp-uudecode)
2863 (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
2864 (tramp-perl-file-attributes)
2865 (tramp-perl-directory-files-and-attributes)
2866 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
2867 (tramp-perl-encode, tramp-perl-decode)
2868 (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
2869 (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
2870 (tramp-handle-make-symbolic-link, tramp-handle-load)
2871 (tramp-handle-file-name-as-directory)
2872 (tramp-handle-file-name-directory)
2873 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
2874 (tramp-handle-file-exists-p, tramp-handle-file-attributes)
2875 (tramp-do-file-attributes-with-ls)
2876 (tramp-do-file-attributes-with-perl)
2877 (tramp-do-file-attributes-with-stat)
2878 (tramp-handle-set-visited-file-modtime)
2879 (tramp-handle-verify-visited-file-modtime)
2880 (tramp-handle-set-file-modes, tramp-handle-set-file-times)
2881 (tramp-set-file-uid-gid, tramp-remote-selinux-p)
2882 (tramp-handle-file-selinux-context)
2883 (tramp-handle-set-file-selinux-context)
2884 (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
2885 (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
2886 (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
2887 (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
2888 (tramp-handle-file-ownership-preserved-p)
2889 (tramp-handle-directory-file-name, tramp-handle-directory-files)
2890 (tramp-handle-directory-files-and-attributes)
2891 (tramp-do-directory-files-and-attributes-with-perl)
2892 (tramp-do-directory-files-and-attributes-with-stat)
2893 (tramp-handle-file-name-all-completions)
2894 (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
2895 (tramp-handle-copy-file, tramp-handle-copy-directory)
2896 (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
2897 (tramp-do-copy-or-rename-file-via-buffer)
2898 (tramp-do-copy-or-rename-file-directly)
2899 (tramp-do-copy-or-rename-file-out-of-band)
2900 (tramp-handle-make-directory, tramp-handle-delete-directory)
2901 (tramp-handle-delete-file)
2902 (tramp-handle-dired-recursive-delete-directory)
2903 (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
2904 (tramp-handle-insert-directory)
2905 (tramp-handle-unhandled-file-name-directory)
2906 (tramp-handle-expand-file-name)
2907 (tramp-handle-substitute-in-file-name)
2908 (tramp-handle-executable-find, tramp-process-sentinel)
2909 (tramp-handle-start-file-process, tramp-handle-process-file)
2910 (tramp-handle-call-process-region, tramp-handle-shell-command)
2911 (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
2912 (tramp-handle-insert-file-contents)
2913 (tramp-handle-insert-file-contents-literally)
2914 (tramp-handle-find-backup-file-name)
2915 (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
2916 (tramp-vc-registered-file-names, tramp-handle-vc-registered)
2917 (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
2918 (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
2919 (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
2920 (tramp-find-file-exists-command, tramp-open-shell)
2921 (tramp-find-shell, tramp-barf-if-no-shell-prompt)
2922 (tramp-open-connection-setup-interactive-shell)
2923 (tramp-local-coding-commands, tramp-remote-coding-commands)
2924 (tramp-find-inline-encoding, tramp-call-local-coding-command)
2925 (tramp-inline-compress-commands, tramp-find-inline-compress)
2926 (tramp-compute-multi-hops, tramp-maybe-open-connection)
2927 (tramp-send-command, tramp-wait-for-output)
2928 (tramp-send-command-and-check, tramp-barf-unless-okay)
2929 (tramp-send-command-and-read, tramp-mode-string-to-int)
2930 (tramp-convert-file-attributes, tramp-check-cached-permissions)
2931 (tramp-file-mode-from-int, tramp-file-mode-permissions)
2932 (tramp-shell-case-fold, tramp-make-copy-program-file-name)
2933 (tramp-method-out-of-band-p, tramp-local-host-p)
2934 (tramp-get-remote-path, tramp-get-remote-tmpdir)
2935 (tramp-get-ls-command, tramp-get-ls-command-with-dired)
2936 (tramp-get-test-command, tramp-get-test-nt-command)
2937 (tramp-get-file-exists-command, tramp-get-remote-ln)
2938 (tramp-get-remote-perl, tramp-get-remote-stat)
2939 (tramp-get-remote-readlink, tramp-get-remote-trash)
2940 (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
2941 (tramp-get-local-uid, tramp-get-local-gid)
2942 (tramp-get-inline-compress, tramp-get-inline-coding): Move to
2943 tramp-sh.el.
2944 (tramp-methods, tramp-default-method-alist)
2945 (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
2946 Move initialization to tramp-sh.el.
2947 (tramp-temp-name-prefix): Make it a defconst.
2948 (tramp-dissect-file-name): Don't check anymore for multi-hop
2949 methods.
2950 (tramp-debug-outline-regexp): Add a docstring.
2951 (tramp-debug-outline-level): Rename from `tramp-outline-level'.
2952 (tramp-get-debug-buffer): Use it.
2953
2954 * net/tramp-cache.el (top): Set tramp-autoload cookie for
2955 initialization forms.
2956 (tramp-set-connection-property): Don't protect `tramp-message'
2957 call, it isn't necessary any longer.
2958 (tramp-dump-connection-properties): Use `ignore-errors'.
2959
2960 * net/tramp-compat.el (top): Require 'advice, 'format-spec,
2961 'password-cache and 'auth-source.
2962
2963 * net/tramp-gvfs.el (top):
2964 * net/tramp-smb.el (top): Require 'tramp-sh.
2965
2966 * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
2967
2968 * net/tramp-sh.el: New file, derived from tramp.el.
2969 (top): Initialize `tramp-methods', `tramp-default-method-alist',
2970 `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
2971 Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
2972 Use `ignore-errors' where appropriate.
2973 (tramp-sh-file-name-handler-alist): Rename from
2974 `tramp-file-name-handler-alist'.
2975 (tramp-send-command-and-check): Return t or nil. Remove all
2976 `zerop' checks, where called.
2977 (tramp-handle-set-file-modes)
2978 (tramp-do-copy-or-rename-file-directly)
2979 (tramp-handle-delete-directory, tramp-handle-delete-file)
2980 (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
2981 (tramp-sh-file-name-handler, tramp-send-command-and-check)
2982 (tramp-get-remote-ln): Set tramp-autoload cookie.
2983
2984 * net/tramp-fish.el: Remove file.
2985
2986 2010-09-13 Daiki Ueno <ueno@unixuser.org>
2987
2988 * epa-file.el (epa-file-insert-file-contents): If visiting, bind
2989 buffer-file-name to avoid file-locking. (Bug#7026)
2990
2991 2010-09-13 Julien Danjou <julien@danjou.info>
2992
2993 * notifications.el (notifications-notify): Add support for
2994 image-path and sound-name.
2995 (notifications-specification-version): Add this variable.
2996
2997 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2998
2999 * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
3000
3001 2010-09-12 Leo <sdl.web@gmail.com>
3002
3003 * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
3004 (rcirc-completion-start): New variables.
3005 (rcirc-nick-completions): Rename to rcirc-completions.
3006 (rcirc-nick-completion-start-offset): Delete.
3007 (rcirc-completion-at-point): New function for constructing
3008 completion data for both nicks and irc commands. Add to
3009 completion-at-point-functions in rcirc mode.
3010 (rcirc-complete): Rename from rcirc-nick-complete; use
3011 rcirc-completion-at-point.
3012 (defun-rcirc-command): Update rcirc-client-commands.
3013
3014 2010-09-11 Glenn Morris <rgm@gnu.org>
3015
3016 * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
3017 atomically, to avoid parallel build errors. (Bug#4196)
3018
3019 2010-09-11 Michael R. Mauger <mmaug@yahoo.com>
3020
3021 * progmodes/sql.el: Version 2.6
3022 (sql-dialect): Synonym for "sql-product".
3023 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
3024 (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
3025 Set "sql-buffer" to buffer name not buffer object so multiple sql
3026 interactive buffers work properly. Reverts misguided changes in
3027 earlier work.
3028 (sql-comint): Make sure different buffer name is used if "*SQL*"
3029 buffer is for a different product.
3030 (sql-make-alternate-buffer-name): Fix bug with "sql-database"
3031 login param.
3032 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
3033 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
3034 (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
3035 Accept new buffer name or prompt for one.
3036 (sql-port): Default to zero.
3037 (sql-comint-mysql): Handle "sql-port" as a numeric.
3038 (sql-port-history): Delete unused variable.
3039 (sql-get-login): Default "sql-port" to a number.
3040 (sql-product-alist): Correct Postgres prompt and terminator regexp.
3041 (sql-sqlite-program): Dynamically detect presence of "sqlite" or
3042 "sqlite3" executables.
3043 (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
3044 (sql-buffer-live-p): New function.
3045 (sql-mode-menu, sql-send-string): Use it.
3046 (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
3047 syntax pattern.
3048 (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
3049 (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
3050
3051 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3052
3053 * net/netrc.el (netrc-credentials): New convenience function.
3054
3055 2010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
3056
3057 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
3058 to replace texinfo-font-lock-syntactic-keywords.
3059 (texinfo-mode): Use it.
3060
3061 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
3062 Use syntax-propertize-function.
3063
3064 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
3065 replace sgml-font-lock-syntactic-keywords.
3066 (sgml-mode): Use it.
3067
3068 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
3069 since we don't use it.
3070
3071 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
3072
3073 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
3074 if available.
3075 (vhdl-fontify-buffer): Adjust.
3076
3077 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
3078 replace tcl-font-lock-syntactic-keywords.
3079 (tcl-mode): Use it.
3080
3081 * progmodes/simula.el (simula-syntax-propertize-function): New var to
3082 replace simula-font-lock-syntactic-keywords.
3083 (simula-mode): Use it.
3084
3085 * progmodes/sh-script.el (sh-st-symbol): Remove.
3086 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
3087 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
3088 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
3089 (sh-font-lock-paren): Set syntax-multiline.
3090 (sh-font-lock-syntactic-keywords): Remove.
3091 (sh-syntax-propertize-function): New function to replace it.
3092 (sh-mode): Use it.
3093
3094 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
3095 Define while compiling.
3096 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
3097 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
3098 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
3099 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
3100 (ruby-here-doc-end-syntax): Only define when
3101 syntax-propertize is not available.
3102 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
3103 New functions.
3104 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
3105 (electric-indent-chars): Silence bytecompiler.
3106 (ruby-mode): Use prog-mode, syntax-propertize-function, and
3107 electric-indent-chars.
3108
3109 * progmodes/python.el (python-syntax-propertize-function): New var to
3110 replace python-font-lock-syntactic-keywords.
3111 (python-mode): Use it.
3112 (python-quote-syntax): Simplify and adjust to new use.
3113
3114 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
3115 replace perl-font-lock-syntactic-keywords.
3116 (perl-syntax-propertize-special-constructs): New fun to replace
3117 perl-font-lock-special-syntactic-constructs.
3118 (perl-font-lock-syntactic-face-function): New fun.
3119 (perl-mode): Use it.
3120
3121 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
3122 to replace octave-font-lock-close-quotes.
3123 (octave-syntax-propertize-function): New function to replace
3124 octave-font-lock-syntactic-keywords.
3125 (octave-mode): Use it.
3126
3127 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
3128 replaces mixal-font-lock-syntactic-keywords.
3129 (mixal-mode): Use it.
3130
3131 * progmodes/make-mode.el (makefile-syntax-propertize-function):
3132 New var; replaces makefile-font-lock-syntactic-keywords.
3133 (makefile-mode): Use it.
3134 (makefile-imake-mode): Adjust.
3135
3136 * progmodes/js.el (js--regexp-literal): Define while compiling.
3137 (js-syntax-propertize-function): New var; replaces
3138 js-font-lock-syntactic-keywords.
3139 (js-mode): Use it.
3140
3141 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
3142 replaces gdb-script-font-lock-syntactic-keywords.
3143 (gdb-script-mode): Use it.
3144
3145 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
3146 (fortran--font-lock-syntactic-keywords): New var.
3147 (fortran-line-length): Update syntax-propertize-function and
3148 fortran--font-lock-syntactic-keywords.
3149
3150 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
3151
3152 * progmodes/cfengine.el (cfengine-mode):
3153 Use syntax-propertize-function.
3154 (cfengine-font-lock-syntactic-keywords): Remove.
3155
3156 * progmodes/autoconf.el (autoconf-mode):
3157 Use syntax-propertize-function.
3158 (autoconf-font-lock-syntactic-keywords): Remove.
3159
3160 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
3161 (ada-after-change-function, ada-initialize-syntax-table-properties)
3162 (ada-handle-syntax-table-properties): Only define when
3163 syntax-propertize is not available.
3164 (ada-mode): Use syntax-propertize-function.
3165
3166 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
3167 (font-lock-fontify-syntactic-keywords-region): Move handling of
3168 font-lock-syntactically-fontified to...
3169 (font-lock-default-fontify-region): ...here.
3170 Let syntax-propertize-function take precedence.
3171 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
3172
3173 * emacs-lisp/syntax.el (syntax-propertize-function)
3174 (syntax-propertize-chunk-size, syntax-propertize--done)
3175 (syntax-propertize-extend-region-functions): New vars.
3176 (syntax-propertize-wholelines, syntax-propertize-multiline)
3177 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
3178 (syntax-propertize): New functions.
3179 (syntax-propertize-rules): New macro.
3180 (syntax-ppss-flush-cache): Set syntax-propertize--done.
3181 (syntax-ppss): Call syntax-propertize.
3182
3183 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
3184
3185 2010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
3186
3187 * textmodes/ispell.el (ispell-init-process): Improve comments.
3188 XEmacs compatibility changes regarding (add-hook) 'local option
3189 and (set-process-query-on-exit-flag).
3190
3191 2010-09-09 Michael Albinus <michael.albinus@gmx.de>
3192
3193 * net/tramp-cache.el (tramp-parse-connection-properties):
3194 Set tramp-autoload cookie.
3195
3196 2010-09-09 Glenn Morris <rgm@gnu.org>
3197
3198 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
3199 (imagemagick-register-types): Doc fix.
3200
3201 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
3202
3203 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
3204
3205 * progmodes/js.el (require): Require is already "eval-and-compile".
3206 (js--re-search-forward): Avoid `eval'. Preserve the error data.
3207 (js--re-search-backward): Use js--re-search-forward.
3208
3209 * progmodes/fortran.el (fortran-line-length): Don't recompute
3210 syntactic keywords redundantly a second time.
3211
3212 * progmodes/ada-mode.el: Replace "(set '" with setq.
3213 (ada-mode): Simplify.
3214 (ada-create-case-exception, ada-adjust-case-interactive)
3215 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
3216 (ada-search-ignore-string-comment, ada-move-to-start)
3217 (ada-move-to-end): Use with-syntax-table.
3218
3219 * font-lock.el (save-buffer-state): Remove `varlist' arg.
3220 (font-lock-unfontify-region, font-lock-default-fontify-region):
3221 Update usage correspondingly.
3222 (font-lock-fontify-syntactic-keywords-region):
3223 Set parse-sexp-lookup-properties buffer-locally here.
3224 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
3225
3226 * simple.el (blink-matching-open): Don't burp if we can't find a match.
3227
3228 2010-09-08 Glenn Morris <rgm@gnu.org>
3229
3230 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
3231 Error if not compiled with -DBYTE_CODE_METER.
3232
3233 * emacs-lisp/bytecomp.el (byte-recompile-directory):
3234 Ignore dir-locals-file.
3235
3236 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
3237
3238 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3239 Not a const.
3240 (compilation-error-regexp-alist-alist): Rule out ": " in file names
3241 for the `gnu' messages.
3242 (compilation-set-skip-threshold): New command.
3243 (compilation-start): Use \' rather than $.
3244 (compilation-forget-errors): Use clrhash.
3245
3246 2010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
3247
3248 * textmodes/ispell.el (ispell-valid-dictionary-list):
3249 Simplify logic.
3250
3251 2010-09-08 Michael Albinus <michael.albinus@gmx.de>
3252
3253 Migrate to Tramp 2.2. Rearrange load dependencies.
3254 (Bug#1529, Bug#5448, Bug#5705)
3255
3256 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
3257 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
3258 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
3259
3260 * net/tramp.el (top): Remove all other tramp-* loads except
3261 tramp-compat.el. Remove all changes to tramp-unload-hook for
3262 other tramp-* packages. Rearrange defun order. Change calls of
3263 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
3264 `tramp-compat-octal-to-decimal' to new function names.
3265 (tramp-terminal-type, tramp-initial-end-of-output)
3266 (tramp-methods, tramp-foreign-file-name-handler-alist)
3267 (tramp-tramp-file-p, tramp-completion-mode-p)
3268 (tramp-send-command-and-check, tramp-get-remote-path)
3269 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
3270 (tramp-shell-quote-argument): Set tramp-autoload cookie.
3271 (with-file-property, with-connection-property): Move to
3272 tramp-cache.el.
3273 (tramp-local-call-process, tramp-decimal-to-octal)
3274 (tramp-octal-to-decimal): Move to tramp-compat.el.
3275 (tramp-handle-shell-command): Do not require 'shell.
3276 (tramp-compute-multi-hops): No special handling for tramp-gw-*
3277 symbols.
3278 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
3279
3280 * net/tramp-cache.el (top): Require 'tramp. Add to
3281 `tramp-unload-hook'.
3282 (tramp-cache-data, tramp-get-file-property)
3283 (tramp-set-file-property, tramp-flush-file-property)
3284 (tramp-flush-directory-property, tramp-get-connection-property)
3285 (tramp-set-connection-property, tramp-flush-connection-property)
3286 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
3287 cookie.
3288 (with-file-property, with-connection-property): New defuns, moved
3289 from tramp.el.
3290 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
3291 macro.
3292
3293 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
3294 (tramp-version): Set tramp-autoload cookie.
3295
3296 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
3297 changes to tramp-unload-hook for other tramp-* packages. Add to
3298 `tramp-unload-hook'.
3299 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
3300 (tramp-compat-call-process): New defuns, moved from tramp.el.
3301
3302 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
3303 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
3304 to `tramp-unload-hook'. Change call of
3305 `tramp-compat-decimal-to-octal' to new function name.
3306 (tramp-fish-method): Make it a defconst.
3307 (tramp-fish-file-name-p): Make it a defsubst.
3308 (tramp-fish-method, tramp-fish-file-name-handler)
3309 (tramp-fish-file-name-p): Set tramp-autoload cookie.
3310
3311 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
3312 `tramp-foreign-file-name-handler-alist'. Add to
3313 `tramp-unload-hook'.
3314 (tramp-ftp-method): Make it a defconst.
3315 (tramp-ftp-file-name-p): Make it a defsubst.
3316 (tramp-ftp-method, tramp-ftp-file-name-handler)
3317 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
3318
3319 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
3320 `tramp-foreign-file-name-handler-alist'. Add to
3321 `tramp-unload-hook'. Change checks, whether package can be
3322 loaded.
3323 (tramp-gvfs-file-name-p): Make it a defsubst.
3324 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
3325 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
3326 (tramp-gvfs-handle-file-directory-p): New defun.
3327 (tramp-gvfs-file-name-handler-alist): Use it.
3328
3329 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
3330 `tramp-foreign-file-name-handler-alist'. Add to
3331 `tramp-unload-hook'.
3332 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
3333 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
3334 defconst.
3335 (tramp-gw-tunnel-method, tramp-gw-socks-method)
3336 (tramp-gw-open-connection): Set tramp-autoload cookie.
3337
3338 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
3339 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
3340 to `tramp-unload-hook'. Change checks, whether package can be
3341 loaded.
3342 (tramp-imap-file-name-p): Make it a defsubst.
3343 (tramp-imap-method, tramp-imaps-method)
3344 (tramp-imap-file-name-handler)
3345 (tramp-imap-file-name-p): Set tramp-autoload cookie.
3346
3347 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
3348 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
3349 to `tramp-unload-hook'. Change checks, whether package can be
3350 loaded. Change call of `tramp-compat-decimal-to-octal' to new
3351 function name.
3352 (tramp-smb-tunnel-method): Make it a defconst.
3353 (tramp-smb-file-name-p): Make it a defsubst.
3354 (tramp-smb-method, tramp-smb-file-name-handler)
3355 (tramp-smb-file-name-p): Set tramp-autoload cookie.
3356
3357 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
3358 (tramp-uuencode-region): Set tramp-autoload cookie.
3359
3360 * net/trampver.el (top) Add to `tramp-unload-hook'.
3361 (tramp-version, tramp-bug-report-address): Set tramp-autoload
3362 cookie. Update release number.
3363
3364 2010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
3365
3366 * textmodes/ispell.el (ispell-start-process): Make sure original
3367 arg list is properly initialized (Bug#6993, Bug#6994).
3368
3369 2010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
3370
3371 * files.el (directory-abbrev-alist): Use \` as default regexp.
3372
3373 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
3374 chars like - or ] (bug#6984).
3375 (rx-any-condense-range): Explode 2-char ranges.
3376
3377 2010-09-06 Glenn Morris <rgm@gnu.org>
3378
3379 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
3380
3381 2010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
3382
3383 * textmodes/bibtex.el:
3384 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
3385
3386 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
3387
3388 * net/imap.el (imap-message-map): Remove optional buffer parameter,
3389 since no callers use it.
3390 (imap-message-get): Ditto.
3391 (imap-message-put): Ditto.
3392 (imap-mailbox-map): Ditto.
3393 (imap-mailbox-put): Ditto.
3394 (imap-mailbox-get): Ditto.
3395 (imap-mailbox-get): Revert last change for this function.
3396
3397 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
3398
3399 * net/imap.el (imap-fetch-safe): Remove function, and alter all
3400 callers to use `imap-fetch' instead. According to the comments, this
3401 should be safe, since all other IMAP clients use the 1:* syntax.
3402 (imap-enable-exchange-bug-workaround): Remove.
3403 (imap-debug): Remove -- doesn't seem very useful.
3404
3405 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
3406
3407 * net/imap.el (imap-log): New convenience function used throughout
3408 instead of repeating the same code all over the place.
3409
3410 2010-09-05 David De La Harpe Golden <david@harpegolden.net>
3411
3412 * mouse.el (mouse-save-then-kill): Save region to kill-ring
3413 when mouse-drag-copy-region is non-nil (Bug#6956).
3414
3415 2010-09-05 Chong Yidong <cyd@stupidchicken.com>
3416
3417 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
3418 Improve regexps (Bug#6987).
3419 (dired-sort-toggle): Search more robustly for -t flag.
3420
3421 * files.el (get-free-disk-space): Search more robustly for
3422 "available" column. Suggested by Ehud Karni
3423 <ehud@unix.mvs.co.il>.
3424
3425 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
3426
3427 * international/uni-bidi.el:
3428 * international/uni-category.el:
3429 * international/uni-combining.el:
3430 * international/uni-decimal.el:
3431 * international/uni-mirrored.el:
3432 * international/uni-name.el: Regenerate.
3433
3434 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
3435
3436 * electric.el (electric-indent-post-self-insert-function):
3437 Don't reindent with a sloppy indentation function.
3438
3439 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
3440 border case in change-log-mode.
3441
3442 2010-09-04 Chong Yidong <cyd@stupidchicken.com>
3443
3444 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3445 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
3446 Recognize leading tab in gcc-include regexp. Ignore names with
3447 leading "from" or "in" in gnu regexp (Bug#6937).
3448
3449 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
3450
3451 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
3452 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
3453 (ispell-start-process): Avoid setq and simplify logic.
3454 (ispell-init-process): Setup kill-buffer-hook locally when needed.
3455 (kill-buffer-hook): Don't use it globally with code that uses
3456 expand-file-name since that may call kill-buffer via
3457 code_conversion_restore.
3458
3459 2010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
3460
3461 * emacs-lisp/package.el (package-directory-list): Only call
3462 file-name-nondirectory on a string.
3463
3464 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
3465
3466 * emacs-lisp/package.el (package--download-one-archive):
3467 Ensure that archive-contents is valid before saving it.
3468 (package-activate-1, package-mark-obsolete, define-package)
3469 (package-compute-transaction, package-list-maybe-add): Use push.
3470
3471 2010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
3472
3473 Use SMIE's blink-paren for octave-mode.
3474 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
3475 Backslashes do not escape single-quotes, single-quotes do.
3476 (octave-block-else-regexp, octave-block-end-regexp)
3477 (octave-block-match-alist): Remove.
3478 (octave-smie-bnf-table): New var, with old content.
3479 (octave-smie-op-levels): Use it.
3480 (octave-smie-closer-alist): New var.
3481 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
3482 (octave-blink-matching-block-open): Remove.
3483 (octave-reindent-then-newline-and-indent, octave-electric-semi)
3484 (octave-electric-space): Let self-insert-command run expand-abbrev and
3485 blink parens.
3486
3487 * electric.el (electricity): New group.
3488 (electric-indent-chars): New var.
3489 (electric-indent-post-self-insert-function): New fun.
3490 (electric-indent-mode): New minor mode.
3491 (electric-pair-skip-self): New custom.
3492 (electric-pair-post-self-insert-function): New function.
3493 (electric-pair-mode): New minor mode.
3494
3495 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
3496 calcAlg-blink-matching-open.
3497 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
3498 (calc-do-alg-entry): Only touch the part of the keymap that varies.
3499 Use the new blink-matching-check-function.
3500
3501 Provide blink-matching support to SMIE.
3502 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
3503 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
3504 (smie-blink-matching-check, smie-blink-matching-open): New functions.
3505
3506 * simple.el (newline): Fix last change to properly remove itself from
3507 the hook.
3508
3509 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
3510
3511 * simple.el (newline): Eliminate optimization.
3512 Use post-self-insert-hook to set hard-newline and things before
3513 running post-self-insert-hook.
3514 (blink-matching-check-mismatch): New function.
3515 (blink-matching-check-function): New variable.
3516 (blink-matching-open): Use them.
3517 Skip back forward over prefix chars skipped by forward-sexp.
3518 Don't check if the parens are backslash escaped.
3519 (blink-paren-post-self-insert-function): Check backslash escaping here.
3520
3521 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
3522
3523 * emacs-lisp/package.el (package-menu-mode-map):
3524 Change package-menu-revert bindings to revert-buffer.
3525 (package-menu-mode): Set revert-buffer-function.
3526 (package-menu-revert): Doc fix.
3527
3528 2010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
3529
3530 * textmodes/ispell.el (ispell-init-process): Use "~/" as
3531 `default-directory' unless using Ispell per-directory personal
3532 dictionaries and not in a mini-buffer under XEmacs.
3533 (kill-buffer-hook): Do not kill ispell process on exit when
3534 `ispell-process-directory' is "~/". (Bug#6143)
3535
3536 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
3537
3538 * simple.el (kill-new): Call interprogram-cut-function with only
3539 one argument.
3540
3541 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
3542 Remove cut buffer from error message.
3543
3544 * term/x-win.el (x-select-text):
3545 * term/pc-win.el (x-selection-value):
3546 * term/ns-win.el (x-selection-value):
3547 * eshell/em-term.el:
3548 * w32-fns.el (x-get-selection-value):
3549 * mouse-sel.el (mouse-sel-set-selection-function):
3550 * frame.el (display-selections-p): Remove cut-buffer in documentation.
3551
3552 * term/x-win.el: Update documentation for x-last-selected-text-*.
3553 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
3554 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
3555 (x-select-text): Remove argument PUSH, update documentation. Remove
3556 cut-buffer code.
3557 (x-selection-value-internal): Was previously x-selection-value.
3558 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
3559 Update documentation, remove cut-buffer code. Call
3560 x-selection-value-internal.
3561 (x-clipboard-yank): Call x-selection-value-internal.
3562 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
3563
3564 * term/pc-win.el (x-last-selected-text):
3565 x-cut-buffer-or-selection-value renamed to x-selection-value
3566 (x-select-text): Remove argument PUSH, update documentation.
3567
3568 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
3569 x-cut-buffer-or-selection-value renamed to x-selection-value
3570 (x-selection-value): Renamed from x-cut-buffer-or-selection-value.
3571 (x-select-text): Remove argument PUSH, update documentation.
3572
3573 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
3574
3575 * w32-fns.el (x-last-selected-text):
3576 x-cut-buffer-or-selection-value renamed to x-selection-value.
3577 (x-cut-buffer-max): Remove.
3578 (x-select-text): Remove argument PUSH, update documentation.
3579
3580 * simple.el (interprogram-cut-function): Remove mention of PUSH.
3581
3582 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
3583
3584 * mouse-sel.el (mouse-sel-get-selection-function):
3585 x-cut-buffer-or-selection-value renamed to x-selection-value.
3586 (x-select-text): Remove optional push.
3587
3588 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
3589
3590 * simple.el (blink-paren-function): Move from C to here.
3591 (blink-paren-post-self-insert-function): New function.
3592 (post-self-insert-hook): Use it.
3593
3594 * emacs-lisp/pcase.el (pcase-split-memq):
3595 Fix overenthusiastic optimisation.
3596 (pcase-u1): Handle the case of a lambda pred.
3597
3598 2010-08-31 Kenichi Handa <handa@m17n.org>
3599
3600 * international/mule-cmds.el (standard-display-european-internal):
3601 Setup standard-display-table for 8-bit characters by storing 8-bit
3602 characters in the element vector.
3603
3604 * disp-table.el (standard-display-8bit):
3605 Setup standard-display-table for 8-bit characters by storing 8-bit
3606 characters in the element vector.
3607 (standard-display-european): Likewise.
3608
3609 2010-08-31 Masatake YAMATO <yamato@redhat.com>
3610
3611 * textmodes/nroff-mode.el (nroff-view): New command.
3612 (nroff-mode-map): Bind it to C-c C-c.
3613
3614 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
3615
3616 * emacs-lisp/smie.el (smie-down-list): New command.
3617
3618 Remove old indentation and navigation code on octave-mode.
3619 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
3620 smie-down-list rather than add a binding for octave-down-block.
3621 (octave-mark-block, octave-blink-matching-block-open):
3622 Rely on forward-sexp-function.
3623 (octave-fill-paragraph): Don't narrow, so you can use
3624 indent-according-to-mode.
3625 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
3626 (octave-in-block-p, octave-re-search-forward-kw)
3627 (octave-re-search-backward-kw, octave-indent-calculate)
3628 (octave-end-as-array-index-p, octave-block-end-offset)
3629 (octave-scan-blocks, octave-forward-block, octave-backward-block)
3630 (octave-down-block, octave-backward-up-block, octave-up-block)
3631 (octave-before-magic-comment-p, octave-indent-line): Remove.
3632
3633 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
3634
3635 * emacs-lisp/package.el (package--read-archive-file): Just use
3636 `read', to avoid copying an additional string.
3637 (package-menu-mode): Set header-line-format here.
3638 (package-menu-refresh, package-menu-revert): Signal an error if
3639 not in the Package Menu.
3640 (package-menu-package-list): New var.
3641 (package--generate-package-list): Operate on the current buffer;
3642 don't assume that it is *Packages*, since the user may rename it.
3643 Allow persistent package listings and sort keys using
3644 package-menu-package-list and package-menu-package-sort-key.
3645 (package-menu--version-predicate): Fix version calculation.
3646 (package-menu-sort-by-column): Don't select the window.
3647 (package--list-packages): Create the *Packages* buffer.
3648 Set package-menu-package-list-key.
3649 (list-packages): Sorting by status is now the default.
3650 (package-buffer-info): Use match-string-no-properties.
3651 (define-package): Add a &rest argument for future proofing, but
3652 don't use it yet.
3653 (package-install-from-buffer, package-install-buffer-internal):
3654 Merge into a single function, package-install-from-buffer.
3655 (package-install-file): Change caller.
3656
3657 * finder.el: Load finder-inf using `require'.
3658 (finder-list-matches): Sorting by status is now the default.
3659 (finder-compile-keywords): Simpify printing.
3660
3661 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
3662
3663 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
3664 (octave-mode-map): Remove special bindings for forward/backward-block
3665 and octave-backward-up-block. Use smie-close-block.
3666 (octave-continuation-marker-regexp): New var.
3667 (octave-continuation-regexp): Use it.
3668 (octave-operator-table, octave-smie-op-levels)
3669 (octave-operator-regexp, octave-smie-indent-rules): New vars.
3670 (octave-smie-backward-token, octave-smie-forward-token): New funs.
3671 (octave-mode): Use SMIE.
3672 (octave-close-block): Delete.
3673
3674 2010-08-30 Eli Zaretskii <eliz@gnu.org>
3675
3676 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
3677 CLIPBOARD, not in PRIMARY. (Bug#6944)
3678
3679 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
3680
3681 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
3682 a list of parents.
3683 (smie-indent-column): Allow indirection through variables.
3684
3685 * composite.el (save-buffer-state): Delete, unused.
3686 * font-lock.el (save-buffer-state): Use with-silent-modifications.
3687 (font-lock-default-fontify-region): Use with-syntax-table.
3688 * jit-lock.el (with-buffer-unmodified): Remove.
3689 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
3690
3691 Use `declare' in defmacros.
3692 * window.el (save-selected-window):
3693 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
3694 * progmodes/python.el (def-python-skeleton):
3695 * net/dbus.el (dbus-ignore-errors):
3696 * jka-cmpr-hook.el (with-auto-compression-mode):
3697 * international/mule.el (with-category-table):
3698 * emacs-lisp/timer.el (with-timeout):
3699 * emacs-lisp/lisp-mnt.el (lm-with-file):
3700 * emacs-lisp/eieio.el (with-slots):
3701 * emacs-lisp/easymenu.el (easy-menu-define):
3702 * emacs-lisp/debug.el (debugger-env-macro):
3703 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
3704 (Multiple-value-call, Multiple-value-prog1):
3705 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
3706 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
3707 edebug rule to definition.
3708 * emacs-lisp/lisp-mode.el (save-selected-window)
3709 (with-current-buffer, combine-after-change-calls)
3710 (with-output-to-string, with-temp-file, with-temp-buffer)
3711 (with-temp-message, with-syntax-table, read-if, eval-after-load)
3712 (dolist, dotimes, when, unless):
3713 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
3714
3715 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
3716
3717 * finder.el: Require `package'.
3718 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
3719 (finder-package-info): Var deleted.
3720 (finder-keywords-hash, finder--builtins-alist): New vars.
3721 (finder-compile-keywords): Compute package--builtins and
3722 finder-keywords-hash instead of finder-keywords-hash, respecting
3723 the "Package" header.
3724 (finder-unknown-keywords, finder-list-matches):
3725 Use finder-keywords-hash and package--list-packages.
3726 (finder-mode): Don't set font-lock-defaults.
3727 (finder-exit): We don't use "*Finder-package*" and "*Finder
3728 Category*" buffers anymore.
3729
3730 * emacs-lisp/package.el (package--builtins-base): Var deleted.
3731 (package--builtins): Set default value to nil.
3732 (package-initialize): Load precomputed value of package--builtins
3733 from finder-inf.el.
3734 (package-alist, package-compute-transaction)
3735 (package-download-transaction): Improve docstring.
3736 (package-read-all-archive-contents): Do not change
3737 package--builtins here.
3738 (list-packages): Make package-list-packages an alias for this.
3739 Sort by status by default.
3740 (package--list-packages): Add optional PACKAGES arg.
3741 (describe-package-1): Use font-lock-face property. For built-in
3742 packages, insert file commentary.
3743 (package--generate-package-list): Rename from
3744 package-list-packages-internal; all callers changed. Add optional
3745 PACKAGES arg. Add alphabetical sort fallbacks.
3746 (package-menu--version-predicate, package-menu--status-predicate)
3747 (package-menu--description-predicate)
3748 (package-menu--name-predicate): New functions.
3749
3750 * info.el (Info-finder-find-node): Search package-alist instead of
3751 finder-package-info.
3752
3753 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
3754
3755 * subr.el (version-regexp-alist): Don't use "a" and "b" for
3756 "alpha" and "beta".
3757 (version-to-list): Handle versions like "10.3d".
3758
3759 2010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3760
3761 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
3762 (macroexp-accumulate): Use `declare'.
3763
3764 2010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3765
3766 * whitespace.el (whitespace-style): Adjust type declaration.
3767
3768 2010-08-26 Magnus Henoch <magnus.henoch@gmail.com>
3769
3770 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
3771 empty argument to gvfs-copy.
3772
3773 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
3774
3775 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
3776 handle new TRASH arg of `delete-file'.
3777
3778 2010-08-26 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
3779
3780 * net/tramp.el (tramp-handle-insert-directory): Don't use
3781 `forward-word', its default syntax could be changed.
3782
3783 2010-08-26 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
3784 Michael Albinus <michael.albinus@gmx.de>
3785
3786 Implement compression for inline methods.
3787
3788 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
3789 (tramp-copy-size-limit): Allow also nil.
3790 (tramp-inline-compress-commands): New defconst.
3791 (tramp-find-inline-compress, tramp-get-inline-compress)
3792 (tramp-get-inline-coding): New defuns.
3793 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
3794 replaced by `tramp-get-inline-coding'.
3795 (tramp-handle-file-local-copy, tramp-handle-write-region)
3796 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
3797
3798 2010-08-26 Noah Lavine <noah549@gmail.com> (tiny change)
3799
3800 Detect ssh 'ControlMaster' argument automatically in some cases.
3801
3802 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
3803 (tramp-default-method): Use it.
3804
3805 2010-08-26 Karel Klíč <kklic@redhat.com>
3806
3807 * net/tramp.el (tramp-file-name-for-operation):
3808 Add file-selinux-context.
3809
3810 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
3811
3812 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
3813
3814 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
3815
3816 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
3817 (Bug#6907).
3818
3819 2010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
3820
3821 * progmodes/js.el: Make indentation more customizable (Bug#6914).
3822 (js-paren-indent-offset, js-square-indent-offset)
3823 (js-curly-indent-offset): New options.
3824 (js--proper-indentation): Use them.
3825
3826 2010-08-26 Daniel Colascione <dan.colascione@gmail.com>
3827
3828 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
3829 instead of inspecting font-lock properties (Bug#6916).
3830
3831 2010-08-26 David Reitter <david.reitter@gmail.com>
3832
3833 * server.el (server-visit-files): Run pre-command-hook and
3834 post-command-hook for each buffer while it is current (Bug#6910).
3835 (server-execute): Do not run hooks here.
3836
3837 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
3838
3839 Sync with Tramp 2.1.19.
3840
3841 * net/tramp-cmds.el (tramp-cleanup-all-connections)
3842 (tramp-reporter-dump-variable, tramp-load-report-modules)
3843 (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
3844 (tramp-bug): Recommend setting of `tramp-verbose' to 9.
3845
3846 * net/tramp-compat.el (top): Do not autoload
3847 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
3848 only when `start-file-process' is not bound.
3849 (byte-compile-not-obsolete-vars): Define if not bound.
3850 (tramp-compat-funcall): New defmacro.
3851 (tramp-compat-line-beginning-position)
3852 (tramp-compat-line-end-position)
3853 (tramp-compat-temporary-file-directory)
3854 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
3855 (tramp-compat-copy-file, tramp-compat-copy-directory)
3856 (tramp-compat-delete-file, tramp-compat-delete-directory)
3857 (tramp-compat-number-sequence, tramp-compat-process-running-p):
3858 Use it.
3859 (tramp-advice-file-expand-wildcards): Do not use
3860 `tramp-handle-file-remote-p'.
3861 (tramp-compat-make-temp-file): Simplify fallback implementation.
3862 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
3863 (tramp-compat-copy-tree): Remove function.
3864 (tramp-compat-delete-file): New defun.
3865 (tramp-compat-delete-directory): Provide implementation for older
3866 Emacsen.
3867 (tramp-compat-file-attributes): Handle only
3868 `wrong-number-of-arguments' error.
3869
3870 * net/tramp-fish.el (tramp-fish-handle-copy-file):
3871 Add PRESERVE_SELINUX_CONTEXT.
3872 (tramp-fish-handle-delete-file): Add TRASH arg.
3873 (tramp-fish-handle-directory-files-and-attributes):
3874 Do not use `tramp-fish-handle-file-attributes.
3875 (tramp-fish-handle-file-local-copy)
3876 (tramp-fish-handle-insert-file-contents)
3877 (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
3878
3879 * net/tramp-gvfs.el (top): Require url-util.
3880 (tramp-gvfs-mount-point): Remove.
3881 (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
3882 and `set-file-selinux-context'.
3883 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
3884 (tramp-gvfs-handle-file-selinux-context)
3885 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
3886 (with-tramp-dbus-call-method): Format trace message.
3887 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
3888 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
3889 Implement backup call, when operation on local files fails.
3890 Use progress reporter. Flush properties of changed files.
3891 (tramp-gvfs-handle-delete-file): Add TRASH arg. Use
3892 `tramp-compat-delete-file'.
3893 (tramp-gvfs-handle-expand-file-name): Expand "~/".
3894 (tramp-gvfs-handle-make-directory): Make more traces.
3895 (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
3896 (tramp-gvfs-url-file-name): Hexify file name in url.
3897 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
3898 into account for the resulting file name.
3899 (tramp-gvfs-handler-askquestion): Preserve current message, in
3900 order to let progress reporter continue afterwards. (Bug#6257)
3901 Return dummy mountpoint, when the answer is "no".
3902 See `tramp-gvfs-maybe-open-connection'.
3903 (tramp-gvfs-handler-mounted-unmounted)
3904 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
3905 attribute "default_location". Set "prefix" property.
3906 Handle default-location.
3907 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
3908 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
3909 exists. Raise an error, if not (due to a corresponding answer
3910 "no" in interactive questions, for example).
3911 Use `tramp-compat-funcall'.
3912
3913 * net/tramp-imap.el (top): Autoload `epg-make-context'.
3914 (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
3915 (tramp-imap-do-copy-or-rename-file)
3916 (tramp-imap-handle-insert-file-contents)
3917 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
3918 (tramp-imap-handle-delete-file): Add TRASH arg.
3919
3920 * net/tramp-smb.el (tramp-smb-handle-copy-file):
3921 Add PRESERVE-SELINUX-CONTEXT.
3922 (tramp-smb-handle-copy-file)
3923 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3924 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
3925 Use `with-progress-reporter'.
3926 (tramp-smb-handle-delete-file): Add TRASH arg.
3927
3928 * net/tramp.el (tramp-methods): Move hostname to the end in all
3929 ssh `tramp-login-args'. Add `tramp-async-args' attribute where
3930 appropriate.
3931 (tramp-verbose): Describe verbose level 9.
3932 (tramp-completion-function-alist)
3933 (tramp-file-name-regexp, tramp-chunksize)
3934 (tramp-local-coding-commands, tramp-remote-coding-commands)
3935 (with-connection-property, tramp-completion-mode-p)
3936 (tramp-action-process-alive, tramp-action-out-of-band)
3937 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
3938 (tramp-exists-file-name-handler): Fix docstring.
3939 (tramp-remote-process-environment): Use `format' instead of
3940 `concat'. Protect version string by apostroph.
3941 (tramp-shell-prompt-pattern): Do not use a shy group in case of
3942 XEmacs.
3943 (tramp-file-name-regexp-unified)
3944 (tramp-completion-file-name-regexp-unified): On W32 systems, do
3945 not regard the volume letter as remote filename. (Bug#5447)
3946 (tramp-perl-file-attributes)
3947 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
3948 (tramp-vc-registered-read-file-names): Read input as
3949 here-document, otherwise the command could exceed maximum length
3950 of command line.
3951 (tramp-file-name-handler-alist): Add `file-selinux-context' and
3952 `set-file-selinux-context'.
3953 (tramp-debug-message): Add `tramp-compat-funcall' to ignored
3954 backtrace functions.
3955 (tramp-error-with-buffer): Don't show the connection buffer when
3956 we are in completion mode.
3957 (tramp-progress-reporter-update, tramp-remote-selinux-p)
3958 (tramp-handle-file-selinux-context)
3959 (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
3960 (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
3961 New defuns.
3962 (with-progress-reporter): New defmacro.
3963 (tramp-debug-outline-regexp): New defconst.
3964 (top, tramp-rfn-eshadow-setup-minibuffer)
3965 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
3966 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
3967 (tramp-completion-mode-p, tramp-check-for-regexp)
3968 (tramp-open-connection-setup-interactive-shell)
3969 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
3970 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
3971 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
3972 Use `tramp-compat-funcall'.
3973 (tramp-handle-make-symbolic-link): Flush file properties.
3974 (tramp-handle-load, tramp-handle-file-local-copy)
3975 (tramp-handle-insert-file-contents, tramp-handle-write-region)
3976 (tramp-handle-vc-registered, tramp-maybe-send-script)
3977 (tramp-find-shell): Use `with-progress-reporter'.
3978 (tramp-do-file-attributes-with-stat): Add space in format string,
3979 in order to work around a bug in pdksh. Reported by Gilles Pion
3980 <gpion@lfdj.com>.
3981 (tramp-handle-verify-visited-file-modtime): Do not send a command
3982 when the connection is not established.
3983 (tramp-handle-set-file-times): Simplify the check for utc.
3984 (tramp-handle-directory-files-and-attributes)
3985 (tramp-get-remote-path): Use `copy-tree'.
3986 (tramp-completion-handle-file-name-all-completions): Ensure, that
3987 non remote files are still checked. Oops.
3988 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
3989 Handle PRESERVE-SELINUX-CONTEXT.
3990 (tramp-do-copy-or-rename-file): Add progress reporter.
3991 (tramp-do-copy-or-rename-file-directly): Do not use
3992 `tramp-handle-file-remote-p'.
3993 (tramp-do-copy-or-rename-file-out-of-band):
3994 Use `tramp-compat-delete-directory'.
3995 (tramp-do-copy-or-rename-file-out-of-band)
3996 (tramp-compute-multi-hops, tramp-maybe-open-connection):
3997 Use `format-spec-make'.
3998 (tramp-handle-delete-file): Add TRASH arg.
3999 (tramp-handle-dired-uncache): Flush directory cache, not only file
4000 cache.
4001 (tramp-handle-expand-file-name)
4002 (tramp-completion-handle-file-name-all-completions)
4003 (tramp-completion-handle-file-name-completion):
4004 Use `tramp-connectable-p'.
4005 (tramp-handle-start-file-process): Set connection property "vec".
4006 Use it, in order to invalidate file caches. Check only for
4007 `remote-tty' process property.
4008 Implement tty setting. (Bug#4604, Bug#6360)
4009 (tramp-file-name-for-operation): Add `call-process-region' and
4010 `set-file-selinux-context'.
4011 (tramp-find-foreign-file-name-handler)
4012 (tramp-advice-make-auto-save-file-name)
4013 (tramp-set-auto-save-file-modes): Remove superfluous check for
4014 `stringp'. This is done inside `tramp-tramp-file-p'.
4015 (tramp-file-name-handler): Trace 'quit. Catch the error for some
4016 operations when we are in completion mode. This gives the user
4017 the chance to correct the file name in the minibuffer.
4018 (tramp-completion-mode-p): Use `non-essential'.
4019 (tramp-handle-file-name-all-completions): Backward/ XEmacs
4020 compatibility: Use `completion-ignore-case' if
4021 `read-file-name-completion-ignore-case' does not exist.
4022 (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
4023 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
4024 `tramp-open-shell'.
4025 (tramp-action-password): Hide password prompt before next run.
4026 (tramp-process-actions): Widen connection buffer for the trace.
4027 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
4028 process property. Trace stty settings if `tramp-verbose' >= 9.
4029 Apply workaround for IRIX64 bug. Move argument of last
4030 `tramp-send-command' where it belongs to.
4031 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
4032 front of `login-args'.
4033 (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
4034 on "/dev/null" instead of "/".
4035 (tramp-get-ls-command-with-dired): Make test for "--dired"
4036 stronger.
4037 (tramp-set-auto-save-file-modes): Adapt version check.
4038 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
4039 (tramp-handle-process-file): Call the program in a subshell, in
4040 order to preserve working directory.
4041 (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
4042 `tramp-remote-sh' from `tramp-methods'.
4043 (tramp-get-ls-command): Make test for "--color=never" stronger.
4044 (tramp-check-for-regexp): Use (forward-line 1).
4045
4046 * net/trampver.el: Update release number.
4047
4048 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
4049
4050 * help.el (help-map): Bind `C-h P' to describe-package.
4051
4052 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
4053
4054 * emacs-lisp/package.el (package-refresh-contents): Catch errors
4055 when downloading archives.
4056 (describe-package-1): Add package commentary.
4057 (package-install-button-action): New function.
4058 (package-menu-mode-map): Bind ? to package-menu-describe-package.
4059 (package-menu-view-commentary): Function removed.
4060 (package-list-packages-internal): Hide the `package' package too.
4061
4062 2010-08-25 Kenichi Handa <handa@m17n.org>
4063
4064 * language/misc-lang.el ("Arabic"): New language environment.
4065 Setup composition-function-table for Arabic characters.
4066
4067 * international/fontset.el (setup-default-fontset): Fix typo for
4068 arabic OTF spec (fini->fina).
4069
4070 2010-08-25 Jan Djärv <jan.h.d@swipnet.se>
4071
4072 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
4073 on all frames.
4074
4075 2010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4076
4077 * whitespace.el: Allow cleaning up blanks without blank
4078 visualization (Bug#6651). Adjust help window for
4079 whitespace-toggle-options (Bug#6479). Allow to use fill-column
4080 instead of whitespace-line-column (from EmacsWiki). New version
4081 13.1.
4082 (whitespace-style): Added new value 'face. Adjust docstring.
4083 (whitespace-space, whitespace-hspace, whitespace-tab): Adjust
4084 foreground property face.
4085 (whitespace-line-column): Adjust docstring and type declaration.
4086 (whitespace-style-value-list, whitespace-toggle-option-alist)
4087 (whitespace-help-text): Adjust const initialization.
4088 (whitespace-toggle-options, global-whitespace-toggle-options):
4089 Adjust docstring.
4090 (whitespace-display-window, whitespace-interactive-char)
4091 (whitespace-style-face-p, whitespace-color-on): Adjust code.
4092 (whitespace-help-scroll): New fun.
4093
4094 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
4095
4096 * emacs-lisp/package.el (list-packages): Alias for
4097 package-list-packages.
4098
4099 2010-08-24 Kevin Ryde <user42@zip.com.au>
4100
4101 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
4102 (Bug#5651).
4103
4104 * progmodes/ruby-mode.el (ruby): Add defgroup.
4105
4106 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
4107
4108 * progmodes/python.el: Add Ipython support (Bug#5390).
4109 (python-shell-prompt-alist)
4110 (python-shell-continuation-prompt-alist): New options.
4111 (python--set-prompt-regexp): New function.
4112 (inferior-python-mode, run-python, python-shell): Require
4113 ansi-color. Use python--set-prompt-regexp to set the comint
4114 prompt based on the Python interpreter.
4115 (python--prompt-regexp): New var.
4116 (python-check-comint-prompt)
4117 (python-comint-output-filter-function): Use it.
4118 (run-python): Use a pipe (Bug#5694).
4119
4120 2010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
4121
4122 * progmodes/python.el (python-send-region): Send a different
4123 Python command if Ipython is in use.
4124 (python-check-version): Use a Python command to find the version.
4125
4126 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
4127
4128 * mouse.el (mouse-yank-primary): Avoid setting primary when
4129 deactivating the mark (Bug#6872).
4130
4131 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
4132
4133 * progmodes/python.el (python-block-pairs): Allow use of "finally"
4134 with "else" (Bug#3991).
4135
4136 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
4137
4138 * net/dbus.el: Accept UNIX domain sockets as bus address.
4139 (top): Don't initialize `dbus-registered-objects-table' anymore,
4140 this is done in dbusbind,c.
4141 (dbus-check-event): Adapt test for bus.
4142 (dbus-return-values-table, dbus-unregister-service)
4143 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
4144 Adapt doc string.
4145
4146 2010-08-23 Juanma Barranquero <lekktu@gmail.com>
4147
4148 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
4149
4150 2010-08-22 Juri Linkov <juri@jurta.org>
4151
4152 * simple.el (read-extended-command): New function with the logic
4153 for `completing-read' moved to Elisp from `execute-extended-command'.
4154 Use `function-called-at-point' in `minibuffer-default-add-function'
4155 to get a command name for M-n (bug#5364, bug#5214).
4156
4157 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
4158
4159 * startup.el (command-line-1): Issue warning for ignored arguments
4160 --unibyte, etc (Bug#6886).
4161
4162 2010-08-22 Leo <sdl.web@gmail.com>
4163
4164 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
4165 (ignore, bright, dim, keyword): Split list of nicknames before
4166 passing to rcirc-add-or-remove (Bug#6894).
4167
4168 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
4169
4170 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
4171
4172 2010-08-22 Leo <sdl.web@gmail.com>
4173
4174 Fix buffer-list rename&refresh after killing a buffer in ido.
4175 * ido.el: Revert Óscar's.
4176 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
4177 Remember the buffers at head, rather than their name.
4178 * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
4179
4180 2010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
4181 Stefan Monnier <monnier@iro.umontreal.ca>
4182
4183 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
4184 extra backslash added to each line (bug#6890).
4185
4186 2010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
4187
4188 * subr.el (read-key): Don't echo keystrokes (bug#6883).
4189
4190 2010-08-22 Glenn Morris <rgm@gnu.org>
4191
4192 * menu-bar.el (menu-bar-games-menu): Add landmark.
4193
4194 2010-08-22 Glenn Morris <rgm@gnu.org>
4195
4196 * align.el (align-regexp): Make group and spacing arguments
4197 use the interactive defaults when non-interactive. (Bug#6698)
4198
4199 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
4200 expansion, so as not to need sendmail.
4201 (mail-text-start): Remove declaration.
4202 (rmail-retry-failure): Require sendmail.
4203
4204 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
4205
4206 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
4207
4208 2010-08-22 Michael Albinus <michael.albinus@gmx.de>
4209
4210 * progmodes/flymake.el (flymake-start-syntax-check-process):
4211 Use `start-file-process' in order to let it run also on remote hosts.
4212
4213 2010-08-22 Kenichi Handa <handa@m17n.org>
4214
4215 * files.el: Add `word-wrap' as safe local variable.
4216
4217 2010-08-22 Glenn Morris <rgm@gnu.org>
4218
4219 * woman.el (woman-translate): Case matters. (Bug#6849)
4220
4221 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
4222
4223 * simple.el (kill-region): Doc fix (Bug#6787).
4224
4225 2010-08-22 Glenn Morris <rgm@gnu.org>
4226
4227 * calendar/diary-lib.el (diary-header-line-format):
4228 Fit it to the window, not the frame.
4229
4230 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
4231
4232 * subr.el (ignore-errors): Add debug declaration.
4233
4234 2010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
4235
4236 * whitespace.el (whitespace-color-off): Remove post-command-hook
4237 locally.
4238
4239 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
4240
4241 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
4242
4243 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
4244
4245 * cus-edit.el (custom-group-value-create): Add extra newline
4246 before end line (Bug#6876).
4247
4248 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
4249
4250 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
4251 when extending it. Before killing on the second click, check if
4252 the buffer is the correct one. Doc fix.
4253 (mouse-secondary-save-then-kill): Allow usage without first
4254 calling mouse-start-secondary, by defaulting to point. Don't save
4255 an empty secondary selection. Doc fix.
4256
4257 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4258
4259 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
4260 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
4261 New version 13.0.
4262 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
4263 Adjust initialization.
4264 (whitespace-bob-marker, whitespace-eob-marker)
4265 (whitespace-buffer-changed): New vars.
4266 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
4267 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
4268 (whitespace-post-command-hook, whitespace-display-char-on):
4269 Adjust code.
4270 (whitespace-looking-back, whitespace-buffer-changed): New funs.
4271 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
4272
4273 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
4274
4275 * files.el (locate-file-completion-table): Only list the .el and .elc
4276 extensions if there's no other choice (bug#5955).
4277
4278 * facemenu.el (facemenu-self-insert-data): New var.
4279 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
4280 New functions.
4281 (facemenu-add-face): Use them.
4282
4283 * simple.el (blink-matching-open): Obey forward-sexp-function.
4284
4285 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
4286
4287 * simple.el (prog-mode-map): New var.
4288 (prog-indent-sexp): New command.
4289
4290 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
4291
4292 * progmodes/prolog.el (smie): Require.
4293
4294 * emacs-lisp/smie.el (smie-default-backward-token)
4295 (smie-default-forward-token): Strip properties.
4296 (smie-next-sexp): Be more careful with associative operators.
4297 (smie-forward-sexp-command): Generalize.
4298 (smie-backward-sexp-command): Simplify.
4299 (smie-closer-alist): New var.
4300 (smie-close-block): New command.
4301 (smie-indent-debug-log): New var.
4302 (smie-indent-offset-rule): Add a few more cases.
4303 (smie-indent-column): New function.
4304 (smie-indent-after-keyword): Use it.
4305 (smie-indent-keyword): Use it.
4306 Fix up the opener code's point position.
4307 (smie-indent-comment): Only applies at BOL.
4308 (smie-indent-debug): New command.
4309
4310 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
4311 declarations that are useful before running the macro.
4312
4313 2010-08-18 Joakim Verona <joakim@verona.se>
4314
4315 * image.el (imagemagick-types-inhibit): New variable.
4316 (imagemagick-register-types): New function.
4317 * image-mode.el (image-transform-properties): New function.
4318 (image-transform-set-scale, image-transform-fit-to-height)
4319 (image-transform-set-rotation, image-transform-set-resize)
4320 (image-transform-fit-to-width, image-transform-fit-to-height):
4321 New functions.
4322 (image-toggle-display-image): Support image transforms.
4323
4324 2010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
4325
4326 * image.el (create-animated-image): Don't add heuristic mask to image
4327 (Bug#6839).
4328
4329 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
4330
4331 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
4332 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
4333
4334 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
4335
4336 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
4337
4338 Font-lock '...' strings, plus various simplifications and fixes.
4339 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
4340 (octave-font-lock-close-quotes): New function.
4341 (octave-font-lock-syntactic-keywords): New var.
4342 (octave-mode): Use it. Set beginning-of-defun-function.
4343 (octave-mode-map): Don't override the <foo>-defun commands.
4344 (octave-mode-menu): Pass it directly to easy-menu-define;
4345 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
4346 (octave-block-match-alist): Fix up last change so that
4347 octave-close-block uses the more specific keyword.
4348 (info-lookup-mode): Silence byte-compiler.
4349 (octave-beginning-of-defun): Not interactive any more.
4350 Optimize slightly.
4351 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
4352 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
4353 (octave-completion-at-point-function): Make sure point is within
4354 beg..end.
4355 (octave-reindent-then-newline-and-indent):
4356 Use reindent-then-newline-and-indent.
4357 (octave-add-octave-menu): Remove.
4358
4359 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
4360
4361 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
4362 (report-emacs-bug-can-use-xdg-email): New functions.
4363 (report-emacs-bug): Set can-xdg-email to result of
4364 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
4365 \C-cm to report-emacs-bug-insert-to-mailer and add help text
4366 about it.
4367
4368 * net/browse-url.el (browse-url-default-browser): Add cond
4369 for browse-url-xdg-open.
4370 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
4371
4372 2010-08-17 Glenn Morris <rgm@gnu.org>
4373
4374 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
4375 (c-fontify-recorded-types-and-refs): Define for compiler.
4376 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
4377 before use.
4378
4379 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
4380 Fix format call.
4381
4382 2010-08-17 Michael Albinus <michael.albinus@gmx.de>
4383
4384 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
4385 properties.
4386 (tramp-handle-process-file): Call the program in a subshell, in
4387 order to preserve working directory.
4388 (tramp-action-password): Hide password prompt before next run.
4389 (tramp-process-actions): Widen connection buffer for the trace.
4390
4391 2010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
4392
4393 * net/rcirc.el (rcirc-log-process-buffers): New option.
4394 (rcirc-print): Use it.
4395 (rcirc-generate-log-filename): New function.
4396 (rcirc-log-filename-function): Change default to
4397 rcirc-generate-log-filename (Bug#6828).
4398
4399 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
4400
4401 * simple.el (deactivate-mark): If select-active-regions is `only',
4402 only set selection for temporarily active regions.
4403
4404 * cus-start.el: Change defcustom for select-active-regions.
4405
4406 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
4407
4408 * mouse.el (mouse--drag-set-mark-and-point): New function.
4409 (mouse-drag-track): Use LOCATION arg to push-mark.
4410 Use mouse--drag-set-mark-and-point to take click-count into
4411 consideration when updating point and mark (Bug#6840).
4412
4413 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
4414
4415 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4416 Give the Ruby rule a lower priority than Gnu (Bug#6778).
4417
4418 2010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
4419
4420 * font-lock.el (lisp-font-lock-keywords-2):
4421 Add combine-after-change-calls, condition-case-no-debug,
4422 with-demoted-errors, and with-silent-modifications (Bug#6025).
4423
4424 2010-08-14 Kevin Ryde <user42@zip.com.au>
4425
4426 * emacs-lisp/copyright.el (copyright-update-year)
4427 (copyright-update): Temporary switch-to-buffer to ensure the
4428 buffer change being queried is visible (Bug#5394).
4429
4430 2010-08-14 Tom Tromey <tromey@redhat.com>
4431
4432 * progmodes/etags.el (tags-file-name): Mark safe if stringp
4433 (Bug#6733).
4434
4435 2010-08-14 Eli Zaretskii <eliz@gnu.org>
4436
4437 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
4438 MS-DOS. (Bug#6689)
4439
4440 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
4441
4442 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
4443 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
4444 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
4445 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
4446 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
4447 Call menu-bar-set-tool-bar-position.
4448
4449 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4450
4451 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
4452 comment style (bug#6834).
4453 * progmodes/scheme.el (scheme-mode-syntax-table):
4454 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
4455 "b" flag in "' 14b" syntax.
4456
4457 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
4458 for (un)commenting the region and performing completion.
4459 (octave-mode-menu): Use standard commands for help and completion.
4460 (octave-mode-syntax-table): Support %{..%} comments (sort of).
4461 (octave-mode): Use define-derived-mode.
4462 Set completion-at-point-functions and don't set columns.
4463 Don't disable adaptive-fill-regexp.
4464 (octave-describe-major-mode, octave-comment-region)
4465 (octave-uncomment-region, octave-comment-indent)
4466 (octave-indent-for-comment): Remove.
4467 (octave-indent-calculate): Rename from calculate-octave-indent.
4468 (octave-indent-line, octave-fill-paragraph): Update caller.
4469 (octave-initialize-completions): No need to make an alist.
4470 (octave-completion-at-point-function): New function.
4471 (octave-complete-symbol): Use it.
4472 (octave-insert-defun): Use define-skeleton.
4473
4474 * progmodes/octave-mod.el (octave-mode): Set comment-add.
4475 (octave-mode-map): Use comment-dwim (bug#6829).
4476
4477 2010-08-12 Antoine Levitt <antoine.levitt@gmail.com> (tiny change)
4478
4479 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
4480 indentation of inserted comment.
4481
4482 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
4483
4484 * faces.el (region): Add type gtk that uses gtk colors.
4485
4486 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
4487 Handle theme-name change.
4488
4489 2010-08-10 Michael R. Mauger <mmaug@yahoo.com>
4490
4491 * progmodes/sql.el: Version 2.5
4492 (sql-product-alist): Add :prompt-cont-regexp property for several
4493 database products.
4494 (sql-prompt-cont-regexp): New variable.
4495 (sql-output-newline-count, sql-output-by-send):
4496 New variables. Record number of newlines in input text.
4497 (sql-send-string): Handle multiple filters and count newlines.
4498 (sql-send-magic-terminator): Count terminator newline.
4499 (sql-interactive-remove-continuation-prompt): Filters output to
4500 remove continuation prompts; one for each newline.
4501 (sql-interactive-mode): Set up new variables, prompt regexp and
4502 output filter.
4503 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
4504 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
4505
4506 2010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4507
4508 * emacs-lisp/pcase.el: New file.
4509
4510 2010-08-10 Michael Albinus <michael.albinus@gmx.de>
4511
4512 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
4513 as here-document, otherwise the command could exceed maximum
4514 length of command line.
4515 (tramp-handle-vc-registered): Call script accordingly.
4516 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
4517
4518 2010-08-10 Kenichi Handa <handa@m17n.org>
4519
4520 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
4521 composable pattern.
4522
4523 2010-08-09 Chong Yidong <cyd@stupidchicken.com>
4524
4525 * emacs-lisp/package.el (package-version-split)
4526 (package--version-first-nonzero, package-version-compare):
4527 Functions removed.
4528 (package-directory-list, package-load-all-descriptors)
4529 (package--built-in, package-activate, define-package)
4530 (package-installed-p, package-compute-transaction)
4531 (package-read-all-archive-contents)
4532 (package--add-to-archive-contents, package-buffer-info)
4533 (package-tar-file-info, package-list-packages-internal):
4534 Use version-to-list and version-list-*.
4535
4536 * emacs-lisp/package-x.el (package-upload-buffer-internal):
4537 Use version-to-list.
4538 (package-upload-buffer-internal): Use version-list-<=.
4539
4540 2010-08-09 Kenichi Handa <handa@m17n.org>
4541
4542 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
4543 composable pattern.
4544
4545 2010-08-08 Chong Yidong <cyd@stupidchicken.com>
4546
4547 * tutorial.el (tutorial--default-keys): C-d is now bound to
4548 delete-forward-char (Bug#6826).
4549
4550 * mouse.el (mouse-drag-track): Remove accidentally-removed check
4551 for `double' value of mouse-1-click-follows-link (Bug#6807).
4552
4553 2010-08-08 Johan Bockgård <bojohan@gnu.org>
4554
4555 * replace.el (replace-highlight): Bind isearch-forward and
4556 isearch-error, ensuring that highlighting is updated if the user
4557 switches the search direction (Bug#6808).
4558
4559 * isearch.el (isearch-lazy-highlight-forward): New var.
4560 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
4561 (isearch-lazy-highlight-update): Use it.
4562
4563 2010-08-08 Kenichi Handa <handa@m17n.org>
4564
4565 * international/mule.el (define-charset): Store NAME as :base property.
4566 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
4567 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
4568 current priority. Force using the designation of the specific
4569 charset by adding `charset' text property. Improve the whole algorithm.
4570
4571 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
4572
4573 * emulation/pc-select.el (pc-selection-mode-hook)
4574 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
4575 (pc-selection-mode): Fix typos in docstrings.
4576
4577 2010-08-08 Kenichi Handa <handa@m17n.org>
4578
4579 * language/cyrillic.el: Don't add "microsoft-cp1251" to
4580 ctext-non-standard-encodings-alist here.
4581
4582 * international/mule.el (ctext-non-standard-encodings-alist):
4583 Add "koi8-r" and "microsoft-cp1251".
4584 (ctext-standard-encodings): New variable.
4585 (ctext-non-standard-encodings-table): List only elements for
4586 non-standard encodings.
4587 (ctext-pre-write-conversion): Adjust for the above change.
4588 Check ctext-standard-encodings.
4589
4590 * international/mule-conf.el (compound-text): Doc fix.
4591 (ctext-no-compositions): Doc fix.
4592 (compound-text-with-extensions): Doc fix.
4593
4594 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4595
4596 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
4597
4598 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
4599
4600 * progmodes/which-func.el (which-func-format): Split help-echo text
4601 into lines, like other mode-line tooltips.
4602
4603 * server.el (server-start): When using TCP sockets, force IPv4
4604 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
4605
4606 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4607
4608 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
4609
4610 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
4611
4612 * term.el (term-delimiter-argument-list): Reflow docstring.
4613 (term-read-input-ring, term-write-input-ring, term-send-input)
4614 (term-bol, term-erase-in-display, serial-supported-or-barf):
4615 Fix typos in docstrings.
4616
4617 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4618
4619 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
4620
4621 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
4622
4623 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
4624
4625 2010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
4626
4627 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
4628 Fix typo in docstring (bug#6747).
4629
4630 2010-08-08 Leo <sdl.web@gmail.com>
4631
4632 * eshell/esh-io.el (eshell-get-target): Better detection of
4633 read-only file (Bug#6762).
4634
4635 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
4636
4637 * align.el (align-default-spacing): Doc fix.
4638 (align-region-heuristic, align-regexp): Fix typos in docstrings.
4639
4640 2010-08-08 Stephen Peters <speters@itasoftware.com>
4641
4642 * calendar/icalendar.el
4643 (icalendar--split-value): Fix splitting regexp. (Bug#6766)
4644 (icalendar--get-weekday-numbers): New.
4645 (icalendar--convert-recurring-to-diary): Handle multiple byday
4646 values in weekly rules. (Bug#6766)
4647
4648 2010-08-08 Ulf Jasper <ulf.jasper@web.de>
4649
4650 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
4651 (icalendar--create-uid, icalendar-export-region)
4652 (icalendar--parse-summary-and-rest): Code formatting.
4653
4654 2010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
4655
4656 * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
4657 to italicize headers.
4658 (calc-highlight-selections-with-faces): New variable.
4659 (calc-selected-face, calc-nonselected-face): New faces.
4660
4661 * calc/calccomp.el (math-comp-highlight-string): Use
4662 `calc-highlight-selections-with-faces' to determine how to highlight
4663 sub-formulas.
4664
4665 * calc/calc-sel.el (calc-show-selections): Change message to when
4666 using faces to highlight selections.
4667
4668 2010-08-07 Michael R. Mauger <mmaug@yahoo.com>
4669
4670 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
4671 Add SQLite 3 keywords, functions and datatypes.
4672 (sql-interactive-mode): Remove `comint-process-echoes' set to t
4673 (Bug#6686).
4674
4675 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
4676
4677 * simple.el (select-active-regions): Move to keyboard.c.
4678 (deactivate-mark): Used saved-region-selection.
4679 (select-active-region): Function removed.
4680 (activate-mark, set-mark, push-mark-command)
4681 (handle-shift-selection): Don't call it.
4682 (keyboard-quit): Avoid adding the region to the window selection.
4683
4684 * mouse.el (mouse-drag-track): Remove hacks to deal with old
4685 select-active-regions implementation.
4686 (mouse-yank-at-click): Doc fix.
4687
4688 * cus-start.el: Add custom declaration for select-active-regions.
4689
4690 2010-08-07 Eli Zaretskii <eliz@gnu.org>
4691
4692 * simple.el (delete-forward-char): Doc fix.
4693
4694 * tutorial.el (help-with-tutorial): Hack safe file-local variables
4695 after reading the tutorial.
4696
4697 2010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
4698
4699 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph): Fix
4700 for the case that a C style comment has its delimiters alone on
4701 their respective lines.
4702
4703 2010-08-06 Michael Albinus <michael.albinus@gmx.de>
4704
4705 * net/tramp.el (tramp-handle-start-file-process): Set connection
4706 property "vec".
4707 (tramp-process-sentinel): Use it for flushing the cache. We
4708 cannot do it via the process buffer, the buffer could be deleted
4709 already when running the sentinel.
4710
4711 2010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
4712
4713 * comint.el (comint-mode): Make directory tracking functions
4714 functional on remote files. (Bug#6764)
4715
4716 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
4717
4718 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
4719
4720 2010-08-05 Eli Zaretskii <eliz@gnu.org>
4721
4722 * emacs-lisp/find-gc.el (find-gc-source-files): Rename
4723 unexec.c => unexcoff.c.
4724
4725 * emacs-lisp/authors.el (authors-fixed-entries): Rename
4726 unexec.c => unexcoff.c.
4727
4728 2010-08-05 Michael Albinus <michael.albinus@gmx.de>
4729
4730 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
4731 cache, not only file cache.
4732 (tramp-process-sentinel): New defun.
4733 (tramp-handle-start-file-process): Use it, in order to invalidate
4734 file caches.
4735
4736 2010-08-03 Leo <sdl.web@gmail.com>
4737
4738 * server.el (server-start): Simplify loop.
4739
4740 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
4741
4742 * frame.el (screen-height, screen-width, set-screen-width)
4743 (set-screen-height): Remove ancient compatibility aliases.
4744
4745 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
4746 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
4747
4748 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
4749 that change current buffer.
4750
4751 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4752
4753 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
4754 beginning of the string. Use `string-match-p'. (Bug#6765)
4755
4756 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
4757
4758 * cus-start.el (x-gtk-use-system-tooltips): New variable.
4759
4760 2010-08-01 Chong Yidong <cyd@stupidchicken.com>
4761
4762 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
4763 (package--builtins): Tweak descriptions.
4764 (package-print-package): Upcase descriptions if necessary.
4765 Show all built-in packages in font-lock-builtin-face.
4766 (package-list-packages-internal): Omit "emacs" package.
4767 Show status of built-in packages as "built-in".
4768
4769 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
4770
4771 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
4772 before killing to preserve the primary selection (Bug#6701).
4773
4774 * term/x-win.el (x-select-text): Doc fix.
4775
4776 2010-07-31 Nathaniel Flath <flat0103@gmail.com>
4777
4778 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
4779 The following functions were modified or created:
4780
4781 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
4782 (objc-font-lock-extra-types):
4783 * progmodes/cc-mode.el (c-basic-common-init):
4784 * progmodes/cc-langs.el (c-make-mode-syntax-table)
4785 (c++-make-template-syntax-table)
4786 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
4787 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
4788 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
4789 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
4790 * progmodes/cc-fonts.el (c-make-inverse-face)
4791 (c-basic-matchers-after):
4792 * progmodes/cc-engine.el (c-forward-keyword-clause)
4793 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
4794 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
4795 (c-guess-continued-construct, c-guess-basic-syntax):
4796
4797 2010-07-31 Jan Djärv <jan.h.d@swipnet.se>
4798
4799 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
4800
4801 2010-07-31 Eli Zaretskii <eliz@gnu.org>
4802
4803 * files.el (bidi-paragraph-direction): Define safe local values.
4804
4805 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
4806 language-info-alist. Remove outdated FIXME in a comment.
4807
4808 2010-07-31 Alan Mackenzie <acm@muc.de>
4809
4810 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
4811 Auto-fill broken in C/C++ modes.
4812
4813 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
4814
4815 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
4816 (menu-bar-showhide-tool-bar-menu-customize-disable)
4817 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
4818 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
4819 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
4820 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
4821 make a menu for Options => toolbar that can move it.
4822
4823 2010-07-29 Chong Yidong <cyd@stupidchicken.com>
4824
4825 * emacs-lisp/package-x.el (package--make-rss-entry):
4826 (package-maint-add-news-item, package--update-news)
4827 (package-upload-buffer-internal): New arg ARCHIVE-URL.
4828
4829 * emacs-lisp/package.el (package-archive-url): Rename from
4830 package-archive-id.
4831 (package-install): Doc fix.
4832 (package-download-single, package-download-tar, package-install)
4833 (package-menu-view-commentary): Callers changed.
4834
4835 2010-07-29 Michael Albinus <michael.albinus@gmx.de>
4836
4837 * net/tramp.el (tramp-handle-start-file-process): Check only for
4838 `remote-tty' process property.
4839 (tramp-open-shell): Don't check for tty.
4840 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
4841 process property.
4842
4843 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
4844 host.
4845
4846 2010-07-28 Chong Yidong <cyd@stupidchicken.com>
4847
4848 * emacs-lisp/package.el (package-load-list, package-archives)
4849 (package-archive-contents, package-user-dir)
4850 (package-directory-list, package--builtins, package-alist)
4851 (package-activated-list, package-obsolete-alist): Mark as risky.
4852
4853 2010-07-28 Phil Hagelberg <phil@evri.com>
4854
4855 Add support for non-default package repositories.
4856 * emacs-lisp/package.el (package-archive-base): Var deleted.
4857 (package-archives): New variable.
4858 (package-archive-contents): Doc fix.
4859 (package-load-descriptor): Do nothing if descriptor file is missing.
4860 (package--write-file-no-coding): New function.
4861 (package-unpack-single): Use it.
4862 (package-archive-id): New function.
4863 (package-download-single, package-download-tar)
4864 (package-menu-view-commentary): Use it.
4865 (package-installed-p): Make second argument optional.
4866 (package-read-all-archive-contents): New function.
4867 (package-initialize): Use it.
4868 (package-read-archive-contents): Add ARCHIVE argument.
4869 (package--add-to-archive-contents): New function.
4870 (package-install): Don't call package-read-archive-contents.
4871 (package--download-one-archive): Store archive file in a
4872 subdirectory of package-user-dir.
4873 (package-menu-execute): Remove spurious line movement.
4874
4875 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
4876
4877 * cus-start.el (tool-bar-style): Add text-image-horiz.
4878
4879 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
4880
4881 * progmodes/gud.el (gud-common-init): Check for remoteness of
4882 `file', and not of `default-directory'.
4883
4884 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
4885
4886 * net/tramp.el (tramp-methods): Move hostname to the end in all
4887 ssh `tramp-login-args'.
4888 (tramp-verbose): Describe verbose level 9.
4889 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
4890 (tramp-open-connection-setup-interactive-shell): Trace stty
4891 settings if `tramp-verbose' >= 9.
4892 (tramp-handle-start-file-process): Implement tty setting.
4893 (Bug#4604, Bug#6360)
4894
4895 * net/tramp-cmds.el (tramp-bug): Recommend setting of
4896 `tramp-verbose' to 9.
4897
4898 2010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
4899
4900 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
4901 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
4902 Remove references to package `lisp-re' (bug#4369).
4903
4904 2010-07-27 Tom Tromey <tromey@redhat.com>
4905
4906 * progmodes/js.el (js-mode):
4907 * progmodes/make-mode.el (makefile-mode):
4908 * progmodes/simula.el (simula-mode):
4909 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
4910
4911 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
4912
4913 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
4914
4915 * time.el (display-time-day-and-date): Remove spurious * in docstring.
4916 (display-time-world-buffer-name, display-time-world-mode-map):
4917 Fix typos in docstrings.
4918
4919 2010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
4920
4921 * image-mode.el (image-display-size): New function.
4922 (image-forward-hscroll, image-next-line, image-eol, image-eob)
4923 (image-mode-fit-frame): Use it (Bug#6639).
4924
4925 2010-07-27 Chong Yidong <cyd@stupidchicken.com>
4926
4927 * dired.el (dired-buffers-for-dir): Handle list values of
4928 dired-directory (Bug#6636).
4929
4930 2010-07-26 Sam Steingold <sds@gnu.org>
4931
4932 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
4933 Do not call `x-get-selection' the second time, reuse the value.
4934
4935 2010-07-26 Daiki Ueno <ueno@unixuser.org>
4936
4937 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
4938 which consist of control chars only. Suggested by Richard Stallman.
4939
4940 2010-07-25 Daiki Ueno <ueno@unixuser.org>
4941
4942 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
4943 exists before passing an error to find-file-not-found-functions
4944 (bug#6723).
4945
4946 2010-07-23 Lukas Huonker <l.huonker@gmail.com>
4947
4948 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
4949 Remove leading nil element, adjust values.
4950 (tetris-shapes, tetris-shape-scores):
4951 Change representation of shapes and remove some redundancy.
4952 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
4953 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
4954 Adjust for working with new representation of shapes.
4955 (tetris-shape-rotations): New function.
4956 (tetris-move-bottom, tetris-move-left, tetris-move-right)
4957 (tetris-rotate-prev, tetris-rotate-next):
4958 Adjust for working with the new version of tetris-test-shape.
4959
4960 2010-07-23 Markus Triska <markus.triska@gmx.at>
4961
4962 * progmodes/ps-mode.el: Use comint (bug#5954).
4963 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
4964 (ps-mode-other-newline): Simplify.
4965 (ps-run-mode): Derive from comint-mode instead of
4966 fundamental-mode, yielding input history etc.
4967 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
4968 (ps-run-send-string): Adapt for comint-mode.
4969 (ps-run-newline): Remove now unneeded function.
4970
4971 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
4972
4973 * net/tramp.el (tramp-methods): Move hostname to the end in all
4974 plink `tramp-login-args'.
4975
4976 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
4977
4978 * net/tramp.el (tramp-open-shell): New defun.
4979 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
4980 Use it.
4981
4982 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
4983
4984 * net/tramp.el (tramp-file-name-regexp-unified)
4985 (tramp-completion-file-name-regexp-unified): On W32 systems, do
4986 not regard the volume letter as remote filename. (Bug#5447)
4987
4988 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
4989
4990 * custom.el (custom-declare-variable): Give a clearer error message
4991 when the docstring is missing (bug#6476).
4992
4993 2010-07-22 Michael R. Mauger <mmaug@yahoo.com>
4994
4995 * progmodes/sql.el: Version 2.4. Improved Login prompting.
4996 (sql-login-params): New widget definition.
4997 (sql-oracle-login-params, sql-mysql-login-params)
4998 (sql-solid-login-params, sql-sybase-login-params)
4999 (sql-informix-login-params, sql-ingres-login-params)
5000 (sql-ms-login-params, sql-postgres-login-params)
5001 (sql-interbase-login-params, sql-db2-login-params)
5002 (sql-linter-login-params): Use it.
5003 (sql-sqlite-login-params): Use it; Define "database" parameter as
5004 a file name.
5005 (sql-sqlite-program): Change to "sqlite3".
5006 (sql-comint-sqlite): Make sure database name is complete.
5007 (sql-for-each-login): New function.
5008 (sql-connect, sql-save-connection): Use it.
5009 (sql-get-login-ext): New function.
5010 (sql-get-login): Use it.
5011 (sql-make-alternate-buffer-name): Handle :file parameters.
5012
5013 2010-07-22 Juanma Barranquero <lekktu@gmail.com>
5014
5015 * dired.el (dired-no-confirm): Document value t and fix defcustom to
5016 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
5017
5018 2010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
5019
5020 * dired.el (dired-mode-map): Use command remapping (bug#6632).
5021
5022 2010-07-22 Lawrence Mitchell <wence@gmx.li>
5023
5024 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
5025
5026 2010-07-21 Michael Albinus <michael.albinus@gmx.de>
5027
5028 * net/tramp.el (tramp-get-ls-command)
5029 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
5030 instead of "/".
5031
5032 2010-07-20 Michael R. Mauger <mmaug@yahoo.com>
5033
5034 * progmodes/sql.el: Version 2.3.
5035 (sql-connection-alist): Changed keys from symbols to strings;
5036 enhanced the widget definition.
5037 (sql-mode-menu): Added submenu to select connections.
5038 (sql-interactive-mode-menu): Added "Save Connection" item.
5039 (sql-add-product): Fixed menu item.
5040 (sql-get-product-feature): Improved error handling.
5041 (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
5042 (sql-make-alternate-buffer-name): Simplified.
5043 (sql-product-interactive): Handle missing product.
5044 (sql-connect): Support string keys, minor improvements.
5045 (sql-save-connection): New function.
5046 (sql-connection-menu-filter): New function.
5047
5048 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
5049
5050 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
5051 (tramp-open-connection-setup-interactive-shell): Apply
5052 workaround for IRIX64 bug. Move argument of last
5053 `tramp-send-command' where it belongs to.
5054
5055 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
5056
5057 * net/tramp.el (tramp-perl-file-attributes)
5058 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
5059 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
5060 front of `login-args'.
5061
5062 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
5063
5064 * time.el (display-time-world-mode): Define with `define-derived-mode'.
5065 Set `show-trailing-whitespace' to nil.
5066 (display-time-world-display): Simplify.
5067
5068 2010-07-18 Alan Mackenzie <acm@muc.de>
5069
5070 Enhance `c-file-style' in file/directory local variables.
5071 * progmodes/cc-mode.el (c-count-cfss): New function.
5072 (c-before-hack-hook): Call `c-set-style' differently according to
5073 whether c-file-style was set in file or directory local
5074 variables.
5075
5076 2010-07-18 Michael R. Mauger <mmaug@yahoo.com>
5077
5078 * progmodes/sql.el: Version 2.2.
5079 (sql-product, sql-user, sql-database, sql-server, sql-port): Use
5080 defcustom :safe keyword rather than putting safe-local-variable
5081 property.
5082 (sql-password): Use defcustom :risky keyword rather than putting
5083 risky-local-variable property.
5084 (sql-oracle-login-params, sql-sqlite-login-params)
5085 (sql-solid-login-params, sql-sybase-login-params)
5086 (sql-informix-login-params, sql-ingres-login-params)
5087 (sql-ms-login-params, sql-postgres-login-params)
5088 (sql-interbase-login-params, sql-db2-login-params)
5089 (sql-linter-login-params): Add `port' option.
5090 (sql-get-product-feature): Added NO-INDIRECT parameter.
5091 (sql-comint-oracle, sql-comint-sybase)
5092 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
5093 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
5094 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
5095 (sql-comint-linter): Renamed sql-connect-* functions to
5096 sql-comint-*.
5097 (sql-product-alist, sql-mode-menu): Renamed as above and
5098 :sqli-connect-func to :sqli-comint-func.
5099 (sql-connection): New variable.
5100 (sql-interactive-mode): Set it.
5101 (sql-connection-alist): New variable.
5102 (sql-connect): New function.
5103 (sql--alt-buffer-part, sql--alt-if-not-empty)
5104 (sql-make-alternate-buffer-name): Improved alternative buffer name.
5105
5106 2010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5107
5108 * image-mode.el (image-bookmark-make-record): Do not set context
5109 in an image (Bug#6650).
5110
5111 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
5112
5113 * simple.el (select-active-region): New function.
5114 (push-mark-command, set-mark, activate-mark)
5115 (handle-shift-selection): Use it.
5116 (deactivate-mark): Don't check for size of region.
5117
5118 * mouse.el (mouse-drag-track): Use select-active-region.
5119
5120 2010-07-17 Michael Albinus <michael.albinus@gmx.de>
5121
5122 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
5123 "--dired" stronger.
5124
5125 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
5126
5127 * term/x-win.el (x-select-enable-primary): Change default to nil.
5128 (x-select-enable-clipboard): Add :version keyword.
5129
5130 * mouse.el (mouse-drag-copy-region):
5131 * simple.el (select-active-regions): Likewise.
5132
5133 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
5134
5135 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
5136 (vc-coding-system-for-diff): Use it to decide whether to inherit
5137 from the file the EOL format for reading the diffs of that file.
5138 (Bug#4451)
5139
5140 2010-07-16 Eli Zaretskii <eliz@gnu.org>
5141
5142 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
5143 unibyte, so compressed attachments are not compressed again.
5144
5145 2010-07-16 Michael Albinus <michael.albinus@gmx.de>
5146
5147 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
5148 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
5149 (tramp-find-shell): Simplify setting connection property.
5150 (tramp-get-ls-command): Make test for "--color=never" stronger.
5151
5152 2010-07-15 Simon South <ssouth@member.fsf.org>
5153
5154 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
5155 blocks within record declarations (i.e. variant parts) correctly.
5156
5157 2010-07-15 Simon South <ssouth@member.fsf.org>
5158
5159 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
5160 over literal tokens when parsing so newlines aren't "absorbed" by
5161 single-line comments. Corrects the indentation of case blocks
5162 that have a comment on the first line.
5163
5164 2010-07-14 Karl Fogel <kfogel@red-bean.com>
5165
5166 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
5167 by Drew Adams (Bug#5504).
5168
5169 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
5170
5171 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
5172 now that Unicode is used (Bug#6594).
5173
5174 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
5175
5176 * term/x-win.el (x-select-enable-clipboard): Default to t.
5177 (x-initialize-window-system): Don't overwrite Paste menu item.
5178
5179 * simple.el (select-active-regions): Default to t.
5180 (push-mark-command): Don't overwrite primary with empty string.
5181
5182 * mouse.el: Bind mouse-2 to mouse-yank-primary.
5183 (mouse-drag-copy-region): Default to nil.
5184
5185 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
5186 Cut/Copy/Paste menu bar items.
5187
5188 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5189
5190 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
5191 Patch applied by Karl Fogel.
5192
5193 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
5194 and `bookmark-current-buffer' if they have been already set in
5195 another buffer (e.g gnus-art).
5196
5197 2010-07-13 Karl Fogel <kfogel@red-bean.com>
5198 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5199
5200 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
5201
5202 * bookmark.el (bookmark-make-record-default): Allow unneeded
5203 information to be omitted from the record.
5204
5205 Adjust declarations and calls:
5206
5207 * info.el (bookmark-make-record-default): Adjust declaration.
5208 (Info-bookmark-make-record): Adjust call.
5209
5210 * woman.el (bookmark-make-record-default): Adjust declaration.
5211 (woman-bookmark-make-record): Adjust call.
5212
5213 * man.el (bookmark-make-record-default): Adjust declaration.
5214 (Man-bookmark-make-record): Adjust call.
5215
5216 * image-mode.el (bookmark-make-record-default): Adjust declaration.
5217
5218 * doc-view.el (bookmark-make-record-default): Adjust declaration.
5219
5220 2010-07-13 Karl Fogel <kfogel@red-bean.com>
5221
5222 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
5223 This is also from Thierry Volpiatto's patch in bug #6444. However,
5224 because it was extraneous to the functional change in that patch,
5225 and causes a re-indendation, I am committing it separately.
5226
5227 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5228
5229 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
5230 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
5231 Patch applied by Karl Fogel (Bug#6444).
5232
5233 2010-07-13 Chong Yidong <cyd@stupidchicken.com>
5234
5235 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
5236
5237 2010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
5238
5239 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
5240 Dempsky; bug#5084). Remove incorrect binding for S-tab.
5241 (ns-alternatives-map): Change S-tab binding to backtab
5242 (bug#6616).
5243
5244 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
5245 under ns.
5246
5247 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
5248
5249 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
5250 (Bug#5806)
5251
5252 * language/tv-util.el (tai-viet-re): Remove format.
5253
5254 2010-07-12 Kenichi Handa <handa@m17n.org>
5255
5256 * language/hebrew.el: Remove no-byte-compile declaration.
5257 Change coding: tag to utf-8. Register hebrew-shape-gstring in
5258 composition-function-table for 3-character looking back.
5259 (hebrew-font-get-precomposed): New function.
5260 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
5261
5262 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
5263
5264 * mouse.el (mouse-drag-track): Handle select-active-regions
5265 (Bug#6612).
5266
5267 2010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
5268
5269 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
5270 empty argument to gvfs-copy.
5271
5272 2010-07-10 Glenn Morris <rgm@gnu.org>
5273
5274 * calendar/calendar.el (calendar-week-end-day): New function.
5275 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
5276 Respect calendar-week-start-day. (Bug#6606)
5277 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
5278 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
5279 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
5280 respect calendar-week-start-day.
5281
5282 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
5283
5284 * simple.el (use-region-p): Doc fix (Bug#6607).
5285
5286 2010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
5287
5288 * progmodes/compile.el (compilation-error-regexp-alist-alist): Add
5289 regexps for cucumber and ruby.
5290
5291 2010-07-08 Daiki Ueno <ueno@unixuser.org>
5292
5293 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
5294 (epa-file-insert-file-contents): Hack to prevent
5295 find-file from opening empty buffer when decryption failed
5296 (bug#6568).
5297
5298 2010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
5299
5300 * textmodes/ispell.el (ispell-alternate-dictionary):
5301 Use file-readable-p.
5302 Return nil if no word-list is found at default locations.
5303 (ispell-complete-word-dict): Default to nil.
5304 (ispell-command-loop): Use 'word-list' when using lookup-words.
5305 (lookup-words): Use ispell-complete-word-dict or
5306 ispell-alternate-dictionary. Check for word-list availability
5307 and handle errors if needed with better messages (Bug#6539).
5308 (ispell-complete-word): Use ispell-complete-word-dict or
5309 ispell-alternate-dictionary.
5310
5311 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
5312
5313 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
5314 builtins (BufferError, BytesWarning, WindowsError; callables
5315 bin, bytearray, bytes, format, memoryview, next, print; __package__).
5316
5317 2010-07-07 Glenn Morris <rgm@gnu.org>
5318
5319 * play/zone.el (top-level): Do not require timer, tabify, or cl.
5320 (zone-shift-left): Ignore intangibility, and any errors from
5321 forward-char.
5322 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
5323 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
5324 deleting, and copying text properties.
5325 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
5326 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
5327 to point-max is hard.
5328 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
5329 (zone-fill-out-screen): Ignore intangibility.
5330
5331 2010-07-05 Chong Yidong <cyd@stupidchicken.com>
5332
5333 * menu-bar.el (menu-bar-mode):
5334 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
5335 if it has been set.
5336
5337 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
5338 word/line selection (Bug#6565).
5339
5340 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
5341
5342 * net/dbus.el (dbus-send-signal): Declare function.
5343
5344 2010-07-04 Michael Albinus <michael.albinus@gmx.de>
5345
5346 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
5347 (dbus-register-property): New optional argument EMITS-SIGNAL.
5348 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
5349
5350 2010-07-03 Chong Yidong <cyd@stupidchicken.com>
5351
5352 * mouse.el (mouse-drag-overlay): Variable deleted.
5353 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
5354 (mouse--remap-link-click-p): New function.
5355 (mouse-drag-track): Handle dragging by using temporary Transient
5356 Mark mode, instead of a special overlay.
5357 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
5358 mouse-show-mark.
5359
5360 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
5361 deleted.
5362
5363 2010-07-02 Juri Linkov <juri@jurta.org>
5364
5365 * autoinsert.el (auto-insert-alist): Fix readability
5366 by using dotted pair notation for lambda.
5367
5368 2010-07-02 Juri Linkov <juri@jurta.org>
5369
5370 * faces.el (read-face-name): Rename arg `string-describing-default'
5371 to `default'. Doc fix. Display the default value in quotes
5372 in the prompt. With empty input, return the `default' arg,
5373 unless the default value is a string (in which case return nil).
5374 (describe-face): Replace the string `default' arg of `read-face-name'
5375 with the symbol `default'.
5376
5377 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
5378
5379 * emulation/viper-cmd.el (viper-delete-backward-char)
5380 (viper-del-backward-char-in-insert)
5381 (viper-del-backward-char-in-replace, viper-change)
5382 (viper-backward-indent): Replace delete-backward-char with
5383 delete-char (Bug#6552).
5384
5385 2010-07-01 Chong Yidong <cyd@stupidchicken.com>
5386
5387 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
5388
5389 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
5390
5391 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
5392 argument passed to frame-creation-function (Bug#5378).
5393
5394 * faces.el (x-handle-named-frame-geometry)
5395 (x-handle-reverse-video, x-create-frame-with-faces)
5396 (face-set-after-frame-default, tty-create-frame-with-faces): Don't
5397 separately consult default-frame-alist. It is now passed as the
5398 PARAMETER argument.
5399
5400 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
5401
5402 * startup.el (command-line): Don't call tool-bar-setup in a
5403 tty-only build.
5404
5405 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
5406
5407 * ruler-mode.el (ruler--save-header-line-format): New fun.
5408 (ruler-mode): Use it as a setter function, so as not to overwrite
5409 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
5410
5411 2010-06-29 Chong Yidong <cyd@stupidchicken.com>
5412
5413 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
5414 (vc-root-diff, vc-print-root-log, vc-log-incoming)
5415 (vc-log-outgoing): Use it.
5416 (vc-diff-internal): Set diff-vc-backend.
5417
5418 * vc/diff-mode.el (diff-vc-backend): New var.
5419
5420 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
5421
5422 * dynamic-setting.el (font-setting-change-default-font): Remove
5423 call to message.
5424
5425 2010-06-28 Kenichi Handa <handa@m17n.org>
5426
5427 * international/quail.el (quail-insert-kbd-layout): Fix the
5428 showing of untranslated characters.
5429
5430 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
5431
5432 * simple.el (delete-active-region): New option.
5433 (delete-backward-char): Implement in Lisp.
5434 (delete-forward-char): New command.
5435
5436 * mouse.el (mouse-region-delete-keys): Deleted.
5437 (mouse-show-mark): Simplify.
5438
5439 * bindings.el (global-map): Bind delete and DEL, the former to
5440 delete-forward-char.
5441
5442 2010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
5443
5444 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
5445 (ruby-mode): Bind indent-line-function (Bug#5119).
5446
5447 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
5448
5449 * startup.el (command-line): Recognize "0" X resource value.
5450
5451 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
5452
5453 * startup.el (command-line): Use X resources to set the value of
5454 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
5455
5456 * menu-bar.el (menu-bar-mode):
5457 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
5458 Set init-value to t.
5459
5460 * frame.el (frame-notice-user-settings): Don't change
5461 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
5462 vice versa (Bug#2249).
5463
5464 2010-06-26 Eli Zaretskii <eliz@gnu.org>
5465
5466 * w32-fns.el (w32-convert-standard-filename): Doc fix.
5467
5468 2010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
5469
5470 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
5471 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
5472
5473 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
5474 default directories are expanded (Bug#6143).
5475
5476 2010-06-24 Juri Linkov <juri@jurta.org>
5477
5478 * minibuffer.el (completions-format): Change default from nil to
5479 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
5480
5481 2010-06-24 Juri Linkov <juri@jurta.org>
5482
5483 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
5484 buffer-locally to lambda that re-runs the vc diff command.
5485 (Bug#6447)
5486
5487 2010-06-24 Chong Yidong <cyd@stupidchicken.com>
5488
5489 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
5490 echo area is in use (Bug#3412).
5491
5492 2010-06-22 Glenn Morris <rgm@gnu.org>
5493
5494 * textmodes/texinfmt.el (texinfo-format-region)
5495 (texinfo-raise-lower-sections, texinfo-format-separate-node)
5496 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
5497 (texinfo-format-option, texinfo-noindent):
5498 Use line-beginning-position and line-end-position.
5499
5500 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
5501 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
5502 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
5503 utf-8 characters.
5504
5505 2010-06-21 Karl Fogel <kfogel@red-bean.com>
5506
5507 * play/zone.el (zone-fall-through-ws): Fix next-line ->
5508 forward-line fallout.
5509
5510 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
5511
5512 * mouse.el (mouse-appearance-menu): Add docstring.
5513
5514 * help.el (describe-key): Print up-event using key-description.
5515
5516 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
5517
5518 * net/zeroconf.el (zeroconf-resolve-service)
5519 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
5520 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
5521
5522 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
5523
5524 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
5525
5526 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
5527
5528 Avoid displaying files with a nil state in vc-dir.
5529 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
5530 cases that cause insertion.
5531 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
5532 with a nil state.
5533
5534 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
5535
5536 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
5537
5538 2010-06-29 Leo <sdl.web@gmail.com>
5539
5540 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
5541
5542 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
5543
5544 * generic-x.el (bat-generic-mode): Fix regexp for command line
5545 switches (Bug#5719).
5546
5547 2010-06-27 Masatake YAMATO <yamato@redhat.com>
5548
5549 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
5550 of nconc to avoid pure storage error (Bug#6239).
5551
5552 2010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
5553
5554 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
5555 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
5556 bindings of bookmark-automatically-show-annotations (Bug#6515).
5557
5558 2010-06-25 Eli Zaretskii <eliz@gnu.org>
5559
5560 * arc-mode.el (archive-zip-extract): Don't quote the file name on
5561 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
5562
5563 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
5564
5565 * comint.el (make-comint, make-comint-in-buffer): Mention return
5566 value in the docstrings. (Bug#6498)
5567
5568 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
5569
5570 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
5571 since it is not present when using some non-default switches.
5572
5573 2010-06-23 Karl Fogel <kfogel@red-bean.com>
5574
5575 * simple.el (compose-mail): Fix doc string to refer to
5576 `compose-mail-user-agent-warnings', instead of to the
5577 nonexistent `compose-mail-check-user-agent'.
5578
5579 2010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
5580
5581 Fix an indentation bug:
5582
5583 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
5584 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
5585 of existing values.
5586
5587 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
5588 (c-clear->-pair-props-if-match-before): now return t when they've
5589 cleared properties, nil otherwise.
5590 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
5591 by taking account of the existing value.
5592
5593 * progmodes/cc-defs.el
5594 (c-clear-char-property-with-value-function): Fix this to clear the
5595 property rather than overwriting it with nil.
5596
5597 2010-06-20 Chong Yidong <cyd@stupidchicken.com>
5598
5599 * emacs-lisp/package.el (package-print-package): Add link to
5600 package description via describe-package.
5601 (describe-package-1): List package requirements. Add button to
5602 perform installation.
5603 (package-menu-describe-package): New command.
5604
5605 * help-mode.el (help-package): New button type.
5606
5607 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
5608
5609 * emacs-lisp/package.el: Move package-list-packages binding to
5610 menu-bar.el.
5611 (describe-package, describe-package-1, package--dir): New funs.
5612 (package-activate-1): Use package--dir.
5613
5614 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
5615
5616 * help-mode.el (help-package-def): New button type.
5617
5618 * menu-bar.el: Move package-list-packages binding here from
5619 package.el.
5620
5621 2010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
5622
5623 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
5624
5625 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5626
5627 * emacs-lisp/edebug.el (edebug-read-list):
5628 Phase out old-style backquotes.
5629
5630 2010-06-17 Juri Linkov <juri@jurta.org>
5631
5632 * help-mode.el (help-mode): Set buffer-local variable
5633 revert-buffer-function to help-mode-revert-buffer.
5634 (help-mode-revert-buffer): New function.
5635
5636 * info.el (Info-revert-find-node): Check for major-mode Info-mode
5637 before popping to "*info*" (like in other Info functions).
5638 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
5639 old-history-forward. Pop to old-buffer-name or "*info*" to
5640 recreate the killed buffer. Set Info-history-forward from
5641 old-history-forward.
5642 (Info-breadcrumbs-depth): Add :group and :version.
5643
5644 2010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
5645
5646 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
5647
5648 2010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
5649
5650 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
5651 for languages like Portuguese with pt_{BR,PT} and no plain pt.
5652
5653 2010-06-17 Juanma Barranquero <lekktu@gmail.com>
5654
5655 * emacs-lisp/package.el (package-menu-mode-map):
5656 Move initialization into declaration.
5657
5658 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
5659
5660 2010-06-17 Chong Yidong <cyd@stupidchicken.com>
5661
5662 * emacs-lisp/package.el (package-archive-base): Point to
5663 elpa.gnu.org.
5664 (package-enable, package-load-list): New defcustoms.
5665 (package-user-dir, package-directory-list): Turn into defcustoms.
5666 Don't include package-user-dir in package-directory-list.
5667 (package--builtins-base): Don't include Emacs as a "package".
5668 (package-subdirectory-regexp): New var.
5669 (package-load-all-descriptors, package-compute-transaction)
5670 (package-download-transaction): Obey package-load-list.
5671 (package-activate-1): Rename from package-do-activate.
5672 (package-list-packages-internal): Check package-load-list.
5673 (package-load-descriptor, package-generate-autoloads)
5674 (package-unpack, package-unpack-single)
5675 (package--read-archive-file, package-delete): Use
5676 expand-file-name.
5677
5678 * emacs-lisp/package-x.el: New file. Package uploading
5679 functionality split out from package.el.
5680
5681 * startup.el (command-line): Load packages after reading init file.
5682
5683 2010-06-17 Tom Tromey <tromey@redhat.com>
5684
5685 * emacs-lisp/package.el: New file.
5686
5687 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
5688
5689 Fix vc-annotate for renamed files when using Git.
5690 * vc/vc-git.el (vc-git-find-revision): Deal with empty results from
5691 ls-files. Doe not pass the object as a file name to cat-file, it
5692 is not a file name.
5693 (vc-git-annotate-command): Pass the file name using -- to avoid
5694 ambiguity with the revision.
5695 (vc-git-previous-revision): Pass a relative file name.
5696
5697 2010-06-22 Glenn Morris <rgm@gnu.org>
5698
5699 * progmodes/js.el (js-mode-map): Use standard capitalization and
5700 ellipses for menu entries.
5701
5702 * wid-edit.el (widget-complete): Doc fix.
5703
5704 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
5705
5706 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
5707
5708 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
5709
5710 Fix annotating other revisions for renamed files in vc-annotate.
5711 * vc/vc-annotate.el (vc-annotate): Add an optional argument for the
5712 VC backend. Use it when non-nil.
5713 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
5714 (Bug#6487)
5715
5716 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
5717 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
5718 Do not pass the file name to the 'previous-revision call when we
5719 don't want a file diff. (Bug#6489)
5720
5721 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
5722
5723 Fix finding revisions for renamed files in vc-annotate.
5724 * vc/vc.el (vc-find-revision): Add an optional argument for
5725 the VC backend. Use it when non-nil.
5726 * vc/vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
5727 backend to vc-find-revision. (Bug#6487)
5728
5729 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
5730
5731 Fix reading file names in Git annotate buffers.
5732 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line):
5733 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
5734
5735 2010-06-20 Alan Mackenzie <acm@muc.de>
5736
5737 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
5738 in file local variables, set it first.
5739
5740 2010-06-19 Glenn Morris <rgm@gnu.org>
5741
5742 * descr-text.el (describe-char-unicode-data): Insert separating
5743 space when needed. (Bug#6422)
5744
5745 * progmodes/idlwave.el (idlwave-action-and-binding):
5746 Fix typo in 2009-12-03 change. (Bug#6450)
5747
5748 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
5749
5750 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
5751 handling for `lambda' (misunderstanding).
5752
5753 2010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
5754
5755 * calc/calc-poly.el (math-accum-factors): Make sure that
5756 constants aren't distributed after they are factored out.
5757
5758 2010-06-16 Juri Linkov <juri@jurta.org>
5759
5760 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
5761 `list-colors-print'. (Bug#6332)
5762
5763 * subr.el (read-quoted-char): Fix up last change (bug#6290).
5764
5765 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
5766
5767 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
5768 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
5769
5770 * font-lock.el (font-lock-major-mode): Rename from
5771 font-lock-mode-major-mode to distinguish it from
5772 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
5773 (font-lock-set-defaults):
5774 * font-core.el (font-lock-default-function): Adjust users.
5775 (font-lock-mode): Don't set it at all.
5776
5777 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
5778
5779 * vc/vc-annotate.el (vc-annotate): Use vc-read-revision.
5780
5781 2010-06-16 Glenn Morris <rgm@gnu.org>
5782
5783 * calendar/appt.el (appt-time-msg-list): Doc fix.
5784 (appt-check): Let-bind appt-warn-time.
5785 (appt-add): Make the 3rd argument optional.
5786 Simplify argument names. Doc fix. Check for integer WARNTIME.
5787 Only add WARNTIME to the output list if non-nil.
5788
5789 2010-06-16 Ivan Kanis <apple@kanis.eu>
5790
5791 * calendar/appt.el (appt-check): Let the 3rd element of
5792 appt-time-msg-list specify the warning time.
5793 (appt-add): Add new argument with the warning time. (Bug#5176)
5794
5795 2010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
5796
5797 * vc/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
5798 older than version 1.6. (Bug#6361)
5799
5800 2010-06-16 Helmut Eller <eller.helmut@gmail.com>
5801
5802 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
5803 used by cl-do-arglist. (Bug#6408)
5804
5805 2010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
5806
5807 * textmodes/ispell.el (ispell-dictionary-base-alist): Fix
5808 portuguese casechars/not-casechars for missing 'çÇ'.
5809 Suggested by Rolando Pereira (bug#6434).
5810
5811 2010-06-15 Juanma Barranquero <lekktu@gmail.com>
5812
5813 * facemenu.el (list-colors-sort): Doc fix.
5814
5815 2010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
5816
5817 * progmodes/sql.el (sql-connect-mysql): Fix typo.
5818
5819 2010-06-14 Juri Linkov <juri@jurta.org>
5820
5821 Add sort option `list-colors-sort'. (Bug#6332)
5822 * facemenu.el (color-rgb-to-hsv): New function.
5823 (list-colors-sort): New defcustom.
5824 (list-colors-sort-key): New function.
5825 (list-colors-display): Doc fix. Sort list according to the option
5826 `list-colors-sort'.
5827 (list-colors-print): Add HSV values to `help-echo' property of
5828 RGB strings.
5829
5830 2010-06-14 Juri Linkov <juri@jurta.org>
5831
5832 * compare-w.el: Move to the "vc" subdirectory.
5833
5834 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
5835
5836 * image-mode.el (image-mode-map): Remap left-char and right-char.
5837
5838 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
5839
5840 2010-06-12 Chong Yidong <cyd@stupidchicken.com>
5841
5842 * term/common-win.el (x-colors): Add all the color names defined
5843 in rgb.txt (Bug#6332).
5844
5845 * facemenu.el (list-colors-print): Don't print extra names if it
5846 will overflow the window width.
5847
5848 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
5849 change (Bug#6343).
5850
5851 2010-06-12 Eli Zaretskii <eliz@gnu.org>
5852
5853 * files.el (make-directory): Doc fix (bug#6396).
5854
5855 2010-06-12 Michael Albinus <michael.albinus@gmx.de>
5856
5857 * net/tramp.el (tramp-remote-process-environment): Protect version
5858 string by apostroph.
5859 (tramp-shell-prompt-pattern): Do not use a shy group in case of
5860 XEmacs.
5861 (tramp-file-name-for-operation): Add `call-process-region'.
5862 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
5863
5864 * net/tramp-compat.el (top): Do not autoload
5865 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
5866 only when `start-file-process' is not bound.
5867 (tramp-advice-file-expand-wildcards): Do not use
5868 `tramp-handle-file-remote-p'.
5869 (tramp-compat-make-temp-file): Handle the case, that
5870 `make-temp-file' has no third argument EXTENSION.
5871
5872 2010-06-11 Juanma Barranquero <lekktu@gmail.com>
5873
5874 * makefile.w32-in (WINS_BASIC): Include new directory vc.
5875
5876 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
5877
5878 2010-06-11 Juri Linkov <juri@jurta.org>
5879
5880 * finder.el (finder-known-keywords): Add keyword "vc"
5881 for version control.
5882
5883 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
5884 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
5885 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
5886 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
5887
5888 2010-06-11 Juri Linkov <juri@jurta.org>
5889
5890 Move version control related files to the "vc" subdirectory.
5891 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
5892 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
5893 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
5894 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
5895 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
5896 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
5897 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
5898 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
5899 Move files to the "vc" subdirectory.
5900
5901 2010-06-11 Chong Yidong <cyd@stupidchicken.com>
5902
5903 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
5904 (Bug#6367).
5905
5906 2010-06-11 Stephen Eglen <stephen@gnu.org>
5907
5908 * shell.el: Bind `shell-resync-dirs' to M-RET.
5909
5910 2010-06-10 Michael Albinus <michael.albinus@gmx.de>
5911
5912 * notifications.el: Move file from lisp/net, because it is
5913 supposed to talk locally to the user.
5914
5915 2010-06-10 Julien Danjou <julien@danjou.info>
5916
5917 * net/notifications.el (notifications-on-action-signal)
5918 (notifications-on-closed-signal): Pass notification id as first
5919 argument to the callback functions. Add docstrings.
5920 (notifications-notify): Fix docstring.
5921
5922 2010-06-10 Glenn Morris <rgm@gnu.org>
5923
5924 * emacs-lisp/authors.el (authors-ignored-files)
5925 (authors-valid-file-names): Add some files.
5926
5927 2010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
5928
5929 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
5930 merge conflict, giving preference to the emacs-23 version of the code.
5931
5932 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
5933
5934 * emacs-lisp/advice.el (ad-compile-function):
5935 Define warning-suppress-types before we let-bind it (bug#6275).
5936
5937 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
5938 declare it, make it buffer-local and permanent-local (bug#6324).
5939 (vc-resynch-window): Adjust name.
5940 * vc-hooks.el (vc-find-file-hook): Adjust name.
5941
5942 2010-06-09 Michael Albinus <michael.albinus@gmx.de>
5943
5944 * net/notifications.el (notifications-notify): Fix docstring.
5945
5946 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
5947
5948 Update to Unicode 6.0.0 beta.
5949 * international/charprop.el: Update copyright.
5950 * international/mule-cmds.el (ucs-names): Update character ranges.
5951 * international/uni-bidi.el:
5952 * international/uni-category.el:
5953 * international/uni-combining.el:
5954 * international/uni-comment.el:
5955 * international/uni-decimal.el:
5956 * international/uni-decomposition.el:
5957 * international/uni-digit.el:
5958 * international/uni-lowercase.el:
5959 * international/uni-mirrored.el:
5960 * international/uni-name.el:
5961 * international/uni-numeric.el:
5962 * international/uni-old-name.el:
5963 * international/uni-titlecase.el:
5964 * international/uni-uppercase.el: Regenerate.
5965
5966 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
5967
5968 * emacs-lisp/smie.el (comment-string-strip): Declare function.
5969 (smie-precs-precedence-table): Fix typo in docstring.
5970
5971 * vc-mtn.el (log-edit-extract-headers): Declare function.
5972
5973 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
5974
5975 * net/notifications.el (dbus-register-signal): Declare function.
5976 (notifications-notify): Fix typos and reflow docstring.
5977
5978 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
5979
5980 Improve VC create/retrieve tag/branch.
5981 * vc.el (vc-create-tag): Do not read the directory name for VCs
5982 with repository revision granularity. Adjust the tag/branch
5983 prompt. Reset VC properties.
5984 (vc-retrieve-tag): Do not read the directory name for VCs
5985 with repository revision granularity. Reset VC properties.
5986
5987 2010-06-09 Julien Danjou <julien@danjou.info>
5988
5989 * net/notifications.el: New file.
5990
5991 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
5992
5993 Add optional support for resetting VC properties.
5994 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
5995 call vc-file-clearprops when true.
5996 (vc-resynch-buffer): Add new optional argument, pass it down.
5997 (vc-resynch-buffers-in-directory): Likewise.
5998
5999 Improve support for special markup in the VC commit message.
6000 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
6001 * vc-hg.el (vc-hg-checkin): Add support for Date:.
6002 * vc-git.el (vc-git-checkin):
6003 * vc-bzr.el (vc-bzr-checkin): Likewise.
6004
6005 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
6006
6007 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
6008 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
6009
6010 2010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
6011
6012 * iimage.el: Remove images as soon as the underlying text is modified.
6013 (iimage-modification-hook): New function.
6014 (iimage-mode-buffer): Use it.
6015
6016 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6017
6018 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
6019 smie-indent-offset-after. Add :prev case. Make a bit more generic.
6020 (smie-indent-virtual): Remove `virtual' arg. Update callers.
6021 (smie-indent-keyword): Add handling of open-paren keywords.
6022 (smie-indent-comment-continue): Don't assume comment-continue.
6023
6024 2010-06-07 Martin Rudalics <rudalics@gmx.at>
6025
6026 * window.el (pop-to-buffer): Remove the conditional that
6027 compares new-window and old-window, so it will reselect
6028 the selected window unconditionally.
6029 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
6030
6031 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6032
6033 * emacs-lisp/smie.el (smie-indent-offset-after)
6034 (smie-indent-forward-token, smie-indent-backward-token): New functions.
6035 (smie-indent-after-keyword): Use them.
6036 (smie-indent-fixindent): Only applies to the indentation of the BOL.
6037 (smie-indent-keyword): Tweak the black magic.
6038 (smie-indent-comment-continue): Strip comment-continue before use.
6039 (smie-indent-functions): Indent comments before keywords.
6040
6041 2010-06-06 Juri Linkov <juri@jurta.org>
6042
6043 * isearch.el (isearch-lazy-highlight-search): Fix looping
6044 by checking for empty match. This syncs this loop with the
6045 similar loop in `isearch-search'. (Bug#6362)
6046
6047 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
6048
6049 * net/dbus.el (dbus-register-method): Declare function.
6050 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
6051 (dbus-introspect): Doc fix.
6052 (dbus-event-bus-name, dbus-introspect-get-interface)
6053 (dbus-introspect-get-argument): Reflow docstrings.
6054
6055 2010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
6056
6057 vc-log-incoming/vc-log-outgoing fixes for Git.
6058 * vc-git.el (vc-git-log-view-mode): Fix font lock for
6059 incoming/outgoing logs.
6060 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
6061 instead of vc-git-compute-remote.
6062 (vc-git-compute-remote): Remove.
6063
6064 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
6065
6066 * term/common-win.el (x-colors): Add "dark green" and "dark
6067 turquoise" (Bug#6332).
6068
6069 2010-06-04 Juri Linkov <juri@jurta.org>
6070
6071 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
6072 Instead of setting `replace' to t and replacing the same string
6073 with itself, don't do certain actions when
6074 kill-do-not-save-duplicates is non-nil and string is equal to car
6075 of kill-ring: don't call menu-bar-update-yank-menu, don't push
6076 interprogram-paste strings to kill-ring, and don't push the input
6077 argument `string' to kill-ring.
6078 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
6079
6080 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
6081
6082 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
6083
6084 2010-06-04 Michael Albinus <michael.albinus@gmx.de>
6085
6086 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
6087 (tramp-gvfs-handler-mounted-unmounted)
6088 (tramp-gvfs-connection-mounted-p): Handle default-location.
6089
6090 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
6091 move files to trash.
6092
6093 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
6094
6095 * international/mule-cmds.el (nonascii-insert-offset)
6096 (nonascii-translation-table): Add obsolescence information.
6097
6098 * international/mule.el (make-translation-table-from-vector): Doc fix.
6099
6100 2010-06-03 Glenn Morris <rgm@gnu.org>
6101
6102 * desktop.el (desktop-clear-preserve-buffers):
6103 Add "*Warnings*" buffer. (Bug#6336)
6104
6105 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
6106
6107 vc-log-incoming/vc-log-outgoing improvements for Git.
6108 * vc-git.el (vc-git-log-outgoing): Use the same format as the
6109 short log.
6110 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
6111
6112 Add bindings for vc-log-incoming and vc-log-outgoing.
6113 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
6114 and vc-log-outgoing.
6115 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
6116 and vc-log-outgoing.
6117
6118 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
6119
6120 * net/rcirc.el (rcirc-sort-nicknames): Remove.
6121 (rcirc-handler-366): Always sort nicknames.
6122
6123 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
6124
6125 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
6126
6127 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
6128
6129 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
6130
6131 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
6132
6133 * net/rcirc.el (rcirc-sort-nicknames): Change default.
6134 (rcirc-sort-nicknames-join): Avoid setq.
6135
6136 2010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
6137
6138 * net/rcirc.el (rcirc-sort-nicknames): New custom.
6139 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
6140 (rcirc-handler-366): Use them.
6141
6142 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
6143
6144 Split smie-indent-calculate into more manageable chunks.
6145 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
6146 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
6147 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
6148 (smie-indent-exps): Extract from smie-indent-calculate.
6149 (smie-indent-functions): New var.
6150 (smie-indent-functions): Use them.
6151
6152 2010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6153
6154 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
6155 (smie-indent-calculate): Simplify and cleanup.
6156
6157 2010-06-02 Michael Albinus <michael.albinus@gmx.de>
6158
6159 * net/tramp-gvfs.el (top): Require url-util.
6160 (tramp-gvfs-mount-point): Remove.
6161 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
6162 New defuns.
6163 (with-tramp-dbus-call-method): Format trace message.
6164 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
6165 Implement backup call, when operation on local files fails.
6166 Use progress reporter. Flush properties of changed files.
6167 (tramp-gvfs-handle-make-directory): Make more traces.
6168 (tramp-gvfs-url-file-name): Hexify file name in url.
6169 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
6170 into account for the resulting file name.
6171 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
6172 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
6173 (tramp-gvfs-handler-mounted-unmounted)
6174 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
6175 attribute "default_location". Set "prefix" property.
6176 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
6177 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
6178 exists. Raise an error, if not (due to a corresponding answer
6179 "no" in interactive questions, for example).
6180
6181 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
6182
6183 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
6184
6185 2010-06-01 Juanma Barranquero <lekktu@gmail.com>
6186
6187 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
6188 right-*. (Bug#6265)
6189
6190 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
6191
6192 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
6193 * vc-git.el (vc-git-compute-remote): New function.
6194 (vc-git-log-outgoing): Use it instead of hard coding a value.
6195 (vc-git-log-incoming): New function.
6196
6197 Improve state updating for VC tag commands.
6198 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
6199 to update the state of all buffers in the directory.
6200
6201 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
6202
6203 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6204
6205 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
6206 `file-directory-p' to the filename part rather than to the whole text.
6207
6208 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6209
6210 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
6211
6212 2010-05-31 Drew Adams <drew.adams@oracle.com>
6213
6214 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
6215
6216 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
6217
6218 * subr.el (momentary-string-display): Just use read-event to read
6219 the exit event (Bug#6238).
6220
6221 2010-05-30 Eli Zaretskii <eliz@gnu.org>
6222
6223 * international/mule.el (define-coding-system): Doc fix (bug#6313).
6224
6225 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
6226
6227 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
6228 Suggested by Eli Zaretskii <eliz@gnu.org>.
6229
6230 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6231
6232 * minibuffer.el (completion-file-name-table): Don't return a boundary
6233 past the end of `string' (bug#6299).
6234 (completion--file-name-table): Delegate to completion-file-name-table
6235 for the `boundaries' case.
6236
6237 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
6238
6239 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
6240 movement commands.
6241
6242 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
6243 `path-separator', but maintain compatibility with Emacs 20.2.
6244
6245 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
6246
6247 * server.el (server-process-filter): Receive parent-id argument
6248 from emacsclient.
6249 (server-create-window-system-frame): New arg. Pass parent-id as
6250 frame parameter.
6251
6252 2010-05-29 Eli Zaretskii <eliz@gnu.org>
6253
6254 Bidi-sensitive word movement with arrow keys.
6255 * subr.el (right-arrow-command, left-arrow-command): Move to
6256 bindings.el.
6257
6258 * bindings.el (right-char, left-char): Move from subr.el and
6259 rename from right-arrow-command and left-arrow-command.
6260 (right-word, left-word): New functions.
6261 (global-map) <right>: Bind to right-char.
6262 (global-map) <left>: Bind to left-char.
6263 (global-map) <C-right>: Bind to right-word.
6264 (global-map) <C-left>: Bind to left-word.
6265
6266 * ls-lisp.el (ls-lisp-classify-file): New function.
6267 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
6268 (ls-lisp-classify): Call ls-lisp-classify-file.
6269 (insert-directory): Remove blanks from switches.
6270
6271 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
6272
6273 * ansi-color.el: Delete unused escape sequences (Bug#6085).
6274 (ansi-color-drop-regexp): New constant.
6275 (ansi-color-apply, ansi-color-filter-region)
6276 (ansi-color-apply-on-region): Delete unrecognized control sequences.
6277 (ansi-color-apply): Build string list before calling concat.
6278
6279 2010-05-28 Juri Linkov <juri@jurta.org>
6280
6281 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
6282 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
6283 (Bug#5270)
6284
6285 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
6286
6287 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
6288 to ignored backtrace functions.
6289 (with-progress-reporter): Expand docstring.
6290 (tramp-handle-delete-file): Implement TRASH argument.
6291 (tramp-get-remote-trash): New defun.
6292
6293 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
6294
6295 * net/tramp-compat.el (tramp-compat-delete-file): Use
6296 `symbol-value' for backward compatibility.
6297
6298 * net/tramp.el (tramp-handle-make-symbolic-link)
6299 (tramp-handle-load)
6300 (tramp-do-copy-or-rename-file-via-buffer)
6301 (tramp-do-copy-or-rename-file-directly)
6302 (tramp-do-copy-or-rename-file-out-of-band)
6303 (tramp-handle-process-file, tramp-handle-call-process-region)
6304 (tramp-handle-shell-command, tramp-handle-file-local-copy)
6305 (tramp-handle-insert-file-contents, tramp-handle-write-region)
6306 (tramp-delete-temp-file-function): Use `delete-file' instead
6307 of `tramp-compat-delete-file'.
6308
6309 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
6310 (tramp-fish-handle-make-symbolic-link)
6311 (tramp-fish-handle-process-file): Use `delete-file' instead
6312 of `tramp-compat-delete-file'.
6313
6314 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use
6315 `delete-file' instead of `tramp-compat-delete-file'.
6316
6317 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
6318 (tramp-gvfs-handle-write-region): Use `delete-file' instead of
6319 `tramp-compat-delete-file'.
6320
6321 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): Use
6322 `delete-file' instead of `tramp-compat-delete-file'.
6323
6324 * net/tramp-smb.el (tramp-smb-handle-copy-file)
6325 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
6326 (tramp-smb-handle-write-region): Use `delete-file' instead of
6327 `tramp-compat-delete-file'.
6328 (tramp-smb-handle-delete-directory): Use 'trash as arg.
6329
6330 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
6331
6332 * dired.el (dired-delete-file): New arg TRASH.
6333 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
6334 (dired-do-flagged-delete, dired-do-delete): Use trash.
6335
6336 * speedbar.el (speedbar-item-delete): Allow trashing.
6337
6338 * files.el (delete-directory): New arg TRASH.
6339
6340 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
6341 (ange-ftp-rename-remote-to-remote)
6342 (ange-ftp-rename-local-to-remote)
6343 (ange-ftp-rename-remote-to-local, ange-ftp-load)
6344 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
6345 `delete-file'.
6346 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
6347 allow trashing.
6348
6349 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
6350 handle new TRASH arg of `delete-file'.
6351
6352 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
6353 (tramp-handle-make-symbolic-link, tramp-handle-load)
6354 (tramp-do-copy-or-rename-file-via-buffer)
6355 (tramp-do-copy-or-rename-file-directly)
6356 (tramp-do-copy-or-rename-file-out-of-band)
6357 (tramp-handle-process-file, tramp-handle-call-process-region)
6358 (tramp-handle-shell-command, tramp-handle-file-local-copy)
6359 (tramp-handle-insert-file-contents, tramp-handle-write-region)
6360 (tramp-delete-temp-file-function): Use null TRASH arg in
6361 tramp-compat-delete-file call.
6362
6363 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
6364 (tramp-fish-handle-delete-file)
6365 (tramp-fish-handle-make-symbolic-link)
6366 (tramp-fish-handle-process-file): Use null TRASH arg in
6367 `tramp-compat-delete-file' call.
6368
6369 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
6370 arg in `tramp-compat-delete-file' call.
6371
6372 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
6373 (tramp-gvfs-handle-write-region): Use null TRASH arg in
6374 `tramp-compat-delete-file' call.
6375
6376 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
6377 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
6378 `tramp-compat-delete-file' call.
6379
6380 * net/tramp-smb.el (tramp-smb-handle-copy-file)
6381 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
6382 (tramp-smb-handle-write-region): Use null TRASH arg in
6383 tramp-compat-delete-file call.
6384 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
6385 (tramp-smb-handle-delete-file): Rename arg.
6386
6387 * diff.el (diff-sentinel):
6388 * epg.el (epg--make-temp-file, epg-decrypt-string)
6389 (epg-verify-string, epg-sign-string, epg-encrypt-string):
6390 * jka-compr.el (jka-compr-partial-uncompress)
6391 (jka-compr-call-process, jka-compr-write-region):
6392 * server.el (server-sentinel): Remove optional arg from
6393 delete-file, reverting 2010-05-03 change.
6394
6395 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
6396
6397 * progmodes/verilog-mode.el (verilog-type-font-keywords): Use
6398 font-lock-constant-face, not obsolete font-lock-reference-face.
6399
6400 2010-05-27 Kenichi Handa <handa@m17n.org>
6401
6402 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
6403 element of GSTRING is nil.
6404
6405 2010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6406
6407 * emacs-lisp/smie.el (smie-forward-token-function)
6408 (smie-backward-token-function): New vars.
6409 (smie-backward-sexp, smie-forward-sexp)
6410 (smie-indent-hanging-p, smie-indent-calculate): Use them.
6411 (smie-default-backward-token): Rename from smie-backward-token and
6412 skip comments.
6413 (smie-default-forward-token): Rename from smie-forward-token and
6414 skip comments.
6415 (smie-next-sexp): Handle nil results from next-token.
6416 (smie-indent-calculate): Add a new case for special `fixindent' comments.
6417
6418 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
6419
6420 * progmodes/verilog-mode.el (verilog-type-font-keywords):
6421 Use font-lock-constant-face, not obsolete font-lock-reference-face.
6422
6423 2010-05-27 Masatake YAMATO <yamato@redhat.com>
6424
6425 * htmlfontify.el (hfy-face-resolve-face): New function.
6426 (hfy-face-to-style): Use it (Bug#6279).
6427
6428 2010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
6429
6430 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
6431 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
6432
6433 2010-05-26 Glenn Morris <rgm@gnu.org>
6434
6435 * emulation/edt.el (edt-load-keys): Use locate-library.
6436
6437 2010-05-25 Chong Yidong <cyd@stupidchicken.com>
6438
6439 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
6440 (log-edit-changelog-entries): Doc fix.
6441 (log-edit-changelog-insert-entries): Args changed.
6442 Rename relative filenames in ChangeLog entries. Delete tabs.
6443 (log-edit-insert-changelog-entries): Reorganize return value of
6444 `log-edit-changelog-entries' to pass filenames to
6445 log-edit-changelog-insert-entries.
6446
6447 2010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6448
6449 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
6450 `image-dired-dired-insert-marked-thumbs' to
6451 `image-dired-dired-toggle-marked-thumbs'.
6452
6453 * image-dired.el: Require cl when compiling.
6454 (image-dired-dired-toggle-marked-thumbs): Rename from
6455 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
6456 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
6457 to 'no-dir. Skip files whose names don't match
6458 `image-file-name-regexp'. When file has a thumbnail overlay,
6459 delete it. (Bug#5270)
6460
6461 2010-05-25 Juri Linkov <juri@jurta.org>
6462
6463 * image-mode.el (image-mode): Add image-after-revert-hook to
6464 after-revert-hook.
6465 (image-after-revert-hook): New function. (Bug#5669)
6466
6467 2010-05-25 Juri Linkov <juri@jurta.org>
6468
6469 * image.el (image-animated-p): When delay between animated images
6470 is 0, set it to 10 (0.1 sec). (Bug#6258)
6471
6472 2010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
6473
6474 * net/tramp.el (tramp-handle-insert-directory): Don't use
6475 `forward-word', its default syntax could be changed.
6476
6477 2010-05-25 Michael Albinus <michael.albinus@gmx.de>
6478
6479 * net/tramp.el (tramp-progress-reporter-update): New defun.
6480 (with-progress-reporter): Use it.
6481 (tramp-process-actions):
6482 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion): Preserve
6483 current message, in order to let progress reporter continue
6484 afterwards. (Bug#6257)
6485
6486 2010-05-25 Glenn Morris <rgm@gnu.org>
6487
6488 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
6489 Add :version.
6490
6491 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
6492
6493 * net/rcirc.el (rcirc-default-user-name): Change to "user".
6494 (rcirc-default-full-name): Change to "unknown".
6495 (rcirc-user-name-history): Add variable.
6496
6497 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
6498 Jonathan Rockway <jon@jrock.us>
6499
6500 * net/rcirc.el (rcirc-server-alist): Add :pass.
6501 (rcirc): When prompting for connection parameters, also prompt for
6502 username and password.
6503 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
6504 value to server when connecting.
6505
6506 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6507
6508 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
6509 (smie-merge-prec2s): Pass the tables as separate args.
6510 (smie-bnf-precedence-table): Adjust call accordingly.
6511 (smie-prec2-levels): Set levels at the end.
6512
6513 Replace Lisp calls to delete-backward-char by delete-char.
6514 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
6515 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
6516 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
6517 * calc/calc.el, emacs-lisp/cl-extra.el, emacs-lips/cl-loaddefs.el,
6518 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
6519 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
6520 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
6521 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
6522 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
6523 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
6524 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
6525 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
6526 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
6527 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
6528 delete-backward-char by calls to delete-char.
6529
6530 2010-05-25 Kenichi Handa <handa@m17n.org>
6531
6532 * language/hebrew.el (hebrew-shape-gstring): New function.
6533 Register it in composition-function-table for all Hebrew combining
6534 characters.
6535
6536 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6537
6538 * epa.el (epa--select-keys): Don't explicitly delete the window since
6539 that can fail (e.g. sole window in frame). Use dedication instead.
6540
6541 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
6542
6543 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
6544
6545 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
6546
6547 * image.el (image-refresh): Define as an alias for image-flush.
6548
6549 * image-mode.el (image-toggle-display-image): Caller changed.
6550
6551 2010-05-21 Juri Linkov <juri@jurta.org>
6552
6553 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
6554 Remove "all" from grep-files-aliases. Split grep-files-aliases by
6555 whitespace, call wildcard-to-regexp on substrings and concat them
6556 with "\\|". (Bug#6114)
6557
6558 2010-05-21 Alan Mackenzie <acm@muc.de>
6559
6560 * progmodes/cc-engine.el (c-parse-state-get-strategy):
6561 Replace parameter `here' with `here-' and `here-plus', which sandwich
6562 any pertinent CPP construct.
6563 (c-remove-stale-state-cache-backwards): Fix a bug which happens
6564 when doing (c-parse-state) in a CPP construct: Exclude any "new"
6565 CPP construct from taking part in the scanning.
6566
6567 2010-05-21 Michael Albinus <michael.albinus@gmx.de>
6568
6569 * net/tramp.el (tramp-do-copy-or-rename-file)
6570 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
6571 Tune `with-progress-reporter' messages.
6572 (tramp-handle-vc-registered):
6573 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
6574 (tramp-fish-handle-insert-file-contents)
6575 (tramp-fish-maybe-open-connection):
6576 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
6577 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
6578 (tramp-imap-handle-insert-file-contents)
6579 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
6580
6581 2010-05-21 Juanma Barranquero <lekktu@gmail.com>
6582
6583 * add-log.el (change-log-font-lock-keywords):
6584 Highlight all authors in multi-author entries.
6585
6586 * smerge-mode.el (smerge-refine-ignore-whitespace)
6587 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
6588 Fix typos in docstrings.
6589 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
6590
6591 2010-05-21 Glenn Morris <rgm@gnu.org>
6592
6593 * progmodes/fortran.el (fortran-mode):
6594 * progmodes/f90.el (f90-mode): Derive from prog-mode.
6595
6596 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
6597 having a relative path in src/Makefile.in.
6598
6599 2010-05-20 Kevin Ryde <user42@zip.com.au>
6600
6601 * help-mode.el (help-make-xrefs): For Info node links turn
6602 newlines into spaces. Link node names with newlines are matched
6603 by help-xref-info-regexp and buttonized, this change ensures they
6604 can be followed successfully with RET. (Bug#6206)
6605
6606 2010-05-20 Juri Linkov <juri@jurta.org>
6607
6608 * locate.el (locate): Use pop-to-buffer instead of
6609 switch-to-buffer-other-window. (Bug#6204)
6610
6611 2010-05-20 Juri Linkov <juri@jurta.org>
6612
6613 * replace.el (replace-highlight): Fix lazy-highlighting
6614 for `M-s w str M-% str RET'.
6615
6616 2009-12-15 Masatake YAMATO <yamato@redhat.com>
6617
6618 * isearch.el (isearch-yank-word-or-char): Pull next subword
6619 when `subword-mode' is activated. (Bug#6220)
6620
6621 2010-05-20 Mark A. Hershberger <mah@everybody.org>
6622
6623 * isearch.el (isearch-update-post-hook): New hook.
6624 (isearch-update): Use the new hook. (Bug#6225)
6625
6626 2010-05-20 Juri Linkov <juri@jurta.org>
6627
6628 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
6629 [f1], [help], and (char-to-string help-char) instead of "\C-h".
6630 (Bug#6222)
6631
6632 2010-05-20 Juri Linkov <juri@jurta.org>
6633
6634 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
6635 (Bug#6223)
6636
6637 2010-05-20 Juri Linkov <juri@jurta.org>
6638
6639 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
6640 FILE-NAME to read from the minibuffer when called interactively
6641 with prefix argument instead of using buffer-file-name.
6642 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
6643
6644 * dired.el: Update autoloads.
6645
6646 2010-05-20 Chong Yidong <cyd@stupidchicken.com>
6647
6648 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
6649 nxml-finish-element, for consistency with SGML mode.
6650
6651 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
6652 octave-close-block.
6653
6654 2010-05-20 Juanma Barranquero <lekktu@gmail.com>
6655
6656 * composite.el: Require cl when compiling.
6657 (reference-point-alist, compose-gstring-for-graphic)
6658 (compose-gstring-for-terminal): Fix typos in docstrings.
6659
6660 2010-05-19 Juri Linkov <juri@jurta.org>
6661
6662 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
6663 set-window-parameter.
6664
6665 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
6666
6667 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
6668 where appropriate.
6669 (tramp-maybe-open-connection): Use it.
6670
6671 2010-05-19 Eli Zaretskii <eliz@gnu.org>
6672
6673 * simple.el (move-end-of-line): Make sure we are at line beginning
6674 before backing up to end of previous line.
6675
6676 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
6677
6678 * password-cache.el (password-cache-remove): Fix docstring.
6679
6680 * net/secrets.el: Autoload the widget functions.
6681 (secrets-search-items, secrets-create-item)
6682 (secrets-get-attributes, secrets-expand-item): Attributes will be
6683 stored on the password database without leading ":", as all other
6684 clients do as well.
6685 (secrets-mode): Fix docstring.
6686 (secrets-show-secrets): Provide it as autoloaded command only when
6687 D-Bus support is available. Check existence of Secret Service API.
6688
6689 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
6690
6691 * indent.el (indent-region): Deactivate region (bug#6200).
6692
6693 2010-05-19 Glenn Morris <rgm@gnu.org>
6694
6695 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
6696
6697 2010-05-19 Kenichi Handa <handa@m17n.org>
6698
6699 * composite.el: Register compose-gstring-for-graphic in
6700 composition-function-table only for combining characters (Mn, Mc, Me).
6701
6702 2010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
6703
6704 * calc/calc-trail.el (calc-trail-isearch-forward)
6705 (calc-trail-isearch-backward): Ensure that the new window
6706 point is set correctly.
6707
6708 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
6709
6710 * subr.el (read-quoted-char): Resolve modifiers after key
6711 remapping (bug#6212).
6712
6713 2010-05-18 Michael Albinus <michael.albinus@gmx.de>
6714
6715 Add visualization code for secrets.
6716 * net/secrets.el (secrets-mode): New major mode.
6717 (secrets-show-secrets, secrets-show-collections)
6718 (secrets-expand-collection, secrets-expand-item)
6719 (secrets-tree-widget-after-toggle-function)
6720 (secrets-tree-widget-show-password): New defuns.
6721
6722 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
6723
6724 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
6725 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
6726 handled in smie-next-sexp.
6727 (smie-indent-calculate): Provide a starting indentation (so the
6728 recursion is well-founded ;-).
6729
6730 Fix handling of non-associative equal levels.
6731 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
6732 when it's not needed.
6733 (smie-op-left, smie-op-right): New functions.
6734 (smie-next-sexp): New function, extracted from smie-backward-sexp.
6735 Better handle equal levels to distinguish the associative case from
6736 the "multi-keyword construct" case.
6737 (smie-backward-sexp, smie-forward-sexp): Use it.
6738
6739 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
6740
6741 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
6742
6743 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
6744 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
6745
6746 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
6747
6748 Provide a simple generic indentation engine and use it for Prolog.
6749 * emacs-lisp/smie.el: New file.
6750 * progmodes/prolog.el (prolog-smie-op-levels)
6751 (prolog-smie-indent-rules): New var.
6752 (prolog-mode-variables): Use them to configure SMIE.
6753 (prolog-indent-line, prolog-indent-level): Remove.
6754
6755 2010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
6756
6757 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
6758 order before computing the averages.
6759
6760 2010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
6761
6762 * calc/calc-vec.el (calc-histogram):
6763 (calcFunc-histogram): Allow vectors as inputs.
6764 (math-vector-avg): New function.
6765
6766 * calc/calc-ext.el (math-group-float): Have the number of digits
6767 being grouped depend on the radix (Bug#6189).
6768
6769 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
6770
6771 * version.el (emacs-copyright, emacs-version): Don't define here,
6772 now that emacs.c defines it.
6773
6774 2010-05-15 Eli Zaretskii <eliz@gnu.org>
6775
6776 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
6777 "Describe Language Environment" menu item.
6778
6779 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
6780
6781 Bidi-sensitive movement with arrow keys.
6782 * subr.el (right-arrow-command, left-arrow-command): New functions.
6783
6784 * bindings.el (global-map): Bind them to right and left arrow keys.
6785
6786 Don't override standard definition of convert-standard-filename.
6787 * files.el (convert-standard-filename): Call
6788 w32-convert-standard-filename and dos-convert-standard-filename on
6789 the corresponding systems.
6790
6791 * w32-fns.el (w32-convert-standard-filename): Rename from
6792 convert-standard-filename. Doc fix.
6793
6794 * dos-fns.el (dos-convert-standard-filename): Doc fix.
6795 (convert-standard-filename): Don't defalias.
6796 (register-name-alist, make-register, register-value)
6797 (set-register-value, intdos): Obsolete aliases for the
6798 corresponding dos-* functions and variables.
6799 (dos-intdos): Add a doc string.
6800
6801 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
6802
6803 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
6804 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
6805 (math-compose-tex-func):
6806 * calc/calccomp.el (math-compose-expr):
6807 * calc/calc-ext.el (math-format-flat-expr-fancy):
6808 * calc/calc-store.el (calc-read-var-name):
6809 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
6810
6811 * calc/calc.el (var-π, var-φ, var-γ): New variables.
6812 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
6813 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
6814 (math-standard-units): Add units.
6815
6816 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
6817
6818 * progmodes/asm-mode.el (asm-mode):
6819 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
6820
6821 * pcomplete.el (pcomplete-completions-at-point): New function,
6822 extracted from pcomplete-std-complete.
6823 (pcomplete-std-complete): Use it.
6824
6825 2010-05-15 Glenn Morris <rgm@gnu.org>
6826
6827 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
6828 Remove references to CVS, RCS and Old directories.
6829
6830 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
6831
6832 * calc/calc-bin.el (math-format-twos-complement): Group digits when
6833 appropriate.
6834
6835 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
6836
6837 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
6838 (sh-mode-syntax-table): Give it a default value instead.
6839 (sh-header-marker): Make buffer-local.
6840 (sh-mode): Move make-local-variable to the corresponding setq.
6841 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
6842 Use complete-with-action.
6843
6844 * simple.el (prog-mode): New (abstract) major mode.
6845 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
6846 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
6847
6848 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
6849
6850 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
6851 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
6852 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
6853 (sql-make-alternate-buffer-name, sql-placeholders-filter)
6854 (sql-escape-newlines-filter, sql-input-sender)
6855 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
6856
6857 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
6858
6859 Add TeX open-block and close-block keybindings to SGML, and vice versa.
6860
6861 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
6862 latex-open-block and C-c / to latex-close-block.
6863
6864 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
6865 and C-c C-e to sgml-close-tag.
6866
6867 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
6868
6869 * net/tramp.el (with-progress-reporter): Create reporter object
6870 only when the message would be displayed. Handle nested calls.
6871 (tramp-handle-load, tramp-handle-file-local-copy)
6872 (tramp-handle-insert-file-contents, tramp-handle-write-region)
6873 (tramp-maybe-send-script, tramp-find-shell):
6874 Use `with-progress-reporter'.
6875 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
6876 Fix message text.
6877
6878 * net/tramp-smb.el (tramp-smb-handle-copy-file)
6879 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
6880 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
6881 Use `with-progress-reporter'.
6882
6883 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
6884
6885 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
6886 process everytime when spellchecking from the minibuffer (bug#6143).
6887
6888 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
6889
6890 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
6891
6892 * dos-fns.el: Add "dos-" prefix for namespace control.
6893 (convert-standard-filename): Define as alias for
6894 dos-convert-standard-filename but only if applicable.
6895
6896 2010-05-12 Alan Mackenzie <acm@muc.de>
6897
6898 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
6899 Push the mark at the start of these functions when appropriate.
6900
6901 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6902
6903 * minibuffer.el (completion-cycle-threshold): New custom var.
6904 (completion--do-completion): Use it.
6905 (minibuffer-complete): Use cycling if appropriate.
6906
6907 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
6908
6909 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
6910 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
6911
6912 2010-05-11 Juri Linkov <juri@jurta.org>
6913
6914 * scroll-all.el (scroll-all-check-to-scroll):
6915 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
6916
6917 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
6918
6919 * iimage.el (iimage-mode-map): Move initialization into declaration.
6920 (iimage-mode-buffer): Use with-silent-modifications.
6921 Simplify calling convention. Adjust callers.
6922 (iimage-mode): Don't run hook redundantly.
6923
6924 * minibuffer.el (completion-pcm--pattern->regex):
6925 Fix last change (bug#6160).
6926
6927 2010-05-10 Juri Linkov <juri@jurta.org>
6928
6929 Remove nodes visited during Isearch from the Info history.
6930 * info.el (Info-isearch-initial-history)
6931 (Info-isearch-initial-history-list): New variables.
6932 (Info-isearch-start): Record initial values of
6933 Info-isearch-initial-history and Info-isearch-initial-history-list.
6934 Add Info-isearch-end to isearch-mode-end-hook.
6935 (Info-isearch-end): New function.
6936
6937 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
6938
6939 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
6940 format string, in order to work around a bug in pdksh.
6941 Reported by Gilles Pion <gpion@lfdj.com>.
6942 (tramp-handle-verify-visited-file-modtime): Do not send a command
6943 when the connection is not established.
6944 (tramp-handle-set-file-times): Simplify the check for utc.
6945
6946 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
6947
6948 Fix use of `filter-buffer-substring' (rework previous change).
6949 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
6950 (cua-repeat-replace-region):
6951 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
6952 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
6953 (cua-cut-region-to-global-mark): Use it.
6954
6955 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
6956
6957 * progmodes/sql.el: Version 2.1.
6958 (sql-product-alist): Redesign structure of product info.
6959 (sql-product, sql-user, sql-server, sql-database): Safe variables.
6960 (sql-port, sql-port-history): New variables.
6961 (sql-interactive-product): New variable.
6962 (sql-send-terminator): New variable.
6963 (sql-imenu-generic-expression): Add "Types" imenu entry.
6964 (sql-oracle-login-params, sql-sqlite-login-params)
6965 (sql-mysql-login-params, sql-solid-login-params)
6966 (sql-sybase-login-params, sql-informix-login-params)
6967 (sql-ingres-login-params, sql-ms-login-params)
6968 (sql-postgres-login-params, sql-interbase-login-params)
6969 (sql-db2-login-params, sql-linter-login-params)
6970 (sql-oracle-scan-on): New variables.
6971 (sql-mode-map): Add C-c C-i to start interactive mode.
6972 (sql-mode-menu): Update existing menu entries.
6973 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
6974 (sql-mode-oracle-font-lock-keywords)
6975 (sql-mode-postgres-font-lock-keywords)
6976 (sql-mode-ms-font-lock-keywords)
6977 (sql-mode-sybase-font-lock-keywords)
6978 (sql-mode-informix-font-lock-keywords)
6979 (sql-mode-interbase-font-lock-keywords)
6980 (sql-mode-ingres-font-lock-keywords)
6981 (sql-mode-solid-font-lock-keywords)
6982 (sql-mode-mysql-font-lock-keywords)
6983 (sql-mode-sqlite-font-lock-keywords)
6984 (sql-mode-db2-font-lock-keywords)
6985 (sql-mode-linter-font-lock-keywords): Update initialization to
6986 reduce run-time complexity.
6987 (sql-add-product, sql-del-product): New functions.
6988 (sql-set-product-feature, sql-get-product-feature): New functions.
6989 (sql-product-font-lock): Update product API.
6990 (sql-add-product-keywords): New function.
6991 (sql-highlight-product): Update product API.
6992 (sql-help-list-products): New function.
6993 (sql-help): Dynamically lists free and non-free products.
6994 (sql-get-login): Correct bug in handling history and added
6995 prompt for port.
6996 (sql-copy-column): Copy without properties.
6997 (sqli-input-sender): Apply filters to SQLi input.
6998 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
6999 Implement as a filter.
7000 (sql-escape-newlines-filter): Implement as a filter.
7001 (sql-remove-tabs-filter): New function.
7002 (sql-send-magic-terminator): New function.
7003 (sql-send-string): Implement magic terminator.
7004 (sql-send-region): Use `sql-send-string'.
7005 (sql-interactive-mode): Use product API.
7006 (sql-product-interactive): Use product API.
7007 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
7008 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
7009 (sql-db2, sql-linter): Use `sql-product-interactive'.
7010 (sql-connect): New function.
7011 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
7012 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
7013 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
7014 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
7015 Use `sql-connect'.
7016
7017 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7018
7019 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
7020 New custom variable.
7021 (completion-pcm--string->pattern): Use it.
7022 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
7023 Make it handle any symbol as `any'.
7024 (completion-pcm--merge-completions): Extract common suffix for the new
7025 `prefix' symbol as well.
7026 (completion-substring--all-completions): Use the new `prefix' symbol.
7027
7028 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
7029
7030 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
7031 not bound.
7032 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
7033 (tramp-compat-funcall): New defmacro.
7034 (tramp-compat-line-beginning-position)
7035 (tramp-compat-line-end-position)
7036 (tramp-compat-temporary-file-directory)
7037 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
7038 (tramp-compat-copy-file, tramp-compat-copy-directory)
7039 (tramp-compat-delete-file, tramp-compat-delete-directory)
7040 (tramp-compat-number-sequence, tramp-compat-process-running-p)
7041 * net/tramp.el (top, with-progress-reporter)
7042 (tramp-rfn-eshadow-setup-minibuffer)
7043 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
7044 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
7045 (tramp-completion-mode-p, tramp-check-for-regexp)
7046 (tramp-open-connection-setup-interactive-shell)
7047 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
7048 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
7049 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
7050 * net/tramp-cmds.el (tramp-cleanup-all-connections)
7051 (tramp-reporter-dump-variable, tramp-load-report-modules)
7052 (tramp-append-tramp-buffers)
7053 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
7054
7055 * net/tramp-imap.el (top): Autoload `epg-make-context'.
7056
7057 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7058
7059 * progmodes/compile.el (compilation-buffer-modtime): Rename from
7060 buffer-modtime. Adjust users.
7061
7062 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
7063
7064 * international/mule.el (auto-coding-alist): Only purecopy
7065 car of each item, not the whole list (Bug#6083).
7066
7067 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
7068
7069 * progmodes/js.el (js-mode): Make paragraph variables local before
7070 calling c-setup-paragraph-variables (Bug#6071).
7071
7072 2010-05-08 Eli Zaretskii <eliz@gnu.org>
7073
7074 * composite.el (compose-region, reference-point-alist): Fix typos
7075 in the doc strings.
7076
7077 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
7078
7079 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
7080 gnuplot's "set" command.
7081
7082 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
7083
7084 * abbrev.el (last-abbrev-text): Doc fix.
7085 (abbrev-prefix-mark): Don't escape parenthesis.
7086
7087 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
7088
7089 * composite.el (find-composition): Doc fix.
7090
7091 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
7092
7093 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
7094 (sql-oracle-program, sql-sqlite-options)
7095 (sql-query-placeholders-and-send): Doc fixes.
7096 (sql-set-product, sql-interactive-mode): Reflow docstrings.
7097 (sql-imenu-generic-expression, sql-buffer)
7098 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
7099 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
7100 (sql-mode-sybase-font-lock-keywords)
7101 (sql-mode-informix-font-lock-keywords)
7102 (sql-mode-interbase-font-lock-keywords)
7103 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
7104 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
7105 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
7106 (sql-product-feature, sql-highlight-product)
7107 (comint-line-beginning-position, sql-rename-buffer)
7108 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
7109 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
7110 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
7111 Fix typos in docstrings.
7112
7113 2010-05-08 Juri Linkov <juri@jurta.org>
7114
7115 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
7116 property instead of `invisible' and `after-string' (bug#5998).
7117
7118 2010-05-08 Juri Linkov <juri@jurta.org>
7119
7120 * image-mode.el (image-mode-as-text): Fix typo in docstring.
7121
7122 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
7123
7124 * filecache.el (file-cache-add-directory-list)
7125 (file-cache-add-directory-recursively): Fix typos in docstrings.
7126
7127 2010-05-08 Kenichi Handa <handa@m17n.org>
7128
7129 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
7130 (gujarati-composable-pattern): Fix typo.
7131
7132 2010-05-08 Kenichi Handa <handa@m17n.org>
7133
7134 * language/indian.el (oriya-composable-pattern)
7135 (tamil-composable-pattern, malayalam-composable-pattern):
7136 Add two-part vowels to "v" (vowel sign).
7137
7138 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
7139
7140 * files.el (copy-directory): Handle symlinks (Bug#5982).
7141
7142 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
7143
7144 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
7145 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
7146 (Bug#5846).
7147
7148 2010-05-08 Glenn Morris <rgm@gnu.org>
7149
7150 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
7151
7152 * minibuffer.el (completion-at-point): Doc fix.
7153
7154 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7155
7156 * electric.el (Electric-command-loop): Minor tweak.
7157
7158 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
7159 better with dedicated windows.
7160
7161 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
7162
7163 * Version 23.2 released.
7164
7165 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
7166 Stefan Monnier <monnier@iro.umontreal.ca>
7167
7168 Highlight vendor specific properties.
7169 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
7170 (css-proprietary-property): New face.
7171 (css-font-lock-keywords): Use them.
7172
7173 2010-05-07 Eli Zaretskii <eliz@gnu.org>
7174
7175 * cus-start.el (all): Add native condition for tool-bar-* symbols.
7176
7177 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7178
7179 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
7180 * files.el (auto-mode-alist): Remove redundant entries.
7181
7182 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
7183 * simple.el (auto-save-mode): Move from files.el.
7184 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
7185
7186 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
7187
7188 * epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
7189
7190 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
7191
7192 * mail/binhex.el (binhex-decode-region-internal)
7193 * mail/uudecode.el (uudecode-decode-region-internal)
7194 * net/dns.el (dns-read-string-name, dns-write, dns-read)
7195 (dns-read-type, dns-query)
7196 * pgg-parse.el (pgg-parse-armor)
7197 * pgg.el (pgg-verify-region)
7198 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
7199 XEmacs.
7200
7201 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
7202
7203 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
7204
7205 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
7206
7207 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
7208 * emulation/cua-base.el (cua-repeat-replace-region):
7209 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
7210 (cua-cut-region-to-global-mark):
7211 Remove text properties with `set-text-properties'.
7212
7213 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
7214
7215 * net/tramp.el (top, with-progress-reporter):
7216 Use `symbol-function' inside `funcall'.
7217
7218 * net/tramp-compat.el (tramp-compat-file-attributes)
7219 (tramp-compat-delete-file, tramp-compat-delete-directory):
7220 Handle only `wrong-number-of-arguments' error.
7221
7222 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
7223 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
7224 inside `funcall'.
7225
7226 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7227
7228 * minibuffer.el (completion--sreverse, completion--common-suffix):
7229 New functions.
7230 (completion-pcm--merge-completions): Extract common suffix when safe.
7231
7232 * emacs-lisp/easy-mmode.el (define-minor-mode):
7233 Make :variable more flexible.
7234 * files.el (auto-save-mode): Use it to define using define-minor-mode.
7235
7236 2010-05-05 Juri Linkov <juri@jurta.org>
7237
7238 Add `slow' and `history' tags to the desktop data.
7239
7240 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
7241 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
7242 (Info-finder-find-node): Require `finder.el' to be able
7243 to restore node from the desktop.
7244 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
7245 data `Info-history' and `slow' tag in the assoc list.
7246 (Info-restore-desktop-buffer): Don't restore nodes with the
7247 `slow' tag. Restore `Info-history'.
7248
7249 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
7250
7251 Add FORCE argument to `delete-file'.
7252
7253 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
7254 forcing to delete the temporary file.
7255 (ange-ftp-delete-file): Add FORCE arg.
7256 (ange-ftp-rename-remote-to-remote)
7257 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
7258 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
7259 Force file deletion.
7260
7261 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
7262
7263 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
7264 (tramp-handle-make-symbolic-link, tramp-handle-load)
7265 (tramp-do-copy-or-rename-file-via-buffer)
7266 (tramp-do-copy-or-rename-file-directly)
7267 (tramp-do-copy-or-rename-file-out-of-band)
7268 (tramp-handle-process-file, tramp-handle-call-process-region)
7269 (tramp-handle-shell-command, tramp-handle-file-local-copy)
7270 (tramp-handle-insert-file-contents, tramp-handle-write-region)
7271 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
7272
7273 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
7274 (tramp-fish-handle-make-symbolic-link)
7275 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
7276
7277 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
7278 Use `tramp-compat-delete-file'.
7279
7280 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
7281 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
7282
7283 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
7284 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
7285
7286 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
7287 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
7288 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
7289 `tramp-compat-delete-file'.
7290
7291 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7292
7293 Minor cleanups.
7294 * subr.el (add-minor-mode): Use push.
7295 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
7296 * emulation/edt.el (edt-select-mode): Simplify.
7297
7298 Use define-minor-mode in more cases.
7299 * term/tvi970.el (tvi970-set-keypad-mode):
7300 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
7301 (normal-erase-is-backspace-mode):
7302 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
7303 (set-scroll-bar-mode-1): (Re)move to its sole caller.
7304 (get-scroll-bar-mode): New function.
7305 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
7306
7307 Use define-minor-mode for less obvious cases.
7308 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
7309 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
7310 * international/iso-ascii.el (iso-ascii-mode):
7311 * frame.el (auto-raise-mode, auto-lower-mode):
7312 * composite.el (global-auto-composition-mode): Use define-minor-mode.
7313
7314 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
7315
7316 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
7317 in order to see error messages for failed logins.
7318
7319 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
7320
7321 * diff.el (diff-sentinel):
7322
7323 * epg.el (epg--make-temp-file, epg-decrypt-string)
7324 (epg-verify-string, epg-sign-string, epg-encrypt-string):
7325
7326 * jka-compr.el (jka-compr-partial-uncompress)
7327 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
7328
7329 * server.el (server-sentinel): Use delete-file's new FORCE arg
7330 (Bug#6070).
7331
7332 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7333
7334 Use define-minor-mode where applicable.
7335 * view.el (view-mode):
7336 * type-break.el (type-break-query-mode)
7337 (type-break-mode-line-message-mode):
7338 * textmodes/reftex.el (reftex-mode):
7339 * term/vt100.el (vt100-wide-mode):
7340 * tar-mode.el (tar-subfile-mode):
7341 * savehist.el (savehist-mode):
7342 * ibuf-ext.el (ibuffer-auto-mode):
7343 * composite.el (auto-composition-mode):
7344 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7345 Use define-minor-mode.
7346 (vhdl-mode): Use static mode-line format.
7347 (vhdl-mode-line-update): Delete.
7348 (vhdl-create-mode-menu, vhdl-activate-customizations)
7349 (vhdl-hs-minor-mode): Don't bother calling it.
7350
7351 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
7352
7353 * simple.el (with-wrapper-hook): Move.
7354 (buffer-substring-filters): Mark obsolete.
7355 (filter-buffer-substring-functions): New variable.
7356 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
7357
7358 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
7359 Michael Albinus <michael.albinus@gmx.de>
7360
7361 Implement compression for inline methods.
7362
7363 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
7364 (tramp-copy-size-limit): Allow also nil.
7365 (tramp-inline-compress-commands): New defconst.
7366 (tramp-find-inline-compress, tramp-get-inline-compress)
7367 (tramp-get-inline-coding): New defuns.
7368 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
7369 replaced by `tramp-get-inline-coding'.
7370 (tramp-handle-file-local-copy, tramp-handle-write-region)
7371 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
7372
7373 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
7374
7375 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
7376 Remove unused functions.
7377
7378 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
7379 Set find-tag-default-function as a variable rather than a property.
7380
7381 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
7382 * progmodes/etags.el (tags-completion-at-point-function):
7383 Remove left over interactive spec. Add autoloading stub.
7384 (complete-tag): Use tags-completion-at-point-function.
7385
7386 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
7387
7388 * minibuffer.el (tags-completion-at-point-function): Fix return value.
7389
7390 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
7391
7392 * ido.el (ido-init-completion-maps): Remove C-v binding.
7393 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
7394
7395 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
7396
7397 * minibuffer.el (tags-completion-at-point-function): New function.
7398 (completion-at-point-functions): Use it.
7399
7400 * progmodes/etags.el (complete-tag): Revert last change.
7401
7402 2010-04-29 Alan Mackenzie <acm@muc.de>
7403
7404 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
7405 off-by-one error (in end of macro position).
7406
7407 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
7408
7409 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
7410 firefox is absent. Don't autoload.
7411 (browse-url-galeon-program): Don't autoload.
7412
7413 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
7414
7415 * bindings.el (complete-symbol): Move into minibuffer.el.
7416
7417 * minibuffer.el (complete-tag): Move from etags.el. If tags
7418 completion cannot be performed, return nil instead of signalling
7419 an error.
7420 (completion-at-point): Make it an alias for complete-symbol.
7421 (complete-symbol): Move from bindings.el, and replace with the
7422 body of completion-at-point.
7423
7424 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
7425
7426 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
7427
7428 * net/tramp.el (tramp-remote-selinux-p): New defun.
7429 (tramp-handle-file-selinux-context)
7430 (tramp-handle-set-file-selinux-context): Use it.
7431
7432 2010-04-28 Sam Steingold <sds@gnu.org>
7433
7434 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
7435 `safe-local-variable' if the value is a string or a symbol with
7436 the property `bug-reference-url-format'.
7437
7438 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
7439
7440 * progmodes/bug-reference.el (bug-reference-url-format):
7441 Revert 2010-04-27 change due to security risk.
7442
7443 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
7444
7445 Make it possible to locally disable a globally enabled mode.
7446 * simple.el (fundamental-mode): Run fundamental-mode-hook.
7447 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
7448 rather than kill-all-local-variables so it runs fundamental-mode-hook.
7449 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7450 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
7451 that subsequent hooks get a chance to disable it.
7452
7453 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
7454
7455 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7456 Avoid re-enabling a minor mode after the user turned the minor mode
7457 off if MODE-enable-in-buffers is run twice (typically once from
7458 fundamental-mode's after-change-major-mode-hook and a second time from
7459 run-mode-hook's own after-change-major-mode-hook).
7460
7461 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
7462
7463 2010-04-27 Sam Steingold <sds@gnu.org>
7464
7465 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
7466 `safe-local-variable' if the value is a string or a function, as
7467 documented and implemented on 2010-04-02.
7468
7469 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
7470
7471 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
7472 when method is 'kill.
7473
7474 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
7475
7476 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
7477 condition in default directory check.
7478 (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
7479 Kill ispell process when killing its associated buffer.
7480
7481 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
7482
7483 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
7484 but we aren't using it.
7485
7486 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
7487
7488 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
7489 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
7490
7491 2010-04-24 Glenn Morris <rgm@gnu.org>
7492
7493 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
7494 Ignore VCS-ignore files, and deleted nextstep preferences files.
7495 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
7496 (authors-ambiguous-files): New list.
7497 (authors-valid-file-names): Add some deleted files.
7498 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
7499 (authors-disambiguate-file-name): New function. (Bug#5501)
7500 (authors-canonical-file-name): Doc fix.
7501 Don't warn about obsolete files.
7502 (authors-canonical-file-name, authors-scan-el):
7503 Use authors-disambiguate-file-name.
7504
7505 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
7506 Add autoload cookies.
7507 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
7508 (generated-autoload-file): Set file-local value to "htmlfontify.el".
7509 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
7510 They have definitions / compiler macros in cl.el.
7511 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
7512 Replace manual autoloads with generated ones.
7513 (htmlfontify-unload-rgb-file): Remove autoload.
7514 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
7515
7516 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
7517
7518 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
7519 (byte-compile-setq-default): Optimize for the
7520 single-var case and don't call byte-compile-form in this case to avoid
7521 inf-loop with byte-compile-set-default.
7522
7523 * progmodes/compile.el (compilation-start): Abbreviate default directory.
7524
7525 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
7526
7527 Implement SELINUX backends.
7528
7529 * net/tramp.el (tramp-file-name-handler-alist):
7530 Add `file-selinux-context' and `set-file-selinux-context'.
7531 (tramp-handle-file-selinux-context)
7532 (tramp-handle-set-file-selinux-context): New defuns.
7533 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
7534 Handle PRESERVE-SELINUX-CONTEXT.
7535
7536 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
7537 Add `file-selinux-context' and `set-file-selinux-context'.
7538 (tramp-gvfs-handle-file-selinux-context)
7539 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
7540 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
7541
7542 * net/ange-ftp.el (ange-ftp-copy-file):
7543 * net/tramp-fish.el (tramp-fish-handle-copy-file):
7544 * net/tramp-imap.el (tramp-imap-handle-copy-file):
7545 * net/tramp-smb.el (tramp-smb-handle-copy-file):
7546 Add PRESERVE-SELINUX-CONTEXT.
7547
7548 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
7549
7550 Synchronize with Tramp repository.
7551
7552 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
7553 (tramp-action-process-alive, tramp-action-out-of-band)
7554 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
7555 (tramp-exists-file-name-handler): Fix docstring.
7556 (with-progress-reporter): New defmacro.
7557 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
7558 (tramp-maybe-open-connection): Use it.
7559
7560 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
7561
7562 Detect ssh 'ControlMaster' argument automatically in some cases.
7563
7564 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
7565 (tramp-default-method): Use it.
7566
7567 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
7568
7569 * net/tramp.el (tramp-handle-copy-file): Add new optional
7570 parameter `preserve-selinux-context'.
7571 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
7572
7573 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
7574
7575 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
7576 Ensure, that non remote files are still checked. Oops.
7577
7578 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
7579
7580 Fix Bug#5840.
7581
7582 * icomplete.el (icomplete-completions): Use `non-essential'.
7583
7584 * net/tramp.el (tramp-connectable-p): New defun.
7585 (tramp-handle-expand-file-name)
7586 (tramp-completion-handle-file-name-all-completions)
7587 (tramp-completion-handle-file-name-completion): Use it.
7588
7589 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
7590
7591 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
7592
7593 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
7594
7595 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
7596
7597 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
7598
7599 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
7600 is present.
7601
7602 * info.el (info-tool-bar-map): Add labels.
7603
7604 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
7605
7606 * cus-edit.el (custom-commands): Add labels for tool bar.
7607 (custom-buffer-create-internal, Custom-mode): Adjust for
7608 labels in custom-commands.
7609
7610 * dynamic-setting.el: Renamed from font-setting.el.
7611
7612 2010-04-21 John Wiegley <jwiegley@gmail.com>
7613
7614 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
7615 toggles the use of virtual buffers.
7616 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
7617 (ido-toggle-virtual-buffers): New function.
7618
7619 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
7620
7621 Use `define-derived-mode'; fix window selection; doc fixes.
7622 * play/tetris.el (tetris, tetris-update-speed-function)
7623 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
7624 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
7625 (tetris-rotate-next, tetris-end-game, tetris-start-game)
7626 (tetris-pause-game): Fix typos in docstrings.
7627 (tetris-mode-map, tetris-null-map):
7628 Move initialization into declaration.
7629 (tetris-mode): Define with `define-derived-mode';
7630 set show-trailing-whitespace to nil.
7631 (tetris): Prefer window already displaying the "*Tetris*" buffer.
7632
7633 2010-04-21 Karel Klíč <kklic@redhat.com>
7634
7635 * files.el (backup-buffer): Handle SELinux context, and return it
7636 if a backup was made by renaming.
7637 (backup-buffer-copy): Set SELinux context to the target file.
7638 (basic-save-buffer): Set SELinux context of the newly written file.
7639 (basic-save-buffer-1): Now it also returns any SELinux context.
7640 (basic-save-buffer-2): Set SELinux context of the newly created file,
7641 and return it.
7642 * net/tramp.el (tramp-file-name-for-operation):
7643 Add file-selinux-context.
7644
7645 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
7646
7647 Make the log-edit comments use RFC822 format throughout.
7648
7649 * vc.el (vc-checkin, vc-modify-change-comment):
7650 Adjust to new vc-start/finish-logentry.
7651 (vc-find-conflicted-file): New command.
7652 (vc-transfer-file): Adjust to new vc-checkin.
7653 (vc-next-action): Improve scoping.
7654
7655 * vc-hg.el (vc-hg-log-edit-mode): Remove.
7656 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
7657
7658 * vc-git.el (vc-git-log-edit-mode): Remove.
7659 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
7660 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
7661
7662 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
7663 (vc-start-logentry): Remove argument `extra'.
7664 (vc-finish-logentry): Remove extra args.
7665
7666 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
7667 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
7668 (vc-bzr-conflicted-files): New function.
7669
7670 * log-edit.el (log-edit-extra-flags)
7671 (log-edit-before-checkin-process): Remove.
7672 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
7673 (log-edit-headers-alist): New var.
7674 (log-edit-header-contents-regexp): New const.
7675 (log-edit-match-to-eoh): New function.
7676 (log-edit-font-lock-keywords): Use them.
7677 (log-edit): Insert a "Summary:" header as default.
7678 (log-edit-mode): Mark font-lock rules as case-insensitive.
7679 (log-edit-done): Cleanup headers.
7680 (log-view-process-buffer): Remove.
7681 (log-edit-extract-headers): New function to replace it.
7682
7683 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
7684
7685 * subr.el (default-direction-reversed): Remove obsolescence info.
7686
7687 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7688
7689 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
7690 windows/frames.
7691
7692 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
7693 I.e. include text after point in the completion region.
7694 Also, return nil when we're not after/in a symbol.
7695
7696 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
7697 default enable-multibyte-characters.
7698
7699 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
7700
7701 * international/mule.el: Help the user choose a valid coding-system.
7702 (read-buffer-file-coding-system): New function.
7703 (set-buffer-file-coding-system): Use it. Prompt the user if the
7704 coding-system cannot encode all the chars.
7705
7706 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
7707 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
7708 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
7709 Don't use *vc-bzr-shelve*.
7710
7711 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
7712
7713 Fix the version number for added files.
7714 * vc-hg.el (vc-hg-working-revision): Check if the file is
7715 registered after hg parent fails (Bug#5961).
7716
7717 2010-04-19 Glenn Morris <rgm@gnu.org>
7718
7719 * htmlfontify.el (htmlfontify-buffer)
7720 (htmlfontify-copy-and-link-dir): Autoload entry points.
7721
7722 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
7723
7724 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
7725 name relative to the project root (Bug#5960).
7726
7727 2010-04-19 Glenn Morris <rgm@gnu.org>
7728
7729 * vc-git.el (vc-git-print-log): Doc fix.
7730
7731 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
7732
7733 * ido.el (ido-file-internal): Fix 2009-12-02 change.
7734
7735 2010-04-19 Christoph <cschol2112@googlemail.com> (tiny change)
7736
7737 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
7738 default settings (Bug#5928).
7739
7740 2010-04-19 Glenn Morris <rgm@gnu.org>
7741
7742 * progmodes/fortran.el (fortran-match-and-skip-declaration):
7743 New function.
7744 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
7745
7746 2010-04-19 Kenichi Handa <handa@m17n.org>
7747
7748 * language/indian.el (malayalam-composable-pattern): Fix previous
7749 change (add U+0D4D "SIGN VIRAMA").
7750 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
7751 (tamil-composable-pattern): Fix typo in the regexp.
7752 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
7753 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
7754 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
7755
7756 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
7757
7758 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
7759 paragraph-separate (Bug#5821).
7760
7761 2010-04-19 Juri Linkov <juri@jurta.org>
7762
7763 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
7764
7765 * info.el (Info-find-node-2): Comment out code that skips
7766 breadcrumbs line.
7767 (Info-mouse-follow-link): New command.
7768 (Info-link-keymap): New keymap.
7769 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
7770 Return a string with links instead of inserting breadcrumbs
7771 to the Info buffer.
7772 (Info-fontify-node): Comment out code that inserts breadcrumbs.
7773 Instead of putting the `invisible' text property over the Info
7774 header, make an overlay over the Info header with the `invisible'
7775 property and `after-string' set to the string returned by
7776 `Info-breadcrumbs'.
7777
7778 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
7779
7780 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
7781 Reported by monkey@sandpframing.com.
7782
7783 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
7784
7785 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
7786 (tmm-get-keymap): Add key-binding shortcuts now that they're not
7787 available in the "keyseq cache" any more.
7788
7789 * custom.el (defcustom): Add edebug spec.
7790
7791 2010-04-18 Juri Linkov <juri@jurta.org>
7792
7793 Test for special mode-class in view-buffer instead of view-file (bug#5513).
7794
7795 * view.el (view-file, view-buffer): Move test for special mode-class
7796 from view-file to view-buffer.
7797
7798 * tar-mode.el (tar-extract): Turn if's into one cond
7799 like in arc-mode.el.
7800
7801 2010-04-18 Juri Linkov <juri@jurta.org>
7802
7803 Add 7z archive format support (bug#5475).
7804
7805 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
7806 (archive-7z-extract): New defcustom.
7807 (archive-find-type): Add magic string for 7z.
7808 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
7809 If `stderr-file' is non-nil, use `(t stderr-file)' for the
7810 `buffer' arg of `call-process'.
7811 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
7812 call the function `archive-7z-extract' with the variable
7813 `archive-7z-extract' let-bound to `archive-zip-extract'.
7814 (archive-7z-summarize, archive-7z-extract): New functions.
7815
7816 * international/mule.el (auto-coding-alist):
7817 * files.el (auto-mode-alist): Add 7z file extension.
7818
7819 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
7820
7821 * loadup.el: Setup hash-cons for pure data.
7822
7823 Fix duplicate entries in cedet's loaddefs.el files.
7824 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
7825 Should make most file-local generated-autoload-file unnecessary.
7826 (print-readably): Silence warnings.
7827 (autoload-find-destination): Take load-name as an arg to make sure
7828 it's the same as the one that will be in the file.
7829 (autoload-generate-file-autoloads): Adjust to above changes.
7830 Try to make the dataflow a bit simpler.
7831
7832 * cvs-status.el (cvs-refontify): Remove unused.
7833
7834 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
7835
7836 * calc/calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
7837
7838 * calc/calc-bin.el (calc-radix): Have the "O" option turn on
7839 twos-complement mode.
7840
7841 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
7842
7843 * calc/calc-ext.el (calc-init-extensions): Add keybinding for
7844 'calc-option'. Add `calc-option-prefix-help' to calc-help autoloads.
7845 (calc-inverse): Add "Option" to message, as appropriate.
7846 (calc-hyperbolic): Add "Option" to message, as appropriate.
7847 (calc-option, calc-is-option): New functions.
7848
7849 * calc/calc-help.el (calc-full-help): Add `calc-option-help'.
7850 (calc-option-prefix-help): New function.
7851
7852 * calc/calc-misc.el (calc-help): Add "Option" entry.
7853
7854 * calc/calc.el (calc-local-var-list): Add `calc-option-flag'.
7855 (calc-option-flag): New variable.
7856 (calc-do): Set `calc-option-flag to nil.
7857 (calc-set-mode-line): Add "Opt " as appropriate.
7858
7859 2010-04-16 Juri Linkov <juri@jurta.org>
7860
7861 Move scrolling commands from simple.el to window.el
7862 because their primitives are implemented in window.c.
7863
7864 * simple.el (scroll-error-top-bottom)
7865 (scroll-up-command, scroll-down-command, scroll-up-line)
7866 (scroll-down-line, scroll-other-window-down)
7867 (beginning-of-buffer-other-window, end-of-buffer-other-window):
7868 * window.el (scroll-error-top-bottom)
7869 (scroll-up-command, scroll-down-command, scroll-up-line)
7870 (scroll-down-line, scroll-other-window-down)
7871 (beginning-of-buffer-other-window, end-of-buffer-other-window):
7872 Move from simple.el to window.el because their primitives are
7873 implemented in window.c.
7874
7875 2010-04-16 Juri Linkov <juri@jurta.org>
7876
7877 * isearch.el (isearch-lookup-scroll-key): Check both
7878 `isearch-scroll' and `scroll-command' properties.
7879 (scroll-up, scroll-down): Remove `isearch-scroll' property.
7880
7881 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
7882
7883 * simple.el (scroll-up-command, scroll-down-command)
7884 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
7885
7886 2010-04-15 Juri Linkov <juri@jurta.org>
7887
7888 * simple.el (scroll-up-command, scroll-down-command)
7889 (scroll-up-line, scroll-down-line): Put `scroll-command'
7890 property on the these symbols. Remove them from
7891 `scroll-preserve-screen-position-commands'.
7892
7893 * mwheel.el (mwheel-scroll): Put `scroll-command' and
7894 `isearch-scroll' properties on the `mwheel-scroll' symbol.
7895 Remove it from `scroll-preserve-screen-position-commands'.
7896
7897 * isearch.el (isearch-allow-scroll): Doc fix.
7898
7899 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
7900
7901 * net/tramp.el (tramp-error-with-buffer): Don't show the
7902 connection buffer when we are in completion mode.
7903 (tramp-file-name-handler): Catch the error for some operations
7904 when we are in completion mode. This gives the user the chance to
7905 correct the file name in the minibuffer.
7906
7907 2010-04-15 Glenn Morris <rgm@gnu.org>
7908
7909 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
7910
7911 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
7912
7913 Simplify by using `define-derived-mode'.
7914 * info.el (Info-mode):
7915 * calendar/todo-mode.el (todo-mode):
7916 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
7917 (gomoku-mode-map): Move initialization into declaration.
7918
7919 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
7920
7921 Fix Bug#5840.
7922 * ido.el (ido-file-name-all-completions-1):
7923 * minibuffer.el (minibuffer-completion-help):
7924 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
7925
7926 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
7927
7928 * simple.el (non-essential): New var.
7929
7930 Add a new field `location' to bookmarks for non-file bookmarks.
7931 * bookmark.el (bookmark-location): Use the new field, if present.
7932 (bookmark-insert-location): Undo last change, not needed any more.
7933 * man.el (Man-bookmark-make-record):
7934 * woman.el (woman-bookmark-make-record): Add `location' field.
7935
7936 2010-04-14 Juri Linkov <juri@jurta.org>
7937
7938 * simple.el (scroll-error-top-bottom): New defcustom.
7939 (scroll-up-command, scroll-down-command): Use it. Doc fix.
7940
7941 * emulation/pc-select.el (pc-select-override-scroll-error):
7942 Obsolete in favor of `scroll-error-top-bottom'.
7943
7944 2010-04-14 Juri Linkov <juri@jurta.org>
7945
7946 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
7947 `scroll-up-command' and `M-v' to `scroll-down-command'.
7948
7949 * emulation/cua-rect.el (cua--init-rectangles):
7950 * forms.el (forms--change-commands):
7951 * image-mode.el (image-mode-map):
7952 Remap scroll-down-command and scroll-up-command
7953 in addition to scroll-down and scroll-up.
7954
7955 2010-04-14 Juri Linkov <juri@jurta.org>
7956
7957 * mwheel.el (scroll-preserve-screen-position-commands):
7958 Add mwheel-scroll to this list of commands.
7959
7960 * simple.el (scroll-preserve-screen-position-commands):
7961 Add scroll-up-command, scroll-down-command, scroll-up-line,
7962 scroll-down-line to this list of commands.
7963
7964 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
7965
7966 * obsolete/complete.el: Move from lisp/complete.el.
7967
7968 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
7969
7970 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
7971 to the minor mode function now turns the mode ON unconditionally.
7972
7973 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
7974
7975 * vc-dir.el (vc-dir-kill-line): New command.
7976 (vc-dir-mode-map): Bind it to C-k.
7977
7978 * bookmark.el (bookmark-insert-location): Handle a nil filename.
7979
7980 * woman.el: Add bookmark declarations to silence the compiler.
7981 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
7982 step to compatibility between man and woman bookmarks.
7983 Adjust for Man-default-bookmark-title renaming.
7984 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
7985
7986 * man.el: Add bookmark declarations to silence the compiler.
7987 (Man-name-local-regexp): Make it match NAME as well.
7988 (Man-getpage-in-background): Return the buffer.
7989 (Man-notify-when-ready): Use `case'.
7990 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
7991 Don't hardcode "NAME". Simplify.
7992 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
7993 Rename from Man-bookmark-make-record.
7994 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
7995 we have the actual man-args. Use Man-getpage-in-background rather
7996 than `man' since the arg is already processed. Let bookmark.el do the
7997 window handling. Only wait for the relevant process.
7998 Don't forget to autoload.
7999
8000 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
8001
8002 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8003
8004 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
8005 New functions.
8006 (woman-mode): Setup bookmark support.
8007
8008 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
8009 (man-bookmark-jump): New functions.
8010 (Man-mode): Setup bookmark support.
8011
8012 2010-04-10 Jari Aalto <jari.aalto@cante.net>
8013
8014 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
8015 recognize ssh-keygen prompt (Bug#2817).
8016
8017 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
8018
8019 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
8020
8021 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
8022
8023 Synchronize with Tramp repository.
8024
8025 * net/tramp.el (tramp-completion-function-alist)
8026 (tramp-file-name-regexp, tramp-chunksize)
8027 (tramp-local-coding-commands, tramp-remote-coding-commands):
8028 Fix docstring.
8029 (tramp-remote-process-environment): Use `format' instead of `concat'.
8030 (tramp-handle-directory-files-and-attributes)
8031 (tramp-get-remote-path): Use `copy-tree'.
8032 (tramp-handle-file-name-all-completions): Backward/ XEmacs
8033 compatibility: Use `completion-ignore-case' if
8034 `read-file-name-completion-ignore-case' does not exist.
8035 (tramp-do-copy-or-rename-file-directly): Do not use
8036 `tramp-handle-file-remote-p'.
8037 (tramp-do-copy-or-rename-file-out-of-band):
8038 Use `tramp-compat-delete-directory'.
8039 (tramp-do-copy-or-rename-file-out-of-band)
8040 (tramp-compute-multi-hops, tramp-maybe-open-connection):
8041 Use `format-spec-make'.
8042 (tramp-find-foreign-file-name-handler)
8043 (tramp-advice-make-auto-save-file-name)
8044 (tramp-set-auto-save-file-modes): Remove superfluous check for
8045 `stringp'. This is done inside `tramp-tramp-file-p'.
8046 (tramp-debug-outline-regexp): New defconst.
8047 (tramp-get-debug-buffer): Use it.
8048 (tramp-check-for-regexp): Use (forward-line 1).
8049 (tramp-set-auto-save-file-modes): Adapt version check.
8050
8051 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
8052 Wrap call of `featurep' for 2nd argument.
8053 (tramp-compat-make-temp-file): Simplify fallback implementation.
8054 (tramp-compat-copy-tree): Remove function.
8055 (tramp-compat-delete-directory): Provide implementation for older
8056 Emacsen.
8057
8058 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
8059 Do not use `tramp-fish-handle-file-attributes.
8060
8061 * net/trampver.el: Update release number.
8062
8063 2010-04-10 Glenn Morris <rgm@gnu.org>
8064
8065 * progmodes/compile.el (compilation-save-buffers-predicate):
8066 Add missing :version tag.
8067
8068 2010-04-09 Sam Steingold <sds@gnu.org>
8069
8070 * progmodes/compile.el (compilation-save-buffers-predicate):
8071 Remove the "autoload" cookie.
8072
8073 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
8074 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
8075 and `bug-reference-prog-mode' can be used in hooks directly.
8076
8077 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
8078
8079 Add --author support to git commit.
8080 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
8081 (vc-git-log-edit-mode): New minor mode.
8082 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
8083 New declarations.
8084
8085 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
8086
8087 * vc-hooks.el, vc-git.el: Improve documentation comments.
8088
8089 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
8090
8091 Fix some of the problems in defsubst* (bug#5728).
8092 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
8093 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
8094
8095 2010-04-07 Sam Steingold <sds@gnu.org>
8096
8097 * progmodes/compile.el (compilation-save-buffers-predicate):
8098 New custom variable.
8099 (compile, recompile): Pass it to `save-some-buffers'.
8100
8101 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
8102
8103 * wid-edit.el (widget-choose): Move cursor to the second line of
8104 the buffer (Bug#5695).
8105
8106 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
8107
8108 Add new VC methods: vc-log-incoming and vc-log-outgoing.
8109 * vc.el (vc-print-log-setup-buttons): New function split out from
8110 vc-print-log-internal.
8111 (vc-log-internal-common): New function, a parametrized version of
8112 vc-print-log-internal.
8113 (vc-print-log-internal): Just call vc-log-internal-common with the
8114 right arguments.
8115 (vc-incoming-outgoing-internal):
8116 (vc-log-incoming, vc-log-outgoing): New functions.
8117 (vc-log-view-type): New permanent local variable.
8118
8119 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
8120
8121 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
8122 of the dynamic bound vc-short-log.
8123 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
8124
8125 * vc-git.el (vc-git-log-outgoing): New function.
8126 (vc-git-log-view-mode): Use vc-log-view-type instead
8127 of the dynamic bound vc-short-log.
8128
8129 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
8130 of the dynamic bound vc-short-log. Highlight the tag.
8131 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
8132 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
8133 (vc-hg-incoming-mode): Remove.
8134 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
8135
8136 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
8137
8138 Fix default-directory for vc-root-diff.
8139 * vc.el (vc-root-diff): Bind default-directory to the root
8140 directory for the diff command.
8141
8142 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
8143
8144 * progmodes/verilog-mode.el (verilog-forward-sexp):
8145 (verilog-calc-1): Support "disable fork" and "fork wait" multi
8146 word keywords, suggested by Steve Pearlmutter.
8147 (verilog-pretty-declarations): Support lineup of declarations in
8148 port lists.
8149 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
8150 fix bug for /* / comments.
8151 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
8152 Speed up and simplfy as this is never called with a bound.
8153 (verilog-pretty-declarations): Enhance to line up declarations
8154 inside a parameter list, suggested by Alan Morgan.
8155 (verilog-pretty-expr): Tune assignment regular expression match
8156 string for corner cases; also use markers instead of character
8157 number as indent changes the later.
8158
8159 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
8160
8161 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
8162 as missing keyword.
8163 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
8164 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
8165 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
8166 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
8167 Tennant.
8168 (verilog-keywords):
8169 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
8170 1800-2009 keywords, including "global.".
8171
8172 2010-04-06 John Wiegley <jwiegley@gmail.com>
8173
8174 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
8175 appearing in buffer list (if a live buffer name matched a recentf
8176 file basename). Should use uniquify to offer a real solution.
8177
8178 2010-04-06 John Wiegley <jwiegley@gmail.com>
8179
8180 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
8181 comment to code, and add a :version tag.
8182 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
8183
8184 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
8185
8186 Enable recentf-mode if using virtual buffers.
8187 * ido.el (recentf-list): Declare for byte-compiler.
8188 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
8189 (ido-make-buffer-list): Simplify.
8190 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
8191
8192 2010-04-05 Juri Linkov <juri@jurta.org>
8193
8194 Scrolling commands which scroll a line instead of full screen.
8195 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
8196
8197 * simple.el (scroll-up-line, scroll-down-line): New commands.
8198 Put property isearch-scroll=t on them.
8199
8200 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
8201 Remove commands.
8202
8203 2010-04-05 Juri Linkov <juri@jurta.org>
8204
8205 Scrolling commands which do not signal errors at top/bottom.
8206 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
8207
8208 * simple.el (scroll-up-command, scroll-down-command): New commands.
8209 Put property isearch-scroll=t on them.
8210
8211 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
8212 `scroll-down-command' and [next] from `scroll-up' to
8213 `scroll-up-command'.
8214
8215 * emulation/cua-base.el: Put property CUA=move on
8216 `scroll-up-command' and `scroll-down-command'.
8217 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
8218 and `scroll-down-command' to `cua-scroll-down'.
8219
8220 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
8221
8222 * help.el (describe-mode): Return nil.
8223
8224 2010-04-04 John Wiegley <jwiegley@gmail.com>
8225
8226 * ido.el (ido-use-virtual-buffers): New variable to indicate
8227 whether "virtual buffer" support is enabled for IDO.
8228 (ido-virtual): Face used to indicate virtual buffers in the list.
8229 (ido-buffer-internal): If a buffer is chosen, and no such buffer
8230 exists, but a virtual buffer of that name does (which would be why
8231 it was in the list), recreate the buffer by reopening the file.
8232 (ido-make-buffer-list): If virtual buffers are being used, call
8233 `ido-add-virtual-buffers-to-list' before the make list hook.
8234 (ido-virtual-buffers): New variable which contains a copy of the
8235 current contents of the `recentf-list', albeit pared down for the
8236 sake of speed, and with proper faces applied.
8237 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
8238 create a list of "virtual buffers" to present to the user in
8239 addition to the currently open set. Note that this logic could
8240 get rather slow if that list is too large. With the default
8241 `recentf-max-saved-items' of 200, there is little speed penalty.
8242
8243 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
8244
8245 * font-lock.el: Require CL when compiling.
8246 (font-lock-turn-on-thing-lock): Use `case'.
8247
8248 2010-04-03 Eli Zaretskii <eliz@gnu.org>
8249
8250 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
8251 Zaretskii.
8252
8253 2010-04-02 Juri Linkov <juri@jurta.org>
8254
8255 * ehelp.el (electric-help-orig-major-mode):
8256 New buffer-local variable.
8257 (electric-help-mode): Set it to original major-mode. Doc fix.
8258 (with-electric-help): Use `electric-help-orig-major-mode' instead
8259 of (default-value 'major-mode). Doc fix.
8260 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
8261
8262 2010-04-02 Sam Steingold <sds@gnu.org>
8263
8264 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
8265 `vc-hg-command' with a list of flags.
8266
8267 * progmodes/bug-reference.el (bug-reference-bug-regexp):
8268 Also accept "patch" and "RFE".
8269 (bug-reference-fontify): `bug-reference-url-format' can also be a
8270 function to be able to handle the bug kind.
8271 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
8272
8273 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
8274
8275 * tmm.el (tmm-get-keymap): Check with symbolp before passing
8276 value to fboundp, it may not be a symbol.
8277
8278 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
8279
8280 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
8281
8282 2010-03-31 Juri Linkov <juri@jurta.org>
8283
8284 * simple.el (next-line, previous-line): Re-throw a signal
8285 with `signal' instead of using `ding'.
8286 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
8287
8288 2010-03-31 Juri Linkov <juri@jurta.org>
8289
8290 * simple.el (keyboard-escape-quit): Raise deselecting the active
8291 region higher than exiting the minibuffer.
8292 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
8293
8294 2010-03-31 Juri Linkov <juri@jurta.org>
8295
8296 * image.el (image-animated-p): Use `image-metadata' instead of
8297 `image-extension-data'. Get GIF extenstion data from metadata
8298 property `extension-data'.
8299
8300 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8301
8302 * simple.el (append-to-buffer): Simplify.
8303
8304 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
8305
8306 * textmodes/artist.el (artist-mode): Fix typo in docstring.
8307 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
8308
8309 2010-03-31 Kenichi Handa <handa@m17n.org>
8310
8311 * language/sinhala.el (composition-function-table): Fix regexp for
8312 the new Unicode specification.
8313
8314 * language/indian.el (devanagari-composable-pattern)
8315 (tamil-composable-pattern, kannada-composable-pattern)
8316 (malayalam-composable-pattern): Adjust for the new Unicode
8317 specification.
8318 (bengali-composable-pattern, gurmukhi-composable-pattern)
8319 (gujarati-composable-pattern, oriya-composable-pattern)
8320 (telugu-composable-pattern): New variables to cope with the new
8321 Unicode specification. Use them in composition-function-table.
8322
8323 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8324
8325 Make tmm-menubar work for the Buffers menu again (bug#5726).
8326 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
8327 vectors rather than cons cells, as used in menu-bar-update-buffers.
8328
8329 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
8330
8331 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
8332 (js-insert-and-indent): Revert 2009-08-15 change, restoring
8333 electric punctuation for "{}();,:" (Bug#5586).
8334
8335 * mail/sendmail.el (mail-default-directory): Doc fix.
8336
8337 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
8338
8339 * mail/sendmail.el (mail-default-directory): Doc fix.
8340
8341 2010-03-31 Eli Zaretskii <eliz@gnu.org>
8342
8343 * subr.el (version-regexp-alist, version-to-list)
8344 (version-list-<, version-list-=, version-list-<=)
8345 (version-list-not-zero, version<, version<=, version=): Doc fix.
8346 (Bug#5744).
8347
8348 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
8349
8350 * vc.el (vc-root-diff): Doc fix.
8351
8352 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
8353
8354 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
8355
8356 * simple.el (append-to-buffer): Fix last change.
8357
8358 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
8359
8360 * simple.el (append-to-buffer): Ensure that point is preserved if
8361 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
8362 (Bug#5749)
8363
8364 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8365
8366 * files.el (auto-mode-case-fold): Change default to t.
8367
8368 2010-03-30 Juri Linkov <juri@jurta.org>
8369
8370 * dired-x.el (dired-omit-mode): Doc fix.
8371
8372 2010-03-30 Juri Linkov <juri@jurta.org>
8373
8374 * replace.el (occur-accumulate-lines): Move occur-engine related
8375 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
8376 to be located after `occur-engine'.
8377
8378 2010-03-30 Juri Linkov <juri@jurta.org>
8379
8380 Make occur handle multi-line matches cleanly with context.
8381 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
8382
8383 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
8384 (occur-engine): Add local variables `ret', `prev-after-lines',
8385 `prev-lines'. Use more arguments for `occur-context-lines'.
8386 Set first elem of its returned list to `data', and the second elem
8387 to `prev-after-lines'. Don't print the separator line.
8388 In the end, print remaining context after-lines.
8389 (occur-context-lines): Add new arguments `begpt', `endpt',
8390 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
8391 after-lines of the previous match with before-lines of the
8392 current match and not overlap them. Return a list with two
8393 values: the output line and the list of context after-lines.
8394
8395 2010-03-30 Juri Linkov <juri@jurta.org>
8396
8397 * replace.el (occur-accumulate-lines): Fix a bug where the first
8398 context line at the beginning of the buffer was missing.
8399
8400 2010-03-30 Eli Zaretskii <eliz@gnu.org>
8401
8402 * files.el: Make bidi-display-reordering safe variable for boolean
8403 values.
8404
8405 2010-03-29 Phil Hagelberg <phil@evri.com>
8406 Chong Yidong <cyd@stupidchicken.com>
8407
8408 * subr.el: Extend progress reporters to perform "spinning".
8409 (progress-reporter-update, progress-reporter-do-update):
8410 Handle non-numeric value arguments.
8411 (progress-reporter--pulse-characters): New var.
8412
8413 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
8414
8415 * progmodes/compile.el (compilation-start): Fix regexp detection
8416 of initial cd command (Bug#5771).
8417
8418 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
8419
8420 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
8421
8422 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
8423
8424 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
8425 * progmodes/gdb-mi.el: Restore.
8426 * progmodes/gdb-ui.el: Remove.
8427 * progmodes/gud.el: Re-accommodate for gdb-mi.el.
8428
8429 2010-03-25 Glenn Morris <rgm@gnu.org>
8430
8431 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
8432 all dired buffers, even tramp ones. (Bug#5755)
8433
8434 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
8435
8436 Add "union tags" in mpc.el.
8437 * mpc.el: Remove backward compatibility code.
8438 (mpc-browser-tags): Change default.
8439 (mpc--find-memoize-union-tags): New var.
8440 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
8441 (mpc-cmd-find): Handle the case where the playlist does not exist.
8442 Handle union-tags.
8443 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
8444 (mpc-cmd-add): Use mpc-cmd-flush.
8445 (mpc-tagbrowser-tag-name): New fun.
8446 (mpc-tagbrowser-buf): Use it.
8447 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
8448
8449 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
8450
8451 Misc cleanup.
8452 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
8453 Use replace-regexp-in-string.
8454 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
8455 (makefile-imake-mode-syntax-table): Move init into defvar.
8456 (makefile-mode): Use define-derived-mode.
8457
8458 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
8459 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
8460 not be present any more.
8461
8462 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
8463
8464 * faces.el (set-face-attribute): Fix typo in docstring.
8465 (face-valid-attribute-values): Reflow docstring.
8466
8467 2010-03-24 Glenn Morris <rgm@gnu.org>
8468
8469 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
8470
8471 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
8472
8473 * indent.el (indent-for-tab-command): Doc fix.
8474
8475 2010-03-24 Alan Mackenzie <acm@muc.de>
8476
8477 * progmodes/cc-engine.el (c-remove-stale-state-cache):
8478 Fix off-by-one error. Fixes bug #5747.
8479
8480 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
8481
8482 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
8483 (image-dired-read-comment): Doc fix.
8484
8485 * json.el (json-object-type, json-array-type, json-key-type)
8486 (json-false, json-null, json-read-number):
8487 * minibuffer.el (completion-in-region-functions):
8488 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
8489 (cal-tex-cursor-week):
8490 * emacs-lisp/trace.el (trace-function):
8491 * eshell/em-basic.el (eshell/printnl):
8492 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
8493 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
8494 * obsolete/levents.el (allocate-event, event-key, event-object)
8495 (event-point, event-process, event-timestamp, event-to-character)
8496 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
8497 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
8498 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
8499 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
8500 (reftex-highlight-selection): Fix typos in docstrings.
8501
8502 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
8503
8504 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
8505
8506 2010-03-24 Glenn Morris <rgm@gnu.org>
8507
8508 * mail/rmail.el (rmail-highlight-face): Restore option deleted
8509 2008-02-13 without comment; mark it obsolete.
8510 (rmail-highlight-headers): Use rmail-highlight-face once more.
8511
8512 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
8513
8514 * woman.el (woman2-process-escapes): Only consume the newline if
8515 the filler character is on a line by itself (Bug#5729).
8516
8517 2010-03-24 Kenichi Handa <handa@m17n.org>
8518
8519 * language/indian.el (devanagari-composable-pattern): Add more
8520 consonants.
8521
8522 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
8523
8524 * net/trampver.el: Update release number.
8525
8526 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
8527
8528 * net/tramp.el (tramp-find-executable):
8529 Use `tramp-get-connection-buffer'. Make the regexp for checking
8530 output of "wc -l" more robust.
8531 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
8532 (tramp-open-connection-setup-interactive-shell): Remove workaround
8533 for OpenSolaris bug, it is not needed anymore.
8534
8535 2010-03-24 Glenn Morris <rgm@gnu.org>
8536
8537 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
8538
8539 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
8540
8541 * files.el (auto-mode-alist): Accept more verilog file patterns.
8542
8543 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
8544
8545 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
8546
8547 2010-03-24 Glenn Morris <rgm@gnu.org>
8548
8549 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
8550 log-edit-before-checkin-process.
8551
8552 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
8553
8554 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
8555
8556 * vc-dispatcher.el (vc-start-logentry): Doc fix.
8557 (log-view-process-buffer, log-edit-extra-flags): Declare.
8558
8559 * log-edit.el (log-edit-before-checkin-process): Doc fix.
8560
8561 2010-03-23 Sam Steingold <sds@gnu.org>
8562
8563 Fix bug#5620: recalculate all markers on compilation buffer
8564 modifications, not on file modifications.
8565 * progmodes/compile.el (buffer-modtime): New buffer-local variable:
8566 the buffer modification time, for buffers not associated with files.
8567 (compilation-mode): Create it.
8568 (compilation-filter): Update it.
8569 (compilation-next-error-function): Use it instead of
8570 `visited-file-modtime' for timestamp.
8571
8572 2010-03-23 Juri Linkov <juri@jurta.org>
8573
8574 Implement Occur multi-line matches.
8575 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
8576
8577 * replace.el (occur): Doc fix.
8578 (occur-engine): Set `begpt' to the beginning of the first line.
8579 Set `endpt' to the end of the last match line. At first, count
8580 line numbers between `origpt' and `begpt'. Split out code from
8581 `out-line' variable to new let-bindings `match-prefix' and
8582 `match-str'. In `out-line' add non-numeric prefix to all
8583 non-first lines of multi-line matches. Finally, count lines
8584 between `begpt' and `endpt' and add to `lines'.
8585
8586 2010-03-23 Juri Linkov <juri@jurta.org>
8587
8588 * replace.el (occur-accumulate-lines, occur-engine):
8589 Use `occur-engine-line' instead of duplicate code.
8590 (occur-engine-line): New function created from duplicate code
8591 in `occur-accumulate-lines' and `occur-engine'.
8592
8593 * replace.el (occur-engine-line): Add optional arg `keep-props'.
8594 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
8595
8596 2010-03-23 Juri Linkov <juri@jurta.org>
8597
8598 * finder.el: Remove TODO tasks.
8599
8600 * info.el (Info-finder-find-node): Add node "all"
8601 with all package info. Handle a list of multiple keywords
8602 separated by comma.
8603 (info-finder): In interactive use with a prefix argument,
8604 use `completing-read-multiple' to read a list of keywords
8605 separated by comma.
8606
8607 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
8608
8609 Add a new completion style `substring'.
8610 * minibuffer.el (completion-basic--pattern): New function.
8611 (completion-basic-try-completion, completion-basic-all-completions):
8612 Use it.
8613 (completion-substring--all-completions)
8614 (completion-substring-try-completion)
8615 (completion-substring-all-completions): New functions.
8616 (completion-styles-alist): New style `substring'.
8617
8618 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
8619
8620 Get rid of .elc files after removal of the corresponding .el.
8621 * Makefile.in (compile-clean): New target.
8622 (compile-main): Use it.
8623
8624 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
8625
8626 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
8627 don't do make there. When compiling with separate object dir, there
8628 is no Makefile there.
8629
8630 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
8631
8632 Get rid of the ELCFILES abomination, again.
8633 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
8634 (all, compile): Don't call compile-last.
8635 (compile-main): Build the "elcfiles" list dynamically.
8636 (compile-targets): New (internal) target.
8637
8638 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
8639
8640 * Makefile.in (top_srcdir): Define.
8641 (abs_top_builddir): Define.
8642 (srcdir): Don't append `/..'.
8643 (EMACS): Use ${abs_top_builddir}.
8644 (all, compile, compile-always, compile-last): Don't set emacswd.
8645 (update-subdirs, update-authors): Use $(top_srcdir) instead of
8646 $(srcdir).
8647 (lisp): Use $(srcdir) instead of @srcdir@.
8648
8649 2010-03-21 Juri Linkov <juri@jurta.org>
8650
8651 Fix message of multi-line occur regexps and multi-buffer header lines.
8652 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
8653
8654 * replace.el (occur-1): Don't display regexp if it is longer
8655 than window-width. Use `query-replace-descr' to display regexp.
8656 (occur-engine): Don't display regexp in the buffer header for
8657 multi-buffer occur. Display a separate header line with total
8658 match count and regexp for multi-buffer occur.
8659 Use `query-replace-descr' to display regexp.
8660
8661 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
8662
8663 * net/secrets.el: Fix parenthesis.
8664 (secrets-enabled): Fix parenthesis.
8665
8666 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
8667
8668 Use more relative file and directory names.
8669 * Makefile.in (EMACS): Arrange for it to work when we chdir.
8670 (setwins, setwins_almost, setwins_for_subdirs):
8671 Don't `cd'; output relative names.
8672 (all, compile, compile-always, compile-last): Set emacswd.
8673 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
8674 Just cd to the lisp source dir so we can use relative file names.
8675
8676 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
8677
8678 2010-03-20 Glenn Morris <rgm@gnu.org>
8679
8680 * textmodes/rst.el: Use faces for font-lock customization, and make the
8681 old -face variables obsolete.
8682 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
8683 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
8684 (rst-block-face, rst-external-face, rst-definition-face)
8685 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
8686 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
8687 Make obsolete.
8688 (rst-font-lock-keywords-function): Update for above changes.
8689
8690 2010-03-20 Juri Linkov <juri@jurta.org>
8691
8692 * s-region.el:
8693 * obsolete/s-region.el: Move to obsolete.
8694
8695 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
8696
8697 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
8698
8699 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
8700
8701 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
8702
8703 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
8704
8705 Add special markup processing for commit logs.
8706 * log-edit.el (log-edit-extra-flags): New variable.
8707 (log-edit): Add new argument MODE. Use that mode when non-nil
8708 instead of the log-view-mode.
8709 (log-view-process-buffer): New function.
8710
8711 * vc.el: Document that the checkin method takes optional
8712 arguments. Document new backend specific method: log-view-mode.
8713 (vc-default-log-edit-mode): New function.
8714 (vc-checkin): Use a backend specific log-view-mode.
8715 Pass extra arguments to the checkin method.
8716 (vc-modify-change-comment): Pass a dummy extra argument.
8717
8718 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
8719 log-edit.
8720 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
8721 (vc-finish-logentry): Process the log buffer before passing it
8722 down. Pass log-edit-extra-flags.
8723
8724 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
8725 command.
8726 (log-edit-extra-flags, log-edit-before-checkin-process):
8727 New declarations.
8728
8729 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
8730 command.
8731 (log-edit-extra-flags, log-edit-before-checkin-process):
8732 New declarations.
8733 (vc-hg-log-edit-mode): New derived mode.
8734
8735 * vc-arch.el (vc-arch-checkin):
8736 * vc-cvs.el (vc-cvs-checkin):
8737 * vc-git.el (vc-git-checkin):
8738 * vc-mtn.el (vc-mtn-checkin):
8739 * vc-rcs.el (vc-rcs-checkin):
8740 * vc-sccs.el (vc-sccs-checkin):
8741 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
8742
8743 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
8744
8745 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
8746 parent typo).
8747
8748 2010-03-19 Glenn Morris <rgm@gnu.org>
8749
8750 * password-cache.el (password-cache, password-cache-expiry): Autoload.
8751
8752 2010-03-18 Glenn Morris <rgm@gnu.org>
8753
8754 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
8755
8756 * replace.el (query-replace-history): Give it a doc string.
8757 (map-query-replace-regexp): Use query-replace-from-history-variable
8758 and query-replace-to-history-variable.
8759
8760 * mail/hashcash.el (declare-function): Remove duplicate definition.
8761
8762 * mail/emacsbug.el (report-emacs-bug-pretest-address):
8763 Make it an obsolete alias for report-emacs-bug-address.
8764 (message-strip-special-text-properties): Declare.
8765 (report-emacs-bug): Remove test for a pretest bug address.
8766 Combine message-mode-specific code.
8767
8768 * mail/supercite.el: Don't require sendmail.
8769 (mh-in-header-p): Declare rather than using with-no-warnings.
8770 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
8771 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
8772
8773 * calendar/cal-french.el: Convert to utf-8.
8774
8775 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
8776 Emacs scripts.
8777
8778 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
8779
8780 * net/secrets.el (secrets-enabled): New variable. Use it instead
8781 of a subfeature.
8782
8783 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
8784
8785 * net/secrets.el (top): Register the D-Bus signals only when the
8786 service "org.freedesktop.secrets" can be pinged.
8787 Provide subfeature `enabled'.
8788
8789 2010-03-14 Juri Linkov <juri@jurta.org>
8790
8791 Add finder unknown keywords.
8792
8793 * finder.el (finder-unknown-keywords): New function.
8794
8795 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
8796 to create a Finder node with unknown keywords.
8797
8798 2010-03-14 Juri Linkov <juri@jurta.org>
8799
8800 * finder.el (finder-compile-keywords): Replace `princ' with
8801 `prin1' on a list of symbols interned from keyword strings.
8802
8803 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
8804 a comma, then split keywords using a comma and optional whitespace.
8805 Otherwise, split by whitespace.
8806
8807 * complete.el:
8808 * face-remap.el:
8809 * log-view.el:
8810 * net/hmac-def.el:
8811 * net/hmac-md5.el:
8812 * net/netrc.el:
8813 * progmodes/mixal-mode.el: Fix keywords.
8814
8815 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
8816
8817 * Makefile.in (ELCFILES): Add net/secrets.elc.
8818
8819 * net/secrets.el: New file.
8820
8821 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
8822
8823 * facemenu.el (list-colors-display, list-colors-print): New arg
8824 callback. Use it to allow selecting colors.
8825
8826 * wid-edit.el (widget-image-insert): Insert image prop even if the
8827 current display is non-graphic.
8828 (widget-field-value-set): New fun.
8829 (editable-field): Use it.
8830 (widget-field-value-get): Clean up unused var.
8831 (widget-color-value-create, widget-color--choose-action):
8832 New funs. Allow using list-colors-display to choose color.
8833
8834 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
8835
8836 * cus-edit.el: Resort topmost custom groups.
8837 (custom-buffer-sort-alphabetically): Default to t.
8838 (customize-apropos): Use apropos-parse-pattern.
8839 (custom-search-field): New var.
8840 (custom-buffer-create-internal): Add custom-apropos search field.
8841 (custom-add-parent-links): Don't display parent doc.
8842 (custom-group-value-create): Don't sort top-level custom group.
8843 (custom-magic-value-create): Show visibility button before option name.
8844
8845 (custom-variable-state): New fun, from custom-variable-state-set.
8846 (custom-variable-state-set): Use it.
8847 (custom-group-value-create): Hide options with standard values
8848 using the :hidden-states property. Use progress reporter.
8849
8850 (custom-show): Simplify.
8851 (custom-visibility): Disable images by default.
8852 (custom-variable): New property :hidden-states.
8853 (custom-variable-value-create): Enable images for
8854 custom-visibility widgets. Use :hidden-states property to
8855 determine initial visibility.
8856
8857 * wid-edit.el (widget-image-find): Give images center ascent.
8858 (visibility): Add :on-image and :off-image properties.
8859 (widget-visibility-value-create): Use them.
8860
8861 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
8862
8863 * cus-edit.el (processes): Remove from development group.
8864 (oop, hypermedia): Delete group.
8865 (comm): Promote to top-level group.
8866
8867 * net/browse-url.el (browse-url):
8868 * net/xesam.el (xesam):
8869 * net/tramp.el (tramp):
8870 * net/goto-addr.el (goto-address):
8871 * net/ange-ftp.el (ange-ftp): Put in comm group.
8872
8873 * view.el (view): Remove from editing group.
8874
8875 * uniquify.el (uniquify): Put in files group.
8876
8877 * net/browse-url.el (browse-url):
8878 * ps-print.el (postscript): Put in external group.
8879
8880 * cus-edit.el (outlines):
8881 * textmodes/text-mode.el (text-mode-hook):
8882 * textmodes/table.el (table):
8883 * textmodes/picture.el (picture):
8884 * outline.el (outlines): Put in wp group.
8885
8886 * nxml/nxml-mode.el (nxml): Remove from wp group.
8887
8888 * net/tramp-imap.el (tramp-imap): Put in tramp group.
8889
8890 * mail/metamail.el (metamail): Remove from hypermedia group.
8891
8892 * cus-edit.el (abbrev):
8893 * whitespace.el (whitespace):
8894 * vcursor.el (vcursor):
8895 * reveal.el (reveal):
8896 * hl-line.el (hl-line): Put in convenience group.
8897
8898 * epg-config.el (epg): Put in data group.
8899
8900 * emulation/pc-select.el (pc-select): Put in emulations group.
8901
8902 * calculator.el (calculator): Put in applications group.
8903
8904 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
8905
8906 Add .dir-locals.el support for file-less buffers.
8907 * files.el (hack-local-variables): Split out code to apply local
8908 variable settings ...
8909 (hack-local-variables-apply): ... here. New function.
8910 (hack-dir-local-variables): Use the default directory for when the
8911 buffer does not have an associated file.
8912 (hack-dir-local-variables-non-file-buffer): New function.
8913 * diff-mode.el (diff-mode):
8914 * vc-annotate.el (vc-annotate-mode):
8915 * vc-dir.el (vc-dir-mode):
8916 * log-edit.el (log-edit-mode):
8917 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
8918
8919 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
8920
8921 Add support for shelving snapshots and for showing shelves.
8922 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
8923 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
8924 New functions.
8925 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
8926 (vc-bzr-extra-menu-map): Map them.
8927
8928 2010-03-11 Glenn Morris <rgm@gnu.org>
8929
8930 * cus-edit.el (customize-changed-options-previous-release):
8931 Bump to 23.1.
8932
8933 * image.el (image-animate-max-time): Fix :version tag.
8934
8935 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
8936
8937 * Branch for 23.2.
8938
8939 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
8940
8941 * vc-git.el (vc-git-revision-table): Include remote branches.
8942
8943 2010-03-10 Kim F. Storm <storm@cua.dk>
8944
8945 Animated image API.
8946 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
8947
8948 * image.el (image-animate-max-time): New defcustom.
8949 (image-animated-types): New defconst.
8950 (create-animated-image, image-animate-timer)
8951 (image-animate-start, image-animate-stop, image-animate-timeout)
8952 (image-animated-p): New functions.
8953
8954 * image-mode.el (image-toggle-display-image):
8955 Replace `create-image' with `create-animated-image'.
8956
8957 2010-03-09 Miles Bader <miles@gnu.org>
8958
8959 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
8960 instead of "format:"; this ensures that the output is
8961 newline-terminated.
8962
8963 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
8964
8965 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
8966 that all errors are caught, and that the return value is always a
8967 list (Bug#5692).
8968
8969 2010-03-08 Kenichi Handa <handa@m17n.org>
8970
8971 * language/misc-lang.el (windows-1256): New coding system.
8972 (cp1256): New alias of windows-1256 (bug#5690).
8973
8974 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
8975
8976 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
8977 call to rfc822-bad-address. (Bug#5692)
8978
8979 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
8980
8981 * vc-git.el (vc-git-annotate-extract-revision-at-line):
8982 Use vc-git-root as default directory for revision path (Bug#5657).
8983
8984 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
8985
8986 * calculator.el (calculator): Don't bind split-window-keep-point
8987 (Bug#5674).
8988
8989 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
8990
8991 * vc-git.el: Re-flow to fit into 80 columns.
8992 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
8993 Remove spurious `quote' element in each case alternative.
8994 (vc-git-show-log-entry): Use prog1.
8995 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
8996
8997 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
8998
8999 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
9000
9001 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
9002
9003 * macros.el (insert-kbd-macro): Look up keyboard macro using the
9004 definition, not the name (Bug#5481).
9005
9006 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
9007
9008 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
9009 argument with a local variable. (Bug#5670)
9010
9011 2010-03-02 Juri Linkov <juri@jurta.org>
9012
9013 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
9014
9015 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
9016
9017 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
9018 error when FILENAME and NEWNAME are existing remote directories.
9019
9020 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
9021 parameter DIR-FLAG.
9022
9023 2010-03-02 Glenn Morris <rgm@gnu.org>
9024
9025 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
9026 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
9027
9028 2010-03-01 Kenichi Handa <handa@m17n.org>
9029
9030 * language/burmese.el (burmese-composable-pattern): Rename from
9031 myanmar-composable-pattern.
9032
9033 * international/characters.el (script-list):
9034 * international/fontset.el (script-representative-chars):
9035 Change myanmar to burmese.
9036 (otf-script-alist): Likewise.
9037 (setup-default-fontset): Likewise. Re-fix :otf spec.
9038
9039 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
9040
9041 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
9042
9043 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
9044
9045 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
9046
9047 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
9048
9049 * net/tramp.el (tramp-handle-write-region): START can be a string.
9050 Take care in the checks. Reported by Dan Davison
9051 <davison@stats.ox.ac.uk>.
9052
9053 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
9054
9055 * net/dbus.el (dbus-introspect, dbus-get-property)
9056 (dbus-set-property, dbus-get-all-properties):
9057 Use `dbus-call-method' when noninteractive. (Bug#5645)
9058
9059 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
9060
9061 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
9062 * emacs-lisp/elint.el (elint-add-required-env):
9063 * calendar/icalendar.el (icalendar--add-diary-entry):
9064 * calc/calcalg2.el (math-tracing-integral):
9065 * files.el (recover-session-finish): Use with-current-buffer
9066 instead of save-excursion.
9067
9068 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
9069
9070 Fix in-buffer completion when after-change-functions modify the buffer.
9071 * minibuffer.el (completion--replace): New function.
9072 (completion--do-completion): Use it and use relative movement.
9073
9074 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
9075
9076 * international/fontset.el (setup-default-fontset): Fix :otf spec.
9077
9078 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
9079
9080 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
9081 Allow the characters _<> in the stack entry (Bug#5653).
9082
9083 2010-02-26 Kenichi Handa <handa@m17n.org>
9084
9085 * language/burmese.el: Fix entries in composition-function-table.
9086 (myanmar-composable-pattern): New variable.
9087
9088 * international/fontset.el (setup-default-fontset): Add an entry
9089 for myanmar.
9090
9091 * international/characters.el (script-list): Add Myanmar
9092 Extended-A.
9093
9094 2010-02-26 Glenn Morris <rgm@gnu.org>
9095
9096 * custom.el (custom-initialize-delay): Doc fix.
9097
9098 * mail/sendmail.el (send-mail-function): Autoload the call
9099 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
9100
9101 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
9102
9103 * files.el (hack-local-variables-filter): For eval forms, also
9104 check safe-local-variable-p (Bug#5636).
9105
9106 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
9107
9108 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
9109 setting the modes by `ignore-errors'. It might fail, for example
9110 if the file is not owned by the user but the group.
9111 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
9112
9113 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
9114
9115 * files.el (directory-listing-before-filename-regexp): Use
9116 stricter matching for iso-style dates, to avoid false matches with
9117 date-like filenames (Bug#5597).
9118
9119 * htmlfontify.el (htmlfontify): Doc fix.
9120
9121 * eshell/eshell.el (eshell): Doc fix.
9122
9123 * startup.el (fancy-about-screen): In mode-line, apply
9124 mode-line-buffer-id face only to the buffer name (Bug#5613).
9125
9126 2010-02-20 Kevin Ryde <user42@zip.com.au>
9127
9128 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9129 In `watcom' anchor regexp to start of line, to avoid slowness
9130 (Bug#5599).
9131
9132 2010-02-20 Eli Zaretskii <eliz@gnu.org>
9133
9134 * subr.el (remove-yank-excluded-properties): Explain in a comment
9135 why `category' property is removed.
9136
9137 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
9138
9139 * isearch.el (isearch-update-post-hook, isearch-update): Revert
9140 2010-02-17 change.
9141
9142 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
9143
9144 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
9145 (icalendar--convert-weekly-to-ical)
9146 (icalendar--convert-yearly-to-ical)
9147 (icalendar--convert-block-to-ical)
9148 (icalendar--convert-cyclic-to-ical)
9149 (icalendar--convert-anniversary-to-ical): Take care of time
9150 specifications where hour has 1-digit only (Bug#5549).
9151
9152 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
9153
9154 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
9155 of disassemble output in GDB 7.1.
9156
9157 2010-02-19 Glenn Morris <rgm@gnu.org>
9158
9159 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
9160 property. (Bug#5593)
9161
9162 2010-02-18 Sam Steingold <sds@gnu.org>
9163
9164 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
9165
9166 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
9167
9168 Use abbreviated file names in bookmarks (bug#5591).
9169 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
9170 calls to expand-file-name.
9171 (bookmark-relocate): Use abbreviated file names in bookmarks.
9172 (bookmark-load): Use abbreviated file names in messages.
9173
9174 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
9175
9176 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
9177 expand "." and "..". Reported by Thierry Volpiatto
9178 <thierry.volpiatto@gmail.com>.
9179
9180 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
9181
9182 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
9183 permissions of the temporary file to "0600". In case the remote
9184 file has no read permissions for the owner, there might be
9185 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
9186
9187 22010-02-18 Glenn Morris <rgm@gnu.org>
9188
9189 * emacs-lisp/authors.el (authors-renamed-files-alist):
9190 Add entries for INSTALL.CVS.
9191
9192 2010-02-17 Mark A. Hershberger <mah@everybody.org>
9193
9194 * vc-bzr.el: Fix typo in Known Bugs section.
9195
9196 * isearch.el (isearch-update-post-hook): New hook.
9197 (isearch-update): Use the new hook.
9198
9199 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
9200
9201 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
9202 Fix errors in copying directories.
9203 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
9204 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
9205 (tramp-handle-delete-file)
9206 (tramp-handle-dired-recursive-delete-directory)
9207 (tramp-handle-write-region): Flush also the cache for the upper
9208 directory.
9209
9210 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
9211
9212 * simple.el (save-interprogram-paste-before-kill): Doc fix.
9213
9214 * cus-edit.el (hardware): Doc fix.
9215
9216 * man.el (man): Add to external custom group.
9217
9218 * delim-col.el (columns): Move to wp custom group.
9219
9220 * doc-view.el (doc-view): Add to data custom group.
9221
9222 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
9223
9224 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
9225 by ispell-parse-output (Bug#5575).
9226
9227 2010-02-16 Kenichi Handa <handa@m17n.org>
9228
9229 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
9230 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
9231 (skkdic-convert): Use `euc-japan' coding system for writing.
9232
9233 2010-02-16 Glenn Morris <rgm@gnu.org>
9234
9235 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
9236 tex-main-file before using it. (Bug#5562)
9237
9238 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
9239
9240 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
9241 warnings, since it is annoying for the user to see them each time he
9242 runs the code.
9243
9244 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
9245
9246 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
9247 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
9248 instead of PROC for caching "first-password-request". Otherwise,
9249 new processes would not profit from passwords already entered.
9250
9251 * net/tramp-cache.el (tramp-dump-connection-properties):
9252 Don't save "first-password-request" property.
9253
9254 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
9255
9256 * outline.el (outline-head-from-level):
9257 * simple.el (with-wrapper-hook):
9258 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
9259 (elint-defun, elint-buffer-env, elint-top-form-logged)
9260 (elint-unbound-variable):
9261 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
9262 Fix typos in docstrings.
9263
9264 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
9265
9266 * files.el (insert-directory): When WILDCARD-REGEXP and
9267 FULL-DIRECTORY-P are nil, insert the file entry instead of the
9268 whole directory. (Bug#5551)
9269
9270 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
9271 dired's alignment sanity. (Bug#5516)
9272
9273 2010-02-14 Juri Linkov <juri@jurta.org>
9274
9275 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
9276 Remove remaining ^H with their preceding chars. (Bug#5566)
9277
9278 2010-02-13 Glenn Morris <rgm@gnu.org>
9279
9280 * simple.el (transpose-subr): Give it a doc-string.
9281
9282 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
9283 Doc fixes.
9284
9285 2010-02-12 Juri Linkov <juri@jurta.org>
9286
9287 * arc-mode.el (archive-unique-fname): Make directories for nested
9288 archives. (Bug#5540)
9289
9290 2010-02-12 Juri Linkov <juri@jurta.org>
9291
9292 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
9293
9294 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
9295
9296 * subr.el (copy-overlay): Handle deleted overlays.
9297
9298 * man.el (Man-completion-table): Don't signal an error if we can't run
9299 manual-program (bug#4056).
9300
9301 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
9302
9303 * textmodes/artist.el (artist-mt): Fix typos in docstring.
9304
9305 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9306
9307 * info.el (Info-bookmark-jump): Simplify.
9308
9309 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
9310 (bookmark-default-handler): Accept new bookmark field `buffer'.
9311
9312 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
9313
9314 * iswitchb.el (iswitchb-completions): Revert last change.
9315
9316 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
9317
9318 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
9319 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
9320 This prevents file names like "~/" being listed literally.
9321
9322 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
9323
9324 * term/xterm.el (xterm-maybe-set-dark-background-mode):
9325 Remove dead code. (Bug#5546)
9326
9327 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
9328
9329 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
9330 correctly (Bug#5548).
9331
9332 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
9333
9334 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
9335 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
9336
9337 2010-02-08 Kenichi Handa <handa@m17n.org>
9338
9339 * international/mule-util.el (with-coding-priority): Add autoload
9340 cookie for putting `lisp-indent-function'.
9341
9342 2010-02-07 Glenn Morris <rgm@gnu.org>
9343
9344 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
9345 Move F2003 named interfaces from keywords-2 to keywords-1, and
9346 use function-name-face rather than constant-face.
9347 Simplify "abstract interface" regexp.
9348
9349 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
9350
9351 * eshell/esh-util.el (eshell-file-attributes): New optional arg
9352 ID-FORMAT. Pass it to `file-attributes'.
9353
9354 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
9355
9356 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
9357
9358 * faces.el (set-face-attribute): Allow calling
9359 internal-set-lisp-face-attribute with 'unspecified family and
9360 foundry argument (Bug#5536).
9361
9362 2010-02-07 Glenn Morris <rgm@gnu.org>
9363
9364 * progmodes/f90.el (f90-font-lock-keywords-2)
9365 (f90-looking-at-type-like, f90-looking-at-program-block-end):
9366 Handle F2003 named interfaces.
9367
9368 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
9369
9370 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
9371 beg and end before calling c-get-state-before-change-functions.
9372
9373 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
9374
9375 * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
9376
9377 2010-02-05 Juri Linkov <juri@jurta.org>
9378
9379 * doc-view.el (doc-view-mode):
9380 * image-mode.el (image-mode): Put property mode-class=special.
9381 (Bug#4896)
9382
9383 2010-02-05 Mark A. Hershberger <mah@everybody.org>
9384
9385 * vc-svn.el (vc-svn-revision-table): New function.
9386
9387 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
9388
9389 * net/ange-ftp.el (ange-ftp-insert-directory):
9390 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
9391 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
9392 Handle also directories. (Bug#5478)
9393
9394 2010-02-05 Glenn Morris <rgm@gnu.org>
9395
9396 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
9397
9398 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
9399
9400 * startup.el (command-line-1): Convert options beginning with a
9401 single dash as well (Bug#5519).
9402
9403 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
9404
9405 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
9406 * minibuffer.el (completion-initials-expand): Only check the presence
9407 of delims *within* the boundaries, since otherwise the / delim is
9408 always found for files.
9409
9410 Fix up various corner case problems.
9411 * doc-view.el (doc-view-last-page-number): New function.
9412 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
9413 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
9414 (doc-view-kill-proc): Avoid inf-loop in freak cases.
9415 (doc-view-reconvert-doc): Use the new recursive delete-directory.
9416 (doc-view-convert-current-doc): Don't create the resolution.el file
9417 here any more.
9418 (doc-view-pdf/ps->png): Do it here instead.
9419 (doc-view-already-converted-p): Check that resolution.el is present.
9420 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
9421 windows that are not yet showing images.
9422
9423 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
9424
9425 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
9426 `dired-uncache' for every elemnt which is an absolute file name.
9427
9428 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
9429 directory, handle its directory component.
9430 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
9431 function is called permanently and creates noise, otherwise.
9432
9433 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
9434 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
9435 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
9436
9437 2010-02-04 David Burger <dburger@google.com> (tiny change)
9438
9439 * macros.el (apply-macro-to-region-lines):
9440 Minor simplification. (Bug#5485)
9441
9442 2010-02-04 Glenn Morris <rgm@gnu.org>
9443
9444 * mail/rmail.el (rmail-show-message-1): Handle malformed
9445 quoted-printable text. (Bug#5441)
9446
9447 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
9448
9449 * simple.el (visual-line-mode): Capitalize lighter.
9450
9451 2010-02-03 John Wiegley <jwiegley@gmail.com>
9452
9453 * iswitchb.el (iswitchb-completions): Add bookmark files to the
9454 list of files considered for "virtual buffer" completions.
9455
9456 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
9457
9458 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
9459 also in case of (and (not full) (not wildcard)). This is needed
9460 when dired is called with a list of files, which are not in
9461 `default-directory'. (Bug#5478)
9462
9463 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
9464
9465 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
9466
9467 2010-02-02 Juri Linkov <juri@jurta.org>
9468
9469 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
9470 from unidiff to allow function-line after @@.
9471
9472 2010-02-02 Juri Linkov <juri@jurta.org>
9473
9474 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
9475 '(RCS SCCS) with inverted condition.
9476
9477 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
9478
9479 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
9480 messages.
9481
9482 2010-02-01 Juri Linkov <juri@jurta.org>
9483
9484 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
9485 compare with "pkunzip" and "pkzip" instead of only "pkzip".
9486 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
9487 only when (car archive-zip-extract) is "unzip". (Bug#5475)
9488
9489 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
9490
9491 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
9492 (doc-view-revert-buffer): New command.
9493 (doc-view-mode-map): Use it.
9494
9495 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
9496
9497 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
9498 pending merge is detected.
9499
9500 2010-01-31 Juri Linkov <juri@jurta.org>
9501
9502 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
9503 beginning of interactive spec like all other grep commands do.
9504 Put "all" in front of "gz". (Bug#5260)
9505
9506 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
9507
9508 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
9509
9510 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
9511
9512 * dirtrack.el (dirtrack): Warn instead of signalling error if the
9513 regexp is incorrect (Bug#5476).
9514
9515 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
9516
9517 * net/tramp.el (tramp-handle-insert-directory): Handle also
9518 symlinks, when FILENAME is not in `default-directory'.
9519
9520 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
9521
9522 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
9523 FILE is not in `default-directory'. (Bug#5478)
9524
9525 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
9526 of SWITCHES. Handle the case, FILENAME is not in
9527 `default-directory'. (Bug#5478)
9528 (tramp-register-file-name-handlers): Add safe-magic property.
9529
9530 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
9531
9532 * arc-mode.el (archive-zip-extract): Quote the argument passed to
9533 unzip (Bug#5475).
9534
9535 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
9536
9537 * progmodes/flymake.el (flymake-allowed-file-name-masks)
9538 (flymake-master-make-header-init): Add other C++ filename masks.
9539 (flymake-find-possible-master-files)
9540 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
9541
9542 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
9543
9544 Fix some busybox annoyances.
9545
9546 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
9547 not responding." string.
9548 (tramp-open-connection-setup-interactive-shell): Dump stty
9549 settings. Enable "neveropen" arg for all `tramp-send-command'
9550 calls. Handle "=" in variable values properly.
9551 (tramp-find-inline-encoding): Raise an error, when no encoding is
9552 found.
9553 (tramp-wait-for-output): Check, whether PROC buffer is available.
9554 Remove spurious " ^H" sequences, sent by busybox.
9555 (tramp-get-ls-command): Suppress coloring, if possible.
9556
9557 2010-01-28 Glenn Morris <rgm@gnu.org>
9558
9559 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
9560
9561 * log-edit.el (log-edit-strip-single-file-name): Add missing
9562 :safe, :group, and :version tags.
9563
9564 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
9565
9566 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
9567 buffers. (Bug#5477)
9568
9569 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
9570
9571 * files.el (delete-directory): Handle moving to trash without
9572 first doing recursion (Bug#5436).
9573
9574 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
9575
9576 * vc-hooks.el (vc-path): Mark as obsolete.
9577
9578 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
9579
9580 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
9581 names too.
9582
9583 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
9584 for the short log.
9585 (vc-bzr-log-view-mode): Adjust regexp for the above change.
9586
9587 2010-01-25 Mark A. Hershberger <mah@everybody.org>
9588
9589 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
9590
9591 * vc-bzr.el (vc-bzr-revision-table): New function.
9592
9593 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
9594
9595 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
9596 diff-index command. This requires at least git-1.5.5. (Bug#1589).
9597
9598 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
9599
9600 Remove support for adding --signoff on commit.
9601 Future support will use an incompatible generic mechanism.
9602 * vc-git.el (vc-git-add-signoff): Remove variable.
9603 (vc-git-toggle-signoff): Remove function.
9604 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
9605
9606 * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
9607 from xterm-set-background-mode. Return t if the background mode
9608 was set.
9609 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
9610 earlier, call it again in case the background mode has changed.
9611
9612 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
9613
9614 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
9615 (Bug#3541).
9616
9617 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
9618
9619 * emacs-lisp/assoc.el (aelement): Doc fix.
9620 (aput, adelete, amake): Use lexical-let (Bug#5450).
9621
9622 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
9623
9624 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
9625 is the same as subprogram call, not declaration. (Bug#5435).
9626
9627 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
9628
9629 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
9630 (tramp-smb-maybe-open-connection): Use it.
9631
9632 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
9633
9634 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
9635
9636 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
9637
9638 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
9639 just because we see "encoding: 8bit".
9640 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
9641
9642 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
9643
9644 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
9645
9646 2010-01-22 Eli Zaretskii <eliz@gnu.org>
9647
9648 * jka-compr.el (jka-compr-load): If load-file is not in
9649 load-history, try its file-truename version. (bug#5447)
9650
9651 2010-01-21 Alan Mackenzie <acm@muc.de>
9652
9653 Fix a situation where deletion of a cpp construct throws an error.
9654 * progmodes/cc-engine.el (c-invalidate-state-cache):
9655 Before invoking c-with-all-but-one-cpps-commented-out, check that the
9656 special cpp construct is still in the buffer.
9657 (c-parse-state): Record the special cpp with markers, not numbers.
9658
9659 2010-01-21 Kenichi Handa <handa@m17n.org>
9660
9661 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
9662 process last-command-event, as it is now decoded first (Bug#5380).
9663
9664 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
9665
9666 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
9667
9668 2010-01-20 Glenn Morris <rgm@gnu.org>
9669
9670 * indent.el (tab-always-indent): Fix custom-type.
9671
9672 2010-01-19 Alan Mackenzie <acm@muc.de>
9673
9674 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
9675 buffer throws "args out of range".
9676 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
9677 playing the role of delimiter.
9678
9679 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
9680
9681 * progmodes/ada-mode.el: Fix bug#5400.
9682 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
9683 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
9684 changed. Delete RECURSIVE parameter; never used. Improve doc string.
9685 Improve comments in "is" portion. Handle null procedure declaration.
9686 (ada-move-to-end): Improve doc string.
9687
9688 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
9689
9690 * ido.el (ido-cur-list): Initialize to nil.
9691 Remove obsolete information from commentary.
9692 (ido-choice-list): Initialize to nil.
9693 (ido-get-bufname): Reject minibuffers.
9694 (ido-make-buffer-list): If "default" is a nonexistent
9695 buffer, ignore it, as per the function's comment.
9696 (ido-kill-buffer-internal): New function.
9697 (ido-kill-buffer-at-head): Use it.
9698 (ido-visit-buffer): Likewise.
9699
9700 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
9701
9702 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
9703
9704 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
9705
9706 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
9707 Fix typos in chart titles.
9708
9709 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
9710 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
9711 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
9712 (describe-class, eieio-describe-generic, describe-generic):
9713 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
9714 (eieio-speedbar-expand):
9715 * emulation/viper-cmd.el (viper-exec-form-in-vi)
9716 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
9717 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
9718 (viper-del-backward-char-in-replace, viper-backward-indent)
9719 (viper-brac-function, viper-register-to-point, viper-submit-report):
9720 * net/tramp.el (tramp-remote-coding-commands):
9721 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
9722 Fix typos in docstrings.
9723
9724 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
9725
9726 * mail/sendmail.el (mail-yank-original): Set the mark if the
9727 specified function for yanking does not do it.
9728
9729 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
9730
9731 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
9732
9733 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
9734 resyncing a directory.
9735
9736 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
9737
9738 * progmodes/ada-mode.el: Fix bug#1920.
9739 (ada-ident-re): Delete ., allow multibyte characters.
9740 (ada-goto-label-re): New; matches goto labels.
9741 (ada-block-label-re): New; matches block labels.
9742 (ada-label-re): New; matches both.
9743 (ada-named-block-re): Deleted; callers changed to use
9744 `ada-block-label-re' instead.
9745 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
9746 Use `ada-block-label-re'.
9747 (ada-indent-on-previous-lines): Improve handling of goto labels.
9748 (ada-get-indent-block-start): Special-case block label.
9749 (ada-get-indent-label): Split into `ada-indent-block-label' and
9750 `ada-indent-goto-label'.
9751 (ada-goto-stmt-start, ada-goto-next-non-ws):
9752 Optionally ignore goto labels.
9753 (ada-goto-next-word): Simplify.
9754 (ada-indent-newline-indent-conditional): Insert newline before
9755 trying to fix indentation; doc fix.
9756
9757 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
9758
9759 * calc/calc.el (calc-command-flags): Give it an initial value.
9760
9761 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
9762
9763 * files.el (minibuffer-with-setup-hook):
9764 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
9765 (artist-key-draw-continously, artist-key-do-continously-continously)
9766 (artist-key-set-point-continously, artist-mouse-draw-continously):
9767 Fix typos in docstrings.
9768
9769 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
9770
9771 * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
9772 return t (Bug#3898).
9773
9774 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
9775
9776 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
9777 can parse the output of the external commands (Bug#5279).
9778
9779 2010-01-16 Jari Aalto <jari.aalto@cante.net>
9780
9781 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
9782
9783 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
9784
9785 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
9786
9787 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
9788
9789 * startup.el (command-line): Remove unused --icon-type arg.
9790 Handle --display arg, passing it to command-line-1 (Bug#5392).
9791
9792 2010-01-16 Mario Lang <mlang@delysid.org>
9793
9794 * emacs-lisp/chart.el (chart-translate-namezone):
9795 * textmodes/artist.el (artist-compute-popup-menu-table):
9796 Remove duplicated words in doc-strings.
9797
9798 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
9799
9800 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
9801 to mairix-search to suppress threading (Bug#5342).
9802
9803 2010-01-15 Kenichi Handa <handa@m17n.org>
9804
9805 * international/mule-cmds.el (canonicalize-coding-system-name):
9806 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
9807
9808 2010-01-15 Glenn Morris <rgm@gnu.org>
9809
9810 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
9811
9812 * wid-edit.el (widget-keymap): Doc fix.
9813
9814 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
9815 former seems to be more widely accepted by various svn versions.
9816
9817 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
9818
9819 * find-cmd.el (find-constituents):
9820 * vc-arch.el (vc-arch-root):
9821 * window.el (window-body-height, pop-up-frames):
9822 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
9823 * progmodes/ada-stmt.el (ada-if):
9824 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
9825 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
9826 (ispell-encoding8-command, ispell-aspell-supports-utf8)
9827 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
9828
9829 * progmodes/flymake.el (flymake-post-syntax-check):
9830 Fix typo in error message.
9831
9832 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
9833
9834 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
9835 which is always a string. (Bug#5313)
9836
9837 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
9838
9839 * progmodes/ada-xref.el (ada-default-prj-properties):
9840 Simplify previous change.
9841
9842 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
9843
9844 * progmodes/ada-xref.el (ada-default-prj-properties):
9845 Default ada_project_path to $ADA_PROJECT_PATH.
9846
9847 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
9848
9849 * progmodes/ada-mode.el (ada-create-keymap):
9850 Override `narrow-to-defun' with `ada-narrow-to-defun'.
9851
9852 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
9853
9854 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
9855 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
9856 (ada-get-current-indent, ada-imenu-generic-expression)
9857 (ada-which-function): Check for it.
9858
9859 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
9860
9861 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
9862 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
9863
9864 2010-01-14 Glenn Morris <rgm@gnu.org>
9865
9866 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
9867
9868 2010-01-14 Kenichi Handa <handa@m17n.org>
9869
9870 * composite.el (auto-composition-mode): Make it a buffer local
9871 variable (permanent-local).
9872 (auto-composition-function): Set the default value to
9873 auto-compose-chars.
9874 (auto-composition-mode): Make it a simple function, not a minor mode.
9875 (global-auto-composition-mode): Likewise.
9876 (turn-on-auto-composition-if-enabled): Delete it.
9877
9878 2010-01-13 Karl Fogel <kfogel@red-bean.com>
9879
9880 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
9881
9882 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
9883
9884 * files.el (copy-directory): Compute target for recursive
9885 directories with identical names. (Bug#5343)
9886
9887 2010-01-12 Glenn Morris <rgm@gnu.org>
9888
9889 * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
9890 it to bug-gnu-emacs rather than emacs-pretest-bug.
9891
9892 2010-01-11 Sam Steingold <sds@gnu.org>
9893
9894 * imenu.el (imenu-default-create-index-function): Detect infinite
9895 loops caused by imenu-prev-index-position-function.
9896
9897 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
9898
9899 * htmlfontify.el (htmlfontify-load-rgb-file)
9900 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
9901 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
9902 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
9903 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
9904 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
9905 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
9906 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
9907 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
9908 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
9909 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
9910 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
9911 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
9912 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
9913 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
9914 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
9915 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
9916 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
9917 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
9918 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
9919 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
9920 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
9921 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
9922 backslash-quoting from parentheses, etc.
9923
9924 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
9925
9926 * progmodes/js.el: Autoload javascript-mode alias.
9927
9928 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
9929
9930 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
9931 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
9932 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
9933 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
9934 Fix typos in docstrings.
9935 (ffap-url-regexp): Doc fix.
9936 (ffap-at-mouse): Fix typo in message.
9937
9938 2010-01-11 Glenn Morris <rgm@gnu.org>
9939
9940 * version.el (emacs-copyright): Set copyright year to 2010.
9941
9942 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
9943
9944 * format.el (format-annotate-function): Only set
9945 write-region-post-annotation-function after running to-fn so as not to
9946 affect nested write-region calls (bug#5273).
9947
9948 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
9949
9950 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
9951 wisent/python.el.
9952
9953 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
9954
9955 * man.el (Man-goto-section): Signal error if the section is not
9956 found (Bug#5317).
9957
9958 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
9959
9960 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
9961 URLs with a leading triple slash in the file: scheme. (Bug#5345)
9962
9963 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
9964
9965 * progmodes/compile.el: Don't treat compile-command as safe if
9966 compilation-read-command might be nil (Bug#4218).
9967
9968 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
9969
9970 * startup.el (command-line-1): Use orig-argi to check for ignored X and
9971 NS options.
9972
9973 2010-01-08 Kenichi Handa <handa@m17n.org>
9974
9975 * international/fontset.el (build-default-fontset-data):
9976 Exclude characters in scripts kana, hangul, han, or cjk-misc.
9977
9978 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
9979
9980 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
9981 to `create-file-buffer' as it expects, not just a buffer name.
9982 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
9983 to help uniquify. (Bug#3224)
9984
9985 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
9986
9987 * font-setting.el (font-setting-change-default-font): Use user-spec
9988 instead of name.
9989
9990 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
9991
9992 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
9993
9994 2010-01-05 Tom Tromey <tromey@redhat.com>
9995
9996 * progmodes/python.el (python-font-lock-keywords):
9997 Handle qualified decorators (Bug#881).
9998
9999 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
10000
10001 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
10002 in a lightweight checkout.
10003
10004 2010-01-05 Kenichi Handa <handa@m17n.org>
10005
10006 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
10007
10008 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
10009
10010 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
10011
10012 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
10013
10014 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
10015 checkouts. (Bug#618)
10016 (vc-bzr-log-view-mode): Also highlight the author.
10017 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
10018 (vc-bzr-shelve-menu-map):
10019 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
10020 (vc-bzr-shelve-apply): Make prompt more explicit.
10021
10022 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
10023
10024 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
10025 They are valid characters in URL paths (rfc3986), and at least
10026 Firefox does not understand the encoded version (Bug#3166).
10027
10028 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
10029
10030 * progmodes/octave-mod.el (octave-end-keywords)
10031 (octave-block-begin-or-end-regexp, octave-block-match-alist):
10032 Add "end" keyword (Bug#3061).
10033 (octave-end-as-array-index-p): New function.
10034 (calculate-octave-indent): Use it.
10035
10036 2010-01-02 Karl Fogel <kfogel@red-bean.com>
10037
10038 * bookmark.el: Consistently put the text property on the bookmark name.
10039 (bookmark-bmenu-marks-width): Bump back to 2, to include
10040 annotation marks.
10041 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
10042 property on the bookmark name, instead of not putting it at all.
10043 (bookmark-bmenu-list): Fix where we put the text property.
10044
10045 2010-01-02 Karl Fogel <kfogel@red-bean.com>
10046
10047 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
10048 for showing buffer modified state (as added in the previous change).
10049
10050 2010-01-02 Karl Fogel <kfogel@red-bean.com>
10051
10052 * bookmark.el: Show modified state of bookmark buffer more accurately.
10053 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
10054 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
10055 (with-buffer-modified-unmodified): New macro.
10056 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
10057 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
10058 Use new macro to preserve the buffer modified state.
10059
10060 2010-01-02 Karl Fogel <kfogel@red-bean.com>
10061
10062 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
10063 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
10064 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
10065 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
10066 (bookmark-bmenu-rename, bookmark-bmenu-locate)
10067 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
10068 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
10069
10070 2010-01-02 Eli Zaretskii <eliz@gnu.org>
10071
10072 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
10073 Make the lines in the generated doc string shorter. (Bug#4668)
10074
10075 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
10076
10077 * net/rcirc.el: Add follow-link binding (Bug#4738).
10078
10079 2010-01-02 Eli Zaretskii <eliz@gnu.org>
10080
10081 * Makefile.in (bzr-update): Rename from cvs-update.
10082 (cvs-update): New target for backward compatibility.
10083
10084 * makefile.w32-in (bzr-update): Rename from cvs-update.
10085 (cvs-update): New target for backward compatibility.
10086
10087 2010-01-02 Karl Fogel <kfogel@red-bean.com>
10088
10089 * bookmark.el: Remove gratuitous gratitude.
10090
10091 2010-01-02 Karl Fogel <kfogel@red-bean.com>
10092
10093 * bookmark.el (bookmark-bmenu-any-marks): New function.
10094 (bookmark-bmenu-save): Clear buffer modification if no marks.
10095
10096 2010-01-02 Karl Fogel <kfogel@red-bean.com>
10097
10098 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
10099 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
10100 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
10101 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
10102
10103 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
10104 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
10105 To: emacs-devel {_AT_} gnu.org
10106 Subject: bookmark.el bug report
10107 Date: Mon, 28 Dec 2009 14:19:16 +0800
10108 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
10109
10110 2010-01-02 Karl Fogel <kfogel@red-bean.com>
10111
10112 * bookmark.el: Improvements suggested by Drew Adams:
10113 (bookmark-bmenu-ensure-position): New name for
10114 `bookmark-bmenu-check-position'. Just ensure the position,
10115 don't return any meaningful value.
10116 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
10117 New constants.
10118
10119 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
10120
10121 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
10122 (bookmark-yank-point, bookmark-bmenu-check-position):
10123 Fix typos in docstrings.
10124 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
10125 (bookmark-name-from-full-record, bookmark-get-position)
10126 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
10127 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
10128 Remove useless quoting of parenthesis, etc. in docstrings.
10129
10130 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
10131 (ediff-append-custom-diff): Fix typo in error message.
10132 (ediff-meta-mark-equal-files): Fix typos in messages.
10133
10134 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
10135
10136 * net/imap-hash.el (imap-hash-make): Doc fix.
10137 (imap-hash-test): Fix typo in error message; reflow docstring.
10138 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
10139 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
10140 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
10141 Fix typos in docstrings.
10142 (imap-hash-open-connection): Fix typo in error message.
10143
10144 * play/gomoku.el (gomoku): Fix typos in docstring.
10145
10146 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
10147 (gdb-jsonify-buffer): Fix typos in docstring.
10148 (gdb-goto-breakpoint): Fix typo in error message.
10149 ("Display Other Windows"): Fix typo in help message.
10150 (gdb-speedbar-expand-node): Fix typo in question.
10151
10152 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
10153 (idlwave-html-system-help-location, idlwave-html-help-location)
10154 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
10155 (idlwave-help-browser-generic-args, idlwave-help-directory)
10156 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
10157 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
10158 (idlwave-online-help, idlwave-help-html-link)
10159 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
10160 Fix typos in docstrings.
10161 (idlwave-help-with-source, idlwave-help-find-routine-definition):
10162 Reflow docstrings.
10163 (idlwave-help-assistant-start): Fix typo in error message.
10164
10165 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
10166 (octave-electric-space): Fix typos in docstrings.
10167
10168 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
10169
10170 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
10171
10172 2010-01-01 Juri Linkov <juri@jurta.org>
10173
10174 * comint.el (comint-input-ring-size): Make it a defcustom and
10175 increase the default to 500 (Bug#5148).
10176
10177 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
10178
10179 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
10180 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
10181 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
10182
10183 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
10184
10185 Show working revision correctly for mercurial.
10186 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
10187 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
10188
10189 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
10190
10191 Declare some functions for the byte-compiler.
10192 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
10193 (speedbar-timer-fn, speedbar-change-expand-button-char)
10194 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
10195
10196 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
10197
10198 This changeset reverts GDB Graphical Interface to use annotations.
10199 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
10200
10201 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
10202
10203 Make vc-dir work on subdirectories of the bzr root.
10204 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return
10205 file names relative to it.
10206 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
10207 relative directory to vc-bzr-after-dir-status.
10208
10209 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
10210
10211 * font-lock.el (font-lock-refresh-defaults): New function, which
10212 can be used to let font-lock react to external changes in
10213 variables like font-lock-defaults and keywords.
10214 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
10215
10216 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
10217
10218 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
10219
10220 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
10221
10222 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
10223
10224 Supersede color.diff settings in git log (bug#5211).
10225
10226 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
10227 escape chars in its output when the user has color.diff set to `always'.
10228 This fix works on git 1.4.2 and newer (released on 2006-08-13).
10229
10230 2009-12-26 Kevin Ryde <user42@zip.com.au>
10231
10232 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
10233 node. Keep previous "Index" name to work with past coreutils too.
10234
10235 * man.el (man): Revise docstring a bit to show -a and -l as
10236 examples. Add -k description since support for it has otherwise
10237 been a secret. (Further to bug#3717.)
10238 (Man-bgproc-sentinel): When "-k foo" produces no output show error
10239 "no matches" rather than "Can't find manpage", as the latter reads
10240 like -k was interpreted as a page name, which is not so. (Bug#5431)
10241
10242 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
10243
10244 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
10245 switches. Check also for //SUBDIRED// line.
10246
10247 2009-12-25 Kenichi Handa <handa@m17n.org>
10248
10249 * language/indian.el (devanagari-composable-pattern): Fixed to
10250 handle ZWNJ and ZWJ. Use it in composition-function-table for
10251 Devanagari.
10252 (malayalam-composable-pattern): Fix previous change.
10253
10254 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10255
10256 * ps-print.el (ps-face-attributes): It was not returning the
10257 attribute face for faces specified as string. Reported by harven
10258 <harven@free.fr>. (Bug#5254)
10259 (ps-print-version): New version 7.3.5.
10260
10261 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
10262
10263 * calendar/icalendar.el (icalendar--convert-tz-offset):
10264 Fix timezone names.
10265 (icalendar--convert-tz-offset): Fix the "last-day-problem".
10266 (icalendar--add-diary-entry): Remove the trailing blank that
10267 diary-make-entry inserts.
10268
10269 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
10270
10271 Make `file-expand-wildcards' work for remote files.
10272
10273 * files.el (file-expand-wildcards): In case of remote files, check
10274 only local file name part for wildcards. Provide feature 'files
10275 and subfeature 'remote-wildcards. (Bug#5198)
10276
10277 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
10278 if there is already an established connection.
10279 (tramp-advice-file-expand-wildcards): Remove it.
10280
10281 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
10282 (tramp-advice-file-expand-wildcards): Move from tramp.el.
10283 Activate advice for older GNU Emacs versions. (Bug#5237)
10284
10285 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
10286
10287 Some doc fixes (more needed).
10288
10289 * find-cmd.el (find-constituents): Reflow docstring.
10290 (find-cmd, find-prune, find-command): Fix typos in docstrings.
10291 (find-generic): Doc fix.
10292
10293 2009-12-17 Juri Linkov <juri@jurta.org>
10294
10295 Fix regression from 23.1 to allow multiple modes in Local Variables.
10296
10297 * files.el (hack-local-variables-filter): While ignoring duplicates,
10298 don't take `mode' into account.
10299 (hack-local-variables-filter, hack-dir-local-variables):
10300 Don't remove duplicate `mode' from local-variables-alist (like `eval').
10301
10302 2009-12-17 Juri Linkov <juri@jurta.org>
10303
10304 Make `dired-diff' safer. (Bug#5225)
10305
10306 * dired-aux.el (dired-diff): Signal an error when `file' equals to
10307 `current' or when `file' is a directory of the `current' file.
10308
10309 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
10310
10311 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
10312 unconditionally preloaded files.
10313
10314 2009-12-16 Juri Linkov <juri@jurta.org>
10315
10316 Revert to old 23.1 logic of using the file at the mark as default.
10317 * dired-aux.el (dired-diff): Use the file at the mark as default
10318 if it's not the same as the current file, and the target dir is
10319 the current dir or the mark is active. Add the current file
10320 as the arg of `dired-dwim-target-defaults'. Use the default file
10321 in the prompt. (Bug#5225)
10322
10323 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
10324
10325 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
10326 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
10327 (tramp-check-for-regexp): Check also, when an echoing shell stops
10328 to echo sent commands.
10329
10330 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
10331
10332 * Makefile.in: Revert last change (Bug#5191).
10333
10334 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
10335
10336 * vc-hg.el (vc-hg-print-log): Fix argument order.
10337 (vc-hg-working-revision): Make sure the command is executed in a
10338 known environment so that we can parse the output. (Bug#4417)
10339
10340 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
10341
10342 * progmodes/python.el (python-symbol-completions): Remove text
10343 properties from symbol string before calling python-send-receive.
10344
10345 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
10346
10347 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
10348 when there are values for both file and line. (Bug#5060)
10349
10350 2009-12-14 Juri Linkov <juri@jurta.org>
10351
10352 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
10353 whitespace after the file name of the first line of unified format,
10354 because git-diff doesn't output whitespace and file modification time
10355 after the file name.
10356
10357 2009-12-14 David Kastrup <dak@gnu.org>
10358
10359 * info.el (Info-hide-cookies-node): Before hiding a cookie,
10360 check if it already has the `display' property added by
10361 `Info-display-images-node', and not put the `invisible' property
10362 in this case.
10363
10364 2009-12-13 Glenn Morris <rgm@gnu.org>
10365
10366 * mail/emacsbug.el (message-sort-headers): Define for compiler.
10367 (report-emacs-bug): In message-mode, sort manually before storing
10368 original report text. (Bug#5178)
10369 Remove superfluous save-excursion.
10370
10371 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
10372
10373 * net/dbus.el (dbus-property-handler): Filter lambda forms out
10374 when responding to "GetAll" properties.
10375
10376 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
10377
10378 * simple.el (compose-mail): Remove mail-setup-with-from from
10379 customization checks.
10380
10381 2009-12-12 Eli Zaretskii <eliz@gnu.org>
10382
10383 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
10384 RAR archives created on Unix systems.
10385
10386 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
10387
10388 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
10389 the varalias that was accidentally removed by the 2009-11-19 change
10390 (bug#5186).
10391
10392 2009-12-12 Kenichi Handa <handa@m17n.org>
10393
10394 * language/indian.el (indian-compose-regexp): New function.
10395 (malayalam-composable-pattern): Fix the pattern.
10396 (composition-function-table): Set malayalam-composable-pattern for
10397 Malayalam characters.
10398
10399 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
10400
10401 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
10402 rather than down-mouse-1, based on follow-link conventions.
10403
10404 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
10405 are compiled.
10406
10407 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
10408
10409 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
10410 (verilog-vmm-statement-re, verilog-ovm-statement-re)
10411 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
10412 (verilog-leap-to-head, verilog-backward-token):
10413 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
10414
10415 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
10416
10417 * progmodes/verilog-mode.el (verilog-auto-lineup)
10418 (verilog-nameable-item-re): Cleanup user-visible spelling and
10419 documentation errors. One reported by Gary Delp.
10420 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
10421 (verilog-read-decls): Fix AUTOWIRE with types declared in a
10422 package, bug195. Reported by Pierre-David Pfister.
10423
10424 2009-12-11 Glenn Morris <rgm@gnu.org>
10425
10426 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
10427
10428 * mail/emacsbug.el: No longer require sendmail.
10429 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
10430 (report-emacs-bug-orig-text): Doc fix.
10431 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
10432 New local variables, to adapt to different mail-user-agents.
10433 (report-emacs-bug): Fix test for a gnu.org address.
10434 Use overlays for emphasis, since font-lock defeats 'face property.
10435 Pretest bugs also end up at the newsgroup these days.
10436 Stop message-mode stripping text properties.
10437 Set and use the new buffer-local variables.
10438 (report-emacs-bug-hook): Add doc-string.
10439 Remove some unnecessary save-excursions and simplify.
10440 Use the appropriate hook and send-command.
10441
10442 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
10443 capitalization of some menu entries.
10444
10445 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10446
10447 * whitespace.el (whitespace-display-char-on):
10448 Ensure `buffer-display-table' is unique when two or more windows are
10449 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
10450 New version 12.1.
10451
10452 2009-12-10 Eli Zaretskii <eliz@gnu.org>
10453
10454 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
10455 characters in the Attribute field.
10456
10457 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
10458
10459 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
10460
10461 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
10462
10463 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
10464 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
10465 Disregard autoload-excludes.
10466 (update-directory-autoloads): Obey autoload-excludes here instead.
10467 But don't store its contents in no-autoloads and remove entries that
10468 refer to excludes files.
10469
10470 2009-12-10 Glenn Morris <rgm@gnu.org>
10471
10472 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
10473 (expand-mail-aliases): Define for compiler.
10474
10475 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
10476 Define for compiler.
10477
10478 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
10479 appropriate for the mail-user-agent in use.
10480
10481 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
10482
10483 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
10484
10485 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
10486
10487 Fix short log parsing and fontification.
10488 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
10489 Fix fontification for the [merge] label.
10490
10491 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
10492
10493 Drop some properties to avoid surprises (bug#5002).
10494 * htmlfontify.el (hfy-ignored-properties): New defcustom.
10495 (hfy-fontify-buffer): Use it.
10496
10497 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
10498
10499 Minor cleanup.
10500 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
10501 Adjust all callers.
10502 (ffap-locate-file): Remove unused arg `dir-ok' and make other
10503 args compulsory. Adjust callers.
10504 (ffap-gopher-at-point): Remove unused var `name'.
10505
10506 Get rid of the ELCFILES abomination.
10507 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
10508 (compile-elcfiles): New phony target.
10509 (compile-main): Compute ELCFILES dynamically.
10510 (compile-clean): New target to remove left-over elc files.
10511 (compile, all): Use it.
10512
10513 2009-12-09 Kenichi Handa <handa@etlken>
10514
10515 * international/mule-diag.el: Require help-mode instead of help-fns.
10516
10517 2009-12-09 Kenichi Handa <handa@m17n.org>
10518
10519 * international/mule-cmds.el (ucs-names): Supply sufficiently
10520 fine ranges instead of pre-calculating accurate ranges.
10521 Iterate with bigger gc-cons-threshold.
10522
10523 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
10524
10525 Add support for stashing a snapshot of the current tree.
10526 * vc-git.el (vc-git-stash-snapshot): New function.
10527 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
10528
10529 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
10530
10531 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
10532 instead of `(beginning|end)-of-line'.
10533
10534 2009-12-08 Glenn Morris <rgm@gnu.org>
10535
10536 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
10537
10538 * Makefile.in (ELCFILES): Regenerate.
10539
10540 2009-12-07 Juri Linkov <juri@jurta.org>
10541
10542 Don't lazy-highlight the comint output in history Isearch mode.
10543
10544 * comint.el (comint-history-isearch-search): Instead of
10545 `comint-line-beginning-position', use `comint-after-pmark-p'
10546 to check if point if before the process mark, and go to
10547 `process-mark' in this case.
10548
10549 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
10550
10551 * textmodes/tex-mode.el (latex-complete)
10552 (latex-indent-or-complete): Remove.
10553 (latex-mode): Set completion-at-point-functions instead.
10554
10555 Provide a standard completion command and hook it into TAB.
10556 * minibuffer.el (completion-at-point-functions): New var.
10557 (completion-at-point): New command.
10558 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
10559 * progmodes/python.el (python-mode-map): Use completion-at-point.
10560 (python-completion-at-point): Rename from python-partial-symbol and
10561 adjust for use in completion-at-point-functions.
10562 (python-mode): Setup completion-at-point for Python completion.
10563 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
10564 extracted from lisp-complete-symbol.
10565 (lisp-complete-symbol): Use it.
10566 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
10567 setup completion-at-point for Elisp completion.
10568 (emacs-lisp-mode-map, lisp-interaction-mode-map):
10569 Use completion-at-point.
10570 * ielm.el (ielm-map): Use completion-at-point.
10571 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
10572 * progmodes/sym-comp.el: Move to...
10573 * obsolete/sym-comp.el: Move from progmodes.
10574
10575 2009-12-07 Eli Zaretskii <eliz@gnu.org>
10576
10577 Prevent save-buffer in Rmail buffers from using the coding-system
10578 of the current message, and from clobbering the encoding mnemonics
10579 in the mode line (Bug#4623).
10580
10581 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
10582 flag, too.
10583 (rmail-message-encoding): New variable.
10584 (rmail-write-region-annotate): Record the encoding of the current
10585 message in rmail-message-encoding.
10586 (rmail-after-save-hook): New function, restores the encoding of
10587 the current message after the message collection is saved.
10588
10589 2009-12-07 Juri Linkov <juri@jurta.org>
10590
10591 * progmodes/grep.el (grep-read-files): Use `completing-read'
10592 instead of `read-string'. Set its `collection' arg to
10593 `read-file-name-internal'. (Bug#4301)
10594
10595 2009-12-07 Juri Linkov <juri@jurta.org>
10596
10597 Correctly restore original Isearch point. (Bug#4994)
10598
10599 * isearch.el (isearch-mode): Move `isearch-push-state' after
10600 `(run-hooks 'isearch-mode-hook)'.
10601 (isearch-cancel): When `isearch-push-state-function' is defined,
10602 let-bind `isearch-cmds' to the first state (the last element of
10603 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
10604 function and restores the original point). Otherwise, move point
10605 to `isearch-opoint'.
10606
10607 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
10608
10609 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
10610 chars that don't have names, so the table can be built much faster at
10611 run-time.
10612
10613 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
10614
10615 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
10616 change. Suggested by David Kastrup.
10617
10618 * simple.el (compose-mail): Check for incompatibilities and warn.
10619 (compose-mail-user-agent-warnings): New option.
10620
10621 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
10622
10623 Support showing a single log entry from vc-annotate.
10624 * vc.el (print-log): Add a new argument: START-REVISION.
10625 (vc-print-log-internal): Add a new optional argument and
10626 pass it to the backend.
10627 (vc-print-log, vc-print-root-log): Adjust callers.
10628 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
10629 buffer already displays the requested log entry, use it.
10630 Otherwise display only the log entry in question.
10631 * vc-svn.el (vc-svn-print-log):
10632 * vc-mtn.el (vc-mtn-print-log):
10633 * vc-hg.el (vc-hg-state):
10634 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
10635 (vc-git-show-log-entry): Return t on success.
10636 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
10637 (vc-bzr-show-log-entry): Return t on success.
10638 * vc-rcs.el (vc-rcs-print-log):
10639 * vc-sccs.el (vc-sccs-print-log):
10640 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
10641
10642 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
10643
10644 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
10645 Add menus to the meta mode. (Bug#5043)
10646
10647 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
10648
10649 * ediff-init.el (ediff-event-key): Use event-to-character instead of
10650 event-key.
10651
10652 * ediff.el (ediff-buffers-internal): Add unwind-protect.
10653
10654 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
10655
10656 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
10657 Berbain <raphael.berbain@gmail.com>.
10658
10659 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
10660 characters.
10661 (tramp-initial-end-of-output): New defconst.
10662 (tramp-methods, tramp-find-shell)
10663 (tramp-open-connection-setup-interactive-shell)
10664 (tramp-maybe-open-connection): Use it.
10665 (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
10666 existence of `#' and `$'.
10667
10668 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
10669 `tramp-initial-end-of-output'.
10670
10671 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
10672
10673 Get the background mode from the terminal for xterm, and set
10674 faces accordingly.
10675 * term/xterm.el (xterm-set-background-mode): New function.
10676 (terminal-init-xterm): Use it in case xterm supports background
10677 color queries. Recompute faces after getting the background
10678 color.
10679
10680 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
10681
10682 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
10683 number comment back on its own line, for easier parsing.
10684
10685 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
10686
10687 Make it work for non-file buffers (bug#5102).
10688 * doc-view.el (doc-view-current-cache-dir):
10689 Use doc-view-buffer-file-name rather than buffer-file-name.
10690 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
10691
10692 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
10693
10694 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
10695 author field is too short.
10696
10697 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
10698
10699 * vc-git.el (vc-git-print-log): Handle a limit argument.
10700 Display the short log in graph form and with labels.
10701 (vc-git-log-view-mode): Handle labels.
10702
10703 Make vc-revert change VC state from 'added to 'unregistered.
10704 * vc-git.el (vc-git-revert): Call git reset first.
10705
10706 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
10707
10708 * net/newst-backend.el, net/newst-plainview.el:
10709 * net/newst-reader.el, net/newst-ticker.el:
10710 * net/newst-treeview.el, net/newsticker.el:
10711 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
10712
10713 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
10714
10715 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
10716
10717 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
10718 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
10719 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
10720 Update annotation regexp.
10721
10722 * simple.el (beginning-of-visual-line): Constrain to field
10723 boundaries (Bug#5106).
10724
10725 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
10726
10727 * xml.el (xml-substitute-numeric-entities): Move
10728 newsticker--decode-numeric-entities in newst-backend.el to
10729 xml-substitute-numeric-entities in xml.el. (Bug#5008)
10730 * net/newst-backend.el (newsticker--parse-generic-feed)
10731 (newsticker--parse-generic-items)
10732 (newsticker--decode-numeric-entities): Move
10733 newsticker--decode-numeric-entities in newst-backend.el to
10734 xml-substitute-numeric-entities in xml.el. (Bug#5008)
10735
10736 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
10737
10738 * progmodes/js.el (js--js-not): Add null to the list of values.
10739
10740 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
10741
10742 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
10743
10744 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10745
10746 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
10747 delimiter if it is at the end of the current line.
10748 (bibtex-generate-url-list): Fix docstring.
10749
10750 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
10751
10752 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
10753 minibuffer's content with itself.
10754 Fold the confirm-after-completion case into the `confirm' case.
10755 (completion-pcm-word-delimiters): Add : and / to the delimiters.
10756
10757 2009-12-06 Kevin Ryde <user42@zip.com.au>
10758
10759 * ffap.el (ffap-rfc-path): Make this a defcustom since
10760 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
10761
10762 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
10763 manuals, similar to existing setup for help-mode. (Bug#3913.)
10764
10765 2009-12-05 Juri Linkov <juri@jurta.org>
10766
10767 Save and restore dired buffer's point positions too. (Bug#4880)
10768
10769 * dired.el (dired-save-positions): Return in the first element
10770 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
10771 Doc fix.
10772 (dired-restore-positions): First restore buffer's position.
10773 While restoring window's positions, check if window still displays
10774 the original buffer.
10775
10776 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
10777
10778 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
10779 if possible.
10780
10781 * shell.el (shell): Require ansi-color (Bug#5113).
10782
10783 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
10784
10785 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
10786
10787 2009-12-05 Alan Mackenzie <acm@muc.de>
10788
10789 * progmodes/cc-mode.el (c-before-hack-hook)
10790 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
10791 `c-file-style' to work again. This reversion restores the current
10792 software to its state in Emacs 23.1. (Bug#4146)
10793
10794 2009-12-05 Kevin Ryde <user42@zip.com.au>
10795
10796 * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
10797 comment-start-skip to comment-end-skip as comment (Bug#4781).
10798
10799 2009-12-05 Juri Linkov <juri@jurta.org>
10800
10801 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
10802 for virtual nodes. (Bug#4147)
10803 (Info-find-node-2): Set `Info-current-node-virtual' to nil
10804 when moving from a virtual node.
10805 (Info-mode-menu): Add `Info-virtual-index' to the menu.
10806 (Info-mode): Add `Info-virtual-index' to the docstring.
10807
10808 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10809
10810 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
10811 track of the buffer position of the end of a BibTeX entry as this
10812 position may change during reformatting.
10813 (bibtex-format-entry): Remove whitespace before processing
10814 numerical fields so that we recognize the latter properly.
10815 (bibtex-reformat): Do not use push which changes the global value
10816 of bibtex-entry-format.
10817 (bibtex-field-braces-alist, bibtex-field-strings-alist)
10818 (bibtex-field-re-init): Replace only space characters by regexp
10819 for whitespace.
10820 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
10821 (bibtex-initialize): Also update bibtex-strings.
10822 (bibtex-kill-field): Preserve white space at end of entry.
10823 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
10824 Update bibtex-reference-keys.
10825
10826 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
10827
10828 * minibuffer.el (completion-pcm--merge-try): Also consider placing
10829 point after a star, if that's the only place where modifications can
10830 make progress.
10831
10832 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
10833
10834 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
10835 in docstrings.
10836
10837 2009-12-04 Juri Linkov <juri@jurta.org>
10838
10839 * proced.el (proced): Call `(proced-update t)' to update process
10840 information instead of only running proced-post-display-hook.
10841 (proced-send-signal): Add a leading space to the buffer name
10842 " *Marked Processes*" to make this buffer ephemeral.
10843
10844 2009-12-04 Juri Linkov <juri@jurta.org>
10845
10846 * dired.el (dired-auto-revert-buffer): New defcustom.
10847 (dired-internal-noselect): Use it.
10848
10849 2009-12-04 Juri Linkov <juri@jurta.org>
10850
10851 Change roles of modes and functions in image-mode.el (Bug#5062).
10852
10853 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
10854 in `auto-mode-alist'.
10855 (image-mode-previous-major-mode): New variable.
10856 (image-minor-mode-map): Rename from `image-mode-text-map'.
10857 (image-mode): Move graceful error-handling code from
10858 `image-minor-mode' to here. On errors call `image-mode-as-text'.
10859 (image-minor-mode): Remove all image-handling code.
10860 Replace `image-mode-text-map' with `image-minor-mode-map'.
10861 Check for `image-type' in mode-line format string.
10862 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
10863 (image-mode-as-text): New function with most code from
10864 `image-mode-maybe'.
10865 (image-toggle-display-text): Move code that removes image
10866 properties from `image-toggle-display' to here.
10867 (image-toggle-display-image): New function with code that adds
10868 image properties copied from `image-toggle-display'.
10869 (image-toggle-display): Remove most code with leaving only code
10870 that toggles between `image-mode-as-text' and `image-mode'.
10871
10872 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
10873
10874 * net/newst-treeview.el
10875 (newsticker--treeview-list-highlight-start): Restored call to
10876 save-excursion: Selected item was stuck.
10877 (newsticker--treeview-list-select): New.
10878 (newsticker--treeview-item-show-text)
10879 (newsticker--treeview-item-show)
10880 (newsticker--treeview-item-update): Use new
10881 newsticker-treeview-item-mode.
10882 (newsticker-treeview-update): Keep current item.
10883 (newsticker-treeview-next-new-or-immortal-item): Doc change.
10884 (newsticker--treeview-first-feed): Doc change.
10885 (newsticker-treeview-list-menu)
10886 (newsticker-treeview-item-menu): Added menu entries.
10887 (newsticker-treeview-item-mode): New.
10888
10889 * net/newst-backend.el (newsticker-customize): Delete other
10890 windows.
10891
10892 2009-12-04 Sam Steingold <sds@gnu.org>
10893
10894 * log-view.el (log-view-mode-map): "q" calls quit-window,
10895 like in all the other non-self-insert buffers.
10896
10897 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
10898
10899 Minor cleanup.
10900 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
10901 key decoding rather than do it manually via last-input-event +
10902 ascii-character.
10903 (term-exec): Use delete-and-extract-region.
10904 (term-handle-ansi-terminal-messages): Remove unused var `end'.
10905 (term-process-pager): Remove unused var `i'.
10906 (term-dynamic-simple-complete): Make obsolete.
10907 (serial-update-config-menu): Remove unused vars `y' and `str'.
10908 (term-update-mode-line): Remove unused var `temp'.
10909
10910 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
10911
10912 Limit the number of log entries displayed by default.
10913 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
10914 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
10915 using a prefix argument.
10916
10917 2009-12-03 Glenn Morris <rgm@gnu.org>
10918
10919 * progmodes/idlwave.el (class): Restore still useful declaration.
10920
10921 2009-12-03 Alan Mackenzie <acm@muc.de>
10922
10923 Enhance `c-parse-state' to run efficiently in "brace deserts".
10924
10925 * progmodes/cc-mode.el (c-basic-common-init):
10926 Call c-state-cache-init.
10927 (c-neutralize-syntax-in-and-mark-CPP): Rename from
10928 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
10929 placing `category' properties value 'c-cpp-delimiter at its boundaries.
10930
10931 * progmodes/cc-langs.el (c-before-font-lock-function):
10932 c-extend-and-neutralize-syntax-in-CPP has been renamed
10933 c-neutralize-syntax-in-and-mark-CPP.
10934
10935 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
10936 with `category' properties now, not `syntax-table' ones.
10937
10938 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
10939 enhanced (but slower) version of c-end-of-macro that won't land
10940 inside a literal or on another awkward character.
10941 (c-state-cache-too-far, c-state-cache-start)
10942 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
10943 (c-state-nonlit-pos-cache-limit, c-state-point-min)
10944 (c-state-point-min-lit-type, c-state-point-min-lit-start)
10945 (c-state-min-scan-pos, c-state-brace-pair-desert)
10946 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
10947 buffer local variables.
10948 (c-state-literal-at, c-state-lit-beg)
10949 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
10950 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
10951 (c-state-cache-top-paren, c-state-cache-after-top-paren)
10952 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
10953 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
10954 (c-renarrow-state-cache)
10955 (c-append-lower-brace-pair-to-state-cache)
10956 (c-state-push-any-brace-pair, c-append-to-state-cache)
10957 (c-remove-stale-state-cache)
10958 (c-remove-stale-state-cache-backwards, c-state-cache-init)
10959 (c-invalidate-state-cache-1, c-parse-state-1)
10960 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
10961 (c-parse-state): Enhance and refactor.
10962 (c-debug-parse-state): Amend to deal with all the new variables.
10963
10964 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
10965 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
10966 modify to use category text properties rather than syntax-table ones.
10967 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
10968 to switch off/on the syntactic paren property of C++ template
10969 delimiters using the category property.
10970 (c-with-<->-as-parens-suppressed): Macro to invoke code with
10971 template delims suppressed.
10972 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
10973 New constant/macros which apply category properties to the start
10974 and end of preprocessor constructs.
10975 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
10976 "comment out" the syntactic value of characters in preprocessor
10977 constructs.
10978 (c-with-cpps-commented-out)
10979 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
10980 with characters in all or all but one preprocessor constructs
10981 "commented out".
10982
10983 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10984
10985 * proced.el (proced-filter-alist): Use regexp-quote.
10986
10987 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
10988
10989 Cleanup.
10990 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
10991 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
10992 arguments. Expand `default-directory'.
10993
10994 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
10995 the benefit of returning an expanded localname.
10996 (tramp-tramp-file-p): Handle the case NAME is not a string.
10997
10998 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
10999
11000 Add support for bzr shelve/unshelve.
11001 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
11002 (vc-bzr-extra-menu-map): New variables.
11003 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
11004 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
11005 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
11006 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
11007 (vc-bzr-dir-extra-headers): Display shelves.
11008
11009 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
11010
11011 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
11012
11013 * textmodes/bibtex.el (bibtex-complete-internal):
11014 Use completion-in-region.
11015 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
11016
11017 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
11018
11019 Support applying stashes. Improve UI.
11020 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
11021 (vc-git-stash-apply, vc-git-stash-pop)
11022 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
11023 (vc-git-stash-menu): New functions.
11024 (vc-git-stash-menu-map): New variable.
11025 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
11026
11027 2009-12-03 Glenn Morris <rgm@gnu.org>
11028
11029 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
11030 (vc-print-log-internal): Fix previous change.
11031 (vc-revert): Correct pluralization.
11032
11033 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
11034
11035 * progmodes/make-mode.el (makefile-special-targets-list): No need for
11036 it to be an alist any more.
11037 (makefile-complete): Use completion-in-region.
11038
11039 * progmodes/octave-mod.el (octave-complete-symbol):
11040 Use completion-in-region.
11041
11042 Misc cleanup.
11043 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
11044 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
11045 (idlwave-complete-class): Don't quote lambda.
11046 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
11047 (idlwave-mode-map): Move initialization into declaration.
11048 (idlwave-action-and-binding): Use backquotes.
11049 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
11050 Simplify.
11051 (idlwave-is-pointer-dereference): Remove unused var `pos'.
11052 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
11053 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
11054 `parts', and `all-parts'.
11055 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
11056 (idlwave-convert-xml-system-routine-info): Remove unused string
11057 `version-string'.
11058 (idlwave-display-user-catalog-widget): Use dolist.
11059 (idlwave-scanning-lib): Declare dynamically-scoped var.
11060 (idlwave-scan-library-catalogs): Remove unused var `flags'.
11061 (completion-highlight-first-word-only): Declare to silence bytecomp.
11062 (idlwave-popup-select): Tighten scope of `resp'.
11063 (idlwave-find-struct-tag): Remove unused var `beg'.
11064 (idlwave-after-load-rinfo-hook): Declare.
11065 (idlwave-sintern-class-info): Remove unused var `taglist'.
11066 (idlwave-find-class-definition): Remove unused var `list'.
11067 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
11068 (idlwave-what-module-find-class): Remove unused var `classes'.
11069
11070 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
11071
11072 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
11073
11074 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
11075
11076 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
11077 buffers visited. Remove redundant current-buffer-saving.
11078
11079 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
11080
11081 Use completion-in-buffer and remove uses of dynamic scoping.
11082 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
11083 (pascal-buffer-to-use, pascal-flag): Don't declare.
11084 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
11085 (pascal-get-completion-decl, pascal-keyword-completion):
11086 Add `pascal-str' argument, save-excursion,
11087 return the found completions, and don't filter with pascal-pred.
11088 (pascal-completion-cache): New var.
11089 (pascal-completion): Don't switch buffer any more (it was never
11090 necessary). Don't save-excursion any more (it's done by the called
11091 subroutines). Use a cache to avoid redundant computations.
11092 Use complete-with-action rather than pascal-completion-response and
11093 let it apply the predicate as well.
11094 (pascal-complete-word): Use completion-in-buffer when
11095 pascal-toggle-completions is nil.
11096 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
11097 not used any more.
11098 (pascal-comp-defun): Don't change buffer any more.
11099 Use complete-with-action rather than pascal-completion-response and
11100 let it apply the predicate as well.
11101 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
11102 when neded.
11103
11104 2009-12-02 Kenichi Handa <handa@m17n.org>
11105
11106 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
11107 shape for all Indic scripts.
11108
11109 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
11110
11111 Use completion-in-buffer.
11112 * wid-edit.el (widget-field-text-end): New function.
11113 (widget-field-value-get): Use it.
11114 (widget-string-complete, widget-file-complete)
11115 (widget-color-complete): Use it and completion-in-region.
11116 (widget-complete): Don't narrow the buffer.
11117
11118 2009-12-02 Glenn Morris <rgm@gnu.org>
11119
11120 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
11121 (rmail-select-summary): Use rmail-pop-to-buffer.
11122 * mail/rmailsum.el: Replace all pop-to-buffer calls with
11123 rmail-pop-to-buffer, to prevent horizontal splits.
11124
11125 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
11126 save-excursion with save-current-buffer.
11127 Widen before searching. (Bug#5093)
11128 (diary-list-sexp-entries): Remove superfluous save-excursion.
11129
11130 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
11131
11132 * woman.el (woman-make-bufname): Handle man-pages with "." in the
11133 name. (Bug#5038)
11134
11135 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
11136
11137 * ido.el (ido-file-internal): Handle filenames at point that do
11138 not have a directory part. (Bug#5049)
11139
11140 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
11141
11142 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
11143 (mpc-songs-jump-to, mpc-resume): Doc fixes.
11144
11145 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
11146
11147 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
11148 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
11149 any more.
11150
11151 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
11152
11153 * comint.el (comint-insert-input): Ignore clicks to the right of
11154 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
11155
11156 * vc.el (vc-print-log-internal): Don't wait for the process to
11157 terminate before setting up the major mode.
11158
11159 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
11160 in case.
11161
11162 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
11163 the last element.
11164
11165 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
11166
11167 2009-12-01 Glenn Morris <rgm@gnu.org>
11168
11169 * window.el (window--display-buffer-2): Fix previous changes.
11170
11171 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
11172
11173 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
11174
11175 2009-12-01 Glenn Morris <rgm@gnu.org>
11176
11177 * Makefile.in (ELCFILES): Add mpc.elc.
11178
11179 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
11180
11181 * mpc.el: New file.
11182
11183 2009-12-01 Glenn Morris <rgm@gnu.org>
11184
11185 * window.el (window-to-use): Define for compiler.
11186
11187 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
11188 consistent with others (no final period).
11189
11190 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
11191 (rmail-mime-show): Downcase the encoding. (Bug#5070)
11192
11193 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
11194
11195 Make vc-print-log buttons work.
11196 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
11197
11198 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
11199
11200 * savehist.el (savehist-autosave-interval): Allow setting to nil
11201 through customize. (Bug#5056)
11202
11203 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
11204
11205 Fix references to jit-lock properties.
11206 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
11207 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
11208 (perl-font-lock-special-syntactic-constructs):
11209 Quote jit-lock-defer-multiline property.
11210
11211 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
11212
11213 * vc-git.el (vc-git-registered): Call vc-git-root only once.
11214
11215 2009-11-30 Juri Linkov <juri@jurta.org>
11216
11217 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
11218 value `buffer' of `multi-isearch-next-buffer-current-function'.
11219 Use `(current-buffer)' when `buffer' is nil.
11220 (multi-isearch-next-buffer-from-list): Don't fallback to
11221 `(current-buffer)' when `buffer' is nil. (Bug#4947)
11222
11223 2009-11-30 Juri Linkov <juri@jurta.org>
11224
11225 * misearch.el (multi-isearch-read-buffers): Move canonicalization
11226 of buffers with `get-buffer' to `multi-isearch-buffers'.
11227 (multi-isearch-buffers, multi-isearch-buffers-regexp):
11228 Canonicalize BUFFERS with `get-buffer'. Doc fix.
11229 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
11230 FILES with `expand-file-name' converting relative file names
11231 to absolute. Doc fix. (Bug#4727)
11232
11233 2009-11-30 Juri Linkov <juri@jurta.org>
11234
11235 * misearch.el (multi-isearch-read-buffers)
11236 (multi-isearch-read-matching-buffers): New functions.
11237 (multi-isearch-buffers, multi-isearch-buffers-regexp):
11238 Use them in the `interactive' spec. Doc fix.
11239 (multi-isearch-read-files, multi-isearch-read-matching-files):
11240 New functions.
11241 (multi-isearch-files, multi-isearch-files-regexp):
11242 Use them in the `interactive' spec. Doc fix. (Bug#4725)
11243
11244 2009-11-30 Juri Linkov <juri@jurta.org>
11245
11246 * doc-view.el (doc-view-continuous):
11247 Rename from `doc-view-continuous-mode'.
11248 (doc-view-menu): Move "Toggle display" to the top.
11249 Add submenu "Continuous" with radio buttons "Off"/"On"
11250 and "Save as Default".
11251 (doc-view-scroll-up-or-next-page)
11252 (doc-view-scroll-down-or-previous-page)
11253 (doc-view-next-line-or-next-page)
11254 (doc-view-previous-line-or-previous-page): Rename
11255 `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
11256
11257 2009-11-30 Juri Linkov <juri@jurta.org>
11258
11259 * comint.el (comint-mode-map): Rebind `M-r' from
11260 `comint-previous-matching-input' to
11261 `comint-history-isearch-backward-regexp'.
11262 Unbind `M-s' to allow global key binding `M-s'.
11263 Add menu items for `comint-history-isearch-backward' and
11264 `comint-history-isearch-backward-regexp'. (Bug#3746)
11265
11266 2009-11-30 Juri Linkov <juri@jurta.org>
11267
11268 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
11269 For def=recenter, replace `recenter' with `recenter-top-bottom'
11270 that is called with `this-command' and `last-command' let-bound
11271 to `recenter-top-bottom'. When the last `def' was not `recenter',
11272 set `recenter-last-op' to nil. (Bug#4981)
11273
11274 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
11275
11276 Minor cleanup and simplification.
11277 * filecache.el (file-cache-add-directory)
11278 (file-cache-add-directory-recursively)
11279 (file-cache-add-from-file-cache-buffer)
11280 (file-cache-delete-file-regexp, file-cache-delete-directory)
11281 (file-cache-files-matching-internal, file-cache-display): Use dolist.
11282 (file-cache-temp-minibuffer-message): Delete function.
11283 (file-cache-minibuffer-complete): Use minibuffer-message instead.
11284
11285 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
11286 Don't signal an error when bumping into EOB in tr, s, or y.
11287
11288 2009-11-29 Juri Linkov <juri@jurta.org>
11289
11290 * startup.el (fancy-about-text): Fix wording of Guided Tour.
11291 (Bug#4960)
11292
11293 * descr-text.el (describe-char-unidata-list): Use lowercase name
11294 for "Unicode name" like in other tags.
11295
11296 2009-11-29 Juri Linkov <juri@jurta.org>
11297
11298 * ediff-util.el (ediff-minibuffer-with-setup-hook):
11299 New compatibility macro.
11300 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
11301
11302 2009-11-29 Juri Linkov <juri@jurta.org>
11303
11304 Add defcustom to define the cycling order of `recenter-top-bottom'.
11305 (Bug#4981)
11306
11307 * window.el (recenter-last-op): Doc fix.
11308 (recenter-positions): New defcustom.
11309 (recenter-top-bottom): Rewrite to use `recenter-positions'.
11310 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
11311
11312 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
11313
11314 Improve integration of Tramp and ange-ftp in eshell.
11315
11316 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
11317 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
11318 (eshell/sudo): Flatten args. Let-bind `default-directory'.
11319
11320 * eshell/esh-util.el (top): Require also Tramp when compiling.
11321 (eshell-directory-files-and-attributes): Check for FTP remote
11322 connection.
11323 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
11324 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
11325 (eshell-file-attributes): Handle ".". Return `entry'.
11326
11327 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
11328 (ange-ftp-directory-files-and-attributes)
11329 (ange-ftp-real-directory-files-and-attributes): New defuns.
11330
11331 * net/tramp.el (tramp-maybe-open-connection): Open the remote
11332 shell with "exec" when possible. This prevents trailing prompts
11333 in `start-file-process'.
11334
11335 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
11336
11337 Try and remove assumptions about point-min==1.
11338 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
11339 (rng-compute-mode-line-string): Show the validation percentage in
11340 terms of the narrowed text, not the widened text.
11341 (rng-do-some-validation): Don't catch internal errors when debugging.
11342 (rng-first-error): Simplify.
11343 (rng-after-change-function): Remove work around. AFAIK the bug has
11344 been fixed a while ago.
11345
11346 * image-mode.el (image-minor-mode): Exit more gracefully when the image
11347 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
11348
11349 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
11350
11351 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
11352 `cd' doesn't always do it for us (bug#5067).
11353
11354 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
11355 on 2009-10-25 as part of some other change (bug#5067).
11356
11357 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
11358
11359 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
11360 `suspicious'.
11361 (byte-compile-warnings): Use byte-compile-warning-types.
11362 (byte-compile-save-excursion): Warn about use of set-buffer right
11363 after save-excursion.
11364
11365 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
11366 the excursion as well.
11367
11368 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
11369
11370 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
11371 providing a Tramp related implementation of "su" and "sudo".
11372 (eshell-unix-initialize): Add "su" and "sudo".
11373
11374 2009-11-27 Daiki Ueno <ueno@unixuser.org>
11375
11376 * net/socks.el (socks-send-command): Convert binary request to
11377 unibyte before sending. This fixes mishandling of some port
11378 numbers such as 129.
11379
11380 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
11381
11382 * help.el (describe-bindings-internal): Remove `interactive'.
11383
11384 * man.el (Man-completion-table): Trim a terminating "(".
11385 Remove the space between name page a section.
11386 Add the command's description on the `help-echo' property.
11387 Remove `process-connection-type' binding since it's unused by
11388 call-process.
11389 Provide completion for the "<section> <name>" format as well.
11390 (Man-default-man-entry): Remove spurious var shadowing the argument.
11391
11392 2009-11-26 Kevin Ryde <user42@zip.com.au>
11393
11394 * log-view.el: Add "Keywords: tools", since its other keywords
11395 aren't in finder-known-keywords, and following vc.el.
11396
11397 * sha1.el (sha1-string-external): default-directory "/" in case
11398 otherwise non-existent. process-connection-type pipe for touch of
11399 efficiency recommended by elisp manual. (An aside in Bug#3911.)
11400
11401 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
11402
11403 Misc coding convention cleanups.
11404 * htmlfontify.el (hfy-init-kludge-hook): Rename from
11405 hfy-init-kludge-hooks.
11406 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
11407 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
11408 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
11409 and push.
11410 (hfy-slant, hfy-weight): Use tables rather than code.
11411 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
11412 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
11413 (hfy-face-attr-for-class): Initialize `face-spec' directly.
11414 (hfy-face-to-css): Remove `nconc' with single arg.
11415 (hfy-p-to-face-lennart): Use `or'.
11416 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
11417 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
11418 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
11419 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
11420 (hfy-force-fontification): Use run-hooks.
11421
11422 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
11423
11424 Various minor fixes.
11425 * htmlfontify.el (hfy-default-header): Add toggle_invis since
11426 Javascript belongs in the header, not the body.
11427 (hfy-javascript): Remove.
11428 (hfy-fontify-buffer): Don't insert it any more.
11429 (hfy-face-at): Handle (face0 face1 face2) style face properties.
11430 Fix bug in invis handling when there were no invis props in a chunk.
11431
11432 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
11433
11434 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
11435
11436 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
11437
11438 * finder.el (finder-mode-map): Add a menu.
11439
11440 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
11441
11442 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
11443 "unsigned" structs.
11444
11445 (verilog-leap-to-head, verilog-backward-token): Handle "disable
11446 fork" statement better.
11447
11448 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
11449
11450 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
11451 (verilog-delete-auto, verilog-delete-empty-auto-pair)
11452 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
11453 Reported by Clay Douglass.
11454
11455 (verilog-auto-inst, verilog-auto-star-safe)
11456 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
11457 Fix removing "// Interfaces" when saving .* expansions. Reported by
11458 Pierre-David Pfister.
11459
11460 2009-11-26 Glenn Morris <rgm@gnu.org>
11461
11462 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
11463 the scope.
11464
11465 2009-11-25 Johan Bockgård <bojohan@gnu.org>
11466
11467 * vc-annotate.el (vc-annotate-revision-previous-to-line):
11468 Really use previous revision.
11469
11470 2009-11-25 Kevin Ryde <user42@zip.com.au>
11471
11472 * man.el (Man-completion-table): default-directory "/" in case
11473 doesn't otherwise exist. process-environment COLUMNS=999 so as
11474 not to truncate long names. process-connection-type pipe to avoid
11475 any chance of hitting the pseudo-tty TIOCGWINSZ.
11476 (man): completion-ignore-case t for friendliness and since man
11477 itself is case-insensitive on the command line.
11478 Further to Bug#3717.
11479
11480 * arc-mode.el: Add "Keywords: files", so the details in its
11481 commentary can be reached from finder-by-keyword.
11482 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
11483 editing mode, but it's comms related and sgml-mode.el has "comm"
11484 on that basis too.
11485 * textmodes/bibtex-style.el: Add "Keywords: tex".
11486 * international/isearch-x.el, international/ja-dic-cnv.el:
11487 * international/ja-dic-utl.el, international/kkc.el:
11488 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
11489
11490 2009-11-25 Juri Linkov <juri@jurta.org>
11491
11492 * man.el (Man-completion-table): Modify regexp to include
11493 section names to completion strings. (Bug#3717)
11494
11495 2009-11-25 Juri Linkov <juri@jurta.org>
11496
11497 Search recursively in gzipped files. (Bug#4982)
11498
11499 * progmodes/grep.el (grep-highlight-matches): Add new options
11500 `always' and `auto'. Doc fix.
11501 (grep-process-setup): Check `grep-highlight-matches' for
11502 `auto-detect' to determine the need to compute grep defaults.
11503 Move Windows/DOS specific --colors settings handling
11504 to `grep-compute-defaults'. Check `grep-highlight-matches'
11505 to get the value of "--color=".
11506 (grep-compute-defaults): Compute `grep-highlight-matches' when it
11507 has the value `auto-detect'. Move Windows/DOS specific settings
11508 from `grep-process-setup'.
11509 (zrgrep): New command with alias `rzgrep'.
11510
11511 2009-11-25 Juri Linkov <juri@jurta.org>
11512
11513 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
11514 to nil instead of switching off view-mode. (Bug#4896)
11515
11516 2009-11-25 Juri Linkov <juri@jurta.org>
11517
11518 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
11519
11520 * mwheel.el (mwheel-scroll-up-function)
11521 (mwheel-scroll-down-function): New defvars.
11522 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
11523 `scroll-up', and `mwheel-scroll-down-function' instead of
11524 `scroll-down'.
11525
11526 * doc-view.el (doc-view-scroll-up-or-next-page)
11527 (doc-view-scroll-down-or-previous-page): Add optional ARG.
11528 Use this ARG in the call to image-scroll-up/image-scroll-down.
11529 Change `interactive' spec to "P". Goto next/previous page only
11530 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
11531 SPC/DEL case). Doc fix.
11532 (doc-view-next-line-or-next-page)
11533 (doc-view-previous-line-or-previous-page): Rename arg to ARG
11534 for consistency.
11535 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
11536 `doc-view-scroll-up-or-next-page', and buffer-local
11537 `mwheel-scroll-down-function' to
11538 `doc-view-scroll-down-or-previous-page'.
11539
11540 2009-11-25 Juri Linkov <juri@jurta.org>
11541
11542 Provide additional default values (directories at other Dired
11543 windows) via M-n in the minibuffer of some Dired commands.
11544
11545 * dired-aux.el (dired-diff, dired-compare-directories)
11546 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
11547 `minibuffer-default' in `minibuffer-with-setup-hook'.
11548 (dired-dwim-target-directory): Find a window that displays Dired
11549 buffer instead of failing when the next window is not Dired.
11550 Use `get-window-with-predicate' to find for the next Dired window.
11551 (dired-dwim-target-defaults): New function.
11552
11553 * ediff-util.el (ediff-read-file-name):
11554 Use `dired-dwim-target-defaults' to set `minibuffer-default'
11555 in `minibuffer-with-setup-hook'.
11556
11557 2009-11-25 Juri Linkov <juri@jurta.org>
11558
11559 Provide additional default values (file name at point or at the
11560 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
11561
11562 * minibuffer.el (read-file-name-defaults): New function.
11563 (read-file-name): Reset `minibuffer-default' to nil when
11564 it duplicates initial input `insdef'.
11565 Bind `minibuffer-default-add-function' to lambda that
11566 calls `read-file-name-defaults' in `minibuffer-selected-window'.
11567 (minibuffer-insert-file-name-at-point): New command.
11568
11569 * files.el (file-name-at-point-functions): New defcustom.
11570 (find-file-default): Remove defvar.
11571 (find-file-read-args): Don't use `find-file-default'.
11572 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
11573 to `read-file-name'.
11574 (find-file-literally): Use `read-file-name' with
11575 `confirm-nonexistent-file-or-buffer'.
11576
11577 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
11578
11579 * dired.el (dired-read-dir-and-switches):
11580 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
11581 to `read-file-name'.
11582 (dired-file-name-at-point): New function.
11583 (dired-mode): Add hook `dired-file-name-at-point' to
11584 `file-name-at-point-functions'.
11585
11586 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
11587
11588 Really make the *Completions* window soft-dedicated (bug#5030).
11589 * window.el (window--display-buffer-2): Add `dedicated' argument.
11590 (display-buffer): Pass it when needed so the dedicated flag is set
11591 after calling set-window-buffer, which would otherwise reset it.
11592
11593 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
11594
11595 * progmodes/meta-mode.el (meta-complete-symbol):
11596 * progmodes/etags.el (complete-tag):
11597 * mail/mailabbrev.el (mail-abbrev-complete-alias):
11598 Use completion-in-region.
11599
11600 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
11601 (dabbrev-completion): Use completion-in-region.
11602 (dabbrev--abbrev-at-point): Simplify regexp.
11603
11604 * abbrev.el (abbrev--before-point): Use word-motion functions
11605 if :regexp is not specified (bug#5031).
11606
11607 * subr.el (string-prefix-p): New function.
11608
11609 * man.el (Man-completion-cache): New var.
11610 (Man-completion-table): Use it.
11611
11612 * vc.el (vc-print-log-internal): Make `limit' optional for better
11613 compatibility (e.g. with vc-annotate.el).
11614
11615 2009-11-24 Kevin Ryde <user42@zip.com.au>
11616
11617 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
11618 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
11619
11620 * emacs-lisp/elint.el (elint-add-required-env): Better error message
11621 when .el source file not found or other error.
11622
11623 2009-11-24 Markus Triska <markus.triska@gmx.at>
11624
11625 * linum.el (linum-update-window): Ignore intangible (bug#4996).
11626
11627 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
11628
11629 Handle the [back] button properly (bug#4979).
11630 * descr-text.el (describe-text-properties): Add a `buffer' argument.
11631 Use help-setup-xref, help-buffer, and with-help-window.
11632 (describe-char): Add `buffer' argument.
11633 Pass proper command to help-setup-xref. Don't meddle with
11634 help-xref-stack-item directly.
11635 (describe-text-category): Use with-help-window and help-buffer.
11636
11637 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
11638 for the displayed buffer (bug#4887).
11639
11640 * man.el (Man-completion-table): New function.
11641 (man): Use it.
11642
11643 2009-11-24 David Reitter <david.reitter@gmail.com>
11644
11645 * vc-git.el (vc-git-registered): Use checkout directory (where
11646 .git is) rather than the file's directory and a relative path spec
11647 to work around a bug in git.
11648
11649 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
11650
11651 Improve handling of processes on remote hosts.
11652
11653 * eshell/esh-util.el (eshell-path-env): New defvar.
11654 (eshell-parse-colon-path): New defun.
11655 (eshell-file-attributes): Use `eshell-parse-colon-path'.
11656
11657 * eshell/esh-ext.el (eshell-search-path):
11658 Use `eshell-parse-colon-path'.
11659 (eshell-remote-command): Remove argument HANDLER.
11660 (eshell-external-command): Check for FTP remote connection.
11661
11662 * eshell/esh-proc.el (eshell-gather-process-output):
11663 Use `file-truename', in order to start also symlinked files.
11664 Apply `start-file-process' instead of `start-process'.
11665 Shorten `command' to the local file name part.
11666
11667 * eshell/em-cmpl.el (eshell-complete-commands-list):
11668 Use `eshell-parse-colon-path'.
11669
11670 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
11671
11672 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
11673 to `eshell-directory-change-hook'.
11674
11675 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
11676
11677 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
11678 because it could be enabled automatically if view-read-only is non-nil.
11679
11680 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
11681
11682 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
11683 made on 2009-11-22.
11684
11685 2009-11-24 Glenn Morris <rgm@gnu.org>
11686
11687 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
11688 deleted variable bookmark-bmenu-bookmark-column.
11689
11690 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
11691
11692 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
11693
11694 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
11695
11696 * net/browse-url.el (browse-url-filename-alist): On Windows, add
11697 two slashes to the "file:" prefix.
11698 (browse-url-file-url): De-munge Cygwin filenames before passing
11699 them to Windows browser.
11700 (browse-url-default-windows-browser): Use call-process.
11701
11702 2009-11-23 Juri Linkov <juri@jurta.org>
11703
11704 Implement DocView Continuous mode. (Bug#4896)
11705 * doc-view.el (doc-view-continuous-mode): New defcustom.
11706 (doc-view-mode-map): Bind C-n/<down> to
11707 `doc-view-next-line-or-next-page', C-p/<up> to
11708 `doc-view-previous-line-or-previous-page'.
11709 (doc-view-next-line-or-next-page)
11710 (doc-view-previous-line-or-previous-page): New commands.
11711
11712 2009-11-23 Juri Linkov <juri@jurta.org>
11713
11714 Implement Isearch in comint input history. (Bug#3746)
11715 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
11716 `isearch-mode-hook'.
11717 (comint-history-isearch): New defcustom.
11718 (comint-history-isearch-backward)
11719 (comint-history-isearch-backward-regexp): New commands.
11720 (comint-history-isearch-message-overlay): New buffer-local variable.
11721 (comint-history-isearch-setup, comint-history-isearch-end)
11722 (comint-goto-input, comint-history-isearch-search)
11723 (comint-history-isearch-message, comint-history-isearch-wrap)
11724 (comint-history-isearch-push-state)
11725 (comint-history-isearch-pop-state): New functions.
11726
11727 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
11728
11729 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
11730 return.
11731 (tramp-handle-make-symbolic-link)
11732 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
11733 Quote file names.
11734 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
11735 (tramp-handle-process-file): Use it.
11736
11737 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
11738
11739 * window.el (move-to-window-line-last-op): Remove.
11740 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
11741
11742 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
11743
11744 Make M-r mirror the new cycling behavior of C-l.
11745 * window.el (move-to-window-line-last-op): New var.
11746 (move-to-window-line-top-bottom): New command.
11747 (global-map): Bind M-r move-to-window-line-top-bottom.
11748
11749 2009-11-23 Sven Joachim <svenjoac@gmx.de>
11750
11751 * dired-x.el (dired-guess-shell-alist-default):
11752 Support xz format. (Bug#4953)
11753
11754 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
11755
11756 * emulation/viper-cmd.el: Use viper-last-command-char instead of
11757 last-command-char/last-command-event.
11758 (viper-prefix-arg-value): Do correct conversion of event-char for
11759 XEmacs.
11760
11761 * emulation/viper-util.el, emulation/viper.el:
11762 Use viper-last-command-char instead of
11763 last-command-char/last-command-event.
11764
11765 * ediff-init.el, ediff-mult.el, ediff-util.el:
11766 Replace last-command-char and last-command-event
11767 with (ediff-last-command-char) everywhere.
11768
11769 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
11770 created in fundamental mode.
11771
11772 * ediff.el (ediff-version): Revert the change of interactive-p to
11773 called-interactively-p.
11774
11775 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
11776
11777 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
11778 generation from word-movement command names.
11779
11780 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
11781
11782 * cus-start.el (all): Add native condition for font-use-system-font.
11783
11784 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
11785
11786 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
11787 Correct the patch from 2009-11-18. (Bug#3910)
11788
11789 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
11790
11791 * progmodes/subword.el: Rename from lisp/subword.el.
11792
11793 * subword.el: Rename to progmodes/subword.el.
11794
11795 * Makefile.in (ELCFILES): Adapt to subword.el move.
11796
11797 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11798 Stefan Monnier <monnier@iro.umontreal.ca>
11799
11800 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
11801 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
11802 (bookmark-bmenu-show-filenames): Use push.
11803 (bookmark-bmenu-hide-filenames): Use local var instead of
11804 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
11805 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
11806 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
11807 filenames now that the bookmark names are always available.
11808
11809 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
11810
11811 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
11812 (bookmark-search-pattern): Move and leave unbound.
11813 (bookmark-bmenu-mode-map): Change binding.
11814 (bookmark-read-search-input): Simplify.
11815 Don't use text-char-description. Don't error on non-char events.
11816 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
11817 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
11818 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
11819 Use a local var for the timer.
11820 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
11821 (i.e. bookmark-bmenu-search).
11822
11823 2009-11-21 Glenn Morris <rgm@gnu.org>
11824
11825 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
11826
11827 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
11828
11829 * net/browse-url.el (browse-url-default-windows-browser):
11830 Use cygstart for cygwin.
11831
11832 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
11833
11834 * bookmark.el: Formatting and doc fixes only:
11835 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
11836 (bookmark-bmenu-search): Wrap to fit within 80 columns.
11837 Minor grammar and punctuation fixes in doc string.
11838 (bookmark-read-search-input): Adjust to fit within 80 columns.
11839
11840 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
11841
11842 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
11843 (c-backward-into-nomenclature): Adapt to subword renaming.
11844
11845 * subword.el (subword-forward, subword-backward, subword-mark)
11846 (subword-kill, subword-backward-kill, subword-transpose)
11847 (subword-downcase, subword-upcase, subword-capitalize)
11848 (subword-forward-internal, subword-backward-internal):
11849 Rename from forward-subword, backward-subword, mark-subword,
11850 kill-subword, backward-kill-subword, transpose-subwords,
11851 downcase-subword, upcase-subword, capitalize-subword,
11852 forward-subword-internal, backward-subword-internal.
11853
11854 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11855
11856 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
11857 New options.
11858 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
11859 New vars.
11860 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
11861 (bookmark-bmenu-filter-alist-by-regexp)
11862 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
11863 (bookmark-bmenu-search): New command.
11864 (bookmark-bmenu-mode-map): Bind it.
11865
11866 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
11867
11868 * progmodes/cc-cmds.el: declare-functioned forward-subword and
11869 backward-subword to quit the byte-compiler.
11870
11871 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
11872
11873 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
11874
11875 * progmodes/cc-cmds.el (c-update-modeline)
11876 (c-forward-into-nomenclature, c-backward-into-nomenclature):
11877 Refer to subword.el functions instead of cc-subword.el.
11878
11879 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
11880 subword.el functions instead of cc-subword.el.
11881
11882 * progmodes/cc-subword.el: Rename to subword.el.
11883 * subword.el: Rename from progmodes/cc-subword.el.
11884 (subword-mode-map): Rename from c-subword-mode-map.
11885 (subword-mode): Rename from c-subword-mode.
11886 (global-subword-mode): New global minor mode.
11887 (forward-subword): Rename from c-forward-subword.
11888 (backward-subword): Rename from c-backward-subword.
11889 (mark-subword): Rename from c-mark-subword.
11890 (kill-subword): Rename from c-kill-subword.
11891 (backward-kill-subword): Rename from c-backward-kill-subword.
11892 (transpose-subwords): Rename from c-tranpose-subword.
11893 (downcase-subword): Rename from c-downcase-subword.
11894 (capitalize-subword): Rename from c-capitalize-subword.
11895 (forward-subword-internal): Rename from c-forward-subword-internal.
11896 (backward-subword-internal): Rename from c-backward-subword-internal.
11897
11898 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
11899
11900 * vc.el (vc-deduce-fileset): Allow non-state changing operations
11901 from a dired buffer.
11902 (vc-dired-deduce-fileset): New function.
11903 (vc-root-diff, vc-print-root-log): Use it.
11904
11905 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
11906 nil LIMIT argument to vc-print-log-internal.
11907
11908 2009-11-20 Glenn Morris <rgm@gnu.org>
11909
11910 * Makefile.in (ELCFILES): Regenerate.
11911
11912 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
11913
11914 * calc/calc.el (calc-set-mode-line):
11915 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
11916 (math-format-number): Rename `math-format-complement-signed' to
11917 `math-format-twos-complement'.
11918
11919 * calc/calc-bin.el (math-format-twos-complement): Rename from
11920 math-format-complement-signed.
11921 (calc-radix): Rename `calc-complement-signed-mode' to
11922 `calc-twos-complement-mode'.
11923 (calc-octal-radix, calc-hex-radix): Add an argument for
11924 two's complement.
11925
11926 * calc/calc-embed.el (calc-embedded-mode-vars):
11927 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
11928
11929 * calc/calc-ext.el (calc-init-extensions):
11930 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
11931 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
11932
11933 * calc/calc-units.el (math-build-units-table-buffer):
11934 Let `calc-twos-complement-mode' be nil.
11935
11936 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
11937 entries.
11938
11939 * calc/calc-vec.el (calcFunc-vunpack):
11940 * calc/calc-aent.el (calc-do-calc-eval):
11941 * calc/calc-forms.el (math-format-date):
11942 * calc/calc-graph.el (calc-graph-plot):
11943 * calc/calc-math.el (math-use-emacs-fn):
11944 * calc/calccomp.el (math-compose-expr):
11945 Let `calc-twos-complement-mode' be nil.
11946
11947 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11948
11949 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
11950 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
11951 * minibuffer.el (completion-in-region-functions): New hook.
11952 (completion-in-region): New function.
11953 * emacs-lisp/lisp.el (lisp-complete-symbol):
11954 * pcomplete.el (pcomplete-std-complete): Use it.
11955
11956 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11957
11958 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
11959 (latex-complete-alist): New vars.
11960 (latex-string-prefix-p, latex-complete-bibtex-keys)
11961 (latex-complete-envnames, latex-complete-refkeys)
11962 (latex-complete-data): New functions.
11963 (latex-complete, latex-indent-or-complete): New commands.
11964
11965 * window.el (display-buffer-mark-dedicated): New var.
11966 (display-buffer): Obey it.
11967 * minibuffer.el (minibuffer-completion-help): Use it.
11968
11969 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
11970
11971 * filecache.el (file-cache-add-file): Use push and cons.
11972 (file-cache-delete-file-regexp): Use push.
11973 (file-cache-complete): Use completion-in-region.
11974
11975 * simple.el (with-wrapper-hook): Fix thinko.
11976
11977 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
11978 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
11979 Use with-current-buffer and string-to-number.
11980 (hfy-fallback-colour-values): Use assoc-string.
11981 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
11982 (hfy-face-at): Remove unused var `found-face'.
11983 (hfy-compile-stylesheet): Remove unused var `css'.
11984 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
11985 and `orig-buffer'.
11986 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
11987 Use with-current-buffer.
11988 (hfy-text-p): Use expand-file-name and fewer setq.
11989
11990 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
11991
11992 * htmlfontify.el, hfy-cmap.el: New files.
11993
11994 2009-11-19 Juri Linkov <juri@jurta.org>
11995
11996 * minibuffer.el (completions-format): New defcustom.
11997 (completion--insert-strings): Implement vertical format.
11998
11999 * simple.el (switch-to-completions): Move point to the first
12000 completion when point was at the beginning of the buffer.
12001
12002 2009-11-19 Juri Linkov <juri@jurta.org>
12003
12004 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
12005
12006 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
12007
12008 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
12009
12010 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
12011 (mail-signature): Change default to t.
12012 (mail-from-style): Deprecate `system-default' value.
12013 (mail-insert-from-field): For default value of mail-from-style,
12014 default to `angles' unless `angles' needs quoting and `parens'
12015 does not.
12016 (mail-citation-prefix-regexp): Use citation regexp from
12017 message-mode.
12018
12019 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
12020
12021 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
12022 Set variables for computing the prompt for reading password.
12023
12024 2009-11-19 Glenn Morris <rgm@gnu.org>
12025
12026 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
12027
12028 * textmodes/flyspell.el (sgml-lexical-context): Declare.
12029
12030 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
12031 (newsticker-treeview-listwindow-height): Fix custom type.
12032
12033 2009-11-19 Kenichi Handa <handa@m17n.org>
12034
12035 * descr-text.el (describe-char-padded-string): Compose with TAB
12036 only if there's a font for CH.
12037 (describe-char): Fix the condition for detecting a trivial composition.
12038
12039 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
12040
12041 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
12042 more accurate version of the regexp. (Bug#3910)
12043
12044 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
12045
12046 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
12047
12048 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
12049
12050 * font-setting.el (font-use-system-font): Declare for byte-compiler.
12051 (font-setting-change-default-font): Fix typo in docstring.
12052
12053 2009-11-18 Alan Mackenzie <acm@muc.de>
12054
12055 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
12056
12057 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
12058
12059 * font-setting.el (font-use-system-font): Move ...
12060
12061 * cus-start.el (all): ... to here.
12062
12063 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
12064
12065 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
12066 Don't set `ad-return-value' if `ad-do-it' doesn't.
12067
12068 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
12069 modification time.
12070
12071 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
12072
12073 * menu-bar.el: Put "Use system font" in Option-menu.
12074 (menu-bar-options-save): Add font-use-system-font.
12075
12076 * loadup.el: If feature system-font-setting or font-render-setting is
12077 there, load font-setting.
12078
12079 * Makefile.in (ELCFILES): Add font-settings.el.
12080 * font-setting.el: New file.
12081
12082 2009-11-17 Glenn Morris <rgm@gnu.org>
12083
12084 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
12085
12086 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
12087 Preserve point in the list buffer. (Bug#4939)
12088 Use point-at-eol.
12089 (newsticker--treeview-list-update-highlight)
12090 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
12091
12092 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
12093
12094 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
12095 Remove.
12096
12097 * calc/calc-ext.el (calc-init-extensions): Remove references to
12098 symclip.
12099
12100 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
12101
12102 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
12103 * calc/calc-help.el (calc-b-prefix-help): Remove references to
12104 `calc-symclip'.
12105
12106 2009-11-16 Kevin Ryde <user42@zip.com.au>
12107
12108 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
12109 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
12110
12111 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
12112 (lm-keywords-list): Allow comma-only separator like "foo,bar".
12113 Ignore trailing spaces by omit-nulls to split-string (fixing
12114 regression from Emacs 21 due to the incompatible split-string
12115 change). (Bug #4928.)
12116
12117 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
12118
12119 * vc.el (vc-log-show-limit): Default to 2000.
12120 (vc-print-log-internal): Insert buttons to request more entries
12121 when limiting the output.
12122
12123 * vc-sccs.el (vc-sccs-print-log):
12124 * vc-rcs.el (vc-rcs-print-log):
12125 * vc-cvs.el (vc-cvs-print-log):
12126 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
12127 LIMIT is non-nil.
12128
12129 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
12130
12131 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
12132 error when `tramp-gvfs-dbus-event-vector' is set.
12133 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
12134
12135 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
12136
12137 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
12138
12139 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
12140
12141 * net/dbus.el (dbus-unregister-service): New defun.
12142 (dbus-register-property): Register the handlers of
12143 "org.freedesktop.DBus.Properties" for SERVICE.
12144 (dbus-property-handler): Fix docstring.
12145
12146 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12147
12148 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
12149 Quote doc string reference in defvaralias as it is not in special form.
12150 (byte-compile-output-docform): Doc fix.
12151
12152 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
12153
12154 * calc/calc.el (math-2-word-size, math-half-2-word-size)
12155 (calc-complement-signed-mode): New variables.
12156 (calc-set-mode-line): Add indicator for twos-complements.
12157 (math-format-number): Format twos-complement notation.
12158
12159 * calc/calc-bin.el (calc-word-size): Reset the variables
12160 `math-2-word-size' and `math-half-2-word-size'.
12161 (math-format-complement-signed, math-symclip, calcFunc-symclip)
12162 (calc-symclip): New functions.
12163
12164 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
12165
12166 * calc/calc-embed.el (calc-embedded-mode-vars):
12167 Add `calc-complement-signed-mode' to the list of modes.
12168
12169 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
12170 (calc-b-oper-keys): Add `calc-symclip' to list.
12171
12172 * calc/calc-ext.el (math-read-number-fancy): Read complement
12173 signed numbers.
12174 (calc-init-extensions): Add binding for `calc-symclip'.
12175 Add autoload for `calcFunc-symclip' and `calc-symclip'.
12176
12177 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
12178 `calc-symclip'.
12179 (calc-modes-menu): Add item for twos complement mode.
12180
12181 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
12182
12183 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
12184
12185 * register.el (jump-to-register, insert-register): Handle Semantic
12186 tags. From commented-out advice in semantic/senator.el.
12187
12188 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
12189
12190 * vc.el (vc-log-show-limit): New variable.
12191 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
12192 when using a prefix argument.
12193 (vc-print-log-internal): Add new argument LIMIT.
12194
12195 * vc-svn.el (vc-svn-print-log):
12196 * vc-mtn.el (vc-mtn-print-log):
12197 * vc-hg.el (vc-hg-print-log):
12198 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
12199 pass it to the log command when set. Make the BUFFER argument
12200 non-optional.
12201
12202 * vc-sccs.el (vc-sccs-print-log):
12203 * vc-rcs.el (vc-rcs-print-log):
12204 * vc-git.el (vc-git-print-log):
12205 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
12206 ignore it. Make the BUFFER argument non-optional
12207
12208 * bindings.el (mode-line-buffer-identification): Do not purecopy.
12209
12210 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
12211
12212 * dired.el (dired-mode-map): Move encryption items to "Operate"
12213 menu (Bug#4703).
12214
12215 * strokes.el (strokes-update-window-configuration): Make strokes
12216 buffer current before erasing (Bug#4906).
12217
12218 2009-11-15 Juri Linkov <juri@jurta.org>
12219
12220 * simple.el (set-mark-default-inactive): Add :type, :group
12221 and :version. (Bug#4876)
12222
12223 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
12224
12225 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
12226 (archive-unique-fname): ... here. (Bug#4929)
12227
12228 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
12229
12230 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
12231 with a real fix.
12232
12233 * novice.el (disabled-command-function): Add useful args.
12234 Setup the help buffer so that [back] works.
12235 Remove redundant call to help-mode.
12236 (disabled-command-function): Use `case'.
12237 (en/disable-command): New function extracted from enable-command.
12238 (enable-command, disable-command): Use it.
12239
12240 2009-11-14 Glenn Morris <rgm@gnu.org>
12241
12242 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
12243 constants. (Bug#4913)
12244
12245 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
12246
12247 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
12248
12249 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
12250 defined in C that have no doc-strings. (Bug#1063)
12251
12252 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
12253
12254 * cus-edit.el (data, files):
12255 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
12256
12257 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
12258
12259 * simple.el (shell-command): Doc fix (Bug#4891).
12260
12261 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
12262
12263 2009-11-14 Glenn Morris <rgm@gnu.org>
12264
12265 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
12266 statements for vc-diff, emerge-quit, and rmail-cease-edit.
12267 If they are already loaded, eval-after-load will do the right thing.
12268
12269 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
12270 compiling.
12271
12272 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
12273
12274 * simple.el (x-selection-owner-p): Declare.
12275 (read-mail-command): Use custom radio type rather than choice.
12276 (completion-no-auto-exit): Doc fix.
12277
12278 * custom.el (defgroup):
12279 * epg-config.el (epg): Doc fixes.
12280
12281 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
12282
12283 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
12284 * international/ccl.el (define-ccl-program): Do not purecopy the
12285 docstring, defconst does it anyway.
12286
12287 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
12288
12289 * add-log.el (add-change-log-entry): Avoid displaying the changelog
12290 a second time.
12291
12292 * x-dnd.el (x-dnd-maybe-call-test-function):
12293 * window.el (split-window-vertically):
12294 * whitespace.el (whitespace-help-on):
12295 * vc-rcs.el (vc-rcs-consult-headers):
12296 * userlock.el (ask-user-about-lock-help)
12297 (ask-user-about-supersession-help):
12298 * type-break.el (type-break-force-mode-line-update):
12299 * time-stamp.el (time-stamp-conv-warn):
12300 * terminal.el (te-set-output-log, te-more-break, te-filter)
12301 (te-sentinel, terminal-emulator):
12302 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
12303 (term-write-input-ring, term-check-source, term-start-output-log):
12304 (term-display-buffer-line, term-dynamic-list-completions):
12305 (term-ansi-make-term, serial-term):
12306 * subr.el (selective-display):
12307 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
12308 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
12309 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
12310 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
12311 (speedbar-remove-localized-speedbar-support)
12312 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
12313 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
12314 (speedbar-buffers-line-directory):
12315 * simple.el (shell-command-on-region, append-to-buffer)
12316 (prepend-to-buffer):
12317 * shadowfile.el (shadow-save-todo-file):
12318 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
12319 (scroll-bar-maybe-set-window-start):
12320 * sb-image.el (speedbar-image-dump):
12321 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
12322 (load-save-place-alist-from-file):
12323 * ps-samp.el (ps-print-message-from-summary):
12324 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
12325 (ps-background-image, ps-begin-job, ps-do-despool):
12326 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
12327 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
12328 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
12329 (pr-call-process, pr-file-list, pr-interface-save):
12330 * novice.el (disabled-command-function)
12331 (enable-command, disable-command):
12332 * mouse.el (mouse-buffer-menu-alist):
12333 * mouse-copy.el (mouse-kill-preserving-secondary):
12334 * macros.el (kbd-macro-query):
12335 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
12336 * informat.el (batch-info-validate):
12337 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
12338 * hippie-exp.el (try-expand-dabbrev-visible):
12339 * help-mode.el (help-make-xrefs):
12340 * help-fns.el (describe-variable):
12341 * generic-x.el (bat-generic-mode-run-as-comint):
12342 * finder.el (finder-mouse-select):
12343 * find-dired.el (find-dired-sentinel):
12344 * filesets.el (filesets-file-close):
12345 * files.el (list-directory):
12346 * faces.el (list-faces-display, describe-face):
12347 * facemenu.el (list-colors-display):
12348 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
12349 * epg.el (epg--process-filter, epg-cancel):
12350 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
12351 (epa--read-signature-type):
12352 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
12353 (emerge-file-names):
12354 * ehelp.el (electric-helpify):
12355 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
12356 * ediff-vers.el (rcs-ediff-view-revision):
12357 * ediff-util.el (ediff-setup):
12358 * ediff-mult.el (ediff-append-custom-diff):
12359 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
12360 (ediff-wordify):
12361 * echistory.el (Electric-command-history-redo-expression):
12362 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
12363 * disp-table.el (describe-display-table):
12364 * dired.el (dired-find-buffer-nocreate):
12365 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
12366 * dabbrev.el (dabbrev--same-major-mode-p):
12367 * chistory.el (list-command-history):
12368 * apropos.el (apropos-documentation):
12369 * allout.el (allout-obtain-passphrase):
12370 (allout-copy-exposed-to-buffer):
12371 (allout-verify-passphrase): Use with-current-buffer.
12372
12373 2009-11-13 Glenn Morris <rgm@gnu.org>
12374
12375 * Makefile.in (ELCFILES): Regenerate.
12376
12377 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
12378
12379 * net/dbus.el (dbus-registered-objects-table): Rename from
12380 `dbus-registered-functions-table', because it contains also properties.
12381 (dbus-unregister-object): Unregister also properties.
12382 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
12383 Use a timeout of 500 msec, in order to not block.
12384 (dbus-register-property, dbus-property-handler): New defuns.
12385
12386 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
12387
12388 * simple.el (minibuffer-default-add-completions): Drop deprecated
12389 4th arg.
12390
12391 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
12392
12393 * textmodes/artist.el (artist-mouse-choose-operation):
12394 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
12395 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
12396 (artist-compute-up-event-key): New function.
12397 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
12398
12399 2009-11-13 Kenichi Handa <handa@m17n.org>
12400
12401 * language/japan-util.el: Make sure that the value of jisx0208
12402 property is jisx0208 character.
12403
12404 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
12405
12406 * international/mule.el (auto-coding-regexp-alist): Only purecopy
12407 car or each item, not the whole list.
12408
12409 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
12410
12411 * minibuffer.el (minibuffer-completion-help):
12412 Use minibuffer-hide-completions.
12413
12414 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
12415
12416 * dired.el (dired-save-positions, dired-restore-positions): New funs.
12417 (dired-revert): Use them (bug#4880).
12418
12419 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
12420
12421 * tooltip.el (tooltip-frame-parameters): Undo previous change.
12422
12423 2009-11-12 Juri Linkov <juri@jurta.org>
12424
12425 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
12426 New functions.
12427 (find-file-literally-at-point): Alias of `ffap-literally'.
12428
12429 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
12430
12431 * textmodes/ispell.el (ispell-skip-region-alist):
12432 * textmodes/css-mode.el (auto-mode-alist):
12433 * progmodes/compile.el (auto-mode-alist):
12434 * international/mule.el (ctext-non-standard-encodings-alist)
12435 (ctext-non-standard-encodings-regexp):
12436 * simple.el (shell-command-switch, text-read-only):
12437 * replace.el (occur-mode-map):
12438 * paths.el (rmail-file-name):
12439 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
12440 * find-file.el (ff-special-constructs):
12441 * files.el (file-name-handler-alist):
12442 * composite.el: Purecopy strings.
12443
12444 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
12445
12446 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
12447
12448 * widget.el (define-widget): Purecopy the docstring.
12449 * international/mule-cmds.el (charset): Do not purecopy the
12450 docstring here, define-widget does it.
12451
12452 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
12453 * textmodes/bibtex-style.el (auto-mode-alist):
12454 * progmodes/inf-lisp.el (inferior-lisp-prompt):
12455 * progmodes/compile.el (compile-command):
12456 * language/korea-util.el (default-korean-keyboard):
12457 * international/mule-conf.el (file-coding-system-alist):
12458 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
12459 * tooltip.el (tooltip-frame-parameters):
12460 * newcomment.el (comment-end, comment-padding):
12461 * dired.el (dired-trivial-filenames):
12462 * comint.el (comint-file-name-prefix): Purecopy initial values.
12463
12464 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
12465
12466 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
12467 (tramp-advice-minibuffer-electric-tilde): Unload advices via
12468 `tramp-unload'.
12469 (tramp-advice-make-auto-save-file-name)
12470 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
12471 after removing the advice.
12472
12473 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
12474
12475 * progmodes/grep.el (grep-regexp-alist):
12476 * international/mule-cmds.el (iso-2022-control-alist):
12477 * emacs-lisp/timer.el (timer-duration-words):
12478 * subr.el (version-separator, version-regexp-alist):
12479 * minibuffer.el (completion-styles-alist):
12480 * faces.el (face-attribute-name-alist, list-faces-sample-text):
12481 Change defvars to defconsts.
12482
12483 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
12484 * loadup.el ("international/mule-conf"): Load the byte compiled version.
12485 * international/mule-conf.el: Allow to be byte compiled.
12486
12487 * international/mule.el (define-charset): Purecopy props.
12488 (load-with-code-conversion): Purecopy doc string and file name.
12489 (put-charset-property): Purecopy strings.
12490 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
12491
12492 * international/mule-cmds.el (register-input-method): Purecopy arguments.
12493 (define-char-code-property): Correctly purecopy the table.
12494
12495 * international/ccl.el (define-ccl-program): Purecopy the docstring.
12496
12497 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
12498
12499 * subr.el (add-hook): Purecopy strings.
12500 (eval-after-load): Purecopy load-history-regexp and the form.
12501
12502 * custom.el (custom-declare-group): Purecopy load-file-name.
12503
12504 * subr.el (menu-bar-separator): New defconst.
12505 * net/eudc.el (eudc-tools-menu):
12506 * international/mule-cmds.el (set-coding-system-map)
12507 (mule-menu-keymap):
12508 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
12509 * vc-hooks.el (vc-menu-map):
12510 * replace.el (occur-mode-map):
12511 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
12512 (menu-bar-edit-menu, menu-bar-goto-menu)
12513 (menu-bar-custom-menu, menu-bar-showhide-menu)
12514 (menu-bar-options-menu, menu-bar-tools-menu)
12515 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
12516 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
12517 (menu-bar-help-menu):
12518 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
12519 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
12520
12521 * term/x-win.el (x-gtk-stock-map):
12522 * progmodes/vera-mode.el (auto-mode-alist):
12523 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
12524 (inferior-lisp-program, inferior-lisp-load-command):
12525 * progmodes/hideshow.el (hs-special-modes-alist):
12526 * progmodes/gud.el (same-window-regexps):
12527 * progmodes/grep.el (grep-program, find-program, xargs-program):
12528 * net/telnet.el (same-window-regexps):
12529 * net/rlogin.el (same-window-regexps):
12530 * language/ethiopic.el (font-ccl-encoder-alist):
12531 * vc-sccs.el (vc-sccs-master-templates):
12532 * vc-rcs.el (vc-rcs-master-templates):
12533 * subr.el (cl-assertion-failed):
12534 * simple.el (next-error-overlay-arrow-position):
12535 * lpr.el (lpr-command):
12536 * locate.el (locate-ls-subdir-switches):
12537 * info.el (same-window-regexps, info)
12538 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
12539 * image-mode.el (image-mode, auto-mode-alist):
12540 * hippie-exp.el (hippie-expand-ignore-buffers):
12541 * format.el (format-alist):
12542 * find-dired.el (find-ls-subdir-switches, find-grep-options)
12543 (find-name-arg):
12544 * facemenu.el (facemenu-keybindings):
12545 * dired.el (dired-listing-switches, dired-chown-program):
12546 * diff.el (diff-switches, diff-command):
12547 * cus-edit.el (same-window-regexps):
12548 * bindings.el (mode-line-mule-info)
12549 (mode-line-buffer-identification): Purecopy strings.
12550
12551 2009-11-11 Juri Linkov <juri@jurta.org>
12552
12553 * simple.el (dired-get-filename) <declare-function>:
12554 Tell the byte-compiler about dired-get-filename.
12555 (shell-command): In Dired mode, get filename from the current line
12556 as the default value.
12557
12558 2009-11-10 Glenn Morris <rgm@gnu.org>
12559
12560 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
12561 * calendar/holidays.el, progmodes/cperl-mode.el:
12562 Update x-popup-menu declarations.
12563
12564 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
12565 (list-load-path-shadows): Use dolist.
12566 (list-load-path-shadows): Use with-current-buffer.
12567
12568 2009-11-10 Juri Linkov <juri@jurta.org>
12569
12570 * minibuffer.el (read-file-name): Support a list of default values
12571 in `default-filename'. Use the first file name where only one
12572 element is required. Doc fix.
12573
12574 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
12575
12576 * net/dbus.el (dbus-unregister-object): Release service, if no
12577 other method is registered for it.
12578
12579 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
12580
12581 * bookmark.el (bookmark-completing-read): Sort bookmark names if
12582 bookmark-sort-flag is non-nil (Bug#4653).
12583
12584 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
12585
12586 * emulation/cua-base.el: Add CUA property to some CC mode commands
12587 (Bug#4100).
12588
12589 2009-11-08 Kevin Ryde <user42@zip.com.au>
12590
12591 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
12592 at end of sentence (Bug#4818).
12593
12594 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
12595
12596 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12597 Handle "see declaration of" MSFT statements (Bug#4100).
12598
12599 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
12600
12601 * net/tramp.el (tramp-advice-make-auto-save-file-name)
12602 (tramp-advice-file-expand-wildcards): Unload via
12603 `ad-remove-advice'.
12604
12605 * net/trampver.el: Update release number.
12606
12607 2009-11-08 Kevin Ryde <user42@zip.com.au>
12608
12609 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
12610 `ad-do-it'.
12611
12612 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
12613
12614 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
12615 in order to keep context in SELinux.
12616
12617 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
12618
12619 * dired-aux.el (dired-query): Place cursor in echo area and allow
12620 C-g.
12621
12622 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
12623 menu item if not on a directory (Bug#4701).
12624
12625 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
12626
12627 Sync with Tramp 2.1.17.
12628
12629 * net/tramp.el (tramp-handle-copy-directory): Don't use
12630 `file-remote-p' (due to compatibility).
12631
12632 * net/tramp-compat.el (tramp-compat-copy-directory)
12633 (tramp-compat-delete-directory): New defuns.
12634
12635 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
12636 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
12637 `tramp-compat-delete-directory'.
12638
12639 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
12640 (tramp-smb-handle-delete-directory): Use
12641 `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
12642
12643 * net/trampver.el: Update release number.
12644
12645 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
12646
12647 * tar-mode.el (tar-copy): Call write-region on the right buffer
12648 (Bug#4857).
12649
12650 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
12651 by hand, if necessary (Bug#4878).
12652
12653 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
12654
12655 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
12656 align size column (Bug#4839).
12657
12658 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
12659 statement.
12660
12661 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
12662
12663 * progmodes/ld-script.el (auto-mode-alist):
12664 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
12665
12666 * cus-face.el (custom-declare-face): Purecopy face spec.
12667
12668 2009-11-06 Kenichi Handa <handa@m17n.org>
12669
12670 * international/uni-bidi.el: Re-generated.
12671 * international/uni-category.el: Re-generated.
12672 * international/uni-combining.el: Re-generated.
12673 * international/uni-mirrored.el: Re-generated.
12674
12675 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
12676
12677 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
12678 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
12679 (tex-start-options, slitex-run-command, latex-run-command)
12680 (tex-run-command, tex-directory):
12681 * textmodes/ispell.el (ispell-html-skip-alists)
12682 (ispell-tex-skip-alists, ispell-tex-skip-alists):
12683 * textmodes/fill.el (adaptive-fill-first-line-regexp):
12684 (adaptive-fill-regexp):
12685 * textmodes/dns-mode.el (auto-mode-alist):
12686 * progmodes/python.el (interpreter-mode-alist):
12687 * progmodes/etags.el (tags-compression-info-list):
12688 * progmodes/etags.el (tags-file-name):
12689 * net/browse-url.el (browse-url-galeon-program)
12690 (browse-url-firefox-program):
12691 * mail/sendmail.el (mail-signature-file)
12692 (mail-citation-prefix-regexp):
12693 * international/mule-conf.el (eight-bit):
12694 * international/latexenc.el (latex-inputenc-coding-alist):
12695 * international/fontset.el (x-pixel-size-width-font-regexp):
12696 * emacs-lisp/warnings.el (warning-type-format):
12697 * emacs-lisp/trace.el (trace-buffer):
12698 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
12699 (emacs-lisp-mode-map):
12700 * calendar/holidays.el (holiday-solar-holidays)
12701 (holiday-bahai-holidays, holiday-islamic-holidays)
12702 (holiday-christian-holidays, holiday-hebrew-holidays)
12703 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
12704 (hebrew-holidays-1, holiday-oriental-holidays)
12705 (holiday-general-holidays):
12706 * x-dnd.el (x-dnd-known-types):
12707 * tool-bar.el (tool-bar):
12708 * startup.el (site-run-file):
12709 * shell.el (shell-dumb-shell-regexp):
12710 * rfn-eshadow.el (file-name-shadow-tty-properties)
12711 (file-name-shadow-properties):
12712 * paths.el (remote-shell-program, news-directory):
12713 * mouse.el ([C-down-mouse-3]):
12714 * menu-bar.el (menu-bar-tools-menu):
12715 * jka-cmpr-hook.el (jka-compr-load-suffixes)
12716 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
12717 (jka-compr-compression-info-list):
12718 * isearch.el (search-whitespace-regexp):
12719 * image-file.el (image-file-name-extensions):
12720 * find-dired.el (find-ls-option):
12721 * files.el (directory-listing-before-filename-regexp)
12722 (directory-free-space-args, insert-directory-program)
12723 (list-directory-brief-switches, magic-fallback-mode-alist)
12724 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
12725 (automount-dir-prefix):
12726 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
12727 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
12728 (face-font-registry-alternatives, face-font-registry-alternatives)
12729 (face-font-family-alternatives):
12730 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
12731 (facemenu-foreground-menu, facemenu-face-menu):
12732 * epa-hook.el (epa-file-name-regexp):
12733 * dnd.el (dnd-protocol-alist):
12734 * textmodes/rst.el (auto-mode-alist):
12735 * button.el (default-button): Purecopy strings.
12736
12737 2009-11-06 Glenn Morris <rgm@gnu.org>
12738
12739 * Makefile.in (ELCFILES): Update.
12740
12741 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
12742
12743 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
12744 * emacs-lisp/levents.el: Move to obsolete/levents.el.
12745
12746 * nxml/xsd-regexp.el (xsdre-gen-categories):
12747 * nxml/xmltok.el (xmltok-parse-entity):
12748 * nxml/rng-parse.el (rng-parse-validate-file):
12749 * nxml/rng-maint.el (rng-format-manual)
12750 (rng-manual-output-force-new-line):
12751 * nxml/rng-loc.el (rng-save-schema-location-1):
12752 * nxml/rng-cmpct.el (rng-c-parse-file):
12753 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
12754 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
12755
12756 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
12757
12758 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
12759 Remove extra save-excursions and make-variable-buffer-local's.
12760 Suggested by Stefan Monnier.
12761
12762 (verilog-getopt-file, verilog-module-inside-filename-p)
12763 (verilog-set-define): Merge GNU 1.35 and repair changes from
12764 switching to using with-current-buffer.
12765
12766 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
12767 being treated as a number and confusing AUTORESET.
12768 Reported by Dan Dever.
12769
12770 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
12771 Add verilog-auto-ignore-concat to fix backward compatibility with
12772 older verilog-modes. Reported by Dan Katz.
12773
12774 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
12775 containing closing anchors "...$".
12776
12777 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
12778 Reported by Wade Smith.
12779
12780 (verilog-batch-execute-func): Comment on function usage.
12781
12782 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
12783
12784 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
12785 for labels.
12786
12787 (verilog-label-re, verilog-calc-1): Support proper indent of named
12788 asserts.
12789
12790 (verilog-backward-token, verilog-basic-complete-re)
12791 (verilog-beg-of-statement, verilog-indent-re): Support proper
12792 indent of the assert statement at the beginning of a block of text.
12793
12794 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
12795 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
12796 tokens as begins.
12797
12798 2009-11-05 Glenn Morris <rgm@gnu.org>
12799
12800 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
12801 Emacs 19. (Bug#1531)
12802 (byte-compile-fix-header): Update for the above change.
12803 Drop test for epoch::version.
12804
12805 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
12806 * cus-dep.el (custom-make-dependencies):
12807 * finder.el (finder-compile-keywords):
12808 Use autoload-rubric's feature argument.
12809
12810 * calendar/diary-lib.el (top-level): Make load behave more like require.
12811
12812 * vc-git.el (vc-git-stash-map): Move definition before use.
12813
12814 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
12815
12816 * custom.el (custom-declare-group): Purecopy standard-value.
12817 (custom-declare-group): Purecopy custom-prefix.
12818
12819 * international/mule.el (load-with-code-conversion):
12820 Call do-after-load-evaluation unconditionally.
12821
12822 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
12823
12824 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
12825
12826 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
12827
12828 2009-11-04 Glenn Morris <rgm@gnu.org>
12829
12830 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
12831 (byte-compile-compatibility): Remove option.
12832 (byte-compile-close-variables, byte-compile-fix-header)
12833 (byte-compile-insert-header, byte-compile-output-docform)
12834 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
12835 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
12836 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
12837 (byte-compile-insert, byte-compile-defun):
12838 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
12839 (byte-defop-compiler19): Remove.
12840 Without byte-compile-compatibility, the 'emacs19-opcode property is not
12841 used by anything. Replace all calls with byte-defop-compiler.
12842
12843 2009-11-04 Juri Linkov <juri@jurta.org>
12844
12845 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
12846 (menu-bar-options-menu): Don't quote the `prop' arg of
12847 `menu-bar-make-mm-toggle'.
12848
12849 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
12850
12851 * calendar/calendar.el (cal-loaddefs):
12852 * calendar/diary-lib.el (diary-loaddefs):
12853 * calendar/holidays.el (hol-loaddefs):
12854 * eshell/esh-module.el (esh-groups): Load rather than require.
12855
12856 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
12857
12858 * calendar/todo-mode.el (todo-add-category): Don't hardcode
12859 point-min==1.
12860 (todo-top-priorities): Only display-buffer when called interactively.
12861 (todo-item-start): Don't save excursion point.
12862 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
12863 (todo-insert-item-here, todo-file-item, todo-remove-item):
12864 Adjust uses of todo-item-start and todo-item-end.
12865
12866 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
12867 (autoload-rubric): Don't use any more.
12868
12869 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
12870 and only put a prop if it is non-nil.
12871
12872 2009-11-03 Juri Linkov <juri@jurta.org>
12873
12874 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
12875 (menu-bar-options-menu): Fix list quoting (Bug#4429).
12876
12877 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
12878 and "Menu" to make top-level menu item visually one unit (like
12879 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
12880 multi-word menu items). Fix :help string for quit-window.
12881
12882 2009-11-03 Glenn Morris <rgm@gnu.org>
12883
12884 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
12885 (byte-compile-file-form-define-abbrev-table)
12886 (byte-compile-file-form-custom-declare-variable)
12887 (byte-compile-variable-ref, byte-compile-defvar):
12888 Whether or not a warning is enabled should only affect whether we issue
12889 the warning, not whether or not we collect the relevant data.
12890 Eg warnings can be turned on and off throughout the course of a file.
12891
12892 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
12893 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
12894
12895 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
12896
12897 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
12898 * play/mpuz.el (mpuz-create-buffer):
12899 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
12900 (lm-print-y,s,noise, lm-print-w0, lm-init):
12901 * play/gomoku.el (gomoku-prompt-for-move):
12902 * play/fortune.el (fortune-in-buffer):
12903 * play/dissociate.el (dissociated-press):
12904 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
12905 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
12906 * mail/supercite.el (sc-eref-show):
12907 * mail/smtpmail.el (smtpmail-send-it):
12908 * mail/rmailsum.el (rmail-summary-next-labeled-message)
12909 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
12910 (rmail-summary-undelete-many, rmail-summary-rmail-update)
12911 (rmail-summary-goto-msg, rmail-summary-expunge)
12912 (rmail-summary-get-new-mail, rmail-summary-search-backward)
12913 (rmail-summary-add-label, rmail-summary-output-menu)
12914 (rmail-summary-output-body):
12915 * mail/rfc822.el (rfc822-addresses):
12916 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
12917 * mail/mailpost.el (post-mail-send-it):
12918 * mail/hashcash.el (hashcash-generate-payment):
12919 * mail/feedmail.el (feedmail-run-the-queue)
12920 (feedmail-queue-send-edit-prompt-help-first)
12921 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
12922 (feedmail-deduce-address-list):
12923 * eshell/esh-ext.el (eshell-remote-command):
12924 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
12925 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
12926 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
12927 (viper-save-string-in-file, viper-valid-marker):
12928 * emulation/viper-keym.el (viper-toggle-key):
12929 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
12930 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
12931 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
12932 * emulation/viper-cmd.el (viper-exec-form-in-vi)
12933 (viper-exec-form-in-emacs, viper-brac-function):
12934 * emulation/viper.el (viper-delocalize-var):
12935 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
12936 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
12937 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
12938 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
12939 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
12940 * emulation/edt.el (edt-electric-helpify):
12941 * emulation/cua-rect.el (cua--rectangle-aux-replace):
12942 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
12943 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
12944 (cua-indent-to-global-mark-column):
12945 * calendar/diary-lib.el (calendar-mark-1):
12946 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
12947 Use with-current-buffer.
12948 * emulation/viper.el (viper-delocalize-var): Use dolist.
12949
12950 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
12951
12952 * comint.el (comint-replace-by-expanded-history-before-point):
12953 Replace !! with the previous input string literally (Bug#1795).
12954
12955 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
12956
12957 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
12958 to be made up of whitespace.
12959
12960 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
12961
12962 * minibuffer.el (read-file-name): Don't use file dialogs for
12963 remote directories (Bug#99).
12964
12965 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
12966
12967 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
12968
12969 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
12970
12971 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
12972 instead of deleting the window or frame.
12973
12974 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
12975
12976 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
12977 Support face colors.
12978
12979 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
12980 New function. Support face colors (Bug#1168).
12981 (tex-common-initialization): Use it.
12982
12983 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
12984 mode allows it (Bug#1168).
12985
12986 2009-10-31 Juri Linkov <juri@jurta.org>
12987
12988 * facemenu.el (list-colors-display): Don't mark buffer as
12989 modified (Bug#3948).
12990
12991 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
12992
12993 * international/mule-diag.el (list-character-sets-1): Minor
12994 message fix (Bug#3526).
12995
12996 * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
12997 face property (Bug#4834).
12998 (etags-list-tags, etags-tags-apropos-additional)
12999 (etags-tags-apropos, tags-select-tags-table): Add follow-link
13000 property.
13001
13002 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
13003 items.
13004
13005 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
13006
13007 * textmodes/two-column.el (2C-split):
13008 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
13009 * textmodes/tex-mode.el (tex-set-buffer-directory):
13010 * textmodes/spell.el (spell-region, spell-string):
13011 * textmodes/reftex.el (reftex-erase-buffer):
13012 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
13013 * textmodes/reftex-toc.el (reftex-toc-promote-action):
13014 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
13015 (reftex-select-item):
13016 * textmodes/reftex-ref.el (reftex-label-info-update)
13017 (reftex-offer-label-menu):
13018 * textmodes/reftex-index.el (reftex-index-change-entry)
13019 (reftex-index-phrases-info):
13020 * textmodes/reftex-global.el (reftex-create-tags-file)
13021 (reftex-save-all-document-buffers, reftex-ensure-write-access):
13022 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
13023 (reftex-view-crossref-from-bibtex):
13024 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
13025 (reftex-extract-bib-entries-from-thebibliography)
13026 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
13027 * textmodes/refbib.el (r2b-capitalize-title):
13028 (r2b-convert-buffer, r2b-help):
13029 * textmodes/page-ext.el (pages-directory)
13030 (pages-directory-goto-with-mouse):
13031 * textmodes/bibtex.el (bibtex-validate-globally):
13032 * textmodes/bib-mode.el (bib-capitalize-title):
13033 * textmodes/artist.el (artist-clear-buffer, artist-system):
13034 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
13035 (local-set-scheme-interaction-buffer, xscheme-process-filter)
13036 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
13037 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
13038 (xscheme-send-control-g-interrupt, xscheme-start-process)
13039 (xscheme-process-sentinel, xscheme-cd):
13040 * progmodes/verilog-mode.el (verilog-read-always-signals)
13041 (verilog-set-define, verilog-getopt-file)
13042 (verilog-module-inside-filename-p):
13043 * progmodes/sh-script.el:
13044 * progmodes/python.el (python-pdbtrack-get-source-buffer)
13045 (python-pdbtrack-grub-for-buffer, python-execute-file):
13046 * progmodes/octave-inf.el (inferior-octave):
13047 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
13048 (idlwave-shell-compile-helper-routines, idlwave-set-local)
13049 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
13050 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
13051 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
13052 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
13053 (idlwave-shell-filter, idlwave-shell-examine-highlight)
13054 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
13055 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
13056 (idlwave-shell-examine-display, idlwave-shell-run-region)
13057 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
13058 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
13059 * progmodes/idlw-help.el (idlwave-help-get-special-help)
13060 (idlwave-help-get-help-buffer):
13061 * progmodes/gud.el (gud-basic-call, gud-find-class)
13062 (gud-tooltip-activate-mouse-motions-if-enabled):
13063 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
13064 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
13065 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
13066 (ebrowse-tags-next-file):
13067 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
13068 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
13069 (ebnf-eps-finish-and-write):
13070 * progmodes/cpp.el (cpp-edit-save):
13071 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
13072 * progmodes/cc-defs.el (c-emacs-features):
13073 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
13074 (antlr-directory-dependencies):
13075 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
13076 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
13077 (ada-find-any-references, ada-make-filename-from-adaname)
13078 (ada-make-body-gnatstub):
13079 * obsolete/rnews.el (news-list-news-groups):
13080 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
13081 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
13082 * net/rcirc.el (rcirc-debug):
13083 * net/newst-treeview.el (newsticker--treeview-list-add-item)
13084 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
13085 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
13086 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
13087 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
13088 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
13089 (newsticker--treeview-list-clear-highlight)
13090 (newsticker--treeview-list-update-highlight)
13091 (newsticker--treeview-list-highlight-start)
13092 (newsticker--treeview-tree-update-highlight)
13093 (newsticker--treeview-get-selected-item)
13094 (newsticker-treeview-mark-list-items-old)
13095 (newsticker--treeview-set-current-node):
13096 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
13097 * net/newst-backend.el (newsticker--get-news-by-funcall)
13098 (newsticker--get-news-by-wget, newsticker--image-get)
13099 (newsticker--image-sentinel):
13100 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
13101 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
13102 (eudc-ph-close-session):
13103 * net/eudc.el (eudc-save-options):
13104 * language/thai-word.el (thai-update-word-table):
13105 * language/japan-util.el (japanese-string-conversion):
13106 * international/titdic-cnv.el (tsang-quick-converter)
13107 (ziranma-converter, ctlau-converter):
13108 * international/mule-cmds.el (describe-language-environment):
13109 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
13110 (skkdic-convert-postfix, skkdic-convert-prefix):
13111 (skkdic-convert-okuri-nasi, skkdic-convert):
13112 * emacs-lisp/re-builder.el (reb-update-overlays):
13113 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
13114 * emacs-lisp/gulp.el (gulp-send-requests):
13115 * emacs-lisp/find-gc.el (trace-call-tree):
13116 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
13117 (eieio-describe-generic):
13118 * emacs-lisp/eieio-base.el (eieio-persistent-read):
13119 * emacs-lisp/edebug.el (edebug-outside-excursion):
13120 * emacs-lisp/debug.el (debugger-make-xrefs):
13121 * emacs-lisp/cust-print.el (custom-prin1-to-string):
13122 * emacs-lisp/chart.el (chart-new-buffer):
13123 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
13124 Use with-current-buffer.
13125 * textmodes/artist.el (artist-system): Don't call
13126 copy-sequence on a fresh string.
13127 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
13128
13129 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
13130
13131 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
13132 is no item to edit. (Bug#4820)
13133 (todo-top-priorities): Restore point and restore narrowing in Todo
13134 buffer. (Bug#4820)
13135
13136 2009-10-31 Glenn Morris <rgm@gnu.org>
13137
13138 * net/ange-ftp.el (top-level): Don't require dired when compiling.
13139 (comint-last-output-start, comint-last-input-start)
13140 (comint-last-input-end): Don't defvar when compiling.
13141 (ange-ftp-process-file): Use bound-and-true-p.
13142
13143 * pcmpl-rpm.el (top-level): Move provide statement to end.
13144 (pcmpl-rpm): Remove unused custom group.
13145
13146 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
13147
13148 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
13149
13150 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
13151 (byte-compile-warnings): Add `constants' as an option.
13152 (byte-compile-callargs-warn, byte-compile-arglist-warn)
13153 (display-call-tree): Update for byte-compile-fdefinition possibly
13154 returning `(macro lambda ...)'. (Bug#4778)
13155 (byte-compile-variable-ref, byte-compile-setq-default):
13156 Respect `constants' member of byte-compile-warnings.
13157
13158 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
13159
13160 * vc-bzr.el (vc-bzr-revision-keywords): New var.
13161 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
13162 to "submit:".
13163
13164 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
13165
13166 * textmodes/ispell.el (ispell-skip-region-alist):
13167 * international/mule-conf.el (eight-bit):
13168 * international/fontset.el (font-encoding-alist):
13169 * startup.el (pure-space-overflow-message):
13170 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
13171 * paths.el (gnus-nntp-service, rmail-spool-directory)
13172 (term-file-prefix):
13173 * files.el (save-some-buffers-action-alist):
13174 * cmuscheme.el (same-window-buffer-names):
13175 * ielm.el (same-window-buffer-names):
13176 * shell.el (same-window-buffer-names):
13177 * mail/sendmail.el (same-window-buffer-names):
13178 * progmodes/inf-lisp.el (same-window-buffer-names):
13179 * bindings.el (mode-line-client)
13180 (mode-line-column-line-number-mode-map):
13181 * language/tibetan.el (tibetan-precomposition-rule-regexp)
13182 (tibetan-precomposed-regexp): Purecopy string arguments.
13183
13184 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13185
13186 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
13187 (calcDigit-nondigit):
13188 * calc/calc-yank.el (calc-copy-to-buffer):
13189 * calc/calc-units.el (calc-invalidate-units-table):
13190 * calc/calc-trail.el (calc-trail-yank):
13191 * calc/calc-store.el (calc-insert-variables):
13192 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
13193 * calc/calc-prog.el (calc-read-parse-table):
13194 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
13195 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
13196 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
13197 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
13198 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
13199 (calc-graph-name, calc-graph-find-command, calc-graph-view)
13200 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
13201 * calc/calc-ext.el (calc-realign):
13202 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
13203 (calc-embedded-finish-edit, calc-embedded-make-info)
13204 (calc-embedded-finish-command, calc-embedded-stack-change):
13205 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
13206
13207 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
13208 shell-dynamic-complete-filename in preference to
13209 comint-dynamic-complete-filename.
13210
13211 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
13212 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
13213 Don't consider whether the display supports colors.
13214 (bookmark-import-new-list): Use dolist.
13215 (bookmark-bmenu-mode-map): Move initialization into declaration.
13216 (bookmark-bmenu-list): Use dolist, simplify.
13217 (bookmark-show-all-annotations): Use save-selected-window and dolist.
13218 (menu-bar-final-items): Use push.
13219
13220 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
13221
13222 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
13223 it works on remote files.
13224 (vc-hg-diff): Don't pass any `--cwd' argument.
13225
13226 2009-10-27 Kevin Ryde <user42@zip.com.au>
13227
13228 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
13229 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
13230 (Further to Bug#3921).
13231
13232 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
13233
13234 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
13235 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
13236 calling `tramp-imap-put-file'. Add file size to the call.
13237 (tramp-imap-get-file-entries): Compute also user name, file size,
13238 and date.
13239 (tramp-imap-handle-insert-directory): Insert uid and gid.
13240 (tramp-imap-handle-file-attributes): Transform uid and gid
13241 according to `id-format'.
13242 (tramp-imap-put-file): New optional parameter SIZE. Encode file
13243 size in header X-Size.
13244
13245 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
13246
13247 * simple.el (transpose-subr): Give clearer error when the mark
13248 is not set. (Bug#4807)
13249
13250 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
13251
13252 * net/tramp.el (tramp-perl-file-truename): New defconst.
13253 Perl code contributed by yary <not.com@gmail.com> (tiny change).
13254 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
13255 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
13256 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
13257
13258 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
13259 Ignore `dired-call-process'.
13260 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
13261
13262 2009-10-26 Julian Scheid <julians37@gmail.com>
13263
13264 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
13265 (tramp-get-remote-readlink): New defun.
13266 (tramp-handle-file-truename): Use it.
13267 (tramp-handle-file-exists-p): Check file-attributes cache, assume
13268 file exists if cache value present.
13269 (tramp-check-cached-permissions): New defun.
13270 (tramp-handle-file-readable-p): Use it.
13271 (tramp-handle-file-writable-p): Likewise.
13272 (tramp-handle-file-executable-p): Likewise.
13273 (tramp-handle-file-name-all-completions): Try using Perl to get
13274 partial completions. When perl not available, combine `cd' and
13275 `ls' into single remote operation and use shell expansion to get
13276 partial remote directory contents. Set `file-exists-p' cache for
13277 directory and any files returned by ls. Change cache handling to
13278 support partial directory contents. Use error message emitted by
13279 remote `cd' or Perl code for local tramp-error.
13280 (tramp-do-copy-or-rename-file-directly): Avoid separate
13281 tramp-send-command-and-check call.
13282 (tramp-handle-process-file): Merge three remote ops into one.
13283 Do not flush all caches when `process-file-side-effects' is set.
13284 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
13285 file-attributes shows uid/gid to be set already.
13286
13287 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
13288
13289 * textmodes/tex-mode.el (tex-dvi-view-command)
13290 (tex-show-queue-command, tex-open-quote):
13291 * progmodes/ruby-mode.el (auto-mode-alist)
13292 (interpreter-mode-alist): Purecopy strings.
13293
13294 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
13295
13296 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
13297 string for the hook, keymap and abbrev table.
13298
13299 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
13300
13301 * x-dnd.el (x-dnd-xdnd-to-action):
13302 * startup.el (fancy-startup-text, fancy-about-text): Change to
13303 defconst from defvar.
13304
13305 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
13306
13307 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
13308 Purecopy initialization strings.
13309
13310 * mail/sendmail.el (mail-header-separator)
13311 (mail-personal-alias-file):
13312 * mail/rmail.el (rmail-default-dont-reply-to-names)
13313 (rmail-ignored-headers, rmail-retry-ignored-headers)
13314 (rmail-highlighted-headers, rmail-secondary-file-directory)
13315 (rmail-secondary-file-regexp):
13316 * files.el (null-device, file-name-invalid-regexp)
13317 (locate-dominating-stop-dir-regexp)
13318 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
13319 (interpreter-mode-alist): Use mapcar instead of mapc.
13320
13321 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
13322
13323 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
13324 (completion-ignored-extensions):
13325 (debug-ignored-errors): Purecopy strings.
13326
13327 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
13328
13329 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
13330 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
13331 (pcomplete--here): Use push.
13332
13333 * subr.el (all-completions): Declare the 4th arg obsolete.
13334
13335 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13336
13337 * pcomplete.el (pcomplete-unquote-argument-function): New var.
13338 (pcomplete-unquote-argument): New function.
13339 (pcomplete--common-suffix): Always pay attention to case.
13340 (pcomplete--table-subvert): Quote and unquote the text.
13341 (pcomplete--common-quoted-suffix): New function.
13342 (pcomplete-std-complete): Use it and pcomplete-begin.
13343
13344 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
13345 we're inside a dedicated or minibuffer window.
13346
13347 2009-10-24 Karl Fogel <kfogel@red-bean.com>
13348
13349 * bookmark.el: Update documentation, especially documentation
13350 of `bookmark-alist' and of the bookmark file format.
13351 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
13352
13353 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
13354
13355 * mail/emacsbug.el (report-emacs-bug): Clarify that the
13356 keybindings apply to the mail buffer (Bug#4003). Shrink help
13357 window to buffer.
13358
13359 * whitespace.el (whitespace-mode, whitespace-newline-mode)
13360 (global-whitespace-mode, global-whitespace-newline-mode)
13361 (whitespace-toggle-options, global-whitespace-toggle-options):
13362 Doc fix (Bug#3660).
13363
13364 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
13365 of xmltok-start before the end tag was inserted (Bug#2840).
13366
13367 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
13368 patterns that are preceded by an open-paren (Bug#1320).
13369
13370 2009-10-24 Sven Joachim <svenjoac@gmx.de>
13371
13372 * files.el (delete-directory): Delete symlinks to directories with
13373 delete-file (Bug#4739).
13374
13375 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
13376
13377 * vc.el (vc-backend-for-registration): Rename from
13378 vc-get-backend-for-registration. Update callers.
13379
13380 * international/mule-cmds.el (set-language-info-alist):
13381 Purecopy lang-env.
13382 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
13383 (charset): Purecopy the name.
13384 (define-char-code-property): Purecopy string arguments.
13385
13386 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
13387 Purecopy string arguments.
13388
13389 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
13390 * ediff-hook.el (menu-bar-ediff-menu):
13391 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
13392 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
13393
13394 2009-10-24 Glenn Morris <rgm@gnu.org>
13395
13396 * comint.el (comint-dynamic-list-completions):
13397 * term.el (term-dynamic-list-completions): Use choose-completion rather
13398 than obsolete alias mouse-choose-completion.
13399
13400 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
13401 file-cache-choose-completion.
13402 (file-cache-choose-completion): Handle an optional event argument.
13403 (file-cache-mouse-choose-completion): Make it an obsolete alias.
13404
13405 * progmodes/octave-mod.el (octave-complete-symbol):
13406 Use choose-completion if mouse-choose-completion is ever removed.
13407
13408 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
13409 use.
13410
13411 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
13412 compiler.
13413
13414 * vc-hooks.el (vc-responsible-backend): Fix declaration.
13415
13416 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
13417
13418 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
13419 Ignore `pred' now that we receive one.
13420 Handle test-completion specially.
13421
13422 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
13423
13424 * vc.el (vc-responsible-backend): Throw an error if not backend is
13425 found. Remove the REGISTER argument. Move the code dealing with
13426 REGISTER ...
13427 (vc-get-backend-for-registration): ... here. New function.
13428 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
13429 of vc-responsible-backend, pass the file name instead of the
13430 directory name.
13431
13432 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
13433
13434 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
13435 New funs.
13436 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
13437 (pcomplete-comint-setup): Don't modify a global var via
13438 accidental side-effects.
13439 (pcomplete-shell-setup): Adjust call accordingly.
13440 (pcomplete-parse-comint-arguments): Use push.
13441
13442 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
13443
13444 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
13445 Allow uncapitalized info node names (Bug#3921).
13446
13447 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
13448 to the DEBUG file (Bug#3781).
13449
13450 2009-10-23 Jari Aalto <jari.aalto@cante.net>
13451
13452 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
13453 dictionary entry (Bug#4579).
13454
13455 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
13456
13457 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
13458 from `rfn-eshadow-update-overlay-hook' when unloading.
13459 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
13460 "rsyncc". Adjust doc string.
13461 (tramp-temp-buffer-file-name): New buffer-local defvar.
13462 (tramp-handle-insert-file-contents, tramp-handle-write-region):
13463 Keep temporary file when indicated by method ("rsync" and
13464 "rsyncc").
13465 (tramp-handle-write-region): Handle APPEND.
13466 (tramp-delete-temp-file-function): New defun. Added to
13467 `kill-buffer-hook'.
13468
13469 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
13470
13471 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
13472
13473 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
13474
13475 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
13476 (color-name-rgb-alist, tty-standard-colors)
13477 (tty-color-mode-alist): Change to defconst.
13478
13479 * simple.el (mark-inactive): Purecopy message.
13480
13481 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
13482 (global-map, yank-menu):
13483 * textmodes/ispell.el (ispell-menu-map):
13484 * net/eudc.el (eudc-tools-menu):
13485 * international/mule-cmds.el (describe-language-environment-map)
13486 (setup-language-environment-map, set-coding-system-map)
13487 (mule-menu-keymap):
13488 * vc-hooks.el (vc-menu-entry, vc-menu-map):
13489 * replace.el (occur-mode-map):
13490 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
13491
13492 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
13493
13494 * calc/calc.el (math-read-number, math-read-number-simple): Use
13495 `save-match-data'.
13496
13497 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
13498
13499 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
13500 rather than fiddling with global-map bindings, since it should only
13501 affect per-terminal settings.
13502 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
13503
13504 * minibuffer.el (completion-table-with-terminator): Allow to specify
13505 the terminator-regexp.
13506
13507 * simple.el (switch-to-completions): Look for *Completions* in other
13508 frames as well.
13509
13510 * pcomplete.el: Allow the use of completion-tables.
13511 (pcomplete-std-complete): New command.
13512 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
13513 (pcomplete--here): Use a function for `form' rather than an expression,
13514 so it can be byte-compiled.
13515 (pcomplete-here, pcomplete-here*): Adjust accordingly.
13516 Add edebug declaration.
13517 (pcomplete-show-completions): Remove unused var `curbuf'.
13518 (pcomplete-do-complete, pcomplete-stub):
13519 Don't assume `completions' is a list of strings any more.
13520
13521 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
13522
13523 * find-dired.el (find-name-arg): Fix typo in docstring.
13524
13525 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
13526
13527 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
13528 (pcmpl-linux-fs-types): Same, and update to new modules layout.
13529
13530 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
13531 pcomplete-entries.
13532
13533 * comint.el (comint-read-input-ring, comint-write-input-ring)
13534 (comint-substitute-in-file-name)
13535 (comint-dynamic-complete-as-filename)
13536 (comint-dynamic-simple-complete)
13537 (comint-dynamic-list-filename-completions)
13538 (comint-dynamic-list-completions)
13539 (comint-redirect-results-list-from-process): Minor simplifications.
13540
13541 2009-10-21 Kevin Ryde <user42@zip.com.au>
13542
13543 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
13544 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
13545 the first form. And insert a blank line after ";;; Code" since
13546 that's usual style. (Bug#4612)
13547
13548 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
13549
13550 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
13551
13552 * minibuffer.el (completion-table-with-terminator): Properly implement
13553 boundaries, in case `terminator' appears in the suffix.
13554 (completion--embedded-envvar-table): Don't return boundaries if
13555 there's no valid completion. Simplify.
13556 (completion-file-name-table): New completion table extracted from
13557 completion--file-name-table.
13558 (completion--file-name-table): Use it.
13559 (read-file-name-predicate): Declare obsolete.
13560 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
13561 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
13562 completion-file-name-table, and use the `pred' argument.
13563 * files.el (locate-file-completion-table): Use the `pred' arg rather
13564 than read-file-name-predicate.
13565 (abbreviate-file-name): Use \` rather than ^ for BOS.
13566
13567 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
13568
13569 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
13570 vc-responsible-backend to register, it causes problems.
13571
13572 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
13573
13574 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
13575
13576 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
13577
13578 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
13579 (tramp-smb-handle-file-attributes): Use it.
13580 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
13581 (tramp-smb-handle-insert-directory): Use `mapc' rather than
13582 `mapcar'. Use `tramp-smb-get-stat-capability'.
13583 Add `dired-filename' text properties.
13584 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
13585 (tramp-smb-maybe-open-connection): Simplify check for smbclient
13586 version.
13587
13588 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
13589
13590 * subr.el (read-key-delay): Reduce to 0.01.
13591 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
13592 (bug#4751).
13593
13594 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
13595
13596 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
13597
13598 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
13599 (Info-menu): Remove unused vars `last' and `completions'.
13600 (Info-index-nodes): Remove unused var `node'.
13601
13602 * info.el (Info-complete-menu-item): Use complete-with-action.
13603
13604 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
13605
13606 Make vc-annotate work through copies and renames.
13607 * vc-annotate.el (vc-annotate-extract-revision-at-line):
13608 Return the file name too.
13609 (vc-annotate-revision-at-line)
13610 (vc-annotate-find-revision-at-line)
13611 (vc-annotate-revision-previous-to-line)
13612 (vc-annotate-show-log-revision-at-line): Update to get the file
13613 name from vc-annotate-extract-revision-at-line.
13614 (vc-annotate-show-diff-revision-at-line-internal): Change the
13615 argument to mean whether to show a file diff or not. Get the file
13616 name from vc-annotate-extract-revision-at-line.
13617 (vc-annotate-show-diff-revision-at-line):
13618 Update vc-annotate-show-diff-revision-at-line call.
13619 (vc-annotate-warp-revision): Add an optional file argument.
13620
13621 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
13622 (vc-git-annotate-extract-revision-at-line): Also return the file
13623 name if found.
13624
13625 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
13626 command. Remove unused code.
13627 (vc-hg-annotate-re): Update to match --follow output.
13628 (vc-hg-annotate-extract-revision-at-line): Also return the file
13629 name if found.
13630
13631 * vc.el: Update annotate-extract-revision-at-line documentation.
13632
13633 2009-10-18 Kevin Ryde <user42@zip.com.au>
13634
13635 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
13636 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
13637
13638 * net/browse-url.el (browse-url): Identify alist with "consp and
13639 not functionp" and let all other things go down the `apply' leg,
13640 as suggested by Stefan. (Further to bug#4531.)
13641
13642 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
13643
13644 * minibuffer.el (read-file-name): Check for repeat before putting
13645 a default argument in file-name-history (Bug#4657).
13646
13647 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
13648 read syntax (Bug#4737).
13649
13650 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
13651
13652 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
13653
13654 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
13655 (html-tag-alist, html-tag-help): Add descriptions for undocumented
13656 entries and make note of obsolete tags.
13657
13658 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13659
13660 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
13661
13662 2009-10-18 Glenn Morris <rgm@gnu.org>
13663
13664 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
13665 grep, so that binary files (eg international/uni-bidi.el) can match.
13666 Remove test for "UnicodeData" files, since it is hopefully unnecessary
13667 now, and in any case the file header format has changed.
13668
13669 2009-10-17 Glenn Morris <rgm@gnu.org>
13670
13671 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
13672 (flyspell-get-word, flyspell-large-region)
13673 (flyspell-auto-correct-previous-word): Doc/error message fixes.
13674
13675 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
13676
13677 * Makefile.in (ELCFILES): Add ede/shell.
13678
13679 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
13680
13681 * term/common-win.el (x-colors): Purecopy it.
13682
13683 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13684
13685 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
13686 permissive for when the buffer is empty.
13687 (tar-header-block-tokenize): Decode the username and groupname.
13688 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
13689
13690 2009-10-17 Eric Ludlam <zappo@gnu.org>
13691
13692 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
13693 contains multibyte characters, choose first applicable coding
13694 system automatically.
13695
13696 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13697
13698 * international/mule-cmds.el (select-safe-coding-system): If the file
13699 has a coding cookie, use it regardless of any other setting (bug#4712).
13700
13701 2009-10-17 Glenn Morris <rgm@gnu.org>
13702
13703 * foldout.el (foldout-mouse-swallow-events):
13704 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
13705
13706 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
13707 (dired-keep-marker-copy, dired-keep-marker-hardlink)
13708 (dired-keep-marker-symlink, dired-dwim-target)
13709 (dired-copy-preserve-time): Do not autoload these defcustoms.
13710
13711 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
13712 messages from messing up the file coding. (Bug#4623)
13713
13714 2009-10-17 Jari Aalto <jari.aalto@cante.net>
13715
13716 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
13717 if no match is found for the current dictionary. (Bug#4578)
13718
13719 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
13720 optional, since that is how it is documented, and this is often called
13721 with a nil argument. (Bug#4577)
13722 (flyspell-external-point-words, flyspell-auto-correct-word)
13723 (flyspell-correct-word-before-point, flyspell-word-search-forward)
13724 (flyspell-word-search-backward): Remove nil argument in calls to
13725 flyspell-get-word, since it is not needed now.
13726
13727 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
13728
13729 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
13730
13731 2009-10-16 Glenn Morris <rgm@gnu.org>
13732
13733 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
13734
13735 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
13736
13737 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
13738 (ange-ftp-file-size): New function.
13739 (ange-ftp-file-attributes): Use it.
13740
13741 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
13742
13743 * net/tramp-smb.el (tramp-smb-version): New defvar.
13744 (tramp-smb-maybe-open-connection): Use it, in order to avoid
13745 repeated checks.
13746
13747 2009-10-16 Glenn Morris <rgm@gnu.org>
13748
13749 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
13750 Maybe copy some custom properties from old to new name. (Bug#4706)
13751
13752 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
13753
13754 * subr.el (error, sit-for, start-process-shell-command)
13755 (start-file-process-shell-command): Set the calling convention
13756 after the function definition.
13757
13758 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
13759
13760 * subr.el (error, sit-for, start-process-shell-command)
13761 (start-file-process-shell-command): Use the new
13762 set-advertised-calling-convention feature.
13763
13764 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
13765
13766 * international/ucs-normalize.el (ucs-normalize-version):
13767 Change to 1.2.
13768 (check-range): Adjust for Unicode 5.2.
13769
13770 2009-10-15 Juri Linkov <juri@jurta.org>
13771
13772 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
13773 to the `menu-item' format.
13774
13775 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
13776
13777 * net/tramp.el (tramp-replace-environment-variables): Do not fail
13778 if the environment variable does not exist.
13779
13780 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
13781 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
13782 parameter.
13783 (tramp-smb-handle-add-name-to-file)
13784 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
13785 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
13786 (tramp-smb-handle-file-attributes)
13787 (tramp-smb-do-file-attributes-with-stat)
13788 (tramp-smb-handle-file-local-copy)
13789 (tramp-smb-handle-insert-directory)
13790 (tramp-smb-handle-make-directory)
13791 (tramp-smb-handle-make-directory-internal)
13792 (tramp-smb-handle-make-symbolic-link)
13793 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
13794 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
13795 (tramp-smb-maybe-open-connection): Apply the changed parameters.
13796 (tramp-smb-read-file-entry): Read Disk names in compressed format.
13797 Handle long file names.
13798 (tramp-smb-get-cifs-capabilities): Check, whether the connection
13799 process is running.
13800 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
13801 Read share names with "-g" option.
13802
13803 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
13804
13805 * net/rcirc.el (rcirc-view-log-file): New command.
13806 (rcirc-track-minor-mode-map): Remove C-c ` binding.
13807 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
13808 specified.
13809
13810 2009-10-15 Glenn Morris <rgm@gnu.org>
13811
13812 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
13813 from the second command-line argument.
13814 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
13815 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
13816 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
13817 w32-batch-update-autoloads.
13818 * emacs-lisp/autoload.el (autoload-make-program): New variable.
13819 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
13820
13821 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
13822 the headers cannot be located. Simplify, subtracting superflous
13823 save-excursions.
13824
13825 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
13826
13827 Replace completion-base-size by completion-base-position to fix bugs
13828 such as (bug#4699).
13829 * simple.el (completion-base-position): New var.
13830 (completion-base-size): Mark as obsolete.
13831 (choose-completion): Make it work for mouse events as well.
13832 Pass the new base-position to choose-completion-string.
13833 (choose-completion-guess-base-position): New function, extracted from
13834 choose-completion-delete-max-match.
13835 (choose-completion-delete-max-match): Use it. Make obsolete.
13836 (choose-completion-string): Use the new base-position info.
13837 (completion-root-regexp): Delete.
13838 (completion-setup-function): Preserve completion-base-position.
13839 Eliminate obsolete base-size manipulation.
13840 * minibuffer.el (display-completion-list): Don't mess with base-size.
13841 (minibuffer-completion-help): Set completion-base-position instead.
13842 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
13843 choose-completion.
13844 * textmodes/bibtex.el (bibtex-complete):
13845 * emacs-lisp/crm.el (crm--choose-completion-string):
13846 Adjust to new calling convention.
13847 * complete.el (partial-completion-mode): Use minibufferp to avoid
13848 bumping into incompatible change to choose-completion-string-functions.
13849 * ido.el (ido-choose-completion-string): Make its calling convention
13850 more permissive.
13851 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
13852 base-size manipulation.
13853 (comint-dynamic-list-input-ring): Use dotimes and push.
13854 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
13855 fundamental-mode. Use `or'.
13856
13857 2009-10-14 Juri Linkov <juri@jurta.org>
13858
13859 * misearch.el (multi-isearch-next-buffer-from-list)
13860 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
13861
13862 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13863
13864 * Makefile.in (compile-onefile): Load `bytecomp' rather than
13865 `bytecomp.el'.
13866
13867 * minibuffer.el (completion-pcm--merge-completions): Make sure the
13868 string we return is all made up of text from the completions rather
13869 than part from the completions and part from the input (bug#4219).
13870
13871 * ido.el (ido-everywhere): Use define-minor-mode.
13872
13873 * buff-menu.el (list-buffers, ctl-x-map):
13874 Mark the entry points with ;;;###autoload cookies.
13875
13876 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
13877
13878 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
13879 correctly in the detached head case.
13880 (vc-git-print-log): Remove unused binding.
13881
13882 * vc.el (vc-responsible-backend): When a directory is passed for
13883 for registration create a VC repository if no backend is
13884 responsible for the directory argument.
13885 (vc-deduce-fileset): Tell vc-responsible-backend to register.
13886
13887 * vc.el: Move comments about RCS and SCCS ...
13888 * vc-rcs.el:
13889 * vc-sccs.el: ... here, respectively.
13890
13891 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13892
13893 * minibuffer.el (completion--file-name-table): Return nil if there's
13894 no file completion, even if substitute-in-file-name changed
13895 the string (bug#4708).
13896
13897 2009-10-13 Juri Linkov <juri@jurta.org>
13898
13899 * files-x.el (read-file-local-variable-value): Don't filter out
13900 minor modes from mode name completion (bug#4664).
13901
13902 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
13903
13904 * international/mule-cmds.el (ucs-names): Remove exclusion of
13905 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
13906
13907 2009-10-13 Kenichi Handa <handa@m17n.org>
13908
13909 * international/uni-name.el: Regenerated.
13910
13911 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
13912
13913 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
13914 should be automatically buffer-local, but isn't.)
13915
13916 2009-10-12 Sam Steingold <sds@gnu.org>
13917
13918 * progmodes/compile.el (compilation-next-error-function): Fix the
13919 timestamps if the buffer has been visited before.
13920 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
13921 non-anchored patterns, like the perl one (bug#3928).
13922
13923 2009-10-12 Glenn Morris <rgm@gnu.org>
13924
13925 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
13926 Let-bind `size'.
13927
13928 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
13929
13930 * proced.el (proced-unload-function): New function.
13931
13932 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
13933 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
13934 Doc fix.
13935
13936 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
13937
13938 2009-10-11 Juri Linkov <juri@jurta.org>
13939
13940 * files-x.el (read-file-local-variable-value):
13941 Provide default value only for bound variables (bug#4664).
13942
13943 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
13944
13945 * net/tramp.el (tramp-local-host-p): Function shall return nil for
13946 connection methods like smb.
13947
13948 * net/tramp-cache.el (tramp-flush-connection-property): The hash
13949 can be empty.
13950
13951 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
13952 (tramp-smb-file-name-handler-alist): Add handlers for
13953 `add-name-to-file', `make-symbolic-link'.
13954 (tramp-smb-handle-add-name-to-file)
13955 (tramp-smb-do-file-attributes-with-stat)
13956 (tramp-smb-handle-make-symbolic-link)
13957 (tramp-smb-get-cifs-capabilities): New defuns.
13958 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
13959 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
13960 (tramp-smb-handle-file-local-copy)
13961 (tramp-smb-handle-make-directory-internal)
13962 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
13963 The file name syntax depends on cifs capabilities.
13964 (tramp-smb-handle-file-attributes):
13965 Call `tramp-smb-do-file-attributes-with-stat' if possible.
13966 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
13967 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
13968
13969 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
13970
13971 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
13972 (eieio-defclass): Apply deftype handler and setf-method properties
13973 directly.
13974 (eieio-add-new-slot): Avoid union function from cl library.
13975 (eieio--typep): New function.
13976 (eieio-perform-slot-validation): Use it.
13977
13978 2009-10-10 Karl Fogel <kfogel@red-bean.com>
13979
13980 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
13981 Update documentation to refer to the variables documented in r1.135.
13982 (Bug#4188)
13983
13984 2009-10-10 Karl Fogel <kfogel@red-bean.com>
13985
13986 * bookmark.el (Info-suffix-list): Remove this unused variable.
13987 (bookmark-current-point): Remove this obsolete variable.
13988 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
13989 Adjust for removal of bookmark-current-point.
13990
13991 (bookmarks-already-loaded, bookmark-current-buffer)
13992 (bookmark-yank-point): Document. (Bug#4188)
13993
13994 2009-10-10 Glenn Morris <rgm@gnu.org>
13995
13996 * frame.el (frame-height): Doc fix.
13997
13998 * calendar/calendar.el (calendar-split-width-threshold): New option.
13999 (calendar-basic-setup): Use calendar-split-width-threshold.
14000
14001 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
14002
14003 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
14004 Ideographic Supplement" range (U+1F200..U+1F2FF).
14005
14006 2009-10-09 Karl Fogel <kfogel@red-bean.com>
14007
14008 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
14009 since the list will have been rebuilt anyway. (Bug#4349)
14010
14011 2009-10-09 Karl Fogel <kfogel@red-bean.com>
14012
14013 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
14014 (bookmark-bmenu-execute-deletions): Don't save here, as
14015 bookmark-delete will now do so if necessary.
14016 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
14017 (Bug#4348)
14018
14019 2009-10-09 Glenn Morris <rgm@gnu.org>
14020
14021 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
14022
14023 2009-10-09 Karl Fogel <kfogel@red-bean.com>
14024
14025 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
14026 (bookmark-jump-other-window): Just invoke bookmark-jump with new
14027 argument now, so the two function's behaviors will match. (Bug#3645)
14028
14029 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
14030
14031 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
14032 (tramp-file-name-real-host, tramp-file-name-port):
14033 Apply `save-match-data'.
14034
14035 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
14036 case both directories are remote.
14037 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
14038 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
14039
14040 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
14041
14042 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
14043
14044 2009-10-07 Glenn Morris <rgm@gnu.org>
14045
14046 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
14047 of concat.
14048
14049 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
14050
14051 * files-x.el (read-file-local-variable): Include some
14052 non-user-variables in the completion table (bug#4664).
14053
14054 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
14055
14056 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
14057 message.
14058
14059 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
14060 (tramp-smb-file-name-handler-alist): Add handler for
14061 `copy-directory', `expand-file-name', `set-file-modes'.
14062 (tramp-smb-handle-copy-directory)
14063 (tramp-smb-handle-expand-file-name)
14064 (tramp-smb-handle-set-file-modes): New defuns.
14065 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
14066 (tramp-smb-handle-file-attributes): Simplify check for retrieving
14067 entry.
14068 (tramp-smb-handle-insert-directory): Don't flush the cache.
14069 (tramp-smb-maybe-open-connection): Check for samba client and
14070 server versions.
14071
14072 2009-10-07 Eli Zaretskii <eliz@gnu.org>
14073
14074 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
14075 to not error out of search for "^lisp=" fails.
14076
14077 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
14078
14079 * makefile.w32-in (WINS_UPDATES): New macro.
14080 (custom-deps, finder-data, autoloads): Use it.
14081
14082 2009-10-07 Glenn Morris <rgm@gnu.org>
14083
14084 * Makefile.in (autoloads): Revert previous change.
14085 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
14086 the list of preloaded files passed on the command-line, get
14087 it from src/Makefile.
14088
14089 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
14090 show the original buffer rather than a random one.
14091
14092 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
14093
14094 * help.el (describe-no-warranty): Place point in a slightly better
14095 position in the GPLv3 text.
14096
14097 2009-10-06 Sam Steingold <sds@gnu.org>
14098
14099 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
14100 the comm attribute is present before calling regexp-quote.
14101
14102 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
14103
14104 * play/animate.el (animate-string): For good effect, make sure
14105 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
14106
14107 * play/animate.el (animate-sequence, animate-birthday-present):
14108 * misc.el (butterfly): Don't set `indent-tabs-mode'.
14109
14110 2009-10-06 Glenn Morris <rgm@gnu.org>
14111
14112 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
14113
14114 * emacs-lisp/autoload.el (autoload-excludes): New variable.
14115 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
14116 (batch-update-autoloads): Process a string value of autoload-excludes,
14117 set during the build process.
14118 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
14119
14120 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
14121 inside with-parsed... macro so that `v' is defined.
14122
14123 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
14124 * progmodes/fortran.el (fortran-end-of-block)
14125 (fortran-beginning-of-block):
14126 Also push mark in the macro case.
14127
14128 * emerge.el (emerge-show-file-name):
14129 * calc/calc.el (calc-quit):
14130 * calc/calc-misc.el (calc-big-or-small):
14131 * calc/calc-graph.el (calc-graph-view):
14132 * calc/calc-ext.el (calc-reset):
14133 * calendar/calendar.el (calendar-basic-setup):
14134 Use window-full-height-p.
14135
14136 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
14137 header we don't understand, don't insert another. (Bug#4624)
14138 If changing mime charset, insert the new one in the right place.
14139
14140 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
14141
14142 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
14143 (cal-tex-cursor-month): Correctly increment the end date for diary and
14144 holiday listing. (Bug#4626)
14145
14146 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
14147
14148 * help-fns.el (describe-function-1): Don't burp if the function is not
14149 a symbol.
14150
14151 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
14152
14153 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
14154 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
14155 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
14156 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
14157
14158 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
14159 (eieio-default-superclass): Reflow docstrings.
14160 (this, class-option-assoc, defclass, eieio-class-un-autoload)
14161 (eieio-unbind-method-implementations, defmethod)
14162 (eieio-validate-slot-value, eieio-validate-class-slot-value)
14163 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
14164 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
14165 (eieio-slot-originating-class-p, eieio-slot-name-index)
14166 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
14167 (constructor, initialize-instance, no-next-method, object-print)
14168 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
14169 Fix typos in docstrings.
14170 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
14171 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
14172 (next-method-p): Doc fixes.
14173 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
14174 Fix typos in error messages.
14175 (eieio-defmethod): Fix typo in description of generic method.
14176
14177 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
14178 (eieio-persistent-save-interactive, slot-missing):
14179 Fix typos in docstrings.
14180 (eieio-instance-inheritor-slot-boundp): Doc fix.
14181
14182 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
14183 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
14184
14185 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
14186 (eieio-custom-object-apply-reset):
14187 Fix typos in docstrings and error messages.
14188
14189 * emacs-lisp/eieio-datadebug.el (data-debug-show):
14190 Fix typo in docstring.
14191
14192 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
14193 (eieio-browse-tree): Doc fix.
14194 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
14195 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
14196 Fix typos in docstrings.
14197
14198 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
14199 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
14200 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
14201 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
14202 Reflow docstrings.
14203
14204 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
14205
14206 * vc-hg.el (log-view-vc-backend): Declare for compiler.
14207 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
14208 Set log-view-vc-backend so that diff can work.
14209
14210 * log-view.el (log-view-diff): Use vc-diff-internal instead of
14211 vc-version-diff.
14212 (vc-diff-internal): Autoload this instead of vc-version-diff.
14213
14214 2009-10-05 Eli Zaretskii <eliz@gnu.org>
14215
14216 * simple.el (eval-expression): Doc fix.
14217
14218 * progmodes/cwarn.el (cwarn-mode): Doc fix.
14219
14220 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
14221
14222 * files.el (directory-files-no-dot-files-regexp): New defconst.
14223 (delete-directory): Use it.
14224 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
14225
14226 * net/tramp.el (tramp-verbose): Fix docstring.
14227 (tramp-methods): Add recursive option to `tramp-copy-args'.
14228 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
14229 "scp1_old", "scp2_old", "rsync", "rsyncc".
14230 (tramp-default-method): Check also for `auth-source-user-or-password'.
14231 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
14232 Add handler for `copy-directory'.
14233 (tramp-handle-copy-directory): New defun.
14234 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
14235 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
14236 Optimize sent command.
14237
14238 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
14239
14240 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
14241 window if necessary.
14242
14243 * calendar/calendar.el (calendar-basic-setup): Don't call
14244 switch-to-buffer in a dedicated window.
14245
14246 2009-10-05 Karl Fogel <kfogel@red-bean.com>
14247
14248 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
14249 don't do anything related to relocating, just return nil.
14250 (bookmark-error-no-filename): New error.
14251 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
14252 bookmark has no file. Don't even attempt to handle things that
14253 are not files; the whole point of custom handlers is to keep that
14254 knowledge elsewhere anyway. Tighten some comments.
14255 (bookmark-file-or-variation-thereof): Remove now-unused function.
14256 (bookmark-location): Doc string fix.
14257 (Bug#4250)
14258
14259 2009-10-04 Karl Fogel <kfogel@red-bean.com>
14260
14261 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
14262 don't use a file dialog, because they usually don't know how to read
14263 a directory target from the user. (Bug#4230)
14264 Also, make sure the prompt can display directories as well as files.
14265
14266 2009-10-04 Karl Fogel <kfogel@red-bean.com>
14267
14268 * bookmark.el (bookmark-set, bookmark-buffer-name):
14269 Improve doc strings. (Bug#1193)
14270
14271 2009-10-04 Karl Fogel <kfogel@red-bean.com>
14272
14273 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
14274 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
14275 (bookmark-get-annotation, bookmark-set-annotation)
14276 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
14277 (bookmark-set-position, bookmark-get-front-context-string)
14278 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
14279 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
14280 (bookmark-jump-other-window, bookmark-handle-bookmark)
14281 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
14282 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
14283 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
14284 Improve doc strings to say whether bookmark can be a string or
14285 a record or both, and make other consistency and clarity fixes.
14286 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
14287 (bookmark-default-annotation-text, bookmark-yank-word)
14288 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
14289 (bookmark-import-new-list, bookmark-maybe-rename)
14290 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
14291 (bookmark-bmenu-bookmark): Give these doc strings.
14292 (bookmark-bmenu-check-position): Give this a doc string, but also
14293 add a FIXME comment about how the function may be pointless.
14294 (bookmark-default-handler): Rework doc string and change a
14295 parameter name, to clarify that this takes a bookmark record
14296 not a bookmark name.
14297 (bookmark-set): Change a parameter name to indicate its meaning,
14298 and improve the doc string a bit.
14299 (Bug#4188)
14300
14301 2009-10-04 Karl Fogel <kfogel@red-bean.com>
14302
14303 * bookmark.el (bookmark-alist): Document the new `handler' element
14304 in the param alist.
14305 (bookmark-make-record-function): Adjust documentation for above.
14306 (Bug#4193)
14307
14308 2009-10-04 Karl Fogel <kfogel@red-bean.com>
14309
14310 * info.el (Info-bookmark-make-record): Document this function.
14311 (Info-bookmark-jump): Document with a doc string, not just a comment.
14312 (Bug#4203)
14313
14314 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
14315
14316 * files.el (copy-directory): New defun.
14317
14318 * dired-aux.el (dired-copy-file-recursive): Use it.
14319
14320 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
14321
14322 * files-x.el (modify-dir-local-variable)
14323 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
14324 docstrings.
14325
14326 * recentf.el (recentf-unload-function): New function.
14327
14328 2009-10-04 Glenn Morris <rgm@gnu.org>
14329
14330 * window.el (window-full-height-p): Add doc string.
14331
14332 2009-10-04 Martin Rudalics <rudalics@gmx.at>
14333
14334 * window.el (window-full-height-p): New function. (Bug#4543)
14335
14336 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
14337
14338 * vc.el: Remove commented out code.
14339 (vc-derived-from-dir-mode): Remove, unused.
14340 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
14341
14342 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
14343
14344 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
14345 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
14346 there could be recursive loading when `default-directory' is a
14347 remote file name. (Bug#4614)
14348
14349 2009-10-03 Glenn Morris <rgm@gnu.org>
14350
14351 * calendar/calendar.el (calendar-basic-setup): Handle the case where
14352 the frame is wide.
14353 (calendar-generate-window): Test for shrinkability rather than width.
14354
14355 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
14356 reusing existing buffers, in case we happen to visit two files with the
14357 same basename. (Bug#4593)
14358
14359 2009-10-02 Eli Zaretskii <eliz@gnu.org>
14360
14361 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
14362 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
14363 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
14364 subdirs of cedet as well.
14365 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
14366
14367 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14368
14369 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
14370 Obey advertised-signature-table.
14371
14372 * help-fns.el (help-function-arglist): Don't check
14373 advertised-signature-table.
14374 (describe-function-1): Do it here instead so it also applies to subrs.
14375
14376 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
14377
14378 * simple.el (start-file-process): Say in the doc-string, that file
14379 handlers might not support pty association, if PROGRAM is nil.
14380
14381 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
14382 HOST and USER are strings. They are nil, when there are
14383 incomplete entries in ~/.netrc, for example.
14384 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
14385 root directory ("device busy" error otherwise).
14386
14387 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
14388 Flush file properties of created directory.
14389
14390 2009-10-02 Eli Zaretskii <eliz@gnu.org>
14391
14392 * makefile.w32-in (WINS_BASIC): Remove cedet.
14393 (WINS_CEDET): Add cedet.
14394 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
14395
14396 2009-10-02 Kevin Ryde <user42@zip.com.au>
14397
14398 * net/browse-url.el (browse-url): Pass any symbol in
14399 browse-url-browser-function to `apply', since if you've mistakenly put
14400 an unbound symbol then the error is clearer. (Bug#4531)
14401
14402 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
14403
14404 * allout.el (allout-init, allout-back-to-current-heading)
14405 (allout-beginning-of-current-entry, allout-ascend-to-depth)
14406 (allout-ascend, allout-up-current-level, allout-end-of-level)
14407 (allout-previous-visible-heading, allout-forward-current-level)
14408 (allout-backward-current-level, allout-show-children):
14409 * apropos.el (apropos-describe-plist):
14410 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
14411 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
14412 * completion.el (add-completion, add-permanent-completion):
14413 * descr-text.el (describe-text-category, describe-char):
14414 * desktop.el (desktop-lazy-abort):
14415 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
14416 * dired.el (dired-build-subdir-alist):
14417 * ediff.el (ediff-version):
14418 * elide-head.el (elide-head, elide-head-show):
14419 * emerge.el (emerge-version):
14420 * env.el (getenv):
14421 * face-remap.el (variable-pitch-mode):
14422 * faces.el (describe-face):
14423 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
14424 (dired-at-point):
14425 * files.el (find-file-existing, auto-save-mode):
14426 * font-lock.el (font-lock-fontify-buffer):
14427 * help-fns.el (describe-function, describe-variable)
14428 (describe-syntax, describe-categories):
14429 * help.el (view-lossage, describe-bindings, describe-key)
14430 (describe-mode):
14431 * hexl.el (hexl-current-address):
14432 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
14433 * info.el (Info-goto-emacs-key-command-node):
14434 * log-edit.el (log-edit-insert-cvs-template)
14435 (log-edit-insert-cvs-rcstemplate):
14436 * menu-bar.el (menu-bar-mode):
14437 * mouse.el (mouse-appearance-menu):
14438 * newcomment.el (comment-indent-new-line):
14439 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
14440 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
14441 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
14442 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
14443 * recentf.el (recentf-mode):
14444 * savehist.el (savehist-mode, savehist-save):
14445 * shadowfile.el (shadow-copy-files):
14446 * simple.el (kill-ring-save, next-line, previous-line)
14447 (normal-erase-is-backspace-mode):
14448 * strokes.el (strokes-update-window-configuration)
14449 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
14450 (strokes-xpm-for-stroke):
14451 * time.el (emacs-uptime, emacs-init-time):
14452 * tutorial.el (tutorial--describe-nonstandard-key)
14453 (tutorial--detailed-help):
14454 * type-break.el (type-break-mode)
14455 (type-break-mode-line-message-mode, type-break-query-mode)
14456 (type-break-guesstimate-keystroke-threshold):
14457 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
14458 * version.el (emacs-version):
14459 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
14460 * winner.el (winner-mode):
14461 * calendar/timeclock.el (timeclock-in, timeclock-out)
14462 (timeclock-status-string, timeclock-change)
14463 (timeclock-workday-remaining-string)
14464 (timeclock-workday-elapsed-string)
14465 (timeclock-when-to-leave-string):
14466 * calendar/todo-mode.el (todo-add-category):
14467 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
14468 * emacs-lisp/autoload.el (update-file-autoloads):
14469 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
14470 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
14471 (checkdoc-message-text, checkdoc-defun):
14472 * emacs-lisp/debug.el (debugger-list-functions):
14473 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
14474 * emacs-lisp/eieio-opt.el (eieio-describe-class)
14475 (eieio-describe-generic):
14476 * emacs-lisp/lisp-mnt.el (lm-synopsis):
14477 * emacs-lisp/shadow.el (list-load-path-shadows):
14478 * emulation/cua-base.el (cua-mode):
14479 * emulation/edt.el (edt-set-scroll-margins):
14480 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
14481 (tpu-toggle-regexp, tpu-toggle-search-direction)
14482 (tpu-toggle-rectangle, tpu-toggle-control-keys):
14483 * emulation/tpu-extras.el (tpu-set-scroll-margins):
14484 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
14485 (viper-set-parsing-style-toggling-macro)
14486 (viper-set-emacs-state-searchstyle-macros):
14487 * emulation/viper.el (viper-set-hooks):
14488 * eshell/esh-mode.el (eshell-truncate-buffer):
14489 * international/mule-cmds.el (prefer-coding-system)
14490 (describe-input-method, describe-language-environment):
14491 * international/mule-diag.el (list-character-sets)
14492 (describe-character-set, describe-coding-system)
14493 (describe-fontset, list-fontsets, list-input-methods):
14494 * mail/sendmail.el (mail-signature):
14495 * net/ange-ftp.el (ange-ftp-copy-file):
14496 * net/browse-url.el (browse-url):
14497 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
14498 * net/quickurl.el (quickurl-add-url):
14499 * net/rcirc.el (names, topic):
14500 * net/xesam.el (xesam-mode):
14501 * play/5x5.el (5x5-new-game):
14502 * play/yow.el (apropos-zippy):
14503 * progmodes/ada-mode.el (ada-mode-version):
14504 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
14505 (f90-end-of-block)
14506 (f90-beginning-of-block):
14507 * progmodes/fortran.el (fortran-end-of-block)
14508 (fortran-beginning-of-block):
14509 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
14510 * progmodes/python.el (python-describe-symbol, python-shell):
14511 * term/ns-win.el (ns-print-buffer):
14512 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
14513 * textmodes/flyspell.el (flyspell-mode-on):
14514 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
14515 (pages-directory-for-addresses):
14516 * textmodes/table.el (table-recognize-cell)
14517 (table-query-dimension, table-generate-source)
14518 (table-insert-sequence, table--warn-incompatibility):
14519 * textmodes/tex-mode.el (tex-validate-buffer):
14520 * textmodes/texinfmt.el (texinfmt-version)
14521 (texinfo-format-buffer):
14522 Use `called-interactively-p' instead of `interactive-p'.
14523
14524 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
14525
14526 * image-mode.el (image-toggle-display):
14527 * emacs-lisp/elp.el (elp-instrument-function):
14528 * emacs-lisp/advice.el (ad-make-advised-definition):
14529 * emacs-lisp/easy-mmode.el (define-minor-mode):
14530 * net/browse-url.el (browse-url-maybe-new-window):
14531 * progmodes/sh-script.el (sh-learn-buffer-indent):
14532 Pass new argument 'any to `called-interactively-p'.
14533
14534 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
14535
14536 * international/uni-bidi.el:
14537 * international/uni-category.el:
14538 * international/uni-combining.el:
14539 * international/uni-comment.el:
14540 * international/uni-decimal.el:
14541 * international/uni-decomposition.el:
14542 * international/uni-digit.el:
14543 * international/uni-lowercase.el:
14544 * international/uni-mirrored.el:
14545 * international/uni-name.el:
14546 * international/uni-numeric.el:
14547 * international/uni-old-name.el:
14548 * international/uni-titlecase.el:
14549 * international/uni-uppercase.el:
14550 Regenerate from Unicode 5.2.0 data.
14551
14552 2009-10-01 Glenn Morris <rgm@gnu.org>
14553
14554 * Makefile.in (ELCFILES): Regenerate.
14555
14556 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
14557
14558 * subr.el (interactive-p): Mark obsolete.
14559 (called-interactively-p): Make the optional-ness of `kind' obsolete.
14560 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
14561 advertised-signature-table for subroutines as well.
14562
14563 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
14564 (set-advertised-calling-convention): New function.
14565 (make-obsolete, define-obsolete-function-alias)
14566 (make-obsolete-variable, define-obsolete-variable-alias):
14567 Make the optional-ness of `when' obsolete.
14568 (define-obsolete-face-alias): Make `when' non-optional.
14569 * help-fns.el (help-function-arglist):
14570 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
14571 Use advertised-signature-table.
14572
14573 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
14574
14575 * files.el (delete-directory): New defun. The original function
14576 in fileio.c has been renamed to `delete-directory-internal'.
14577
14578 * dired.el (dired-delete-file): Call `delete-directory' with
14579 RECURSIVE parameter.
14580
14581 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
14582 parameter RECURSIVE. Implementation is missing.
14583
14584 * net/tramp.el (tramp-handle-make-directory): Flush upper
14585 directory's file properties.
14586 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
14587 (tramp-handle-dired-recursive-delete-directory): Flush directory
14588 properties after the remove command only.
14589
14590 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
14591 Handle optional parameter RECURSIVE.
14592
14593 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
14594 Handle optional parameter RECURSIVE.
14595
14596 * net/tramp-smb.el (tramp-smb-errors): Add error message for
14597 connection timeout.
14598 (tramp-smb-handle-delete-directory): Handle optional parameter
14599 RECURSIVE.
14600
14601 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
14602
14603 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
14604 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
14605 (byte-compile-defmacro): Use backquotes.
14606
14607 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
14608
14609 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
14610 has no associated file.
14611 (vc-resynch-buffer): Use vc-dir-buffers.
14612
14613 2009-10-01 Glenn Morris <rgm@gnu.org>
14614
14615 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
14616 (chart-file-count):
14617 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
14618 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
14619 * emacs-lisp/eieio-opt.el (eieio-describe-class):
14620 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
14621 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
14622 (eieio-copy-parents-into-subclass, make-instance, class-children)
14623 (eieio-generic-form):
14624
14625 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
14626 match-data. (Bug#4555).
14627
14628 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
14629 rather than parsing it as a regexp. This relaxes the layout
14630 requirements and makes errors easier to detect.
14631 (check-declare-verify): Check file is regular.
14632 (check-declare-directory): Doc fix.
14633 * subr.el (declare-function): Doc fix.
14634
14635 * ibuffer.el (ibuffer-format-qualifier):
14636 * isearch.el (hi-lock-regexp-okay):
14637 * calc/calc.el (math-zerop):
14638 * mail/uce.el (rmail-msgbeg, rmail-msgend):
14639 * term/w32-win.el (setup-default-fontset, set-fontset-font):
14640 Remove unused declarations.
14641
14642 2009-09-30 Eric Ludlam <zappo@gnu.org>
14643
14644 * emacs-lisp/eieio.el (boolean-p): Delete.
14645
14646 2009-09-30 Glenn Morris <rgm@gnu.org>
14647
14648 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
14649
14650 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
14651 filename is not a string.
14652
14653 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
14654
14655 * files.el (safe-local-eval-forms): Fix typo.
14656
14657 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
14658
14659 * vc-hooks.el (vc-dir-buffers): New var.
14660 (vc-state-refresh): New function.
14661 (vc-state): Use it.
14662 (vc-after-save): Always ask the backend to recompute the new state.
14663 Always call vc-dir if necessary, using vc-dir-buffers.
14664 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
14665 Use vc-dir-buffers.
14666 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
14667 (vc-dir-prepare-status-buffer, vc-dir-update)
14668 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
14669 Don't call expand-file-name on default-directory.
14670
14671 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
14672
14673 * speedbar.el (speedbar-item-delete):
14674 * calc/calc-prog.el (calc-kbd-if):
14675 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
14676
14677 * epa.el (epa-key-list-mode-map):
14678 * hi-lock.el (hi-lock-menu): Fix typos in menus.
14679
14680 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
14681 (hs-show-hook): Fix typo in docstring.
14682
14683 2009-09-29 Glenn Morris <rgm@gnu.org>
14684
14685 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
14686 file-name-nondirectory call preventing location of cedet files.
14687 (check-declare-verify): Use literal search rather than re-search.
14688 Add basic defmethod and defclass, and define-overloadable-function.
14689
14690 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
14691 Use tramp-compat-file-attributes rather than nonexistent
14692 tramp-compat-handle-file-attributes.
14693
14694 * Makefile.in (lisptagsfiles4): New.
14695 (AUTOGENEL): Add cedet loaddefs files.
14696 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
14697 (update-elclist, compile-always, backup-compiled-files)
14698 (bootstrap-clean): Add yet another directory level.
14699 (update-elclist): Use LC_COLLATE rather than COLLATE.
14700 (ELCFILES): Update, via `make update-elclist'.
14701
14702 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
14703
14704 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
14705 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
14706 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
14707
14708 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
14709
14710 * Makefile.in (lisptagsfiles3): Define.
14711 (TAGS, TAGS-LISP): Use it.
14712 (update-elclist): Add third directory level to look for elc files.
14713 (compile-always): Likewise.
14714 (backup-compiled-files): Likewise.
14715 (bootstrap-clean): Likewise.
14716 (ELCFILES): Update.
14717
14718 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
14719
14720 * Makefile.in (ELCFILES): Add CEDET files.
14721
14722 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
14723
14724 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
14725
14726 * net/tramp.el (top): Require tramp-imap.
14727
14728 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
14729 Use `tramp-compat-handle-file-attributes'.
14730
14731 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
14732
14733 * net/tramp-imap.el: New package.
14734
14735 2009-09-28 Eric Ludlam <zappo@gnu.org>
14736
14737 * emacs-lisp/chart.el:
14738 * emacs-lisp/eieio-base.el:
14739 * emacs-lisp/eieio-comp.el:
14740 * emacs-lisp/eieio-custom.el:
14741 * emacs-lisp/eieio-datadebug.el:
14742 * emacs-lisp/eieio-opt.el:
14743 * emacs-lisp/eieio-speedbar.el:
14744 * emacs-lisp/eieio.el: New files.
14745
14746 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14747
14748 * whitespace.el (whitespace-trailing-regexp)
14749 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
14750 Fix doc string.
14751
14752 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
14753
14754 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
14755 menu.
14756
14757 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
14758 menu-bar-ediff-menu.
14759
14760 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
14761 define-overloadable-function.
14762
14763 * progmodes/autoconf.el: Provide autoconf as well, so that this
14764 file can be `require'd.
14765
14766 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
14767
14768 * emacs-lisp/autoload.el (generated-autoload-feature)
14769 (generated-autoload-load-name): New vars.
14770 (autoload-rubric, autoload-generate-file-autoloads): Use them.
14771 (make-autoload): Recognize define-overloadable-function and
14772 defclass forms (for EIEIO).
14773
14774 * Makefile.in (update-subdirs): Exclude cedet directory.
14775
14776 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
14777
14778 * term/ns-win.el: Don't set the region face background. (Bug#4381)
14779
14780 * faces.el: Default light-background background for region face to
14781 ns_selection_color under NS.
14782
14783 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
14784
14785 * net/imap-hash.el: New library, see NEWS.
14786
14787 * Makefile.in (ELCFILES): Add imap-hash.el.
14788
14789 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
14790
14791 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
14792 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
14793 * help-macro.el (make-help-screen): Avoid using an ambiguous function
14794 definition where the docstring could be taken for the return value.
14795
14796 2009-09-26 Glenn Morris <rgm@gnu.org>
14797
14798 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
14799 Add option to only show images below a certain size.
14800 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
14801 save-excursion calls.
14802
14803 2009-09-26 Eli Zaretskii <eliz@gnu.org>
14804
14805 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
14806 subdirectories) and eieio.
14807
14808 2009-09-26 Alan Mackenzie <acm@muc.de>
14809
14810 * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
14811 buggy bracketing. (Bug#4289)
14812
14813 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
14814 character constants (as case labels). (Bug#4289)
14815
14816 2009-09-25 Juri Linkov <juri@jurta.org>
14817
14818 * files.el (safe-local-eval-forms): Allow time-stamp in
14819 before-save-hook (Bug#4554).
14820
14821 2009-09-25 Drew Adams <drew.adams@oracle.com>
14822
14823 * menu-bar.el (list-buffers-directory): Doc fix.
14824
14825 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
14826
14827 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
14828 Try and avoid copying twice the same paragraph.
14829 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
14830 Remove save-excursion.
14831 (log-edit-changelog-entry): Do it here instead.
14832
14833 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
14834
14835 * bs.el (bs--get-file-name): Use `list-buffers-directory'
14836 when available, instead of hardcoding mode names. Doc fix.
14837
14838 * menu-bar.el (list-buffers-directory): Add docstring.
14839 Make automatically buffer-local.
14840
14841 * dired.el (dired-mode):
14842 * files.el (cd-absolute):
14843 * pcvs.el (cvs-temp-buffer):
14844 * pcvs-util.el (cvs-get-buffer-create):
14845 * shell.el (shell-mode):
14846 * vc-dir.el (vc-dir-mode):
14847 Don't make `list-buffers-directory' buffer local.
14848
14849 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
14850
14851 * comint.el (comint-exec, comint-run, make-comint):
14852 Doc fixes (Bug#4542).
14853
14854 2009-09-25 Glenn Morris <rgm@gnu.org>
14855
14856 * mail/rmailmm.el (rmail-mime): New custom group.
14857 Move all defcustoms in this file into this group.
14858 (rmail-mime-media-type-handlers-alist): Revert previous change.
14859 (rmail-mime-show-images): New option.
14860 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
14861 references to it, since it wasn't actually used for anything.
14862 (rmail-mime-insert-image): New function.
14863 (rmail-mime-image): Use rmail-mime-insert-image.
14864 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
14865 obey the value of `rmail-mime-show-images' option. Print the size of
14866 attachments.
14867
14868 2009-09-25 David Engster <deng@randomsample.de>
14869
14870 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
14871
14872 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14873
14874 * whitespace.el: Does not highlight trailing spaces While point is
14875 at end of line. Does not highligt spaces at beginning of buffer
14876 while point is at beginning of buffer. Does not highlight spaces
14877 at end of buffer while point is at end of buffer. (Bug#4177)
14878 New version 12.0.
14879 (whitespace-display-mappings): Adjust initialization.
14880 (whitespace-point, whitespace-font-lock-refontify): New vars.
14881 (whitespace-color-on, whitespace-color-off): Adjust code.
14882 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
14883 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
14884 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
14885
14886 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
14887
14888 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
14889
14890 * textmodes/sgml-mode.el: Remove xml-mode alias.
14891
14892 * files.el (auto-mode-alist, conf-mode-maybe)
14893 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
14894
14895 2009-09-24 Alan Mackenzie <acm@muc.de>
14896
14897 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
14898 c-forward-conditionals, but it doesn't move point and doesn't set
14899 the mark.
14900 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
14901 (c-down-conditional-with-else, c-backward-conditional)
14902 (c-forward-conditional): Refactor to use c-scan-conditionals.
14903
14904 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
14905
14906 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
14907 (help-default-arg-highlight): Remove.
14908 (help-highlight-arg): New function.
14909 (help-do-arg-highlight): Use it.
14910 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
14911
14912 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
14913
14914 * term.el (term-set-scroll-region, term-handle-ansi-escape):
14915 Undo last change, which didn't fix the problem and introduced others.
14916
14917 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
14918
14919 * progmodes/gdb-mi.el: Don't require speedbar.
14920 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
14921
14922 2009-09-24 Glenn Morris <rgm@gnu.org>
14923
14924 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
14925
14926 * term/ns-win.el (ns-reg-to-script): Define for compiler.
14927
14928 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
14929 there is no newline after the final mime boundary. (Bug#4539)
14930 Move markers on insertion so that any buttons inserted don't end up in
14931 the next part of a multipart message.
14932 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
14933 (rmail-mime-bulk-handler): Optionally handle images.
14934 (rmail-mime-image): New button action.
14935 (rmail-mime-image-handler): New function.
14936 (rmail-mime-mode): New mode.
14937 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
14938
14939 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
14940
14941 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
14942 than just dropping elements from it (bug#4504).
14943
14944 * term.el (term-set-scroll-region): Don't move cursor any more.
14945 (term-handle-ansi-escape): Call term-goto here instead.
14946 Suggested by Ivan Kanis <apple@kanis.eu>.
14947
14948 * term.el: Require CL.
14949 (term-ansi-reset): New function.
14950 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
14951 (term-handle-colors-array): Simplify.
14952
14953 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
14954
14955 * allout.el (allout-overlay-interior-modification-handler)
14956 (allout-obtain-passphrase):
14957 * epa-file.el (epa-file-write-region):
14958 * ps-print.el (ps-begin-job):
14959 * vc-hooks.el (vc-toggle-read-only):
14960 * vc-rcs.el (vc-rcs-rollback):
14961 * vc-sccs.el (vc-sccs-rollback):
14962 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
14963 (vc-version-diff, vc-revert, vc-rollback):
14964 * wdired.el (wdired-check-kill-buffer):
14965 * emacs-lisp/authors.el (authors):
14966 * net/socks.el (socks-open-connection):
14967 * net/zeroconf.el (zeroconf-service-add-hook):
14968 * obsolete/vc-mcvs.el (vc-mcvs-register):
14969 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
14970 (gdb-select-frame):
14971 * progmodes/grep.el (lgrep, rgrep):
14972 * progmodes/idlw-help.el (idlwave-help-check-locations)
14973 (idlwave-help-html-link, idlwave-help-assistant-open-link):
14974 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
14975 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
14976 (reftex-toc-rename-label): Fix typos in error messages.
14977
14978 * dired-aux.el (dired-do-shell-command): Reflow docstring.
14979 (dired-copy-how-to-fn): Doc fix.
14980 (dired-files-attributes, dired-read-shell-command):
14981 Fix typos in docstrings.
14982
14983 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
14984 (dired-x-find-file-other-window): Reflow docstrings.
14985 (dired-omit-marker-char, dired-read-shell-command)
14986 (dired-x-submit-report): Fix typos in docstrings.
14987
14988 * shell.el (shell-mode-hook):
14989 * view.el (View-scroll-line-forward):
14990 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
14991 Fix typos in docstrings.
14992
14993 * net/dig.el (dig-invoke): Fix typo in docstring.
14994 (query-dig): Reflow docstring.
14995
14996 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
14997 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
14998 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
14999 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
15000 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
15001 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
15002 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
15003 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
15004 (idlwave-completion-map, idlwave-current-indent)
15005 (idlwave-custom-ampersand-surround, idlwave-customize)
15006 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
15007 (idlwave-define-abbrev, idlwave-determine-class-special)
15008 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
15009 (idlwave-end-block-reg, idlwave-end-of-statement)
15010 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
15011 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
15012 (idlwave-explicit-class-listed, idlwave-file-header)
15013 (idlwave-fill-paragraph, idlwave-find-class-definition)
15014 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
15015 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
15016 (idlwave-in-quote, idlwave-indent-action-table)
15017 (idlwave-indent-expand-table, idlwave-indent-line)
15018 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
15019 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
15020 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
15021 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
15022 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
15023 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
15024 (idlwave-outlawed-buffers, idlwave-popup-select)
15025 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
15026 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
15027 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
15028 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
15029 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
15030 (idlwave-statement-type, idlwave-struct-skip)
15031 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
15032 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
15033 (idlwave-what-module-find-class): Fix typos in docstrings.
15034 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
15035 (idlwave-calculate-cont-indent, idlwave-expand-equal)
15036 (idlwave-find-module, idlwave-find-structure-definition)
15037 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
15038 (idlwave-list-load-path-shadows, idlwave-next-statement)
15039 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
15040 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
15041 (idlwave-template): Reflow docstrings.
15042
15043 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
15044 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
15045 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
15046 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
15047 (idlwave-shell-display-line, idlwave-shell-display-wframe)
15048 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
15049 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
15050 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
15051 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
15052 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
15053 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
15054 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
15055 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
15056 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
15057 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
15058 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
15059 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
15060 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
15061 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
15062 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
15063 Fix typos in docstrings.
15064 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
15065 (idlwave-shell-hide-output, idlwave-shell-mode)
15066 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
15067 Reflow docstrings.
15068
15069 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
15070
15071 2009-09-24 Ivan Kanis <apple@kanis.eu>
15072
15073 * term.el (term-bold-attribute): New var.
15074 (term-handle-colors-array): Use it.
15075
15076 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
15077
15078 * progmodes/gdb-mi.el (gdb-version): New variable.
15079 (gdb-non-stop-handler): Set gdb-version.
15080 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
15081 Condition "--thread" option on gdb-version.
15082 (gdb-invalidate-threads): Remove unused argument.
15083
15084 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
15085
15086 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
15087 to looking-back to avoid ridiculous slow down in large files (bug#4511).
15088
15089 2009-09-23 Glenn Morris <rgm@gnu.org>
15090
15091 * mail/rmail.el (rmail-reply): Don't try to add a References header when
15092 replying to mail without References or Message-Id. (Bug#4525)
15093
15094 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
15095
15096 * term/ns-win.el (ns-reg-to-script): New variable.
15097
15098 2009-09-23 Daiki Ueno <ueno@unixuser.org>
15099
15100 * epg.el (epg-wait-for-status): Preserve existing 'error results.
15101
15102 2009-09-22 Sam Steingold <sds@gnu.org>
15103
15104 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
15105 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
15106 to 1 because hg returns status 1 when nothing is found.
15107 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
15108
15109 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
15110
15111 * textmodes/fill.el: Convert to utf-8 encoding.
15112 (fill-french-nobreak-p): Remove redundant » and « inherited from our
15113 pre-Unicode days.
15114
15115 * add-log.el (change-log-fill-forward-paragraph): New function.
15116 (change-log-mode): Use it so fill-region DTRT.
15117 Set fill-indent-according-to-mode here rather than in
15118 change-log-fill-paragraph.
15119 (change-log-fill-paragraph): Remove.
15120
15121 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
15122
15123 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
15124 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
15125
15126 2009-09-22 Glenn Morris <rgm@gnu.org>
15127
15128 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
15129 the scroll-bar scroll the calendar window rather than the buffer.
15130
15131 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
15132 commands that move point (as opposed to scrolling).
15133
15134 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
15135
15136 * emacs-lisp/elint.el (elint): New custom group.
15137 (elint-log-buffer): Make it a defcustom.
15138 (elint-scan-preloaded, elint-ignored-warnings)
15139 (elint-directory-skip-re): New options.
15140 (elint-builtin-variables): Doc fix.
15141 (elint-preloaded-env): New variable.
15142 (elint-unknown-builtin-args): Add an entry for encode-time.
15143 (elint-extra-errors): Make it a variable rather than a constant.
15144 (elint-preloaded-skip-re): New constant.
15145 (elint-directory): Skip files matching elint-directory-skip-re.
15146 (elint-features): New variable, local to linted buffers.
15147 (elint-update-env): Initialize elint-features. Possibly add
15148 elint-preloaded-env to the buffer's environment.
15149 (elint-get-top-forms): Bind elint-current-pos, for log messages.
15150 Skip quoted forms.
15151 (elint-init-form): New function, extracted from elint-init-env.
15152 Make non-list forms a warning rather than an error.
15153 Add the mode-map for define-derived-mode. Handle define-minor-mode,
15154 easy-menu-define, put that adds an error-condition, and provide.
15155 When requiring cl, also require cl-macs. Really require cl, to handle
15156 some cl macros. Store required libraries in the list elint-features,
15157 so as not to re-load them. Treat cc-require like require.
15158 (elint-init-env): Call elint-init-form to do the work.
15159 Handle eval-and-compile and such like.
15160 (elint-add-required-env): Do not clear messages.
15161 (elint-special-forms): Add handlers for function, defalias, if, when,
15162 unless, and, or.
15163 (elint-form): Add optional argument to ignore elint-special-forms,
15164 useful to prevent recursive calls from handlers. Doc fix.
15165 Respect elint-ignored-warnings.
15166 (elint-form): Respect elint-ignored-warnings.
15167 (elint-bound-variable, elint-bound-function): New variables.
15168 (elint-unbound-variable): Respect elint-bound-variable.
15169 (elint-get-args): Respect elint-bound-function.
15170 (elint-check-cond-form): Add some simple handling for (f)boundp and
15171 featurep tests.
15172 (elint-check-defalias-form): New handler.
15173 (elint-check-let-form): Make an empty let a warning rather than an
15174 error.
15175 (elint-check-setq-form): Make an empty setq a warning rather than an
15176 error. Respect elint-ignored-warnings.
15177 (elint-check-defvar-form): Accept null doc-strings.
15178 (elint-check-conditional-form): New handler. Does some simple-minded
15179 checking of featurep and (f)boundp tests.
15180 (elint-put-function-args): New function.
15181 (elint-initialize): Use elint-scan-doc-file rather than
15182 elint-find-builtin-variables. Use elint-put-function-args.
15183 Possibly scan preloaded-file-list.
15184 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
15185 extend to handle functions as well.
15186
15187 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
15188
15189 * linum.el (linum-delete-overlays, linum-update-window):
15190 Do not modify the right margin. (Bug#3971)
15191
15192 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
15193
15194 * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
15195 nxml-mode instead of xml-mode.
15196
15197 2009-09-21 Kevin Ryde <user42@zip.com.au>
15198
15199 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
15200
15201 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
15202
15203 * net/dig.el (dig-mode): Use define-derived-mode.
15204
15205 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
15206
15207 * vc-dispatcher.el (vc-do-command): Return the process object in
15208 the asynchronous case. Use when instead of if. Do not run
15209 vc-exec-after to display a message if not enabled. (Bug#4463)
15210
15211 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
15212 properties to the stash strings.
15213 (vc-git-stash-list): Return a list of strings.
15214 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
15215 (vc-git-stash-show-at-point): New functions.
15216 (vc-git-stash-map): New keymap.
15217
15218 * register.el (ctl-x-r-map): Define the keys here instead of
15219 using autoload.
15220
15221 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
15222
15223 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
15224 list, to workaround performance problem (bug#4485).
15225
15226 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
15227
15228 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
15229
15230 2009-09-20 Daiki Ueno <ueno@unixuser.org>
15231
15232 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
15233 Document that this option is not recommended to use.
15234
15235 2009-09-19 Glenn Morris <rgm@gnu.org>
15236
15237 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
15238 variable `var'.
15239
15240 * calc/calc-alg.el (var):
15241 * calc/calcalg2.el (var): Define for compiler.
15242
15243 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
15244
15245 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
15246 Doc fix (Bug#3932).
15247
15248 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
15249
15250 * time-stamp.el (time-stamp-month-dd-yyyy)
15251 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
15252 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
15253 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
15254 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
15255 Remove functions that have been obsolete since 1995 (Bug#4436).
15256
15257 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
15258 indent buffer only if called interactively (Bug#4452).
15259
15260 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
15261 Eli Zaretskii <eliz@gnu.org>
15262
15263 This fixes bug#4197 (merged to bug#865, though not identical).
15264 * server.el (server-auth-dir): Add docstring note about FAT32.
15265 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
15266 but warn against using them.
15267
15268 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
15269
15270 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
15271 older GDB where there is no has_more field.
15272
15273 2009-09-19 Glenn Morris <rgm@gnu.org>
15274
15275 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
15276
15277 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
15278
15279 * files.el (auto-mode-alist): Change default for XML files to nXML
15280 mode (Bug#4169).
15281
15282 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
15283
15284 * server.el (server-ensure-safe-dir): Pass 'integer
15285 to `file-attributes', as suggested.
15286
15287 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
15288
15289 * dired-aux.el (dired-query-alist): Remove spurious backslash.
15290 (dired-query): Use read-key.
15291
15292 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
15293
15294 * cus-start.el (ns-use-qd-smoothing): Remove.
15295
15296 2009-09-18 Glenn Morris <rgm@gnu.org>
15297
15298 * allout.el (top-level): Remove unnecessary progn.
15299
15300 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
15301
15302 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
15303 definition of abbrev table.
15304
15305 * speedbar.el (speedbar-track-mouse):
15306 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
15307 * net/eudc.el (eudc-expand-inline):
15308 * net/newst-backend.el (newsticker--cache-read-feed):
15309 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
15310 condition-case handlers.
15311
15312 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
15313
15314 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
15315 (gdb-var-list): Add an element for has_more field.
15316 (gdb-non-stop-handler): Enable pretty printing for STL containers.
15317 (gdb-var-create-handler, gdb-var-list-children-handler-1)
15318 (gdb-var-update-handler-1): Parse output of dynamic variable
15319 objects (STL containers).
15320 (gdb-var-delete-1): Pass var1 as an explicit second argument.
15321 (gdb-get-field): Delete alias. Use bindat-get-field directly.
15322
15323 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
15324 gdb-var-list.
15325 (gud-speedbar-buttons): Make node expandable if expression "has more"
15326 children.
15327
15328 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
15329
15330 * startup.el (emacs-quick-startup): Remove variable and all uses.
15331 (command-line): Set `inhibit-x-resources' instead.
15332 (command-line-1): Use `inhibit-x-resources' instead.
15333
15334 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
15335
15336 * subr.el: Fix last change to avoid using the `unless' macro,
15337 which breaks bootstrapping.
15338
15339 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
15340
15341 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
15342 extended definitions, in case we reload subr.el after having
15343 loaded CL.
15344 (eval-next-after-load): Mark as obsolete.
15345
15346 2009-09-17 Juri Linkov <juri@jurta.org>
15347
15348 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
15349 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
15350 (menu-bar-showhide-menu, menu-bar-tools-menu)
15351 (menu-bar-describe-menu, menu-bar-help-menu)
15352 (minibuffer-local-completion-map, minibuffer-local-map):
15353 Fix list quoting.
15354
15355 2009-09-17 Glenn Morris <rgm@gnu.org>
15356
15357 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
15358 arguments, whether or not it has a handler.
15359
15360 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
15361
15362 * simple.el (hard-newline): Give it a doc-string.
15363
15364 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
15365 (lisp-mode-syntax-table): Give them doc-strings.
15366
15367 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
15368
15369 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
15370 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
15371 (menu-bar-options-menu, menu-bar-showhide-menu)
15372 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
15373 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
15374 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
15375 (menu-bar-options-menu, menu-bar-tools-menu)
15376 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
15377 (menu-bar-help-menu):
15378 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
15379 string arguments.
15380
15381 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
15382 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
15383 calls for the menu names and :help.
15384
15385 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
15386
15387 * mouse.el (minor-mode-menu-from-indicator): Pay attention
15388 to :minor-mode-function (bug#4455).
15389
15390 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
15391
15392 * startup.el (command-line): Initialize the window-system after
15393 processing the command-line.
15394
15395 * textmodes/page.el (what-page): Make sure we don't inf-loop if
15396 page-delimiter matches the empty string.
15397
15398 2009-09-16 Glenn Morris <rgm@gnu.org>
15399
15400 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
15401 byte-compile-not-obsolete-var. It's a list now.
15402 (byte-compile-not-obsolete-funcs): New variable.
15403 (byte-compile-warn-obsolete): Don't warn about functions if they are in
15404 byte-compile-not-obsolete-funcs.
15405 (byte-compile-variable-ref, byte-compile-defvar): Update for
15406 byte-compile-not-obsolete-vars name-change and list nature.
15407 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
15408 and variables behind (f)boundp tests.
15409 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
15410
15411 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
15412
15413 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
15414
15415 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
15416
15417 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
15418 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
15419 Don't autoload.
15420
15421 2009-09-15 Stephen Eglen <stephen@gnu.org>
15422
15423 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
15424 the virtual-buffers, use the name of the buffer specified by
15425 find-file-noselect, as the match may be a symlink. (This was a
15426 problem if the target and the symlink had different names.)
15427
15428 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
15429
15430 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
15431
15432 * desktop.el (desktop-path): Check user-emacs-directory.
15433
15434 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
15435
15436 * loadup.el: Use after-load-functions to GC after loading each file.
15437 Remove the explicit GC calls that used to be sprinkled around.
15438
15439 * subr.el (after-load-functions): New hook.
15440 (do-after-load-evaluation): Run it. Use string-match-p to detect
15441 `obsolete' packages, rather than painfully extracting the relevant
15442 directory name.
15443
15444 2009-09-15 Glenn Morris <rgm@gnu.org>
15445
15446 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
15447 free variable `doc'.
15448
15449 * dired.el (dired-mode-map): Add menu entry for async shell command.
15450
15451 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
15452 variables, also consider the .elc files, since the .el files are
15453 normally gzipped (subsequent code locates the .el.gz from the .elc).
15454
15455 * calc/calc-prog.el (arglist): Define for compiler.
15456
15457 * calendar/diary-lib.el (diary-display-function): Change the default to
15458 fancy display.
15459 (body): Define for compiler.
15460
15461 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
15462 (byte-compile-file-form, byte-compile-lambda)
15463 (byte-compile-top-level-body, byte-compile-form)
15464 (byte-compile-variable-ref, byte-compile-setq)
15465 (byte-compile-setq-default, byte-compile-body)
15466 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
15467 (batch-byte-compile): Give some more local variables with common names
15468 a "bytecomp-" prefix to avoid masking warnings about free variables.
15469
15470 * startup.el (command-line-1): Give local variables with common names a
15471 distinguishing prefix, so as not to hide free variable warnings during
15472 bootstrap.
15473
15474 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
15475 clever and add a suffix to make a unique name, just let the user decide
15476 whether or not to overwrite it. If the input is a directory, write the
15477 default filename to that directory. (Bug#4388)
15478 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
15479 is a filename-as-a-directory.
15480
15481 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
15482
15483 * textmodes/page.el (what-page): Don't move to beginning of line.
15484 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
15485
15486 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
15487
15488 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
15489
15490 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
15491
15492 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
15493 * help.el (help-for-help-internal): Add purecopy calls for text.
15494
15495 * vc.el (top): print-log method now takes an optional SHORTLOG
15496 argument. Add a new method: root.
15497 (vc-root-diff, vc-print-root-log): New functions.
15498 (vc-log-short-style): New variable.
15499 (vc-print-log-internal): Add support for showing short logs.
15500
15501 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
15502 vc-print-root-log and vc-print-root-diff.
15503
15504 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
15505 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
15506 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
15507 short logs.
15508
15509 * vc-cvs.el (vc-cvs-print-log):
15510 * vc-mtn.el (vc-mtn-print-log):
15511 * vc-rcs.el (vc-rcs-print-log):
15512 * vc-sccs.el (vc-sccs-print-log):
15513 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
15514 that is ignored for now.
15515
15516 * vc-mtn.el (vc-mtn-annotate-command):
15517 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
15518
15519 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
15520
15521 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
15522 to function-key-map, and give them ascii-character property.
15523 * term/x-win.el (x-alternatives-map):
15524 * term/ns-win.el (ns-alternatives-map):
15525 * term/internal.el (msdos-key-remapping-map):
15526 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
15527
15528 2009-09-14 Glenn Morris <rgm@gnu.org>
15529
15530 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
15531 temp-buffers (2009-09-12).
15532
15533 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
15534
15535 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
15536 the new read-key function.
15537
15538 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
15539
15540 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
15541 is defined (Bug#4405).
15542
15543 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
15544
15545 * recentf.el (recentf-cleanup): Use a hash table to find
15546 duplicates (Bug#4407).
15547
15548 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
15549
15550 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
15551 kp-0 to ascii equivalents (Bug#4325).
15552
15553 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
15554
15555 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
15556
15557 * eshell/em-hist.el:
15558 * eshell/em-dirs.el (eshell-complete-user-reference):
15559 Declare pcomplete functions and variables to avoid compiler warnings.
15560
15561 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
15562
15563 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
15564 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
15565 * eshell/em-alias.el (eshell-aliases-file):
15566 * eshell/em-hist.el (eshell-history-file-name):
15567 Use expand-file-name instead of concat to make file names (Bug#4308).
15568
15569 2009-09-13 Glenn Morris <rgm@gnu.org>
15570
15571 * ediff-merg.el (ediff-do-merge):
15572 * filesets.el (filesets-run-cmd):
15573 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
15574 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
15575 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
15576 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
15577 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
15578 Replace empty `let's with `progn'.
15579
15580 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
15581
15582 * mail/sendmail.el (send-mail-function):
15583 * tooltip.el (tooltip-mode):
15584 * simple.el (transient-mark-mode):
15585 * rfn-eshadow.el (file-name-shadow-mode):
15586 * frame.el (blink-cursor-mode):
15587 * font-core.el (global-font-lock-mode):
15588 * files.el (temporary-file-directory)
15589 (small-temporary-file-directory, auto-save-file-name-transforms):
15590 * epa-hook.el (auto-encryption-mode):
15591 * composite.el (global-auto-composition-mode):
15592 Use custom-initialize-delay.
15593 * startup.el (command-line): Don't explicitly call
15594 custom-reevaluate-setting for all the above vars.
15595 * custom.el (custom-initialize-safe-set)
15596 (custom-initialize-safe-default): Delete.
15597
15598 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15599
15600 * term/x-win.el (x-initialize-window-system):
15601 * term/w32-win.el (w32-initialize-window-system):
15602 * term/ns-win.el (ns-initialize-window-system): Don't call
15603 mouse-wheel-mode since it's enabled globally by default already.
15604
15605 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
15606 actually define the variable, but only silences the byte-compiler.
15607 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
15608 before looking it up.
15609 (mouse-wheel-scroll-amount): Also reset the bindings if this value
15610 is changed.
15611
15612 2009-09-12 Glenn Morris <rgm@gnu.org>
15613
15614 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
15615 1000.
15616 (elint-add-required-env): Don't beep on error.
15617 (elint-forms): In case of error, return ENV unchanged.
15618 (elint-init-env): Skip non-list forms.
15619 (elint-log): Handle unknown file positions.
15620
15621 2009-09-12 Daiki Ueno <ueno@unixuser.org>
15622
15623 * epg.el (epg-make-context): Add autoload cookie.
15624 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
15625 (epg-decrypt-string, epg-start-verify, epg-verify-file)
15626 (epg-verify-string, epg-start-sign, epg-sign-file)
15627 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
15628 (epg-encrypt-string, epg-start-export-keys)
15629 (epg-export-keys-to-file, epg-export-keys-to-string)
15630 (epg-start-import-keys, epg-import-keys-from-file)
15631 (epg-import-keys-from-string, epg-start-receive-keys)
15632 (epg-receive-keys, epg-import-keys-from-server)
15633 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
15634 (epg-sign-keys, epg-start-generate-key)
15635 (epg-generate-key-from-file, epg-generate-key-from-string):
15636 Remove autoload cookie.
15637
15638 2009-09-12 Eli Zaretskii <eliz@gnu.org>
15639
15640 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
15641 reevaluation of trash-directory.
15642
15643 * mwheel.el: Fix last change.
15644 (mouse-wheel-mode): New defvar.
15645 (mouse-wheel-mode): Remove autoload cookie.
15646
15647 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15648
15649 * mwheel.el (mwheel-installed-bindings): New var.
15650 (mouse-wheel-mode): Use it, so as to make sure we really remove all
15651 the bindings we set last time. Use custom-initialize-delay.
15652 * loadup.el: Load mwheel after term/*-win.el.
15653 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
15654 and mouse-wheel-up-event now that their first evaluation is done
15655 sufficiently late to be correct.
15656
15657 * startup.el (tutorial-directory): Make it a defcustom.
15658 Use custom-initialize-delay rather than eval-at-startup to set it.
15659 * image.el (image-load-path): Make it a defcustom.
15660 Use custom-initialize-delay rather than eval-at-startup to set it.
15661 * subr.el (eval-at-startup): Remove.
15662 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
15663
15664 * subr.el (do-after-load-evaluation): Warn the user after loading an
15665 obsolete package.
15666
15667 2009-09-12 Glenn Morris <rgm@gnu.org>
15668
15669 * proced.el (proced-mark-alt): Remove alias.
15670 (proced-mode-map): Remove proced-mark-alt.
15671
15672 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
15673 Elint file and directory. Remove initialization entry.
15674
15675 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
15676 commands.
15677 (elint-current-buffer): Set mode-line-process.
15678 (elint-init-env): Handle define-derived-mode.
15679 Fix declare-function with unspecified arglist. Guard against odd
15680 defalias statements (eg iso-insert's 8859-1-map).
15681 (elint-add-required-env): Use a temp buffer.
15682 (elint-form): Just print the function/macro name, not the whole form.
15683 Return env unchanged if we fail to parse a macro.
15684 (elint-forms): Guard against parse errors.
15685 (elint-output): New function, to handle batch mode.
15686 (elint-log-message): Add optional argument. Use elint-output.
15687 (elint-set-mode-line): New function.
15688
15689 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
15690
15691 * emacs-lisp/elp.el (elp-not-profilable): Add more
15692 functions (Bug#4233).
15693
15694 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
15695
15696 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
15697 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
15698
15699 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
15700
15701 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
15702 (gdb-var-list-children): Use json parsing.
15703
15704 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
15705
15706 * progmodes/js.el (js--proper-indentation): Handle the case where
15707 char-before is null. Reported by Deniz Dogan.
15708
15709 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
15710
15711 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
15712
15713 2009-09-11 Daiki Ueno <ueno@unixuser.org>
15714
15715 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
15716 (epg-digest-algorithm-alist): Add SHA224.
15717 (epg-context-set-passphrase-callback)
15718 (epg-context-set-progress-callback): Add description about
15719 callback function.
15720
15721 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
15722
15723 * custom.el (custom-delayed-init-variables): New var.
15724 (custom-initialize-delay): New function.
15725 * startup.el (command-line): "Re"evaluate all vars in
15726 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
15727 explicitly any more.
15728 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
15729 to avoid creating a ~/.emacs.d at build-time (bug#4347).
15730
15731 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
15732
15733 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
15734
15735 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
15736 (gdb-var-update-handler): Use json parsing.
15737
15738 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
15739
15740 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
15741 decode annotated text, regardless of language environment. (Bug#2741)
15742
15743 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
15744
15745 * Makefile.in (autoloads): Make rmail.el writable as well.
15746
15747 2009-09-11 Glenn Morris <rgm@gnu.org>
15748
15749 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
15750 loaddefs.el.
15751 * dired.el: Regenerate with extracted autoloads.
15752 * Makefile.in (autoloads): Make dired.el writable.
15753
15754 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
15755 * ibuffer.el: Regenerate with extracted autoloads.
15756 * Makefile.in (autoloads): Make ibuffer.el writable.
15757
15758 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
15759 * version.el (emacs-copyright, emacs-major-version)
15760 (emacs-minor-version): Reformat doc-strings for make-docfile.
15761
15762 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
15763 functions and variables, since they must be stuff specific to some other
15764 platform.
15765 (apropos-print): Make mouse-click message less specific about button.
15766
15767 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
15768 that records where a macro was defined.
15769 * help-fns.el (describe-function-1): Mention if a function has a
15770 compiler-macro.
15771 * help-mode.el (help-function-cmacro): New button.
15772
15773 * locate.el (top-level): Always require dired.
15774 (locate-mode-map): Initialize inside the defvar.
15775
15776 * net/ange-ftp.el (dired-compress-file): Declare.
15777 (ange-ftp-dired-compress-file): Add doc string.
15778
15779 * term/ns-win.el (x-display-name, x-setup-function-keys):
15780 Unify doc-strings with X versions.
15781
15782 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
15783
15784 * emulation/crisp.el (crisp-mode-map): Move initialization
15785 into declaration.
15786 (crisp-mode): Use define-minor-mode.
15787
15788 * progmodes/xscheme.el (xscheme-evaluation-commands):
15789 Put a :advertised-binding property rather than using
15790 advertised-xscheme-send-previous-expression.
15791 (advertised-xscheme-send-previous-expression): Declare obsolete.
15792 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
15793 `advertised-undo'.
15794 (crisp-mode): Add corresponding bindings to
15795 undo's :advertised-binding instead.
15796 * dired.el (dired-mode-map): Put a :advertised-binding property rather
15797 than using dired-advertised-find-file.
15798 (dired-advertised-find-file):
15799 * simple.el (advertised-undo):
15800 * wid-edit.el (advertised-widget-backward): Declare obsolete.
15801 (widget-keymap): Put a :advertised-binding property rather
15802 than using advertised-widget-backward.
15803 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
15804 than using advertised-undo.
15805 * tutorial.el (tutorial--default-keys): Adjust accordingly.
15806
15807 2009-09-10 Simon South <ssouth@slowcomputing.org>
15808
15809 * progmodes/delphi.el (delphi-tab): Indent region when Transient
15810 Mark mode is enabled and region is active; otherwise indent or
15811 insert TAB as usual.
15812 (delphi-mode): Update description of TAB-key binding.
15813
15814 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
15815
15816 * subr.el (define-key-rebound-commands): Mark obsolete.
15817 * startup.el (precompute-menubar-bindings): Remove.
15818 (normal-top-level): Remove obsolete code that tried to precompute
15819 menubar bindings.
15820 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
15821 define-key-rebound-commands and precompute-menubar-bindings.
15822
15823 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
15824
15825 * net/imap.el (imap-interactive-login): Better messages.
15826 (imap-open): Fix bug with renamed buffer on reconnect.
15827 (imap-authenticate): Add buffer-local imap-last-authenticator variable
15828 for easier debugging and cleaner code. On successful (guessed based on
15829 server capabilities) secondary authentication, set imap-state
15830 correctly.
15831 (imap-last-authenticator): Define imap-last-authenticator as a variable
15832 to avoid warnings.
15833
15834 2009-09-10 Glenn Morris <rgm@gnu.org>
15835
15836 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
15837
15838 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
15839 (byte-compile-file-form-autoload): Don't warn about unknown functions
15840 where the autoload statement comes after the use.
15841 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
15842 that any handlers inside the body (eg require) are in turn respected.
15843
15844 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
15845 effects.
15846
15847 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
15848 and syntax and abbrev tables basic docs, if they don't have any.
15849
15850 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
15851
15852 * international/mule-cmds.el (top-level): Require cl when compiling.
15853 (view-hello-file): Use default-value rather than
15854 default-enable-multibyte-characters.
15855
15856 * progmodes/fortran.el: Move all safe and risky properties into the
15857 defcustoms.
15858
15859 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
15860 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
15861 * mail/undigest.el:
15862 Put autoloads in rmail.el rather than loaddefs.el.
15863 * mail/rmail.el: Regenerate with extracted autoloads.
15864
15865 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
15866 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
15867
15868 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
15869
15870 Reported in thread for Bug#4375.
15871 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
15872 "-data-evaluate-expression" instead of print.
15873 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
15874 (gdb-tooltip-print): Parse output from above MI command.
15875 (gdb): Revert 2009-08-11 change. User should detach inferior
15876 manually.
15877
15878 Remove the word "separate" from IO functions as inferior
15879 output is now never displayed in the GUD buffer.
15880
15881 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
15882
15883 * startup.el (command-line-normalize-file-name): On Windows and
15884 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
15885
15886 2009-09-10 Juri Linkov <juri@jurta.org>
15887
15888 * isearch.el (isearch-text-char-description): Propertize escape
15889 character sequences with the `escape-glyph' face. (Bug#4344)
15890
15891 * simple.el (shell-command): Set asynchronous process filter to
15892 `comint-output-filter'. (Bug#4343)
15893
15894 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
15895 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
15896 the list. Move "asm" to the bottom.
15897 (grep-find-ignored-directories): Add `choice' with nil value
15898 to empty the list easily.
15899 (grep-find-ignored-files): New option.
15900 (grep-files-history): Set to nil by default instead of '("ch" "el").
15901 (grep-compute-defaults): Add "<X>" to `grep-template'.
15902 (grep-read-files): Bind new local variables `default-alias' and
15903 `default-extension'. Use a list of default values for the file prompt.
15904 (lgrep): Add `--exclude=' command line options composed from
15905 `grep-find-ignored-files'.
15906 (rgrep): Add `-name' command line options composed from
15907 `grep-find-ignored-files'. (Bug#4301)
15908
15909 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
15910
15911 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
15912 (bug#4368).
15913
15914 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
15915
15916 * calendar/time-date.el (autoload):
15917 Expand define-obsolete-function-alias into defalias and make-obsolete
15918 for old Emacsen that Gnus supports.
15919 (with-no-warnings): Define it for old Emacsen.
15920 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
15921 is available.
15922 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
15923 float-time is available; suppress compile warning for time-to-seconds.
15924
15925 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
15926
15927 * net/imap.el (imap-message-map): Docstring fix.
15928
15929 2009-09-09 Glenn Morris <rgm@gnu.org>
15930
15931 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
15932 line numbers too. (Bug#4374)
15933
15934 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
15935
15936 * smerge-mode.el (smerge-remove-props, smerge-refine):
15937 Use with-silent-modifications (bug#4342).
15938
15939 * subr.el (with-silent-modifications): New macro.
15940
15941 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
15942
15943 * files.el (top-level): Require `cl' when compiling.
15944
15945 2009-09-07 Glenn Morris <rgm@gnu.org>
15946
15947 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
15948
15949 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
15950 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
15951
15952 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
15953
15954 * vc-git.el (vc-git-annotate-command): Use separator to parse
15955 arguments correctly.
15956
15957 2009-09-06 Eli Zaretskii <eliz@gnu.org>
15958
15959 * proced.el (proced-mode): Doc fix.
15960
15961 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
15962
15963 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
15964 lstat fails.
15965 (tramp-do-file-attributes-with-ls): Check for file existence at
15966 remote end.
15967 (tramp-do-file-attributes-with-stat): Likewise.
15968 (tramp-convert-file-attributes): Return nil when attr is nil.
15969
15970 2009-09-05 Glenn Morris <rgm@gnu.org>
15971
15972 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
15973 properties to this button.
15974 (diary-fancy-display): Don't extend the button to the final newline.
15975 (diary-fancy-display-mode): Continue to define "q" as a local key.
15976
15977 * calendar/cal-china.el (holiday-chinese): Make it slightly more
15978 efficient.
15979
15980 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
15981
15982 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
15983 (byte-compile-dest-file-function): New option.
15984 (byte-compile-dest-file): Doc fix.
15985 Obey byte-compile-dest-file-function.
15986 (byte-compile-cl-file-p): New function.
15987 (byte-compile-eval): Only suppress noruntime warnings about cl functions
15988 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
15989 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
15990 than for file being previously loaded.
15991 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
15992 (byte-compile-file-form-require): Handle the case where requiring a file
15993 indirectly causes CL to be loaded.
15994
15995 2009-09-05 Karl Fogel <kfogel@red-bean.com>
15996
15997 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
15998 before killing the old buffer, since by the time `kill-buffer' is
15999 run so many buffer variables have been set to nil that it may not
16000 behave as expected. (Bug#4061)
16001
16002 2009-09-05 Karl Fogel <kfogel@red-bean.com>
16003
16004 * files.el (find-alternate-file): If the old buffer is modified
16005 and visiting a file, behave similarly to `kill-buffer' when
16006 killing it, thus reverting to the pre-1.878 behavior; see
16007 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
16008 for discussion. Also, consult `buffer-file-name' as a variable
16009 not as a function, for consistency with the rest of the code.
16010
16011 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
16012
16013 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
16014 also when adding a new directory.
16015
16016 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
16017 defun.
16018
16019 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
16020
16021 * files.el (locate-file-completion-table): Make it provide boundary
16022 information, so partial-completion works better.
16023
16024 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
16025
16026 * mail/footnote.el (Footnote-text-under-cursor):
16027 Check footnote-text-marker-alist before using it (bug#4324).
16028
16029 2009-09-04 Glenn Morris <rgm@gnu.org>
16030
16031 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
16032 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
16033 * play/solitaire.el, play/tetris.el:
16034 Remove leading * from defcustom and defface docs.
16035
16036 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
16037 necessary.
16038 (diary-fancy-overriding-map): New variable.
16039 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
16040 Use view-mode.
16041
16042 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
16043 goto-line.
16044
16045 2009-09-03 Glenn Morris <rgm@gnu.org>
16046
16047 * arc-mode.el (archive-mode):
16048 * dos-fns.el (set-default-process-coding-system):
16049 * man.el (Man-getpage-in-background):
16050 * menu-bar.el (menu-bar-describe-menu):
16051 * server.el (server-process-filter):
16052 * startup.el (command-line):
16053 * tar-mode.el (tar-header-block-tokenize, tar-extract):
16054 * w32-fns.el (set-default-process-coding-system):
16055 * x-dnd.el (x-dnd-handle-file-name):
16056 * international/mule-cmds.el (mule-menu-keymap)
16057 (set-default-coding-systems, language-info-alist, set-language-info)
16058 (set-language-environment, standard-display-european-internal)
16059 (set-locale-environment):
16060 * international/mule-diag.el (mule-diag):
16061 * mail/emacsbug.el (report-emacs-bug):
16062 * mail/rmail.el (rmail-mode):
16063 * mail/sendmail.el (mail-setup):
16064 Use default-value rather than default-enable-multibyte-characters.
16065
16066 * progmodes/f90.el: Move all safe properties into the defcustoms.
16067 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
16068
16069 * calendar/appt.el (appt-check):
16070 * calendar/diary-lib.el (diary-set-header, diary-live-p)
16071 (diary-check-diary-file, diary-list-entries)
16072 (diary-include-other-diary-files, diary-simple-display)
16073 (diary-fancy-display, diary-print-entries)
16074 (diary-mark-included-diary-files, diary-make-entry):
16075 Don't call substitute-in-file-name on diary-file.
16076
16077 2009-09-03 Eduard Wiebe <usenet@pusto.de>
16078 Stefan Monnier <monnier@iro.umontreal.ca>
16079
16080 * mail/footnote.el (footnote-prefix): Make it a defcustom.
16081 (footnote-mode-map): Move initialization into the declaration.
16082 (footnote-minor-mode-map): Define it rather than changing global-map.
16083 (footnote-mode): Use define-minor-mode.
16084
16085 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
16086
16087 * net/tramp.el (tramp-handle-file-attributes-with-ls)
16088 (tramp-do-file-attributes-with-perl)
16089 (tramp-do-file-attributes-with-stat): Rename from
16090 `tramp-handle-file-attributes-with-*'.
16091 (tramp-handle-file-attributes): Use them.
16092 (tramp-do-directory-files-and-attributes-with-perl)
16093 (tramp-do-directory-files-and-attributes-with-stat): Rename from
16094 `tramp-handle-directory-files-and-attributes-with-*'.
16095 (tramp-handle-directory-files-and-attributes): Use them.
16096 (tramp-method-out-of-band-p): Additional parameter SIZE.
16097 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
16098 (tramp-handle-write-region): Use it.
16099 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
16100 (tramp-handle-vc-registered): Check, whether the first run did
16101 return files to be tested.
16102 (tramp-advice-make-auto-save-file-name): Do not call directly
16103 `tramp-handle-make-auto-save-file-name', because this would bypass
16104 the locking mechanism.
16105
16106 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
16107 (file-remote-p, process-file, start-file-process, set-file-times)
16108 (tramp-compat-file-attributes): Compatibility functions shall not
16109 call directly `tramp-handle-*', because this would bypass the
16110 locking mechanism.
16111 (tramp-compat-number-sequence): New defun.
16112
16113 2009-09-02 Glenn Morris <rgm@gnu.org>
16114
16115 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
16116 alias for float-time.
16117 (time-to-number-of-days): In Emacs, use float-time.
16118 * net/newst-backend.el (time-add): Suppress warnings from compat
16119 function.
16120 * time.el (emacs-uptime, emacs-init-time):
16121 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
16122 Use float-time rather than time-to-seconds.
16123
16124 * minibuffer.el (completion-initials-expand): Fix typo.
16125
16126 * faces.el (modeline, modeline-inactive, modeline-highlight)
16127 (modeline-buffer-id):
16128 * info.el (info-menu-5): Mark these face aliases as obsolete.
16129
16130 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
16131
16132 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
16133 space ...
16134 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
16135 no "--thread" option.
16136 (gdb-stopped): Don't print "Switched to thread" message when it is
16137 unchanged.
16138
16139 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
16140
16141 * minibuffer.el (completion-try-completion)
16142 (completion-all-completions): Remove ill-defined (and
16143 mistakenly installed and luckily never used nor documented)
16144 `completion-styles' property.
16145 (completion-initials-expand, completion-initials-all-completions)
16146 (completion-initials-try-completion): New functions.
16147 (completion-styles-alist): Add doc to each entry.
16148 Add new `initials' entry.
16149
16150 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
16151
16152 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
16153 MI command -var-evaluate-expression.
16154 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
16155 and tweak for case of string child.
16156 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
16157
16158 2009-09-01 Glenn Morris <rgm@gnu.org>
16159
16160 * add-log.el (change-log-date-face, change-log-name-face)
16161 (change-log-email-face, change-log-file-face, change-log-list-face)
16162 (change-log-conditionals-face, change-log-function-face)
16163 (change-log-acknowledgement-face):
16164 * cus-edit.el (custom-invalid-face, custom-rogue-face)
16165 (custom-modified-face, custom-set-face, custom-changed-face)
16166 (custom-saved-face, custom-button-face, custom-button-pressed-face)
16167 (custom-documentation-face, custom-state-face, custom-comment-face)
16168 (custom-comment-tag-face, custom-variable-tag-face)
16169 (custom-variable-button-face, custom-face-tag-face)
16170 (custom-group-tag-face-1, custom-group-tag-face):
16171 * diff-mode.el (diff-header-face, diff-file-header-face)
16172 (diff-index-face, diff-hunk-header-face, diff-removed-face)
16173 (diff-added-face, diff-changed-face, diff-function-face)
16174 (diff-context-face, diff-nonexistent-face):
16175 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
16176 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
16177 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
16178 (Info-title-4-face):
16179 * isearch.el (isearch-lazy-highlight-face):
16180 * log-view.el (log-view-file-face, log-view-message-face):
16181 * paren.el (show-paren-match-face, show-paren-mismatch-face):
16182 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
16183 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
16184 (cvs-msg-face):
16185 * smerge-mode.el (smerge-mine-face, smerge-other-face)
16186 (smerge-base-face, smerge-markers-face):
16187 * wid-edit.el (widget-documentation-face, widget-button-face)
16188 (widget-field-face, widget-single-line-field-face)
16189 (widget-inactive-face, widget-button-pressed-face):
16190 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
16191 (woman-addition-face):
16192 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
16193 (eshell-ls-executable-face, eshell-ls-readonly-face)
16194 (eshell-ls-unreadable-face, eshell-ls-special-face)
16195 (eshell-ls-missing-face, eshell-ls-archive-face)
16196 (eshell-ls-backup-face, eshell-ls-product-face)
16197 (eshell-ls-clutter-face):
16198 * eshell/em-prompt.el (eshell-prompt-face):
16199 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
16200 * obsolete/old-whitespace.el (whitespace-highlight-face):
16201 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
16202 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
16203 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
16204 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
16205 (antlr-font-lock-literal-face):
16206 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
16207 (ebrowse-root-class-face, ebrowse-file-name-face)
16208 (ebrowse-default-face, ebrowse-member-attribute-face)
16209 (ebrowse-member-class-face, ebrowse-progress-face):
16210 * progmodes/make-mode.el (makefile-space-face):
16211 * progmodes/sh-script.el (sh-heredoc-face):
16212 * textmodes/flyspell.el (flyspell-incorrect-face)
16213 (flyspell-duplicate-face):
16214 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
16215 * textmodes/texinfo.el (texinfo-heading-face):
16216 Mark face aliases with "-face" suffix as obsolete.
16217
16218 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
16219 compiler.
16220
16221 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
16222 (eudc-bob-sound-menu): Use defvar rather than defconst, since
16223 easy-menu-define wants to modify these.
16224
16225 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
16226
16227 * net/browse-url.el (browse-url-file-url):
16228 * term/internal.el (dos-codepage-setup):
16229 Use default-value rather than default-enable-multibyte-characters.
16230
16231 * progmodes/etags.el (etags-goto-tag-location):
16232 * progmodes/flymake.el (flymake-highlight-line)
16233 (flymake-goto-file-and-line, flymake-goto-line):
16234 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
16235 (gdb-goto-breakpoint):
16236 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
16237 * progmodes/python.el (python-find-function)
16238 (python-pdbtrack-track-stack-file):
16239 * progmodes/verilog-mode.el (verilog-surelint-off):
16240 * term/ns-win.el (ns-open-file-select-line):
16241 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
16242 Use forward-line rather than goto-line.
16243
16244 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
16245 * textmodes/reftex-index.el (reftex-display-index):
16246 * textmodes/reftex-ref.el (reftex-offer-label-menu):
16247 * textmodes/reftex-toc.el (reftex-toc):
16248 Remove unnecessary bindings of default-major-mode (all are followed by
16249 major-mode check and possible mode switch).
16250
16251 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
16252
16253 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
16254 Handle watchpoints (bug#4282).
16255 (def-gdb-thread-buffer-command): Enable thread to be selected by
16256 clicking without selecting threads buffer first.
16257 (gdb-current-context-command): Use selected frame so that "up",
16258 "down" etc work in the GUD buffer.
16259 (gdb-update): Find selected frame before rendering stack buffer.
16260 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
16261
16262 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
16263
16264 * progmodes/sym-comp.el (displayed-completions): Remove.
16265 (symbol-complete): Use minibuffer-complete.
16266
16267 2009-08-31 Glenn Morris <rgm@gnu.org>
16268
16269 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
16270
16271 * apropos.el (apropos-symbols-internal):
16272 Handle (obsolete) face aliases.
16273
16274 * faces.el (describe-face): Adjust the output format to be more like
16275 describe-variable, and to mention (obsolete) face aliases.
16276 Adjust the whitespace so that help-setup-xref works.
16277
16278 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
16279 * calendar/diary-lib.el (diary-button-face):
16280 Mark these face aliases as obsolete.
16281
16282 * calendar/calendar.el (calendar-today): Doc fix.
16283
16284 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
16285
16286 * progmodes/gdb-mi.el (gdb-control-all-threads)
16287 (gdb-control-current-thread): Force tool bar update.
16288 (gdb-non-stop-handler): New function.
16289 (gdb-init-1): Use it to test if non-stop mode is supported.
16290 Remove unused gdbmi buffer type.
16291
16292 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
16293
16294 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
16295 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
16296
16297 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
16298
16299 * comint.el (comint-exec-1): Check command is non-null first.
16300 Part of gdb-mi.el change (2009-08-28).
16301
16302 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
16303
16304 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
16305
16306 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
16307
16308 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
16309 instead of `dolist' to avoid a recursive require when bootstrapping.
16310
16311 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
16312
16313 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
16314
16315 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
16316
16317 * net/imap.el (imap-send-command): Simplify.
16318 (imap-wait-for-tag): point-max -> buffer-size.
16319
16320 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
16321
16322 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
16323 with constant argument.
16324
16325 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
16326
16327 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
16328
16329 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
16330 Change default, since most of our files don't have a history.
16331 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
16332 the user.
16333
16334 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16335 Add comint-run.
16336
16337 * calc/calc.el: Improve commenting convention.
16338 (calc-digit-map, toplevel): Simplify.
16339
16340 * comint.el (comint-insert-input): Be careful to only set point if we
16341 don't delegate to some other command.
16342
16343 * proced.el (proced-signal-list): Make it an alist.
16344 (proced-grammar-alist): Capitalize names.
16345 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
16346 Disable undo manually and make it read-only.
16347 Use completion-annotate-function.
16348
16349 * minibuffer.el (minibuffer-message): If the current buffer is not
16350 a minibuffer, insert the message in the echo area rather than at the
16351 end of the buffer.
16352 (completion-annotate-function): New variable.
16353 (minibuffer-completion-help): Use it.
16354 (completion--embedded-envvar-table): Environment vars are
16355 always case-sensitive.
16356
16357 2009-08-30 Glenn Morris <rgm@gnu.org>
16358
16359 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
16360 from fortran-current-defun.
16361 (fortran-beginning-of-subprogram): Be more precise about finding the
16362 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
16363 (fortran-end-of-subprogram): Simplify.
16364 (fortran-current-defun): Use fortran-start-prog-re.
16365
16366 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
16367
16368 * subr.el (do-after-load-evaluation): Simplify.
16369
16370 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
16371
16372 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
16373
16374 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
16375 (vc-rcs-print-log): Use it.
16376
16377 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
16378
16379 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
16380
16381 * paths.el (abbrev-file-name): Move to abbrev.el.
16382 * abbrev.el (abbrev-file-name): Move from paths.el.
16383 Obey user-emacs-directory.
16384 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
16385 user-emacs-directory.
16386 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
16387 abbrev-file-name and calc-settings-file any more.
16388 * startup.el (command-line): Recompute abbrev-file-name and
16389 abbreviated-home-dir.
16390 (normal-no-mouse-startup-screen): Improve the generic code and get rid
16391 of the special code for when C-h bindings haven't been changed.
16392 (display-startup-echo-area-message): Use with-current-buffer.
16393 (command-line-1): Use a list of strings, rather than a list of lists
16394 of strings for longopts.
16395
16396 * files.el (get-free-disk-space): Use / for default-directory.
16397
16398 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
16399 Use with-current-buffer.
16400
16401 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
16402 Recognize immutable variables like most-positive-fixnum.
16403 (byte-compile-setq-default): Check and warn if trying to assign
16404 to an immutable variable, or a non-variable.
16405
16406 * progmodes/cc-vars.el (c-comment-continuation-stars):
16407 * progmodes/cc-engine.el (c-looking-at-bos):
16408 * progmodes/cc-cmds.el (c-toggle-auto-state)
16409 (c-forward-into-nomenclature, c-backward-into-nomenclature)
16410 (c-comment-line-break-function): Add version of obsolescence.
16411
16412 2009-08-28 Juri Linkov <juri@jurta.org>
16413
16414 * files.el (magic-fallback-mode-alist): Add ZIP magic number
16415 associated with `archive-mode'.
16416
16417 * image.el (image-type-header-regexps): Use only JPEG magic number
16418 to determine JPEG images, and don't use `image-jpeg-p' because
16419 Emacs can display non-JFIF non-Exif JPEG images.
16420
16421 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
16422
16423 * arc-mode.el (archive-mode):
16424 * emacs-lisp/re-builder.el (re-builder-unload-function):
16425 Protect against the default value of `major-mode' being nil.
16426
16427 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
16428
16429 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
16430 Fix typos in docstrings.
16431
16432 * progmodes/js.el (js--macro-decl-re): Doc fix.
16433 (js--plain-method-re, js--split-name): Refloc docstring.
16434 (js--class-styles, js--make-merged-item, js--splice-into-items):
16435 Fix typos in docstrings; reflow docstrings.
16436 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
16437 (js--variable-decl-matcher, js--inside-pitem-p)
16438 (js--parse-state-at-point, js--get-all-known-symbols)
16439 (js--symbol-history, js-find-symbol, js--js-references)
16440 (js--moz-interactor, js--js-encode-value, js--read-tab):
16441 Fix typos in docstrings.
16442
16443 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
16444
16445 * textmodes/reftex.el (reftex-get-file-buffer-force):
16446 * progmodes/verilog-mode.el (verilog-batch-execute-func):
16447 * emulation/viper.el (viper-go-away, viper-set-hooks):
16448 * emacs-lisp/re-builder.el (re-builder-unload-function):
16449 * emacs-lisp/bytecomp.el (byte-compile-file):
16450 * ses.el (ses-unload-function):
16451 * hexl.el (hexl-find-file):
16452 * files.el (normal-mode):
16453 * ehelp.el (with-electric-help):
16454 * autoinsert.el (auto-insert-alist):
16455 * arc-mode.el (archive-mode):
16456 Use (default-value 'major-mode) instead of default-major-mode.
16457
16458 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
16459 * international/mule.el (load-with-code-conversion):
16460 * emacs-lisp/debug.el (debug):
16461 * ediff-vers.el (ediff-rcs-get-output-buffer):
16462 * dired.el (dired-internal-noselect): Don't let-bind
16463 default-major-mode around code that doesn't use it.
16464 E.g. buffer creation via get-buffer-create doesn't use it.
16465
16466 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
16467
16468 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
16469 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
16470 when writing the temp file. Otherwise, epa-file gets confused.
16471 (tramp-register-file-name-handlers): Make it a defun. Move also
16472 `epa-file-handler' to the front of `file-name-handler-alist'.
16473
16474 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
16475
16476 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
16477 start right after a ^M.
16478 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
16479 (tramp-completion-file-name-regexp-separate)
16480 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
16481 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
16482 Don't modify last-coding-system-used by accident.
16483 (tramp-completion-file-name-handler): Apply the checks here,
16484 instead during registration.
16485 (tramp-register-file-name-handlers): Renamed from
16486 `tramp-register-file-name-handler'. Register both
16487 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
16488 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
16489
16490 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
16491
16492 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
16493 Remove variable ...
16494 (gdb-init-1, gdb-display-separate-io-buffer)
16495 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
16496 references to it.
16497 (gdb-inferior-io-mode): Use make-comint-in-buffer.
16498 (gdb-inferior-filter): Use comint-output-filter to stop
16499 echoing and remove ^M characters.
16500
16501 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
16502
16503 * emulation/viper-init.el (viper-restore-cursor-type):
16504 * emulation/cua-base.el (cua--update-indications):
16505 Replace default-cursor-type with (default-value 'cursor-type).
16506
16507 * mail/sendmail.el (mail-recover-1):
16508 * international/mule-diag.el (describe-current-coding-system-briefly)
16509 (describe-current-coding-system):
16510 * international/mule-cmds.el (select-safe-coding-system)
16511 (select-message-coding-system)
16512 (set-language-environment-coding-systems, set-locale-environment):
16513 * hexl.el (hexl-insert-multibyte-char):
16514 * dos-w32.el (find-buffer-file-type-coding-system):
16515 * simple.el (what-cursor-position):
16516 Replace uses of default-buffer-file-coding-system
16517 with (default-value 'buffer-file-coding-system).
16518
16519 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
16520 Replace uses of default-cursor-in-non-selected-windows
16521 with (default-value 'cursor-in-non-selected-windows).
16522 Use with-current-buffer.
16523
16524 * mail/feedmail.el: Use CL macros.
16525 (feedmail-run-the-queue, feedmail-send-it-immediately):
16526 * dos-w32.el (find-buffer-file-type): Replace uses of
16527 default-buffer-file-type with (default-value 'buffer-file-type).
16528
16529 2009-08-28 Glenn Morris <rgm@gnu.org>
16530
16531 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
16532 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
16533 Use default-value of major-mode rather than default-major-mode.
16534
16535 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
16536
16537 * Makefile.in (update-elcfiles): Report left over elc files.
16538
16539 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
16540 expand-file-name and with-current-buffer.
16541 (mail-get-names, mail-directory): Use with-current-buffer.
16542
16543 * vc.el (vc-read-revision): New function.
16544 (vc-version-diff, vc-merge): Use it.
16545
16546 2009-08-27 Sam Steingold <sds@gnu.org>
16547
16548 * simple.el (kill-do-not-save-duplicates): New user option.
16549 (kill-new): When it is non-nil, and the new string is the same as
16550 the latest kill, set replace to t to avoid duplicates in kill-ring.
16551
16552 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
16553
16554 * net/tramp.el (tramp-handle-process-file): Do not flush all
16555 caches when `process-file-side-effects' is set.
16556 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
16557 instead of `tramp-find-file-exists-command'.
16558 Unset `process-file-side-effects'.
16559
16560 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
16561
16562 * net/tramp.el (tramp-methods): New method "rsyncc".
16563 (top): Add completion function for "rsyncc".
16564 (tramp-message-show-message): New defvar.
16565 (tramp-message, tramp-error): Use it.
16566 (tramp-do-copy-or-rename-file-directly): Extend check for direct
16567 remote copying.
16568 (tramp-do-copy-or-rename-file-out-of-band): Handle new
16569 `tramp-methods' entry `copy-env' of "rsyncc".
16570 (tramp-vc-registered-read-file-names): New defconst.
16571 (tramp-vc-registered-file-names): New defvar.
16572 (tramp-handle-vc-registered): Implement optimization strategy.
16573 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
16574 (tramp-vc-file-name-handler): New defun.
16575 (tramp-get-ls-command, tramp-get-test-command)
16576 (tramp-get-file-exists-command, tramp-get-remote-ln)
16577 (tramp-get-remote-perl, tramp-get-remote-stat)
16578 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
16579
16580 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
16581 (tramp-cache-inhibit-cache): Extend doc string. It allows also
16582 timestamps.
16583 (tramp-get-file-property): Check for timestamps in
16584 `tramp-cache-inhibit-cache'.
16585 (tramp-set-file-property): Write timestamp.
16586
16587 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
16588
16589 * language/japan-util.el (japanese-symbol-table): Add entries for
16590 cp932-2-byte.
16591
16592 * international/characters.el: Add category `j' to cp932-2-byte.
16593
16594 2009-08-27 Kenichi Handa <handa@m17n.org>
16595
16596 * international/fontset.el (build-default-fontset-data): New macro.
16597 (setup-default-fontset): Use build-default-fontset-data for CJK,
16598 tibetan, ethiopic, and ipa.
16599
16600 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
16601
16602 * cus-start.el (default-major-mode): Customize `major-mode' instead.
16603 (enable-multibyte-characters): Not customizable any more.
16604
16605 * subr.el (default-mode-line-format, default-header-line-format)
16606 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
16607 (default-direction-reversed, default-truncate-lines)
16608 (default-left-margin, default-tab-width, default-case-fold-search)
16609 (default-left-margin-width, default-right-margin-width)
16610 (default-left-fringe-width, default-right-fringe-width)
16611 (default-fringes-outside-margins, default-scroll-bar-width)
16612 (default-vertical-scroll-bar, default-indicate-empty-lines)
16613 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
16614 (default-fringe-cursor-alist, default-scroll-up-aggressively)
16615 (default-scroll-down-aggressively, default-fill-column)
16616 (default-cursor-type, default-buffer-file-type)
16617 (default-cursor-in-non-selected-windows)
16618 (default-buffer-file-coding-system, default-major-mode)
16619 (default-enable-multibyte-characters): Mark as obsolete.
16620
16621 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
16622
16623 * vc-dir.el (vc-dir-update): Remove debug helper.
16624
16625 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
16626
16627 2009-08-26 Sam Steingold <sds@gnu.org>
16628
16629 * simple.el (save-interprogram-paste-before-kill): New user option.
16630 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
16631 save the interprogram-paste into kill-ring before overriding it
16632 with the Emacs kill.
16633
16634 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
16635
16636 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
16637 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
16638 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
16639 and move to vc-rcs.el.
16640 (vc-default-next-revision): Rename to vc-rcs-next-revision and
16641 move to vc-rcs.el.
16642 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
16643 (vc-rcs-update-changelog): Remove.
16644 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
16645 and move to vc-rcs.el.
16646
16647 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
16648 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
16649 renaming.
16650 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
16651 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
16652 vc.el, renamed to be RCS specific.
16653
16654 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
16655 New functions.
16656 (vc-cvs-update-changelog): Move here from vc.el.
16657
16658 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
16659 New functions.
16660
16661 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
16662
16663 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
16664
16665 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
16666
16667 * vc-git.el (vc-git-register): Use "git add" for directories.
16668 (vc-git-stash, vc-git-stash-show): New functions.
16669 (vc-git-extra-menu-map): Bind them.
16670
16671 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
16672 directory correctly in case the item is a directory itself.
16673
16674 * vc.el: Document the desired behavior for reverted files in the
16675 `added' state.
16676 (vc-default-prettify-state-info): Remove function, unused.
16677
16678 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
16679
16680 2009-08-26 Glenn Morris <rgm@gnu.org>
16681
16682 * bindings.el (standard-mode-line-format): Reposition dashes in
16683 which-func entry. (Bug#4217)
16684
16685 * files.el (enable-local-variables, enable-local-eval)
16686 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
16687 the defcustoms.
16688 (auto-mode-alist, ignored-local-variables)
16689 (save-some-buffers-action-alist): Move risky declarations to the
16690 definitions.
16691 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
16692 (font-lock-defaults, format-alist, imenu--index-alist)
16693 (imenu-generic-expression, input-method-alist, minor-mode-alist)
16694 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
16695 (mode-line-modified, mode-line-mule-info, mode-line-position)
16696 (mode-line-process, mode-line-remote, outline-level)
16697 (parse-time-rules, rmail-output-file-alist)
16698 (special-display-buffer-names, vc-mode):
16699 Move risky declarations to the relevant files.
16700 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
16701 (mode-line-modified, mode-line-process, mode-line-position)
16702 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
16703 * font-core.el (font-lock-defaults):
16704 * format.el (format-alist):
16705 * vc-hooks.el (vc-mode):
16706 * window.el (special-display-buffer-names):
16707 * international/mule-cmds.el (input-method-alist):
16708 Define riskiness here (dumped file) rather than in files.el.
16709 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
16710 * imenu.el (imenu-generic-expression, imenu--index-alist):
16711 * outline.el (outline-level):
16712 * time.el (display-time-string):
16713 * calendar/parse-time.el (parse-time-rules):
16714 * mail/rmailout.el (rmail-output-file-alist):
16715 Autoload riskiness here, rather than placing in files.el.
16716
16717 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
16718
16719 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
16720
16721 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
16722
16723 * simple.el (process-file-side-effects): New defvar.
16724
16725 * dired-aux.el (dired-show-file-type):
16726 * vc.el (vc-diff-internal):
16727 * vc-arch.el (vc-arch-diff):
16728 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
16729 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
16730 * vc-git.el (vc-git-registered, vc-git-working-revision)
16731 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
16732 (vc-git--empty-db-p):
16733 * vc-hooks.el (vc-user-login-name):
16734 * vc-svn.el (vc-svn-registered, vc-svn-state)
16735 (vc-svn-dir-extra-headers, vc-svn-find-revision):
16736 * progmodes/grep.el (grep-probe): Let-bind
16737 `process-file-side-effects' with nil.
16738
16739 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
16740
16741 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
16742 daemon. Replace ping by checking for running service for bluez
16743 and zeroconf. (Bug#4239)
16744
16745 2009-08-25 Kevin Ryde <user42@zip.com.au>
16746
16747 * net/dig.el (dig): Add autoload cookie.
16748
16749 2009-08-25 Glenn Morris <rgm@gnu.org>
16750
16751 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
16752 load-history for absolute file-names.
16753 (byte-compile-file-form-require): Warn about use of the cl package.
16754
16755 * format.el (format-alist): Doc fix.
16756
16757 * play/bubbles.el (top-level): Don't require cl at run-time.
16758
16759 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
16760 run-time cl).
16761
16762 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
16763
16764 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
16765 from cl package.
16766 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
16767
16768 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
16769
16770 * calc/calc-alg.el (math-trig-rewrite)
16771 (math-hyperbolic-trig-rewrite): New functions.
16772 (calc-simplify): Simplify trig functions when asked.
16773
16774 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
16775
16776 * diff-mode.el (diff-find-source-location): Avoid goto-line.
16777
16778 2009-08-24 Kenichi Handa <handa@m17n.org>
16779
16780 * language/ind-util.el (mapthread): Delete it.
16781 (combinatorial): New function.
16782 (indian--puthash-cv): Use combinatorial instead of mapthread.
16783
16784 2009-08-22 Kevin Ryde <user42@zip.com.au>
16785
16786 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
16787 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
16788 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
16789 Clarify docstring that the value is strings not symbols.
16790 (checkdoc-list-of-strings-p): New function.
16791
16792 2009-08-22 Glenn Morris <rgm@gnu.org>
16793
16794 * files.el (auto-mode-alist):
16795 * hippie-exp.el (he-concat-directory-file-name):
16796 * lpr.el (lpr-windows-system, printer-name):
16797 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
16798 * ps-print.el (ps-windows-system):
16799 * startup.el (command-line):
16800 * emulation/viper-ex.el (viper-glob-function):
16801 * international/mule-cmds.el (set-language-environment-coding-systems):
16802 * net/ange-ftp.el (ange-ftp-write-region):
16803 * obsolete/fast-lock.el (fast-lock-cache-name):
16804 Remove code for defunct system-types emx, macos, mswindows, next-mach,
16805 unisoft-unix, vax-vms, win32, w32.
16806
16807 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
16808 given name if the pattern is not more specific.
16809
16810 * calendar/lunar.el (lunar-phase-names): New option.
16811 (lunar-phase): Doc fix.
16812 (lunar-cycles-per-year): New constant.
16813 (lunar-index): New function.
16814 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
16815 (lunar-phase-name): Use lunar-phase-names.
16816 (calendar-lunar-phases): Use format.
16817 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
16818
16819 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
16820 Copy imenu-example--name-and-position function here for own use.
16821 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
16822
16823 * bs.el (bs--redisplay):
16824 * cus-edit.el (custom-redraw):
16825 * ibuffer.el (ibuffer-bury-buffer):
16826 * server.el (server-goto-line-column):
16827 * startup.el (command-line-1):
16828 * strokes.el (strokes-xpm-for-stroke):
16829 * term.el (term-display-buffer-line):
16830 * view.el (View-goto-line):
16831 * calc/calc.el (calc-do, calc-trail-buffer):
16832 * play/gamegrid.el (gamegrid-add-score-insecure):
16833 * progmodes/ada-mode.el (ada-compile-goto-error):
16834 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
16835 (ebrowse-select-1st-to-9nth):
16836 * progmodes/cperl-mode.el (cperl-time-fontification):
16837 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
16838 * progmodes/gud.el (gud-display-line):
16839 (idlwave-shell-display-line):
16840 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
16841 * progmodes/make-mode.el (makefile-browser-toggle):
16842 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
16843 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
16844 * textmodes/picture.el (picture-draw-rectangle):
16845 * textmodes/reftex-index.el (reftex-index-goto-letter):
16846 (reftex-select-jump-to-previous):
16847 * textmodes/reftex-sel.el (reftex-find-start-point)
16848 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
16849 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
16850 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
16851 * textmodes/tex-mode.el (tex-compilation-parse-errors):
16852 * textmodes/two-column.el (2C-associated-buffer):
16853 Use forward-line rather than goto-line.
16854
16855 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
16856 goto-line.
16857
16858 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
16859 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
16860 (quick-check-list-to-regexp): Declare.
16861
16862 * progmodes/make-mode.el (makefile-browser-insert-selection):
16863 Use goto-char rather than goto-line.
16864
16865 * progmodes/prolog.el (compilation-error-regexp-alist)
16866 (compilation-forget-errors): Declare.
16867
16868 2009-08-22 Juri Linkov <juri@jurta.org>
16869
16870 * progmodes/grep.el (lgrep, rgrep): At the beginning
16871 set `dir' to `default-directory' unless `dir' is a non-nil
16872 readable directory. (Bug#4052)
16873 (lgrep, rgrep): Change a weird way to report an error
16874 from using `read-string' to using `error'.
16875 Instead of using interactive arguments in the function body,
16876 add new argument `confirm'.
16877
16878 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
16879
16880 * textmodes/remember.el (remember-buffer):
16881 * progmodes/cperl-mode.el (cperl-vc-header-alist):
16882 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
16883 (icalendar-extract-ical-from-buffer):
16884 * net/newst-treeview.el (newsticker-groups-filename):
16885 * net/newst-backend.el (newsticker-cache-filename):
16886 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
16887 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
16888 (speedbar-add-ignored-path-regexp, speedbar-line-path)
16889 (speedbar-buffers-line-path, speedbar-path-line)
16890 (speedbar-buffers-line-path):
16891 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
16892 (epg-sign-keys):
16893 * epa.el (epa-display-verify-result):
16894 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
16895
16896 2009-08-21 Glenn Morris <rgm@gnu.org>
16897
16898 * progmodes/js.el (inferior-moz-process): Fix declaration.
16899
16900 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
16901
16902 * obsolete/rnewspost.el (news-mail-reply):
16903 Use goto-char rather than goto-line.
16904
16905 * term/ns-win.el (ns-open-file-select-line):
16906 Use line-beginning-position rather than goto-line.
16907
16908 * apropos.el (apropos-command):
16909 * ehelp.el (electric-helpify):
16910 * printing.el (pr-show-setup):
16911 * strokes.el (strokes-help):
16912 * tutorial.el (tutorial--describe-nonstandard-key)
16913 (tutorial--detailed-help):
16914 * woman.el (woman-mini-help, woman-display-extended-fonts):
16915 * calc/calc-help.el (calc-describe-key):
16916 * emulation/edt.el (edt-electric-helpify):
16917 * international/mule-diag.el (mule-diag):
16918 * play/yow.el (apropos-zippy):
16919 * progmodes/python.el (python-describe-symbol):
16920 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
16921 * textmodes/table.el (*table--cell-describe-mode)
16922 (*table--cell-describe-bindings):
16923 Use help-print-return-message rather than the now obsolete alias.
16924
16925 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
16926 (calendar-cursor-to-visible-date):
16927 * play/5x5.el (5x5-position-cursor):
16928 * play/decipher.el (decipher):
16929 * play/gomoku.el (gomoku-goto-xy):
16930 * play/landmark.el (lm-goto-xy):
16931 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
16932 (mpuz-paint-digit):
16933 Use forward-line, not goto-line.
16934
16935 * mail/rmail.el (rmail-obsolete): Delete custom group.
16936 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
16937 (rmail-remote-password, rmail-remote-password-required):
16938 Remove unneeded :set-after and :set properties.
16939
16940 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
16941
16942 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
16943
16944 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
16945
16946 * loadup.el: Remove leftover macos code.
16947
16948 * vc-git.el (vc-git-annotate-command): Run asynchronously.
16949 Explicitly pass the date format to git blame so that user local
16950 so that the output format can be parsed.
16951
16952 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
16953
16954 * net/dbus.el (top): Don't check for (getenv
16955 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
16956
16957 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
16958
16959 * log-edit.el (log-edit-strip-single-file-name): New var.
16960 (log-edit-insert-changelog): Use it. Bug#3571
16961
16962 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
16963
16964 * subr.el (read-passwd): Use read-key so keypad keys work as well.
16965 Bug#3287
16966
16967 * help.el (help-print-return-message): Rename from
16968 print-help-return-message.
16969
16970 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
16971 cvs-mode-map parent hack.
16972 (log-view-mode): Derive from special-mode.
16973
16974 * linum.el (linum-mode): window-size-change-functions is redundant.
16975 Adapt to new window-configuration-change-hook behavior.
16976 (linum-after-size, linum-after-config): Remove.
16977
16978 * imenu.el (imenu-example--name-and-position)
16979 (imenu-example--lisp-extract-index-name)
16980 (imenu-example--create-lisp-index, imenu-example--create-c-index):
16981 Mark as obsolete.
16982
16983 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
16984 (inferior-prolog-mode): Use it.
16985 (inferior-prolog-load-file): Reset list of errors.
16986
16987 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
16988
16989 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
16990
16991 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
16992
16993 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
16994
16995 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
16996 is running already.
16997
16998 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
16999
17000 * subr.el (listify-key-sequence-1): Use normal syntax since those
17001 integers are nowadays always represented by the same (positive) number
17002 on all platforms.
17003 (read-key-empty-map): New const.
17004 (read-key-delay): New var.
17005 (read-key): New function.
17006 (force-mode-line-update): Use with-current-buffer.
17007 (locate-user-emacs-file): Don't forget to abbreviate the file name.
17008 (start-process-shell-command, start-file-process-shell-command):
17009 Discourage the use of command-args.
17010
17011 2009-08-19 Glenn Morris <rgm@gnu.org>
17012
17013 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
17014
17015 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
17016
17017 * simple.el (choose-completion-string): Don't rely on
17018 minibuffer-completing-file-name and ad-hoc checks to decide whether
17019 to continue completion or not.
17020
17021 * minibuffer.el (minibuffer-hide-completions): New function.
17022 (completion--do-completion): Use it.
17023 (completions-annotations): New face.
17024 (completion--insert-strings): Use it.
17025 (completion-pcm--delim-wild-regex): Add docstring.
17026 (completion-pcm--string->pattern): Add support for 0-width delimiters
17027 in completion-pcm--delim-wild-regex.
17028
17029 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
17030
17031 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
17032 Remove unused var `buffer-modified-p'.
17033
17034 * minibuffer.el (completion--do-completion): Move point for the #b001
17035 case as well (bug#4176).
17036 (minibuffer-complete, minibuffer-complete-word): Don't move point.
17037
17038 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
17039
17040 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
17041 and :session buses.
17042
17043 2009-08-18 Kenichi Handa <handa@m17n.org>
17044
17045 * international/ucs-normalize.el (ucs-normalize-version):
17046 Change to 1.1.
17047 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
17048 (utf-8-hfs): Make it perform normalization on encoding too.
17049
17050 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
17051 (sentence-end-without-space): Delete duplicated chars.
17052 (sentence-end-base): Likewise.
17053
17054 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
17055 (html-mode): Delete duplicated chars from sentence-end-base.
17056
17057 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
17058 (texinfo-mode): Delete duplicated chars from sentence-end-base.
17059
17060 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
17061
17062 * files.el (hack-one-local-variable): If the mode function is for
17063 a minor mode, pass it an argument (Bug#4148).
17064
17065 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
17066
17067 * net/tramp.el (tramp-register-completion-file-name-handler):
17068 Check also for (member 'partial-completion completion-styles).
17069
17070 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
17071
17072 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
17073 abbrev (Bug#3943).
17074
17075 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
17076
17077 * progmodes/cperl-mode.el: Merge upstream 6.2.
17078 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
17079 (cperl-forward-re): Check cperl-brace-recursing.
17080 (cperl-highlight-charclass): New function.
17081 (cperl-find-pods-heres): Use it.
17082 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
17083 (cperl-beautify-regexp-piece): Fix column calculation.
17084 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
17085 (cperl-beautify-level): Don't process entire regexp.
17086 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
17087 calling man.
17088 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
17089 (cperl-init-faces): Build a list in the normal way.
17090
17091 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
17092
17093 * calendar/parse-time.el (parse-time-string-chars): Save match
17094 data.
17095
17096 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
17097
17098 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
17099 (sql-product): Use it.
17100 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
17101 (sql-set-product): Add completion.
17102 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
17103 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
17104 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
17105 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
17106 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
17107 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
17108 (sql-highlight-db2-keywords): Remove.
17109 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
17110 (sql-highlight-product): Use derived-mode-p.
17111 (sql-set-sqli-buffer): Use with-current-buffer.
17112 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
17113 Simplify.
17114
17115 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
17116
17117 * term.el: Fix commenting convention, turn comments into docstrings.
17118
17119 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
17120
17121 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
17122
17123 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
17124
17125 * calendar/parse-time.el (parse-time-string-chars): Compute using
17126 character classes, to handle non-ascii characters (Bug#3190).
17127
17128 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
17129
17130 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
17131 another heredoc if the user adds another < (Bug#3226).
17132
17133 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
17134 Don't initialize based on window-system (Bug#4124).
17135
17136 * facemenu.el (facemenu-read-color): Use a completion function
17137 that accepts any defined color, such as RGB triplets (Bug#3677).
17138
17139 * files.el (get-free-disk-space): Change fallback default
17140 directory to /. Expand DIR argument before switching to fallback.
17141 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
17142
17143 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
17144
17145 * files.el (load-library): Doc fix.
17146
17147 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
17148
17149 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
17150 (viper-if-string): Redefine C-s in the minibuffer to insert the last
17151 incremental search string.
17152
17153 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
17154 XEmacs.
17155
17156 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
17157 (ediff-merge-region-is-non-clash)
17158 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
17159 Also check if the job is really a merge job.
17160
17161 * ediff.el (ediff-current-file): New function.
17162
17163 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
17164
17165 * progmodes/js.el: Edit docstrings throughout to follow Emacs
17166 conventions.
17167 (js-insert-and-indent): Delete function.
17168 (js-mode-map): Don't bind keys to js-insert-and-indent.
17169 (js-beginning-of-defun): Rename from js--beginning-of-defun.
17170 (js-end-of-defun): Rename from js--end-of-defun.
17171 (js-auto-indent-flag): Delete variable.
17172
17173 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
17174
17175 * progmodes/js.el: Remove proclaim statement.
17176 Defvar which-func-imenu-joiner-function to silence compiler.
17177
17178 * files.el (auto-mode-alist): Use js-mode for .js files.
17179
17180 * progmodes/js2-mode.el: Remove file.
17181
17182 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
17183
17184 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
17185
17186 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
17187
17188 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
17189 Karl Landstrom <karl.landstrom@brgeight.se>
17190
17191 * progmodes/js.el: New file.
17192
17193 2009-08-14 Mark A. Hershberger <mah@everybody.org>
17194
17195 * timezone.el (timezone-parse-date): Add ability to understand ISO
17196 basic format (minimal separators) dates in addition to the
17197 already-supported extended format dates.
17198
17199 2009-08-14 Eli Zaretskii <eliz@gnu.org>
17200
17201 * international/ucs-normalize.el: Add a `coding' file variable.
17202
17203 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
17204
17205 2009-08-14 Sam Steingold <sds@gnu.org>
17206
17207 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
17208
17209 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
17210
17211 * faces.el (help-argument-name): Define it here instead of
17212 help-fns.el, because in daemon mode help-fns.el may be loaded when
17213 faces are still uninitialized (Bug#1078).
17214
17215 * help-fns.el (help-argument-name): Move defface to faces.el.
17216
17217 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
17218
17219 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
17220 create buffer with a pty but no process so that GDB can make the
17221 inferior the controlling process.
17222
17223 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
17224
17225 * international/ucs-normalize.el: New file.
17226
17227 2009-08-13 Richard Stallman <rms@gnu.org>
17228
17229 * mail/rmail.el (rmail-get-attr-names):
17230 Accept an attribute header that is too short.
17231
17232 * mail/rmail.el (rmail-forget-messages):
17233 Ignore nil elt in rmail-message-vector. Use dotimes.
17234
17235 * progmodes/compile.el (compilation-goto-locus):
17236 Use next-error-move-function.
17237
17238 * simple.el (next-error-move-function): New variable.
17239
17240 2009-08-12 Juri Linkov <juri@jurta.org>
17241
17242 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
17243 always non-nil. (Bug#4052)
17244
17245 * replace.el (read-regexp): Return empty string when
17246 `default-value' is nil.
17247 (keep-lines-read-args): Don't use empty string as the
17248 default value for `read-regexp'. (Bug#2495)
17249
17250 2009-08-12 Juri Linkov <juri@jurta.org>
17251
17252 * international/mule-cmds.el (ucs-insert): Change arguments
17253 from `arg' to `character', `count', `inherit' to be the same
17254 as in `insert-char'. Doc fix. (Bug#4039)
17255
17256 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
17257
17258 2009-08-12 Juri Linkov <juri@jurta.org>
17259
17260 * files-x.el: New file.
17261
17262 * files.el: Move code that deals with adding/deleting
17263 file/directory-local variables to files-x.el.
17264
17265 * Makefile.in (ELCFILES): Add files-x.elc.
17266
17267 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
17268
17269 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
17270 to use `goto-line'.
17271 (gdb-place-breakpoints, gdb-get-location): Rewritten without
17272 `goto-line'.
17273 (gdb-invalidate-disassembly): Do not refresh upon receiving
17274 'update signal. Instead, update all disassembly buffers only after
17275 threads list.
17276 (gdb): Send -target-detach when buffer is killed (Bug#3794).
17277 (gdb-starting): Moved -data-list-register-names...
17278 (gdb-stopped): ...here so it's sent when first thread stops.
17279 (gdb-registers-handler-custom): Do nothing if register names are
17280 unknown yet.
17281
17282 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
17283 from `gdb-mi.el' to avoid extra tangling.
17284
17285 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
17286 change which breaks `gud-def' definitions used in `gdb'.
17287 (gdb-update-gud-running): No extra fuss for updating frame number.
17288
17289 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
17290
17291 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
17292 (describe-language-environment-map, setup-language-environment-map)
17293 (set-coding-system-map): Move initialization into declaration.
17294 (set-language-info-alist): Last arg to define-key-after can be skipped.
17295
17296 * international/quail.el (quail-completion-1): Simplify.
17297 (quail-define-rules): Use slightly more compact code.
17298 (quail-insert-decode-map): Propertize keys, compact columns.
17299
17300 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
17301 Add goto-line.
17302
17303 2009-08-10 Miles Bader <miles@gnu.org>
17304
17305 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
17306 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
17307 (js2-instance-member, js2-private-member, js2-private-function-call)
17308 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
17309 (js2-magic-paren, js2-external-variable):
17310 Remove "-face" suffix from face names.
17311 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
17312 (js2-highlight-undeclared-vars, js2-peek-token)
17313 (js2-parse-function-params, js2-mode-show-errors)
17314 (js2-mode-show-warnings, js2-make-magic-delimiter)
17315 (js2-mode-highlight-magic-parens): Update to use new face names.
17316
17317 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
17318
17319 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
17320 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
17321
17322 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
17323
17324 * subr.el: Provide hashtable-print-readable.
17325
17326 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
17327 hs-c-like-adjust-block-beginning.
17328 (hs-hide-block-at-point): Stop hiding at the beginning of
17329 hs-block-end-regexp (Bug#700).
17330
17331 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
17332
17333 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
17334 a macro.
17335 (gdb-registers-handler-custom): Do not fail when register names
17336 are unavailable.
17337
17338 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
17339
17340 * progmodes/gdb-mi.el (gdb-control-all-threads)
17341 (gdb-control-current-thread): Interactive setters for
17342 `gdb-gud-control-all-threads' to use in menu.
17343 (gdb-show-run-p): Show «Go» when process is not active.
17344 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
17345 gud/thread.xpm and gud/all.xpm.
17346
17347 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
17348
17349 * net/net-utils.el (net-utils-font-lock-keywords): New var.
17350 (nslookup-font-lock-keywords): Make it a variable.
17351 (net-utils-mode): New mode for viewing diagnostic network output.
17352 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
17353 (net-utils-run-simple): New function.
17354 (ifconfig, iwconfig, netstat, arp, route): Use it.
17355
17356 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
17357
17358 * progmodes/gdb-mi.el (gdb-read-memory-custom)
17359 (gdb-memory-set-address, def-gdb-set-positive-number)
17360 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
17361 after changing settings.
17362 (gdb-invalidate-disassembly): Update when first shown.
17363 (gdb-edit-locals-value): Fixed.
17364 (gdb-registers-handler-custom): Print registers in right order and
17365 allow changing register values (only for current thread yet).
17366 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
17367 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
17368 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
17369 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
17370 info in mode name.
17371 (gdb-registers-mode-map): TAB to switch to locals.
17372
17373 2009-08-08 Eli Zaretskii <eliz@gnu.org>
17374
17375 * mail/rmail.el (rmail-add-mbox-headers)
17376 (rmail-set-message-counters-counter): Search for
17377 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
17378
17379 2009-08-08 Glenn Morris <rgm@gnu.org>
17380
17381 * Makefile.in (ELCFILES): Update.
17382
17383 2009-08-07 Eli Zaretskii <eliz@gnu.org>
17384
17385 * mail/sendmail.el (mail-yank-original): Set
17386 buffer-file-coding-system from the one used by the message whose
17387 text is yanked.
17388
17389 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
17390 to "windows" when "pgnuplot" is used.
17391 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
17392 call accept-process-output if "pgnuplot" is used.
17393 (calc-graph-init): Don't send -display and -geometry to
17394 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
17395 running "pgnuplot -V" with shell-command-to-string.
17396
17397 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
17398 the default.
17399
17400 2009-08-07 Eli Zaretskii <eliz@gnu.org>
17401
17402 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
17403 org/org-latex.elc.
17404
17405 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
17406
17407 * vc-dispatcher.el (vc-resynch-window): Update comment.
17408
17409 * term.el (term-handle-ansi-escape): Add comments with the
17410 terminfo capabilities implemented.
17411
17412 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
17413
17414 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
17415 (gdb-var-create-handler): Rewritten using JSON parser.
17416 (gdb-propertize-header): Moved earlier.
17417 (gdb-set-header): Removed to avoid duplication.
17418 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
17419 Refresh disassembly buffers only after threads list have been
17420 update.
17421 (gdb-threads-header, gdb-registers-header): Per-buffer header line
17422 variables.
17423
17424 2009-08-04 Juri Linkov <juri@jurta.org>
17425
17426 * files.el: Commands to add/delete file/directory-local variables.
17427 (read-file-local-variable, read-file-local-variable-value)
17428 (read-file-local-variable-mode, modify-file-local-variable)
17429 (modify-file-local-variable-prop-line)
17430 (modify-dir-local-variable): New functions.
17431 (add-file-local-variable, delete-file-local-variable)
17432 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
17433 (add-dir-local-variable, delete-dir-local-variable)
17434 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
17435 (copy-dir-locals-to-file-locals-prop-line): New commands.
17436
17437 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
17438
17439 * abbrev.el (insert-abbrev-table-description): Prettify output.
17440 Suggested by Karl Chen.
17441
17442 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
17443
17444 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
17445 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
17446 (gdb-overlay-arrow-position, gdb-thread-position)
17447 (gdb-disassembly-position): Declare variables.
17448 (gdb-wait-for-pending): Function now.
17449 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
17450 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
17451 compilation goes smoothly.
17452 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
17453 (gdb-non-stop-setting): New customization setting which replaces
17454 `gdb-non-stop' so changing it doesn't break active GDB session.
17455 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
17456 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
17457 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
17458 (gdb-show-threads-by-default): New customization options.
17459 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
17460 routines.
17461 (gdb-get-buffer-create): Send buffers update signal when they are
17462 created.
17463 (gdb-invalidate-locals, gdb-invalidate-registers)
17464 (gdb-invalidate-breakpoints)
17465 (gdb-invalidate-threads, gdb-invalidate-disassembly)
17466 (gdb-invalidate-memory): Accept update signal.
17467 (gdb-current-context-command): Use --frame option.
17468 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
17469 Implement `gdb-frame-number' selection logic.
17470 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
17471 whether to show GUD toolbar buttons.
17472 (gdb-thread-exited): Unselect current thread when it exits.
17473 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
17474 (gdb-mark-line): Routine which sets overlay arrow or inverses
17475 video on fringeless displays.
17476 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
17477 to build aligned columns of data in GDB buffers and set text
17478 properties line-by-line.
17479 (gdb-invalidate-breakpoints)
17480 (gdb-breakpoints-list-handler-custom)
17481 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
17482 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
17483 (gdb-registers-handler-custom): Align data columns.
17484 (gdb-locals-handler-custom): Now prints data like in variable
17485 declarations.
17486 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
17487 Removed confusing buttons.
17488 (gdb-invalidate-threads): Append --frame.
17489 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
17490 between breakpoints/threads buffers.
17491 (gdb-set-window-buffer): Now can ignore dedicated windows.
17492 (gdb-propertize-header): Use `gdb-set-window-buffer'.
17493 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
17494 (def-gdb-thread-buffer-gud-command): Replaces
17495 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
17496 for fine thread control.
17497 (gdb-preempt-existing-or-display-buffer): New function used to
17498 display bound buffers without breaking window layout.
17499 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
17500 (gdb-select-frame): New version of `gdb-frames-select' which now
17501 sets `gdb-frame-number' so commands may use --frame option instead
17502 of inner debugger state.
17503 (gdb-frame-handler): Do not set `gdb-frame-number'.
17504 (gdb-threads-mode-map): Select threads with mouse.
17505
17506 * progmodes/gud.el (gdb-gud-context-call): Declare function to
17507 avoid compilation warning.
17508 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
17509 `gdb-show-stop-p`.
17510
17511 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
17512 Argument `key' renamed to `buffer-type'.
17513 (gdb-current-context-buffer-name): Do not add thread info to
17514 buffer name when no thread is selected.
17515 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
17516 command (bug 3794).
17517 (gdb-thread-selected): Handle `=thread-selected' notification.
17518 (gdb-wait-for-pending): New macro to deal with congestion problems.
17519 (gdb-breakpoints-list-handler-custom): Don't fail on pending
17520 breakpoints.
17521 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
17522 This fixes problem similar to one described in bug 3947.
17523 (gud-menu-map): More menu items.
17524 (gdb-init-1): Reset `gdb-thread-number' to nil.
17525
17526 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
17527 non-stop settings.
17528
17529 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
17530 (gdb-current-context-command): Do not append --thread if
17531 `gdb-thread-number' is nil.
17532 (gdb-running-threads-count, gdb-stopped-threads-count): New
17533 variables.
17534 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
17535 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
17536 customization options.
17537 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
17538 GUD commands.
17539 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
17540 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
17541 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
17542 set `gdb-thread-number' and update `gud-running' properly.
17543 (gdb-running): Update threads list when new threads appear.
17544 (gdb-stopped): Support non-stop operation and new thread switching
17545 logic.
17546 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
17547 (gdb-json-partial-output): New set of JSON routines.
17548 (def-gdb-auto-update-trigger): New `signal-list' optional
17549 argument.
17550 (gdb-thread-list-handler-custom): Update `gud-running',
17551 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
17552 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
17553 (gdb-continue-thread, gdb-step-thread): New commands for fine
17554 thread execution control.
17555 (gud-menu-map): New menu items to switch non-stop options.
17556 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
17557 (gdb-send): Mimic RET properly (bug 3794).
17558
17559 * progmodes/gdb-mi.el (gdb-rules-name-maker)
17560 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
17561 gdb-buffer-rules.
17562 (def-gdb-auto-update-handler): New nopreserve optional argument.
17563 (gdb-stack-list-frames-custom): Print stack from top to bottom.
17564
17565 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
17566 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
17567 (gdb-parent-mode): New mode to derive other GDB modes from.
17568 (gdb-display-disassembly-for-thread)
17569 (gdb-frame-disassembly-for-thread): New commands for threads
17570 buffer.
17571
17572 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
17573 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
17574 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
17575 (gdb-update): We now store all GDB buffers in a list so that they
17576 can be updated by traversing a list instead of calling invalidate
17577 triggers explicitly.
17578 (def-gdb-trigger-and-handler): New macro to define trigger-handler
17579 pair for GDB buffer.
17580 (gdb-stack-buffer-name): Add thread information.
17581 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
17582 handle pending triggers.
17583 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
17584 (def-gdb-thread-buffer-simple-command)
17585 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
17586 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
17587 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
17588 New commands which show buffers bound to thread.
17589 (gdb-stack-list-locals-regexp): Removed unused regexp.
17590
17591 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
17592 (gdb-locals-buffer-name, gdb-registers-buffer-name)
17593 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
17594 to (gud-comint-buffer) in *-buffer-name functions
17595 because (gdb-get-target-string) already does that.
17596 (gdb-locals-handler-custom, gdb-registers-handler-custom)
17597 (gdb-changed-registers-handler): Rewritten without regexps.
17598
17599 * progmodes/gdb-mi.el: Basic thread selection support.
17600 (gdb-thread-number): New variable.
17601 (gdb-current-context-command): New macro which adds --thread
17602 option to command.
17603 (gdb-threads-mode-map): Select thread with SPC.
17604 (gdb-thread-list-handler-custom): Mark current thread with overlay
17605 arrow. Synchronize GDB thread and Emacs thread.
17606 (gdb-select-thread): New command which selects current thread.
17607 (gdb-invalidate-frames, gdb-invalidate-locals)
17608 (gdb-invalidate-registers): Use --thread option.
17609
17610 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
17611
17612 * net/tramp.el (top): Make check for tramp-gvfs loading more
17613 robust. (Bug#3977)
17614 (tramp-handle-insert-file-contents): `unwind-protect' must be
17615 inside `with-parsed-tramp-file-name'.
17616
17617 * net/tramp-gvfs.el (top): Remove superfluous message when loading
17618 fails.
17619
17620 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
17621
17622 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
17623 directory if CLASSPATH is not set.
17624
17625 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
17626
17627 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
17628 New defconst.
17629 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
17630
17631 2009-08-02 Kevin Ryde <user42@zip.com.au>
17632
17633 * net/newst-backend.el (newsticker--raw-url-list-defaults):
17634 Update freshmeat link. Delete newsforge.com as it seems gone.
17635
17636 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
17637
17638 * select.el (x-set-selection): Doc fix (Bug#4021).
17639
17640 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
17641
17642 * help-fns.el (describe-variable): Treat list return values from
17643 dir-locals-find-file properly (Bug#4005).
17644
17645 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
17646
17647 * net/tramp.el (tramp-debug-message): Print also microseconds.
17648
17649 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
17650
17651 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
17652 or END is non-nil.
17653 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
17654 (tramp-get-debug-buffer): Change `outline-regexp' according to new
17655 format.
17656
17657 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
17658 (tramp-get-file-property): Use it.
17659
17660 * autorevert.el (auto-revert-handler): Allow
17661 `auto-revert-tail-mode' for remote files.
17662
17663 2009-08-02 Jason Rumney <jasonr@gnu.org>
17664
17665 * minibuffer.el (read-file-name): Treat confirm options to
17666 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
17667
17668 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
17669
17670 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
17671 (font-lock-variable-name-face, font-lock-constant-face): Darken
17672 the colors for light backgrounds.
17673
17674 2009-08-01 Eli Zaretskii <eliz@gnu.org>
17675
17676 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
17677 month names. (Bug#3987)
17678
17679 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
17680
17681 * simple.el (line-move-finish): Pass whole number to
17682 line-move-to-column.
17683 (line-move-visual): Perform hscroll to the recorded position.
17684
17685 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
17686
17687 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
17688
17689 2009-07-29 Alan Mackenzie <acm@muc.de>
17690
17691 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
17692
17693 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
17694
17695 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
17696 (gdb-place-breakpoints): Use full path when setting breakpoints.
17697
17698 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
17699
17700 * calc/calc.el (calc-mode-map): Add keybinding for
17701 `calc-transpose-lines'.
17702
17703 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
17704
17705 * calc/calc-misc.el (calc-transpose-lines): New function.
17706
17707 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
17708
17709 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
17710 Simplify check for out-of-band methods.
17711 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
17712 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
17713
17714 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
17715
17716 * vc-git.el (vc-git-checkin): Fix typo.
17717
17718 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
17719
17720 * progmodes/js2-mode.el: New file.
17721
17722 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
17723
17724 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
17725 (gud-menu-map): Adjust tooltip accordingly.
17726
17727 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
17728
17729 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
17730 (vc-bzr-log-view-mode): Adjust log-view-file-re.
17731
17732 * add-log.el (change-log-mode-map): Add a menu.
17733
17734 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
17735
17736 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
17737 function returns nil.
17738 (dbus-handle-event): Handle special return value :ignore.
17739 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
17740
17741 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
17742
17743 * view.el (view-mode-enable): Don't define Helper-return-blurb if
17744 it's not needed.
17745
17746 2009-07-25 Eli Zaretskii <eliz@gnu.org>
17747
17748 Fix Bug#3888:
17749
17750 * w32-vars.el (x-select-enable-clipboard): Doc fix.
17751
17752 * term/pc-win.el (x-display-name, x-colors)
17753 (x-select-enable-clipboard, x-select-text): Doc fix.
17754
17755 * term/common-win.el (x-display-name, x-colors): Doc fix.
17756
17757 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
17758 (xw-defined-colors): Doc fix.
17759
17760 * w32-fns.el (x-select-text, x-setup-function-keys)
17761 (x-get-selection, x-set-selection): Doc fix.
17762
17763 * term/x-win.el (x-select-text, x-setup-function-keys)
17764 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
17765
17766 * select.el (x-set-selection): Doc fix.
17767
17768 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
17769
17770 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
17771 instead of "IsNSSSupportAvailable". Avahi ought to work also when
17772 "IsNSSSupportAvailable" method is not available. Reported by
17773 Steve Youngs <steve@sxemacs.org>.
17774
17775 2009-07-24 Kenichi Handa <handa@m17n.org>
17776
17777 * international/characters.el: Fix setting of category ?C, ?|, ?K,
17778 and ?H. Fix setting of case for Latin Extended and Greek Extended.
17779 (build-unicode-category-table): Fix range checks.
17780
17781 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
17782
17783 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
17784 the buffer we try to sync is current when calling
17785 vc-resynch-buffer.
17786
17787 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
17788 not show up to date files.
17789
17790 2009-07-24 Glenn Morris <rgm@gnu.org>
17791
17792 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
17793 Add autoload cookies. If necessary, initialize.
17794 (elint-log): Handle non-file buffers.
17795 (elint-initialize): Add optional argument to reinitialize.
17796 (elint-find-builtin-variables): Save excursion.
17797
17798 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
17799
17800 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
17801 for Lint.
17802
17803 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
17804
17805 * vc.el (vc-print-log-internal): New function, split out from ...
17806 (vc-print-log): ... here.
17807 (vc-dir-move-to-goal-column): Declare.
17808
17809 * vc-git.el (vc-git-add-signoff): New variable.
17810 (vc-git-checkin): Use it.
17811 (vc-git-toggle-signoff): New function.
17812 (vc-git-extra-menu-map): Bind it to menu.
17813 (vc-git--run-command-string): Accept a nil FILE argument.
17814 (vc-git-stash-list): New function.
17815 (vc-git-dir-extra-headers): Use it.
17816
17817 2009-07-23 Glenn Morris <rgm@gnu.org>
17818
17819 * help-fns.el (describe-variable): Describe ignored and risky local
17820 variables in a similar way to that in which we describe safe ones.
17821
17822 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
17823 (byte-compile-output-file-form, byte-compile-output-docform)
17824 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
17825 Give some more local variables with common names a "bytecomp-" prefix,
17826 so as not to shadow things during compilation.
17827 * emacs-lisp/cl-macs.el (load-time-value)
17828 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
17829 `outbuffer' to `bytecomp-outbuffer'.
17830
17831 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
17832 since the next two variables cover them automatically now.
17833 (elint-builtin-variables, elint-autoloaded-variables): New.
17834 (elint-unknown-builtin-args): Remove all members, since they can be
17835 parsed automatically now.
17836 (elint-extra-errors): New.
17837 (elint-env-add-env, elint-env-add-macro): Use cadr.
17838 (elint-current-buffer): Use or. Change final message.
17839 (elint-get-top-forms): Use line-end-position.
17840 (elint-init-env): Use cadr. Handle autoload, declare-function,
17841 and defalias.
17842 (elint-add-required-env): Doc fix. Use or. Standardize error.
17843 (regexp-assoc): Remove unused function.
17844 (elint-top-form): Set elint-current-pos, to record the start of the
17845 top-level form, for compilation-mode.
17846 (elint-form): Trap errors in macro expansion. Use dolist.
17847 (elint-unbound-variable): Use elint-builtin-variables and
17848 elint-autoloaded-variables.
17849 (elint-get-args): Use cadr, or.
17850 (elint-check-cond-form): Use dolist, cadr.
17851 (elint-check-condition-case-form): Doc fix. Use cadr.
17852 Use elint-extra-errors.
17853 (elint-log): New function.
17854 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
17855 Distinguish errors and warnings.
17856 (elint-log-message): Use with-current-buffer. Inhibit read-only.
17857 Use a bytecomp-style format.
17858 (elint-clear-log): Preserve default-directory. Inhibit read-only.
17859 (elint-get-log-buffer): Use compilation mode. Disable undo.
17860 Don't truncate lines.
17861 (elint-initialize): Set builtin and autoloaded variable lists.
17862 Only process elint-unknown-builtin-args if non-nil.
17863 (elint-find-builtin-variables, elint-find-autoloaded-variables):
17864 New functions.
17865 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
17866
17867 2009-07-22 Kevin Ryde <user42@zip.com.au>
17868
17869 * net/newst-backend.el (newsticker--parse-atom-1.0)
17870 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
17871 (newsticker--parse-rss-1.0):
17872 * progmodes/idlwave.el (idlwave-mode):
17873 * progmodes/idlw-shell.el (idlwave-shell-mode):
17874 * progmodes/vera-mode.el (vera-mode):
17875 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
17876 * progmodes/vhdl-mode.el (vhdl-mode):
17877 * textmodes/table.el (table-generate-source)
17878 (table--warn-incompatibility):
17879 Hyperlink urls in docstrings with URL `...'.
17880
17881 2009-07-22 Glenn Morris <rgm@gnu.org>
17882
17883 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
17884 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
17885 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
17886 Remove leading * from defcustom docs.
17887
17888 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
17889
17890 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
17891 defcustom doc.
17892 (list-load-path-shadows): Optionally, just return shadows as a string.
17893
17894 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
17895
17896 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
17897
17898 * mail/rmailedit.el (rmail-edit-mode): Use
17899 auto-save-include-big-deletions.
17900
17901 * mail/rmail.el (rmail-variables): Use
17902 auto-save-include-big-deletions.
17903
17904 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
17905 changes.
17906
17907 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
17908
17909 * calc/calc.el (calc-undo-length): New variable.
17910 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
17911
17912 2009-07-21 Richard Stallman <rms@gnu.org>
17913
17914 * files.el (auto-save-mode): Handle buffer-save-size = -2
17915 for toggling mode.
17916
17917 2009-07-21 Glenn Morris <rgm@gnu.org>
17918
17919 * textmodes/ispell.el (ispell-looking-back): Update declaration.
17920
17921 * calendar/todo-mode.el (calendar-current-date): Update declaration.
17922
17923 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
17924 silence compiler. Instead...
17925 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
17926 (ps-print-ensure-fontified): Update for above function name changes.
17927
17928 * printing.el (pr-mh-get-msg-num, pr-mh-show)
17929 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
17930 silence compiler. Instead...
17931 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
17932 (mh-show-buffer): Only define for compiler.
17933 (pr-mh-current-message): Update for above function name changes.
17934
17935 * files.el (abort-if-file-too-large): Explicitly pass `filename'
17936 as an argument.
17937 (find-file-noselect, insert-file-1): Update for above change.
17938
17939 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
17940
17941 * mail/mailclient.el (mailclient-send-it): Fix message.
17942
17943 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
17944 (edebug-eval): Check cl-debug-env is bound.
17945 (print-level, print-circle): Don't redefine built-in variables.
17946
17947 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
17948 (custom-print-vectors): Remove old comments from doc.
17949
17950 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
17951 (emerge-version): Make the variable an obsolete alias for the
17952 emacs-version variable. Make the function obsolete.
17953 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
17954 Emerge options, rather than merging in into the main Options menu.
17955 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
17956 and auto advance modes. Disable edit/fast items when not relevant.
17957
17958 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
17959
17960 * term/vt420.el (terminal-init-vt420): Fix typo.
17961
17962 2009-07-20 Sam Steingold <sds@gnu.org>
17963
17964 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
17965 variable (removed from compile.el on 2004-03-11).
17966
17967 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
17968
17969 * files.el (hack-local-variables-filter): Fix last change.
17970
17971 2009-07-19 Juri Linkov <juri@jurta.org>
17972
17973 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
17974 (dir-local-variables-alist): New buffer-local variable.
17975 (hack-local-variables-filter): If variable is not dir-local,
17976 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
17977 because file-local overrides dir-local.
17978 (c-postprocess-file-styles) <declare-function>:
17979 Remove obsolete declaration.
17980 (hack-dir-local-variables): Add dir-local variable/value pair to
17981 `dir-local-variables-alist' and remove duplicates. Doc fix.
17982
17983 * help-fns.el (describe-variable): Add information about
17984 file-local and dir-local variables.
17985
17986 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
17987
17988 * files.el (hack-local-variables-filter): Rewrite.
17989
17990 2009-07-19 Glenn Morris <rgm@gnu.org>
17991
17992 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
17993 Silence compiler by only defining on XEmacs.
17994
17995 * international/mule.el (auto-coding-regexp-alist): Only match
17996 BABYL... at the start of buffer, not of lines. (Bug#3790)
17997
17998 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
17999 non-calendar buffers (Bug#3862). Restore "not on a date" message.
18000 (cal-menu-context-mouse-menu): Doc fix.
18001
18002 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
18003
18004 * simple.el (mail-user-agent): Doc fix. Set :version tag.
18005
18006 2009-07-18 Juri Linkov <juri@jurta.org>
18007
18008 * info.el: Virtual Info keyword finder.
18009 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
18010 (Info-finder-file): New variable.
18011 (Info-finder-find-file): New function.
18012 (finder-known-keywords, finder-package-info)
18013 (find-library-name, lm-commentary): Use defvar and
18014 declare-function to silence compiler warnings.
18015 (Info-finder-find-node): New function.
18016 (info-finder): New command.
18017
18018 * subr.el (process-kill-buffer-query-function): New function.
18019 (add-hook)<kill-buffer-query-functions>: Add hook
18020 `process-kill-buffer-query-function'.
18021
18022 2009-07-18 Alan Mackenzie <acm@muc.de>
18023
18024 * progmodes/cc-mode.el (c-before-hack-hook)
18025 (c-postprocess-file-styles): Give invocation of `c-set-style'
18026 DONT-OVERRIDE parameter of t. Already set style variables will
18027 thus not be overridden by style settings given by `c-file-syle'.
18028
18029 * files.el (hack-local-variables-filter): Remove entries with
18030 duplicate keys from `file-local-variables-alist'.
18031
18032 2009-07-18 Eli Zaretskii <eliz@gnu.org>
18033
18034 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
18035 x-set-selection if display-selections-p returns nil for the
18036 current frame.
18037
18038 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
18039
18040 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
18041
18042 2009-07-18 Eli Zaretskii <eliz@gnu.org>
18043
18044 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
18045 Accept nil in addition to a regexp.
18046 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
18047 Accept nil in addition to a regexp.
18048 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
18049 buffers that have an associated file. Handle nil values of
18050 desktop-buffers-not-to-save and desktop-files-not-to-save.
18051 (Bug#3833)
18052
18053 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
18054 (x-disown-selection-internal): New functions.
18055
18056 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
18057
18058 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
18059 warning.
18060 (gdb-breakpoints-header): Move forward to avoid compiler warning.
18061 (gdb-make-header-line-mouse-map): Remove duplicate definition.
18062
18063 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
18064
18065 * simple.el (set-mark): Revert last change.
18066
18067 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
18068
18069 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
18070 rendering of pngs is not possible instead of messaging a long
18071 description.
18072
18073 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
18074
18075 * w32-fns.el (x-selection-owner-p): New function.
18076
18077 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
18078 (mouse-yank-at-click, mouse-yank-primary): If
18079 select-active-regions is non-nil, deactivate the mark before
18080 insertion.
18081
18082 * simple.el (deactivate-mark, set-mark): Only save selection if we
18083 own it.
18084
18085 2009-07-17 Kenichi Handa <handa@m17n.org>
18086
18087 * case-table.el (describe-buffer-case-table): Fix for the case
18088 that KEY is a cons.
18089
18090 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
18091
18092 * vc-rcs.el (vc-rcs-find-file-hook):
18093 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
18094
18095 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
18096
18097 * net/tramp.el (tramp-wait-for-output): Handle the case when
18098 commands do not return a newline but a null byte before the shell
18099 prompt. (Bug#3858)
18100
18101 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18102
18103 * term/ns-win.el (ns-set-alpha): Don't declare.
18104 (ns-set-background-alpha): Remove function.
18105
18106 2009-07-16 Kevin Ryde <user42@zip.com.au>
18107
18108 * emacs-lisp/copyright.el (copyright-update): Save match-data across
18109 y-or-n-p, for safety.
18110
18111 2009-07-16 Richard Stallman <rms@gnu.org>
18112
18113 * files.el (auto-save-mode): If buffer-saved-size is -2,
18114 don't clobber it.
18115
18116 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
18117 (rmail-retry-ignored-headers): Add more uninteresting fields.
18118
18119 2009-07-15 Jari Aalto <jari.aalto@cante.net>
18120
18121 * net/rcirc.el (rcirc): Use history variables.
18122 (rcirc-server-name-history, rcirc-nick-name-history)
18123 (rcirc-server-port-history): New variables.
18124
18125 2009-07-15 Kenichi Handa <handa@m17n.org>
18126
18127 * international/mule-cmds.el (set-language-environment-charset):
18128 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
18129 ignore them.
18130
18131 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
18132 Delete unibyte-display.
18133
18134 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
18135
18136 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
18137
18138 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
18139
18140 * simple.el (deactivate-mark): Optional argument FORCE.
18141 (set-mark): Use deactivate-mark.
18142
18143 * info.el (Info-search): No need to check transient-mark-mode
18144 before calling deactivate-mark.
18145
18146 * select.el (x-set-selection): Doc fix.
18147 (x-valid-simple-selection-p): Allow buffer values.
18148 (xselect--selection-bounds): Handle buffer values. Suggested by
18149 David De La Harpe Golden.
18150
18151 * mouse.el (mouse-set-region, mouse-drag-track): Call
18152 copy-region-as-kill before setting the mark, to let
18153 select-active-regions work.
18154
18155 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
18156
18157 * simple.el (deactivate-mark): If select-active-regions is
18158 non-nil, copy the selection data into a string.
18159 (activate-mark): If select-active-regions is non-nil, set the
18160 selection to the current buffer.
18161 (set-mark): Update selection if select-active-regions is non-nil.
18162
18163 * select.el (x-valid-simple-selection-p): Allow buffer values.
18164
18165 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
18166
18167 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
18168 and more featureful message-mode.
18169
18170 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
18171
18172 * select.el (x-set-selection): Doc fix.
18173 (x-valid-simple-selection-p): Disallow selection data consisting
18174 of a list or cons of integers, since that is not used.
18175 (xselect--selection-bounds, xselect--int-to-cons): New functions.
18176 (xselect-convert-to-string, xselect-convert-to-length)
18177 (xselect-convert-to-filename, xselect-convert-to-charpos)
18178 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
18179
18180 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
18181
18182 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
18183 output in -break-info command (Emacs bug #3794).
18184
18185 2009-07-14 Glenn Morris <rgm@gnu.org>
18186
18187 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
18188 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
18189 (edebug-print-length, edebug-print-level, edebug-print-circle)
18190 (edebug-sit-for-seconds, edebug-view-outside)
18191 (edebug-bounce-point, edebug-set-global-break-condition)
18192 (edebug-Go-nonstop-mode, edebug-trace-mode)
18193 (edebug-Trace-fast-mode, edebug-continue-mode)
18194 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
18195 (edebug-visit-eval-list): Doc fixes.
18196
18197 * subr.el (def-edebug-spec): Doc fix.
18198
18199 2009-07-14 Kenichi Handa <handa@m17n.org>
18200
18201 * international/characters.el: Fix setting of category ?C.
18202
18203 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
18204
18205 * term/ns-win.el (x-select-font): defalias x-select-font to
18206 ns-popup-font-panel instead of generate-fontset-menu.
18207
18208 2009-07-12 Eli Zaretskii <eliz@gnu.org>
18209
18210 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
18211
18212 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
18213
18214 * arc-mode.el (archive-find-type): Allow for a PK00 string before
18215 the PK\003\004 header (Bug#3770).
18216
18217 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
18218
18219 * pcomplete.el (pcomplete-comint-setup): Check for
18220 shell-dynamic-complete-filename too.
18221
18222 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
18223
18224 * simple.el (temporary-goal-column): Change the value for
18225 line-move-visual to a cons cell.
18226 (line-move-visual): Record or set the window hscroll, if
18227 necessary (Bug#3494).
18228 (line-move-1): Handle cons value of temporary-goal-column.
18229
18230 2009-07-11 Kenichi Handa <handa@m17n.org>
18231
18232 * international/mule-diag.el (describe-character-set): Don't show
18233 width.
18234
18235 2009-07-10 Sam Steingold <sds@gnu.org>
18236
18237 * progmodes/compile.el (compilation-mode-font-lock-keywords):
18238 Omake sometimes indents the errors it prints, so allow all
18239 regexps to start with spaces.
18240
18241 2009-07-10 Eli Zaretskii <eliz@gnu.org>
18242
18243 * cus-edit.el (customize-changed-options-previous-release):
18244 Bump value to 22.1. (Bug#3804)
18245
18246 2009-07-08 Sam Steingold <sds@gnu.org>
18247
18248 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
18249 to be a cons cell (test . ignored-directory) to selectively ignore
18250 some directories depending on the location of the search.
18251
18252 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
18253
18254 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
18255 remote user is root, on the local host.
18256 (tramp-local-host-p): Either the local user or the remote user
18257 must be root. (Bug#3771)
18258
18259 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
18260
18261 * progmodes/gdb-mi.el (gdb): Remove description of
18262 gdb-use-separate-io-buffer.
18263 (menu): Don't allow toggling of or enable
18264 gdb-use-separate-io-buffer from menubar.
18265
18266 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
18267
18268 * mail/unrmail.el (unrmail): Make sure the message ends with two
18269 newlines (Bug#3769).
18270
18271 2009-07-08 Glenn Morris <rgm@gnu.org>
18272
18273 * calendar/calendar.el (calendar-current-date): Rework previous change.
18274
18275 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
18276
18277 * calendar/calendar.el (calendar-current-date):
18278 Add an optional argument giving an offset from today.
18279
18280 2009-07-08 Glenn Morris <rgm@gnu.org>
18281
18282 * tutorial.el (tutorial--describe-nonstandard-key):
18283 Adjust the message for when a key has been unbound.
18284 (help-with-tutorial): Hide the arch-tag.
18285
18286 2009-07-08 Kenichi Handa <handa@m17n.org>
18287
18288 * international/fontset.el (setup-default-fontset): For each
18289 script, append (not set) font-specs.
18290
18291 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
18292 docstring.
18293
18294 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
18295
18296 * progmodes/gdb-mi.el (gdb-init-1): Move sending
18297 -data-list-register-names to ...
18298 (gdb-starting): ... here because GDB 7.0 requires execution to
18299 have started when using this MI command.
18300 (gdb-set-header): New function to distinguish select and
18301 unselected tabs in gdb buffers.
18302 (gdb-propertize-header): New macro that uses gdb-set-header.
18303 (gdb-breakpoints-header, gdb-locals-header): Use it.
18304 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
18305
18306 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
18307
18308 * Makefile.in (ELCFILES): Remove fadr.elc.
18309
18310 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
18311
18312 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
18313 may contain frame information, so `string-match' should be used.
18314 (gdb-update): Disassembly is invalidated through
18315 `gdb-get-selected-frame'.
18316 (gdb-pad-string): New function to pad string with spaces.
18317 (gdb-invalidate-disassembly): Invalidate only if the buffer
18318 exists.
18319 (gdb-disassembly-handler-custom): Column alignment.
18320 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
18321 placing new ones.
18322 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
18323 end of line, too.
18324 (gdb-frame-handler): Match convention to for disassembly buffer
18325 mode name.
18326 (gdb-stack-list-frames-handler): Rewritten without regexps.
18327 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
18328 not highlight breakpoints without line information.
18329 (gdb-input): Add trailing newline to command.
18330
18331 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
18332 buffer properly.
18333 (gdb-breakpoints-list-handler-custom): Replacement for
18334 `gdb-break-list-handler'. Using real parser instead of regexps
18335 now.
18336 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
18337 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
18338 to place breakpoints.
18339 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
18340 functions.
18341 (gdb-disassembly-handler-custom): Show overlay arrow.
18342 (gdb-disassembly-place-breakpoints): Show breakpoints in
18343 disassembly buffer.
18344 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
18345 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
18346 instead of parsing breakpoints buffer. Fixed old menu references
18347 in `gud-menu-map'.
18348
18349 * fadr.el: Remove.
18350
18351 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
18352 (gdb-memory-address): New variable which holds top address of
18353 memory page shown in memory buffer.
18354 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
18355 customization variables.
18356 New functions:
18357 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
18358 display the memory buffer.
18359 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
18360 buffer display parameters.
18361 (def-gdb-memory-format, gdb-memory-format-binary)
18362 (gdb-memory-format-octal, gdb-memory-format-unsigned)
18363 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
18364 Functions for setting memory buffer format.
18365 (gdb-memory-unit-word, gdb-memory-unit-halfword)
18366 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
18367 unit size used in memory buffer.
18368 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
18369 to next/previous page of memory buffer.
18370 Now using (bindat-get-field) instead of fadr functions.
18371
18372 2009-07-07 Sam Steingold <sds@gnu.org>
18373
18374 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
18375 non-top-level files.
18376
18377 2009-07-07 Kenichi Handa <handa@m17n.org>
18378
18379 * international/mule-cmds.el (reset-language-environment): Put
18380 the highset priority to the charset iso-8859-1.
18381
18382 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
18383
18384 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
18385 to the end of the line when locating the block (Bug#700).
18386
18387 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
18388
18389 * net/tramp.el (tramp-handle-write-region): Flush file properties
18390 in case of short track.
18391
18392 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
18393
18394 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
18395 Coded custom representation of verilog error regular expressions
18396 to work with Emacs-22's new format.
18397 (verilog-error-regexp-xemacs-alist): Coded custom representation
18398 of verilog error regular expressions to work with XEmacs format.
18399 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
18400 error recognition into XEmacs.
18401 (verilog-error-regexp-add-emacs): Hook routine to install verilog
18402 error recognition into Emacs-22.
18403
18404 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
18405
18406 * woman.el: Remove stand-alone closing parentheses.
18407 (woman-file-name, woman2-format-paragraphs)
18408 (woman-leave-blank-lines): Code cleanup.
18409 (woman-use-own-frame): Change default to nil.
18410 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
18411 defaults to inherit from default faces.
18412 (woman2-process-escapes): Consume the newline after a stand-alone
18413 filler character (Bug#3651).
18414
18415 2009-07-06 Glenn Morris <rgm@gnu.org>
18416
18417 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
18418 (top-level): Move provide to the end.
18419 (ffap): Remove defunct URL from custom group.
18420
18421 * subr.el (eval-after-load): Doc fix.
18422
18423 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
18424
18425 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
18426 `calc-embedded-word' is called twice.
18427
18428 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
18429
18430 * files.el (find-alternate-file-other-window, find-alternate-file):
18431 Obey confirm-nonexistent-file-or-buffer.
18432
18433 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
18434
18435 * dired-aux.el (dired-show-file-type): Handle remote files.
18436
18437 2009-07-05 Jari Aalto <jari.aalto@cante.net>
18438
18439 * desktop.el (desktop-globals-to-save):
18440 Add file-name-history (Bug#2750).
18441
18442 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
18443
18444 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
18445
18446 2009-07-04 Johan Bockgård <bojohan@gnu.org>
18447
18448 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
18449 property on entire argument since this is what eshell-lisp-command
18450 expects.
18451
18452 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
18453
18454 * net/tramp-gvfs.el (tramp-gvfs-methods)
18455 (tramp-gvfs-zeroconf-domain)
18456 (tramp-bluez-discover-devices-timeout): Add version flag.
18457 (tramp-gvfs-handler-mounted-unmounted)
18458 (tramp-gvfs-connection-mounted-p): Polish handling of
18459 incompatibilities between GVFS 0.2 and 1.0.
18460
18461 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
18462
18463 * cus-start.el (all): Add make-pointer-invisible.
18464
18465 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
18466
18467 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
18468 formatted correctly.
18469
18470 2009-07-02 Juri Linkov <juri@jurta.org>
18471
18472 * info.el: Virtual Info files and nodes.
18473 (Info-virtual-files, Info-virtual-nodes): New variables.
18474 (Info-current-node-virtual): New variable.
18475 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
18476 New functions.
18477 (Info-file-supports-index-cookies): Use Info-virtual-file-p
18478 to check for a virtual file instead of checking a fixed list
18479 of node names.
18480 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
18481 instead of ad-hoc processing of "dir" and (apropos history toc).
18482 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
18483 instead of ad-hoc processing of "dir" and (apropos history toc).
18484 Reread a file when moving from a virtual node.
18485 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
18486 (Info-directory-toc-nodes, Info-directory-find-file)
18487 (Info-directory-find-node): New functions.
18488 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
18489 (Info-history): Move part of code to
18490 `Info-history-find-node'.
18491 (Info-history-toc-nodes, Info-history-find-file)
18492 (Info-history-find-node): New functions.
18493 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
18494 (Info-toc): Move part of code to `Info-toc-find-node'.
18495 (Info-toc-find-node): New function.
18496 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
18497 the current Info file name to references because now the node
18498 "*TOC*" belongs to the same Info manual.
18499 (Info-toc-build): Rename from `Info-build-toc'.
18500 (Info-toc-nodes): Rename input argument `file' to `filename'.
18501 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
18502 instead of ad-hoc processing of ("dir" apropos history toc).
18503 (Info-index-nodes): Use Info-virtual-file-p
18504 to check for a virtual file instead of checking a fixed list
18505 of node names.
18506 (Info-index-node): Add check for `Info-current-node-virtual'.
18507 Raise `save-match-data' higher up the tree to contain
18508 `search-forward' too (bug fix).
18509 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
18510 (Info-virtual-index-nodes): New variable.
18511 (Info-virtual-index-find-node, Info-virtual-index): New functions.
18512 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
18513 (Info-apropos-file, Info-apropos-nodes): New variables.
18514 (Info-apropos-toc-nodes, Info-apropos-find-file)
18515 (Info-apropos-find-node, Info-apropos-matches): New functions.
18516 (info-apropos): Move part of code to `Info-apropos-find-node' and
18517 `Info-apropos-matches'.
18518 (Info-mode-map): Bind "I" to `Info-virtual-index'.
18519 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
18520 for a virtual file instead of checking a fixed list of node names.
18521
18522 * simple.el (async-shell-command): New command.
18523
18524 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
18525
18526 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
18527 instead of `mount-info'.
18528
18529 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
18530
18531 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
18532 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
18533
18534 2009-07-02 Kenichi Handa <handa@m17n.org>
18535
18536 * international/mule.el (set-keyboard-coding-system): Force *-unix
18537 coding-system to avoid eol conversion.
18538
18539 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
18540
18541 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
18542 Add handler for `process-file', `shell-command' and
18543 `start-file-process'.
18544 (tramp-gvfs-handle-shell-command)
18545 (tramp-gvfs-handle-start-file-process)
18546 (tramp-gvfs-handle-process-file): New defuns.
18547 (tramp-synce-list-devices): Simplify check for existence of property.
18548
18549 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
18550
18551 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
18552
18553 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
18554
18555 * language/korean.el (set-language-info-alist): Add korean-cp949,
18556 cp949 to spec.
18557
18558 2009-07-01 Kenichi Handa <handa@m17n.org>
18559
18560 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
18561
18562 * international/encoded-kb.el: Deleted.
18563
18564 * international/mule.el (set-keyboard-coding-system): Perform the
18565 necessary setup here instead of calling encoded-kbd-setup-display.
18566
18567 2009-07-01 Glenn Morris <rgm@gnu.org>
18568
18569 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
18570
18571 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
18572
18573 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
18574
18575 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
18576
18577 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
18578 Handle also the 'rename case, when setting file modes. (Bug#3712)
18579 (tramp-default-file-modes): Remove execute permissions.
18580
18581 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
18582 (top): Add a default for "synce" in `tramp-default-user-alist'.
18583 Add completion function for "synce" method.
18584 (tramp-hal-service, tramp-hal-path-manager)
18585 (tramp-hal-interface-manager, tramp-hal-interface-device):
18586 New defconst.
18587 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
18588 (tramp-synce-list-devices, tramp-synce-parse-device-names):
18589 New defuns.
18590
18591 * net/trampver.el: Update release number.
18592
18593 2009-06-30 Kenichi Handa <handa@m17n.org>
18594
18595 * international/fontset.el (setup-default-fontset): Add CJK fonts
18596 for symbols and the other miscellaneous characters.
18597
18598 * language/korea-util.el (setup-korean-environment-internal):
18599 Make char-width-table suitable for Korean environments.
18600 (exit-korean-environment): Cancel above.
18601
18602 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
18603 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
18604 setup-function to make char-width-table suitable for respective
18605 environments, and an exit-function to cancel that.
18606
18607 * language/japan-util.el (setup-japanese-environment-internal):
18608 Call use-cjk-char-width-table with arg `ja_JP'.
18609
18610 * international/characters.el (cjk-char-width-table): Delete it.
18611 (cjk-char-width-table-list): New variable.
18612 (use-cjk-char-width-table): New arg local-name.
18613 (use-default-char-width-table): Fix for the case that Emacs is
18614 already using the default char-width-table.
18615
18616 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
18617
18618 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
18619 modes mandatory. (Bug#3712)
18620
18621 2009-06-29 Alan Mackenzie <acm@muc.de>
18622
18623 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
18624 correction between the visible width of TABs and their number of bytes.
18625
18626 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
18627
18628 * server.el (server-buffer-done): Prevent kill-buffer from
18629 prompting by clearing the buffer modification flag (Bug#3696).
18630
18631 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
18632
18633 * progmodes/verilog-mode.el (verilog-beg-of-statement)
18634 (verilog-endcomment-reason-re): Support unique case and priority case.
18635 (verilog-basic-complete-re): Support localparam lineup.
18636 (verilog-beg-of-statement-1): Fix for robustness, unique case.
18637 (verilog-set-auto-endcomments): Fix for unique case, always_comb
18638 commenting.
18639 (verilog-leap-to-case-head): Now support *nested* unique &
18640 priority case statements.
18641 (verilog-auto-lineup): Make just declarations the default (as it
18642 had been).
18643 (verilog-leap-to-case-head): Support priority/unique case statements.
18644 (verilog-auto-lineup): Rework to give users radio buttons to
18645 select the various styles of automatic lineup.
18646 (verilog-error-regexp-alist): Rework to support the XEmacs style
18647 of error regular expressions from compilers, lint tools &
18648 simulators. Note that GNU Emacs has made it impossible for a mode
18649 to load such things.
18650 (electric-verilog-terminate-line, verilog-indent-declaration)
18651 (verilog-auto-wiure): Rework for radio button selection of
18652 auto-lineup selection of specification of auto lineup.
18653 (verilog-beg-of-statement-1): Redesign to support proper operation
18654 in additional code, based on testing with auto-lineup.
18655 (verilog-calculate-indent, assignments & declarations)
18656 (verilog-backward-token): Enhance to support auto-lineup of
18657 assignments & declarations.
18658 (verilog-in-directive-p, verilog-at-struct-p): New function for
18659 easy test of whether we are.
18660 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
18661 to support safe execution at almost anyline.
18662 (verilog-calc-1): Properly support indenting deep inside generate
18663 blocks.
18664 (verilog-init-font): Remove definition & use of verilog-init-font,
18665 as it is redundant with font-lock-defaults.
18666 (verilog-mode): Alter the definition of verilog-font-lock-defaults
18667 to avoid circular calls if syntax-ppss is a function (as is the
18668 case now in 22.x GNU Emacs) as that function would sometimes call
18669 itself, leading to (nearly) infinite recursion.
18670 (verilog-ovm-begin-re, verilog-ovm-end-re)
18671 (verilog-ovm-statement-re, verilog-leap-to-head)
18672 (verilog-backward-token): Add support for OVM macros. Some are
18673 complete statements, and others open and close scopes like begin
18674 and end.
18675 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
18676 (verilog-defun-level-generate-only-re): Really fix the defun-list
18677 compilation issue.
18678 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
18679 coverpoint, constraint and cross statements.
18680 (verilog-defun-level-list, verilog-generate-defun-level-list)
18681 (verilog-all-defun-level-list): Redo these specifications - it is
18682 too hard to support eval-when compile aggregation of lists also
18683 built at when-compile time.
18684 (verilog-defun-level-list): Place defconsts of variables used in
18685 building regular expressions which are built in eval-when-compile
18686 bodies in the same eval-when-compile body to facilitate compile
18687 without load.
18688 (verilog-beg-block-re-ordered): Support indenting
18689 virtual/protected tasks and functions.
18690 (verilog-defun-level-list, verilog-in-generate-region-p)
18691 (verilog-backward-ws&directives, verilog-calc-1): Speed up
18692 indentation of some module items (generate items).
18693 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
18694 across virtual/protected tasks and functions.
18695
18696 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
18697
18698 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
18699 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
18700 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
18701 in concatenations. Reported by Yishay Belkind.
18702 (verilog-auto-ascii-enum): Support one-hot state machines in
18703 AUTOASCIIENUM. Suggested by Lloyd Gomez.
18704 (verilog-auto-inst, verilog-auto-inst-port): Include interface
18705 modport in AUTOINST and add vl-modport for users. Reported by
18706 David Rogoff.
18707 (verilog-auto-inout-module, verilog-auto-inst)
18708 (verilog-decls-get-interfaces, verilog-insert-definition)
18709 (verilog-insert-one-definition, verilog-read-decls)
18710 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
18711 (verilog-sig-modport, verilog-signals-combine-bus)
18712 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
18713 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
18714 Suggested by David Rogoff.
18715 (verilog-repair-open-comma): Fix non-insertion of comma when
18716 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
18717 (verilog-make-width-expression): Simplify [A-1:0] expression
18718 widths to just {A{1'b0}}.
18719 (verilog-mode): Cleanup checkdoc warnings.
18720 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
18721 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
18722 inputs/outputs or data type. Suggested by Vasu Kandadi.
18723 (next-error-last-buffer): Fix byte-compiler warning.
18724 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
18725 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
18726 or shell command text during AUTO expansion. Suggested by Tad Truex.
18727 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
18728 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
18729 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
18730 in AUTOINOUT. Reported by Matthew Lovell.
18731 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
18732 causing use of <= assignments. Reported by Alex Reed.
18733 (verilog-read-decls): Fix triand, trior, wand, wor to be
18734 recognized by AUTOWIRE. Reported by Spencer Isaacson.
18735 (verilog-extended-complete-re): Support import "DPI-C" functions.
18736 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
18737 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
18738 (verilog-insert-date, verilog-insert-year)
18739 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
18740 Windows systems. Reported by Michael Potts.
18741 (verilog-read-module-name): Fix AUTOINST when the child module
18742 declaration's name is a tick define. Reported by Elliot Mednick.
18743 (verilog-read-decls): Fix V2K parameter bit subscripts getting
18744 passed to next parameter's definition. Reported by Bruce T.
18745 (verilog-read-decls): Fix detecting "parameter int" when using
18746 AUTOINSTPARAM. Reported by Bruce T.
18747 (verilog-goto-defun): Fix goto not finding modules unless first
18748 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
18749 (verilog-mode): Expand -f flag arguments on entry to mode so
18750 verilog-goto-defun will work. Reported by Lawrence Butcher.
18751 (verilog-getopt): Expand environment variables in -f file
18752 arguments. Suggested by Lawrence Butcher.
18753 (verilog-set-define): Fix "Symbol's value as variable is void"
18754 when reading enumerations.
18755 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
18756 Suggested by Stephen Peltan.
18757 (verilog-read-defines): Fix reading of enumerations in include
18758 files. Reported by Steve Peltan.
18759
18760 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
18761
18762 * files.el (trash-directory): Fix defcustom type.
18763
18764 2009-06-28 Juri Linkov <juri@jurta.org>
18765
18766 * help-fns.el (describe-function-1): Correctly locate adviced
18767 functions in hyperlink (Bug#2438).
18768
18769 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
18770
18771 * files.el (trash-directory): Change default to nil.
18772 (move-file-to-trash): If trash-directory is nil and
18773 system-move-file-to-trash is unbound, perform freedesktop-style
18774 trashing.
18775
18776 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
18777
18778 * files.el (move-file-to-trash): Add freedesktop trash
18779 support (Bug#973).
18780
18781 2009-06-28 Glenn Morris <rgm@gnu.org>
18782
18783 * autorevert.el (global-auto-revert-non-file-buffers)
18784 (global-auto-revert-mode): Doc fixes.
18785
18786 2009-06-27 Johan Bockgård <bojohan@gnu.org>
18787
18788 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
18789
18790 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
18791
18792 * faces.el (x-handle-named-frame-geometry): Ensure that we have
18793 opened an X connection before calling x-get-resource (Bug#3194).
18794
18795 * play/doctor.el: Remove reference to obsolete website.
18796 (make-doctor-variables): Correct grammar mistake (Bug#2633).
18797
18798 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
18799
18800 Remove find-file-not-found-hook VC method. (Bug#2757)
18801 * vc-hooks.el (vc-file-not-found-hook)
18802 (vc-default-find-file-not-found-hook): Remove functions.
18803 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
18804 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
18805 * vc.el:
18806 * vc-hg.el:
18807 * vc-git.el: Do not mention find-file-not-found-hook VC method.
18808
18809 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
18810
18811 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
18812 compatibility function for `looking-back'.
18813
18814 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
18815 Use `ispell-looking-back'.
18816
18817 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
18818
18819 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
18820 rather than `filename'.
18821
18822 2009-06-23 Miles Bader <miles@gnu.org>
18823
18824 * face-remap.el (text-scale-set): New function.
18825
18826 2009-06-23 Glenn Morris <rgm@gnu.org>
18827
18828 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
18829
18830 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
18831
18832 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
18833
18834 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
18835
18836 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
18837 Simplify Persian conditionals.
18838
18839 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
18840 variable `filename'.
18841
18842 * comint.el (comint-insert-input): Doc fix.
18843
18844 * Makefile.in (ELCFILES): Fix typo in previous change.
18845
18846 2009-06-23 Miles Bader <miles@gnu.org>
18847
18848 * cus-start.el: Add entry for `recenter-redisplay'.
18849
18850 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
18851
18852 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
18853 Add an optional argument for the backend, use it instead of
18854 calling vc-backend.
18855 (vc-mode-line): Add an optional argument for the backend.
18856 Pass the backend to vc-state and vc-working-revision. Move code for
18857 special handling for vc-state being a buffer to ...
18858
18859 * vc-rcs.el (vc-rcs-find-file-hook):
18860 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
18861
18862 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
18863 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
18864 vc-stay-local-p and vc-mode-line calls.
18865
18866 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
18867 (vc-cvs-diff, vc-cvs-annotate-command)
18868 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
18869 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
18870 vc-mode-line calls.
18871
18872 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
18873 direct comparison.
18874 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
18875 backend when calling vc-mode-line.
18876 (vc-register): Do not create a closure for calling the vc register
18877 function, call it directly.
18878
18879 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
18880
18881 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
18882 to make it obvious item can be clicked.
18883
18884 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
18885
18886 2009-06-23 Kenichi Handa <handa@m17n.org>
18887
18888 * language/korea-util.el (korean-key-bindings): Change the binding
18889 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
18890 same command.
18891
18892 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
18893
18894 Sync with Tramp 2.1.16.
18895
18896 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
18897
18898 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
18899 when a loading of a package fails. Completion function for rsync
18900 is `tramp-completion-function-alist-ssh'.
18901 (all): Replace all calls of `split-string' and
18902 `tramp-split-string' by `tramp-compat-split-string'.
18903 (tramp-default-method): Use `tramp-compat-process-running-p'.
18904 (tramp-default-proxies-alist): Allow also Lisp forms.
18905 (tramp-remote-path): Add choice "Private Directories".
18906 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
18907 (tramp-domain-regexp): Allow also "-", "_" and ".".
18908 (tramp-end-of-output): Remove newlines, and add "$" at the end.
18909 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
18910 (tramp-debug-message): Insert header line in debug buffer.
18911 (tramp-handle-directory-files-and-attributes-with-stat):
18912 Care about filenames with spaces, or starting with "-".
18913 (tramp-handle-dired-uncache): New defun.
18914 (tramp-handle-insert-directory): Don't flush the directory from
18915 cache, this is handled by `dired-uncache' now.
18916 (tramp-handle-insert-file-contents): Improve error handling.
18917 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
18918 Quote `tramp-end-of-output'.
18919 (tramp-action-password): Improve trace message.
18920 (tramp-check-for-regexp): Both echoes must be present, before removing.
18921 (tramp-open-connection-setup-interactive-shell): Trace coding system.
18922 (tramp-compute-multi-hops): Eval cons cells of
18923 `tramp-default-proxies-alist'.
18924 (tramp-maybe-open-connection): Use the same command pattern for
18925 first hop and further hops.
18926 (tramp-wait-for-output): Remove handling of newlines.
18927 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
18928 (tramp-split-string): Remove function. It is handled in
18929 tramp-compat now.
18930
18931 * net/tramp-cmds.el (tramp-bug):
18932 Recommend `tramp-cleanup-all-connections' in the bug mail.
18933
18934 * net/tramp-compat.el (tramp-compat-split-string)
18935 (tramp-compat-process-running-p): New defuns.
18936
18937 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
18938 for `dired-uncache'.
18939
18940 * net/tramp-gvfs.el: New package.
18941
18942 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
18943 Add handler for `dired-uncache'.
18944 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
18945
18946 * net/trampver.el: Update release number. Make version check fit
18947 for SXEmacs 22.
18948
18949 2009-06-22 Jim Meyering <meyering@redhat.com>
18950
18951 Automatically handle .xz suffix (XZ-compressed files), too.
18952 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
18953 XZ is the successor to LZMA: <http://tukaani.org/xz/>
18954
18955 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
18956 Nick Roberts <nickrob@snap.net.nz>
18957
18958 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
18959 repository (http://sphinx.net.ru/hg/gdb-mi/).
18960
18961 2009-06-22 Glenn Morris <rgm@gnu.org>
18962
18963 * files.el (dir-locals-collect-mode-variables): Allow for any number of
18964 `mode' and `eval' entries. (Bug#3430)
18965
18966 * Makefile.in (ELCFILES): Add fadr.elc.
18967
18968 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
18969 differing behavior of \n and ^ in strings. (Bug#3385)
18970
18971 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
18972
18973 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
18974 property.
18975 (lisp-indent-function): Make it a defcustom.
18976
18977 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
18978
18979 * progmodes/gdb-ui.el: Replace with ...
18980 * progmodes/gdb-mi.el: ... this file.
18981 * progmodes/gud.el: Modify for gdb-mi.el.
18982
18983 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
18984
18985 * fadr.el: New file.
18986
18987 See ChangeLog.14 for earlier changes.
18988
18989 ;; Local Variables:
18990 ;; coding: utf-8
18991 ;; End:
18992
18993 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
18994
18995 This file is part of GNU Emacs.
18996
18997 GNU Emacs is free software: you can redistribute it and/or modify
18998 it under the terms of the GNU General Public License as published by
18999 the Free Software Foundation, either version 3 of the License, or
19000 (at your option) any later version.
19001
19002 GNU Emacs is distributed in the hope that it will be useful,
19003 but WITHOUT ANY WARRANTY; without even the implied warranty of
19004 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19005 GNU General Public License for more details.
19006
19007 You should have received a copy of the GNU General Public License
19008 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.