Fix to package name computation in Finder.
[bpt/emacs.git] / lisp / ChangeLog
1 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
2
3 * finder.el (finder-compile-keywords): Don't use intern-soft,
4 since package names may not yet exist in the obarray.
5
6 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
7
8 * vc/vc-arch.el (vc-arch-checkin):
9 * vc/vc-cvs.el (vc-cvs-checkin):
10 * vc/vc-mtn.el (vc-mtn-checkin):
11 * vc/vc-rcs.el (vc-rcs-checkin):
12 * vc/vc-sccs.el (vc-sccs-checkin):
13 * vc/vc-svn.el (vc-svn-checkin): Remove optional extra arg, unused
14 since 2010-04-21 commit by Stefan Monnier.
15
16 2010-11-01 Glenn Morris <rgm@gnu.org>
17
18 * emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change.
19
20 * startup.el (package-enable-at-startup, package-initialize):
21 Silence compiler.
22
23 * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
24 Silence compiler.
25
26 2010-10-31 Julien Danjou <julien@danjou.info>
27
28 * emacs-lisp/bytecomp.el (byte-recompile-file): New fun (bug#7297).
29 (byte-recompile-directory):
30 * emacs-lisp/lisp-mode.el (emacs-lisp-byte-compile-and-load):
31 Use `byte-recompile-file'.
32
33 2010-10-31 Glenn Morris <rgm@gnu.org>
34
35 * cus-start.el: Handle standard values via a keyword.
36 Only set version property if specified.
37 (cursor-in-non-selected-windows, menu-bar-mode)
38 (tool-bar-mode, show-trailing-whitespace):
39 Do not specify standard values.
40 (transient-mark-mode, temporary-file-directory): Use :standard.
41
42 2010-10-31 Jan Djärv <jan.h.d@swipnet.se>
43
44 * term/x-win.el (x-get-selection-value): New function that gets
45 PRIMARY with type as specified in x-select-request-type. (Bug#6802).
46
47 2010-10-31 Michael Albinus <michael.albinus@gmx.de>
48
49 * net/tramp.el (tramp-handle-insert-file-contents): For root,
50 preserve owner and group when editing files. (Bug#7289)
51
52 2010-10-31 Glenn Morris <rgm@gnu.org>
53
54 * speedbar.el (speedbar-mode):
55 * play/fortune.el (fortune-in-buffer, fortune):
56 * play/gomoku.el (gomoku-mode):
57 * play/landmark.el (lm-mode):
58 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
59 Replace inappropriate uses of toggle-read-only. (Bug#7292)
60
61 * select.el (x-selection): Mark it as an obsolete alias.
62
63 2010-10-31 Aaron S. Hawley <aaron.s.hawley@gmail.com>
64
65 * vc/add-log.el (find-change-log): Use derived-mode-p rather than
66 major-mode (bug#7284).
67
68 2010-10-31 Glenn Morris <rgm@gnu.org>
69
70 * menu-bar.el (menu-bar-files-menu): Make it into an actual alias,
71 rather than just an unused variable that inherits from the real one.
72
73 2010-10-31 Alan Mackenzie <acm@muc.de>
74
75 * progmodes/cc-cmds.el (c-mask-paragraph): Fix an off-by-1 error.
76 This fixes bug #7185.
77
78 2010-10-30 Chong Yidong <cyd@stupidchicken.com>
79
80 * startup.el (command-line): Search for package directories, and
81 don't load package.el if none are found.
82
83 * emacs-lisp/package.el (describe-package, list-packages): Call
84 package-initialize if it has not been called yet.
85
86 2010-10-30 Alan Mackenzie <acm@muc.de>
87
88 * progmodes/cc-fonts.el (c-font-lock-enum-tail): New function
89 which fontifies the tail of an enum.
90 (c-basic-matchers-after): Insert a call to the above new function.
91 This fixes bug #7264.
92
93 2010-10-30 Glenn Morris <rgm@gnu.org>
94
95 * cus-start.el: Add :set properties for minor modes menu-bar-mode,
96 tool-bar-mode, transient-mark-mode. (Bug#7306)
97 Include the :set property in the dumped Emacs.
98
99 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
100
101 SMIE: change indent rules format, improve smie-setup.
102 * emacs-lisp/smie.el (smie-precs-precedence-table)
103 (smie-merge-prec2s, smie-bnf-precedence-table, smie-prec2-levels):
104 Mark them pure so the tables gets built at compile time.
105 (smie-bnf-precedence-table): Store the closer-alist in the table.
106 (smie-prec2-levels): Preserve the closer-alist.
107 (smie-blink-matching-open): Be more forgiving in case of indentation.
108 (smie-hanging-p): Rename from smie-indent--hanging-p.
109 (smie-bolp): Rename from smie-indent--bolp.
110 (smie--parent, smie--after): New dynamic vars.
111 (smie-parent-p, smie-next-p, smie-prev-p): New funs.
112 (smie-indent-rules): Remove.
113 (smie-indent--offset-rule): Remove fun.
114 (smie-rules-function): New var.
115 (smie-indent--rule): New fun.
116 (smie-indent--offset, smie-indent-keyword, smie-indent-after-keyword)
117 (smie-indent-exps): Use it.
118 (smie-setup): Setup paren blinking; add keyword args for token
119 functions; extract closer-alist from op-levels.
120 (smie-indent-debug-log): Remove var.
121 (smie-indent-debug): Remove fun.
122 * progmodes/prolog.el (prolog-smie-indent-rules): Remove.
123 (prolog-smie-rules): New fun to replace it.
124 (prolog-mode-variables): Simplify.
125 * progmodes/octave-mod.el (octave-smie-closer-alist): Remove, now that
126 it's setup automatically.
127 (octave-smie-indent-rules): Remove.
128 (octave-smie-rules): New fun to replace it.
129 (octave-mode): Simplify.
130
131 2010-10-29 Glenn Morris <rgm@gnu.org>
132
133 * files.el (temporary-file-directory): Remove (already defined in C).
134 * cus-start.el: Add temporary-file-directory.
135
136 * abbrev.el (abbrev-mode):
137 * composite.el (auto-composition-mode):
138 * menu-bar.el (menu-bar-mode):
139 * simple.el (transient-mark-mode):
140 * tool-bar.el (tool-bar-mode): Adjust the define-minor-mode calls so
141 that they do not define the associated variables twice.
142 * simple.el (transient-mark-mode): Remove defvar.
143 * composite.el (auto-composition-mode): Make variable auto-buffer-local.
144 * cus-start.el: Add transient-mark-mode, menu-bar-mode, tool-bar-mode.
145 Handle multiple groups, and also custom-delayed-init-variables.
146 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
147
148 2010-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
149
150 * emacs-lisp/pcase.el (pcase): New `string' and `guard' patterns.
151 (pcase-if): Add one minor optimization.
152 (pcase-split-equal): Rename from pcase-split-eq.
153 (pcase-split-member): Rename from pcase-split-memq.
154 (pcase-u1): Add strings to the member optimization.
155 Add `guard' variant of predicates.
156 (pcase-q1): Add string patterns.
157
158 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
159
160 * vc/log-edit.el (log-edit-rewrite-fixes): State its safety pred.
161
162 2010-10-28 Glenn Morris <rgm@gnu.org>
163
164 * term/ns-win.el (global-map, menu-bar-final-items, menu-bar-help-menu):
165 Move menu-bar related settings to ../menu-bar.el.
166 * menu-bar.el (global-map, menu-bar-final-items, menu-bar-help-menu):
167 Move ns-specific settings here from term/ns-win.el.
168
169 * simple.el (x-selection-owner-p): Remove unused declaration.
170
171 2010-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
172
173 * minibuffer.el (completion-cycling): New var (bug#7266).
174 (minibuffer-complete, completion--do-completion):
175 Use completion--flush-all-sorted-completions.
176 (minibuffer-complete): Only cycle if completion-cycling is set.
177 (completion--flush-all-sorted-completions): Unset completion-cycling.
178 (minibuffer-force-complete): Set completion-cycling.
179 (completion-all-sorted-completions): Move declaration before first use.
180
181 2010-10-28 Leo <sdl.web@gmail.com>
182
183 * iswitchb.el (iswitchb-kill-buffer): Avoid `iswitchb-make-buflist'
184 which changes the order of matches seen by users (bug#7231).
185
186 2010-10-28 Jes Bodi Klinke <jes@bodi-klinke.dk> (tiny change)
187
188 * progmodes/compile.el (compilation-mode-font-lock-keywords):
189 Don't confuse -omega as "-o mega".
190
191 2010-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
192
193 * vc/log-edit.el (log-edit-rewrite-fixes): New var.
194 (log-edit-author): New dynamic var.
195 (log-edit-changelog-ours-p, log-edit-insert-changelog-entries): Use it
196 to return the author if different from committer.
197 (log-edit-insert-changelog): Use them to add Author: and Fixes headers.
198
199 * play/landmark.el: Adjust commenting convention.
200 (lm-nil-score): Rename from nil-score.
201 (Xscore, XXscore, XXXscore, XXXXscore, Oscore, OOscore, OOOscore)
202 (OOOOscore): Move into a let in lm-score-trans-table.
203 (lm-winning-threshold, lm-loosing-threshold): Use lm-score-trans-table.
204
205 * electric.el (electric-indent-chars): Autoload.
206 * progmodes/octave-mod.el (octave-mode):
207 * progmodes/ruby-mode.el (ruby-mode): Take advantage of it.
208 (ruby-mode-abbrev-table): Merge initialization and declaration.
209
210 2010-10-27 Glenn Morris <rgm@gnu.org>
211
212 * abbrev.el (abbrev-mode): Remove one of the three definitions of this
213 variable.
214
215 * server.el (server-host, server-port, server-auth-dir): Autoload risky.
216
217 * term/ns-win.el: Restore require of cl when compiling.
218 (menu-bar-final-items): Remove non-existent `windows' menu.
219 (ns-handle-nxopen): Optionally handle the temp-case.
220 (ns-handle-nxopentemp): Just call ns-handle-nxopen.
221 (ns-insert-file, ns-find-file): Use `pop'.
222
223 2010-10-26 Glenn Morris <rgm@gnu.org>
224
225 * term/common-win.el (xw-defined-colors): Simplify the 'ns case.
226
227 2010-10-26 Adrian Robert <Adrian.B.Robert@gmail.com>
228
229 * term/ns-win.el (ns-new-frame, ns-show-prefs): Don't add to
230 global map.
231 * term/common-win.el (x-setup-function-keys): Remove most of the
232 keymappings. Comment on the remaining ones.
233
234 2010-10-26 Peter Oliver <p.d.oliver@mavit.org.uk> (tiny change)
235
236 * server.el (server-port): New option. (Bug#854)
237 (server-start): Use server-port.
238
239 2010-10-26 Glenn Morris <rgm@gnu.org>
240
241 * term/ns-win.el (ns-version-string): Remove unused declaration.
242 (ns-invocation-args): Change to x-invocation-args.
243 (ns-handle-switch, ns-handle-numeric-switch, ns-handle-iconic)
244 (ns-handle-name-switch, ns-ignore-2-arg): Remove.
245 (ns-handle-nxopen, ns-handle-nxopentemp, ns-ignore-1-arg):
246 Use x-invocation-args instead of ns-invocation-args.
247 (ns-initialize-window-system, handle-args-function-alist):
248 Use x-handle-args instead of ns-handle-args.
249 * term/common-win.el (x-handle-args): Also handle nextstep arguments.
250 * startup.el (command-line-ns-option-alist): Replace
251 ns-handle-name-switch, ns-handle-switch, ns-handle-numeric-switch,
252 ns-handle-iconic with the x- equivalents.
253
254 * term/common-win.el (x-select-enable-clipboard):
255 * term/pc-win.el (x-select-enable-clipboard): Doc fix.
256
257 * term/ns-win.el: No need to require cl when compiling.
258 (x-display-name, x-setup-function-keys, x-select-text, x-colors)
259 (xw-defined-colors): Use the common-win definitions.
260 (ns-alternatives-map): Make it an obsolete alias for x-alternatives-map.
261 (ns-handle-iconic): Make it an alias for x-handle-iconic.
262 * term/common-win.el (x-select-text, x-alternatives-map)
263 (x-setup-function-keys, x-colors, xw-defined-colors): Handle 'ns case.
264 * loadup.el [ns]: Load common-win.
265
266 2010-10-26 Daiki Ueno <ueno@unixuser.org>
267
268 * epa-mail.el (epa-mail-encrypt): Handle local-part only
269 recipients; expand mail aliases (Bug#7280).
270
271 2010-10-25 Glenn Morris <rgm@gnu.org>
272
273 * term/common-win.el (x-handle-switch): Simplify with pop.
274 Optionally handle numeric switches.
275 (x-handle-numeric-switch): Just call x-handle-switch.
276 (x-handle-initial-switch, x-handle-xrm-switch, x-handle-geometry)
277 (x-handle-name-switch, x-handle-display, x-handle-args):
278 Simplify with pop.
279
280 * term/ns-win.el: Do not require easymenu.
281 (menu-bar-edit-menu) <copy, paste, paste-from-menu, separator-undo>:
282 <spell>: Move adjustments to menu-bar.el.
283 * menu-bar.el (menu-bar-edit-menu) <copy, paste, paste-from-menu>:
284 <separator-undo, spell>: Move ns-win's adjustments here.
285 * loadup.el [ns]: Do not load easymenu.
286
287 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
288
289 * image.el (image-checkbox-checked, image-checkbox-unchecked):
290 Delete (Bug#7222).
291
292 * startup.el (fancy-startup-tail): Instead of using inline images,
293 refer to image files from etc/.
294
295 * wid-edit.el (checkbox): Likewise.
296 (widget-image-find): Center image specs.
297
298 2010-10-24 Glenn Morris <rgm@gnu.org>
299
300 * term/ns-win.el (x-select-text): Doc fix.
301 * w32-fns.el (x-alternatives-map, x-setup-function-keys)
302 (x-select-text): Move to term/common-win.
303 * term/w32-win.el (xw-defined-colors): Move to common-win.
304 * term/x-win.el (xw-defined-colors, x-alternatives-map)
305 (x-setup-function-keys, x-select-text): Move to common-win.
306 * term/common-win.el (x-select-text, x-alternatives-map)
307 (x-setup-function-keys, xw-defined-colors): Merge x- and w32-
308 definitions here.
309
310 2010-10-24 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
311
312 * net/mairix.el (mairix-searches-mode-map):
313 * mail/mspools.el (mspools-mode-map): Fix 2010-10-10 change.
314
315 2010-10-24 Michael McNamara <mac@mail.brushroad.com>
316
317 * verilog-mode.el (verilog-directive-re): Make this variable
318 auto-built for efficiency of execution and updating.
319 (verilog-extended-complete-re): Support 'pure' fucntion & task
320 declarations (these have no bodies).
321 (verilog-beg-of-statement): General cleanup to enable support of
322 'pure' fucntion & task declarations (these have no bodies).
323 These efforts together fix Verilog bug210 from veripool; which was also
324 noticed by Steve Pearlmutter.
325 (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
326 (verilog-directive-nest-re, verilog-set-auto-endcomments):
327 Support `elsif. Reported by Shankar Giri.
328 (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
329 attribute handling for lining up declarations and assignments.
330 (verilog-beg-of-statement-1): Fix issue where continued declaration
331 is indented differently if it is after a begin..end clock.
332 (verilog-in-attribute-p, verilog-skip-backward-comments)
333 (verilog-skip-forward-comment-p): Support proper treatment of
334 attributes by indent code. Reported by Jeff Steele.
335 (verilog-in-directive-p): Fix comment to correctly describe function.
336 (verilog-backward-up-list, verilog-in-struct-region-p)
337 (verilog-backward-token, verilog-in-struct-p)
338 (verilog-in-coverage-p, verilog-do-indent)
339 (verilog-pretty-declarations): Use verilog-backward-up-list as
340 wrapper around backward-up-list inorder to properly skip comments.
341 Reported by David Rogoff.
342 (verilog-property-re, verilog-endcomment-reason-re)
343 (verilog-beg-of-statement, verilog-set-auto-endcomments)
344 (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
345 of if). Reported by Max Bjurling and
346 (verilog-calc-1): Fix for clocking block in modport
347 declaration. Reported by Brian Hunter.
348
349 2010-10-24 Wilson Snyder <wsnyder@wsnyder.org>
350
351 * verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
352 (verilog-gate-keywords, verilog-read-sub-decls)
353 (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
354 (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
355 AUTOINST for gate primitives, bug284. Reported by Mark Johnson.
356 (verilog-read-decls): Fix spaces in V2K module parameters causing
357 mis-identification as interfaces, bug287.
358 (verilog-read-decls): Fix not treating "parameter string" as a
359 parameter in AUTOINSTPARAM.
360 (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
361 treating `elsif similar to `endif inside AUTOSENSE.
362 (verilog-do-indent): Implement correct automatic or static task or
363 function end comment highlight. Reported by Steve Pearlmutter.
364 (verilog-font-lock-keywords-2): Fix highlighting of single
365 character pins, bug264. Reported by Michael Laajanen.
366 (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
367 (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
368 (verilog-subdecls-get-interfaced, verilog-subdecls-new): Support
369 interfaces with AUTOINST, bug270. Reported by Luis Gutierrez.
370 (verilog-pretty-expr): Fix interactive arguments, bug272.
371 Reported by Mark Johnson.
372 (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp):
373 Add 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
374 bug269. Suggested by Gary Delp.
375 (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
376 (verilog-preprocessor, verilog-set-compile-command):
377 Create verilog-preprocess and verilog-preprocessor to show
378 preprocessed output.
379 (verilog-get-beg-of-line, verilog-get-end-of-line)
380 (verilog-modi-file-or-buffer, verilog-modi-name)
381 (verilog-modi-point, verilog-within-string): Move defmacro's
382 before first use to avoid warning. Reported by Steve Pearlmutter.
383 (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
384 (verilog-colorize-region, verilog-highlight-buffer)
385 (verilog-highlight-includes, verilog-highlight-modules)
386 (verilog-highlight-region, verilog-mode): Rename colorize to
387 highlight to match other packages. Disable module highlighting,
388 as received speed complaints, reenable for experimentation only
389 using new verilog-highlight-modules.
390 (verilog-read-decls): Fix regexp stack overflow in very large
391 AUTO_TEMPLATEs, bug250.
392 (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
393 (verilog-scan): Create verilog-save-buffer-state to standardize
394 making insignificant changes that shouldn't call hooks.
395 (verilog-save-no-change-functions, verilog-save-scan-cache)
396 (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
397 Create verilog-save-no-change-functions to wrap verilog-scan
398 preservation, and fix to work with nested preserved calls.
399 (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
400 port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
401 generate .name with AUTOINST, bug245. Suggested by David Rogoff.
402 (verilog-submit-bug-report): Update variable list to be complete.
403 (verilog-auto, verilog-colorize-region): Fix AUTO expansion
404 breaking on-the-fly font-locking.
405 (verilog-colorize-buffer, verilog-colorize-include-files)
406 (verilog-colorize-include-files-buffer, verilog-colorize-region)
407 (verilog-load-file-at-mouse, verilog-load-file-at-point)
408 (verilog-mode, verilog-read-inst-module-matcher): With point on a
409 AUTOINST cell instance name, middle mouse button now finds-file on
410 it. Suggested by Brad Dobbie.
411 (verilog-alw-get-temps, verilog-auto-reset)
412 (verilog-auto-sense-sigs, verilog-read-always-signals)
413 (verilog-read-always-signals-recurse): Fix loop indexes being
414 AUTORESET. AUTORESET now assumes any variables in the
415 initialization section of a for() should be ignored. Reported by
416 Dan Dever.
417 (verilog-error-font-lock-keywords)
418 (verilog-error-regexp-emacs-alist)
419 (verilog-error-regexp-xemacs-alist): Fix error detection of
420 Cadence HAL, reported by David Asher. Repair drift between the
421 three similar error variables.
422 (verilog-modi-lookup, verilog-modi-lookup-cache)
423 (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
424 (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
425 Fix slow verilog-auto expansion on very large files.
426 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line):
427 Fix AUTOOUTPUT treating "1*2" as a signal name in submodule connection
428 "{1*2{...". Broke in last revision.
429 (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
430 submodule connections with replications "{#{a},#{b}}".
431
432 2010-10-24 Juanma Barranquero <lekktu@gmail.com>
433
434 * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
435 Fix typo in docstring.
436
437 2010-10-24 Kenichi Handa <handa@m17n.org>
438
439 * face-remap.el (text-scale-adjust): Call read-event with a proper
440 prompt.
441
442 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
443
444 * emacs-lisp/unsafep.el: Don't mark functions that display
445 messages as safe. Suggested by Johan Bockgård.
446
447 2010-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
448
449 * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
450 Turn comments into docstrings.
451
452 * minibuffer.el (completion--replace): Move point where it belongs
453 when there's a common suffix (bug#7215).
454
455 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
456
457 Merge read-color and facemenu-read-color (Bug#7242).
458
459 * faces.el (read-color): Use the completion code from
460 facemenu-read-color. Require match in completion. Doc fix.
461
462 * facemenu.el (facemenu-read-color): Alias for read-color.
463 (facemenu-set-foreground, facemenu-set-background): Use
464 read-color.
465
466 * frame.el (set-background-color, set-foreground-color)
467 (set-cursor-color, set-mouse-color, set-border-color): Use
468 read-color.
469
470 2010-10-24 Leo <sdl.web@gmail.com>
471
472 * eshell/em-unix.el (eshell-remove-entries): Use the TRASH
473 argument of delete-file and delete-directory (Bug#7011).
474
475 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
476
477 * emacs-lisp/package.el (package-menu-mode-map): Inherit from
478 button-buffer-map.
479
480 2010-10-24 Ralf Angeli <angeli@caeruleus.net>
481
482 * emacs-lisp/package.el (package--generate-package-list): Make the
483 *Packages* buffer read-only.
484
485 2010-10-24 Alan Mackenzie <acm@muc.de>
486
487 * progmodes/cc-fonts.el (c-font-lock-declarations): Cache the
488 result of `c-beginning-of-decl-1' between invocations of a lambda
489 function (Bug #7265).
490
491 2010-10-24 Daiki Ueno <ueno@unixuser.org>
492
493 * epg-config.el (epg-gpg-program): Try to use "gpg2" if "gpg"
494 executable is not available on the system (Bug#7268).
495
496 2010-10-24 Glenn Morris <rgm@gnu.org>
497
498 * select.el (selection-coding-system, next-selection-coding-system):
499 Sync doc with C versions.
500
501 * w32-vars.el (x-select-enable-clipboard):
502 * term/x-win.el (x-select-enable-clipboard): Move to common-win.
503 * term/common-win.el (x-select-enable-clipboard): Move here.
504
505 * term/tty-colors.el (tty-defined-color-alist): Remove duplicate
506 definition of C variable.
507
508 * frame.el (show-trailing-whitespace, auto-hscroll-mode)
509 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
510 Don't redefine things that are defined in C.
511 * cus-start.el: Also handle :risky, :safe, :set, and :tag.
512 (show-trailing-whitespace, auto-hscroll-mode)
513 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
514 Set up the appropriate custom properties.
515
516 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
517
518 Bind "C-c ]" to ...
519 * progmodes/f90.el (f90-mode-map): ... f90-insert-end.
520 * nxml/nxml-mode.el (nxml-mode-map): ... nxml-finish-element.
521 * textmodes/tex-mode.el (tex-mode-map): ... latex-close-block.
522 * textmodes/sgml-mode.el (sgml-mode-map): ... sgml-close-tag.
523
524 2010-10-23 Glenn Morris <rgm@gnu.org>
525
526 * textmodes/flyspell.el (flyspell-mode): If there was an error,
527 say what it was.
528
529 * frame.el (auto-hscroll-mode, cursor-in-non-selected-windows):
530 Sync docs with C version.
531
532 * term/ns-win.el (xw-defined-colors):
533 * term/x-win.el (xw-defined-colors): Make docs identical to w32-win.
534
535 * term/pc-win.el (x-select-enable-clipboard):
536 * term/x-win.el (x-select-enable-clipboard):
537 * w32-vars.el (x-select-enable-clipboard): Make doc-strings identical.
538
539 * comint.el (comint-password-prompt-regexp): Make it less vague.
540 Bump version.
541
542 * help-fns.el (doc-file-to-man, doc-file-to-info): New commands.
543
544 * help.el (finder-by-keyword): Remove unnecessary autoload.
545
546 2010-10-22 Glenn Morris <rgm@gnu.org>
547
548 * loadup.el: Unconditionally load float-sup.
549 * paren.el (show-paren-delay):
550 * emacs-lisp/float-sup.el:
551 * emulation/cua-base.el (cua-prefix-override-inhibit-delay):
552 * obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice)
553 (lazy-lock-stealth-verbose): Assume float support.
554 * ps-print.el: Assume float support on Emacs.
555 * emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
556 Remove non-float branch.
557
558 * emacs-lisp/autoload.el (batch-update-autoloads): Update for
559 src/Makefile no longer being pre-processed.
560
561 2010-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
562
563 * emacs-lisp/find-func.el (find-library): Use test-completion.
564
565 2010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
566
567 * newcomment.el (comment-dwim): Fix the intentation in the doc string.
568
569 010-10-21 Michael Albinus <michael.albinus@gmx.de>
570
571 * net/tramp-sh.el (tramp-do-file-attributes-with-stat): Do not use
572 space in stat format string.
573 (tramp-send-command): Unset $PS1 when using here documents, in
574 order not to get several prompts.
575 (tramp-get-inline-coding): Return `nil' in case of errors.
576
577 2010-10-21 Daiki Ueno <ueno@unixuser.org>
578
579 * hexl.el (hexl-mode, hexl-mode-exit):
580 Tweak revert-buffer-function to inhibit auto-mode-alist (Bug#7252).
581 (hexl-revert-buffer-function): New function.
582 (hexl-before-revert-hook, hexl-after-revert-hook): Abolish.
583
584 2010-10-19 Alan Mackenzie <acm@muc.de>
585
586 * progmodes/cc-langs.el (c-type-decl-prefix-key): C++ bit:
587 Move "\(const\|throw\|volatile\)\>" nearer the start of the regexp, so
588 that these keywords aren't wrongly matched as identifiers.
589
590 * progmodes/cc-mode.el (c-before-change, c-after-change): Move the
591 setting of c-new-BEG and c-new-END from c-before-change to
592 c-after-change. (Bug#7181)
593
594 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
595
596 * cus-face.el (custom-theme-set-faces): Revert 2010-10-18 change.
597 Don't mark as safe.
598
599 * custom.el (custom-theme-set-variables): Likewise.
600 (load-theme): Add custom-theme-set-faces and
601 custom-theme-set-variables to safe-functions while loading.
602 (custom-enabled-themes): Mark as risky.
603
604 2010-10-18 Julien Danjou <julien@danjou.info>
605
606 * bindings.el: Remove end dashes in default mode-line-format.
607
608 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
609
610 * bindings.el (global-map): Bind C-d to delete-char and deletechar
611 to delete-forward-char.
612
613 * simple.el (normal-erase-is-backspace-mode): Remap delete to
614 deletechar, and hence delete-forward-char.
615
616 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
617
618 * repeat.el (repeat): Use read-key (bug#6256).
619
620 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
621
622 * emacs-lisp/unsafep.el: Don't mark functions that display
623 messages as safe. Suggested by Johan Bockgård.
624
625 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
626
627 * minibuffer.el (completion--replace): Move point where it belongs
628 when there's a common suffix (bug#7215).
629
630 2010-10-19 Kenichi Handa <handa@m17n.org>
631
632 * international/characters.el: Add category '|' (word breakable)
633 to fullwidth characters.
634
635 2010-10-19 Michael Albinus <michael.albinus@gmx.de>
636
637 * net/tramp-sh.el (tramp-do-file-attributes-with-stat)
638 (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
639 order to make stat results a float. Patch by Andreas Schwab
640 <schwab@linux-m68k.org>.
641
642 2010-10-18 Julien Danjou <julien@danjou.info>
643
644 * avoid.el (mouse-avoidance-ignore-p): Ignore mouse when it is
645 hidden by `make-pointer-invisible'.
646
647 2010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
648
649 * files.el (locate-file-completion-table): Strip non-matching elements
650 before checking length of list (bug#7238).
651
652 2010-10-18 Chong Yidong <cyd@stupidchicken.com>
653
654 * custom.el (custom-theme-set-variables): Mark as a safe function.
655 (load-theme): Check forms using unsafep.
656
657 * cus-face.el (custom-theme-set-faces): Mark as a safe function.
658
659 2010-10-17 Agustín Martín <agustin.martin@hispalinux.es>
660
661 * textmodes/ispell.el (ispell-aspell-find-dictionary):
662 Fix aspell data file searching (bug#7230).
663
664 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
665
666 * cus-theme.el (custom-theme--migrate-settings): New var.
667 (customize-create-theme): Allow editing the `user' theme.
668 (custom-theme-add-variable, custom-theme-add-var-1)
669 (custom-theme-add-face, custom-theme-add-face-1): Add a checkbox
670 to the front of each variable or face widget.
671 (custom-theme-write): Save theme settings in the correct order.
672 Optionally, remove saved settings from user customizations.
673 (custom-theme-write-variables, custom-theme-write-faces):
674 Save only the checked widgets.
675 (customize-themes): Add a link for migrating custom settings.
676
677 * custom.el (custom-declare-theme, provide-theme):
678 Use custom-theme-name-valid-p.
679 (custom-theme-name-valid-p): Remove checks that are now
680 unnecessary since themes no longer obey load-path.
681
682 * cus-edit.el (custom-variable-value-create): For the simple
683 style, hide documentation string when hidden.
684
685 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
686
687 * cus-edit.el (custom-variable, custom-face): Combine the
688 :inhibit-magic and :display-style properties into a single
689 :custom-style property.
690 (custom-toggle-hide-variable, custom-toggle-hide-face):
691 New functions. If hiding an edited value, save it to :shown-value.
692 (custom-variable-value-create, custom-face-value-create): Use them.
693 (custom-magic-reset): Allow magic property to be unset.
694
695 * custom.el: Custom themes no longer use load-path.
696 (custom-theme-load-path): New option. Change built-in theme
697 directory to etc/.
698 (custom-enabled-themes): Add custom-theme-load-path dependency.
699 (custom-theme--load-path): New function.
700 (load-theme, custom-available-themes): Use it.
701
702 * cus-theme.el (describe-theme-1): Use custom-theme--load-path.
703 (customize-themes): Link to custom-theme-load-path variable.
704 (custom-theme-add-var-1, custom-theme-add-face-1): Use the
705 :custom-style property.
706
707 * themes/*.el: Moved to etc/.
708
709 2010-10-16 Ralf Angeli <angeli@caeruleus.net>
710
711 * textmodes/reftex-cite.el
712 (reftex-extract-bib-entries-from-thebibliography): Do not move
713 point when searching for \bibitem entries. Match entries with
714 spaces or tabs in front of arguments.
715
716 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
717
718 * cus-theme.el (customize-create-theme): Delete overlays after
719 erasing. If given a THEME arg, display only the faces of that arg
720 instead of custom-theme--listed-faces.
721 (custom-theme-variable-menu, custom-theme-variable-action)
722 (custom-variable-reset-theme, custom-theme-delete-variable): Delete.
723 (custom-theme-add-variable, custom-theme-add-face): Apply value
724 from the theme settings, instead of the current value.
725 (custom-theme-add-var-1, custom-theme-add-face-1): New functions.
726 (custom-theme-visit-theme): Allow calling outside theme buffers.
727 (custom-theme-merge-theme): Don't enable the theme when merging.
728 (custom-theme-write-variables, custom-theme-write-faces): Use the
729 :shown-value properties to save buffer values, not global ones.
730 (customize-themes): Display a warning about user customizations.
731
732 * cus-edit.el (custom-variable-value-create)
733 (custom-face-value-create): Obey new special properties
734 :shown-value and :inhibit-magic.
735
736 2010-10-15 Michael Albinus <michael.albinus@gmx.de>
737
738 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
739 Suppress expansion of tabs to spaces. Reported by Dale Sedivec
740 <dale@codefu.org>.
741
742 2010-10-14 Kenichi Handa <handa@m17n.org>
743
744 * mail/rmail.el (rmail-show-message-1): Catch an error of
745 base64-decode-region and just show an error message (bug#7165).
746
747 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used anymore.
748 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
749 a font-spec (bug#7197).
750
751 2010-10-14 Glenn Morris <rgm@gnu.org>
752
753 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
754
755 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
756
757 * international/mule.el (define-coding-system):
758 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
759 * composite.el (compose-region): Fix typo in docstring.
760
761 2010-10-14 Chong Yidong <cyd@stupidchicken.com>
762
763 * cus-face.el (custom-theme-set-faces): Call custom-push-theme
764 only after checking the theme-face property.
765
766 * faces.el (face-spec-reset-face): Reset all attributes in one
767 single call to set-face-attribute.
768 (face-spec-match-p): Make it a defsubst.
769 (frame-set-background-mode): New arg KEEP-FACE-SPECS.
770 (x-create-frame-with-faces, tty-create-frame-with-faces)
771 (tty-set-up-initial-frame-faces): Don't recompute face specs in
772 frame-set-background-mode, since they are recomputed immediately
773 afterwards in face-set-after-frame-default.
774 (face-set-after-frame-default): Minor optimization.
775 (cursor): Provide non-trivial defface spec.
776
777 * custom.el (custom-theme-recalc-face): Simplify.
778
779 2010-10-14 Jay Belanger <jay.p.belanger@gmail.com>
780
781 * calc/calc-alg.el (math-var): Rename from `var'.
782 (math-is-polynomial, math-is-poly-rec): Replace `var'
783 with `math-var'.
784
785 * calc/calcalg2.el (math-var): Rename from `var'.
786 (calcFunc-table, math-scan-for-limits): Replace `var'
787 with `math-var'.
788
789 2010-10-13 Glenn Morris <rgm@gnu.org>
790
791 * subr.el (last): Deal with dotted lists (reported in bug#7174).
792
793 2010-10-13 Stephen Berman <stephen.berman@gmx.net>
794
795 * subr.el (last): Use `safe-length' instead of `length' (bug#7206).
796
797 2010-10-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
798
799 * net/tls.el (tls-program): Remove spurious %s from openssl.
800 (tls-starttls-switches): Remove starttls hack.
801 (open-tls-stream): Ditto.
802 (tls-find-starttls-argument): Ditto.
803
804 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
805
806 * image.el (image-library-alist): Declare as obsolete alias.
807 (image-type-available-p): Use `dynamic-library-alist'.
808
809 * term/w32-win.el (dynamic-library-alist):
810 Use instead of `image-library-alist'.
811
812 2010-10-13 IRIE Shinsuke <irieshinsuke@yahoo.co.jp> (tiny change)
813
814 * subr.el (last): Make it faster. (Bug#7174)
815
816 2010-10-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
817
818 * Makefile.in (compile-clean): Use `` instead of $(). (Bug#7178)
819
820 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
821
822 * cus-theme.el (custom-theme--listed-faces): Add cursor face.
823 (describe-theme-1): Extract doc from unloaded themes.
824
825 * custom.el (custom-theme-name-valid-p): Don't list color-themes.
826
827 * themes/tango-theme.el:
828 * themes/tango-dark-theme.el:
829 * themes/wheatgrass-theme.el: New files.
830
831 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
832
833 * cus-theme.el (describe-theme, customize-themes)
834 (custom-theme-save): New commands.
835 (custom-new-theme-mode-map): Bind C-x C-s.
836 (custom-new-theme-mode): Use custom--initialize-widget-variables.
837 (customize-create-theme): New optional arg THEME.
838 (custom-theme-revert): Use it.
839 (custom-theme-visit-theme): Remove dead code.
840 (custom-theme-merge-theme): Use custom-available-themes.
841 (custom-theme-write): Make interactive.
842 (custom-theme-write): Use custom-theme-name-valid-p.
843 (describe-theme-1, custom-theme-choose-revert)
844 (custom-theme-checkbox-toggle, custom-theme-selections-toggle):
845 New funs.
846 (custom-theme-allow-multiple-selections): New option.
847 (custom-theme-choose-mode): New major mode.
848
849 * custom.el (custom-theme-set-variables): Remove dead code.
850 Obey custom--inhibit-theme-enable.
851 (custom--inhibit-theme-enable): New var.
852 (provide-theme): Obey it.
853 (load-theme): Replace load with manual read/eval, in order to
854 check for correctness. Use custom-theme-name-valid-p.
855 (custom-theme-name-valid-p): New function.
856 (custom-available-themes): Use it.
857
858 * cus-edit.el (custom--initialize-widget-variables): New function.
859 (Custom-mode): Use it.
860
861 * cus-face.el (custom-theme-set-faces): Remove dead code.
862 Obey custom--inhibit-theme-enable.
863
864 * help-mode.el (help-theme-def, help-theme-edit): New buttons.
865
866 2010-10-12 Juanma Barranquero <lekktu@gmail.com>
867
868 * net/telnet.el (telnet-mode-map): Fix previous change (bug#7193).
869
870 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
871
872 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
873 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
874 (mac-right-option-modifier): New alias for ns-right-option-modifier.
875
876 * cus-start.el (all): ns-right-alternate-modifier is new.
877
878 2010-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
879
880 * emacs-lisp/lisp.el (lisp-completion-at-point):
881 Use emacs-lisp-mode-syntax-table for the whole function.
882
883 2010-10-12 David Koppelman <koppel@ece.lsu.edu>
884
885 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
886 instead of font-lock-mode before adding keywords.
887 Remove hi-lock-mode off code. Remove inhibit hack.
888 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
889 non-nil; removed hook inhibit hack.
890
891 2010-10-12 Glenn Morris <rgm@gnu.org>
892
893 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
894 (load-path-shadows-find): ... to this.
895 (list-load-path-shadows): Update for above change.
896
897 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
898
899 2010-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
900
901 * mail/hashcash.el, net/imap.el, pgg-parse.el, pgg.el:
902 Fix comment for declare-function.
903
904 2010-10-11 Chong Yidong <cyd@stupidchicken.com>
905
906 * custom.el (custom-fix-face-spec): New function; code moved from
907 custom-face-edit-fix-value.
908 (custom-push-theme): Use it when checking if a face has been
909 changed outside customize.
910 (custom-available-themes): New function.
911 (load-theme): Use it.
912
913 * cus-edit.el (custom-face-edit-fix-value): Use custom-fix-face-spec.
914
915 * custom.el (custom-push-theme): Cleanup (use cond).
916 (disable-theme): Recompute the saved-face property.
917 (custom-theme-recalc-face): Follow face alias before setting prop.
918
919 * image.el (image-checkbox-checked, image-checkbox-unchecked):
920 New variables, containing checkbox images.
921
922 * startup.el (fancy-startup-tail):
923 * wid-edit.el (checkbox): Use them.
924
925 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
926
927 * shell.el (shell-mode-map):
928 * progmodes/modula2.el (m2-mode-map):
929 * progmodes/inf-lisp.el (inferior-lisp-mode-map):
930 * play/mpuz.el (mpuz-mode-map):
931 * play/landmark.el (lm-mode-map):
932 * play/decipher.el (decipher-mode-map):
933 * play/5x5.el (5x5-mode-map):
934 * net/telnet.el (telnet-mode-map):
935 * net/quickurl.el (quickurl-list-mode-map):
936 * net/mairix.el (mairix-searches-mode-map):
937 * net/eudc-hotlist.el (eudc-hotlist-mode-map):
938 * net/dig.el (dig-mode-map):
939 * mail/mspools.el (mspools-mode-map):
940 * hexl.el (hexl-mode-map):
941 * emulation/ws-mode.el (wordstar-C-k-map, wordstar-mode-map)
942 (wordstar-C-o-map, wordstar-C-q-map):
943 * emacs-lisp/edebug.el (edebug-eval-mode-map):
944 * emacs-lisp/chart.el (chart-map):
945 * edmacro.el (edmacro-mode-map):
946 * erc/erc-list.el (erc-list-menu-mode-map):
947 * array.el (array-mode-map): Declare and define in one step.
948
949 * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
950
951 2010-10-10 Daiki Ueno <ueno@unixuser.org>
952
953 * epa.el (epa-passphrase-callback-function): Display filename
954 passed as the 3rd arg.
955 * epa-file.el (epa-file-passphrase-callback-function):
956 Pass filename to epa-passphrase-callback-function.
957
958 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
959
960 * cus-edit.el (custom-face-widget-to-spec)
961 (custom-face-get-current-spec, custom-face-state): New functions.
962 (custom-face-set, custom-face-mark-to-save)
963 (custom-face-value-create, custom-face-state-set): Use them.
964
965 * cus-theme.el (custom-theme--listed-faces): New var.
966 (customize-create-theme): Use *Custom Theme* as the buffer name.
967 Set revert-buffer-function. Optional arg BUFFER. Insert all
968 faces listed in custom-theme--listed-faces.
969 (custom-theme-revert): New function.
970 (custom-theme-add-variable, custom-theme-add-face): Insert at the
971 bottom of the list.
972 (custom-theme-write): Prompt for theme name if empty.
973 (custom-theme-write-variables): Use dolist.
974 (custom-theme-write-faces): Handle hidden (collapsed) widgets.
975
976 2010-10-09 Alan Mackenzie <acm@muc.de>
977
978 Enhance fontification of declarators to take account of the
979 presence/absence of "typedef".
980
981 * cc-engine.el (c-forward-type): New &optional param
982 "brace-block-too".
983 (c-forward-decl-or-cast-1): cdr of return value now indicates the
984 presence of either or both of a "struct"-like keyword and "typedef".
985
986 * cc-fonts.el (c-complex-decl-matchers): Remove the heuristic
987 fontification of declarators which follow a "}".
988 (c-font-lock-declarations): Fontify declarators according to the
989 presence/absence of "typedef".
990
991 * cc-langs.el (c-typedef-kwds c-typedef-key): New lang variable
992 for "typedef".
993 (c-typedef-decl-key): New lang variable built from
994 c-typedef-decl-kwds.
995
996 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
997
998 * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
999 since that's too annoying. Move the filter groups commands to
1000 TAB/backtab.
1001
1002 * epa.el (epa-passphrase-callback-function): Say what we're
1003 querying the password for.
1004
1005 * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
1006 behaviour, don't bury the ibuffer buffer when visiting other buffers.
1007
1008 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
1009
1010 * cus-edit.el (custom-commands, custom-buffer-create-internal)
1011 (custom-magic-value-create): Pad button tags with spaces.
1012 (custom-face-edit): New variable.
1013 (custom-face-value-create): Determine whether to use the usual
1014 face editor here, instead of using custom-face-selected.
1015 Pass face defaults to custom-face-edit widget.
1016 (custom-face-selected, custom-display-unselected): Delete widgets.
1017 (custom-display-unselected-match): Function removed.
1018 (custom-face-set, custom-face-mark-to-save):
1019 Accept custom-face-edit widgets as the direct widget child.
1020
1021 * wid-edit.el (widget--completing-widget): New var.
1022 (widget-default-complete): Bind it when doing completion.
1023 (widget-string-complete, widget-file-complete): Use it.
1024
1025 2010-10-09 Glenn Morris <rgm@gnu.org>
1026
1027 * calendar/cal-hebrew.el (holiday-hebrew-rosh-hashanah)
1028 (holiday-hebrew-passover, holiday-hebrew-tisha-b-av)
1029 (holiday-hebrew-misc): Small simplifications.
1030
1031 * emacs-lisp/authors.el (authors-valid-file-names): Add b2m.c.
1032
1033 * net/browse-url.el: Don't require thingatpt, term, dired,
1034 executable, or w3-auto when compiling.
1035 (dired-get-filename, term-char-mode, term-send-down, term-send-string):
1036 Declare.
1037 (browse-url-text-emacs): Require term.
1038
1039 2010-10-08 Andreas Schwab <schwab@linux-m68k.org>
1040
1041 * net/browse-url.el (browse-url-xdg-open): Remove use of /bin/sh.
1042
1043 2010-10-08 Glenn Morris <rgm@gnu.org>
1044
1045 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
1046
1047 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
1048 (shadows-compare-text-p): Make it an obsolete alias for...
1049 (load-path-shadows-compare-text): ... new name.
1050 (find-emacs-lisp-shadows): Update for above name change.
1051 (load-path-shadows-same-file-or-nonexistent): New name for the old
1052 shadow-same-file-or-nonexistent.
1053
1054 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
1055
1056 * minibuffer.el (completion--some, completion--do-completion)
1057 (minibuffer-complete-and-exit, minibuffer-completion-help)
1058 (completion-basic-try-completion)
1059 (completion-basic-all-completions)
1060 (completion-pcm--find-all-completions): Use lexical-let to
1061 avoid some false matches in variable completion (Bug#7056)
1062
1063 2010-10-08 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
1064
1065 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
1066
1067 2010-10-08 Leo <sdl.web@gmail.com>
1068
1069 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
1070 return non-nil if the file exists (Bug#7090).
1071
1072 2010-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1073
1074 * minibuffer.el (completion--replace):
1075 Better preserve markers (bug#7138).
1076
1077 2010-10-08 Juanma Barranquero <lekktu@gmail.com>
1078
1079 * server.el (server-process-filter): Doc fix.
1080
1081 2010-10-08 Drew Adams <drew.adams@oracle.com>
1082
1083 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
1084
1085 2010-10-08 Andreas Schwab <schwab@linux-m68k.org>
1086
1087 * Makefile.in (ELCFILES): Update.
1088
1089 2010-10-08 Glenn Morris <rgm@gnu.org>
1090
1091 * vc/ediff-wind.el (ediff-setup-control-frame):
1092 * vc/ediff-ptch.el (ediff-default-backup-extension):
1093 * vc/ediff-diff.el (ediff-shell, ediff-diff-options)
1094 (ediff-exec-process): Remove system-types emx, windows-95.
1095
1096 * net/browse-url.el (browse-url-xdg-open): Shell-quote url. (Bug#7166)
1097
1098 2010-10-07 Chong Yidong <cyd@stupidchicken.com>
1099
1100 * cus-edit.el (custom-variable, custom-face): Doc fix.
1101 (custom-face-edit): Add value-create attribute.
1102 (custom-face-edit-value-create)
1103 (custom-face-edit-value-visibility-action): New functions.
1104 Hide unused face attributes by default, and add a visibility toggle.
1105 (custom-face-edit-deactivate): Show empty values with shadow face.
1106 (custom-face-selected): Only use this for face specs with default
1107 attributes.
1108 (custom-face-value-create): Cleanup.
1109
1110 * wid-edit.el (widget-checklist-value-create): Use dolist.
1111 (widget-checklist-match-find): Make second arg optional.
1112
1113 2010-10-07 Glenn Morris <rgm@gnu.org>
1114
1115 * hilit-chg.el (hilit-chg-get-diff-info, hilit-chg-get-diff-list-hk):
1116 Prefix things.
1117
1118 * emacs-lisp/shadow.el (shadow-font-lock-keywords)
1119 (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to
1120 load-path-shadows-mode, update references.
1121 (load-path-shadows-font-lock-keywords, load-path-shadows-find-file):
1122 Rename variable and button.
1123 (list-load-path-shadows): Update button caller.
1124
1125 2010-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1126
1127 * emacs-lisp/smie.el (smie-bnf-classify): New function.
1128 (smie-bnf-precedence-table): Use it to remember the closers/openers.
1129 (smie-merge-prec2s): Handle those new entries.
1130 (smie-prec2-levels): Only set precedence to nil for actual
1131 openers/closers.
1132 * progmodes/octave-mod.el (octave-smie-op-levels): Remove dummy entry
1133 that is now unnecessary.
1134
1135 2010-10-07 Miles Bader <miles@gnu.org>
1136
1137 * emacs-lisp/regexp-opt.el (regexp-opt): Add `symbols' mode.
1138
1139 2010-10-07 Glenn Morris <rgm@gnu.org>
1140
1141 * mail/rmail.el (mail-sendmail-delimit-header, mail-header-end)
1142 (mail-position-on-field): Remove declarations.
1143 (mail-position-on-field): Autoload it.
1144 (rmail-retry-failure): Replace use of mail-sendmail-delimit-header
1145 and mail-header-end. Don't require sendmail.
1146
1147 * emacs-lisp/shadow.el (shadow-font-lock-keywords): New variable.
1148 (shadow-mode): New mode.
1149 (shadow-find-file): New button.
1150 (list-load-path-shadows): Use shadow-mode and buttons.
1151
1152 * iimage.el (iimage-version): Remove.
1153 (iimage-mode-image-search-path, iimage-mode-image-regex-alist):
1154 Turn into defcustoms.
1155 (iimage-mode-map): Give it a doc string.
1156
1157 * calendar/appt.el (appt-activate): Give a warning rather than an error
1158 if there is no diary-file.
1159
1160 2010-10-06 Michael Albinus <michael.albinus@gmx.de>
1161
1162 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
1163 Use `tramp-handle-find-backup-file-name'.
1164
1165 2010-10-06 Glenn Morris <rgm@gnu.org>
1166
1167 * font-core.el (font-lock-defaults-alist): Remove variable.
1168 (font-lock-mode): Doc fix.
1169 (font-lock-default-function): Do not consult font-lock-defaults-alist.
1170 * font-lock.el (font-lock-refresh-defaults): Doc fix.
1171 (font-lock-set-defaults): Doc fix.
1172 Do not consult font-lock-defaults-alist.
1173
1174 * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
1175
1176 * emacs-lisp/cl.el: No longer provide cl-19.
1177
1178 2010-10-05 Michael Albinus <michael.albinus@gmx.de>
1179
1180 * net/tramp.el (tramp-handle-directory-files-and-attributes)
1181 (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p):
1182 New defuns, taken from tramp-smb.el.
1183 (tramp-coding-system-change-eol-conversion)
1184 (tramp-set-process-query-on-exit-flag): Remove.
1185
1186 * net/tramp-compat.el (top): Do not check for byte-compiler objects.
1187 (tramp-compat-coding-system-change-eol-conversion)
1188 (tramp-compat-set-process-query-on-exit-flag): New defuns, taken
1189 from tramp.el.
1190
1191 * net/tramp-gvfs.el:
1192 * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag'
1193 by `tramp-compat-set-process-query-on-exit-flag'.
1194
1195 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
1196 Use `tramp-handle-directory-files-and-attributes',
1197 `tramp-handle-file-exists-p' and
1198 `tramp-handle-file-newer-than-file-p'.
1199 (tramp-imap-handle-file-exists-p)
1200 (tramp-imap-handle-file-executable-p)
1201 (tramp-imap-handle-file-readable-p)
1202 (tramp-imap-handle-directory-files-and-attributes)
1203 (tramp-imap-handle-file-newer-than-file-p): Remove.
1204
1205 * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag'
1206 by `tramp-compat-set-process-query-on-exit-flag' and
1207 `tramp-coding-system-change-eol-conversion' by
1208 `tramp-compat-coding-system-change-eol-conversion'.
1209
1210 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1211 Use `tramp-handle-directory-files-and-attributes',
1212 `tramp-handle-file-exists-p' and
1213 `tramp-handle-file-newer-than-file-p'.
1214 (tramp-smb-handle-directory-files-and-attributes)
1215 (tramp-smb-handle-file-exists-p)
1216 (tramp-smb-handle-file-newer-than-file-p): Remove.
1217 (tramp-smb-maybe-open-connection):
1218 Replace `tramp-set-process-query-on-exit-flag' by
1219 `tramp-compat-set-process-query-on-exit-flag'.
1220
1221 2010-10-05 Glenn Morris <rgm@gnu.org>
1222
1223 * obsolete/rnews.el, obsolete/rnewspost.el: Remove files.
1224
1225 2010-10-04 Michael Albinus <michael.albinus@gmx.de>
1226
1227 Continue reorganization of load dependencies. (Bug#7156)
1228
1229 * net/tramp.el (tramp-handle-file-local-copy-hook)
1230 (tramp-delete-temp-file-function): Move down.
1231 (tramp-exists-file-name-handler): Move up.
1232 (tramp-register-file-name-handlers): Simplify autoload.
1233 (tramp-handle-write-region-hook, tramp-handle-directory-file-name)
1234 (tramp-handle-directory-files, tramp-handle-dired-uncache)
1235 (tramp-handle-file-modes, tramp-handle-file-name-as-directory)
1236 (tramp-handle-file-name-completion)
1237 (tramp-handle-file-name-directory)
1238 (tramp-handle-file-name-nondirectory, tramp-handle-file-regular-p)
1239 (tramp-handle-file-remote-p, tramp-handle-file-symlink-p)
1240 (tramp-handle-find-backup-file-name)
1241 (tramp-handle-insert-file-contents, tramp-handle-load)
1242 (tramp-handle-substitute-in-file-name)
1243 (tramp-handle-unhandled-file-name-directory)
1244 (tramp-mode-string-to-int, tramp-local-host-p)
1245 (tramp-make-tramp-temp-file): Move from tramp-sh.el.
1246
1247 * net/tramp-gvfs.el (top):
1248 * net/tramp-smb.el (top): Do not require 'tramp-sh.
1249
1250 * net/tramp-sh.el (all): Move several objects to tramp.el, see
1251 there. Rename `tramp-handle-*' to `tramp-sh-handle-*'.
1252
1253 2010-10-04 Glenn Morris <rgm@gnu.org>
1254
1255 * calendar/appt.el (appt-add): Ensure reminders are enabled.
1256 (appt-activate): Give status messages.
1257
1258 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
1259
1260 * net/gnutls.el: Improve docs. Remove starttls and ssl emulation.
1261 Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
1262 `gnutls-negotiate' (formerly `starttls-negotiate').
1263 Remove trivial wrapper `starttls-open-stream'.
1264
1265 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
1266
1267 Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
1268 log-outgoing commands.
1269 * vc/vc.el (vc-log-internal-common): Add a new argument and use it
1270 to create a buffer local revert-buffer-function variable.
1271 (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
1272 revert-buffer-function lambda.
1273
1274 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
1275
1276 * net/gnutls.el (starttls-negotiate): Use the plist interface to
1277 `gnutls-boot'. Make TYPE the only required parameter.
1278 Allow TRUSTFILES and KEYFILES to be lists.
1279 (open-ssl-stream): Use it.
1280
1281 2010-10-03 Glenn Morris <rgm@gnu.org>
1282
1283 * subr.el (directory-sep-char): Remove obsolete variable.
1284 * net/tramp-compat.el: Don't mess about with the byte-compiler unless
1285 it is "necessary".
1286
1287 * vc/vc-hooks.el (vc-header-alist): Remove obsolete variable.
1288 * vc/vc.el (vc-static-header-alist): Doc fix.
1289 * vc/vc-cvs.el (vc-cvs-header):
1290 * vc/vc-rcs.el (vc-rcs-header):
1291 * vc/vc-sccs.el (vc-sccs-header):
1292 * vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist.
1293 * obsolete/vc-mcvs.el (vc-mcvs-header):
1294 * progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist
1295 on XEmacs.
1296
1297 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
1298
1299 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
1300 Remove obsolete use of binary-overwrite-mode (Bug#7001).
1301
1302 2010-10-03 Glenn Morris <rgm@gnu.org>
1303
1304 * obsolete/x-menu.el: Remove file, obsolete since 21.1
1305
1306 * textmodes/rst.el (rst-font-lock-keywords-function):
1307 Drop Emacs 20 code.
1308
1309 * textmodes/artist.el (artist-replace-char): Drop Emacs 20 code.
1310
1311 * printing.el: Drop Emacs 20 code.
1312
1313 * calendar/appt.el (appt-delete): Don't autoload it (you can't use it
1314 without having used appt.el already).
1315
1316 * subr.el (make-local-hook): Remove function obsolete since 21.1.
1317 * progmodes/cc-mode.el (make-local-hook): Don't do cc-bytecomp stuff.
1318 (c-basic-common-init, c-font-lock-init): Only call make-local-hook on
1319 XEmacs.
1320 * progmodes/cc-styles.el (make-local-hook): Don't do cc-bytecomp stuff.
1321 (c-make-styles-buffer-local): Only call make-local-hook on XEmacs.
1322
1323 * ps-def.el (leading-code-private-22, charset-bytes, charset-id)
1324 (charset-width, find-charset-region, chars-in-region, forward-point)
1325 (encode-coding-string, coding-system-p, ccl-execute-on-string)
1326 (define-ccl-program, multibyte-string-p, string-make-multibyte):
1327 Remove compatibility cruft (none of these are used by ps*.el).
1328
1329 2010-10-03 Kevin Rodgers <kevin.d.rodgers@gmail.com>
1330
1331 * subr.el (booleanp): Return t instead of a list (Bug#7086).
1332
1333 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
1334
1335 * server.el (server-process-filter, server-return-error):
1336 Give emacsclient time to shut down after receiving an error string.
1337
1338 2010-10-02 Michael Albinus <michael.albinus@gmx.de>
1339
1340 * files.el (remote-file-name-inhibit-cache): New defcustom.
1341
1342 * time.el (display-time-file-nonempty-p):
1343 Use `remote-file-name-inhibit-cache'.
1344
1345 * net/tramp.el (tramp-completion-reread-directory-timeout):
1346 Fix docstring.
1347
1348 * net/tramp-cache.el (tramp-cache-inhibit-cache): Remove.
1349 (tramp-get-file-property): Replace `tramp-cache-inhibit-cache' by
1350 `remote-file-name-inhibit-cache'. Check also for an integer
1351 value. Add/increase counter when `tramp-verbose' >= 10.
1352 (tramp-set-file-property): Add/increase counter when
1353 `tramp-verbose' >= 10.
1354
1355 * net/tramp-cmds.el (tramp-cleanup-all-connections)
1356 (tramp-cleanup-all-buffers): Set tramp-autoload cookie.
1357 (tramp-bug): Set tramp-autoload cookie. Report all interned
1358 tramp-* variables. Report also `remote-file-name-inhibit-cache'.
1359 (tramp-reporter-dump-variable): Fix docstring. Mask non-7bit
1360 characters only in strings.
1361
1362 * net/tramp-compat.el (remote-file-name-inhibit-cache): Define due
1363 to backward compatibility.
1364
1365 * net/tramp-sh.el (tramp-handle-verify-visited-file-modtime)
1366 (tramp-handle-file-name-all-completions)
1367 (tramp-handle-vc-registered): Use `remote-file-name-inhibit-cache'.
1368 (tramp-open-connection-setup-interactive-shell):
1369 Call `tramp-cleanup-connection' directly.
1370
1371 2010-10-02 Glenn Morris <rgm@gnu.org>
1372
1373 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
1374
1375 * subr.el (char-bytes): Remove obsolete function.
1376
1377 * isearch.el (isearch-return-char): Remove obsolete function.
1378
1379 * mouse.el: No longer provide mldrag.
1380 (mldrag-drag-mode-line, mldrag-drag-vertical-line):
1381 Remove obsolete aliases.
1382
1383 * comint.el (comint-kill-output): Remove obsolete alias.
1384
1385 * composite.el (decompose-composite-char): Remove obsolete function.
1386 * ps-def.el (decompose-composite-char): Remove unused function.
1387
1388 * iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
1389
1390 * outline.el (outline-visible): Remove obsolete function.
1391
1392 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
1393 * faces.el (internal-find-face, internal-get-face)
1394 (frame-update-faces, frame-update-face-colors)
1395 (x-frob-font-weight, x-frob-font-slant)
1396 (internal-frob-font-weight, internal-frob-font-slant)
1397 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
1398 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
1399 (x-make-font-bold-italic): Remove functions and aliases, obsolete
1400 since Emacs 21.1.
1401 * emulation/viper-util.el (viper-get-face):
1402 * obsolete/lucid.el (find-face, get-face): Use facep.
1403 * vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
1404 Remove unused functions.
1405 * vc/ediff-util.el (ediff-submit-report): Doc fix.
1406
1407 * emacs-lisp/bytecomp.el (byte-compile-file): Use kill-emacs-hook to
1408 delete tempfile if interrupted during compilation.
1409
1410 2010-10-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
1411
1412 * net/tls.el (tls-starttls-switches): Give up on using starttls with
1413 gnutls-cli.
1414 (tls-program): Add --insecure to be consistent with the defaults from
1415 openssl s_client. Now all three commands are insecure.
1416
1417 2010-10-01 Eli Zaretskii <eliz@gnu.org>
1418
1419 * makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
1420 (TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
1421 (TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
1422
1423 2010-10-01 Glenn Morris <rgm@gnu.org>
1424
1425 * obsolete/sc.el: Remove file.
1426
1427 * files.el (temporary-file-directory): On darwin, also try
1428 DARWIN_USER_TEMP_DIR (see discussion in bug#7135).
1429
1430 2010-10-01 Juanma Barranquero <lekktu@gmail.com>
1431
1432 * server.el (server-start): Revert part of 2010-09-30T02:53:26Z!lekktu@gmail.com.
1433 Let's not break compatibility gratuitously, shall we?
1434
1435 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
1436
1437 * net/tls.el (tls-starttls-switches): New variable.
1438 (tls-find-starttls-argument): Use it.
1439 (open-tls-stream): Ditto.
1440
1441 * net/netrc.el (netrc-credentials): Return the value of the "default"
1442 entry.
1443 (netrc-machine): Ditto.
1444
1445 2010-09-30 Eli Zaretskii <eliz@gnu.org>
1446
1447 * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
1448
1449 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
1450
1451 * server.el (server-start): Don't write pid to the authentication file.
1452 (server-create-tty-frame): Don't send pid.
1453 (server-process-filter): Send pid at the start of every connection.
1454
1455 2010-09-30 Glenn Morris <rgm@gnu.org>
1456
1457 * calendar/diary-lib.el (view-diary-entries, list-diary-entries)
1458 (show-all-diary-entries): Remove obsolete function aliases.
1459
1460 * calendar/appt.el (appt-issue-message, appt-visible, appt-msg-window):
1461 Remove options, obsolete since 22.1.
1462 (appt-display-format, appt-display-message): Remove
1463 backwards-compatibility code.
1464 (appt-check): No longer check appt-issue-message.
1465 (appt-make-list): No longer autoload it. Doc fix. No longer
1466 activate the package.
1467
1468 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
1469
1470 * net/gnutls.el (starttls-negotiate): Loop a lot longer.
1471 (starttls-negotiate): Just call boot, and let the handshake be
1472 triggered from the read loop.
1473
1474 2010-09-29 Glenn Morris <rgm@gnu.org>
1475
1476 * calendar/diary-lib.el (diary-list-entries): Use temp buffers when
1477 not displaying the diary.
1478 (diary-add-to-list): If no buffer-file-name, fall back to diary-file.
1479 * calendar/appt.el (appt-check): No longer need to kill diary.
1480
1481 * calendar/diary-lib.el (diary-list-entries): Move the
1482 "Preparing..." message entirely here.
1483 (diary-simple-display, diary-fancy-display): Move "Preparing..."
1484 messages to diary-list-entries.
1485 (diary-include-other-diary-files): Use LIST-ONLY rather than setting
1486 diary-display-function.
1487
1488 * calendar/diary-lib.el (diary-include-other-diary-files):
1489 Trap some recursive includes.
1490
1491 * calendar/appt.el (appt-activate): Check diary file.
1492
1493 2010-09-29 Katsumi Yamaoka <yamaoka@jpl.org>
1494
1495 * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
1496 construction.
1497
1498 * calendar/time-date.el: No need to require cl for Emacs 21.
1499
1500 2010-09-28 Glenn Morris <rgm@gnu.org>
1501
1502 * calendar/appt.el (appt-check): Minor simplification.
1503
1504 2010-09-28 Katsumi Yamaoka <yamaoka@jpl.org>
1505
1506 * mail/sendmail.el (mail-citation-prefix-regexp): Remove "}" from
1507 citation prefix.
1508
1509 2010-09-27 Andreas Schwab <schwab@linux-m68k.org>
1510
1511 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
1512 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
1513
1514 2010-09-27 Kenichi Handa <handa@m17n.org>
1515
1516 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
1517 "ustar" format.
1518
1519 2010-09-27 Kenichi Handa <handa@m17n.org>
1520
1521 * international/mule.el (define-coding-system): Docstring fixed.
1522
1523 * international/mule-diag.el (describe-character-set): Use princ
1524 with proper print-length and print-level instead of insert.
1525
1526 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
1527
1528 * window.el (walk-windows): Doc fix (bug#7105).
1529
1530 2010-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
1531
1532 * emacs-lisp/float-sup.el (e): Remove.
1533
1534 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
1535
1536 * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom
1537 variable.
1538 (starttls-negotiate): Use it.
1539
1540 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
1541
1542 * net/gnutls.el (starttls-negotiate): Stop looping when we get a t
1543 back.
1544
1545 2010-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
1546
1547 * emacs-lisp/pcase.el (pcase-let*, pcase-let): plet -> pcase-let.
1548
1549 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
1550
1551 * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function.
1552
1553 * net/netrc.el (netrc-store-data): New function.
1554
1555 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
1556
1557 * net/gnutls.el: GnuTLS glue code to set up a connection.
1558
1559 2010-09-25 Julien Danjou <julien@danjou.info>
1560
1561 * notifications.el: Call dbus-register-signal only if it is bound.
1562
1563 2010-09-25 Glenn Morris <rgm@gnu.org>
1564
1565 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
1566 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
1567 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
1568 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
1569 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
1570 * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
1571 * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
1572 * eshell/esh-util.el, eshell/esh-var.el:
1573 Remove leading `*' from docs of faces and defcustoms.
1574
1575 2010-09-25 Ulrich Mueller <ulm@gentoo.org>
1576
1577 * eshell/em-ls.el (eshell-ls-archive-regexp):
1578 * eshell/esh-util.el (eshell-tar-regexp):
1579 * ibuffer.el (ibuffer-compressed-file-name-regexp):
1580 * info.el (Info-suffix-list):
1581 * international/mule.el (auto-coding-alist):
1582 * woman.el (woman-file-regexp, woman-file-compression-regexp):
1583 * progmodes/etags.el (tags-compression-info-list):
1584 Support xz compression.
1585
1586 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
1587
1588 * files.el (get-free-disk-space): Don't assume the "df" output
1589 columns line up (Bug#6995).
1590
1591 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
1592
1593 * finder.el (finder-unknown-keywords):
1594 * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
1595 * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
1596
1597 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
1598
1599 * server.el (server-start): Revert part of 2010-08-08 change. Using
1600 address 127.0.0.1 for local host is now done in Fmake_network_process.
1601
1602 2010-09-24 Glenn Morris <rgm@gnu.org>
1603
1604 * image-mode.el, progmodes/compile.el, progmodes/gud.el:
1605 * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
1606 * textmodes/css-mode.el, textmodes/dns-mode.el:
1607 Move autoloaded auto-mode-alist entries to files.el.
1608 * files.el (auto-mode-alist): Move entries here.
1609
1610 2010-09-23 Glenn Morris <rgm@gnu.org>
1611
1612 * isearch.el (isearch-lazy-highlight-cleanup)
1613 (isearch-lazy-highlight-initial-delay)
1614 (isearch-lazy-highlight-interval)
1615 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
1616 * net/net-utils.el (ipconfig-program-options):
1617 Move aliases to options before the associated definitions.
1618
1619 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1620
1621 * newcomment.el (comment-normalize-vars): Better test validity of
1622 comment-end-skip.
1623
1624 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1625
1626 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
1627 (float-e): New name for `e'.
1628 (degrees-to-radians, radians-to-degrees):
1629 * calendar/solar.el (solar-longitude):
1630 * calculator.el (calculator-registers, calculator-funcall):
1631 * textmodes/artist.el (artist-spray-random-points):
1632 * play/bubbles.el (bubbles--initialize-images): Use new names.
1633
1634 2010-09-23 Eric M. Ludlam <zappo@gnu.org>
1635
1636 Update to CEDET 1.0's version of EIEIO.
1637
1638 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
1639 New function.
1640 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
1641 (eieio-default-eval-maybe): Eval val instead of unquoting only.
1642 (class-precedence-list): If class is nil, return nil.
1643 (eieio-generic-call): If class of first input arg is nil, don't
1644 look up static methods, and do check for primary methods.
1645 (initialize-instance): See if the default needs to be evaluated
1646 during the constructor.
1647 (eieio-perform-slot-validation-for-default): Don't do the check
1648 for values that will eventually be evaluated.
1649 (eieio-eval-default-p): New function.
1650 (eieio-default-eval-maybe): Use it.
1651
1652 2010-09-23 Jan Moringen <jan.moringen@uni-bielefeld.de>
1653
1654 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
1655 method-invocation-order.
1656 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
1657 (eieio-class-precedence-dfs): Compute class precedence list using
1658 dfs algorithm.
1659 (eieio-class-precedence-bfs): Compute class precedence list using
1660 bfs algorithm.
1661 (eieio-class-precedence-c3): Compute class precedence list using
1662 c3 algorithm.
1663 (class-precedence-list): New function.
1664 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
1665 (inconsistent-class-hierarchy): New error symbol.
1666 (call-next-method): Stow the replacement argument list for future
1667 call-next-method invocations.
1668
1669 2010-09-23 Glenn Morris <rgm@gnu.org>
1670
1671 * calendar/appt.el (appt-check): If not displaying the diary,
1672 use (diary 1) to only get the entries we need.
1673 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
1674 that it is in day order. (Bug#7019)
1675
1676 * calendar/appt.el (appt-check): Rather than showing the diary,
1677 just turn off invisible display, and only if needed.
1678
1679 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
1680
1681 2010-09-23 Glenn Morris <rgm@gnu.org>
1682
1683 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
1684 (byte-compile-defvar, byte-compile-cl-warn):
1685 Start warnings with lower-case, like the majority.
1686
1687 * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
1688
1689 * files.el (auto-mode-alist): Prefer C-mode for .xs. (Bug#7071)
1690
1691 * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
1692 * files.el (auto-mode-alist): Move ld-script entries here, further down
1693 the list.
1694
1695 * vc/add-log.el: Don't require timezone when compiling.
1696 (timezone-make-date-sortable): Autoload it.
1697 (change-log-sortable-date-at): Don't require timezone.
1698 Use `ignore-errors'.
1699
1700 * comint.el (comint-use-prompt-regexp-instead-of-fields):
1701 Move alias before definition, so it does not need autoloading.
1702
1703 * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
1704 * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
1705 * international/kkc.el, international/ogonek.el, mail/feedmail.el:
1706 * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
1707 * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
1708 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
1709 * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
1710 * textmodes/tex-mode.el, textmodes/two-column.el:
1711 Remove leading `*' from docs of defcustoms etc.
1712
1713 2010-09-23 Teodor Zlatanov <tzz@lifelogs.com>
1714
1715 * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
1716
1717 2010-09-22 Dan Christensen <jdc@uwo.ca>
1718
1719 * calendar/time-date.el (date-to-time): Try using parse-time-string
1720 first before using the slower timezone-make-date-arpa-standard.
1721
1722 2010-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
1723
1724 * calendar/time-date.el (format-seconds): Comment fix.
1725
1726 2010-09-22 Glenn Morris <rgm@gnu.org>
1727
1728 * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
1729 is not automatically buffer-local.
1730
1731 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
1732
1733 * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
1734 (smie-indent-comment): Be more careful with comment-start-skip.
1735 (smie-indent-comment-close, smie-indent-comment-inside): New funs.
1736 (smie-indent-functions): Use them.
1737
1738 2010-09-21 Michael Albinus <michael.albinus@gmx.de>
1739
1740 * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
1741
1742 2010-09-21 Jan Djärv <jan.h.d@swipnet.se>
1743
1744 * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
1745 tool-bar-position. Don't modify frame parameters here.
1746 (menu-bar-options-save): Add tool-bar-position.
1747
1748 * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
1749
1750 2010-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1751
1752 * textmodes/reftex-parse.el (reftex-what-macro)
1753 (reftex-context-substring): Let-bind forward-sexp-function to nil
1754 since we don't need/want to treat \begin...\end as a block (bug#7053).
1755
1756 * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
1757
1758 * simple.el (blink-matching-open): Use syntax-class.
1759
1760 * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
1761 Set invisibility spec for pascal's outline mode.
1762 (pascal-outline-change): Clean up calling convention.
1763 (pascal-show-all, pascal-hide-other-defuns): Update callers.
1764
1765 * progmodes/prolog.el (prolog-smie-forward-token)
1766 (prolog-smie-backward-token): New functions.
1767 (prolog-mode-variables): Use them to parse "!," correctly.
1768 Set up smie-blink-matching for ".".
1769
1770 * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
1771 and `end'.
1772 (ispell-region, ispell-process-line): Update users.
1773
1774 * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
1775 point-min==1.
1776
1777 * textmodes/ispell.el: Fix commenting convention.
1778 (ispell-parse-output): Simplify, use push.
1779 (ispell-region): Use match-string-no-properties.
1780 (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
1781 (ispell-minor-mode): Use define-minor-mode.
1782 (ispell-message): Remove unused var `skip-regexp'.
1783 (ispell-add-per-file-word-list): Use dynamic let-binding.
1784 Try and use the proper comment marker.
1785
1786 * mail/sendmail.el: Fix commenting convention.
1787 (sendmail-send-it): Use line-beginning-position.
1788
1789 * help-fns.el (describe-variable): Add original value, if applicable.
1790
1791 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
1792
1793 * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
1794
1795 * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
1796
1797 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1798
1799 * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
1800 (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
1801 (smie-prec2-levels): Use them to better diagnose precedence cycles.
1802 (smie-blink-matching-check): Don't signal a mismatch if car is t.
1803 (smie-blink-matching-open): Rewrite to remove assumptions, so that
1804 something like "." can also be a closer.
1805 (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
1806 (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
1807 Rename internal functions to use "--". Update callers.
1808
1809 * frame.el (make-frame-names-alist): Don't list frames on other displays.
1810
1811 * fringe.el (fringe-styles): New var.
1812 (fringe-mode, fringe-query-style): Use it.
1813
1814 2010-09-18 Michael R. Mauger <mmaug@yahoo.com>
1815
1816 * progmodes/sql.el: Version 2.8
1817 (sql-login-params): Update widget structure; changes still needed.
1818 (sql-product-alist): Add :list-all and :list-table features for
1819 SQLite, Postgres and MySQL products.
1820 (sql-redirect): Handle default value.
1821 (sql-execute, sql-execute-feature): New functions.
1822 (sql-read-table-name): New function.
1823 (sql-list-all, sql-list-table): New functions. User API.
1824 (sql-mode-map, sql-interactive-mode-map): Add key definitions
1825 for above functions.
1826 (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
1827 for above functions.
1828 (sql-postgres-login-params): Add user and database defaults.
1829 (sql-buffer-live-p): Bug fix.
1830 (sql-product-history): New variable.
1831 (sql-read-product): New function. Use it.
1832 (sql-set-product, sql-product-interactive): Use it.
1833 (sql-connection-history): New variable.
1834 (sql-read-connection): New function. Use it.
1835 (sql-connect): New function.
1836 (sql-for-each-login): Redesign function interface.
1837 (sql-make-alternate-buffer-name, sql-save-connection): Use it.
1838 (sql-get-login-ext, sql-get-login): Use it. Handle default values.
1839 (sql-comint): Check for program. Existing live buffer.
1840 (sql-comint-postgres): Add port parameter.
1841
1842 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1843
1844 * emacs-lisp/warnings.el: Fix commenting convention.
1845 (display-warning): Use special mode and make the buffer read-only.
1846
1847 2010-09-18 Jay Belanger <jay.p.belanger@gmail.com>
1848
1849 * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
1850 empty string when it follows a repeated or optional pattern.
1851
1852 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
1853
1854 * indent.el (indent-according-to-mode): Apply syntax-propertize.
1855 (indent-region): Use indent-according-to-mode.
1856
1857 2010-09-18 Eli Zaretskii <eliz@gnu.org>
1858
1859 * fringe.el (fringe-mode): Doc fix.
1860
1861 2010-09-14 Kan-Ru Chen <kanru@kanru.info> (tiny change)
1862
1863 * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
1864 refreshing the preview buffer.
1865
1866 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
1867
1868 * textmodes/tex-mode.el (tex-syntax-propertize-rules)
1869 (latex-syntax-propertize-rules): New consts; replace
1870 tex-font-lock-syntactic-keywords.
1871 (tex-env-mark, latex-env-before-change): New functions.
1872 (latex-electric-env-pair-mode): New minor mode.
1873 (tex-font-lock-verb): Change arguments; do move point.
1874 (tex-font-lock-syntactic-face-function): Adjust to new verbatim
1875 representation as a form of comment.
1876 (tex-font-lock-keywords-1): Remove workaround, now unneeded.
1877 (doctex-syntax-propertize-rules): New const; replaces
1878 doctex-font-lock-syntactic-keywords.
1879 (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
1880
1881 * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
1882 (fortran-make-syntax-propertize-function): New function; replaces
1883 fortran-font-lock-syntactic-keywords.
1884 (fortran-mode): Use it.
1885 (fortran-line-length): Use it. Improve interactive spec.
1886
1887 * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
1888 (syntax-propertize-rules): Add var-ref case. Fix offset computation
1889 when adding surrounding \(..\).
1890
1891 * progmodes/js.el (js-mode): Fix last change (bug#7054).
1892
1893 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1894
1895 * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
1896 Use with-current-buffer.
1897
1898 * isearch.el (isearch-face): Rename from `isearch'.
1899 (isearch-highlight): Use new name.
1900
1901 2010-09-17 Eli Zaretskii <eliz@gnu.org>
1902
1903 * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
1904 5, for `half' width fringes. (Bug#6933)
1905
1906 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1907
1908 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
1909 (byte-compile-defvar): "foo/bar" does not lack a prefix.
1910
1911 * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
1912
1913 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
1914
1915 * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
1916 in calculating new frame position. Add more space between new and
1917 parent on the left (Bug#7048).
1918
1919 2010-09-17 Michael Albinus <michael.albinus@gmx.de>
1920
1921 * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
1922 defmacro.
1923
1924 2010-09-16 Chong Yidong <cyd@stupidchicken.com>
1925
1926 * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
1927
1928 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
1929 obsolete alias for x-selection-value.
1930
1931 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
1932
1933 2010-09-16 Michael Albinus <michael.albinus@gmx.de>
1934
1935 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
1936 cookie.
1937
1938 2010-09-15 Michael Albinus <michael.albinus@gmx.de>
1939
1940 * net/tramp-compat.el (tramp-compat-with-temp-message)
1941 (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
1942 (tramp-compat-process-put): New defuns.
1943
1944 * net/tramp.el (top):
1945 * net/tramp-gvfs.el (top):
1946 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
1947
1948 * net/tramp.el (tramp-progress-reporter-update):
1949 Use `tramp-compat-funcall'.
1950
1951 * net/tramp.el (tramp-process-actions):
1952 * net/tramp-gvfs.el (tramp-handle-vc-registered):
1953 * net/tramp-sh.el (tramp-gvfs-handler-askquestion)
1954 (tramp-get-remote-stat, tramp-get-remote-readlink):
1955 Use `tramp-compat-with-temp-message'.
1956
1957 * net/tramp-sh.el (top): Require 'cl.
1958 (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
1959 (tramp-open-connection-setup-interactive-shell):
1960 Use `tramp-compat-process-put'.
1961
1962 2010-09-15 Alan Mackenzie <acm@muc.de>
1963
1964 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
1965 indentation.
1966 (c-forward-<>-arglist-recur): Fix an infinite recursion.
1967
1968 2010-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
1969
1970 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
1971 `lexical' for warnings related to lexical scoping.
1972 (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
1973 global vars which don't have a prefix and could hence affect lexical
1974 scoping in unrelated files.
1975
1976 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
1977
1978 * net/imap.el: Revert back to version
1979 cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
1980 seem problematic.
1981
1982 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
1983
1984 * obsolete/old-whitespace.el (whitespace-unload-function):
1985 Explicitly pass `obarray' to `unintern' to avoid a warning.
1986
1987 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
1988
1989 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
1990 Add `when' argument. Update callers.
1991
1992 * subr.el (unintern): Declare the obarray arg mandatory.
1993
1994 2010-09-14 Glenn Morris <rgm@gnu.org>
1995
1996 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
1997 Doc fixes.
1998
1999 * calendar/diary-lib.el (diary-included-files): New variable.
2000 (diary-list-entries): Maybe initialize diary-included-files.
2001 (diary-include-other-diary-files): Append to diary-included-files.
2002 * calendar/appt.el (appt-update-list): Also check the members of
2003 diary-included-files. (Bug#6999)
2004 (appt-check): Doc fix.
2005
2006 2010-09-14 David Reitter <david.reitter@gmail.com>
2007
2008 * simple.el (line-move-visual): Do not truncate goal column to
2009 integer size. (Bug#7020)
2010
2011 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2012
2013 * repeat.el (repeat): Allow repeating when the last event is a click.
2014 Suggested by Drew Adams (bug#6256).
2015
2016 2010-09-14 Sascha Wilde <wilde@sha-bang.de>
2017
2018 * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
2019 Replace setting HGRCPATH to "" by some less invasive --config options.
2020
2021 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2022
2023 * font-lock.el (font-lock-beginning-of-syntax-function):
2024 Mark as obsolete.
2025
2026 2010-09-14 Glenn Morris <rgm@gnu.org>
2027
2028 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
2029 and tool-bar modes. (Bug#6211)
2030 (menu-bar-mode): Move setting of standard-value after the
2031 minor-mode definition, otherwise it seems to have no effect.
2032
2033 2010-09-14 Masatake YAMATO <yamato@redhat.com>
2034
2035 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
2036 Fix typo. (Bug#6976)
2037
2038 2010-09-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2039
2040 * whitespace.el: Allow cleaning up blanks without blank
2041 visualization (Bug#6651). Adjust help window for
2042 whitespace-toggle-options (Bug#6479). Allow to use fill-column
2043 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
2044 (whitespace-style): Add new value 'face. Adjust docstring.
2045 (whitespace-space, whitespace-hspace, whitespace-tab):
2046 Adjust foreground property face.
2047 (whitespace-line-column): Adjust docstring and type declaration.
2048 (whitespace-style-value-list, whitespace-toggle-option-alist)
2049 (whitespace-help-text): Adjust const initialization.
2050 (whitespace-toggle-options, global-whitespace-toggle-options):
2051 Adjust docstring.
2052 (whitespace-display-window, whitespace-interactive-char)
2053 (whitespace-style-face-p, whitespace-color-on): Adjust code.
2054 (whitespace-help-scroll): New fun.
2055
2056 2010-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
2057
2058 * calendar/time-date.el (format-seconds): Comment fix.
2059
2060 2010-09-13 Michael R. Mauger <mmaug@yahoo.com>
2061
2062 * progmodes/sql.el: Version 2.7.
2063 (sql-buffer-live-p): Improve detection.
2064 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
2065 (sql-set-sqli-buffer): Use it.
2066 (sql-product-interactive): Run `sql-set-sqli-hook'.
2067 (sql-rename-buffer): Code cleanup.
2068 (sql-redirect, sql-redirect-value): New functions. More to come.
2069
2070 2010-09-13 Juanma Barranquero <lekktu@gmail.com>
2071
2072 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.
2073 * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
2074 (TRAMP_SRC): New macro.
2075 ($(lisp)/net/tramp-loaddefs.el): New target.
2076
2077 2010-09-13 Michael Albinus <michael.albinus@gmx.de>
2078
2079 Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el.
2080
2081 * Makefile.in (TRAMP_SRC): Remove tramp-fish.el. Add tramp-sh.el.
2082
2083 * net/tramp.el (top): Don't show loading message. Require just
2084 'tramp-compat, everything else is required there.
2085 Use `ignore-errors' where appropriate.
2086 (tramp-inline-compress-start-size, tramp-copy-size-limit)
2087 (tramp-terminal-type, tramp-end-of-output)
2088 (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
2089 (tramp-completion-function-alist-ssh)
2090 (tramp-completion-function-alist-telnet)
2091 (tramp-completion-function-alist-su)
2092 (tramp-completion-function-alist-putty, tramp-remote-path)
2093 (tramp-remote-process-environment, tramp-sh-extra-args)
2094 (tramp-actions-before-shell, tramp-uudecode)
2095 (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
2096 (tramp-perl-file-attributes)
2097 (tramp-perl-directory-files-and-attributes)
2098 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
2099 (tramp-perl-encode, tramp-perl-decode)
2100 (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
2101 (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
2102 (tramp-handle-make-symbolic-link, tramp-handle-load)
2103 (tramp-handle-file-name-as-directory)
2104 (tramp-handle-file-name-directory)
2105 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
2106 (tramp-handle-file-exists-p, tramp-handle-file-attributes)
2107 (tramp-do-file-attributes-with-ls)
2108 (tramp-do-file-attributes-with-perl)
2109 (tramp-do-file-attributes-with-stat)
2110 (tramp-handle-set-visited-file-modtime)
2111 (tramp-handle-verify-visited-file-modtime)
2112 (tramp-handle-set-file-modes, tramp-handle-set-file-times)
2113 (tramp-set-file-uid-gid, tramp-remote-selinux-p)
2114 (tramp-handle-file-selinux-context)
2115 (tramp-handle-set-file-selinux-context)
2116 (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
2117 (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
2118 (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
2119 (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
2120 (tramp-handle-file-ownership-preserved-p)
2121 (tramp-handle-directory-file-name, tramp-handle-directory-files)
2122 (tramp-handle-directory-files-and-attributes)
2123 (tramp-do-directory-files-and-attributes-with-perl)
2124 (tramp-do-directory-files-and-attributes-with-stat)
2125 (tramp-handle-file-name-all-completions)
2126 (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
2127 (tramp-handle-copy-file, tramp-handle-copy-directory)
2128 (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
2129 (tramp-do-copy-or-rename-file-via-buffer)
2130 (tramp-do-copy-or-rename-file-directly)
2131 (tramp-do-copy-or-rename-file-out-of-band)
2132 (tramp-handle-make-directory, tramp-handle-delete-directory)
2133 (tramp-handle-delete-file)
2134 (tramp-handle-dired-recursive-delete-directory)
2135 (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
2136 (tramp-handle-insert-directory)
2137 (tramp-handle-unhandled-file-name-directory)
2138 (tramp-handle-expand-file-name)
2139 (tramp-handle-substitute-in-file-name)
2140 (tramp-handle-executable-find, tramp-process-sentinel)
2141 (tramp-handle-start-file-process, tramp-handle-process-file)
2142 (tramp-handle-call-process-region, tramp-handle-shell-command)
2143 (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
2144 (tramp-handle-insert-file-contents)
2145 (tramp-handle-insert-file-contents-literally)
2146 (tramp-handle-find-backup-file-name)
2147 (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
2148 (tramp-vc-registered-file-names, tramp-handle-vc-registered)
2149 (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
2150 (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
2151 (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
2152 (tramp-find-file-exists-command, tramp-open-shell)
2153 (tramp-find-shell, tramp-barf-if-no-shell-prompt)
2154 (tramp-open-connection-setup-interactive-shell)
2155 (tramp-local-coding-commands, tramp-remote-coding-commands)
2156 (tramp-find-inline-encoding, tramp-call-local-coding-command)
2157 (tramp-inline-compress-commands, tramp-find-inline-compress)
2158 (tramp-compute-multi-hops, tramp-maybe-open-connection)
2159 (tramp-send-command, tramp-wait-for-output)
2160 (tramp-send-command-and-check, tramp-barf-unless-okay)
2161 (tramp-send-command-and-read, tramp-mode-string-to-int)
2162 (tramp-convert-file-attributes, tramp-check-cached-permissions)
2163 (tramp-file-mode-from-int, tramp-file-mode-permissions)
2164 (tramp-shell-case-fold, tramp-make-copy-program-file-name)
2165 (tramp-method-out-of-band-p, tramp-local-host-p)
2166 (tramp-get-remote-path, tramp-get-remote-tmpdir)
2167 (tramp-get-ls-command, tramp-get-ls-command-with-dired)
2168 (tramp-get-test-command, tramp-get-test-nt-command)
2169 (tramp-get-file-exists-command, tramp-get-remote-ln)
2170 (tramp-get-remote-perl, tramp-get-remote-stat)
2171 (tramp-get-remote-readlink, tramp-get-remote-trash)
2172 (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
2173 (tramp-get-local-uid, tramp-get-local-gid)
2174 (tramp-get-inline-compress, tramp-get-inline-coding): Move to
2175 tramp-sh.el.
2176 (tramp-methods, tramp-default-method-alist)
2177 (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
2178 Move initialization to tramp-sh.el.
2179 (tramp-temp-name-prefix): Make it a defconst.
2180 (tramp-dissect-file-name): Don't check anymore for multi-hop
2181 methods.
2182 (tramp-debug-outline-regexp): Add a docstring.
2183 (tramp-debug-outline-level): Rename from `tramp-outline-level'.
2184 (tramp-get-debug-buffer): Use it.
2185
2186 * net/tramp-cache.el (top): Set tramp-autoload cookie for
2187 initialization forms.
2188 (tramp-set-connection-property): Don't protect `tramp-message'
2189 call, it isn't necessary any longer.
2190 (tramp-dump-connection-properties): Use `ignore-errors'.
2191
2192 * net/tramp-compat.el (top): Require 'advice, 'format-spec,
2193 'password-cache and 'auth-source.
2194
2195 * net/tramp-gvfs.el (top):
2196 * net/tramp-smb.el (top): Require 'tramp-sh.
2197
2198 * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
2199
2200 * net/tramp-sh.el: New file, derived from tramp.el.
2201 (top): Initialize `tramp-methods', `tramp-default-method-alist',
2202 `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
2203 Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
2204 Use `ignore-errors' where appropriate.
2205 (tramp-sh-file-name-handler-alist): Rename from
2206 `tramp-file-name-handler-alist'.
2207 (tramp-send-command-and-check): Return t or nil. Remove all
2208 `zerop' checks, where called.
2209 (tramp-handle-set-file-modes)
2210 (tramp-do-copy-or-rename-file-directly)
2211 (tramp-handle-delete-directory, tramp-handle-delete-file)
2212 (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
2213 (tramp-sh-file-name-handler, tramp-send-command-and-check)
2214 (tramp-get-remote-ln): Set tramp-autoload cookie.
2215
2216 * net/tramp-fish.el: Remove file.
2217
2218 2010-09-13 Daiki Ueno <ueno@unixuser.org>
2219
2220 * epa-file.el (epa-file-insert-file-contents): If visiting, bind
2221 buffer-file-name to avoid file-locking. (Bug#7026)
2222
2223 2010-09-13 Julien Danjou <julien@danjou.info>
2224
2225 * notifications.el (notifications-notify): Add support for
2226 image-path and sound-name.
2227 (notifications-specification-version): Add this variable.
2228
2229 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2230
2231 * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
2232
2233 2010-09-12 Leo <sdl.web@gmail.com>
2234
2235 * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
2236 (rcirc-completion-start): New variables.
2237 (rcirc-nick-completions): Rename to rcirc-completions.
2238 (rcirc-nick-completion-start-offset): Delete.
2239 (rcirc-completion-at-point): New function for constructing
2240 completion data for both nicks and irc commands. Add to
2241 completion-at-point-functions in rcirc mode.
2242 (rcirc-complete): Rename from rcirc-nick-complete; use
2243 rcirc-completion-at-point.
2244 (defun-rcirc-command): Update rcirc-client-commands.
2245
2246 2010-09-11 Glenn Morris <rgm@gnu.org>
2247
2248 * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
2249 atomically, to avoid parallel build errors. (Bug#4196)
2250
2251 2010-09-11 Michael R. Mauger <mmaug@yahoo.com>
2252
2253 * progmodes/sql.el: Version 2.6
2254 (sql-dialect): Synonym for "sql-product".
2255 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
2256 (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
2257 Set "sql-buffer" to buffer name not buffer object so multiple sql
2258 interactive buffers work properly. Reverts misguided changes in
2259 earlier work.
2260 (sql-comint): Make sure different buffer name is used if "*SQL*"
2261 buffer is for a different product.
2262 (sql-make-alternate-buffer-name): Fix bug with "sql-database"
2263 login param.
2264 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
2265 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
2266 (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
2267 Accept new buffer name or prompt for one.
2268 (sql-port): Default to zero.
2269 (sql-comint-mysql): Handle "sql-port" as a numeric.
2270 (sql-port-history): Delete unused variable.
2271 (sql-get-login): Default "sql-port" to a number.
2272 (sql-product-alist): Correct Postgres prompt and terminator regexp.
2273 (sql-sqlite-program): Dynamically detect presence of "sqlite" or
2274 "sqlite3" executables.
2275 (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
2276 (sql-buffer-live-p): New function.
2277 (sql-mode-menu, sql-send-string): Use it.
2278 (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
2279 syntax pattern.
2280 (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
2281 (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
2282
2283 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2284
2285 * net/netrc.el (netrc-credentials): New convenience function.
2286
2287 2010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2288
2289 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
2290 to replace texinfo-font-lock-syntactic-keywords.
2291 (texinfo-mode): Use it.
2292
2293 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
2294 Use syntax-propertize-function.
2295
2296 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
2297 replace sgml-font-lock-syntactic-keywords.
2298 (sgml-mode): Use it.
2299
2300 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
2301 since we don't use it.
2302
2303 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
2304
2305 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
2306 if available.
2307 (vhdl-fontify-buffer): Adjust.
2308
2309 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
2310 replace tcl-font-lock-syntactic-keywords.
2311 (tcl-mode): Use it.
2312
2313 * progmodes/simula.el (simula-syntax-propertize-function): New var to
2314 replace simula-font-lock-syntactic-keywords.
2315 (simula-mode): Use it.
2316
2317 * progmodes/sh-script.el (sh-st-symbol): Remove.
2318 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
2319 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
2320 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
2321 (sh-font-lock-paren): Set syntax-multiline.
2322 (sh-font-lock-syntactic-keywords): Remove.
2323 (sh-syntax-propertize-function): New function to replace it.
2324 (sh-mode): Use it.
2325
2326 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
2327 Define while compiling.
2328 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
2329 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
2330 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
2331 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
2332 (ruby-here-doc-end-syntax): Only define when
2333 syntax-propertize is not available.
2334 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
2335 New functions.
2336 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
2337 (electric-indent-chars): Silence bytecompiler.
2338 (ruby-mode): Use prog-mode, syntax-propertize-function, and
2339 electric-indent-chars.
2340
2341 * progmodes/python.el (python-syntax-propertize-function): New var to
2342 replace python-font-lock-syntactic-keywords.
2343 (python-mode): Use it.
2344 (python-quote-syntax): Simplify and adjust to new use.
2345
2346 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
2347 replace perl-font-lock-syntactic-keywords.
2348 (perl-syntax-propertize-special-constructs): New fun to replace
2349 perl-font-lock-special-syntactic-constructs.
2350 (perl-font-lock-syntactic-face-function): New fun.
2351 (perl-mode): Use it.
2352
2353 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
2354 to replace octave-font-lock-close-quotes.
2355 (octave-syntax-propertize-function): New function to replace
2356 octave-font-lock-syntactic-keywords.
2357 (octave-mode): Use it.
2358
2359 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
2360 replaces mixal-font-lock-syntactic-keywords.
2361 (mixal-mode): Use it.
2362
2363 * progmodes/make-mode.el (makefile-syntax-propertize-function):
2364 New var; replaces makefile-font-lock-syntactic-keywords.
2365 (makefile-mode): Use it.
2366 (makefile-imake-mode): Adjust.
2367
2368 * progmodes/js.el (js--regexp-literal): Define while compiling.
2369 (js-syntax-propertize-function): New var; replaces
2370 js-font-lock-syntactic-keywords.
2371 (js-mode): Use it.
2372
2373 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
2374 replaces gdb-script-font-lock-syntactic-keywords.
2375 (gdb-script-mode): Use it.
2376
2377 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
2378 (fortran--font-lock-syntactic-keywords): New var.
2379 (fortran-line-length): Update syntax-propertize-function and
2380 fortran--font-lock-syntactic-keywords.
2381
2382 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
2383
2384 * progmodes/cfengine.el (cfengine-mode):
2385 Use syntax-propertize-function.
2386 (cfengine-font-lock-syntactic-keywords): Remove.
2387
2388 * progmodes/autoconf.el (autoconf-mode):
2389 Use syntax-propertize-function.
2390 (autoconf-font-lock-syntactic-keywords): Remove.
2391
2392 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
2393 (ada-after-change-function, ada-initialize-syntax-table-properties)
2394 (ada-handle-syntax-table-properties): Only define when
2395 syntax-propertize is not available.
2396 (ada-mode): Use syntax-propertize-function.
2397
2398 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
2399 (font-lock-fontify-syntactic-keywords-region): Move handling of
2400 font-lock-syntactically-fontified to...
2401 (font-lock-default-fontify-region): ...here.
2402 Let syntax-propertize-function take precedence.
2403 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
2404
2405 * emacs-lisp/syntax.el (syntax-propertize-function)
2406 (syntax-propertize-chunk-size, syntax-propertize--done)
2407 (syntax-propertize-extend-region-functions): New vars.
2408 (syntax-propertize-wholelines, syntax-propertize-multiline)
2409 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
2410 (syntax-propertize): New functions.
2411 (syntax-propertize-rules): New macro.
2412 (syntax-ppss-flush-cache): Set syntax-propertize--done.
2413 (syntax-ppss): Call syntax-propertize.
2414
2415 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
2416
2417 2010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
2418
2419 * textmodes/ispell.el (ispell-init-process): Improve comments.
2420 XEmacs compatibility changes regarding (add-hook) 'local option
2421 and (set-process-query-on-exit-flag).
2422
2423 2010-09-09 Michael Albinus <michael.albinus@gmx.de>
2424
2425 * net/tramp-cache.el (tramp-parse-connection-properties):
2426 Set tramp-autoload cookie.
2427
2428 2010-09-09 Glenn Morris <rgm@gnu.org>
2429
2430 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
2431 (imagemagick-register-types): Doc fix.
2432
2433 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
2434
2435 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
2436
2437 * progmodes/js.el (require): Require is already "eval-and-compile".
2438 (js--re-search-forward): Avoid `eval'. Preserve the error data.
2439 (js--re-search-backward): Use js--re-search-forward.
2440
2441 * progmodes/fortran.el (fortran-line-length): Don't recompute
2442 syntactic keywords redundantly a second time.
2443
2444 * progmodes/ada-mode.el: Replace "(set '" with setq.
2445 (ada-mode): Simplify.
2446 (ada-create-case-exception, ada-adjust-case-interactive)
2447 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
2448 (ada-search-ignore-string-comment, ada-move-to-start)
2449 (ada-move-to-end): Use with-syntax-table.
2450
2451 * font-lock.el (save-buffer-state): Remove `varlist' arg.
2452 (font-lock-unfontify-region, font-lock-default-fontify-region):
2453 Update usage correspondingly.
2454 (font-lock-fontify-syntactic-keywords-region):
2455 Set parse-sexp-lookup-properties buffer-locally here.
2456 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
2457
2458 * simple.el (blink-matching-open): Don't burp if we can't find a match.
2459
2460 2010-09-08 Glenn Morris <rgm@gnu.org>
2461
2462 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
2463 Error if not compiled with -DBYTE_CODE_METER.
2464
2465 * emacs-lisp/bytecomp.el (byte-recompile-directory):
2466 Ignore dir-locals-file.
2467
2468 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
2469
2470 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2471 Not a const.
2472 (compilation-error-regexp-alist-alist): Rule out ": " in file names
2473 for the `gnu' messages.
2474 (compilation-set-skip-threshold): New command.
2475 (compilation-start): Use \' rather than $.
2476 (compilation-forget-errors): Use clrhash.
2477
2478 2010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
2479
2480 * textmodes/ispell.el (ispell-valid-dictionary-list):
2481 Simplify logic.
2482
2483 2010-09-08 Michael Albinus <michael.albinus@gmx.de>
2484
2485 Migrate to Tramp 2.2. Rearrange load dependencies.
2486 (Bug#1529, Bug#5448, Bug#5705)
2487
2488 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
2489 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
2490 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
2491
2492 * net/tramp.el (top): Remove all other tramp-* loads except
2493 tramp-compat.el. Remove all changes to tramp-unload-hook for
2494 other tramp-* packages. Rearrange defun order. Change calls of
2495 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
2496 `tramp-compat-octal-to-decimal' to new function names.
2497 (tramp-terminal-type, tramp-initial-end-of-output)
2498 (tramp-methods, tramp-foreign-file-name-handler-alist)
2499 (tramp-tramp-file-p, tramp-completion-mode-p)
2500 (tramp-send-command-and-check, tramp-get-remote-path)
2501 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
2502 (tramp-shell-quote-argument): Set tramp-autoload cookie.
2503 (with-file-property, with-connection-property): Move to
2504 tramp-cache.el.
2505 (tramp-local-call-process, tramp-decimal-to-octal)
2506 (tramp-octal-to-decimal): Move to tramp-compat.el.
2507 (tramp-handle-shell-command): Do not require 'shell.
2508 (tramp-compute-multi-hops): No special handling for tramp-gw-*
2509 symbols.
2510 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
2511
2512 * net/tramp-cache.el (top): Require 'tramp. Add to
2513 `tramp-unload-hook'.
2514 (tramp-cache-data, tramp-get-file-property)
2515 (tramp-set-file-property, tramp-flush-file-property)
2516 (tramp-flush-directory-property, tramp-get-connection-property)
2517 (tramp-set-connection-property, tramp-flush-connection-property)
2518 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
2519 cookie.
2520 (with-file-property, with-connection-property): New defuns, moved
2521 from tramp.el.
2522 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
2523 macro.
2524
2525 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
2526 (tramp-version): Set tramp-autoload cookie.
2527
2528 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
2529 changes to tramp-unload-hook for other tramp-* packages. Add to
2530 `tramp-unload-hook'.
2531 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
2532 (tramp-compat-call-process): New defuns, moved from tramp.el.
2533
2534 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
2535 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
2536 to `tramp-unload-hook'. Change call of
2537 `tramp-compat-decimal-to-octal' to new function name.
2538 (tramp-fish-method): Make it a defconst.
2539 (tramp-fish-file-name-p): Make it a defsubst.
2540 (tramp-fish-method, tramp-fish-file-name-handler)
2541 (tramp-fish-file-name-p): Set tramp-autoload cookie.
2542
2543 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
2544 `tramp-foreign-file-name-handler-alist'. Add to
2545 `tramp-unload-hook'.
2546 (tramp-ftp-method): Make it a defconst.
2547 (tramp-ftp-file-name-p): Make it a defsubst.
2548 (tramp-ftp-method, tramp-ftp-file-name-handler)
2549 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
2550
2551 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
2552 `tramp-foreign-file-name-handler-alist'. Add to
2553 `tramp-unload-hook'. Change checks, whether package can be
2554 loaded.
2555 (tramp-gvfs-file-name-p): Make it a defsubst.
2556 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
2557 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
2558 (tramp-gvfs-handle-file-directory-p): New defun.
2559 (tramp-gvfs-file-name-handler-alist): Use it.
2560
2561 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
2562 `tramp-foreign-file-name-handler-alist'. Add to
2563 `tramp-unload-hook'.
2564 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
2565 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
2566 defconst.
2567 (tramp-gw-tunnel-method, tramp-gw-socks-method)
2568 (tramp-gw-open-connection): Set tramp-autoload cookie.
2569
2570 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
2571 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
2572 to `tramp-unload-hook'. Change checks, whether package can be
2573 loaded.
2574 (tramp-imap-file-name-p): Make it a defsubst.
2575 (tramp-imap-method, tramp-imaps-method)
2576 (tramp-imap-file-name-handler)
2577 (tramp-imap-file-name-p): Set tramp-autoload cookie.
2578
2579 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
2580 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
2581 to `tramp-unload-hook'. Change checks, whether package can be
2582 loaded. Change call of `tramp-compat-decimal-to-octal' to new
2583 function name.
2584 (tramp-smb-tunnel-method): Make it a defconst.
2585 (tramp-smb-file-name-p): Make it a defsubst.
2586 (tramp-smb-method, tramp-smb-file-name-handler)
2587 (tramp-smb-file-name-p): Set tramp-autoload cookie.
2588
2589 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
2590 (tramp-uuencode-region): Set tramp-autoload cookie.
2591
2592 * net/trampver.el (top) Add to `tramp-unload-hook'.
2593 (tramp-version, tramp-bug-report-address): Set tramp-autoload
2594 cookie. Update release number.
2595
2596 2010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
2597
2598 * textmodes/ispell.el (ispell-start-process): Make sure original
2599 arg list is properly initialized (Bug#6993, Bug#6994).
2600
2601 2010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
2602
2603 * files.el (directory-abbrev-alist): Use \` as default regexp.
2604
2605 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
2606 chars like - or ] (bug#6984).
2607 (rx-any-condense-range): Explode 2-char ranges.
2608
2609 2010-09-06 Glenn Morris <rgm@gnu.org>
2610
2611 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
2612
2613 2010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2614
2615 * textmodes/bibtex.el:
2616 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
2617
2618 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2619
2620 * net/imap.el (imap-message-map): Remove optional buffer parameter,
2621 since no callers use it.
2622 (imap-message-get): Ditto.
2623 (imap-message-put): Ditto.
2624 (imap-mailbox-map): Ditto.
2625 (imap-mailbox-put): Ditto.
2626 (imap-mailbox-get): Ditto.
2627 (imap-mailbox-get): Revert last change for this function.
2628
2629 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2630
2631 * net/imap.el (imap-fetch-safe): Remove function, and alter all
2632 callers to use `imap-fetch' instead. According to the comments, this
2633 should be safe, since all other IMAP clients use the 1:* syntax.
2634 (imap-enable-exchange-bug-workaround): Remove.
2635 (imap-debug): Remove -- doesn't seem very useful.
2636
2637 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2638
2639 * net/imap.el (imap-log): New convenience function used throughout
2640 instead of repeating the same code all over the place.
2641
2642 2010-09-05 David De La Harpe Golden <david@harpegolden.net>
2643
2644 * mouse.el (mouse-save-then-kill): Save region to kill-ring
2645 when mouse-drag-copy-region is non-nil (Bug#6956).
2646
2647 2010-09-05 Chong Yidong <cyd@stupidchicken.com>
2648
2649 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
2650 Improve regexps (Bug#6987).
2651 (dired-sort-toggle): Search more robustly for -t flag.
2652
2653 * files.el (get-free-disk-space): Search more robustly for
2654 "available" column. Suggested by Ehud Karni
2655 <ehud@unix.mvs.co.il>.
2656
2657 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
2658
2659 * international/uni-bidi.el:
2660 * international/uni-category.el:
2661 * international/uni-combining.el:
2662 * international/uni-decimal.el:
2663 * international/uni-mirrored.el:
2664 * international/uni-name.el: Regenerate.
2665
2666 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2667
2668 * electric.el (electric-indent-post-self-insert-function):
2669 Don't reindent with a sloppy indentation function.
2670
2671 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
2672 border case in change-log-mode.
2673
2674 2010-09-04 Chong Yidong <cyd@stupidchicken.com>
2675
2676 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2677 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
2678 Recognize leading tab in gcc-include regexp. Ignore names with
2679 leading "from" or "in" in gnu regexp (Bug#6937).
2680
2681 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2682
2683 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
2684 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
2685 (ispell-start-process): Avoid setq and simplify logic.
2686 (ispell-init-process): Setup kill-buffer-hook locally when needed.
2687 (kill-buffer-hook): Don't use it globally with code that uses
2688 expand-file-name since that may call kill-buffer via
2689 code_conversion_restore.
2690
2691 2010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
2692
2693 * emacs-lisp/package.el (package-directory-list): Only call
2694 file-name-nondirectory on a string.
2695
2696 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
2697
2698 * emacs-lisp/package.el (package--download-one-archive):
2699 Ensure that archive-contents is valid before saving it.
2700 (package-activate-1, package-mark-obsolete, define-package)
2701 (package-compute-transaction, package-list-maybe-add): Use push.
2702
2703 2010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
2704
2705 Use SMIE's blink-paren for octave-mode.
2706 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
2707 Backslashes do not escape single-quotes, single-quotes do.
2708 (octave-block-else-regexp, octave-block-end-regexp)
2709 (octave-block-match-alist): Remove.
2710 (octave-smie-bnf-table): New var, with old content.
2711 (octave-smie-op-levels): Use it.
2712 (octave-smie-closer-alist): New var.
2713 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
2714 (octave-blink-matching-block-open): Remove.
2715 (octave-reindent-then-newline-and-indent, octave-electric-semi)
2716 (octave-electric-space): Let self-insert-command run expand-abbrev and
2717 blink parens.
2718
2719 * electric.el (electricity): New group.
2720 (electric-indent-chars): New var.
2721 (electric-indent-post-self-insert-function): New fun.
2722 (electric-indent-mode): New minor mode.
2723 (electric-pair-skip-self): New custom.
2724 (electric-pair-post-self-insert-function): New function.
2725 (electric-pair-mode): New minor mode.
2726
2727 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
2728 calcAlg-blink-matching-open.
2729 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
2730 (calc-do-alg-entry): Only touch the part of the keymap that varies.
2731 Use the new blink-matching-check-function.
2732
2733 Provide blink-matching support to SMIE.
2734 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
2735 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
2736 (smie-blink-matching-check, smie-blink-matching-open): New functions.
2737
2738 * simple.el (newline): Fix last change to properly remove itself from
2739 the hook.
2740
2741 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
2742
2743 * simple.el (newline): Eliminate optimization.
2744 Use post-self-insert-hook to set hard-newline and things before
2745 running post-self-insert-hook.
2746 (blink-matching-check-mismatch): New function.
2747 (blink-matching-check-function): New variable.
2748 (blink-matching-open): Use them.
2749 Skip back forward over prefix chars skipped by forward-sexp.
2750 Don't check if the parens are backslash escaped.
2751 (blink-paren-post-self-insert-function): Check backslash escaping here.
2752
2753 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
2754
2755 * emacs-lisp/package.el (package-menu-mode-map):
2756 Change package-menu-revert bindings to revert-buffer.
2757 (package-menu-mode): Set revert-buffer-function.
2758 (package-menu-revert): Doc fix.
2759
2760 2010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
2761
2762 * textmodes/ispell.el (ispell-init-process): Use "~/" as
2763 `default-directory' unless using Ispell per-directory personal
2764 dictionaries and not in a mini-buffer under XEmacs.
2765 (kill-buffer-hook): Do not kill ispell process on exit when
2766 `ispell-process-directory' is "~/". (Bug#6143)
2767
2768 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
2769
2770 * simple.el (kill-new): Call interprogram-cut-function with only
2771 one argument.
2772
2773 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
2774 Remove cut buffer from error message.
2775
2776 * term/x-win.el (x-select-text):
2777 * term/pc-win.el (x-selection-value):
2778 * term/ns-win.el (x-selection-value):
2779 * eshell/em-term.el:
2780 * w32-fns.el (x-get-selection-value):
2781 * mouse-sel.el (mouse-sel-set-selection-function):
2782 * frame.el (display-selections-p): Remove cut-buffer in documentation.
2783
2784 * term/x-win.el: Update documentation for x-last-selected-text-*.
2785 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
2786 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
2787 (x-select-text): Remove argument PUSH, update documentation. Remove
2788 cut-buffer code.
2789 (x-selection-value-internal): Was previously x-selection-value.
2790 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
2791 Update documentation, remove cut-buffer code. Call
2792 x-selection-value-internal.
2793 (x-clipboard-yank): Call x-selection-value-internal.
2794 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
2795
2796 * term/pc-win.el (x-last-selected-text):
2797 x-cut-buffer-or-selection-value renamed to x-selection-value
2798 (x-select-text): Remove argument PUSH, update documentation.
2799
2800 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
2801 x-cut-buffer-or-selection-value renamed to x-selection-value
2802 (x-selection-value): Renamed from x-cut-buffer-or-selection-value.
2803 (x-select-text): Remove argument PUSH, update documentation.
2804
2805 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
2806
2807 * w32-fns.el (x-last-selected-text):
2808 x-cut-buffer-or-selection-value renamed to x-selection-value.
2809 (x-cut-buffer-max): Remove.
2810 (x-select-text): Remove argument PUSH, update documentation.
2811
2812 * simple.el (interprogram-cut-function): Remove mention of PUSH.
2813
2814 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
2815
2816 * mouse-sel.el (mouse-sel-get-selection-function):
2817 x-cut-buffer-or-selection-value renamed to x-selection-value.
2818 (x-select-text): Remove optional push.
2819
2820 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
2821
2822 * simple.el (blink-paren-function): Move from C to here.
2823 (blink-paren-post-self-insert-function): New function.
2824 (post-self-insert-hook): Use it.
2825
2826 * emacs-lisp/pcase.el (pcase-split-memq):
2827 Fix overenthusiastic optimisation.
2828 (pcase-u1): Handle the case of a lambda pred.
2829
2830 2010-08-31 Kenichi Handa <handa@m17n.org>
2831
2832 * international/mule-cmds.el (standard-display-european-internal):
2833 Setup standard-display-table for 8-bit characters by storing 8-bit
2834 characters in the element vector.
2835
2836 * disp-table.el (standard-display-8bit):
2837 Setup standard-display-table for 8-bit characters by storing 8-bit
2838 characters in the element vector.
2839 (standard-display-european): Likewise.
2840
2841 2010-08-31 Masatake YAMATO <yamato@redhat.com>
2842
2843 * textmodes/nroff-mode.el (nroff-view): New command.
2844 (nroff-mode-map): Bind it to C-c C-c.
2845
2846 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
2847
2848 * emacs-lisp/smie.el (smie-down-list): New command.
2849
2850 Remove old indentation and navigation code on octave-mode.
2851 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
2852 smie-down-list rather than add a binding for octave-down-block.
2853 (octave-mark-block, octave-blink-matching-block-open):
2854 Rely on forward-sexp-function.
2855 (octave-fill-paragraph): Don't narrow, so you can use
2856 indent-according-to-mode.
2857 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
2858 (octave-in-block-p, octave-re-search-forward-kw)
2859 (octave-re-search-backward-kw, octave-indent-calculate)
2860 (octave-end-as-array-index-p, octave-block-end-offset)
2861 (octave-scan-blocks, octave-forward-block, octave-backward-block)
2862 (octave-down-block, octave-backward-up-block, octave-up-block)
2863 (octave-before-magic-comment-p, octave-indent-line): Remove.
2864
2865 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
2866
2867 * emacs-lisp/package.el (package--read-archive-file): Just use
2868 `read', to avoid copying an additional string.
2869 (package-menu-mode): Set header-line-format here.
2870 (package-menu-refresh, package-menu-revert): Signal an error if
2871 not in the Package Menu.
2872 (package-menu-package-list): New var.
2873 (package--generate-package-list): Operate on the current buffer;
2874 don't assume that it is *Packages*, since the user may rename it.
2875 Allow persistent package listings and sort keys using
2876 package-menu-package-list and package-menu-package-sort-key.
2877 (package-menu--version-predicate): Fix version calculation.
2878 (package-menu-sort-by-column): Don't select the window.
2879 (package--list-packages): Create the *Packages* buffer.
2880 Set package-menu-package-list-key.
2881 (list-packages): Sorting by status is now the default.
2882 (package-buffer-info): Use match-string-no-properties.
2883 (define-package): Add a &rest argument for future proofing, but
2884 don't use it yet.
2885 (package-install-from-buffer, package-install-buffer-internal):
2886 Merge into a single function, package-install-from-buffer.
2887 (package-install-file): Change caller.
2888
2889 * finder.el: Load finder-inf using `require'.
2890 (finder-list-matches): Sorting by status is now the default.
2891 (finder-compile-keywords): Simpify printing.
2892
2893 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
2894
2895 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
2896 (octave-mode-map): Remove special bindings for forward/backward-block
2897 and octave-backward-up-block. Use smie-close-block.
2898 (octave-continuation-marker-regexp): New var.
2899 (octave-continuation-regexp): Use it.
2900 (octave-operator-table, octave-smie-op-levels)
2901 (octave-operator-regexp, octave-smie-indent-rules): New vars.
2902 (octave-smie-backward-token, octave-smie-forward-token): New funs.
2903 (octave-mode): Use SMIE.
2904 (octave-close-block): Delete.
2905
2906 2010-08-30 Eli Zaretskii <eliz@gnu.org>
2907
2908 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
2909 CLIPBOARD, not in PRIMARY. (Bug#6944)
2910
2911 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
2912
2913 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
2914 a list of parents.
2915 (smie-indent-column): Allow indirection through variables.
2916
2917 * composite.el (save-buffer-state): Delete, unused.
2918 * font-lock.el (save-buffer-state): Use with-silent-modifications.
2919 (font-lock-default-fontify-region): Use with-syntax-table.
2920 * jit-lock.el (with-buffer-unmodified): Remove.
2921 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
2922
2923 Use `declare' in defmacros.
2924 * window.el (save-selected-window):
2925 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
2926 * progmodes/python.el (def-python-skeleton):
2927 * net/dbus.el (dbus-ignore-errors):
2928 * jka-cmpr-hook.el (with-auto-compression-mode):
2929 * international/mule.el (with-category-table):
2930 * emacs-lisp/timer.el (with-timeout):
2931 * emacs-lisp/lisp-mnt.el (lm-with-file):
2932 * emacs-lisp/eieio.el (with-slots):
2933 * emacs-lisp/easymenu.el (easy-menu-define):
2934 * emacs-lisp/debug.el (debugger-env-macro):
2935 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
2936 (Multiple-value-call, Multiple-value-prog1):
2937 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
2938 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
2939 edebug rule to definition.
2940 * emacs-lisp/lisp-mode.el (save-selected-window)
2941 (with-current-buffer, combine-after-change-calls)
2942 (with-output-to-string, with-temp-file, with-temp-buffer)
2943 (with-temp-message, with-syntax-table, read-if, eval-after-load)
2944 (dolist, dotimes, when, unless):
2945 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
2946
2947 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
2948
2949 * finder.el: Require `package'.
2950 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
2951 (finder-package-info): Var deleted.
2952 (finder-keywords-hash, finder--builtins-alist): New vars.
2953 (finder-compile-keywords): Compute package--builtins and
2954 finder-keywords-hash instead of finder-keywords-hash, respecting
2955 the "Package" header.
2956 (finder-unknown-keywords, finder-list-matches):
2957 Use finder-keywords-hash and package--list-packages.
2958 (finder-mode): Don't set font-lock-defaults.
2959 (finder-exit): We don't use "*Finder-package*" and "*Finder
2960 Category*" buffers anymore.
2961
2962 * emacs-lisp/package.el (package--builtins-base): Var deleted.
2963 (package--builtins): Set default value to nil.
2964 (package-initialize): Load precomputed value of package--builtins
2965 from finder-inf.el.
2966 (package-alist, package-compute-transaction)
2967 (package-download-transaction): Improve docstring.
2968 (package-read-all-archive-contents): Do not change
2969 package--builtins here.
2970 (list-packages): Make package-list-packages an alias for this.
2971 Sort by status by default.
2972 (package--list-packages): Add optional PACKAGES arg.
2973 (describe-package-1): Use font-lock-face property. For built-in
2974 packages, insert file commentary.
2975 (package--generate-package-list): Rename from
2976 package-list-packages-internal; all callers changed. Add optional
2977 PACKAGES arg. Add alphabetical sort fallbacks.
2978 (package-menu--version-predicate, package-menu--status-predicate)
2979 (package-menu--description-predicate)
2980 (package-menu--name-predicate): New functions.
2981
2982 * info.el (Info-finder-find-node): Search package-alist instead of
2983 finder-package-info.
2984
2985 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
2986
2987 * subr.el (version-regexp-alist): Don't use "a" and "b" for
2988 "alpha" and "beta".
2989 (version-to-list): Handle versions like "10.3d".
2990
2991 2010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2992
2993 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
2994 (macroexp-accumulate): Use `declare'.
2995
2996 2010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2997
2998 * whitespace.el (whitespace-style): Adjust type declaration.
2999
3000 2010-08-26 Magnus Henoch <magnus.henoch@gmail.com>
3001
3002 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
3003 empty argument to gvfs-copy.
3004
3005 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
3006
3007 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
3008 handle new TRASH arg of `delete-file'.
3009
3010 2010-08-26 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
3011
3012 * net/tramp.el (tramp-handle-insert-directory): Don't use
3013 `forward-word', its default syntax could be changed.
3014
3015 2010-08-26 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
3016 Michael Albinus <michael.albinus@gmx.de>
3017
3018 Implement compression for inline methods.
3019
3020 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
3021 (tramp-copy-size-limit): Allow also nil.
3022 (tramp-inline-compress-commands): New defconst.
3023 (tramp-find-inline-compress, tramp-get-inline-compress)
3024 (tramp-get-inline-coding): New defuns.
3025 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
3026 replaced by `tramp-get-inline-coding'.
3027 (tramp-handle-file-local-copy, tramp-handle-write-region)
3028 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
3029
3030 2010-08-26 Noah Lavine <noah549@gmail.com> (tiny change)
3031
3032 Detect ssh 'ControlMaster' argument automatically in some cases.
3033
3034 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
3035 (tramp-default-method): Use it.
3036
3037 2010-08-26 Karel Klíč <kklic@redhat.com>
3038
3039 * net/tramp.el (tramp-file-name-for-operation):
3040 Add file-selinux-context.
3041
3042 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
3043
3044 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
3045
3046 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
3047
3048 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
3049 (Bug#6907).
3050
3051 2010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
3052
3053 * progmodes/js.el: Make indentation more customizable (Bug#6914).
3054 (js-paren-indent-offset, js-square-indent-offset)
3055 (js-curly-indent-offset): New options.
3056 (js--proper-indentation): Use them.
3057
3058 2010-08-26 Daniel Colascione <dan.colascione@gmail.com>
3059
3060 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
3061 instead of inspecting font-lock properties (Bug#6916).
3062
3063 2010-08-26 David Reitter <david.reitter@gmail.com>
3064
3065 * server.el (server-visit-files): Run pre-command-hook and
3066 post-command-hook for each buffer while it is current (Bug#6910).
3067 (server-execute): Do not run hooks here.
3068
3069 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
3070
3071 Sync with Tramp 2.1.19.
3072
3073 * net/tramp-cmds.el (tramp-cleanup-all-connections)
3074 (tramp-reporter-dump-variable, tramp-load-report-modules)
3075 (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
3076 (tramp-bug): Recommend setting of `tramp-verbose' to 9.
3077
3078 * net/tramp-compat.el (top): Do not autoload
3079 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
3080 only when `start-file-process' is not bound.
3081 (byte-compile-not-obsolete-vars): Define if not bound.
3082 (tramp-compat-funcall): New defmacro.
3083 (tramp-compat-line-beginning-position)
3084 (tramp-compat-line-end-position)
3085 (tramp-compat-temporary-file-directory)
3086 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
3087 (tramp-compat-copy-file, tramp-compat-copy-directory)
3088 (tramp-compat-delete-file, tramp-compat-delete-directory)
3089 (tramp-compat-number-sequence, tramp-compat-process-running-p):
3090 Use it.
3091 (tramp-advice-file-expand-wildcards): Do not use
3092 `tramp-handle-file-remote-p'.
3093 (tramp-compat-make-temp-file): Simplify fallback implementation.
3094 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
3095 (tramp-compat-copy-tree): Remove function.
3096 (tramp-compat-delete-file): New defun.
3097 (tramp-compat-delete-directory): Provide implementation for older
3098 Emacsen.
3099 (tramp-compat-file-attributes): Handle only
3100 `wrong-number-of-arguments' error.
3101
3102 * net/tramp-fish.el (tramp-fish-handle-copy-file):
3103 Add PRESERVE_SELINUX_CONTEXT.
3104 (tramp-fish-handle-delete-file): Add TRASH arg.
3105 (tramp-fish-handle-directory-files-and-attributes):
3106 Do not use `tramp-fish-handle-file-attributes.
3107 (tramp-fish-handle-file-local-copy)
3108 (tramp-fish-handle-insert-file-contents)
3109 (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
3110
3111 * net/tramp-gvfs.el (top): Require url-util.
3112 (tramp-gvfs-mount-point): Remove.
3113 (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
3114 and `set-file-selinux-context'.
3115 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
3116 (tramp-gvfs-handle-file-selinux-context)
3117 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
3118 (with-tramp-dbus-call-method): Format trace message.
3119 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
3120 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
3121 Implement backup call, when operation on local files fails.
3122 Use progress reporter. Flush properties of changed files.
3123 (tramp-gvfs-handle-delete-file): Add TRASH arg. Use
3124 `tramp-compat-delete-file'.
3125 (tramp-gvfs-handle-expand-file-name): Expand "~/".
3126 (tramp-gvfs-handle-make-directory): Make more traces.
3127 (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
3128 (tramp-gvfs-url-file-name): Hexify file name in url.
3129 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
3130 into account for the resulting file name.
3131 (tramp-gvfs-handler-askquestion): Preserve current message, in
3132 order to let progress reporter continue afterwards. (Bug#6257)
3133 Return dummy mountpoint, when the answer is "no".
3134 See `tramp-gvfs-maybe-open-connection'.
3135 (tramp-gvfs-handler-mounted-unmounted)
3136 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
3137 attribute "default_location". Set "prefix" property.
3138 Handle default-location.
3139 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
3140 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
3141 exists. Raise an error, if not (due to a corresponding answer
3142 "no" in interactive questions, for example).
3143 Use `tramp-compat-funcall'.
3144
3145 * net/tramp-imap.el (top): Autoload `epg-make-context'.
3146 (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
3147 (tramp-imap-do-copy-or-rename-file)
3148 (tramp-imap-handle-insert-file-contents)
3149 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
3150 (tramp-imap-handle-delete-file): Add TRASH arg.
3151
3152 * net/tramp-smb.el (tramp-smb-handle-copy-file):
3153 Add PRESERVE-SELINUX-CONTEXT.
3154 (tramp-smb-handle-copy-file)
3155 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3156 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
3157 Use `with-progress-reporter'.
3158 (tramp-smb-handle-delete-file): Add TRASH arg.
3159
3160 * net/tramp.el (tramp-methods): Move hostname to the end in all
3161 ssh `tramp-login-args'. Add `tramp-async-args' attribute where
3162 appropriate.
3163 (tramp-verbose): Describe verbose level 9.
3164 (tramp-completion-function-alist)
3165 (tramp-file-name-regexp, tramp-chunksize)
3166 (tramp-local-coding-commands, tramp-remote-coding-commands)
3167 (with-connection-property, tramp-completion-mode-p)
3168 (tramp-action-process-alive, tramp-action-out-of-band)
3169 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
3170 (tramp-exists-file-name-handler): Fix docstring.
3171 (tramp-remote-process-environment): Use `format' instead of
3172 `concat'. Protect version string by apostroph.
3173 (tramp-shell-prompt-pattern): Do not use a shy group in case of
3174 XEmacs.
3175 (tramp-file-name-regexp-unified)
3176 (tramp-completion-file-name-regexp-unified): On W32 systems, do
3177 not regard the volume letter as remote filename. (Bug#5447)
3178 (tramp-perl-file-attributes)
3179 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
3180 (tramp-vc-registered-read-file-names): Read input as
3181 here-document, otherwise the command could exceed maximum length
3182 of command line.
3183 (tramp-file-name-handler-alist): Add `file-selinux-context' and
3184 `set-file-selinux-context'.
3185 (tramp-debug-message): Add `tramp-compat-funcall' to ignored
3186 backtrace functions.
3187 (tramp-error-with-buffer): Don't show the connection buffer when
3188 we are in completion mode.
3189 (tramp-progress-reporter-update, tramp-remote-selinux-p)
3190 (tramp-handle-file-selinux-context)
3191 (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
3192 (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
3193 New defuns.
3194 (with-progress-reporter): New defmacro.
3195 (tramp-debug-outline-regexp): New defconst.
3196 (top, tramp-rfn-eshadow-setup-minibuffer)
3197 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
3198 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
3199 (tramp-completion-mode-p, tramp-check-for-regexp)
3200 (tramp-open-connection-setup-interactive-shell)
3201 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
3202 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
3203 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
3204 Use `tramp-compat-funcall'.
3205 (tramp-handle-make-symbolic-link): Flush file properties.
3206 (tramp-handle-load, tramp-handle-file-local-copy)
3207 (tramp-handle-insert-file-contents, tramp-handle-write-region)
3208 (tramp-handle-vc-registered, tramp-maybe-send-script)
3209 (tramp-find-shell): Use `with-progress-reporter'.
3210 (tramp-do-file-attributes-with-stat): Add space in format string,
3211 in order to work around a bug in pdksh. Reported by Gilles Pion
3212 <gpion@lfdj.com>.
3213 (tramp-handle-verify-visited-file-modtime): Do not send a command
3214 when the connection is not established.
3215 (tramp-handle-set-file-times): Simplify the check for utc.
3216 (tramp-handle-directory-files-and-attributes)
3217 (tramp-get-remote-path): Use `copy-tree'.
3218 (tramp-completion-handle-file-name-all-completions): Ensure, that
3219 non remote files are still checked. Oops.
3220 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
3221 Handle PRESERVE-SELINUX-CONTEXT.
3222 (tramp-do-copy-or-rename-file): Add progress reporter.
3223 (tramp-do-copy-or-rename-file-directly): Do not use
3224 `tramp-handle-file-remote-p'.
3225 (tramp-do-copy-or-rename-file-out-of-band):
3226 Use `tramp-compat-delete-directory'.
3227 (tramp-do-copy-or-rename-file-out-of-band)
3228 (tramp-compute-multi-hops, tramp-maybe-open-connection):
3229 Use `format-spec-make'.
3230 (tramp-handle-delete-file): Add TRASH arg.
3231 (tramp-handle-dired-uncache): Flush directory cache, not only file
3232 cache.
3233 (tramp-handle-expand-file-name)
3234 (tramp-completion-handle-file-name-all-completions)
3235 (tramp-completion-handle-file-name-completion):
3236 Use `tramp-connectable-p'.
3237 (tramp-handle-start-file-process): Set connection property "vec".
3238 Use it, in order to invalidate file caches. Check only for
3239 `remote-tty' process property.
3240 Implement tty setting. (Bug#4604, Bug#6360)
3241 (tramp-file-name-for-operation): Add `call-process-region' and
3242 `set-file-selinux-context'.
3243 (tramp-find-foreign-file-name-handler)
3244 (tramp-advice-make-auto-save-file-name)
3245 (tramp-set-auto-save-file-modes): Remove superfluous check for
3246 `stringp'. This is done inside `tramp-tramp-file-p'.
3247 (tramp-file-name-handler): Trace 'quit. Catch the error for some
3248 operations when we are in completion mode. This gives the user
3249 the chance to correct the file name in the minibuffer.
3250 (tramp-completion-mode-p): Use `non-essential'.
3251 (tramp-handle-file-name-all-completions): Backward/ XEmacs
3252 compatibility: Use `completion-ignore-case' if
3253 `read-file-name-completion-ignore-case' does not exist.
3254 (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
3255 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
3256 `tramp-open-shell'.
3257 (tramp-action-password): Hide password prompt before next run.
3258 (tramp-process-actions): Widen connection buffer for the trace.
3259 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
3260 process property. Trace stty settings if `tramp-verbose' >= 9.
3261 Apply workaround for IRIX64 bug. Move argument of last
3262 `tramp-send-command' where it belongs to.
3263 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
3264 front of `login-args'.
3265 (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
3266 on "/dev/null" instead of "/".
3267 (tramp-get-ls-command-with-dired): Make test for "--dired"
3268 stronger.
3269 (tramp-set-auto-save-file-modes): Adapt version check.
3270 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
3271 (tramp-handle-process-file): Call the program in a subshell, in
3272 order to preserve working directory.
3273 (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
3274 `tramp-remote-sh' from `tramp-methods'.
3275 (tramp-get-ls-command): Make test for "--color=never" stronger.
3276 (tramp-check-for-regexp): Use (forward-line 1).
3277
3278 * net/trampver.el: Update release number.
3279
3280 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
3281
3282 * help.el (help-map): Bind `C-h P' to describe-package.
3283
3284 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
3285
3286 * emacs-lisp/package.el (package-refresh-contents): Catch errors
3287 when downloading archives.
3288 (describe-package-1): Add package commentary.
3289 (package-install-button-action): New function.
3290 (package-menu-mode-map): Bind ? to package-menu-describe-package.
3291 (package-menu-view-commentary): Function removed.
3292 (package-list-packages-internal): Hide the `package' package too.
3293
3294 2010-08-25 Kenichi Handa <handa@m17n.org>
3295
3296 * language/misc-lang.el ("Arabic"): New language environment.
3297 Setup composition-function-table for Arabic characters.
3298
3299 * international/fontset.el (setup-default-fontset): Fix typo for
3300 arabic OTF spec (fini->fina).
3301
3302 2010-08-25 Jan Djärv <jan.h.d@swipnet.se>
3303
3304 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
3305 on all frames.
3306
3307 2010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3308
3309 * whitespace.el: Allow cleaning up blanks without blank
3310 visualization (Bug#6651). Adjust help window for
3311 whitespace-toggle-options (Bug#6479). Allow to use fill-column
3312 instead of whitespace-line-column (from EmacsWiki). New version
3313 13.1.
3314 (whitespace-style): Added new value 'face. Adjust docstring.
3315 (whitespace-space, whitespace-hspace, whitespace-tab): Adjust
3316 foreground property face.
3317 (whitespace-line-column): Adjust docstring and type declaration.
3318 (whitespace-style-value-list, whitespace-toggle-option-alist)
3319 (whitespace-help-text): Adjust const initialization.
3320 (whitespace-toggle-options, global-whitespace-toggle-options):
3321 Adjust docstring.
3322 (whitespace-display-window, whitespace-interactive-char)
3323 (whitespace-style-face-p, whitespace-color-on): Adjust code.
3324 (whitespace-help-scroll): New fun.
3325
3326 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
3327
3328 * emacs-lisp/package.el (list-packages): Alias for
3329 package-list-packages.
3330
3331 2010-08-24 Kevin Ryde <user42@zip.com.au>
3332
3333 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
3334 (Bug#5651).
3335
3336 * progmodes/ruby-mode.el (ruby): Add defgroup.
3337
3338 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
3339
3340 * progmodes/python.el: Add Ipython support (Bug#5390).
3341 (python-shell-prompt-alist)
3342 (python-shell-continuation-prompt-alist): New options.
3343 (python--set-prompt-regexp): New function.
3344 (inferior-python-mode, run-python, python-shell): Require
3345 ansi-color. Use python--set-prompt-regexp to set the comint
3346 prompt based on the Python interpreter.
3347 (python--prompt-regexp): New var.
3348 (python-check-comint-prompt)
3349 (python-comint-output-filter-function): Use it.
3350 (run-python): Use a pipe (Bug#5694).
3351
3352 2010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
3353
3354 * progmodes/python.el (python-send-region): Send a different
3355 Python command if Ipython is in use.
3356 (python-check-version): Use a Python command to find the version.
3357
3358 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
3359
3360 * mouse.el (mouse-yank-primary): Avoid setting primary when
3361 deactivating the mark (Bug#6872).
3362
3363 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
3364
3365 * progmodes/python.el (python-block-pairs): Allow use of "finally"
3366 with "else" (Bug#3991).
3367
3368 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
3369
3370 * net/dbus.el: Accept UNIX domain sockets as bus address.
3371 (top): Don't initialize `dbus-registered-objects-table' anymore,
3372 this is done in dbusbind,c.
3373 (dbus-check-event): Adapt test for bus.
3374 (dbus-return-values-table, dbus-unregister-service)
3375 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
3376 Adapt doc string.
3377
3378 2010-08-23 Juanma Barranquero <lekktu@gmail.com>
3379
3380 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
3381
3382 2010-08-22 Juri Linkov <juri@jurta.org>
3383
3384 * simple.el (read-extended-command): New function with the logic
3385 for `completing-read' moved to Elisp from `execute-extended-command'.
3386 Use `function-called-at-point' in `minibuffer-default-add-function'
3387 to get a command name for M-n (bug#5364, bug#5214).
3388
3389 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3390
3391 * startup.el (command-line-1): Issue warning for ignored arguments
3392 --unibyte, etc (Bug#6886).
3393
3394 2010-08-22 Leo <sdl.web@gmail.com>
3395
3396 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
3397 (ignore, bright, dim, keyword): Split list of nicknames before
3398 passing to rcirc-add-or-remove (Bug#6894).
3399
3400 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3401
3402 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
3403
3404 2010-08-22 Leo <sdl.web@gmail.com>
3405
3406 Fix buffer-list rename&refresh after killing a buffer in ido.
3407 * ido.el: Revert Óscar's.
3408 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
3409 Remember the buffers at head, rather than their name.
3410 * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
3411
3412 2010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
3413 Stefan Monnier <monnier@iro.umontreal.ca>
3414
3415 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
3416 extra backslash added to each line (bug#6890).
3417
3418 2010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
3419
3420 * subr.el (read-key): Don't echo keystrokes (bug#6883).
3421
3422 2010-08-22 Glenn Morris <rgm@gnu.org>
3423
3424 * menu-bar.el (menu-bar-games-menu): Add landmark.
3425
3426 2010-08-22 Glenn Morris <rgm@gnu.org>
3427
3428 * align.el (align-regexp): Make group and spacing arguments
3429 use the interactive defaults when non-interactive. (Bug#6698)
3430
3431 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
3432 expansion, so as not to need sendmail.
3433 (mail-text-start): Remove declaration.
3434 (rmail-retry-failure): Require sendmail.
3435
3436 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3437
3438 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
3439
3440 2010-08-22 Michael Albinus <michael.albinus@gmx.de>
3441
3442 * progmodes/flymake.el (flymake-start-syntax-check-process):
3443 Use `start-file-process' in order to let it run also on remote hosts.
3444
3445 2010-08-22 Kenichi Handa <handa@m17n.org>
3446
3447 * files.el: Add `word-wrap' as safe local variable.
3448
3449 2010-08-22 Glenn Morris <rgm@gnu.org>
3450
3451 * woman.el (woman-translate): Case matters. (Bug#6849)
3452
3453 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3454
3455 * simple.el (kill-region): Doc fix (Bug#6787).
3456
3457 2010-08-22 Glenn Morris <rgm@gnu.org>
3458
3459 * calendar/diary-lib.el (diary-header-line-format):
3460 Fit it to the window, not the frame.
3461
3462 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
3463
3464 * subr.el (ignore-errors): Add debug declaration.
3465
3466 2010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
3467
3468 * whitespace.el (whitespace-color-off): Remove post-command-hook
3469 locally.
3470
3471 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
3472
3473 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
3474
3475 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
3476
3477 * cus-edit.el (custom-group-value-create): Add extra newline
3478 before end line (Bug#6876).
3479
3480 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
3481
3482 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
3483 when extending it. Before killing on the second click, check if
3484 the buffer is the correct one. Doc fix.
3485 (mouse-secondary-save-then-kill): Allow usage without first
3486 calling mouse-start-secondary, by defaulting to point. Don't save
3487 an empty secondary selection. Doc fix.
3488
3489 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3490
3491 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
3492 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
3493 New version 13.0.
3494 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
3495 Adjust initialization.
3496 (whitespace-bob-marker, whitespace-eob-marker)
3497 (whitespace-buffer-changed): New vars.
3498 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
3499 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
3500 (whitespace-post-command-hook, whitespace-display-char-on):
3501 Adjust code.
3502 (whitespace-looking-back, whitespace-buffer-changed): New funs.
3503 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
3504
3505 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
3506
3507 * files.el (locate-file-completion-table): Only list the .el and .elc
3508 extensions if there's no other choice (bug#5955).
3509
3510 * facemenu.el (facemenu-self-insert-data): New var.
3511 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
3512 New functions.
3513 (facemenu-add-face): Use them.
3514
3515 * simple.el (blink-matching-open): Obey forward-sexp-function.
3516
3517 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
3518
3519 * simple.el (prog-mode-map): New var.
3520 (prog-indent-sexp): New command.
3521
3522 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
3523
3524 * progmodes/prolog.el (smie): Require.
3525
3526 * emacs-lisp/smie.el (smie-default-backward-token)
3527 (smie-default-forward-token): Strip properties.
3528 (smie-next-sexp): Be more careful with associative operators.
3529 (smie-forward-sexp-command): Generalize.
3530 (smie-backward-sexp-command): Simplify.
3531 (smie-closer-alist): New var.
3532 (smie-close-block): New command.
3533 (smie-indent-debug-log): New var.
3534 (smie-indent-offset-rule): Add a few more cases.
3535 (smie-indent-column): New function.
3536 (smie-indent-after-keyword): Use it.
3537 (smie-indent-keyword): Use it.
3538 Fix up the opener code's point position.
3539 (smie-indent-comment): Only applies at BOL.
3540 (smie-indent-debug): New command.
3541
3542 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
3543 declarations that are useful before running the macro.
3544
3545 2010-08-18 Joakim Verona <joakim@verona.se>
3546
3547 * image.el (imagemagick-types-inhibit): New variable.
3548 (imagemagick-register-types): New function.
3549 * image-mode.el (image-transform-properties): New function.
3550 (image-transform-set-scale, image-transform-fit-to-height)
3551 (image-transform-set-rotation, image-transform-set-resize)
3552 (image-transform-fit-to-width, image-transform-fit-to-height):
3553 New functions.
3554 (image-toggle-display-image): Support image transforms.
3555
3556 2010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
3557
3558 * image.el (create-animated-image): Don't add heuristic mask to image
3559 (Bug#6839).
3560
3561 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
3562
3563 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
3564 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
3565
3566 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
3567
3568 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
3569
3570 Font-lock '...' strings, plus various simplifications and fixes.
3571 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
3572 (octave-font-lock-close-quotes): New function.
3573 (octave-font-lock-syntactic-keywords): New var.
3574 (octave-mode): Use it. Set beginning-of-defun-function.
3575 (octave-mode-map): Don't override the <foo>-defun commands.
3576 (octave-mode-menu): Pass it directly to easy-menu-define;
3577 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
3578 (octave-block-match-alist): Fix up last change so that
3579 octave-close-block uses the more specific keyword.
3580 (info-lookup-mode): Silence byte-compiler.
3581 (octave-beginning-of-defun): Not interactive any more.
3582 Optimize slightly.
3583 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
3584 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
3585 (octave-completion-at-point-function): Make sure point is within
3586 beg..end.
3587 (octave-reindent-then-newline-and-indent):
3588 Use reindent-then-newline-and-indent.
3589 (octave-add-octave-menu): Remove.
3590
3591 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
3592
3593 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
3594 (report-emacs-bug-can-use-xdg-email): New functions.
3595 (report-emacs-bug): Set can-xdg-email to result of
3596 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
3597 \C-cm to report-emacs-bug-insert-to-mailer and add help text
3598 about it.
3599
3600 * net/browse-url.el (browse-url-default-browser): Add cond
3601 for browse-url-xdg-open.
3602 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
3603
3604 2010-08-17 Glenn Morris <rgm@gnu.org>
3605
3606 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
3607 (c-fontify-recorded-types-and-refs): Define for compiler.
3608 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
3609 before use.
3610
3611 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
3612 Fix format call.
3613
3614 2010-08-17 Michael Albinus <michael.albinus@gmx.de>
3615
3616 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
3617 properties.
3618 (tramp-handle-process-file): Call the program in a subshell, in
3619 order to preserve working directory.
3620 (tramp-action-password): Hide password prompt before next run.
3621 (tramp-process-actions): Widen connection buffer for the trace.
3622
3623 2010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
3624
3625 * net/rcirc.el (rcirc-log-process-buffers): New option.
3626 (rcirc-print): Use it.
3627 (rcirc-generate-log-filename): New function.
3628 (rcirc-log-filename-function): Change default to
3629 rcirc-generate-log-filename (Bug#6828).
3630
3631 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
3632
3633 * simple.el (deactivate-mark): If select-active-regions is `only',
3634 only set selection for temporarily active regions.
3635
3636 * cus-start.el: Change defcustom for select-active-regions.
3637
3638 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
3639
3640 * mouse.el (mouse--drag-set-mark-and-point): New function.
3641 (mouse-drag-track): Use LOCATION arg to push-mark.
3642 Use mouse--drag-set-mark-and-point to take click-count into
3643 consideration when updating point and mark (Bug#6840).
3644
3645 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
3646
3647 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3648 Give the Ruby rule a lower priority than Gnu (Bug#6778).
3649
3650 2010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
3651
3652 * font-lock.el (lisp-font-lock-keywords-2):
3653 Add combine-after-change-calls, condition-case-no-debug,
3654 with-demoted-errors, and with-silent-modifications (Bug#6025).
3655
3656 2010-08-14 Kevin Ryde <user42@zip.com.au>
3657
3658 * emacs-lisp/copyright.el (copyright-update-year)
3659 (copyright-update): Temporary switch-to-buffer to ensure the
3660 buffer change being queried is visible (Bug#5394).
3661
3662 2010-08-14 Tom Tromey <tromey@redhat.com>
3663
3664 * progmodes/etags.el (tags-file-name): Mark safe if stringp
3665 (Bug#6733).
3666
3667 2010-08-14 Eli Zaretskii <eliz@gnu.org>
3668
3669 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
3670 MS-DOS. (Bug#6689)
3671
3672 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
3673
3674 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
3675 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
3676 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
3677 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
3678 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
3679 Call menu-bar-set-tool-bar-position.
3680
3681 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3682
3683 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
3684 comment style (bug#6834).
3685 * progmodes/scheme.el (scheme-mode-syntax-table):
3686 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
3687 "b" flag in "' 14b" syntax.
3688
3689 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
3690 for (un)commenting the region and performing completion.
3691 (octave-mode-menu): Use standard commands for help and completion.
3692 (octave-mode-syntax-table): Support %{..%} comments (sort of).
3693 (octave-mode): Use define-derived-mode.
3694 Set completion-at-point-functions and don't set columns.
3695 Don't disable adaptive-fill-regexp.
3696 (octave-describe-major-mode, octave-comment-region)
3697 (octave-uncomment-region, octave-comment-indent)
3698 (octave-indent-for-comment): Remove.
3699 (octave-indent-calculate): Rename from calculate-octave-indent.
3700 (octave-indent-line, octave-fill-paragraph): Update caller.
3701 (octave-initialize-completions): No need to make an alist.
3702 (octave-completion-at-point-function): New function.
3703 (octave-complete-symbol): Use it.
3704 (octave-insert-defun): Use define-skeleton.
3705
3706 * progmodes/octave-mod.el (octave-mode): Set comment-add.
3707 (octave-mode-map): Use comment-dwim (bug#6829).
3708
3709 2010-08-12 Antoine Levitt <antoine.levitt@gmail.com> (tiny change)
3710
3711 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
3712 indentation of inserted comment.
3713
3714 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
3715
3716 * faces.el (region): Add type gtk that uses gtk colors.
3717
3718 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
3719 Handle theme-name change.
3720
3721 2010-08-10 Michael R. Mauger <mmaug@yahoo.com>
3722
3723 * progmodes/sql.el: Version 2.5
3724 (sql-product-alist): Add :prompt-cont-regexp property for several
3725 database products.
3726 (sql-prompt-cont-regexp): New variable.
3727 (sql-output-newline-count, sql-output-by-send):
3728 New variables. Record number of newlines in input text.
3729 (sql-send-string): Handle multiple filters and count newlines.
3730 (sql-send-magic-terminator): Count terminator newline.
3731 (sql-interactive-remove-continuation-prompt): Filters output to
3732 remove continuation prompts; one for each newline.
3733 (sql-interactive-mode): Set up new variables, prompt regexp and
3734 output filter.
3735 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
3736 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
3737
3738 2010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
3739
3740 * emacs-lisp/pcase.el: New file.
3741
3742 2010-08-10 Michael Albinus <michael.albinus@gmx.de>
3743
3744 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
3745 as here-document, otherwise the command could exceed maximum
3746 length of command line.
3747 (tramp-handle-vc-registered): Call script accordingly.
3748 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
3749
3750 2010-08-10 Kenichi Handa <handa@m17n.org>
3751
3752 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
3753 composable pattern.
3754
3755 2010-08-09 Chong Yidong <cyd@stupidchicken.com>
3756
3757 * emacs-lisp/package.el (package-version-split)
3758 (package--version-first-nonzero, package-version-compare):
3759 Functions removed.
3760 (package-directory-list, package-load-all-descriptors)
3761 (package--built-in, package-activate, define-package)
3762 (package-installed-p, package-compute-transaction)
3763 (package-read-all-archive-contents)
3764 (package--add-to-archive-contents, package-buffer-info)
3765 (package-tar-file-info, package-list-packages-internal):
3766 Use version-to-list and version-list-*.
3767
3768 * emacs-lisp/package-x.el (package-upload-buffer-internal):
3769 Use version-to-list.
3770 (package-upload-buffer-internal): Use version-list-<=.
3771
3772 2010-08-09 Kenichi Handa <handa@m17n.org>
3773
3774 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
3775 composable pattern.
3776
3777 2010-08-08 Chong Yidong <cyd@stupidchicken.com>
3778
3779 * tutorial.el (tutorial--default-keys): C-d is now bound to
3780 delete-forward-char (Bug#6826).
3781
3782 * mouse.el (mouse-drag-track): Remove accidentally-removed check
3783 for `double' value of mouse-1-click-follows-link (Bug#6807).
3784
3785 2010-08-08 Johan Bockgård <bojohan@gnu.org>
3786
3787 * replace.el (replace-highlight): Bind isearch-forward and
3788 isearch-error, ensuring that highlighting is updated if the user
3789 switches the search direction (Bug#6808).
3790
3791 * isearch.el (isearch-lazy-highlight-forward): New var.
3792 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
3793 (isearch-lazy-highlight-update): Use it.
3794
3795 2010-08-08 Kenichi Handa <handa@m17n.org>
3796
3797 * international/mule.el (define-charset): Store NAME as :base property.
3798 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
3799 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
3800 current priority. Force using the designation of the specific
3801 charset by adding `charset' text property. Improve the whole algorithm.
3802
3803 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3804
3805 * emulation/pc-select.el (pc-selection-mode-hook)
3806 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
3807 (pc-selection-mode): Fix typos in docstrings.
3808
3809 2010-08-08 Kenichi Handa <handa@m17n.org>
3810
3811 * language/cyrillic.el: Don't add "microsoft-cp1251" to
3812 ctext-non-standard-encodings-alist here.
3813
3814 * international/mule.el (ctext-non-standard-encodings-alist):
3815 Add "koi8-r" and "microsoft-cp1251".
3816 (ctext-standard-encodings): New variable.
3817 (ctext-non-standard-encodings-table): List only elements for
3818 non-standard encodings.
3819 (ctext-pre-write-conversion): Adjust for the above change.
3820 Check ctext-standard-encodings.
3821
3822 * international/mule-conf.el (compound-text): Doc fix.
3823 (ctext-no-compositions): Doc fix.
3824 (compound-text-with-extensions): Doc fix.
3825
3826 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3827
3828 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
3829
3830 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3831
3832 * progmodes/which-func.el (which-func-format): Split help-echo text
3833 into lines, like other mode-line tooltips.
3834
3835 * server.el (server-start): When using TCP sockets, force IPv4
3836 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
3837
3838 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3839
3840 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
3841
3842 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3843
3844 * term.el (term-delimiter-argument-list): Reflow docstring.
3845 (term-read-input-ring, term-write-input-ring, term-send-input)
3846 (term-bol, term-erase-in-display, serial-supported-or-barf):
3847 Fix typos in docstrings.
3848
3849 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3850
3851 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
3852
3853 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3854
3855 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
3856
3857 2010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
3858
3859 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
3860 Fix typo in docstring (bug#6747).
3861
3862 2010-08-08 Leo <sdl.web@gmail.com>
3863
3864 * eshell/esh-io.el (eshell-get-target): Better detection of
3865 read-only file (Bug#6762).
3866
3867 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3868
3869 * align.el (align-default-spacing): Doc fix.
3870 (align-region-heuristic, align-regexp): Fix typos in docstrings.
3871
3872 2010-08-08 Stephen Peters <speters@itasoftware.com>
3873
3874 * calendar/icalendar.el
3875 (icalendar--split-value): Fix splitting regexp. (Bug#6766)
3876 (icalendar--get-weekday-numbers): New.
3877 (icalendar--convert-recurring-to-diary): Handle multiple byday
3878 values in weekly rules. (Bug#6766)
3879
3880 2010-08-08 Ulf Jasper <ulf.jasper@web.de>
3881
3882 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
3883 (icalendar--create-uid, icalendar-export-region)
3884 (icalendar--parse-summary-and-rest): Code formatting.
3885
3886 2010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
3887
3888 * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
3889 to italicize headers.
3890 (calc-highlight-selections-with-faces): New variable.
3891 (calc-selected-face, calc-nonselected-face): New faces.
3892
3893 * calc/calccomp.el (math-comp-highlight-string): Use
3894 `calc-highlight-selections-with-faces' to determine how to highlight
3895 sub-formulas.
3896
3897 * calc/calc-sel.el (calc-show-selections): Change message to when
3898 using faces to highlight selections.
3899
3900 2010-08-07 Michael R. Mauger <mmaug@yahoo.com>
3901
3902 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
3903 Add SQLite 3 keywords, functions and datatypes.
3904 (sql-interactive-mode): Remove `comint-process-echoes' set to t
3905 (Bug#6686).
3906
3907 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
3908
3909 * simple.el (select-active-regions): Move to keyboard.c.
3910 (deactivate-mark): Used saved-region-selection.
3911 (select-active-region): Function removed.
3912 (activate-mark, set-mark, push-mark-command)
3913 (handle-shift-selection): Don't call it.
3914 (keyboard-quit): Avoid adding the region to the window selection.
3915
3916 * mouse.el (mouse-drag-track): Remove hacks to deal with old
3917 select-active-regions implementation.
3918 (mouse-yank-at-click): Doc fix.
3919
3920 * cus-start.el: Add custom declaration for select-active-regions.
3921
3922 2010-08-07 Eli Zaretskii <eliz@gnu.org>
3923
3924 * simple.el (delete-forward-char): Doc fix.
3925
3926 * tutorial.el (help-with-tutorial): Hack safe file-local variables
3927 after reading the tutorial.
3928
3929 2010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
3930
3931 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph): Fix
3932 for the case that a C style comment has its delimiters alone on
3933 their respective lines.
3934
3935 2010-08-06 Michael Albinus <michael.albinus@gmx.de>
3936
3937 * net/tramp.el (tramp-handle-start-file-process): Set connection
3938 property "vec".
3939 (tramp-process-sentinel): Use it for flushing the cache. We
3940 cannot do it via the process buffer, the buffer could be deleted
3941 already when running the sentinel.
3942
3943 2010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
3944
3945 * comint.el (comint-mode): Make directory tracking functions
3946 functional on remote files. (Bug#6764)
3947
3948 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
3949
3950 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
3951
3952 2010-08-05 Eli Zaretskii <eliz@gnu.org>
3953
3954 * emacs-lisp/find-gc.el (find-gc-source-files): Rename
3955 unexec.c => unexcoff.c.
3956
3957 * emacs-lisp/authors.el (authors-fixed-entries): Rename
3958 unexec.c => unexcoff.c.
3959
3960 2010-08-05 Michael Albinus <michael.albinus@gmx.de>
3961
3962 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
3963 cache, not only file cache.
3964 (tramp-process-sentinel): New defun.
3965 (tramp-handle-start-file-process): Use it, in order to invalidate
3966 file caches.
3967
3968 2010-08-03 Leo <sdl.web@gmail.com>
3969
3970 * server.el (server-start): Simplify loop.
3971
3972 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
3973
3974 * frame.el (screen-height, screen-width, set-screen-width)
3975 (set-screen-height): Remove ancient compatibility aliases.
3976
3977 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
3978 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
3979
3980 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
3981 that change current buffer.
3982
3983 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3984
3985 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
3986 beginning of the string. Use `string-match-p'. (Bug#6765)
3987
3988 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
3989
3990 * cus-start.el (x-gtk-use-system-tooltips): New variable.
3991
3992 2010-08-01 Chong Yidong <cyd@stupidchicken.com>
3993
3994 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
3995 (package--builtins): Tweak descriptions.
3996 (package-print-package): Upcase descriptions if necessary.
3997 Show all built-in packages in font-lock-builtin-face.
3998 (package-list-packages-internal): Omit "emacs" package.
3999 Show status of built-in packages as "built-in".
4000
4001 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
4002
4003 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
4004 before killing to preserve the primary selection (Bug#6701).
4005
4006 * term/x-win.el (x-select-text): Doc fix.
4007
4008 2010-07-31 Nathaniel Flath <flat0103@gmail.com>
4009
4010 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
4011 The following functions were modified or created:
4012
4013 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
4014 (objc-font-lock-extra-types):
4015 * progmodes/cc-mode.el (c-basic-common-init):
4016 * progmodes/cc-langs.el (c-make-mode-syntax-table)
4017 (c++-make-template-syntax-table)
4018 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
4019 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
4020 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
4021 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
4022 * progmodes/cc-fonts.el (c-make-inverse-face)
4023 (c-basic-matchers-after):
4024 * progmodes/cc-engine.el (c-forward-keyword-clause)
4025 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
4026 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
4027 (c-guess-continued-construct, c-guess-basic-syntax):
4028
4029 2010-07-31 Jan Djärv <jan.h.d@swipnet.se>
4030
4031 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
4032
4033 2010-07-31 Eli Zaretskii <eliz@gnu.org>
4034
4035 * files.el (bidi-paragraph-direction): Define safe local values.
4036
4037 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
4038 language-info-alist. Remove outdated FIXME in a comment.
4039
4040 2010-07-31 Alan Mackenzie <acm@muc.de>
4041
4042 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
4043 Auto-fill broken in C/C++ modes.
4044
4045 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
4046
4047 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
4048 (menu-bar-showhide-tool-bar-menu-customize-disable)
4049 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
4050 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
4051 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
4052 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
4053 make a menu for Options => toolbar that can move it.
4054
4055 2010-07-29 Chong Yidong <cyd@stupidchicken.com>
4056
4057 * emacs-lisp/package-x.el (package--make-rss-entry):
4058 (package-maint-add-news-item, package--update-news)
4059 (package-upload-buffer-internal): New arg ARCHIVE-URL.
4060
4061 * emacs-lisp/package.el (package-archive-url): Rename from
4062 package-archive-id.
4063 (package-install): Doc fix.
4064 (package-download-single, package-download-tar, package-install)
4065 (package-menu-view-commentary): Callers changed.
4066
4067 2010-07-29 Michael Albinus <michael.albinus@gmx.de>
4068
4069 * net/tramp.el (tramp-handle-start-file-process): Check only for
4070 `remote-tty' process property.
4071 (tramp-open-shell): Don't check for tty.
4072 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
4073 process property.
4074
4075 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
4076 host.
4077
4078 2010-07-28 Chong Yidong <cyd@stupidchicken.com>
4079
4080 * emacs-lisp/package.el (package-load-list, package-archives)
4081 (package-archive-contents, package-user-dir)
4082 (package-directory-list, package--builtins, package-alist)
4083 (package-activated-list, package-obsolete-alist): Mark as risky.
4084
4085 2010-07-28 Phil Hagelberg <phil@evri.com>
4086
4087 Add support for non-default package repositories.
4088 * emacs-lisp/package.el (package-archive-base): Var deleted.
4089 (package-archives): New variable.
4090 (package-archive-contents): Doc fix.
4091 (package-load-descriptor): Do nothing if descriptor file is missing.
4092 (package--write-file-no-coding): New function.
4093 (package-unpack-single): Use it.
4094 (package-archive-id): New function.
4095 (package-download-single, package-download-tar)
4096 (package-menu-view-commentary): Use it.
4097 (package-installed-p): Make second argument optional.
4098 (package-read-all-archive-contents): New function.
4099 (package-initialize): Use it.
4100 (package-read-archive-contents): Add ARCHIVE argument.
4101 (package--add-to-archive-contents): New function.
4102 (package-install): Don't call package-read-archive-contents.
4103 (package--download-one-archive): Store archive file in a
4104 subdirectory of package-user-dir.
4105 (package-menu-execute): Remove spurious line movement.
4106
4107 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
4108
4109 * cus-start.el (tool-bar-style): Add text-image-horiz.
4110
4111 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
4112
4113 * progmodes/gud.el (gud-common-init): Check for remoteness of
4114 `file', and not of `default-directory'.
4115
4116 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
4117
4118 * net/tramp.el (tramp-methods): Move hostname to the end in all
4119 ssh `tramp-login-args'.
4120 (tramp-verbose): Describe verbose level 9.
4121 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
4122 (tramp-open-connection-setup-interactive-shell): Trace stty
4123 settings if `tramp-verbose' >= 9.
4124 (tramp-handle-start-file-process): Implement tty setting.
4125 (Bug#4604, Bug#6360)
4126
4127 * net/tramp-cmds.el (tramp-bug): Recommend setting of
4128 `tramp-verbose' to 9.
4129
4130 2010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
4131
4132 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
4133 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
4134 Remove references to package `lisp-re' (bug#4369).
4135
4136 2010-07-27 Tom Tromey <tromey@redhat.com>
4137
4138 * progmodes/js.el (js-mode):
4139 * progmodes/make-mode.el (makefile-mode):
4140 * progmodes/simula.el (simula-mode):
4141 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
4142
4143 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
4144
4145 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
4146
4147 * time.el (display-time-day-and-date): Remove spurious * in docstring.
4148 (display-time-world-buffer-name, display-time-world-mode-map):
4149 Fix typos in docstrings.
4150
4151 2010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
4152
4153 * image-mode.el (image-display-size): New function.
4154 (image-forward-hscroll, image-next-line, image-eol, image-eob)
4155 (image-mode-fit-frame): Use it (Bug#6639).
4156
4157 2010-07-27 Chong Yidong <cyd@stupidchicken.com>
4158
4159 * dired.el (dired-buffers-for-dir): Handle list values of
4160 dired-directory (Bug#6636).
4161
4162 2010-07-26 Sam Steingold <sds@gnu.org>
4163
4164 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
4165 Do not call `x-get-selection' the second time, reuse the value.
4166
4167 2010-07-26 Daiki Ueno <ueno@unixuser.org>
4168
4169 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
4170 which consist of control chars only. Suggested by Richard Stallman.
4171
4172 2010-07-25 Daiki Ueno <ueno@unixuser.org>
4173
4174 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
4175 exists before passing an error to find-file-not-found-functions
4176 (bug#6723).
4177
4178 2010-07-23 Lukas Huonker <l.huonker@gmail.com>
4179
4180 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
4181 Remove leading nil element, adjust values.
4182 (tetris-shapes, tetris-shape-scores):
4183 Change representation of shapes and remove some redundancy.
4184 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
4185 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
4186 Adjust for working with new representation of shapes.
4187 (tetris-shape-rotations): New function.
4188 (tetris-move-bottom, tetris-move-left, tetris-move-right)
4189 (tetris-rotate-prev, tetris-rotate-next):
4190 Adjust for working with the new version of tetris-test-shape.
4191
4192 2010-07-23 Markus Triska <markus.triska@gmx.at>
4193
4194 * progmodes/ps-mode.el: Use comint (bug#5954).
4195 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
4196 (ps-mode-other-newline): Simplify.
4197 (ps-run-mode): Derive from comint-mode instead of
4198 fundamental-mode, yielding input history etc.
4199 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
4200 (ps-run-send-string): Adapt for comint-mode.
4201 (ps-run-newline): Remove now unneeded function.
4202
4203 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
4204
4205 * net/tramp.el (tramp-methods): Move hostname to the end in all
4206 plink `tramp-login-args'.
4207
4208 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
4209
4210 * net/tramp.el (tramp-open-shell): New defun.
4211 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
4212 Use it.
4213
4214 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
4215
4216 * net/tramp.el (tramp-file-name-regexp-unified)
4217 (tramp-completion-file-name-regexp-unified): On W32 systems, do
4218 not regard the volume letter as remote filename. (Bug#5447)
4219
4220 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
4221
4222 * custom.el (custom-declare-variable): Give a clearer error message
4223 when the docstring is missing (bug#6476).
4224
4225 2010-07-22 Michael R. Mauger <mmaug@yahoo.com>
4226
4227 * progmodes/sql.el: Version 2.4. Improved Login prompting.
4228 (sql-login-params): New widget definition.
4229 (sql-oracle-login-params, sql-mysql-login-params)
4230 (sql-solid-login-params, sql-sybase-login-params)
4231 (sql-informix-login-params, sql-ingres-login-params)
4232 (sql-ms-login-params, sql-postgres-login-params)
4233 (sql-interbase-login-params, sql-db2-login-params)
4234 (sql-linter-login-params): Use it.
4235 (sql-sqlite-login-params): Use it; Define "database" parameter as
4236 a file name.
4237 (sql-sqlite-program): Change to "sqlite3".
4238 (sql-comint-sqlite): Make sure database name is complete.
4239 (sql-for-each-login): New function.
4240 (sql-connect, sql-save-connection): Use it.
4241 (sql-get-login-ext): New function.
4242 (sql-get-login): Use it.
4243 (sql-make-alternate-buffer-name): Handle :file parameters.
4244
4245 2010-07-22 Juanma Barranquero <lekktu@gmail.com>
4246
4247 * dired.el (dired-no-confirm): Document value t and fix defcustom to
4248 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
4249
4250 2010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
4251
4252 * dired.el (dired-mode-map): Use command remapping (bug#6632).
4253
4254 2010-07-22 Lawrence Mitchell <wence@gmx.li>
4255
4256 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
4257
4258 2010-07-21 Michael Albinus <michael.albinus@gmx.de>
4259
4260 * net/tramp.el (tramp-get-ls-command)
4261 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
4262 instead of "/".
4263
4264 2010-07-20 Michael R. Mauger <mmaug@yahoo.com>
4265
4266 * progmodes/sql.el: Version 2.3.
4267 (sql-connection-alist): Changed keys from symbols to strings;
4268 enhanced the widget definition.
4269 (sql-mode-menu): Added submenu to select connections.
4270 (sql-interactive-mode-menu): Added "Save Connection" item.
4271 (sql-add-product): Fixed menu item.
4272 (sql-get-product-feature): Improved error handling.
4273 (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
4274 (sql-make-alternate-buffer-name): Simplified.
4275 (sql-product-interactive): Handle missing product.
4276 (sql-connect): Support string keys, minor improvements.
4277 (sql-save-connection): New function.
4278 (sql-connection-menu-filter): New function.
4279
4280 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
4281
4282 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
4283 (tramp-open-connection-setup-interactive-shell): Apply
4284 workaround for IRIX64 bug. Move argument of last
4285 `tramp-send-command' where it belongs to.
4286
4287 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
4288
4289 * net/tramp.el (tramp-perl-file-attributes)
4290 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
4291 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
4292 front of `login-args'.
4293
4294 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
4295
4296 * time.el (display-time-world-mode): Define with `define-derived-mode'.
4297 Set `show-trailing-whitespace' to nil.
4298 (display-time-world-display): Simplify.
4299
4300 2010-07-18 Alan Mackenzie <acm@muc.de>
4301
4302 Enhance `c-file-style' in file/directory local variables.
4303 * progmodes/cc-mode.el (c-count-cfss): New function.
4304 (c-before-hack-hook): Call `c-set-style' differently according to
4305 whether c-file-style was set in file or directory local
4306 variables.
4307
4308 2010-07-18 Michael R. Mauger <mmaug@yahoo.com>
4309
4310 * progmodes/sql.el: Version 2.2.
4311 (sql-product, sql-user, sql-database, sql-server, sql-port): Use
4312 defcustom :safe keyword rather than putting safe-local-variable
4313 property.
4314 (sql-password): Use defcustom :risky keyword rather than putting
4315 risky-local-variable property.
4316 (sql-oracle-login-params, sql-sqlite-login-params)
4317 (sql-solid-login-params, sql-sybase-login-params)
4318 (sql-informix-login-params, sql-ingres-login-params)
4319 (sql-ms-login-params, sql-postgres-login-params)
4320 (sql-interbase-login-params, sql-db2-login-params)
4321 (sql-linter-login-params): Add `port' option.
4322 (sql-get-product-feature): Added NO-INDIRECT parameter.
4323 (sql-comint-oracle, sql-comint-sybase)
4324 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
4325 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
4326 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
4327 (sql-comint-linter): Renamed sql-connect-* functions to
4328 sql-comint-*.
4329 (sql-product-alist, sql-mode-menu): Renamed as above and
4330 :sqli-connect-func to :sqli-comint-func.
4331 (sql-connection): New variable.
4332 (sql-interactive-mode): Set it.
4333 (sql-connection-alist): New variable.
4334 (sql-connect): New function.
4335 (sql--alt-buffer-part, sql--alt-if-not-empty)
4336 (sql-make-alternate-buffer-name): Improved alternative buffer name.
4337
4338 2010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4339
4340 * image-mode.el (image-bookmark-make-record): Do not set context
4341 in an image (Bug#6650).
4342
4343 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
4344
4345 * simple.el (select-active-region): New function.
4346 (push-mark-command, set-mark, activate-mark)
4347 (handle-shift-selection): Use it.
4348 (deactivate-mark): Don't check for size of region.
4349
4350 * mouse.el (mouse-drag-track): Use select-active-region.
4351
4352 2010-07-17 Michael Albinus <michael.albinus@gmx.de>
4353
4354 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
4355 "--dired" stronger.
4356
4357 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
4358
4359 * term/x-win.el (x-select-enable-primary): Change default to nil.
4360 (x-select-enable-clipboard): Add :version keyword.
4361
4362 * mouse.el (mouse-drag-copy-region):
4363 * simple.el (select-active-regions): Likewise.
4364
4365 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
4366
4367 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
4368 (vc-coding-system-for-diff): Use it to decide whether to inherit
4369 from the file the EOL format for reading the diffs of that file.
4370 (Bug#4451)
4371
4372 2010-07-16 Eli Zaretskii <eliz@gnu.org>
4373
4374 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
4375 unibyte, so compressed attachments are not compressed again.
4376
4377 2010-07-16 Michael Albinus <michael.albinus@gmx.de>
4378
4379 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
4380 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
4381 (tramp-find-shell): Simplify setting connection property.
4382 (tramp-get-ls-command): Make test for "--color=never" stronger.
4383
4384 2010-07-15 Simon South <ssouth@member.fsf.org>
4385
4386 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
4387 blocks within record declarations (i.e. variant parts) correctly.
4388
4389 2010-07-15 Simon South <ssouth@member.fsf.org>
4390
4391 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
4392 over literal tokens when parsing so newlines aren't "absorbed" by
4393 single-line comments. Corrects the indentation of case blocks
4394 that have a comment on the first line.
4395
4396 2010-07-14 Karl Fogel <kfogel@red-bean.com>
4397
4398 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
4399 by Drew Adams (Bug#5504).
4400
4401 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
4402
4403 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
4404 now that Unicode is used (Bug#6594).
4405
4406 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
4407
4408 * term/x-win.el (x-select-enable-clipboard): Default to t.
4409 (x-initialize-window-system): Don't overwrite Paste menu item.
4410
4411 * simple.el (select-active-regions): Default to t.
4412 (push-mark-command): Don't overwrite primary with empty string.
4413
4414 * mouse.el: Bind mouse-2 to mouse-yank-primary.
4415 (mouse-drag-copy-region): Default to nil.
4416
4417 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
4418 Cut/Copy/Paste menu bar items.
4419
4420 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4421
4422 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
4423 Patch applied by Karl Fogel.
4424
4425 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
4426 and `bookmark-current-buffer' if they have been already set in
4427 another buffer (e.g gnus-art).
4428
4429 2010-07-13 Karl Fogel <kfogel@red-bean.com>
4430 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4431
4432 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
4433
4434 * bookmark.el (bookmark-make-record-default): Allow unneeded
4435 information to be omitted from the record.
4436
4437 Adjust declarations and calls:
4438
4439 * info.el (bookmark-make-record-default): Adjust declaration.
4440 (Info-bookmark-make-record): Adjust call.
4441
4442 * woman.el (bookmark-make-record-default): Adjust declaration.
4443 (woman-bookmark-make-record): Adjust call.
4444
4445 * man.el (bookmark-make-record-default): Adjust declaration.
4446 (Man-bookmark-make-record): Adjust call.
4447
4448 * image-mode.el (bookmark-make-record-default): Adjust declaration.
4449
4450 * doc-view.el (bookmark-make-record-default): Adjust declaration.
4451
4452 2010-07-13 Karl Fogel <kfogel@red-bean.com>
4453
4454 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
4455 This is also from Thierry Volpiatto's patch in bug #6444. However,
4456 because it was extraneous to the functional change in that patch,
4457 and causes a re-indendation, I am committing it separately.
4458
4459 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4460
4461 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
4462 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
4463 Patch applied by Karl Fogel (Bug#6444).
4464
4465 2010-07-13 Chong Yidong <cyd@stupidchicken.com>
4466
4467 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
4468
4469 2010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
4470
4471 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
4472 Dempsky; bug#5084). Remove incorrect binding for S-tab.
4473 (ns-alternatives-map): Change S-tab binding to backtab
4474 (bug#6616).
4475
4476 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
4477 under ns.
4478
4479 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
4480
4481 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
4482 (Bug#5806)
4483
4484 * language/tv-util.el (tai-viet-re): Remove format.
4485
4486 2010-07-12 Kenichi Handa <handa@m17n.org>
4487
4488 * language/hebrew.el: Remove no-byte-compile declaration.
4489 Change coding: tag to utf-8. Register hebrew-shape-gstring in
4490 composition-function-table for 3-character looking back.
4491 (hebrew-font-get-precomposed): New function.
4492 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
4493
4494 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
4495
4496 * mouse.el (mouse-drag-track): Handle select-active-regions
4497 (Bug#6612).
4498
4499 2010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
4500
4501 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
4502 empty argument to gvfs-copy.
4503
4504 2010-07-10 Glenn Morris <rgm@gnu.org>
4505
4506 * calendar/calendar.el (calendar-week-end-day): New function.
4507 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
4508 Respect calendar-week-start-day. (Bug#6606)
4509 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
4510 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
4511 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
4512 respect calendar-week-start-day.
4513
4514 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
4515
4516 * simple.el (use-region-p): Doc fix (Bug#6607).
4517
4518 2010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
4519
4520 * progmodes/compile.el (compilation-error-regexp-alist-alist): Add
4521 regexps for cucumber and ruby.
4522
4523 2010-07-08 Daiki Ueno <ueno@unixuser.org>
4524
4525 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
4526 (epa-file-insert-file-contents): Hack to prevent
4527 find-file from opening empty buffer when decryption failed
4528 (bug#6568).
4529
4530 2010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
4531
4532 * textmodes/ispell.el (ispell-alternate-dictionary):
4533 Use file-readable-p.
4534 Return nil if no word-list is found at default locations.
4535 (ispell-complete-word-dict): Default to nil.
4536 (ispell-command-loop): Use 'word-list' when using lookup-words.
4537 (lookup-words): Use ispell-complete-word-dict or
4538 ispell-alternate-dictionary. Check for word-list availability
4539 and handle errors if needed with better messages (Bug#6539).
4540 (ispell-complete-word): Use ispell-complete-word-dict or
4541 ispell-alternate-dictionary.
4542
4543 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
4544
4545 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
4546 builtins (BufferError, BytesWarning, WindowsError; callables
4547 bin, bytearray, bytes, format, memoryview, next, print; __package__).
4548
4549 2010-07-07 Glenn Morris <rgm@gnu.org>
4550
4551 * play/zone.el (top-level): Do not require timer, tabify, or cl.
4552 (zone-shift-left): Ignore intangibility, and any errors from
4553 forward-char.
4554 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
4555 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
4556 deleting, and copying text properties.
4557 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
4558 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
4559 to point-max is hard.
4560 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
4561 (zone-fill-out-screen): Ignore intangibility.
4562
4563 2010-07-05 Chong Yidong <cyd@stupidchicken.com>
4564
4565 * menu-bar.el (menu-bar-mode):
4566 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
4567 if it has been set.
4568
4569 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
4570 word/line selection (Bug#6565).
4571
4572 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
4573
4574 * net/dbus.el (dbus-send-signal): Declare function.
4575
4576 2010-07-04 Michael Albinus <michael.albinus@gmx.de>
4577
4578 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
4579 (dbus-register-property): New optional argument EMITS-SIGNAL.
4580 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
4581
4582 2010-07-03 Chong Yidong <cyd@stupidchicken.com>
4583
4584 * mouse.el (mouse-drag-overlay): Variable deleted.
4585 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
4586 (mouse--remap-link-click-p): New function.
4587 (mouse-drag-track): Handle dragging by using temporary Transient
4588 Mark mode, instead of a special overlay.
4589 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
4590 mouse-show-mark.
4591
4592 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
4593 deleted.
4594
4595 2010-07-02 Juri Linkov <juri@jurta.org>
4596
4597 * autoinsert.el (auto-insert-alist): Fix readability
4598 by using dotted pair notation for lambda.
4599
4600 2010-07-02 Juri Linkov <juri@jurta.org>
4601
4602 * faces.el (read-face-name): Rename arg `string-describing-default'
4603 to `default'. Doc fix. Display the default value in quotes
4604 in the prompt. With empty input, return the `default' arg,
4605 unless the default value is a string (in which case return nil).
4606 (describe-face): Replace the string `default' arg of `read-face-name'
4607 with the symbol `default'.
4608
4609 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
4610
4611 * emulation/viper-cmd.el (viper-delete-backward-char)
4612 (viper-del-backward-char-in-insert)
4613 (viper-del-backward-char-in-replace, viper-change)
4614 (viper-backward-indent): Replace delete-backward-char with
4615 delete-char (Bug#6552).
4616
4617 2010-07-01 Chong Yidong <cyd@stupidchicken.com>
4618
4619 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
4620
4621 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
4622
4623 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
4624 argument passed to frame-creation-function (Bug#5378).
4625
4626 * faces.el (x-handle-named-frame-geometry)
4627 (x-handle-reverse-video, x-create-frame-with-faces)
4628 (face-set-after-frame-default, tty-create-frame-with-faces): Don't
4629 separately consult default-frame-alist. It is now passed as the
4630 PARAMETER argument.
4631
4632 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
4633
4634 * startup.el (command-line): Don't call tool-bar-setup in a
4635 tty-only build.
4636
4637 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
4638
4639 * ruler-mode.el (ruler--save-header-line-format): New fun.
4640 (ruler-mode): Use it as a setter function, so as not to overwrite
4641 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
4642
4643 2010-06-29 Chong Yidong <cyd@stupidchicken.com>
4644
4645 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
4646 (vc-root-diff, vc-print-root-log, vc-log-incoming)
4647 (vc-log-outgoing): Use it.
4648 (vc-diff-internal): Set diff-vc-backend.
4649
4650 * vc/diff-mode.el (diff-vc-backend): New var.
4651
4652 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
4653
4654 * dynamic-setting.el (font-setting-change-default-font): Remove
4655 call to message.
4656
4657 2010-06-28 Kenichi Handa <handa@m17n.org>
4658
4659 * international/quail.el (quail-insert-kbd-layout): Fix the
4660 showing of untranslated characters.
4661
4662 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
4663
4664 * simple.el (delete-active-region): New option.
4665 (delete-backward-char): Implement in Lisp.
4666 (delete-forward-char): New command.
4667
4668 * mouse.el (mouse-region-delete-keys): Deleted.
4669 (mouse-show-mark): Simplify.
4670
4671 * bindings.el (global-map): Bind delete and DEL, the former to
4672 delete-forward-char.
4673
4674 2010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
4675
4676 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
4677 (ruby-mode): Bind indent-line-function (Bug#5119).
4678
4679 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
4680
4681 * startup.el (command-line): Recognize "0" X resource value.
4682
4683 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
4684
4685 * startup.el (command-line): Use X resources to set the value of
4686 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
4687
4688 * menu-bar.el (menu-bar-mode):
4689 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
4690 Set init-value to t.
4691
4692 * frame.el (frame-notice-user-settings): Don't change
4693 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
4694 vice versa (Bug#2249).
4695
4696 2010-06-26 Eli Zaretskii <eliz@gnu.org>
4697
4698 * w32-fns.el (w32-convert-standard-filename): Doc fix.
4699
4700 2010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
4701
4702 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
4703 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
4704
4705 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
4706 default directories are expanded (Bug#6143).
4707
4708 2010-06-24 Juri Linkov <juri@jurta.org>
4709
4710 * minibuffer.el (completions-format): Change default from nil to
4711 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
4712
4713 2010-06-24 Juri Linkov <juri@jurta.org>
4714
4715 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
4716 buffer-locally to lambda that re-runs the vc diff command.
4717 (Bug#6447)
4718
4719 2010-06-24 Chong Yidong <cyd@stupidchicken.com>
4720
4721 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
4722 echo area is in use (Bug#3412).
4723
4724 2010-06-22 Glenn Morris <rgm@gnu.org>
4725
4726 * textmodes/texinfmt.el (texinfo-format-region)
4727 (texinfo-raise-lower-sections, texinfo-format-separate-node)
4728 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
4729 (texinfo-format-option, texinfo-noindent):
4730 Use line-beginning-position and line-end-position.
4731
4732 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
4733 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
4734 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
4735 utf-8 characters.
4736
4737 2010-06-21 Karl Fogel <kfogel@red-bean.com>
4738
4739 * play/zone.el (zone-fall-through-ws): Fix next-line ->
4740 forward-line fallout.
4741
4742 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
4743
4744 * mouse.el (mouse-appearance-menu): Add docstring.
4745
4746 * help.el (describe-key): Print up-event using key-description.
4747
4748 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
4749
4750 * net/zeroconf.el (zeroconf-resolve-service)
4751 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
4752 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
4753
4754 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
4755
4756 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
4757
4758 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
4759
4760 Avoid displaying files with a nil state in vc-dir.
4761 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
4762 cases that cause insertion.
4763 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
4764 with a nil state.
4765
4766 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
4767
4768 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
4769
4770 2010-06-29 Leo <sdl.web@gmail.com>
4771
4772 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
4773
4774 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
4775
4776 * generic-x.el (bat-generic-mode): Fix regexp for command line
4777 switches (Bug#5719).
4778
4779 2010-06-27 Masatake YAMATO <yamato@redhat.com>
4780
4781 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
4782 of nconc to avoid pure storage error (Bug#6239).
4783
4784 2010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
4785
4786 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
4787 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
4788 bindings of bookmark-automatically-show-annotations (Bug#6515).
4789
4790 2010-06-25 Eli Zaretskii <eliz@gnu.org>
4791
4792 * arc-mode.el (archive-zip-extract): Don't quote the file name on
4793 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
4794
4795 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
4796
4797 * comint.el (make-comint, make-comint-in-buffer): Mention return
4798 value in the docstrings. (Bug#6498)
4799
4800 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
4801
4802 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
4803 since it is not present when using some non-default switches.
4804
4805 2010-06-23 Karl Fogel <kfogel@red-bean.com>
4806
4807 * simple.el (compose-mail): Fix doc string to refer to
4808 `compose-mail-user-agent-warnings', instead of to the
4809 nonexistent `compose-mail-check-user-agent'.
4810
4811 2010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
4812
4813 Fix an indentation bug:
4814
4815 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
4816 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
4817 of existing values.
4818
4819 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
4820 (c-clear->-pair-props-if-match-before): now return t when they've
4821 cleared properties, nil otherwise.
4822 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
4823 by taking account of the existing value.
4824
4825 * progmodes/cc-defs.el
4826 (c-clear-char-property-with-value-function): Fix this to clear the
4827 property rather than overwriting it with nil.
4828
4829 2010-06-20 Chong Yidong <cyd@stupidchicken.com>
4830
4831 * emacs-lisp/package.el (package-print-package): Add link to
4832 package description via describe-package.
4833 (describe-package-1): List package requirements. Add button to
4834 perform installation.
4835 (package-menu-describe-package): New command.
4836
4837 * help-mode.el (help-package): New button type.
4838
4839 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
4840
4841 * emacs-lisp/package.el: Move package-list-packages binding to
4842 menu-bar.el.
4843 (describe-package, describe-package-1, package--dir): New funs.
4844 (package-activate-1): Use package--dir.
4845
4846 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
4847
4848 * help-mode.el (help-package-def): New button type.
4849
4850 * menu-bar.el: Move package-list-packages binding here from
4851 package.el.
4852
4853 2010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
4854
4855 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
4856
4857 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
4858
4859 * emacs-lisp/edebug.el (edebug-read-list):
4860 Phase out old-style backquotes.
4861
4862 2010-06-17 Juri Linkov <juri@jurta.org>
4863
4864 * help-mode.el (help-mode): Set buffer-local variable
4865 revert-buffer-function to help-mode-revert-buffer.
4866 (help-mode-revert-buffer): New function.
4867
4868 * info.el (Info-revert-find-node): Check for major-mode Info-mode
4869 before popping to "*info*" (like in other Info functions).
4870 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
4871 old-history-forward. Pop to old-buffer-name or "*info*" to
4872 recreate the killed buffer. Set Info-history-forward from
4873 old-history-forward.
4874 (Info-breadcrumbs-depth): Add :group and :version.
4875
4876 2010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
4877
4878 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
4879
4880 2010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
4881
4882 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
4883 for languages like Portuguese with pt_{BR,PT} and no plain pt.
4884
4885 2010-06-17 Juanma Barranquero <lekktu@gmail.com>
4886
4887 * emacs-lisp/package.el (package-menu-mode-map):
4888 Move initialization into declaration.
4889
4890 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
4891
4892 2010-06-17 Chong Yidong <cyd@stupidchicken.com>
4893
4894 * emacs-lisp/package.el (package-archive-base): Point to
4895 elpa.gnu.org.
4896 (package-enable, package-load-list): New defcustoms.
4897 (package-user-dir, package-directory-list): Turn into defcustoms.
4898 Don't include package-user-dir in package-directory-list.
4899 (package--builtins-base): Don't include Emacs as a "package".
4900 (package-subdirectory-regexp): New var.
4901 (package-load-all-descriptors, package-compute-transaction)
4902 (package-download-transaction): Obey package-load-list.
4903 (package-activate-1): Rename from package-do-activate.
4904 (package-list-packages-internal): Check package-load-list.
4905 (package-load-descriptor, package-generate-autoloads)
4906 (package-unpack, package-unpack-single)
4907 (package--read-archive-file, package-delete): Use
4908 expand-file-name.
4909
4910 * emacs-lisp/package-x.el: New file. Package uploading
4911 functionality split out from package.el.
4912
4913 * startup.el (command-line): Load packages after reading init file.
4914
4915 2010-06-17 Tom Tromey <tromey@redhat.com>
4916
4917 * emacs-lisp/package.el: New file.
4918
4919 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
4920
4921 Fix vc-annotate for renamed files when using Git.
4922 * vc/vc-git.el (vc-git-find-revision): Deal with empty results from
4923 ls-files. Doe not pass the object as a file name to cat-file, it
4924 is not a file name.
4925 (vc-git-annotate-command): Pass the file name using -- to avoid
4926 ambiguity with the revision.
4927 (vc-git-previous-revision): Pass a relative file name.
4928
4929 2010-06-22 Glenn Morris <rgm@gnu.org>
4930
4931 * progmodes/js.el (js-mode-map): Use standard capitalization and
4932 ellipses for menu entries.
4933
4934 * wid-edit.el (widget-complete): Doc fix.
4935
4936 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
4937
4938 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
4939
4940 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
4941
4942 Fix annotating other revisions for renamed files in vc-annotate.
4943 * vc/vc-annotate.el (vc-annotate): Add an optional argument for the
4944 VC backend. Use it when non-nil.
4945 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
4946 (Bug#6487)
4947
4948 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
4949 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
4950 Do not pass the file name to the 'previous-revision call when we
4951 don't want a file diff. (Bug#6489)
4952
4953 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
4954
4955 Fix finding revisions for renamed files in vc-annotate.
4956 * vc/vc.el (vc-find-revision): Add an optional argument for
4957 the VC backend. Use it when non-nil.
4958 * vc/vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
4959 backend to vc-find-revision. (Bug#6487)
4960
4961 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
4962
4963 Fix reading file names in Git annotate buffers.
4964 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line):
4965 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
4966
4967 2010-06-20 Alan Mackenzie <acm@muc.de>
4968
4969 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
4970 in file local variables, set it first.
4971
4972 2010-06-19 Glenn Morris <rgm@gnu.org>
4973
4974 * descr-text.el (describe-char-unicode-data): Insert separating
4975 space when needed. (Bug#6422)
4976
4977 * progmodes/idlwave.el (idlwave-action-and-binding):
4978 Fix typo in 2009-12-03 change. (Bug#6450)
4979
4980 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
4981
4982 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
4983 handling for `lambda' (misunderstanding).
4984
4985 2010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
4986
4987 * calc/calc-poly.el (math-accum-factors): Make sure that
4988 constants aren't distributed after they are factored out.
4989
4990 2010-06-16 Juri Linkov <juri@jurta.org>
4991
4992 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
4993 `list-colors-print'. (Bug#6332)
4994
4995 * subr.el (read-quoted-char): Fix up last change (bug#6290).
4996
4997 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
4998
4999 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
5000 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
5001
5002 * font-lock.el (font-lock-major-mode): Rename from
5003 font-lock-mode-major-mode to distinguish it from
5004 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
5005 (font-lock-set-defaults):
5006 * font-core.el (font-lock-default-function): Adjust users.
5007 (font-lock-mode): Don't set it at all.
5008
5009 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
5010
5011 * vc/vc-annotate.el (vc-annotate): Use vc-read-revision.
5012
5013 2010-06-16 Glenn Morris <rgm@gnu.org>
5014
5015 * calendar/appt.el (appt-time-msg-list): Doc fix.
5016 (appt-check): Let-bind appt-warn-time.
5017 (appt-add): Make the 3rd argument optional.
5018 Simplify argument names. Doc fix. Check for integer WARNTIME.
5019 Only add WARNTIME to the output list if non-nil.
5020
5021 2010-06-16 Ivan Kanis <apple@kanis.eu>
5022
5023 * calendar/appt.el (appt-check): Let the 3rd element of
5024 appt-time-msg-list specify the warning time.
5025 (appt-add): Add new argument with the warning time. (Bug#5176)
5026
5027 2010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
5028
5029 * vc/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
5030 older than version 1.6. (Bug#6361)
5031
5032 2010-06-16 Helmut Eller <eller.helmut@gmail.com>
5033
5034 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
5035 used by cl-do-arglist. (Bug#6408)
5036
5037 2010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
5038
5039 * textmodes/ispell.el (ispell-dictionary-base-alist): Fix
5040 portuguese casechars/not-casechars for missing 'çÇ'.
5041 Suggested by Rolando Pereira (bug#6434).
5042
5043 2010-06-15 Juanma Barranquero <lekktu@gmail.com>
5044
5045 * facemenu.el (list-colors-sort): Doc fix.
5046
5047 2010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
5048
5049 * progmodes/sql.el (sql-connect-mysql): Fix typo.
5050
5051 2010-06-14 Juri Linkov <juri@jurta.org>
5052
5053 Add sort option `list-colors-sort'. (Bug#6332)
5054 * facemenu.el (color-rgb-to-hsv): New function.
5055 (list-colors-sort): New defcustom.
5056 (list-colors-sort-key): New function.
5057 (list-colors-display): Doc fix. Sort list according to the option
5058 `list-colors-sort'.
5059 (list-colors-print): Add HSV values to `help-echo' property of
5060 RGB strings.
5061
5062 2010-06-14 Juri Linkov <juri@jurta.org>
5063
5064 * compare-w.el: Move to the "vc" subdirectory.
5065
5066 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
5067
5068 * image-mode.el (image-mode-map): Remap left-char and right-char.
5069
5070 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
5071
5072 2010-06-12 Chong Yidong <cyd@stupidchicken.com>
5073
5074 * term/common-win.el (x-colors): Add all the color names defined
5075 in rgb.txt (Bug#6332).
5076
5077 * facemenu.el (list-colors-print): Don't print extra names if it
5078 will overflow the window width.
5079
5080 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
5081 change (Bug#6343).
5082
5083 2010-06-12 Eli Zaretskii <eliz@gnu.org>
5084
5085 * files.el (make-directory): Doc fix (bug#6396).
5086
5087 2010-06-12 Michael Albinus <michael.albinus@gmx.de>
5088
5089 * net/tramp.el (tramp-remote-process-environment): Protect version
5090 string by apostroph.
5091 (tramp-shell-prompt-pattern): Do not use a shy group in case of
5092 XEmacs.
5093 (tramp-file-name-for-operation): Add `call-process-region'.
5094 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
5095
5096 * net/tramp-compat.el (top): Do not autoload
5097 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
5098 only when `start-file-process' is not bound.
5099 (tramp-advice-file-expand-wildcards): Do not use
5100 `tramp-handle-file-remote-p'.
5101 (tramp-compat-make-temp-file): Handle the case, that
5102 `make-temp-file' has no third argument EXTENSION.
5103
5104 2010-06-11 Juanma Barranquero <lekktu@gmail.com>
5105
5106 * makefile.w32-in (WINS_BASIC): Include new directory vc.
5107
5108 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
5109
5110 2010-06-11 Juri Linkov <juri@jurta.org>
5111
5112 * finder.el (finder-known-keywords): Add keyword "vc"
5113 for version control.
5114
5115 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
5116 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
5117 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
5118 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
5119
5120 2010-06-11 Juri Linkov <juri@jurta.org>
5121
5122 Move version control related files to the "vc" subdirectory.
5123 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
5124 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
5125 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
5126 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
5127 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
5128 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
5129 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
5130 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
5131 Move files to the "vc" subdirectory.
5132
5133 2010-06-11 Chong Yidong <cyd@stupidchicken.com>
5134
5135 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
5136 (Bug#6367).
5137
5138 2010-06-11 Stephen Eglen <stephen@gnu.org>
5139
5140 * shell.el: Bind `shell-resync-dirs' to M-RET.
5141
5142 2010-06-10 Michael Albinus <michael.albinus@gmx.de>
5143
5144 * notifications.el: Move file from lisp/net, because it is
5145 supposed to talk locally to the user.
5146
5147 2010-06-10 Julien Danjou <julien@danjou.info>
5148
5149 * net/notifications.el (notifications-on-action-signal)
5150 (notifications-on-closed-signal): Pass notification id as first
5151 argument to the callback functions. Add docstrings.
5152 (notifications-notify): Fix docstring.
5153
5154 2010-06-10 Glenn Morris <rgm@gnu.org>
5155
5156 * emacs-lisp/authors.el (authors-ignored-files)
5157 (authors-valid-file-names): Add some files.
5158
5159 2010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
5160
5161 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
5162 merge conflict, giving preference to the emacs-23 version of the code.
5163
5164 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
5165
5166 * emacs-lisp/advice.el (ad-compile-function):
5167 Define warning-suppress-types before we let-bind it (bug#6275).
5168
5169 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
5170 declare it, make it buffer-local and permanent-local (bug#6324).
5171 (vc-resynch-window): Adjust name.
5172 * vc-hooks.el (vc-find-file-hook): Adjust name.
5173
5174 2010-06-09 Michael Albinus <michael.albinus@gmx.de>
5175
5176 * net/notifications.el (notifications-notify): Fix docstring.
5177
5178 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
5179
5180 Update to Unicode 6.0.0 beta.
5181 * international/charprop.el: Update copyright.
5182 * international/mule-cmds.el (ucs-names): Update character ranges.
5183 * international/uni-bidi.el:
5184 * international/uni-category.el:
5185 * international/uni-combining.el:
5186 * international/uni-comment.el:
5187 * international/uni-decimal.el:
5188 * international/uni-decomposition.el:
5189 * international/uni-digit.el:
5190 * international/uni-lowercase.el:
5191 * international/uni-mirrored.el:
5192 * international/uni-name.el:
5193 * international/uni-numeric.el:
5194 * international/uni-old-name.el:
5195 * international/uni-titlecase.el:
5196 * international/uni-uppercase.el: Regenerate.
5197
5198 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
5199
5200 * emacs-lisp/smie.el (comment-string-strip): Declare function.
5201 (smie-precs-precedence-table): Fix typo in docstring.
5202
5203 * vc-mtn.el (log-edit-extract-headers): Declare function.
5204
5205 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
5206
5207 * net/notifications.el (dbus-register-signal): Declare function.
5208 (notifications-notify): Fix typos and reflow docstring.
5209
5210 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
5211
5212 Improve VC create/retrieve tag/branch.
5213 * vc.el (vc-create-tag): Do not read the directory name for VCs
5214 with repository revision granularity. Adjust the tag/branch
5215 prompt. Reset VC properties.
5216 (vc-retrieve-tag): Do not read the directory name for VCs
5217 with repository revision granularity. Reset VC properties.
5218
5219 2010-06-09 Julien Danjou <julien@danjou.info>
5220
5221 * net/notifications.el: New file.
5222
5223 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
5224
5225 Add optional support for resetting VC properties.
5226 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
5227 call vc-file-clearprops when true.
5228 (vc-resynch-buffer): Add new optional argument, pass it down.
5229 (vc-resynch-buffers-in-directory): Likewise.
5230
5231 Improve support for special markup in the VC commit message.
5232 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
5233 * vc-hg.el (vc-hg-checkin): Add support for Date:.
5234 * vc-git.el (vc-git-checkin):
5235 * vc-bzr.el (vc-bzr-checkin): Likewise.
5236
5237 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
5238
5239 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
5240 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
5241
5242 2010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
5243
5244 * iimage.el: Remove images as soon as the underlying text is modified.
5245 (iimage-modification-hook): New function.
5246 (iimage-mode-buffer): Use it.
5247
5248 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
5249
5250 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
5251 smie-indent-offset-after. Add :prev case. Make a bit more generic.
5252 (smie-indent-virtual): Remove `virtual' arg. Update callers.
5253 (smie-indent-keyword): Add handling of open-paren keywords.
5254 (smie-indent-comment-continue): Don't assume comment-continue.
5255
5256 2010-06-07 Martin Rudalics <rudalics@gmx.at>
5257
5258 * window.el (pop-to-buffer): Remove the conditional that
5259 compares new-window and old-window, so it will reselect
5260 the selected window unconditionally.
5261 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
5262
5263 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
5264
5265 * emacs-lisp/smie.el (smie-indent-offset-after)
5266 (smie-indent-forward-token, smie-indent-backward-token): New functions.
5267 (smie-indent-after-keyword): Use them.
5268 (smie-indent-fixindent): Only applies to the indentation of the BOL.
5269 (smie-indent-keyword): Tweak the black magic.
5270 (smie-indent-comment-continue): Strip comment-continue before use.
5271 (smie-indent-functions): Indent comments before keywords.
5272
5273 2010-06-06 Juri Linkov <juri@jurta.org>
5274
5275 * isearch.el (isearch-lazy-highlight-search): Fix looping
5276 by checking for empty match. This syncs this loop with the
5277 similar loop in `isearch-search'. (Bug#6362)
5278
5279 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
5280
5281 * net/dbus.el (dbus-register-method): Declare function.
5282 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
5283 (dbus-introspect): Doc fix.
5284 (dbus-event-bus-name, dbus-introspect-get-interface)
5285 (dbus-introspect-get-argument): Reflow docstrings.
5286
5287 2010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
5288
5289 vc-log-incoming/vc-log-outgoing fixes for Git.
5290 * vc-git.el (vc-git-log-view-mode): Fix font lock for
5291 incoming/outgoing logs.
5292 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
5293 instead of vc-git-compute-remote.
5294 (vc-git-compute-remote): Remove.
5295
5296 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
5297
5298 * term/common-win.el (x-colors): Add "dark green" and "dark
5299 turquoise" (Bug#6332).
5300
5301 2010-06-04 Juri Linkov <juri@jurta.org>
5302
5303 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
5304 Instead of setting `replace' to t and replacing the same string
5305 with itself, don't do certain actions when
5306 kill-do-not-save-duplicates is non-nil and string is equal to car
5307 of kill-ring: don't call menu-bar-update-yank-menu, don't push
5308 interprogram-paste strings to kill-ring, and don't push the input
5309 argument `string' to kill-ring.
5310 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
5311
5312 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
5313
5314 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
5315
5316 2010-06-04 Michael Albinus <michael.albinus@gmx.de>
5317
5318 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
5319 (tramp-gvfs-handler-mounted-unmounted)
5320 (tramp-gvfs-connection-mounted-p): Handle default-location.
5321
5322 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
5323 move files to trash.
5324
5325 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
5326
5327 * international/mule-cmds.el (nonascii-insert-offset)
5328 (nonascii-translation-table): Add obsolescence information.
5329
5330 * international/mule.el (make-translation-table-from-vector): Doc fix.
5331
5332 2010-06-03 Glenn Morris <rgm@gnu.org>
5333
5334 * desktop.el (desktop-clear-preserve-buffers):
5335 Add "*Warnings*" buffer. (Bug#6336)
5336
5337 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
5338
5339 vc-log-incoming/vc-log-outgoing improvements for Git.
5340 * vc-git.el (vc-git-log-outgoing): Use the same format as the
5341 short log.
5342 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
5343
5344 Add bindings for vc-log-incoming and vc-log-outgoing.
5345 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
5346 and vc-log-outgoing.
5347 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
5348 and vc-log-outgoing.
5349
5350 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
5351
5352 * net/rcirc.el (rcirc-sort-nicknames): Remove.
5353 (rcirc-handler-366): Always sort nicknames.
5354
5355 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
5356
5357 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
5358
5359 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
5360
5361 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
5362
5363 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
5364
5365 * net/rcirc.el (rcirc-sort-nicknames): Change default.
5366 (rcirc-sort-nicknames-join): Avoid setq.
5367
5368 2010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
5369
5370 * net/rcirc.el (rcirc-sort-nicknames): New custom.
5371 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
5372 (rcirc-handler-366): Use them.
5373
5374 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
5375
5376 Split smie-indent-calculate into more manageable chunks.
5377 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
5378 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
5379 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
5380 (smie-indent-exps): Extract from smie-indent-calculate.
5381 (smie-indent-functions): New var.
5382 (smie-indent-functions): Use them.
5383
5384 2010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
5385
5386 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
5387 (smie-indent-calculate): Simplify and cleanup.
5388
5389 2010-06-02 Michael Albinus <michael.albinus@gmx.de>
5390
5391 * net/tramp-gvfs.el (top): Require url-util.
5392 (tramp-gvfs-mount-point): Remove.
5393 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
5394 New defuns.
5395 (with-tramp-dbus-call-method): Format trace message.
5396 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
5397 Implement backup call, when operation on local files fails.
5398 Use progress reporter. Flush properties of changed files.
5399 (tramp-gvfs-handle-make-directory): Make more traces.
5400 (tramp-gvfs-url-file-name): Hexify file name in url.
5401 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
5402 into account for the resulting file name.
5403 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
5404 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
5405 (tramp-gvfs-handler-mounted-unmounted)
5406 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
5407 attribute "default_location". Set "prefix" property.
5408 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
5409 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
5410 exists. Raise an error, if not (due to a corresponding answer
5411 "no" in interactive questions, for example).
5412
5413 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
5414
5415 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
5416
5417 2010-06-01 Juanma Barranquero <lekktu@gmail.com>
5418
5419 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
5420 right-*. (Bug#6265)
5421
5422 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
5423
5424 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
5425 * vc-git.el (vc-git-compute-remote): New function.
5426 (vc-git-log-outgoing): Use it instead of hard coding a value.
5427 (vc-git-log-incoming): New function.
5428
5429 Improve state updating for VC tag commands.
5430 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
5431 to update the state of all buffers in the directory.
5432
5433 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
5434
5435 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
5436
5437 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
5438 `file-directory-p' to the filename part rather than to the whole text.
5439
5440 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
5441
5442 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
5443
5444 2010-05-31 Drew Adams <drew.adams@oracle.com>
5445
5446 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
5447
5448 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
5449
5450 * subr.el (momentary-string-display): Just use read-event to read
5451 the exit event (Bug#6238).
5452
5453 2010-05-30 Eli Zaretskii <eliz@gnu.org>
5454
5455 * international/mule.el (define-coding-system): Doc fix (bug#6313).
5456
5457 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
5458
5459 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
5460 Suggested by Eli Zaretskii <eliz@gnu.org>.
5461
5462 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
5463
5464 * minibuffer.el (completion-file-name-table): Don't return a boundary
5465 past the end of `string' (bug#6299).
5466 (completion--file-name-table): Delegate to completion-file-name-table
5467 for the `boundaries' case.
5468
5469 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
5470
5471 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
5472 movement commands.
5473
5474 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
5475 `path-separator', but maintain compatibility with Emacs 20.2.
5476
5477 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
5478
5479 * server.el (server-process-filter): Receive parent-id argument
5480 from emacsclient.
5481 (server-create-window-system-frame): New arg. Pass parent-id as
5482 frame parameter.
5483
5484 2010-05-29 Eli Zaretskii <eliz@gnu.org>
5485
5486 Bidi-sensitive word movement with arrow keys.
5487 * subr.el (right-arrow-command, left-arrow-command): Move to
5488 bindings.el.
5489
5490 * bindings.el (right-char, left-char): Move from subr.el and
5491 rename from right-arrow-command and left-arrow-command.
5492 (right-word, left-word): New functions.
5493 (global-map) <right>: Bind to right-char.
5494 (global-map) <left>: Bind to left-char.
5495 (global-map) <C-right>: Bind to right-word.
5496 (global-map) <C-left>: Bind to left-word.
5497
5498 * ls-lisp.el (ls-lisp-classify-file): New function.
5499 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
5500 (ls-lisp-classify): Call ls-lisp-classify-file.
5501 (insert-directory): Remove blanks from switches.
5502
5503 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
5504
5505 * ansi-color.el: Delete unused escape sequences (Bug#6085).
5506 (ansi-color-drop-regexp): New constant.
5507 (ansi-color-apply, ansi-color-filter-region)
5508 (ansi-color-apply-on-region): Delete unrecognized control sequences.
5509 (ansi-color-apply): Build string list before calling concat.
5510
5511 2010-05-28 Juri Linkov <juri@jurta.org>
5512
5513 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
5514 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
5515 (Bug#5270)
5516
5517 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
5518
5519 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
5520 to ignored backtrace functions.
5521 (with-progress-reporter): Expand docstring.
5522 (tramp-handle-delete-file): Implement TRASH argument.
5523 (tramp-get-remote-trash): New defun.
5524
5525 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
5526
5527 * net/tramp-compat.el (tramp-compat-delete-file): Use
5528 `symbol-value' for backward compatibility.
5529
5530 * net/tramp.el (tramp-handle-make-symbolic-link)
5531 (tramp-handle-load)
5532 (tramp-do-copy-or-rename-file-via-buffer)
5533 (tramp-do-copy-or-rename-file-directly)
5534 (tramp-do-copy-or-rename-file-out-of-band)
5535 (tramp-handle-process-file, tramp-handle-call-process-region)
5536 (tramp-handle-shell-command, tramp-handle-file-local-copy)
5537 (tramp-handle-insert-file-contents, tramp-handle-write-region)
5538 (tramp-delete-temp-file-function): Use `delete-file' instead
5539 of `tramp-compat-delete-file'.
5540
5541 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
5542 (tramp-fish-handle-make-symbolic-link)
5543 (tramp-fish-handle-process-file): Use `delete-file' instead
5544 of `tramp-compat-delete-file'.
5545
5546 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use
5547 `delete-file' instead of `tramp-compat-delete-file'.
5548
5549 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
5550 (tramp-gvfs-handle-write-region): Use `delete-file' instead of
5551 `tramp-compat-delete-file'.
5552
5553 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): Use
5554 `delete-file' instead of `tramp-compat-delete-file'.
5555
5556 * net/tramp-smb.el (tramp-smb-handle-copy-file)
5557 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
5558 (tramp-smb-handle-write-region): Use `delete-file' instead of
5559 `tramp-compat-delete-file'.
5560 (tramp-smb-handle-delete-directory): Use 'trash as arg.
5561
5562 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
5563
5564 * dired.el (dired-delete-file): New arg TRASH.
5565 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
5566 (dired-do-flagged-delete, dired-do-delete): Use trash.
5567
5568 * speedbar.el (speedbar-item-delete): Allow trashing.
5569
5570 * files.el (delete-directory): New arg TRASH.
5571
5572 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
5573 (ange-ftp-rename-remote-to-remote)
5574 (ange-ftp-rename-local-to-remote)
5575 (ange-ftp-rename-remote-to-local, ange-ftp-load)
5576 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
5577 `delete-file'.
5578 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
5579 allow trashing.
5580
5581 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
5582 handle new TRASH arg of `delete-file'.
5583
5584 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
5585 (tramp-handle-make-symbolic-link, tramp-handle-load)
5586 (tramp-do-copy-or-rename-file-via-buffer)
5587 (tramp-do-copy-or-rename-file-directly)
5588 (tramp-do-copy-or-rename-file-out-of-band)
5589 (tramp-handle-process-file, tramp-handle-call-process-region)
5590 (tramp-handle-shell-command, tramp-handle-file-local-copy)
5591 (tramp-handle-insert-file-contents, tramp-handle-write-region)
5592 (tramp-delete-temp-file-function): Use null TRASH arg in
5593 tramp-compat-delete-file call.
5594
5595 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
5596 (tramp-fish-handle-delete-file)
5597 (tramp-fish-handle-make-symbolic-link)
5598 (tramp-fish-handle-process-file): Use null TRASH arg in
5599 `tramp-compat-delete-file' call.
5600
5601 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
5602 arg in `tramp-compat-delete-file' call.
5603
5604 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
5605 (tramp-gvfs-handle-write-region): Use null TRASH arg in
5606 `tramp-compat-delete-file' call.
5607
5608 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
5609 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
5610 `tramp-compat-delete-file' call.
5611
5612 * net/tramp-smb.el (tramp-smb-handle-copy-file)
5613 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
5614 (tramp-smb-handle-write-region): Use null TRASH arg in
5615 tramp-compat-delete-file call.
5616 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
5617 (tramp-smb-handle-delete-file): Rename arg.
5618
5619 * diff.el (diff-sentinel):
5620 * epg.el (epg--make-temp-file, epg-decrypt-string)
5621 (epg-verify-string, epg-sign-string, epg-encrypt-string):
5622 * jka-compr.el (jka-compr-partial-uncompress)
5623 (jka-compr-call-process, jka-compr-write-region):
5624 * server.el (server-sentinel): Remove optional arg from
5625 delete-file, reverting 2010-05-03 change.
5626
5627 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
5628
5629 * progmodes/verilog-mode.el (verilog-type-font-keywords): Use
5630 font-lock-constant-face, not obsolete font-lock-reference-face.
5631
5632 2010-05-27 Kenichi Handa <handa@m17n.org>
5633
5634 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
5635 element of GSTRING is nil.
5636
5637 2010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
5638
5639 * emacs-lisp/smie.el (smie-forward-token-function)
5640 (smie-backward-token-function): New vars.
5641 (smie-backward-sexp, smie-forward-sexp)
5642 (smie-indent-hanging-p, smie-indent-calculate): Use them.
5643 (smie-default-backward-token): Rename from smie-backward-token and
5644 skip comments.
5645 (smie-default-forward-token): Rename from smie-forward-token and
5646 skip comments.
5647 (smie-next-sexp): Handle nil results from next-token.
5648 (smie-indent-calculate): Add a new case for special `fixindent' comments.
5649
5650 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
5651
5652 * progmodes/verilog-mode.el (verilog-type-font-keywords):
5653 Use font-lock-constant-face, not obsolete font-lock-reference-face.
5654
5655 2010-05-27 Masatake YAMATO <yamato@redhat.com>
5656
5657 * htmlfontify.el (hfy-face-resolve-face): New function.
5658 (hfy-face-to-style): Use it (Bug#6279).
5659
5660 2010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
5661
5662 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
5663 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
5664
5665 2010-05-26 Glenn Morris <rgm@gnu.org>
5666
5667 * emulation/edt.el (edt-load-keys): Use locate-library.
5668
5669 2010-05-25 Chong Yidong <cyd@stupidchicken.com>
5670
5671 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
5672 (log-edit-changelog-entries): Doc fix.
5673 (log-edit-changelog-insert-entries): Args changed.
5674 Rename relative filenames in ChangeLog entries. Delete tabs.
5675 (log-edit-insert-changelog-entries): Reorganize return value of
5676 `log-edit-changelog-entries' to pass filenames to
5677 log-edit-changelog-insert-entries.
5678
5679 2010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5680
5681 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
5682 `image-dired-dired-insert-marked-thumbs' to
5683 `image-dired-dired-toggle-marked-thumbs'.
5684
5685 * image-dired.el: Require cl when compiling.
5686 (image-dired-dired-toggle-marked-thumbs): Rename from
5687 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
5688 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
5689 to 'no-dir. Skip files whose names don't match
5690 `image-file-name-regexp'. When file has a thumbnail overlay,
5691 delete it. (Bug#5270)
5692
5693 2010-05-25 Juri Linkov <juri@jurta.org>
5694
5695 * image-mode.el (image-mode): Add image-after-revert-hook to
5696 after-revert-hook.
5697 (image-after-revert-hook): New function. (Bug#5669)
5698
5699 2010-05-25 Juri Linkov <juri@jurta.org>
5700
5701 * image.el (image-animated-p): When delay between animated images
5702 is 0, set it to 10 (0.1 sec). (Bug#6258)
5703
5704 2010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
5705
5706 * net/tramp.el (tramp-handle-insert-directory): Don't use
5707 `forward-word', its default syntax could be changed.
5708
5709 2010-05-25 Michael Albinus <michael.albinus@gmx.de>
5710
5711 * net/tramp.el (tramp-progress-reporter-update): New defun.
5712 (with-progress-reporter): Use it.
5713 (tramp-process-actions):
5714 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion): Preserve
5715 current message, in order to let progress reporter continue
5716 afterwards. (Bug#6257)
5717
5718 2010-05-25 Glenn Morris <rgm@gnu.org>
5719
5720 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
5721 Add :version.
5722
5723 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
5724
5725 * net/rcirc.el (rcirc-default-user-name): Change to "user".
5726 (rcirc-default-full-name): Change to "unknown".
5727 (rcirc-user-name-history): Add variable.
5728
5729 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
5730 Jonathan Rockway <jon@jrock.us>
5731
5732 * net/rcirc.el (rcirc-server-alist): Add :pass.
5733 (rcirc): When prompting for connection parameters, also prompt for
5734 username and password.
5735 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
5736 value to server when connecting.
5737
5738 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
5739
5740 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
5741 (smie-merge-prec2s): Pass the tables as separate args.
5742 (smie-bnf-precedence-table): Adjust call accordingly.
5743 (smie-prec2-levels): Set levels at the end.
5744
5745 Replace Lisp calls to delete-backward-char by delete-char.
5746 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
5747 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
5748 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
5749 * calc/calc.el, emacs-lisp/cl-extra.el, emacs-lips/cl-loaddefs.el,
5750 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
5751 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
5752 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
5753 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
5754 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
5755 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
5756 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
5757 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
5758 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
5759 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
5760 delete-backward-char by calls to delete-char.
5761
5762 2010-05-25 Kenichi Handa <handa@m17n.org>
5763
5764 * language/hebrew.el (hebrew-shape-gstring): New function.
5765 Register it in composition-function-table for all Hebrew combining
5766 characters.
5767
5768 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
5769
5770 * epa.el (epa--select-keys): Don't explicitly delete the window since
5771 that can fail (e.g. sole window in frame). Use dedication instead.
5772
5773 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
5774
5775 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
5776
5777 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
5778
5779 * image.el (image-refresh): Define as an alias for image-flush.
5780
5781 * image-mode.el (image-toggle-display-image): Caller changed.
5782
5783 2010-05-21 Juri Linkov <juri@jurta.org>
5784
5785 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
5786 Remove "all" from grep-files-aliases. Split grep-files-aliases by
5787 whitespace, call wildcard-to-regexp on substrings and concat them
5788 with "\\|". (Bug#6114)
5789
5790 2010-05-21 Alan Mackenzie <acm@muc.de>
5791
5792 * progmodes/cc-engine.el (c-parse-state-get-strategy):
5793 Replace parameter `here' with `here-' and `here-plus', which sandwich
5794 any pertinent CPP construct.
5795 (c-remove-stale-state-cache-backwards): Fix a bug which happens
5796 when doing (c-parse-state) in a CPP construct: Exclude any "new"
5797 CPP construct from taking part in the scanning.
5798
5799 2010-05-21 Michael Albinus <michael.albinus@gmx.de>
5800
5801 * net/tramp.el (tramp-do-copy-or-rename-file)
5802 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
5803 Tune `with-progress-reporter' messages.
5804 (tramp-handle-vc-registered):
5805 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
5806 (tramp-fish-handle-insert-file-contents)
5807 (tramp-fish-maybe-open-connection):
5808 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
5809 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
5810 (tramp-imap-handle-insert-file-contents)
5811 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
5812
5813 2010-05-21 Juanma Barranquero <lekktu@gmail.com>
5814
5815 * add-log.el (change-log-font-lock-keywords):
5816 Highlight all authors in multi-author entries.
5817
5818 * smerge-mode.el (smerge-refine-ignore-whitespace)
5819 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
5820 Fix typos in docstrings.
5821 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
5822
5823 2010-05-21 Glenn Morris <rgm@gnu.org>
5824
5825 * progmodes/fortran.el (fortran-mode):
5826 * progmodes/f90.el (f90-mode): Derive from prog-mode.
5827
5828 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
5829 having a relative path in src/Makefile.in.
5830
5831 2010-05-20 Kevin Ryde <user42@zip.com.au>
5832
5833 * help-mode.el (help-make-xrefs): For Info node links turn
5834 newlines into spaces. Link node names with newlines are matched
5835 by help-xref-info-regexp and buttonized, this change ensures they
5836 can be followed successfully with RET. (Bug#6206)
5837
5838 2010-05-20 Juri Linkov <juri@jurta.org>
5839
5840 * locate.el (locate): Use pop-to-buffer instead of
5841 switch-to-buffer-other-window. (Bug#6204)
5842
5843 2010-05-20 Juri Linkov <juri@jurta.org>
5844
5845 * replace.el (replace-highlight): Fix lazy-highlighting
5846 for `M-s w str M-% str RET'.
5847
5848 2009-12-15 Masatake YAMATO <yamato@redhat.com>
5849
5850 * isearch.el (isearch-yank-word-or-char): Pull next subword
5851 when `subword-mode' is activated. (Bug#6220)
5852
5853 2010-05-20 Mark A. Hershberger <mah@everybody.org>
5854
5855 * isearch.el (isearch-update-post-hook): New hook.
5856 (isearch-update): Use the new hook. (Bug#6225)
5857
5858 2010-05-20 Juri Linkov <juri@jurta.org>
5859
5860 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
5861 [f1], [help], and (char-to-string help-char) instead of "\C-h".
5862 (Bug#6222)
5863
5864 2010-05-20 Juri Linkov <juri@jurta.org>
5865
5866 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
5867 (Bug#6223)
5868
5869 2010-05-20 Juri Linkov <juri@jurta.org>
5870
5871 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
5872 FILE-NAME to read from the minibuffer when called interactively
5873 with prefix argument instead of using buffer-file-name.
5874 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
5875
5876 * dired.el: Update autoloads.
5877
5878 2010-05-20 Chong Yidong <cyd@stupidchicken.com>
5879
5880 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
5881 nxml-finish-element, for consistency with SGML mode.
5882
5883 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
5884 octave-close-block.
5885
5886 2010-05-20 Juanma Barranquero <lekktu@gmail.com>
5887
5888 * composite.el: Require cl when compiling.
5889 (reference-point-alist, compose-gstring-for-graphic)
5890 (compose-gstring-for-terminal): Fix typos in docstrings.
5891
5892 2010-05-19 Juri Linkov <juri@jurta.org>
5893
5894 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
5895 set-window-parameter.
5896
5897 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
5898
5899 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
5900 where appropriate.
5901 (tramp-maybe-open-connection): Use it.
5902
5903 2010-05-19 Eli Zaretskii <eliz@gnu.org>
5904
5905 * simple.el (move-end-of-line): Make sure we are at line beginning
5906 before backing up to end of previous line.
5907
5908 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
5909
5910 * password-cache.el (password-cache-remove): Fix docstring.
5911
5912 * net/secrets.el: Autoload the widget functions.
5913 (secrets-search-items, secrets-create-item)
5914 (secrets-get-attributes, secrets-expand-item): Attributes will be
5915 stored on the password database without leading ":", as all other
5916 clients do as well.
5917 (secrets-mode): Fix docstring.
5918 (secrets-show-secrets): Provide it as autoloaded command only when
5919 D-Bus support is available. Check existence of Secret Service API.
5920
5921 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
5922
5923 * indent.el (indent-region): Deactivate region (bug#6200).
5924
5925 2010-05-19 Glenn Morris <rgm@gnu.org>
5926
5927 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
5928
5929 2010-05-19 Kenichi Handa <handa@m17n.org>
5930
5931 * composite.el: Register compose-gstring-for-graphic in
5932 composition-function-table only for combining characters (Mn, Mc, Me).
5933
5934 2010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
5935
5936 * calc/calc-trail.el (calc-trail-isearch-forward)
5937 (calc-trail-isearch-backward): Ensure that the new window
5938 point is set correctly.
5939
5940 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
5941
5942 * subr.el (read-quoted-char): Resolve modifiers after key
5943 remapping (bug#6212).
5944
5945 2010-05-18 Michael Albinus <michael.albinus@gmx.de>
5946
5947 Add visualization code for secrets.
5948 * net/secrets.el (secrets-mode): New major mode.
5949 (secrets-show-secrets, secrets-show-collections)
5950 (secrets-expand-collection, secrets-expand-item)
5951 (secrets-tree-widget-after-toggle-function)
5952 (secrets-tree-widget-show-password): New defuns.
5953
5954 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
5955
5956 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
5957 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
5958 handled in smie-next-sexp.
5959 (smie-indent-calculate): Provide a starting indentation (so the
5960 recursion is well-founded ;-).
5961
5962 Fix handling of non-associative equal levels.
5963 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
5964 when it's not needed.
5965 (smie-op-left, smie-op-right): New functions.
5966 (smie-next-sexp): New function, extracted from smie-backward-sexp.
5967 Better handle equal levels to distinguish the associative case from
5968 the "multi-keyword construct" case.
5969 (smie-backward-sexp, smie-forward-sexp): Use it.
5970
5971 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
5972
5973 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
5974
5975 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
5976 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
5977
5978 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
5979
5980 Provide a simple generic indentation engine and use it for Prolog.
5981 * emacs-lisp/smie.el: New file.
5982 * progmodes/prolog.el (prolog-smie-op-levels)
5983 (prolog-smie-indent-rules): New var.
5984 (prolog-mode-variables): Use them to configure SMIE.
5985 (prolog-indent-line, prolog-indent-level): Remove.
5986
5987 2010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
5988
5989 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
5990 order before computing the averages.
5991
5992 2010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
5993
5994 * calc/calc-vec.el (calc-histogram):
5995 (calcFunc-histogram): Allow vectors as inputs.
5996 (math-vector-avg): New function.
5997
5998 * calc/calc-ext.el (math-group-float): Have the number of digits
5999 being grouped depend on the radix (Bug#6189).
6000
6001 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
6002
6003 * version.el (emacs-copyright, emacs-version): Don't define here,
6004 now that emacs.c defines it.
6005
6006 2010-05-15 Eli Zaretskii <eliz@gnu.org>
6007
6008 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
6009 "Describe Language Environment" menu item.
6010
6011 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
6012
6013 Bidi-sensitive movement with arrow keys.
6014 * subr.el (right-arrow-command, left-arrow-command): New functions.
6015
6016 * bindings.el (global-map): Bind them to right and left arrow keys.
6017
6018 Don't override standard definition of convert-standard-filename.
6019 * files.el (convert-standard-filename): Call
6020 w32-convert-standard-filename and dos-convert-standard-filename on
6021 the corresponding systems.
6022
6023 * w32-fns.el (w32-convert-standard-filename): Rename from
6024 convert-standard-filename. Doc fix.
6025
6026 * dos-fns.el (dos-convert-standard-filename): Doc fix.
6027 (convert-standard-filename): Don't defalias.
6028 (register-name-alist, make-register, register-value)
6029 (set-register-value, intdos): Obsolete aliases for the
6030 corresponding dos-* functions and variables.
6031 (dos-intdos): Add a doc string.
6032
6033 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
6034
6035 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
6036 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
6037 (math-compose-tex-func):
6038 * calc/calccomp.el (math-compose-expr):
6039 * calc/calc-ext.el (math-format-flat-expr-fancy):
6040 * calc/calc-store.el (calc-read-var-name):
6041 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
6042
6043 * calc/calc.el (var-π, var-φ, var-γ): New variables.
6044 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
6045 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
6046 (math-standard-units): Add units.
6047
6048 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
6049
6050 * progmodes/asm-mode.el (asm-mode):
6051 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
6052
6053 * pcomplete.el (pcomplete-completions-at-point): New function,
6054 extracted from pcomplete-std-complete.
6055 (pcomplete-std-complete): Use it.
6056
6057 2010-05-15 Glenn Morris <rgm@gnu.org>
6058
6059 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
6060 Remove references to CVS, RCS and Old directories.
6061
6062 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
6063
6064 * calc/calc-bin.el (math-format-twos-complement): Group digits when
6065 appropriate.
6066
6067 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
6068
6069 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
6070 (sh-mode-syntax-table): Give it a default value instead.
6071 (sh-header-marker): Make buffer-local.
6072 (sh-mode): Move make-local-variable to the corresponding setq.
6073 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
6074 Use complete-with-action.
6075
6076 * simple.el (prog-mode): New (abstract) major mode.
6077 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
6078 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
6079
6080 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
6081
6082 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
6083 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
6084 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
6085 (sql-make-alternate-buffer-name, sql-placeholders-filter)
6086 (sql-escape-newlines-filter, sql-input-sender)
6087 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
6088
6089 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
6090
6091 Add TeX open-block and close-block keybindings to SGML, and vice versa.
6092
6093 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
6094 latex-open-block and C-c / to latex-close-block.
6095
6096 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
6097 and C-c C-e to sgml-close-tag.
6098
6099 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
6100
6101 * net/tramp.el (with-progress-reporter): Create reporter object
6102 only when the message would be displayed. Handle nested calls.
6103 (tramp-handle-load, tramp-handle-file-local-copy)
6104 (tramp-handle-insert-file-contents, tramp-handle-write-region)
6105 (tramp-maybe-send-script, tramp-find-shell):
6106 Use `with-progress-reporter'.
6107 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
6108 Fix message text.
6109
6110 * net/tramp-smb.el (tramp-smb-handle-copy-file)
6111 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
6112 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
6113 Use `with-progress-reporter'.
6114
6115 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
6116
6117 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
6118 process everytime when spellchecking from the minibuffer (bug#6143).
6119
6120 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
6121
6122 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
6123
6124 * dos-fns.el: Add "dos-" prefix for namespace control.
6125 (convert-standard-filename): Define as alias for
6126 dos-convert-standard-filename but only if applicable.
6127
6128 2010-05-12 Alan Mackenzie <acm@muc.de>
6129
6130 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
6131 Push the mark at the start of these functions when appropriate.
6132
6133 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6134
6135 * minibuffer.el (completion-cycle-threshold): New custom var.
6136 (completion--do-completion): Use it.
6137 (minibuffer-complete): Use cycling if appropriate.
6138
6139 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
6140
6141 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
6142 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
6143
6144 2010-05-11 Juri Linkov <juri@jurta.org>
6145
6146 * scroll-all.el (scroll-all-check-to-scroll):
6147 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
6148
6149 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
6150
6151 * iimage.el (iimage-mode-map): Move initialization into declaration.
6152 (iimage-mode-buffer): Use with-silent-modifications.
6153 Simplify calling convention. Adjust callers.
6154 (iimage-mode): Don't run hook redundantly.
6155
6156 * minibuffer.el (completion-pcm--pattern->regex):
6157 Fix last change (bug#6160).
6158
6159 2010-05-10 Juri Linkov <juri@jurta.org>
6160
6161 Remove nodes visited during Isearch from the Info history.
6162 * info.el (Info-isearch-initial-history)
6163 (Info-isearch-initial-history-list): New variables.
6164 (Info-isearch-start): Record initial values of
6165 Info-isearch-initial-history and Info-isearch-initial-history-list.
6166 Add Info-isearch-end to isearch-mode-end-hook.
6167 (Info-isearch-end): New function.
6168
6169 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
6170
6171 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
6172 format string, in order to work around a bug in pdksh.
6173 Reported by Gilles Pion <gpion@lfdj.com>.
6174 (tramp-handle-verify-visited-file-modtime): Do not send a command
6175 when the connection is not established.
6176 (tramp-handle-set-file-times): Simplify the check for utc.
6177
6178 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
6179
6180 Fix use of `filter-buffer-substring' (rework previous change).
6181 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
6182 (cua-repeat-replace-region):
6183 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
6184 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
6185 (cua-cut-region-to-global-mark): Use it.
6186
6187 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
6188
6189 * progmodes/sql.el: Version 2.1.
6190 (sql-product-alist): Redesign structure of product info.
6191 (sql-product, sql-user, sql-server, sql-database): Safe variables.
6192 (sql-port, sql-port-history): New variables.
6193 (sql-interactive-product): New variable.
6194 (sql-send-terminator): New variable.
6195 (sql-imenu-generic-expression): Add "Types" imenu entry.
6196 (sql-oracle-login-params, sql-sqlite-login-params)
6197 (sql-mysql-login-params, sql-solid-login-params)
6198 (sql-sybase-login-params, sql-informix-login-params)
6199 (sql-ingres-login-params, sql-ms-login-params)
6200 (sql-postgres-login-params, sql-interbase-login-params)
6201 (sql-db2-login-params, sql-linter-login-params)
6202 (sql-oracle-scan-on): New variables.
6203 (sql-mode-map): Add C-c C-i to start interactive mode.
6204 (sql-mode-menu): Update existing menu entries.
6205 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
6206 (sql-mode-oracle-font-lock-keywords)
6207 (sql-mode-postgres-font-lock-keywords)
6208 (sql-mode-ms-font-lock-keywords)
6209 (sql-mode-sybase-font-lock-keywords)
6210 (sql-mode-informix-font-lock-keywords)
6211 (sql-mode-interbase-font-lock-keywords)
6212 (sql-mode-ingres-font-lock-keywords)
6213 (sql-mode-solid-font-lock-keywords)
6214 (sql-mode-mysql-font-lock-keywords)
6215 (sql-mode-sqlite-font-lock-keywords)
6216 (sql-mode-db2-font-lock-keywords)
6217 (sql-mode-linter-font-lock-keywords): Update initialization to
6218 reduce run-time complexity.
6219 (sql-add-product, sql-del-product): New functions.
6220 (sql-set-product-feature, sql-get-product-feature): New functions.
6221 (sql-product-font-lock): Update product API.
6222 (sql-add-product-keywords): New function.
6223 (sql-highlight-product): Update product API.
6224 (sql-help-list-products): New function.
6225 (sql-help): Dynamically lists free and non-free products.
6226 (sql-get-login): Correct bug in handling history and added
6227 prompt for port.
6228 (sql-copy-column): Copy without properties.
6229 (sqli-input-sender): Apply filters to SQLi input.
6230 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
6231 Implement as a filter.
6232 (sql-escape-newlines-filter): Implement as a filter.
6233 (sql-remove-tabs-filter): New function.
6234 (sql-send-magic-terminator): New function.
6235 (sql-send-string): Implement magic terminator.
6236 (sql-send-region): Use `sql-send-string'.
6237 (sql-interactive-mode): Use product API.
6238 (sql-product-interactive): Use product API.
6239 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
6240 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
6241 (sql-db2, sql-linter): Use `sql-product-interactive'.
6242 (sql-connect): New function.
6243 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
6244 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
6245 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
6246 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
6247 Use `sql-connect'.
6248
6249 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
6250
6251 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
6252 New custom variable.
6253 (completion-pcm--string->pattern): Use it.
6254 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
6255 Make it handle any symbol as `any'.
6256 (completion-pcm--merge-completions): Extract common suffix for the new
6257 `prefix' symbol as well.
6258 (completion-substring--all-completions): Use the new `prefix' symbol.
6259
6260 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
6261
6262 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
6263 not bound.
6264 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
6265 (tramp-compat-funcall): New defmacro.
6266 (tramp-compat-line-beginning-position)
6267 (tramp-compat-line-end-position)
6268 (tramp-compat-temporary-file-directory)
6269 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
6270 (tramp-compat-copy-file, tramp-compat-copy-directory)
6271 (tramp-compat-delete-file, tramp-compat-delete-directory)
6272 (tramp-compat-number-sequence, tramp-compat-process-running-p)
6273 * net/tramp.el (top, with-progress-reporter)
6274 (tramp-rfn-eshadow-setup-minibuffer)
6275 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
6276 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
6277 (tramp-completion-mode-p, tramp-check-for-regexp)
6278 (tramp-open-connection-setup-interactive-shell)
6279 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
6280 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
6281 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
6282 * net/tramp-cmds.el (tramp-cleanup-all-connections)
6283 (tramp-reporter-dump-variable, tramp-load-report-modules)
6284 (tramp-append-tramp-buffers)
6285 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
6286
6287 * net/tramp-imap.el (top): Autoload `epg-make-context'.
6288
6289 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
6290
6291 * progmodes/compile.el (compilation-buffer-modtime): Rename from
6292 buffer-modtime. Adjust users.
6293
6294 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
6295
6296 * international/mule.el (auto-coding-alist): Only purecopy
6297 car of each item, not the whole list (Bug#6083).
6298
6299 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
6300
6301 * progmodes/js.el (js-mode): Make paragraph variables local before
6302 calling c-setup-paragraph-variables (Bug#6071).
6303
6304 2010-05-08 Eli Zaretskii <eliz@gnu.org>
6305
6306 * composite.el (compose-region, reference-point-alist): Fix typos
6307 in the doc strings.
6308
6309 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
6310
6311 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
6312 gnuplot's "set" command.
6313
6314 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
6315
6316 * abbrev.el (last-abbrev-text): Doc fix.
6317 (abbrev-prefix-mark): Don't escape parenthesis.
6318
6319 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
6320
6321 * composite.el (find-composition): Doc fix.
6322
6323 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
6324
6325 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
6326 (sql-oracle-program, sql-sqlite-options)
6327 (sql-query-placeholders-and-send): Doc fixes.
6328 (sql-set-product, sql-interactive-mode): Reflow docstrings.
6329 (sql-imenu-generic-expression, sql-buffer)
6330 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
6331 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
6332 (sql-mode-sybase-font-lock-keywords)
6333 (sql-mode-informix-font-lock-keywords)
6334 (sql-mode-interbase-font-lock-keywords)
6335 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
6336 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
6337 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
6338 (sql-product-feature, sql-highlight-product)
6339 (comint-line-beginning-position, sql-rename-buffer)
6340 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
6341 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
6342 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
6343 Fix typos in docstrings.
6344
6345 2010-05-08 Juri Linkov <juri@jurta.org>
6346
6347 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
6348 property instead of `invisible' and `after-string' (bug#5998).
6349
6350 2010-05-08 Juri Linkov <juri@jurta.org>
6351
6352 * image-mode.el (image-mode-as-text): Fix typo in docstring.
6353
6354 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
6355
6356 * filecache.el (file-cache-add-directory-list)
6357 (file-cache-add-directory-recursively): Fix typos in docstrings.
6358
6359 2010-05-08 Kenichi Handa <handa@m17n.org>
6360
6361 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
6362 (gujarati-composable-pattern): Fix typo.
6363
6364 2010-05-08 Kenichi Handa <handa@m17n.org>
6365
6366 * language/indian.el (oriya-composable-pattern)
6367 (tamil-composable-pattern, malayalam-composable-pattern):
6368 Add two-part vowels to "v" (vowel sign).
6369
6370 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
6371
6372 * files.el (copy-directory): Handle symlinks (Bug#5982).
6373
6374 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
6375
6376 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
6377 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
6378 (Bug#5846).
6379
6380 2010-05-08 Glenn Morris <rgm@gnu.org>
6381
6382 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
6383
6384 * minibuffer.el (completion-at-point): Doc fix.
6385
6386 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
6387
6388 * electric.el (Electric-command-loop): Minor tweak.
6389
6390 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
6391 better with dedicated windows.
6392
6393 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
6394
6395 * Version 23.2 released.
6396
6397 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
6398 Stefan Monnier <monnier@iro.umontreal.ca>
6399
6400 Highlight vendor specific properties.
6401 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
6402 (css-proprietary-property): New face.
6403 (css-font-lock-keywords): Use them.
6404
6405 2010-05-07 Eli Zaretskii <eliz@gnu.org>
6406
6407 * cus-start.el (all): Add native condition for tool-bar-* symbols.
6408
6409 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
6410
6411 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
6412 * files.el (auto-mode-alist): Remove redundant entries.
6413
6414 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
6415 * simple.el (auto-save-mode): Move from files.el.
6416 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
6417
6418 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
6419
6420 * epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
6421
6422 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
6423
6424 * mail/binhex.el (binhex-decode-region-internal)
6425 * mail/uudecode.el (uudecode-decode-region-internal)
6426 * net/dns.el (dns-read-string-name, dns-write, dns-read)
6427 (dns-read-type, dns-query)
6428 * pgg-parse.el (pgg-parse-armor)
6429 * pgg.el (pgg-verify-region)
6430 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
6431 XEmacs.
6432
6433 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
6434
6435 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
6436
6437 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
6438
6439 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
6440 * emulation/cua-base.el (cua-repeat-replace-region):
6441 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
6442 (cua-cut-region-to-global-mark):
6443 Remove text properties with `set-text-properties'.
6444
6445 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
6446
6447 * net/tramp.el (top, with-progress-reporter):
6448 Use `symbol-function' inside `funcall'.
6449
6450 * net/tramp-compat.el (tramp-compat-file-attributes)
6451 (tramp-compat-delete-file, tramp-compat-delete-directory):
6452 Handle only `wrong-number-of-arguments' error.
6453
6454 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
6455 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
6456 inside `funcall'.
6457
6458 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6459
6460 * minibuffer.el (completion--sreverse, completion--common-suffix):
6461 New functions.
6462 (completion-pcm--merge-completions): Extract common suffix when safe.
6463
6464 * emacs-lisp/easy-mmode.el (define-minor-mode):
6465 Make :variable more flexible.
6466 * files.el (auto-save-mode): Use it to define using define-minor-mode.
6467
6468 2010-05-05 Juri Linkov <juri@jurta.org>
6469
6470 Add `slow' and `history' tags to the desktop data.
6471
6472 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
6473 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
6474 (Info-finder-find-node): Require `finder.el' to be able
6475 to restore node from the desktop.
6476 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
6477 data `Info-history' and `slow' tag in the assoc list.
6478 (Info-restore-desktop-buffer): Don't restore nodes with the
6479 `slow' tag. Restore `Info-history'.
6480
6481 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
6482
6483 Add FORCE argument to `delete-file'.
6484
6485 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
6486 forcing to delete the temporary file.
6487 (ange-ftp-delete-file): Add FORCE arg.
6488 (ange-ftp-rename-remote-to-remote)
6489 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
6490 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
6491 Force file deletion.
6492
6493 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
6494
6495 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
6496 (tramp-handle-make-symbolic-link, tramp-handle-load)
6497 (tramp-do-copy-or-rename-file-via-buffer)
6498 (tramp-do-copy-or-rename-file-directly)
6499 (tramp-do-copy-or-rename-file-out-of-band)
6500 (tramp-handle-process-file, tramp-handle-call-process-region)
6501 (tramp-handle-shell-command, tramp-handle-file-local-copy)
6502 (tramp-handle-insert-file-contents, tramp-handle-write-region)
6503 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
6504
6505 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
6506 (tramp-fish-handle-make-symbolic-link)
6507 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
6508
6509 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
6510 Use `tramp-compat-delete-file'.
6511
6512 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
6513 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
6514
6515 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
6516 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
6517
6518 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
6519 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
6520 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
6521 `tramp-compat-delete-file'.
6522
6523 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
6524
6525 Minor cleanups.
6526 * subr.el (add-minor-mode): Use push.
6527 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
6528 * emulation/edt.el (edt-select-mode): Simplify.
6529
6530 Use define-minor-mode in more cases.
6531 * term/tvi970.el (tvi970-set-keypad-mode):
6532 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
6533 (normal-erase-is-backspace-mode):
6534 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
6535 (set-scroll-bar-mode-1): (Re)move to its sole caller.
6536 (get-scroll-bar-mode): New function.
6537 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
6538
6539 Use define-minor-mode for less obvious cases.
6540 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
6541 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
6542 * international/iso-ascii.el (iso-ascii-mode):
6543 * frame.el (auto-raise-mode, auto-lower-mode):
6544 * composite.el (global-auto-composition-mode): Use define-minor-mode.
6545
6546 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
6547
6548 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
6549 in order to see error messages for failed logins.
6550
6551 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
6552
6553 * diff.el (diff-sentinel):
6554
6555 * epg.el (epg--make-temp-file, epg-decrypt-string)
6556 (epg-verify-string, epg-sign-string, epg-encrypt-string):
6557
6558 * jka-compr.el (jka-compr-partial-uncompress)
6559 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
6560
6561 * server.el (server-sentinel): Use delete-file's new FORCE arg
6562 (Bug#6070).
6563
6564 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
6565
6566 Use define-minor-mode where applicable.
6567 * view.el (view-mode):
6568 * type-break.el (type-break-query-mode)
6569 (type-break-mode-line-message-mode):
6570 * textmodes/reftex.el (reftex-mode):
6571 * term/vt100.el (vt100-wide-mode):
6572 * tar-mode.el (tar-subfile-mode):
6573 * savehist.el (savehist-mode):
6574 * ibuf-ext.el (ibuffer-auto-mode):
6575 * composite.el (auto-composition-mode):
6576 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
6577 Use define-minor-mode.
6578 (vhdl-mode): Use static mode-line format.
6579 (vhdl-mode-line-update): Delete.
6580 (vhdl-create-mode-menu, vhdl-activate-customizations)
6581 (vhdl-hs-minor-mode): Don't bother calling it.
6582
6583 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
6584
6585 * simple.el (with-wrapper-hook): Move.
6586 (buffer-substring-filters): Mark obsolete.
6587 (filter-buffer-substring-functions): New variable.
6588 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
6589
6590 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
6591 Michael Albinus <michael.albinus@gmx.de>
6592
6593 Implement compression for inline methods.
6594
6595 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
6596 (tramp-copy-size-limit): Allow also nil.
6597 (tramp-inline-compress-commands): New defconst.
6598 (tramp-find-inline-compress, tramp-get-inline-compress)
6599 (tramp-get-inline-coding): New defuns.
6600 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
6601 replaced by `tramp-get-inline-coding'.
6602 (tramp-handle-file-local-copy, tramp-handle-write-region)
6603 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
6604
6605 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
6606
6607 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
6608 Remove unused functions.
6609
6610 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
6611 Set find-tag-default-function as a variable rather than a property.
6612
6613 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
6614 * progmodes/etags.el (tags-completion-at-point-function):
6615 Remove left over interactive spec. Add autoloading stub.
6616 (complete-tag): Use tags-completion-at-point-function.
6617
6618 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
6619
6620 * minibuffer.el (tags-completion-at-point-function): Fix return value.
6621
6622 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
6623
6624 * ido.el (ido-init-completion-maps): Remove C-v binding.
6625 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
6626
6627 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
6628
6629 * minibuffer.el (tags-completion-at-point-function): New function.
6630 (completion-at-point-functions): Use it.
6631
6632 * progmodes/etags.el (complete-tag): Revert last change.
6633
6634 2010-04-29 Alan Mackenzie <acm@muc.de>
6635
6636 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
6637 off-by-one error (in end of macro position).
6638
6639 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
6640
6641 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
6642 firefox is absent. Don't autoload.
6643 (browse-url-galeon-program): Don't autoload.
6644
6645 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
6646
6647 * bindings.el (complete-symbol): Move into minibuffer.el.
6648
6649 * minibuffer.el (complete-tag): Move from etags.el. If tags
6650 completion cannot be performed, return nil instead of signalling
6651 an error.
6652 (completion-at-point): Make it an alias for complete-symbol.
6653 (complete-symbol): Move from bindings.el, and replace with the
6654 body of completion-at-point.
6655
6656 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
6657
6658 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
6659
6660 * net/tramp.el (tramp-remote-selinux-p): New defun.
6661 (tramp-handle-file-selinux-context)
6662 (tramp-handle-set-file-selinux-context): Use it.
6663
6664 2010-04-28 Sam Steingold <sds@gnu.org>
6665
6666 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
6667 `safe-local-variable' if the value is a string or a symbol with
6668 the property `bug-reference-url-format'.
6669
6670 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
6671
6672 * progmodes/bug-reference.el (bug-reference-url-format):
6673 Revert 2010-04-27 change due to security risk.
6674
6675 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
6676
6677 Make it possible to locally disable a globally enabled mode.
6678 * simple.el (fundamental-mode): Run fundamental-mode-hook.
6679 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
6680 rather than kill-all-local-variables so it runs fundamental-mode-hook.
6681 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6682 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
6683 that subsequent hooks get a chance to disable it.
6684
6685 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
6686
6687 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6688 Avoid re-enabling a minor mode after the user turned the minor mode
6689 off if MODE-enable-in-buffers is run twice (typically once from
6690 fundamental-mode's after-change-major-mode-hook and a second time from
6691 run-mode-hook's own after-change-major-mode-hook).
6692
6693 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
6694
6695 2010-04-27 Sam Steingold <sds@gnu.org>
6696
6697 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
6698 `safe-local-variable' if the value is a string or a function, as
6699 documented and implemented on 2010-04-02.
6700
6701 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
6702
6703 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
6704 when method is 'kill.
6705
6706 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
6707
6708 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
6709 condition in default directory check.
6710 (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
6711 Kill ispell process when killing its associated buffer.
6712
6713 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
6714
6715 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
6716 but we aren't using it.
6717
6718 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
6719
6720 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
6721 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
6722
6723 2010-04-24 Glenn Morris <rgm@gnu.org>
6724
6725 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
6726 Ignore VCS-ignore files, and deleted nextstep preferences files.
6727 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
6728 (authors-ambiguous-files): New list.
6729 (authors-valid-file-names): Add some deleted files.
6730 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
6731 (authors-disambiguate-file-name): New function. (Bug#5501)
6732 (authors-canonical-file-name): Doc fix.
6733 Don't warn about obsolete files.
6734 (authors-canonical-file-name, authors-scan-el):
6735 Use authors-disambiguate-file-name.
6736
6737 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
6738 Add autoload cookies.
6739 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
6740 (generated-autoload-file): Set file-local value to "htmlfontify.el".
6741 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
6742 They have definitions / compiler macros in cl.el.
6743 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
6744 Replace manual autoloads with generated ones.
6745 (htmlfontify-unload-rgb-file): Remove autoload.
6746 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
6747
6748 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
6749
6750 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
6751 (byte-compile-setq-default): Optimize for the
6752 single-var case and don't call byte-compile-form in this case to avoid
6753 inf-loop with byte-compile-set-default.
6754
6755 * progmodes/compile.el (compilation-start): Abbreviate default directory.
6756
6757 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
6758
6759 Implement SELINUX backends.
6760
6761 * net/tramp.el (tramp-file-name-handler-alist):
6762 Add `file-selinux-context' and `set-file-selinux-context'.
6763 (tramp-handle-file-selinux-context)
6764 (tramp-handle-set-file-selinux-context): New defuns.
6765 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
6766 Handle PRESERVE-SELINUX-CONTEXT.
6767
6768 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6769 Add `file-selinux-context' and `set-file-selinux-context'.
6770 (tramp-gvfs-handle-file-selinux-context)
6771 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
6772 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
6773
6774 * net/ange-ftp.el (ange-ftp-copy-file):
6775 * net/tramp-fish.el (tramp-fish-handle-copy-file):
6776 * net/tramp-imap.el (tramp-imap-handle-copy-file):
6777 * net/tramp-smb.el (tramp-smb-handle-copy-file):
6778 Add PRESERVE-SELINUX-CONTEXT.
6779
6780 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
6781
6782 Synchronize with Tramp repository.
6783
6784 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
6785 (tramp-action-process-alive, tramp-action-out-of-band)
6786 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
6787 (tramp-exists-file-name-handler): Fix docstring.
6788 (with-progress-reporter): New defmacro.
6789 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
6790 (tramp-maybe-open-connection): Use it.
6791
6792 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
6793
6794 Detect ssh 'ControlMaster' argument automatically in some cases.
6795
6796 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
6797 (tramp-default-method): Use it.
6798
6799 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
6800
6801 * net/tramp.el (tramp-handle-copy-file): Add new optional
6802 parameter `preserve-selinux-context'.
6803 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
6804
6805 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
6806
6807 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
6808 Ensure, that non remote files are still checked. Oops.
6809
6810 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
6811
6812 Fix Bug#5840.
6813
6814 * icomplete.el (icomplete-completions): Use `non-essential'.
6815
6816 * net/tramp.el (tramp-connectable-p): New defun.
6817 (tramp-handle-expand-file-name)
6818 (tramp-completion-handle-file-name-all-completions)
6819 (tramp-completion-handle-file-name-completion): Use it.
6820
6821 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
6822
6823 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
6824
6825 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
6826
6827 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
6828
6829 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
6830
6831 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
6832 is present.
6833
6834 * info.el (info-tool-bar-map): Add labels.
6835
6836 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
6837
6838 * cus-edit.el (custom-commands): Add labels for tool bar.
6839 (custom-buffer-create-internal, Custom-mode): Adjust for
6840 labels in custom-commands.
6841
6842 * dynamic-setting.el: Renamed from font-setting.el.
6843
6844 2010-04-21 John Wiegley <jwiegley@gmail.com>
6845
6846 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
6847 toggles the use of virtual buffers.
6848 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
6849 (ido-toggle-virtual-buffers): New function.
6850
6851 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
6852
6853 Use `define-derived-mode'; fix window selection; doc fixes.
6854 * play/tetris.el (tetris, tetris-update-speed-function)
6855 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
6856 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
6857 (tetris-rotate-next, tetris-end-game, tetris-start-game)
6858 (tetris-pause-game): Fix typos in docstrings.
6859 (tetris-mode-map, tetris-null-map):
6860 Move initialization into declaration.
6861 (tetris-mode): Define with `define-derived-mode';
6862 set show-trailing-whitespace to nil.
6863 (tetris): Prefer window already displaying the "*Tetris*" buffer.
6864
6865 2010-04-21 Karel Klíč <kklic@redhat.com>
6866
6867 * files.el (backup-buffer): Handle SELinux context, and return it
6868 if a backup was made by renaming.
6869 (backup-buffer-copy): Set SELinux context to the target file.
6870 (basic-save-buffer): Set SELinux context of the newly written file.
6871 (basic-save-buffer-1): Now it also returns any SELinux context.
6872 (basic-save-buffer-2): Set SELinux context of the newly created file,
6873 and return it.
6874 * net/tramp.el (tramp-file-name-for-operation):
6875 Add file-selinux-context.
6876
6877 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
6878
6879 Make the log-edit comments use RFC822 format throughout.
6880
6881 * vc.el (vc-checkin, vc-modify-change-comment):
6882 Adjust to new vc-start/finish-logentry.
6883 (vc-find-conflicted-file): New command.
6884 (vc-transfer-file): Adjust to new vc-checkin.
6885 (vc-next-action): Improve scoping.
6886
6887 * vc-hg.el (vc-hg-log-edit-mode): Remove.
6888 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
6889
6890 * vc-git.el (vc-git-log-edit-mode): Remove.
6891 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
6892 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
6893
6894 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
6895 (vc-start-logentry): Remove argument `extra'.
6896 (vc-finish-logentry): Remove extra args.
6897
6898 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
6899 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
6900 (vc-bzr-conflicted-files): New function.
6901
6902 * log-edit.el (log-edit-extra-flags)
6903 (log-edit-before-checkin-process): Remove.
6904 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
6905 (log-edit-headers-alist): New var.
6906 (log-edit-header-contents-regexp): New const.
6907 (log-edit-match-to-eoh): New function.
6908 (log-edit-font-lock-keywords): Use them.
6909 (log-edit): Insert a "Summary:" header as default.
6910 (log-edit-mode): Mark font-lock rules as case-insensitive.
6911 (log-edit-done): Cleanup headers.
6912 (log-view-process-buffer): Remove.
6913 (log-edit-extract-headers): New function to replace it.
6914
6915 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
6916
6917 * subr.el (default-direction-reversed): Remove obsolescence info.
6918
6919 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
6920
6921 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
6922 windows/frames.
6923
6924 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
6925 I.e. include text after point in the completion region.
6926 Also, return nil when we're not after/in a symbol.
6927
6928 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
6929 default enable-multibyte-characters.
6930
6931 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
6932
6933 * international/mule.el: Help the user choose a valid coding-system.
6934 (read-buffer-file-coding-system): New function.
6935 (set-buffer-file-coding-system): Use it. Prompt the user if the
6936 coding-system cannot encode all the chars.
6937
6938 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
6939 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
6940 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
6941 Don't use *vc-bzr-shelve*.
6942
6943 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
6944
6945 Fix the version number for added files.
6946 * vc-hg.el (vc-hg-working-revision): Check if the file is
6947 registered after hg parent fails (Bug#5961).
6948
6949 2010-04-19 Glenn Morris <rgm@gnu.org>
6950
6951 * htmlfontify.el (htmlfontify-buffer)
6952 (htmlfontify-copy-and-link-dir): Autoload entry points.
6953
6954 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
6955
6956 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
6957 name relative to the project root (Bug#5960).
6958
6959 2010-04-19 Glenn Morris <rgm@gnu.org>
6960
6961 * vc-git.el (vc-git-print-log): Doc fix.
6962
6963 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
6964
6965 * ido.el (ido-file-internal): Fix 2009-12-02 change.
6966
6967 2010-04-19 Christoph <cschol2112@googlemail.com> (tiny change)
6968
6969 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
6970 default settings (Bug#5928).
6971
6972 2010-04-19 Glenn Morris <rgm@gnu.org>
6973
6974 * progmodes/fortran.el (fortran-match-and-skip-declaration):
6975 New function.
6976 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
6977
6978 2010-04-19 Kenichi Handa <handa@m17n.org>
6979
6980 * language/indian.el (malayalam-composable-pattern): Fix previous
6981 change (add U+0D4D "SIGN VIRAMA").
6982 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
6983 (tamil-composable-pattern): Fix typo in the regexp.
6984 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
6985 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
6986 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
6987
6988 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
6989
6990 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
6991 paragraph-separate (Bug#5821).
6992
6993 2010-04-19 Juri Linkov <juri@jurta.org>
6994
6995 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
6996
6997 * info.el (Info-find-node-2): Comment out code that skips
6998 breadcrumbs line.
6999 (Info-mouse-follow-link): New command.
7000 (Info-link-keymap): New keymap.
7001 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
7002 Return a string with links instead of inserting breadcrumbs
7003 to the Info buffer.
7004 (Info-fontify-node): Comment out code that inserts breadcrumbs.
7005 Instead of putting the `invisible' text property over the Info
7006 header, make an overlay over the Info header with the `invisible'
7007 property and `after-string' set to the string returned by
7008 `Info-breadcrumbs'.
7009
7010 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
7011
7012 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
7013 Reported by monkey@sandpframing.com.
7014
7015 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
7016
7017 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
7018 (tmm-get-keymap): Add key-binding shortcuts now that they're not
7019 available in the "keyseq cache" any more.
7020
7021 * custom.el (defcustom): Add edebug spec.
7022
7023 2010-04-18 Juri Linkov <juri@jurta.org>
7024
7025 Test for special mode-class in view-buffer instead of view-file (bug#5513).
7026
7027 * view.el (view-file, view-buffer): Move test for special mode-class
7028 from view-file to view-buffer.
7029
7030 * tar-mode.el (tar-extract): Turn if's into one cond
7031 like in arc-mode.el.
7032
7033 2010-04-18 Juri Linkov <juri@jurta.org>
7034
7035 Add 7z archive format support (bug#5475).
7036
7037 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
7038 (archive-7z-extract): New defcustom.
7039 (archive-find-type): Add magic string for 7z.
7040 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
7041 If `stderr-file' is non-nil, use `(t stderr-file)' for the
7042 `buffer' arg of `call-process'.
7043 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
7044 call the function `archive-7z-extract' with the variable
7045 `archive-7z-extract' let-bound to `archive-zip-extract'.
7046 (archive-7z-summarize, archive-7z-extract): New functions.
7047
7048 * international/mule.el (auto-coding-alist):
7049 * files.el (auto-mode-alist): Add 7z file extension.
7050
7051 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
7052
7053 * loadup.el: Setup hash-cons for pure data.
7054
7055 Fix duplicate entries in cedet's loaddefs.el files.
7056 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
7057 Should make most file-local generated-autoload-file unnecessary.
7058 (print-readably): Silence warnings.
7059 (autoload-find-destination): Take load-name as an arg to make sure
7060 it's the same as the one that will be in the file.
7061 (autoload-generate-file-autoloads): Adjust to above changes.
7062 Try to make the dataflow a bit simpler.
7063
7064 * cvs-status.el (cvs-refontify): Remove unused.
7065
7066 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
7067
7068 * calc/calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
7069
7070 * calc/calc-bin.el (calc-radix): Have the "O" option turn on
7071 twos-complement mode.
7072
7073 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
7074
7075 * calc/calc-ext.el (calc-init-extensions): Add keybinding for
7076 'calc-option'. Add `calc-option-prefix-help' to calc-help autoloads.
7077 (calc-inverse): Add "Option" to message, as appropriate.
7078 (calc-hyperbolic): Add "Option" to message, as appropriate.
7079 (calc-option, calc-is-option): New functions.
7080
7081 * calc/calc-help.el (calc-full-help): Add `calc-option-help'.
7082 (calc-option-prefix-help): New function.
7083
7084 * calc/calc-misc.el (calc-help): Add "Option" entry.
7085
7086 * calc/calc.el (calc-local-var-list): Add `calc-option-flag'.
7087 (calc-option-flag): New variable.
7088 (calc-do): Set `calc-option-flag to nil.
7089 (calc-set-mode-line): Add "Opt " as appropriate.
7090
7091 2010-04-16 Juri Linkov <juri@jurta.org>
7092
7093 Move scrolling commands from simple.el to window.el
7094 because their primitives are implemented in window.c.
7095
7096 * simple.el (scroll-error-top-bottom)
7097 (scroll-up-command, scroll-down-command, scroll-up-line)
7098 (scroll-down-line, scroll-other-window-down)
7099 (beginning-of-buffer-other-window, end-of-buffer-other-window):
7100 * window.el (scroll-error-top-bottom)
7101 (scroll-up-command, scroll-down-command, scroll-up-line)
7102 (scroll-down-line, scroll-other-window-down)
7103 (beginning-of-buffer-other-window, end-of-buffer-other-window):
7104 Move from simple.el to window.el because their primitives are
7105 implemented in window.c.
7106
7107 2010-04-16 Juri Linkov <juri@jurta.org>
7108
7109 * isearch.el (isearch-lookup-scroll-key): Check both
7110 `isearch-scroll' and `scroll-command' properties.
7111 (scroll-up, scroll-down): Remove `isearch-scroll' property.
7112
7113 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
7114
7115 * simple.el (scroll-up-command, scroll-down-command)
7116 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
7117
7118 2010-04-15 Juri Linkov <juri@jurta.org>
7119
7120 * simple.el (scroll-up-command, scroll-down-command)
7121 (scroll-up-line, scroll-down-line): Put `scroll-command'
7122 property on the these symbols. Remove them from
7123 `scroll-preserve-screen-position-commands'.
7124
7125 * mwheel.el (mwheel-scroll): Put `scroll-command' and
7126 `isearch-scroll' properties on the `mwheel-scroll' symbol.
7127 Remove it from `scroll-preserve-screen-position-commands'.
7128
7129 * isearch.el (isearch-allow-scroll): Doc fix.
7130
7131 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
7132
7133 * net/tramp.el (tramp-error-with-buffer): Don't show the
7134 connection buffer when we are in completion mode.
7135 (tramp-file-name-handler): Catch the error for some operations
7136 when we are in completion mode. This gives the user the chance to
7137 correct the file name in the minibuffer.
7138
7139 2010-04-15 Glenn Morris <rgm@gnu.org>
7140
7141 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
7142
7143 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
7144
7145 Simplify by using `define-derived-mode'.
7146 * info.el (Info-mode):
7147 * calendar/todo-mode.el (todo-mode):
7148 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
7149 (gomoku-mode-map): Move initialization into declaration.
7150
7151 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
7152
7153 Fix Bug#5840.
7154 * ido.el (ido-file-name-all-completions-1):
7155 * minibuffer.el (minibuffer-completion-help):
7156 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
7157
7158 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
7159
7160 * simple.el (non-essential): New var.
7161
7162 Add a new field `location' to bookmarks for non-file bookmarks.
7163 * bookmark.el (bookmark-location): Use the new field, if present.
7164 (bookmark-insert-location): Undo last change, not needed any more.
7165 * man.el (Man-bookmark-make-record):
7166 * woman.el (woman-bookmark-make-record): Add `location' field.
7167
7168 2010-04-14 Juri Linkov <juri@jurta.org>
7169
7170 * simple.el (scroll-error-top-bottom): New defcustom.
7171 (scroll-up-command, scroll-down-command): Use it. Doc fix.
7172
7173 * emulation/pc-select.el (pc-select-override-scroll-error):
7174 Obsolete in favor of `scroll-error-top-bottom'.
7175
7176 2010-04-14 Juri Linkov <juri@jurta.org>
7177
7178 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
7179 `scroll-up-command' and `M-v' to `scroll-down-command'.
7180
7181 * emulation/cua-rect.el (cua--init-rectangles):
7182 * forms.el (forms--change-commands):
7183 * image-mode.el (image-mode-map):
7184 Remap scroll-down-command and scroll-up-command
7185 in addition to scroll-down and scroll-up.
7186
7187 2010-04-14 Juri Linkov <juri@jurta.org>
7188
7189 * mwheel.el (scroll-preserve-screen-position-commands):
7190 Add mwheel-scroll to this list of commands.
7191
7192 * simple.el (scroll-preserve-screen-position-commands):
7193 Add scroll-up-command, scroll-down-command, scroll-up-line,
7194 scroll-down-line to this list of commands.
7195
7196 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
7197
7198 * obsolete/complete.el: Move from lisp/complete.el.
7199
7200 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
7201
7202 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
7203 to the minor mode function now turns the mode ON unconditionally.
7204
7205 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
7206
7207 * vc-dir.el (vc-dir-kill-line): New command.
7208 (vc-dir-mode-map): Bind it to C-k.
7209
7210 * bookmark.el (bookmark-insert-location): Handle a nil filename.
7211
7212 * woman.el: Add bookmark declarations to silence the compiler.
7213 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
7214 step to compatibility between man and woman bookmarks.
7215 Adjust for Man-default-bookmark-title renaming.
7216 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
7217
7218 * man.el: Add bookmark declarations to silence the compiler.
7219 (Man-name-local-regexp): Make it match NAME as well.
7220 (Man-getpage-in-background): Return the buffer.
7221 (Man-notify-when-ready): Use `case'.
7222 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
7223 Don't hardcode "NAME". Simplify.
7224 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
7225 Rename from Man-bookmark-make-record.
7226 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
7227 we have the actual man-args. Use Man-getpage-in-background rather
7228 than `man' since the arg is already processed. Let bookmark.el do the
7229 window handling. Only wait for the relevant process.
7230 Don't forget to autoload.
7231
7232 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
7233
7234 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7235
7236 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
7237 New functions.
7238 (woman-mode): Setup bookmark support.
7239
7240 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
7241 (man-bookmark-jump): New functions.
7242 (Man-mode): Setup bookmark support.
7243
7244 2010-04-10 Jari Aalto <jari.aalto@cante.net>
7245
7246 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
7247 recognize ssh-keygen prompt (Bug#2817).
7248
7249 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
7250
7251 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
7252
7253 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
7254
7255 Synchronize with Tramp repository.
7256
7257 * net/tramp.el (tramp-completion-function-alist)
7258 (tramp-file-name-regexp, tramp-chunksize)
7259 (tramp-local-coding-commands, tramp-remote-coding-commands):
7260 Fix docstring.
7261 (tramp-remote-process-environment): Use `format' instead of `concat'.
7262 (tramp-handle-directory-files-and-attributes)
7263 (tramp-get-remote-path): Use `copy-tree'.
7264 (tramp-handle-file-name-all-completions): Backward/ XEmacs
7265 compatibility: Use `completion-ignore-case' if
7266 `read-file-name-completion-ignore-case' does not exist.
7267 (tramp-do-copy-or-rename-file-directly): Do not use
7268 `tramp-handle-file-remote-p'.
7269 (tramp-do-copy-or-rename-file-out-of-band):
7270 Use `tramp-compat-delete-directory'.
7271 (tramp-do-copy-or-rename-file-out-of-band)
7272 (tramp-compute-multi-hops, tramp-maybe-open-connection):
7273 Use `format-spec-make'.
7274 (tramp-find-foreign-file-name-handler)
7275 (tramp-advice-make-auto-save-file-name)
7276 (tramp-set-auto-save-file-modes): Remove superfluous check for
7277 `stringp'. This is done inside `tramp-tramp-file-p'.
7278 (tramp-debug-outline-regexp): New defconst.
7279 (tramp-get-debug-buffer): Use it.
7280 (tramp-check-for-regexp): Use (forward-line 1).
7281 (tramp-set-auto-save-file-modes): Adapt version check.
7282
7283 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
7284 Wrap call of `featurep' for 2nd argument.
7285 (tramp-compat-make-temp-file): Simplify fallback implementation.
7286 (tramp-compat-copy-tree): Remove function.
7287 (tramp-compat-delete-directory): Provide implementation for older
7288 Emacsen.
7289
7290 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
7291 Do not use `tramp-fish-handle-file-attributes.
7292
7293 * net/trampver.el: Update release number.
7294
7295 2010-04-10 Glenn Morris <rgm@gnu.org>
7296
7297 * progmodes/compile.el (compilation-save-buffers-predicate):
7298 Add missing :version tag.
7299
7300 2010-04-09 Sam Steingold <sds@gnu.org>
7301
7302 * progmodes/compile.el (compilation-save-buffers-predicate):
7303 Remove the "autoload" cookie.
7304
7305 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
7306 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
7307 and `bug-reference-prog-mode' can be used in hooks directly.
7308
7309 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
7310
7311 Add --author support to git commit.
7312 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
7313 (vc-git-log-edit-mode): New minor mode.
7314 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
7315 New declarations.
7316
7317 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
7318
7319 * vc-hooks.el, vc-git.el: Improve documentation comments.
7320
7321 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
7322
7323 Fix some of the problems in defsubst* (bug#5728).
7324 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
7325 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
7326
7327 2010-04-07 Sam Steingold <sds@gnu.org>
7328
7329 * progmodes/compile.el (compilation-save-buffers-predicate):
7330 New custom variable.
7331 (compile, recompile): Pass it to `save-some-buffers'.
7332
7333 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
7334
7335 * wid-edit.el (widget-choose): Move cursor to the second line of
7336 the buffer (Bug#5695).
7337
7338 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
7339
7340 Add new VC methods: vc-log-incoming and vc-log-outgoing.
7341 * vc.el (vc-print-log-setup-buttons): New function split out from
7342 vc-print-log-internal.
7343 (vc-log-internal-common): New function, a parametrized version of
7344 vc-print-log-internal.
7345 (vc-print-log-internal): Just call vc-log-internal-common with the
7346 right arguments.
7347 (vc-incoming-outgoing-internal):
7348 (vc-log-incoming, vc-log-outgoing): New functions.
7349 (vc-log-view-type): New permanent local variable.
7350
7351 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
7352
7353 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
7354 of the dynamic bound vc-short-log.
7355 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
7356
7357 * vc-git.el (vc-git-log-outgoing): New function.
7358 (vc-git-log-view-mode): Use vc-log-view-type instead
7359 of the dynamic bound vc-short-log.
7360
7361 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
7362 of the dynamic bound vc-short-log. Highlight the tag.
7363 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
7364 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
7365 (vc-hg-incoming-mode): Remove.
7366 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
7367
7368 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
7369
7370 Fix default-directory for vc-root-diff.
7371 * vc.el (vc-root-diff): Bind default-directory to the root
7372 directory for the diff command.
7373
7374 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
7375
7376 * progmodes/verilog-mode.el (verilog-forward-sexp):
7377 (verilog-calc-1): Support "disable fork" and "fork wait" multi
7378 word keywords, suggested by Steve Pearlmutter.
7379 (verilog-pretty-declarations): Support lineup of declarations in
7380 port lists.
7381 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
7382 fix bug for /* / comments.
7383 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
7384 Speed up and simplfy as this is never called with a bound.
7385 (verilog-pretty-declarations): Enhance to line up declarations
7386 inside a parameter list, suggested by Alan Morgan.
7387 (verilog-pretty-expr): Tune assignment regular expression match
7388 string for corner cases; also use markers instead of character
7389 number as indent changes the later.
7390
7391 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
7392
7393 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
7394 as missing keyword.
7395 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
7396 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
7397 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
7398 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
7399 Tennant.
7400 (verilog-keywords):
7401 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
7402 1800-2009 keywords, including "global.".
7403
7404 2010-04-06 John Wiegley <jwiegley@gmail.com>
7405
7406 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
7407 appearing in buffer list (if a live buffer name matched a recentf
7408 file basename). Should use uniquify to offer a real solution.
7409
7410 2010-04-06 John Wiegley <jwiegley@gmail.com>
7411
7412 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
7413 comment to code, and add a :version tag.
7414 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
7415
7416 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
7417
7418 Enable recentf-mode if using virtual buffers.
7419 * ido.el (recentf-list): Declare for byte-compiler.
7420 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
7421 (ido-make-buffer-list): Simplify.
7422 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
7423
7424 2010-04-05 Juri Linkov <juri@jurta.org>
7425
7426 Scrolling commands which scroll a line instead of full screen.
7427 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
7428
7429 * simple.el (scroll-up-line, scroll-down-line): New commands.
7430 Put property isearch-scroll=t on them.
7431
7432 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
7433 Remove commands.
7434
7435 2010-04-05 Juri Linkov <juri@jurta.org>
7436
7437 Scrolling commands which do not signal errors at top/bottom.
7438 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
7439
7440 * simple.el (scroll-up-command, scroll-down-command): New commands.
7441 Put property isearch-scroll=t on them.
7442
7443 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
7444 `scroll-down-command' and [next] from `scroll-up' to
7445 `scroll-up-command'.
7446
7447 * emulation/cua-base.el: Put property CUA=move on
7448 `scroll-up-command' and `scroll-down-command'.
7449 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
7450 and `scroll-down-command' to `cua-scroll-down'.
7451
7452 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
7453
7454 * help.el (describe-mode): Return nil.
7455
7456 2010-04-04 John Wiegley <jwiegley@gmail.com>
7457
7458 * ido.el (ido-use-virtual-buffers): New variable to indicate
7459 whether "virtual buffer" support is enabled for IDO.
7460 (ido-virtual): Face used to indicate virtual buffers in the list.
7461 (ido-buffer-internal): If a buffer is chosen, and no such buffer
7462 exists, but a virtual buffer of that name does (which would be why
7463 it was in the list), recreate the buffer by reopening the file.
7464 (ido-make-buffer-list): If virtual buffers are being used, call
7465 `ido-add-virtual-buffers-to-list' before the make list hook.
7466 (ido-virtual-buffers): New variable which contains a copy of the
7467 current contents of the `recentf-list', albeit pared down for the
7468 sake of speed, and with proper faces applied.
7469 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
7470 create a list of "virtual buffers" to present to the user in
7471 addition to the currently open set. Note that this logic could
7472 get rather slow if that list is too large. With the default
7473 `recentf-max-saved-items' of 200, there is little speed penalty.
7474
7475 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
7476
7477 * font-lock.el: Require CL when compiling.
7478 (font-lock-turn-on-thing-lock): Use `case'.
7479
7480 2010-04-03 Eli Zaretskii <eliz@gnu.org>
7481
7482 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
7483 Zaretskii.
7484
7485 2010-04-02 Juri Linkov <juri@jurta.org>
7486
7487 * ehelp.el (electric-help-orig-major-mode):
7488 New buffer-local variable.
7489 (electric-help-mode): Set it to original major-mode. Doc fix.
7490 (with-electric-help): Use `electric-help-orig-major-mode' instead
7491 of (default-value 'major-mode). Doc fix.
7492 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
7493
7494 2010-04-02 Sam Steingold <sds@gnu.org>
7495
7496 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
7497 `vc-hg-command' with a list of flags.
7498
7499 * progmodes/bug-reference.el (bug-reference-bug-regexp):
7500 Also accept "patch" and "RFE".
7501 (bug-reference-fontify): `bug-reference-url-format' can also be a
7502 function to be able to handle the bug kind.
7503 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
7504
7505 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
7506
7507 * tmm.el (tmm-get-keymap): Check with symbolp before passing
7508 value to fboundp, it may not be a symbol.
7509
7510 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7511
7512 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
7513
7514 2010-03-31 Juri Linkov <juri@jurta.org>
7515
7516 * simple.el (next-line, previous-line): Re-throw a signal
7517 with `signal' instead of using `ding'.
7518 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
7519
7520 2010-03-31 Juri Linkov <juri@jurta.org>
7521
7522 * simple.el (keyboard-escape-quit): Raise deselecting the active
7523 region higher than exiting the minibuffer.
7524 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
7525
7526 2010-03-31 Juri Linkov <juri@jurta.org>
7527
7528 * image.el (image-animated-p): Use `image-metadata' instead of
7529 `image-extension-data'. Get GIF extenstion data from metadata
7530 property `extension-data'.
7531
7532 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7533
7534 * simple.el (append-to-buffer): Simplify.
7535
7536 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
7537
7538 * textmodes/artist.el (artist-mode): Fix typo in docstring.
7539 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
7540
7541 2010-03-31 Kenichi Handa <handa@m17n.org>
7542
7543 * language/sinhala.el (composition-function-table): Fix regexp for
7544 the new Unicode specification.
7545
7546 * language/indian.el (devanagari-composable-pattern)
7547 (tamil-composable-pattern, kannada-composable-pattern)
7548 (malayalam-composable-pattern): Adjust for the new Unicode
7549 specification.
7550 (bengali-composable-pattern, gurmukhi-composable-pattern)
7551 (gujarati-composable-pattern, oriya-composable-pattern)
7552 (telugu-composable-pattern): New variables to cope with the new
7553 Unicode specification. Use them in composition-function-table.
7554
7555 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7556
7557 Make tmm-menubar work for the Buffers menu again (bug#5726).
7558 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
7559 vectors rather than cons cells, as used in menu-bar-update-buffers.
7560
7561 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7562
7563 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
7564 (js-insert-and-indent): Revert 2009-08-15 change, restoring
7565 electric punctuation for "{}();,:" (Bug#5586).
7566
7567 * mail/sendmail.el (mail-default-directory): Doc fix.
7568
7569 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7570
7571 * mail/sendmail.el (mail-default-directory): Doc fix.
7572
7573 2010-03-31 Eli Zaretskii <eliz@gnu.org>
7574
7575 * subr.el (version-regexp-alist, version-to-list)
7576 (version-list-<, version-list-=, version-list-<=)
7577 (version-list-not-zero, version<, version<=, version=): Doc fix.
7578 (Bug#5744).
7579
7580 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
7581
7582 * vc.el (vc-root-diff): Doc fix.
7583
7584 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7585
7586 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
7587
7588 * simple.el (append-to-buffer): Fix last change.
7589
7590 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7591
7592 * simple.el (append-to-buffer): Ensure that point is preserved if
7593 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
7594 (Bug#5749)
7595
7596 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7597
7598 * files.el (auto-mode-case-fold): Change default to t.
7599
7600 2010-03-30 Juri Linkov <juri@jurta.org>
7601
7602 * dired-x.el (dired-omit-mode): Doc fix.
7603
7604 2010-03-30 Juri Linkov <juri@jurta.org>
7605
7606 * replace.el (occur-accumulate-lines): Move occur-engine related
7607 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
7608 to be located after `occur-engine'.
7609
7610 2010-03-30 Juri Linkov <juri@jurta.org>
7611
7612 Make occur handle multi-line matches cleanly with context.
7613 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
7614
7615 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
7616 (occur-engine): Add local variables `ret', `prev-after-lines',
7617 `prev-lines'. Use more arguments for `occur-context-lines'.
7618 Set first elem of its returned list to `data', and the second elem
7619 to `prev-after-lines'. Don't print the separator line.
7620 In the end, print remaining context after-lines.
7621 (occur-context-lines): Add new arguments `begpt', `endpt',
7622 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
7623 after-lines of the previous match with before-lines of the
7624 current match and not overlap them. Return a list with two
7625 values: the output line and the list of context after-lines.
7626
7627 2010-03-30 Juri Linkov <juri@jurta.org>
7628
7629 * replace.el (occur-accumulate-lines): Fix a bug where the first
7630 context line at the beginning of the buffer was missing.
7631
7632 2010-03-30 Eli Zaretskii <eliz@gnu.org>
7633
7634 * files.el: Make bidi-display-reordering safe variable for boolean
7635 values.
7636
7637 2010-03-29 Phil Hagelberg <phil@evri.com>
7638 Chong Yidong <cyd@stupidchicken.com>
7639
7640 * subr.el: Extend progress reporters to perform "spinning".
7641 (progress-reporter-update, progress-reporter-do-update):
7642 Handle non-numeric value arguments.
7643 (progress-reporter--pulse-characters): New var.
7644
7645 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
7646
7647 * progmodes/compile.el (compilation-start): Fix regexp detection
7648 of initial cd command (Bug#5771).
7649
7650 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
7651
7652 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
7653
7654 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
7655
7656 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
7657 * progmodes/gdb-mi.el: Restore.
7658 * progmodes/gdb-ui.el: Remove.
7659 * progmodes/gud.el: Re-accommodate for gdb-mi.el.
7660
7661 2010-03-25 Glenn Morris <rgm@gnu.org>
7662
7663 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
7664 all dired buffers, even tramp ones. (Bug#5755)
7665
7666 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
7667
7668 Add "union tags" in mpc.el.
7669 * mpc.el: Remove backward compatibility code.
7670 (mpc-browser-tags): Change default.
7671 (mpc--find-memoize-union-tags): New var.
7672 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
7673 (mpc-cmd-find): Handle the case where the playlist does not exist.
7674 Handle union-tags.
7675 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
7676 (mpc-cmd-add): Use mpc-cmd-flush.
7677 (mpc-tagbrowser-tag-name): New fun.
7678 (mpc-tagbrowser-buf): Use it.
7679 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
7680
7681 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
7682
7683 Misc cleanup.
7684 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
7685 Use replace-regexp-in-string.
7686 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
7687 (makefile-imake-mode-syntax-table): Move init into defvar.
7688 (makefile-mode): Use define-derived-mode.
7689
7690 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
7691 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
7692 not be present any more.
7693
7694 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
7695
7696 * faces.el (set-face-attribute): Fix typo in docstring.
7697 (face-valid-attribute-values): Reflow docstring.
7698
7699 2010-03-24 Glenn Morris <rgm@gnu.org>
7700
7701 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
7702
7703 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
7704
7705 * indent.el (indent-for-tab-command): Doc fix.
7706
7707 2010-03-24 Alan Mackenzie <acm@muc.de>
7708
7709 * progmodes/cc-engine.el (c-remove-stale-state-cache):
7710 Fix off-by-one error. Fixes bug #5747.
7711
7712 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
7713
7714 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
7715 (image-dired-read-comment): Doc fix.
7716
7717 * json.el (json-object-type, json-array-type, json-key-type)
7718 (json-false, json-null, json-read-number):
7719 * minibuffer.el (completion-in-region-functions):
7720 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
7721 (cal-tex-cursor-week):
7722 * emacs-lisp/trace.el (trace-function):
7723 * eshell/em-basic.el (eshell/printnl):
7724 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
7725 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
7726 * obsolete/levents.el (allocate-event, event-key, event-object)
7727 (event-point, event-process, event-timestamp, event-to-character)
7728 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
7729 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
7730 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
7731 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
7732 (reftex-highlight-selection): Fix typos in docstrings.
7733
7734 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
7735
7736 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
7737
7738 2010-03-24 Glenn Morris <rgm@gnu.org>
7739
7740 * mail/rmail.el (rmail-highlight-face): Restore option deleted
7741 2008-02-13 without comment; mark it obsolete.
7742 (rmail-highlight-headers): Use rmail-highlight-face once more.
7743
7744 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
7745
7746 * woman.el (woman2-process-escapes): Only consume the newline if
7747 the filler character is on a line by itself (Bug#5729).
7748
7749 2010-03-24 Kenichi Handa <handa@m17n.org>
7750
7751 * language/indian.el (devanagari-composable-pattern): Add more
7752 consonants.
7753
7754 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
7755
7756 * net/trampver.el: Update release number.
7757
7758 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
7759
7760 * net/tramp.el (tramp-find-executable):
7761 Use `tramp-get-connection-buffer'. Make the regexp for checking
7762 output of "wc -l" more robust.
7763 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
7764 (tramp-open-connection-setup-interactive-shell): Remove workaround
7765 for OpenSolaris bug, it is not needed anymore.
7766
7767 2010-03-24 Glenn Morris <rgm@gnu.org>
7768
7769 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
7770
7771 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
7772
7773 * files.el (auto-mode-alist): Accept more verilog file patterns.
7774
7775 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
7776
7777 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
7778
7779 2010-03-24 Glenn Morris <rgm@gnu.org>
7780
7781 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
7782 log-edit-before-checkin-process.
7783
7784 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
7785
7786 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
7787
7788 * vc-dispatcher.el (vc-start-logentry): Doc fix.
7789 (log-view-process-buffer, log-edit-extra-flags): Declare.
7790
7791 * log-edit.el (log-edit-before-checkin-process): Doc fix.
7792
7793 2010-03-23 Sam Steingold <sds@gnu.org>
7794
7795 Fix bug#5620: recalculate all markers on compilation buffer
7796 modifications, not on file modifications.
7797 * progmodes/compile.el (buffer-modtime): New buffer-local variable:
7798 the buffer modification time, for buffers not associated with files.
7799 (compilation-mode): Create it.
7800 (compilation-filter): Update it.
7801 (compilation-next-error-function): Use it instead of
7802 `visited-file-modtime' for timestamp.
7803
7804 2010-03-23 Juri Linkov <juri@jurta.org>
7805
7806 Implement Occur multi-line matches.
7807 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
7808
7809 * replace.el (occur): Doc fix.
7810 (occur-engine): Set `begpt' to the beginning of the first line.
7811 Set `endpt' to the end of the last match line. At first, count
7812 line numbers between `origpt' and `begpt'. Split out code from
7813 `out-line' variable to new let-bindings `match-prefix' and
7814 `match-str'. In `out-line' add non-numeric prefix to all
7815 non-first lines of multi-line matches. Finally, count lines
7816 between `begpt' and `endpt' and add to `lines'.
7817
7818 2010-03-23 Juri Linkov <juri@jurta.org>
7819
7820 * replace.el (occur-accumulate-lines, occur-engine):
7821 Use `occur-engine-line' instead of duplicate code.
7822 (occur-engine-line): New function created from duplicate code
7823 in `occur-accumulate-lines' and `occur-engine'.
7824
7825 * replace.el (occur-engine-line): Add optional arg `keep-props'.
7826 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
7827
7828 2010-03-23 Juri Linkov <juri@jurta.org>
7829
7830 * finder.el: Remove TODO tasks.
7831
7832 * info.el (Info-finder-find-node): Add node "all"
7833 with all package info. Handle a list of multiple keywords
7834 separated by comma.
7835 (info-finder): In interactive use with a prefix argument,
7836 use `completing-read-multiple' to read a list of keywords
7837 separated by comma.
7838
7839 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
7840
7841 Add a new completion style `substring'.
7842 * minibuffer.el (completion-basic--pattern): New function.
7843 (completion-basic-try-completion, completion-basic-all-completions):
7844 Use it.
7845 (completion-substring--all-completions)
7846 (completion-substring-try-completion)
7847 (completion-substring-all-completions): New functions.
7848 (completion-styles-alist): New style `substring'.
7849
7850 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
7851
7852 Get rid of .elc files after removal of the corresponding .el.
7853 * Makefile.in (compile-clean): New target.
7854 (compile-main): Use it.
7855
7856 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
7857
7858 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
7859 don't do make there. When compiling with separate object dir, there
7860 is no Makefile there.
7861
7862 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
7863
7864 Get rid of the ELCFILES abomination, again.
7865 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
7866 (all, compile): Don't call compile-last.
7867 (compile-main): Build the "elcfiles" list dynamically.
7868 (compile-targets): New (internal) target.
7869
7870 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
7871
7872 * Makefile.in (top_srcdir): Define.
7873 (abs_top_builddir): Define.
7874 (srcdir): Don't append `/..'.
7875 (EMACS): Use ${abs_top_builddir}.
7876 (all, compile, compile-always, compile-last): Don't set emacswd.
7877 (update-subdirs, update-authors): Use $(top_srcdir) instead of
7878 $(srcdir).
7879 (lisp): Use $(srcdir) instead of @srcdir@.
7880
7881 2010-03-21 Juri Linkov <juri@jurta.org>
7882
7883 Fix message of multi-line occur regexps and multi-buffer header lines.
7884 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
7885
7886 * replace.el (occur-1): Don't display regexp if it is longer
7887 than window-width. Use `query-replace-descr' to display regexp.
7888 (occur-engine): Don't display regexp in the buffer header for
7889 multi-buffer occur. Display a separate header line with total
7890 match count and regexp for multi-buffer occur.
7891 Use `query-replace-descr' to display regexp.
7892
7893 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
7894
7895 * net/secrets.el: Fix parenthesis.
7896 (secrets-enabled): Fix parenthesis.
7897
7898 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
7899
7900 Use more relative file and directory names.
7901 * Makefile.in (EMACS): Arrange for it to work when we chdir.
7902 (setwins, setwins_almost, setwins_for_subdirs):
7903 Don't `cd'; output relative names.
7904 (all, compile, compile-always, compile-last): Set emacswd.
7905 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
7906 Just cd to the lisp source dir so we can use relative file names.
7907
7908 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
7909
7910 2010-03-20 Glenn Morris <rgm@gnu.org>
7911
7912 * textmodes/rst.el: Use faces for font-lock customization, and make the
7913 old -face variables obsolete.
7914 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
7915 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
7916 (rst-block-face, rst-external-face, rst-definition-face)
7917 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
7918 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
7919 Make obsolete.
7920 (rst-font-lock-keywords-function): Update for above changes.
7921
7922 2010-03-20 Juri Linkov <juri@jurta.org>
7923
7924 * s-region.el:
7925 * obsolete/s-region.el: Move to obsolete.
7926
7927 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
7928
7929 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
7930
7931 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
7932
7933 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
7934
7935 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
7936
7937 Add special markup processing for commit logs.
7938 * log-edit.el (log-edit-extra-flags): New variable.
7939 (log-edit): Add new argument MODE. Use that mode when non-nil
7940 instead of the log-view-mode.
7941 (log-view-process-buffer): New function.
7942
7943 * vc.el: Document that the checkin method takes optional
7944 arguments. Document new backend specific method: log-view-mode.
7945 (vc-default-log-edit-mode): New function.
7946 (vc-checkin): Use a backend specific log-view-mode.
7947 Pass extra arguments to the checkin method.
7948 (vc-modify-change-comment): Pass a dummy extra argument.
7949
7950 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
7951 log-edit.
7952 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
7953 (vc-finish-logentry): Process the log buffer before passing it
7954 down. Pass log-edit-extra-flags.
7955
7956 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
7957 command.
7958 (log-edit-extra-flags, log-edit-before-checkin-process):
7959 New declarations.
7960
7961 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
7962 command.
7963 (log-edit-extra-flags, log-edit-before-checkin-process):
7964 New declarations.
7965 (vc-hg-log-edit-mode): New derived mode.
7966
7967 * vc-arch.el (vc-arch-checkin):
7968 * vc-cvs.el (vc-cvs-checkin):
7969 * vc-git.el (vc-git-checkin):
7970 * vc-mtn.el (vc-mtn-checkin):
7971 * vc-rcs.el (vc-rcs-checkin):
7972 * vc-sccs.el (vc-sccs-checkin):
7973 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
7974
7975 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
7976
7977 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
7978 parent typo).
7979
7980 2010-03-19 Glenn Morris <rgm@gnu.org>
7981
7982 * password-cache.el (password-cache, password-cache-expiry): Autoload.
7983
7984 2010-03-18 Glenn Morris <rgm@gnu.org>
7985
7986 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
7987
7988 * replace.el (query-replace-history): Give it a doc string.
7989 (map-query-replace-regexp): Use query-replace-from-history-variable
7990 and query-replace-to-history-variable.
7991
7992 * mail/hashcash.el (declare-function): Remove duplicate definition.
7993
7994 * mail/emacsbug.el (report-emacs-bug-pretest-address):
7995 Make it an obsolete alias for report-emacs-bug-address.
7996 (message-strip-special-text-properties): Declare.
7997 (report-emacs-bug): Remove test for a pretest bug address.
7998 Combine message-mode-specific code.
7999
8000 * mail/supercite.el: Don't require sendmail.
8001 (mh-in-header-p): Declare rather than using with-no-warnings.
8002 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
8003 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
8004
8005 * calendar/cal-french.el: Convert to utf-8.
8006
8007 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
8008 Emacs scripts.
8009
8010 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
8011
8012 * net/secrets.el (secrets-enabled): New variable. Use it instead
8013 of a subfeature.
8014
8015 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
8016
8017 * net/secrets.el (top): Register the D-Bus signals only when the
8018 service "org.freedesktop.secrets" can be pinged.
8019 Provide subfeature `enabled'.
8020
8021 2010-03-14 Juri Linkov <juri@jurta.org>
8022
8023 Add finder unknown keywords.
8024
8025 * finder.el (finder-unknown-keywords): New function.
8026
8027 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
8028 to create a Finder node with unknown keywords.
8029
8030 2010-03-14 Juri Linkov <juri@jurta.org>
8031
8032 * finder.el (finder-compile-keywords): Replace `princ' with
8033 `prin1' on a list of symbols interned from keyword strings.
8034
8035 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
8036 a comma, then split keywords using a comma and optional whitespace.
8037 Otherwise, split by whitespace.
8038
8039 * complete.el:
8040 * face-remap.el:
8041 * log-view.el:
8042 * net/hmac-def.el:
8043 * net/hmac-md5.el:
8044 * net/netrc.el:
8045 * progmodes/mixal-mode.el: Fix keywords.
8046
8047 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
8048
8049 * Makefile.in (ELCFILES): Add net/secrets.elc.
8050
8051 * net/secrets.el: New file.
8052
8053 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
8054
8055 * facemenu.el (list-colors-display, list-colors-print): New arg
8056 callback. Use it to allow selecting colors.
8057
8058 * wid-edit.el (widget-image-insert): Insert image prop even if the
8059 current display is non-graphic.
8060 (widget-field-value-set): New fun.
8061 (editable-field): Use it.
8062 (widget-field-value-get): Clean up unused var.
8063 (widget-color-value-create, widget-color--choose-action):
8064 New funs. Allow using list-colors-display to choose color.
8065
8066 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
8067
8068 * cus-edit.el: Resort topmost custom groups.
8069 (custom-buffer-sort-alphabetically): Default to t.
8070 (customize-apropos): Use apropos-parse-pattern.
8071 (custom-search-field): New var.
8072 (custom-buffer-create-internal): Add custom-apropos search field.
8073 (custom-add-parent-links): Don't display parent doc.
8074 (custom-group-value-create): Don't sort top-level custom group.
8075 (custom-magic-value-create): Show visibility button before option name.
8076
8077 (custom-variable-state): New fun, from custom-variable-state-set.
8078 (custom-variable-state-set): Use it.
8079 (custom-group-value-create): Hide options with standard values
8080 using the :hidden-states property. Use progress reporter.
8081
8082 (custom-show): Simplify.
8083 (custom-visibility): Disable images by default.
8084 (custom-variable): New property :hidden-states.
8085 (custom-variable-value-create): Enable images for
8086 custom-visibility widgets. Use :hidden-states property to
8087 determine initial visibility.
8088
8089 * wid-edit.el (widget-image-find): Give images center ascent.
8090 (visibility): Add :on-image and :off-image properties.
8091 (widget-visibility-value-create): Use them.
8092
8093 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
8094
8095 * cus-edit.el (processes): Remove from development group.
8096 (oop, hypermedia): Delete group.
8097 (comm): Promote to top-level group.
8098
8099 * net/browse-url.el (browse-url):
8100 * net/xesam.el (xesam):
8101 * net/tramp.el (tramp):
8102 * net/goto-addr.el (goto-address):
8103 * net/ange-ftp.el (ange-ftp): Put in comm group.
8104
8105 * view.el (view): Remove from editing group.
8106
8107 * uniquify.el (uniquify): Put in files group.
8108
8109 * net/browse-url.el (browse-url):
8110 * ps-print.el (postscript): Put in external group.
8111
8112 * cus-edit.el (outlines):
8113 * textmodes/text-mode.el (text-mode-hook):
8114 * textmodes/table.el (table):
8115 * textmodes/picture.el (picture):
8116 * outline.el (outlines): Put in wp group.
8117
8118 * nxml/nxml-mode.el (nxml): Remove from wp group.
8119
8120 * net/tramp-imap.el (tramp-imap): Put in tramp group.
8121
8122 * mail/metamail.el (metamail): Remove from hypermedia group.
8123
8124 * cus-edit.el (abbrev):
8125 * whitespace.el (whitespace):
8126 * vcursor.el (vcursor):
8127 * reveal.el (reveal):
8128 * hl-line.el (hl-line): Put in convenience group.
8129
8130 * epg-config.el (epg): Put in data group.
8131
8132 * emulation/pc-select.el (pc-select): Put in emulations group.
8133
8134 * calculator.el (calculator): Put in applications group.
8135
8136 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
8137
8138 Add .dir-locals.el support for file-less buffers.
8139 * files.el (hack-local-variables): Split out code to apply local
8140 variable settings ...
8141 (hack-local-variables-apply): ... here. New function.
8142 (hack-dir-local-variables): Use the default directory for when the
8143 buffer does not have an associated file.
8144 (hack-dir-local-variables-non-file-buffer): New function.
8145 * diff-mode.el (diff-mode):
8146 * vc-annotate.el (vc-annotate-mode):
8147 * vc-dir.el (vc-dir-mode):
8148 * log-edit.el (log-edit-mode):
8149 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
8150
8151 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
8152
8153 Add support for shelving snapshots and for showing shelves.
8154 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
8155 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
8156 New functions.
8157 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
8158 (vc-bzr-extra-menu-map): Map them.
8159
8160 2010-03-11 Glenn Morris <rgm@gnu.org>
8161
8162 * cus-edit.el (customize-changed-options-previous-release):
8163 Bump to 23.1.
8164
8165 * image.el (image-animate-max-time): Fix :version tag.
8166
8167 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
8168
8169 * Branch for 23.2.
8170
8171 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
8172
8173 * vc-git.el (vc-git-revision-table): Include remote branches.
8174
8175 2010-03-10 Kim F. Storm <storm@cua.dk>
8176
8177 Animated image API.
8178 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
8179
8180 * image.el (image-animate-max-time): New defcustom.
8181 (image-animated-types): New defconst.
8182 (create-animated-image, image-animate-timer)
8183 (image-animate-start, image-animate-stop, image-animate-timeout)
8184 (image-animated-p): New functions.
8185
8186 * image-mode.el (image-toggle-display-image):
8187 Replace `create-image' with `create-animated-image'.
8188
8189 2010-03-09 Miles Bader <miles@gnu.org>
8190
8191 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
8192 instead of "format:"; this ensures that the output is
8193 newline-terminated.
8194
8195 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
8196
8197 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
8198 that all errors are caught, and that the return value is always a
8199 list (Bug#5692).
8200
8201 2010-03-08 Kenichi Handa <handa@m17n.org>
8202
8203 * language/misc-lang.el (windows-1256): New coding system.
8204 (cp1256): New alias of windows-1256 (bug#5690).
8205
8206 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
8207
8208 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
8209 call to rfc822-bad-address. (Bug#5692)
8210
8211 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
8212
8213 * vc-git.el (vc-git-annotate-extract-revision-at-line):
8214 Use vc-git-root as default directory for revision path (Bug#5657).
8215
8216 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
8217
8218 * calculator.el (calculator): Don't bind split-window-keep-point
8219 (Bug#5674).
8220
8221 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
8222
8223 * vc-git.el: Re-flow to fit into 80 columns.
8224 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
8225 Remove spurious `quote' element in each case alternative.
8226 (vc-git-show-log-entry): Use prog1.
8227 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
8228
8229 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
8230
8231 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
8232
8233 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
8234
8235 * macros.el (insert-kbd-macro): Look up keyboard macro using the
8236 definition, not the name (Bug#5481).
8237
8238 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
8239
8240 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
8241 argument with a local variable. (Bug#5670)
8242
8243 2010-03-02 Juri Linkov <juri@jurta.org>
8244
8245 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
8246
8247 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
8248
8249 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
8250 error when FILENAME and NEWNAME are existing remote directories.
8251
8252 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
8253 parameter DIR-FLAG.
8254
8255 2010-03-02 Glenn Morris <rgm@gnu.org>
8256
8257 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
8258 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
8259
8260 2010-03-01 Kenichi Handa <handa@m17n.org>
8261
8262 * language/burmese.el (burmese-composable-pattern): Rename from
8263 myanmar-composable-pattern.
8264
8265 * international/characters.el (script-list):
8266 * international/fontset.el (script-representative-chars):
8267 Change myanmar to burmese.
8268 (otf-script-alist): Likewise.
8269 (setup-default-fontset): Likewise. Re-fix :otf spec.
8270
8271 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
8272
8273 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
8274
8275 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
8276
8277 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
8278
8279 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
8280
8281 * net/tramp.el (tramp-handle-write-region): START can be a string.
8282 Take care in the checks. Reported by Dan Davison
8283 <davison@stats.ox.ac.uk>.
8284
8285 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
8286
8287 * net/dbus.el (dbus-introspect, dbus-get-property)
8288 (dbus-set-property, dbus-get-all-properties):
8289 Use `dbus-call-method' when noninteractive. (Bug#5645)
8290
8291 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
8292
8293 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
8294 * emacs-lisp/elint.el (elint-add-required-env):
8295 * calendar/icalendar.el (icalendar--add-diary-entry):
8296 * calc/calcalg2.el (math-tracing-integral):
8297 * files.el (recover-session-finish): Use with-current-buffer
8298 instead of save-excursion.
8299
8300 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
8301
8302 Fix in-buffer completion when after-change-functions modify the buffer.
8303 * minibuffer.el (completion--replace): New function.
8304 (completion--do-completion): Use it and use relative movement.
8305
8306 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
8307
8308 * international/fontset.el (setup-default-fontset): Fix :otf spec.
8309
8310 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
8311
8312 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
8313 Allow the characters _<> in the stack entry (Bug#5653).
8314
8315 2010-02-26 Kenichi Handa <handa@m17n.org>
8316
8317 * language/burmese.el: Fix entries in composition-function-table.
8318 (myanmar-composable-pattern): New variable.
8319
8320 * international/fontset.el (setup-default-fontset): Add an entry
8321 for myanmar.
8322
8323 * international/characters.el (script-list): Add Myanmar
8324 Extended-A.
8325
8326 2010-02-26 Glenn Morris <rgm@gnu.org>
8327
8328 * custom.el (custom-initialize-delay): Doc fix.
8329
8330 * mail/sendmail.el (send-mail-function): Autoload the call
8331 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
8332
8333 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
8334
8335 * files.el (hack-local-variables-filter): For eval forms, also
8336 check safe-local-variable-p (Bug#5636).
8337
8338 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
8339
8340 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
8341 setting the modes by `ignore-errors'. It might fail, for example
8342 if the file is not owned by the user but the group.
8343 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
8344
8345 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
8346
8347 * files.el (directory-listing-before-filename-regexp): Use
8348 stricter matching for iso-style dates, to avoid false matches with
8349 date-like filenames (Bug#5597).
8350
8351 * htmlfontify.el (htmlfontify): Doc fix.
8352
8353 * eshell/eshell.el (eshell): Doc fix.
8354
8355 * startup.el (fancy-about-screen): In mode-line, apply
8356 mode-line-buffer-id face only to the buffer name (Bug#5613).
8357
8358 2010-02-20 Kevin Ryde <user42@zip.com.au>
8359
8360 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8361 In `watcom' anchor regexp to start of line, to avoid slowness
8362 (Bug#5599).
8363
8364 2010-02-20 Eli Zaretskii <eliz@gnu.org>
8365
8366 * subr.el (remove-yank-excluded-properties): Explain in a comment
8367 why `category' property is removed.
8368
8369 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
8370
8371 * isearch.el (isearch-update-post-hook, isearch-update): Revert
8372 2010-02-17 change.
8373
8374 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
8375
8376 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
8377 (icalendar--convert-weekly-to-ical)
8378 (icalendar--convert-yearly-to-ical)
8379 (icalendar--convert-block-to-ical)
8380 (icalendar--convert-cyclic-to-ical)
8381 (icalendar--convert-anniversary-to-ical): Take care of time
8382 specifications where hour has 1-digit only (Bug#5549).
8383
8384 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
8385
8386 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
8387 of disassemble output in GDB 7.1.
8388
8389 2010-02-19 Glenn Morris <rgm@gnu.org>
8390
8391 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
8392 property. (Bug#5593)
8393
8394 2010-02-18 Sam Steingold <sds@gnu.org>
8395
8396 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
8397
8398 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
8399
8400 Use abbreviated file names in bookmarks (bug#5591).
8401 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
8402 calls to expand-file-name.
8403 (bookmark-relocate): Use abbreviated file names in bookmarks.
8404 (bookmark-load): Use abbreviated file names in messages.
8405
8406 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
8407
8408 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
8409 expand "." and "..". Reported by Thierry Volpiatto
8410 <thierry.volpiatto@gmail.com>.
8411
8412 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
8413
8414 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
8415 permissions of the temporary file to "0600". In case the remote
8416 file has no read permissions for the owner, there might be
8417 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
8418
8419 22010-02-18 Glenn Morris <rgm@gnu.org>
8420
8421 * emacs-lisp/authors.el (authors-renamed-files-alist):
8422 Add entries for INSTALL.CVS.
8423
8424 2010-02-17 Mark A. Hershberger <mah@everybody.org>
8425
8426 * vc-bzr.el: Fix typo in Known Bugs section.
8427
8428 * isearch.el (isearch-update-post-hook): New hook.
8429 (isearch-update): Use the new hook.
8430
8431 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
8432
8433 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
8434 Fix errors in copying directories.
8435 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
8436 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
8437 (tramp-handle-delete-file)
8438 (tramp-handle-dired-recursive-delete-directory)
8439 (tramp-handle-write-region): Flush also the cache for the upper
8440 directory.
8441
8442 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
8443
8444 * simple.el (save-interprogram-paste-before-kill): Doc fix.
8445
8446 * cus-edit.el (hardware): Doc fix.
8447
8448 * man.el (man): Add to external custom group.
8449
8450 * delim-col.el (columns): Move to wp custom group.
8451
8452 * doc-view.el (doc-view): Add to data custom group.
8453
8454 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
8455
8456 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
8457 by ispell-parse-output (Bug#5575).
8458
8459 2010-02-16 Kenichi Handa <handa@m17n.org>
8460
8461 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
8462 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
8463 (skkdic-convert): Use `euc-japan' coding system for writing.
8464
8465 2010-02-16 Glenn Morris <rgm@gnu.org>
8466
8467 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
8468 tex-main-file before using it. (Bug#5562)
8469
8470 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
8471
8472 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
8473 warnings, since it is annoying for the user to see them each time he
8474 runs the code.
8475
8476 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
8477
8478 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
8479 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
8480 instead of PROC for caching "first-password-request". Otherwise,
8481 new processes would not profit from passwords already entered.
8482
8483 * net/tramp-cache.el (tramp-dump-connection-properties):
8484 Don't save "first-password-request" property.
8485
8486 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
8487
8488 * outline.el (outline-head-from-level):
8489 * simple.el (with-wrapper-hook):
8490 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
8491 (elint-defun, elint-buffer-env, elint-top-form-logged)
8492 (elint-unbound-variable):
8493 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
8494 Fix typos in docstrings.
8495
8496 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
8497
8498 * files.el (insert-directory): When WILDCARD-REGEXP and
8499 FULL-DIRECTORY-P are nil, insert the file entry instead of the
8500 whole directory. (Bug#5551)
8501
8502 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
8503 dired's alignment sanity. (Bug#5516)
8504
8505 2010-02-14 Juri Linkov <juri@jurta.org>
8506
8507 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
8508 Remove remaining ^H with their preceding chars. (Bug#5566)
8509
8510 2010-02-13 Glenn Morris <rgm@gnu.org>
8511
8512 * simple.el (transpose-subr): Give it a doc-string.
8513
8514 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
8515 Doc fixes.
8516
8517 2010-02-12 Juri Linkov <juri@jurta.org>
8518
8519 * arc-mode.el (archive-unique-fname): Make directories for nested
8520 archives. (Bug#5540)
8521
8522 2010-02-12 Juri Linkov <juri@jurta.org>
8523
8524 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
8525
8526 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
8527
8528 * subr.el (copy-overlay): Handle deleted overlays.
8529
8530 * man.el (Man-completion-table): Don't signal an error if we can't run
8531 manual-program (bug#4056).
8532
8533 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
8534
8535 * textmodes/artist.el (artist-mt): Fix typos in docstring.
8536
8537 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8538
8539 * info.el (Info-bookmark-jump): Simplify.
8540
8541 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
8542 (bookmark-default-handler): Accept new bookmark field `buffer'.
8543
8544 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
8545
8546 * iswitchb.el (iswitchb-completions): Revert last change.
8547
8548 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
8549
8550 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
8551 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
8552 This prevents file names like "~/" being listed literally.
8553
8554 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
8555
8556 * term/xterm.el (xterm-maybe-set-dark-background-mode):
8557 Remove dead code. (Bug#5546)
8558
8559 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
8560
8561 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
8562 correctly (Bug#5548).
8563
8564 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
8565
8566 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
8567 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
8568
8569 2010-02-08 Kenichi Handa <handa@m17n.org>
8570
8571 * international/mule-util.el (with-coding-priority): Add autoload
8572 cookie for putting `lisp-indent-function'.
8573
8574 2010-02-07 Glenn Morris <rgm@gnu.org>
8575
8576 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
8577 Move F2003 named interfaces from keywords-2 to keywords-1, and
8578 use function-name-face rather than constant-face.
8579 Simplify "abstract interface" regexp.
8580
8581 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
8582
8583 * eshell/esh-util.el (eshell-file-attributes): New optional arg
8584 ID-FORMAT. Pass it to `file-attributes'.
8585
8586 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
8587
8588 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
8589
8590 * faces.el (set-face-attribute): Allow calling
8591 internal-set-lisp-face-attribute with 'unspecified family and
8592 foundry argument (Bug#5536).
8593
8594 2010-02-07 Glenn Morris <rgm@gnu.org>
8595
8596 * progmodes/f90.el (f90-font-lock-keywords-2)
8597 (f90-looking-at-type-like, f90-looking-at-program-block-end):
8598 Handle F2003 named interfaces.
8599
8600 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
8601
8602 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
8603 beg and end before calling c-get-state-before-change-functions.
8604
8605 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
8606
8607 * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
8608
8609 2010-02-05 Juri Linkov <juri@jurta.org>
8610
8611 * doc-view.el (doc-view-mode):
8612 * image-mode.el (image-mode): Put property mode-class=special.
8613 (Bug#4896)
8614
8615 2010-02-05 Mark A. Hershberger <mah@everybody.org>
8616
8617 * vc-svn.el (vc-svn-revision-table): New function.
8618
8619 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
8620
8621 * net/ange-ftp.el (ange-ftp-insert-directory):
8622 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
8623 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
8624 Handle also directories. (Bug#5478)
8625
8626 2010-02-05 Glenn Morris <rgm@gnu.org>
8627
8628 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
8629
8630 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
8631
8632 * startup.el (command-line-1): Convert options beginning with a
8633 single dash as well (Bug#5519).
8634
8635 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
8636
8637 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
8638 * minibuffer.el (completion-initials-expand): Only check the presence
8639 of delims *within* the boundaries, since otherwise the / delim is
8640 always found for files.
8641
8642 Fix up various corner case problems.
8643 * doc-view.el (doc-view-last-page-number): New function.
8644 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
8645 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
8646 (doc-view-kill-proc): Avoid inf-loop in freak cases.
8647 (doc-view-reconvert-doc): Use the new recursive delete-directory.
8648 (doc-view-convert-current-doc): Don't create the resolution.el file
8649 here any more.
8650 (doc-view-pdf/ps->png): Do it here instead.
8651 (doc-view-already-converted-p): Check that resolution.el is present.
8652 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
8653 windows that are not yet showing images.
8654
8655 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
8656
8657 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
8658 `dired-uncache' for every elemnt which is an absolute file name.
8659
8660 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
8661 directory, handle its directory component.
8662 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
8663 function is called permanently and creates noise, otherwise.
8664
8665 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
8666 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
8667 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
8668
8669 2010-02-04 David Burger <dburger@google.com> (tiny change)
8670
8671 * macros.el (apply-macro-to-region-lines):
8672 Minor simplification. (Bug#5485)
8673
8674 2010-02-04 Glenn Morris <rgm@gnu.org>
8675
8676 * mail/rmail.el (rmail-show-message-1): Handle malformed
8677 quoted-printable text. (Bug#5441)
8678
8679 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
8680
8681 * simple.el (visual-line-mode): Capitalize lighter.
8682
8683 2010-02-03 John Wiegley <jwiegley@gmail.com>
8684
8685 * iswitchb.el (iswitchb-completions): Add bookmark files to the
8686 list of files considered for "virtual buffer" completions.
8687
8688 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
8689
8690 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
8691 also in case of (and (not full) (not wildcard)). This is needed
8692 when dired is called with a list of files, which are not in
8693 `default-directory'. (Bug#5478)
8694
8695 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
8696
8697 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
8698
8699 2010-02-02 Juri Linkov <juri@jurta.org>
8700
8701 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
8702 from unidiff to allow function-line after @@.
8703
8704 2010-02-02 Juri Linkov <juri@jurta.org>
8705
8706 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
8707 '(RCS SCCS) with inverted condition.
8708
8709 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
8710
8711 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
8712 messages.
8713
8714 2010-02-01 Juri Linkov <juri@jurta.org>
8715
8716 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
8717 compare with "pkunzip" and "pkzip" instead of only "pkzip".
8718 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
8719 only when (car archive-zip-extract) is "unzip". (Bug#5475)
8720
8721 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
8722
8723 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
8724 (doc-view-revert-buffer): New command.
8725 (doc-view-mode-map): Use it.
8726
8727 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
8728
8729 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
8730 pending merge is detected.
8731
8732 2010-01-31 Juri Linkov <juri@jurta.org>
8733
8734 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
8735 beginning of interactive spec like all other grep commands do.
8736 Put "all" in front of "gz". (Bug#5260)
8737
8738 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
8739
8740 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
8741
8742 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
8743
8744 * dirtrack.el (dirtrack): Warn instead of signalling error if the
8745 regexp is incorrect (Bug#5476).
8746
8747 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
8748
8749 * net/tramp.el (tramp-handle-insert-directory): Handle also
8750 symlinks, when FILENAME is not in `default-directory'.
8751
8752 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
8753
8754 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
8755 FILE is not in `default-directory'. (Bug#5478)
8756
8757 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
8758 of SWITCHES. Handle the case, FILENAME is not in
8759 `default-directory'. (Bug#5478)
8760 (tramp-register-file-name-handlers): Add safe-magic property.
8761
8762 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
8763
8764 * arc-mode.el (archive-zip-extract): Quote the argument passed to
8765 unzip (Bug#5475).
8766
8767 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
8768
8769 * progmodes/flymake.el (flymake-allowed-file-name-masks)
8770 (flymake-master-make-header-init): Add other C++ filename masks.
8771 (flymake-find-possible-master-files)
8772 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
8773
8774 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
8775
8776 Fix some busybox annoyances.
8777
8778 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
8779 not responding." string.
8780 (tramp-open-connection-setup-interactive-shell): Dump stty
8781 settings. Enable "neveropen" arg for all `tramp-send-command'
8782 calls. Handle "=" in variable values properly.
8783 (tramp-find-inline-encoding): Raise an error, when no encoding is
8784 found.
8785 (tramp-wait-for-output): Check, whether PROC buffer is available.
8786 Remove spurious " ^H" sequences, sent by busybox.
8787 (tramp-get-ls-command): Suppress coloring, if possible.
8788
8789 2010-01-28 Glenn Morris <rgm@gnu.org>
8790
8791 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
8792
8793 * log-edit.el (log-edit-strip-single-file-name): Add missing
8794 :safe, :group, and :version tags.
8795
8796 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
8797
8798 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
8799 buffers. (Bug#5477)
8800
8801 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
8802
8803 * files.el (delete-directory): Handle moving to trash without
8804 first doing recursion (Bug#5436).
8805
8806 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
8807
8808 * vc-hooks.el (vc-path): Mark as obsolete.
8809
8810 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
8811
8812 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
8813 names too.
8814
8815 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
8816 for the short log.
8817 (vc-bzr-log-view-mode): Adjust regexp for the above change.
8818
8819 2010-01-25 Mark A. Hershberger <mah@everybody.org>
8820
8821 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
8822
8823 * vc-bzr.el (vc-bzr-revision-table): New function.
8824
8825 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
8826
8827 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
8828 diff-index command. This requires at least git-1.5.5. (Bug#1589).
8829
8830 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
8831
8832 Remove support for adding --signoff on commit.
8833 Future support will use an incompatible generic mechanism.
8834 * vc-git.el (vc-git-add-signoff): Remove variable.
8835 (vc-git-toggle-signoff): Remove function.
8836 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
8837
8838 * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
8839 from xterm-set-background-mode. Return t if the background mode
8840 was set.
8841 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
8842 earlier, call it again in case the background mode has changed.
8843
8844 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
8845
8846 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
8847 (Bug#3541).
8848
8849 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
8850
8851 * emacs-lisp/assoc.el (aelement): Doc fix.
8852 (aput, adelete, amake): Use lexical-let (Bug#5450).
8853
8854 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
8855
8856 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
8857 is the same as subprogram call, not declaration. (Bug#5435).
8858
8859 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
8860
8861 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
8862 (tramp-smb-maybe-open-connection): Use it.
8863
8864 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
8865
8866 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
8867
8868 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
8869
8870 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
8871 just because we see "encoding: 8bit".
8872 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
8873
8874 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
8875
8876 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
8877
8878 2010-01-22 Eli Zaretskii <eliz@gnu.org>
8879
8880 * jka-compr.el (jka-compr-load): If load-file is not in
8881 load-history, try its file-truename version. (bug#5447)
8882
8883 2010-01-21 Alan Mackenzie <acm@muc.de>
8884
8885 Fix a situation where deletion of a cpp construct throws an error.
8886 * progmodes/cc-engine.el (c-invalidate-state-cache):
8887 Before invoking c-with-all-but-one-cpps-commented-out, check that the
8888 special cpp construct is still in the buffer.
8889 (c-parse-state): Record the special cpp with markers, not numbers.
8890
8891 2010-01-21 Kenichi Handa <handa@m17n.org>
8892
8893 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
8894 process last-command-event, as it is now decoded first (Bug#5380).
8895
8896 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
8897
8898 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
8899
8900 2010-01-20 Glenn Morris <rgm@gnu.org>
8901
8902 * indent.el (tab-always-indent): Fix custom-type.
8903
8904 2010-01-19 Alan Mackenzie <acm@muc.de>
8905
8906 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
8907 buffer throws "args out of range".
8908 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
8909 playing the role of delimiter.
8910
8911 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
8912
8913 * progmodes/ada-mode.el: Fix bug#5400.
8914 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
8915 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
8916 changed. Delete RECURSIVE parameter; never used. Improve doc string.
8917 Improve comments in "is" portion. Handle null procedure declaration.
8918 (ada-move-to-end): Improve doc string.
8919
8920 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
8921
8922 * ido.el (ido-cur-list): Initialize to nil.
8923 Remove obsolete information from commentary.
8924 (ido-choice-list): Initialize to nil.
8925 (ido-get-bufname): Reject minibuffers.
8926 (ido-make-buffer-list): If "default" is a nonexistent
8927 buffer, ignore it, as per the function's comment.
8928 (ido-kill-buffer-internal): New function.
8929 (ido-kill-buffer-at-head): Use it.
8930 (ido-visit-buffer): Likewise.
8931
8932 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
8933
8934 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
8935
8936 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
8937
8938 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
8939 Fix typos in chart titles.
8940
8941 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
8942 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
8943 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
8944 (describe-class, eieio-describe-generic, describe-generic):
8945 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
8946 (eieio-speedbar-expand):
8947 * emulation/viper-cmd.el (viper-exec-form-in-vi)
8948 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
8949 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
8950 (viper-del-backward-char-in-replace, viper-backward-indent)
8951 (viper-brac-function, viper-register-to-point, viper-submit-report):
8952 * net/tramp.el (tramp-remote-coding-commands):
8953 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
8954 Fix typos in docstrings.
8955
8956 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
8957
8958 * mail/sendmail.el (mail-yank-original): Set the mark if the
8959 specified function for yanking does not do it.
8960
8961 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
8962
8963 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
8964
8965 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
8966 resyncing a directory.
8967
8968 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
8969
8970 * progmodes/ada-mode.el: Fix bug#1920.
8971 (ada-ident-re): Delete ., allow multibyte characters.
8972 (ada-goto-label-re): New; matches goto labels.
8973 (ada-block-label-re): New; matches block labels.
8974 (ada-label-re): New; matches both.
8975 (ada-named-block-re): Deleted; callers changed to use
8976 `ada-block-label-re' instead.
8977 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
8978 Use `ada-block-label-re'.
8979 (ada-indent-on-previous-lines): Improve handling of goto labels.
8980 (ada-get-indent-block-start): Special-case block label.
8981 (ada-get-indent-label): Split into `ada-indent-block-label' and
8982 `ada-indent-goto-label'.
8983 (ada-goto-stmt-start, ada-goto-next-non-ws):
8984 Optionally ignore goto labels.
8985 (ada-goto-next-word): Simplify.
8986 (ada-indent-newline-indent-conditional): Insert newline before
8987 trying to fix indentation; doc fix.
8988
8989 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
8990
8991 * calc/calc.el (calc-command-flags): Give it an initial value.
8992
8993 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
8994
8995 * files.el (minibuffer-with-setup-hook):
8996 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
8997 (artist-key-draw-continously, artist-key-do-continously-continously)
8998 (artist-key-set-point-continously, artist-mouse-draw-continously):
8999 Fix typos in docstrings.
9000
9001 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
9002
9003 * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
9004 return t (Bug#3898).
9005
9006 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
9007
9008 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
9009 can parse the output of the external commands (Bug#5279).
9010
9011 2010-01-16 Jari Aalto <jari.aalto@cante.net>
9012
9013 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
9014
9015 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
9016
9017 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
9018
9019 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
9020
9021 * startup.el (command-line): Remove unused --icon-type arg.
9022 Handle --display arg, passing it to command-line-1 (Bug#5392).
9023
9024 2010-01-16 Mario Lang <mlang@delysid.org>
9025
9026 * emacs-lisp/chart.el (chart-translate-namezone):
9027 * textmodes/artist.el (artist-compute-popup-menu-table):
9028 Remove duplicated words in doc-strings.
9029
9030 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
9031
9032 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
9033 to mairix-search to suppress threading (Bug#5342).
9034
9035 2010-01-15 Kenichi Handa <handa@m17n.org>
9036
9037 * international/mule-cmds.el (canonicalize-coding-system-name):
9038 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
9039
9040 2010-01-15 Glenn Morris <rgm@gnu.org>
9041
9042 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
9043
9044 * wid-edit.el (widget-keymap): Doc fix.
9045
9046 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
9047 former seems to be more widely accepted by various svn versions.
9048
9049 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
9050
9051 * find-cmd.el (find-constituents):
9052 * vc-arch.el (vc-arch-root):
9053 * window.el (window-body-height, pop-up-frames):
9054 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
9055 * progmodes/ada-stmt.el (ada-if):
9056 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
9057 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
9058 (ispell-encoding8-command, ispell-aspell-supports-utf8)
9059 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
9060
9061 * progmodes/flymake.el (flymake-post-syntax-check):
9062 Fix typo in error message.
9063
9064 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
9065
9066 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
9067 which is always a string. (Bug#5313)
9068
9069 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
9070
9071 * progmodes/ada-xref.el (ada-default-prj-properties):
9072 Simplify previous change.
9073
9074 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
9075
9076 * progmodes/ada-xref.el (ada-default-prj-properties):
9077 Default ada_project_path to $ADA_PROJECT_PATH.
9078
9079 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
9080
9081 * progmodes/ada-mode.el (ada-create-keymap):
9082 Override `narrow-to-defun' with `ada-narrow-to-defun'.
9083
9084 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
9085
9086 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
9087 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
9088 (ada-get-current-indent, ada-imenu-generic-expression)
9089 (ada-which-function): Check for it.
9090
9091 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
9092
9093 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
9094 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
9095
9096 2010-01-14 Glenn Morris <rgm@gnu.org>
9097
9098 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
9099
9100 2010-01-14 Kenichi Handa <handa@m17n.org>
9101
9102 * composite.el (auto-composition-mode): Make it a buffer local
9103 variable (permanent-local).
9104 (auto-composition-function): Set the default value to
9105 auto-compose-chars.
9106 (auto-composition-mode): Make it a simple function, not a minor mode.
9107 (global-auto-composition-mode): Likewise.
9108 (turn-on-auto-composition-if-enabled): Delete it.
9109
9110 2010-01-13 Karl Fogel <kfogel@red-bean.com>
9111
9112 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
9113
9114 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
9115
9116 * files.el (copy-directory): Compute target for recursive
9117 directories with identical names. (Bug#5343)
9118
9119 2010-01-12 Glenn Morris <rgm@gnu.org>
9120
9121 * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
9122 it to bug-gnu-emacs rather than emacs-pretest-bug.
9123
9124 2010-01-11 Sam Steingold <sds@gnu.org>
9125
9126 * imenu.el (imenu-default-create-index-function): Detect infinite
9127 loops caused by imenu-prev-index-position-function.
9128
9129 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
9130
9131 * htmlfontify.el (htmlfontify-load-rgb-file)
9132 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
9133 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
9134 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
9135 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
9136 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
9137 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
9138 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
9139 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
9140 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
9141 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
9142 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
9143 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
9144 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
9145 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
9146 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
9147 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
9148 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
9149 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
9150 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
9151 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
9152 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
9153 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
9154 backslash-quoting from parentheses, etc.
9155
9156 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
9157
9158 * progmodes/js.el: Autoload javascript-mode alias.
9159
9160 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
9161
9162 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
9163 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
9164 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
9165 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
9166 Fix typos in docstrings.
9167 (ffap-url-regexp): Doc fix.
9168 (ffap-at-mouse): Fix typo in message.
9169
9170 2010-01-11 Glenn Morris <rgm@gnu.org>
9171
9172 * version.el (emacs-copyright): Set copyright year to 2010.
9173
9174 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
9175
9176 * format.el (format-annotate-function): Only set
9177 write-region-post-annotation-function after running to-fn so as not to
9178 affect nested write-region calls (bug#5273).
9179
9180 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
9181
9182 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
9183 wisent/python.el.
9184
9185 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
9186
9187 * man.el (Man-goto-section): Signal error if the section is not
9188 found (Bug#5317).
9189
9190 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
9191
9192 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
9193 URLs with a leading triple slash in the file: scheme. (Bug#5345)
9194
9195 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
9196
9197 * progmodes/compile.el: Don't treat compile-command as safe if
9198 compilation-read-command might be nil (Bug#4218).
9199
9200 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
9201
9202 * startup.el (command-line-1): Use orig-argi to check for ignored X and
9203 NS options.
9204
9205 2010-01-08 Kenichi Handa <handa@m17n.org>
9206
9207 * international/fontset.el (build-default-fontset-data):
9208 Exclude characters in scripts kana, hangul, han, or cjk-misc.
9209
9210 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
9211
9212 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
9213 to `create-file-buffer' as it expects, not just a buffer name.
9214 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
9215 to help uniquify. (Bug#3224)
9216
9217 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
9218
9219 * font-setting.el (font-setting-change-default-font): Use user-spec
9220 instead of name.
9221
9222 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
9223
9224 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
9225
9226 2010-01-05 Tom Tromey <tromey@redhat.com>
9227
9228 * progmodes/python.el (python-font-lock-keywords):
9229 Handle qualified decorators (Bug#881).
9230
9231 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
9232
9233 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
9234 in a lightweight checkout.
9235
9236 2010-01-05 Kenichi Handa <handa@m17n.org>
9237
9238 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
9239
9240 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
9241
9242 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
9243
9244 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
9245
9246 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
9247 checkouts. (Bug#618)
9248 (vc-bzr-log-view-mode): Also highlight the author.
9249 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
9250 (vc-bzr-shelve-menu-map):
9251 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
9252 (vc-bzr-shelve-apply): Make prompt more explicit.
9253
9254 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
9255
9256 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
9257 They are valid characters in URL paths (rfc3986), and at least
9258 Firefox does not understand the encoded version (Bug#3166).
9259
9260 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
9261
9262 * progmodes/octave-mod.el (octave-end-keywords)
9263 (octave-block-begin-or-end-regexp, octave-block-match-alist):
9264 Add "end" keyword (Bug#3061).
9265 (octave-end-as-array-index-p): New function.
9266 (calculate-octave-indent): Use it.
9267
9268 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9269
9270 * bookmark.el: Consistently put the text property on the bookmark name.
9271 (bookmark-bmenu-marks-width): Bump back to 2, to include
9272 annotation marks.
9273 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
9274 property on the bookmark name, instead of not putting it at all.
9275 (bookmark-bmenu-list): Fix where we put the text property.
9276
9277 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9278
9279 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
9280 for showing buffer modified state (as added in the previous change).
9281
9282 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9283
9284 * bookmark.el: Show modified state of bookmark buffer more accurately.
9285 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
9286 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
9287 (with-buffer-modified-unmodified): New macro.
9288 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
9289 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
9290 Use new macro to preserve the buffer modified state.
9291
9292 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9293
9294 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
9295 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
9296 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
9297 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
9298 (bookmark-bmenu-rename, bookmark-bmenu-locate)
9299 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
9300 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
9301
9302 2010-01-02 Eli Zaretskii <eliz@gnu.org>
9303
9304 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9305 Make the lines in the generated doc string shorter. (Bug#4668)
9306
9307 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
9308
9309 * net/rcirc.el: Add follow-link binding (Bug#4738).
9310
9311 2010-01-02 Eli Zaretskii <eliz@gnu.org>
9312
9313 * Makefile.in (bzr-update): Rename from cvs-update.
9314 (cvs-update): New target for backward compatibility.
9315
9316 * makefile.w32-in (bzr-update): Rename from cvs-update.
9317 (cvs-update): New target for backward compatibility.
9318
9319 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9320
9321 * bookmark.el: Remove gratuitous gratitude.
9322
9323 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9324
9325 * bookmark.el (bookmark-bmenu-any-marks): New function.
9326 (bookmark-bmenu-save): Clear buffer modification if no marks.
9327
9328 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9329
9330 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
9331 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
9332 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
9333 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
9334
9335 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
9336 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
9337 To: emacs-devel {_AT_} gnu.org
9338 Subject: bookmark.el bug report
9339 Date: Mon, 28 Dec 2009 14:19:16 +0800
9340 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
9341
9342 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9343
9344 * bookmark.el: Improvements suggested by Drew Adams:
9345 (bookmark-bmenu-ensure-position): New name for
9346 `bookmark-bmenu-check-position'. Just ensure the position,
9347 don't return any meaningful value.
9348 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
9349 New constants.
9350
9351 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
9352
9353 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
9354 (bookmark-yank-point, bookmark-bmenu-check-position):
9355 Fix typos in docstrings.
9356 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
9357 (bookmark-name-from-full-record, bookmark-get-position)
9358 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
9359 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
9360 Remove useless quoting of parenthesis, etc. in docstrings.
9361
9362 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
9363 (ediff-append-custom-diff): Fix typo in error message.
9364 (ediff-meta-mark-equal-files): Fix typos in messages.
9365
9366 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
9367
9368 * net/imap-hash.el (imap-hash-make): Doc fix.
9369 (imap-hash-test): Fix typo in error message; reflow docstring.
9370 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
9371 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
9372 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
9373 Fix typos in docstrings.
9374 (imap-hash-open-connection): Fix typo in error message.
9375
9376 * play/gomoku.el (gomoku): Fix typos in docstring.
9377
9378 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
9379 (gdb-jsonify-buffer): Fix typos in docstring.
9380 (gdb-goto-breakpoint): Fix typo in error message.
9381 ("Display Other Windows"): Fix typo in help message.
9382 (gdb-speedbar-expand-node): Fix typo in question.
9383
9384 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
9385 (idlwave-html-system-help-location, idlwave-html-help-location)
9386 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
9387 (idlwave-help-browser-generic-args, idlwave-help-directory)
9388 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
9389 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
9390 (idlwave-online-help, idlwave-help-html-link)
9391 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
9392 Fix typos in docstrings.
9393 (idlwave-help-with-source, idlwave-help-find-routine-definition):
9394 Reflow docstrings.
9395 (idlwave-help-assistant-start): Fix typo in error message.
9396
9397 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
9398 (octave-electric-space): Fix typos in docstrings.
9399
9400 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
9401
9402 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
9403
9404 2010-01-01 Juri Linkov <juri@jurta.org>
9405
9406 * comint.el (comint-input-ring-size): Make it a defcustom and
9407 increase the default to 500 (Bug#5148).
9408
9409 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
9410
9411 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
9412 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
9413 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
9414
9415 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
9416
9417 Show working revision correctly for mercurial.
9418 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
9419 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
9420
9421 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
9422
9423 Declare some functions for the byte-compiler.
9424 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
9425 (speedbar-timer-fn, speedbar-change-expand-button-char)
9426 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
9427
9428 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
9429
9430 This changeset reverts GDB Graphical Interface to use annotations.
9431 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
9432
9433 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
9434
9435 Make vc-dir work on subdirectories of the bzr root.
9436 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return
9437 file names relative to it.
9438 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
9439 relative directory to vc-bzr-after-dir-status.
9440
9441 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
9442
9443 * font-lock.el (font-lock-refresh-defaults): New function, which
9444 can be used to let font-lock react to external changes in
9445 variables like font-lock-defaults and keywords.
9446 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
9447
9448 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
9449
9450 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
9451
9452 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
9453
9454 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
9455
9456 Supersede color.diff settings in git log (bug#5211).
9457
9458 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
9459 escape chars in its output when the user has color.diff set to `always'.
9460 This fix works on git 1.4.2 and newer (released on 2006-08-13).
9461
9462 2009-12-26 Kevin Ryde <user42@zip.com.au>
9463
9464 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
9465 node. Keep previous "Index" name to work with past coreutils too.
9466
9467 * man.el (man): Revise docstring a bit to show -a and -l as
9468 examples. Add -k description since support for it has otherwise
9469 been a secret. (Further to bug#3717.)
9470 (Man-bgproc-sentinel): When "-k foo" produces no output show error
9471 "no matches" rather than "Can't find manpage", as the latter reads
9472 like -k was interpreted as a page name, which is not so. (Bug#5431)
9473
9474 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
9475
9476 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
9477 switches. Check also for //SUBDIRED// line.
9478
9479 2009-12-25 Kenichi Handa <handa@m17n.org>
9480
9481 * language/indian.el (devanagari-composable-pattern): Fixed to
9482 handle ZWNJ and ZWJ. Use it in composition-function-table for
9483 Devanagari.
9484 (malayalam-composable-pattern): Fix previous change.
9485
9486 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9487
9488 * ps-print.el (ps-face-attributes): It was not returning the
9489 attribute face for faces specified as string. Reported by harven
9490 <harven@free.fr>. (Bug#5254)
9491 (ps-print-version): New version 7.3.5.
9492
9493 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
9494
9495 * calendar/icalendar.el (icalendar--convert-tz-offset):
9496 Fix timezone names.
9497 (icalendar--convert-tz-offset): Fix the "last-day-problem".
9498 (icalendar--add-diary-entry): Remove the trailing blank that
9499 diary-make-entry inserts.
9500
9501 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
9502
9503 Make `file-expand-wildcards' work for remote files.
9504
9505 * files.el (file-expand-wildcards): In case of remote files, check
9506 only local file name part for wildcards. Provide feature 'files
9507 and subfeature 'remote-wildcards. (Bug#5198)
9508
9509 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
9510 if there is already an established connection.
9511 (tramp-advice-file-expand-wildcards): Remove it.
9512
9513 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
9514 (tramp-advice-file-expand-wildcards): Move from tramp.el.
9515 Activate advice for older GNU Emacs versions. (Bug#5237)
9516
9517 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
9518
9519 Some doc fixes (more needed).
9520
9521 * find-cmd.el (find-constituents): Reflow docstring.
9522 (find-cmd, find-prune, find-command): Fix typos in docstrings.
9523 (find-generic): Doc fix.
9524
9525 2009-12-17 Juri Linkov <juri@jurta.org>
9526
9527 Fix regression from 23.1 to allow multiple modes in Local Variables.
9528
9529 * files.el (hack-local-variables-filter): While ignoring duplicates,
9530 don't take `mode' into account.
9531 (hack-local-variables-filter, hack-dir-local-variables):
9532 Don't remove duplicate `mode' from local-variables-alist (like `eval').
9533
9534 2009-12-17 Juri Linkov <juri@jurta.org>
9535
9536 Make `dired-diff' safer. (Bug#5225)
9537
9538 * dired-aux.el (dired-diff): Signal an error when `file' equals to
9539 `current' or when `file' is a directory of the `current' file.
9540
9541 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
9542
9543 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
9544 unconditionally preloaded files.
9545
9546 2009-12-16 Juri Linkov <juri@jurta.org>
9547
9548 Revert to old 23.1 logic of using the file at the mark as default.
9549 * dired-aux.el (dired-diff): Use the file at the mark as default
9550 if it's not the same as the current file, and the target dir is
9551 the current dir or the mark is active. Add the current file
9552 as the arg of `dired-dwim-target-defaults'. Use the default file
9553 in the prompt. (Bug#5225)
9554
9555 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
9556
9557 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
9558 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
9559 (tramp-check-for-regexp): Check also, when an echoing shell stops
9560 to echo sent commands.
9561
9562 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
9563
9564 * Makefile.in: Revert last change (Bug#5191).
9565
9566 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
9567
9568 * vc-hg.el (vc-hg-print-log): Fix argument order.
9569 (vc-hg-working-revision): Make sure the command is executed in a
9570 known environment so that we can parse the output. (Bug#4417)
9571
9572 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
9573
9574 * progmodes/python.el (python-symbol-completions): Remove text
9575 properties from symbol string before calling python-send-receive.
9576
9577 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
9578
9579 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
9580 when there are values for both file and line. (Bug#5060)
9581
9582 2009-12-14 Juri Linkov <juri@jurta.org>
9583
9584 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
9585 whitespace after the file name of the first line of unified format,
9586 because git-diff doesn't output whitespace and file modification time
9587 after the file name.
9588
9589 2009-12-14 David Kastrup <dak@gnu.org>
9590
9591 * info.el (Info-hide-cookies-node): Before hiding a cookie,
9592 check if it already has the `display' property added by
9593 `Info-display-images-node', and not put the `invisible' property
9594 in this case.
9595
9596 2009-12-13 Glenn Morris <rgm@gnu.org>
9597
9598 * mail/emacsbug.el (message-sort-headers): Define for compiler.
9599 (report-emacs-bug): In message-mode, sort manually before storing
9600 original report text. (Bug#5178)
9601 Remove superfluous save-excursion.
9602
9603 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
9604
9605 * net/dbus.el (dbus-property-handler): Filter lambda forms out
9606 when responding to "GetAll" properties.
9607
9608 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
9609
9610 * simple.el (compose-mail): Remove mail-setup-with-from from
9611 customization checks.
9612
9613 2009-12-12 Eli Zaretskii <eliz@gnu.org>
9614
9615 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
9616 RAR archives created on Unix systems.
9617
9618 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
9619
9620 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
9621 the varalias that was accidentally removed by the 2009-11-19 change
9622 (bug#5186).
9623
9624 2009-12-12 Kenichi Handa <handa@m17n.org>
9625
9626 * language/indian.el (indian-compose-regexp): New function.
9627 (malayalam-composable-pattern): Fix the pattern.
9628 (composition-function-table): Set malayalam-composable-pattern for
9629 Malayalam characters.
9630
9631 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
9632
9633 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
9634 rather than down-mouse-1, based on follow-link conventions.
9635
9636 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
9637 are compiled.
9638
9639 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
9640
9641 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
9642 (verilog-vmm-statement-re, verilog-ovm-statement-re)
9643 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
9644 (verilog-leap-to-head, verilog-backward-token):
9645 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
9646
9647 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
9648
9649 * progmodes/verilog-mode.el (verilog-auto-lineup)
9650 (verilog-nameable-item-re): Cleanup user-visible spelling and
9651 documentation errors. One reported by Gary Delp.
9652 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
9653 (verilog-read-decls): Fix AUTOWIRE with types declared in a
9654 package, bug195. Reported by Pierre-David Pfister.
9655
9656 2009-12-11 Glenn Morris <rgm@gnu.org>
9657
9658 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
9659
9660 * mail/emacsbug.el: No longer require sendmail.
9661 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
9662 (report-emacs-bug-orig-text): Doc fix.
9663 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
9664 New local variables, to adapt to different mail-user-agents.
9665 (report-emacs-bug): Fix test for a gnu.org address.
9666 Use overlays for emphasis, since font-lock defeats 'face property.
9667 Pretest bugs also end up at the newsgroup these days.
9668 Stop message-mode stripping text properties.
9669 Set and use the new buffer-local variables.
9670 (report-emacs-bug-hook): Add doc-string.
9671 Remove some unnecessary save-excursions and simplify.
9672 Use the appropriate hook and send-command.
9673
9674 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
9675 capitalization of some menu entries.
9676
9677 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9678
9679 * whitespace.el (whitespace-display-char-on):
9680 Ensure `buffer-display-table' is unique when two or more windows are
9681 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
9682 New version 12.1.
9683
9684 2009-12-10 Eli Zaretskii <eliz@gnu.org>
9685
9686 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
9687 characters in the Attribute field.
9688
9689 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
9690
9691 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
9692
9693 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
9694
9695 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
9696 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
9697 Disregard autoload-excludes.
9698 (update-directory-autoloads): Obey autoload-excludes here instead.
9699 But don't store its contents in no-autoloads and remove entries that
9700 refer to excludes files.
9701
9702 2009-12-10 Glenn Morris <rgm@gnu.org>
9703
9704 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
9705 (expand-mail-aliases): Define for compiler.
9706
9707 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
9708 Define for compiler.
9709
9710 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
9711 appropriate for the mail-user-agent in use.
9712
9713 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
9714
9715 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
9716
9717 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
9718
9719 Fix short log parsing and fontification.
9720 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
9721 Fix fontification for the [merge] label.
9722
9723 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
9724
9725 Drop some properties to avoid surprises (bug#5002).
9726 * htmlfontify.el (hfy-ignored-properties): New defcustom.
9727 (hfy-fontify-buffer): Use it.
9728
9729 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
9730
9731 Minor cleanup.
9732 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
9733 Adjust all callers.
9734 (ffap-locate-file): Remove unused arg `dir-ok' and make other
9735 args compulsory. Adjust callers.
9736 (ffap-gopher-at-point): Remove unused var `name'.
9737
9738 Get rid of the ELCFILES abomination.
9739 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
9740 (compile-elcfiles): New phony target.
9741 (compile-main): Compute ELCFILES dynamically.
9742 (compile-clean): New target to remove left-over elc files.
9743 (compile, all): Use it.
9744
9745 2009-12-09 Kenichi Handa <handa@etlken>
9746
9747 * international/mule-diag.el: Require help-mode instead of help-fns.
9748
9749 2009-12-09 Kenichi Handa <handa@m17n.org>
9750
9751 * international/mule-cmds.el (ucs-names): Supply sufficiently
9752 fine ranges instead of pre-calculating accurate ranges.
9753 Iterate with bigger gc-cons-threshold.
9754
9755 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
9756
9757 Add support for stashing a snapshot of the current tree.
9758 * vc-git.el (vc-git-stash-snapshot): New function.
9759 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
9760
9761 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
9762
9763 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
9764 instead of `(beginning|end)-of-line'.
9765
9766 2009-12-08 Glenn Morris <rgm@gnu.org>
9767
9768 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
9769
9770 * Makefile.in (ELCFILES): Regenerate.
9771
9772 2009-12-07 Juri Linkov <juri@jurta.org>
9773
9774 Don't lazy-highlight the comint output in history Isearch mode.
9775
9776 * comint.el (comint-history-isearch-search): Instead of
9777 `comint-line-beginning-position', use `comint-after-pmark-p'
9778 to check if point if before the process mark, and go to
9779 `process-mark' in this case.
9780
9781 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
9782
9783 * textmodes/tex-mode.el (latex-complete)
9784 (latex-indent-or-complete): Remove.
9785 (latex-mode): Set completion-at-point-functions instead.
9786
9787 Provide a standard completion command and hook it into TAB.
9788 * minibuffer.el (completion-at-point-functions): New var.
9789 (completion-at-point): New command.
9790 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
9791 * progmodes/python.el (python-mode-map): Use completion-at-point.
9792 (python-completion-at-point): Rename from python-partial-symbol and
9793 adjust for use in completion-at-point-functions.
9794 (python-mode): Setup completion-at-point for Python completion.
9795 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
9796 extracted from lisp-complete-symbol.
9797 (lisp-complete-symbol): Use it.
9798 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
9799 setup completion-at-point for Elisp completion.
9800 (emacs-lisp-mode-map, lisp-interaction-mode-map):
9801 Use completion-at-point.
9802 * ielm.el (ielm-map): Use completion-at-point.
9803 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
9804 * progmodes/sym-comp.el: Move to...
9805 * obsolete/sym-comp.el: Move from progmodes.
9806
9807 2009-12-07 Eli Zaretskii <eliz@gnu.org>
9808
9809 Prevent save-buffer in Rmail buffers from using the coding-system
9810 of the current message, and from clobbering the encoding mnemonics
9811 in the mode line (Bug#4623).
9812
9813 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
9814 flag, too.
9815 (rmail-message-encoding): New variable.
9816 (rmail-write-region-annotate): Record the encoding of the current
9817 message in rmail-message-encoding.
9818 (rmail-after-save-hook): New function, restores the encoding of
9819 the current message after the message collection is saved.
9820
9821 2009-12-07 Juri Linkov <juri@jurta.org>
9822
9823 * progmodes/grep.el (grep-read-files): Use `completing-read'
9824 instead of `read-string'. Set its `collection' arg to
9825 `read-file-name-internal'. (Bug#4301)
9826
9827 2009-12-07 Juri Linkov <juri@jurta.org>
9828
9829 Correctly restore original Isearch point. (Bug#4994)
9830
9831 * isearch.el (isearch-mode): Move `isearch-push-state' after
9832 `(run-hooks 'isearch-mode-hook)'.
9833 (isearch-cancel): When `isearch-push-state-function' is defined,
9834 let-bind `isearch-cmds' to the first state (the last element of
9835 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
9836 function and restores the original point). Otherwise, move point
9837 to `isearch-opoint'.
9838
9839 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
9840
9841 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
9842 chars that don't have names, so the table can be built much faster at
9843 run-time.
9844
9845 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
9846
9847 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
9848 change. Suggested by David Kastrup.
9849
9850 * simple.el (compose-mail): Check for incompatibilities and warn.
9851 (compose-mail-user-agent-warnings): New option.
9852
9853 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
9854
9855 Support showing a single log entry from vc-annotate.
9856 * vc.el (print-log): Add a new argument: START-REVISION.
9857 (vc-print-log-internal): Add a new optional argument and
9858 pass it to the backend.
9859 (vc-print-log, vc-print-root-log): Adjust callers.
9860 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
9861 buffer already displays the requested log entry, use it.
9862 Otherwise display only the log entry in question.
9863 * vc-svn.el (vc-svn-print-log):
9864 * vc-mtn.el (vc-mtn-print-log):
9865 * vc-hg.el (vc-hg-state):
9866 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
9867 (vc-git-show-log-entry): Return t on success.
9868 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
9869 (vc-bzr-show-log-entry): Return t on success.
9870 * vc-rcs.el (vc-rcs-print-log):
9871 * vc-sccs.el (vc-sccs-print-log):
9872 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
9873
9874 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
9875
9876 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
9877 Add menus to the meta mode. (Bug#5043)
9878
9879 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
9880
9881 * ediff-init.el (ediff-event-key): Use event-to-character instead of
9882 event-key.
9883
9884 * ediff.el (ediff-buffers-internal): Add unwind-protect.
9885
9886 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
9887
9888 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
9889 Berbain <raphael.berbain@gmail.com>.
9890
9891 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
9892 characters.
9893 (tramp-initial-end-of-output): New defconst.
9894 (tramp-methods, tramp-find-shell)
9895 (tramp-open-connection-setup-interactive-shell)
9896 (tramp-maybe-open-connection): Use it.
9897 (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
9898 existence of `#' and `$'.
9899
9900 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
9901 `tramp-initial-end-of-output'.
9902
9903 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
9904
9905 Get the background mode from the terminal for xterm, and set
9906 faces accordingly.
9907 * term/xterm.el (xterm-set-background-mode): New function.
9908 (terminal-init-xterm): Use it in case xterm supports background
9909 color queries. Recompute faces after getting the background
9910 color.
9911
9912 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
9913
9914 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
9915 number comment back on its own line, for easier parsing.
9916
9917 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
9918
9919 Make it work for non-file buffers (bug#5102).
9920 * doc-view.el (doc-view-current-cache-dir):
9921 Use doc-view-buffer-file-name rather than buffer-file-name.
9922 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
9923
9924 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
9925
9926 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
9927 author field is too short.
9928
9929 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
9930
9931 * vc-git.el (vc-git-print-log): Handle a limit argument.
9932 Display the short log in graph form and with labels.
9933 (vc-git-log-view-mode): Handle labels.
9934
9935 Make vc-revert change VC state from 'added to 'unregistered.
9936 * vc-git.el (vc-git-revert): Call git reset first.
9937
9938 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
9939
9940 * net/newst-backend.el, net/newst-plainview.el:
9941 * net/newst-reader.el, net/newst-ticker.el:
9942 * net/newst-treeview.el, net/newsticker.el:
9943 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
9944
9945 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
9946
9947 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
9948
9949 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
9950 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
9951 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
9952 Update annotation regexp.
9953
9954 * simple.el (beginning-of-visual-line): Constrain to field
9955 boundaries (Bug#5106).
9956
9957 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
9958
9959 * xml.el (xml-substitute-numeric-entities): Move
9960 newsticker--decode-numeric-entities in newst-backend.el to
9961 xml-substitute-numeric-entities in xml.el. (Bug#5008)
9962 * net/newst-backend.el (newsticker--parse-generic-feed)
9963 (newsticker--parse-generic-items)
9964 (newsticker--decode-numeric-entities): Move
9965 newsticker--decode-numeric-entities in newst-backend.el to
9966 xml-substitute-numeric-entities in xml.el. (Bug#5008)
9967
9968 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
9969
9970 * progmodes/js.el (js--js-not): Add null to the list of values.
9971
9972 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
9973
9974 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
9975
9976 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9977
9978 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
9979 delimiter if it is at the end of the current line.
9980 (bibtex-generate-url-list): Fix docstring.
9981
9982 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
9983
9984 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
9985 minibuffer's content with itself.
9986 Fold the confirm-after-completion case into the `confirm' case.
9987 (completion-pcm-word-delimiters): Add : and / to the delimiters.
9988
9989 2009-12-06 Kevin Ryde <user42@zip.com.au>
9990
9991 * ffap.el (ffap-rfc-path): Make this a defcustom since
9992 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
9993
9994 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
9995 manuals, similar to existing setup for help-mode. (Bug#3913.)
9996
9997 2009-12-05 Juri Linkov <juri@jurta.org>
9998
9999 Save and restore dired buffer's point positions too. (Bug#4880)
10000
10001 * dired.el (dired-save-positions): Return in the first element
10002 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
10003 Doc fix.
10004 (dired-restore-positions): First restore buffer's position.
10005 While restoring window's positions, check if window still displays
10006 the original buffer.
10007
10008 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
10009
10010 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
10011 if possible.
10012
10013 * shell.el (shell): Require ansi-color (Bug#5113).
10014
10015 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
10016
10017 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
10018
10019 2009-12-05 Alan Mackenzie <acm@muc.de>
10020
10021 * progmodes/cc-mode.el (c-before-hack-hook)
10022 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
10023 `c-file-style' to work again. This reversion restores the current
10024 software to its state in Emacs 23.1. (Bug#4146)
10025
10026 2009-12-05 Kevin Ryde <user42@zip.com.au>
10027
10028 * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
10029 comment-start-skip to comment-end-skip as comment (Bug#4781).
10030
10031 2009-12-05 Juri Linkov <juri@jurta.org>
10032
10033 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
10034 for virtual nodes. (Bug#4147)
10035 (Info-find-node-2): Set `Info-current-node-virtual' to nil
10036 when moving from a virtual node.
10037 (Info-mode-menu): Add `Info-virtual-index' to the menu.
10038 (Info-mode): Add `Info-virtual-index' to the docstring.
10039
10040 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10041
10042 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
10043 track of the buffer position of the end of a BibTeX entry as this
10044 position may change during reformatting.
10045 (bibtex-format-entry): Remove whitespace before processing
10046 numerical fields so that we recognize the latter properly.
10047 (bibtex-reformat): Do not use push which changes the global value
10048 of bibtex-entry-format.
10049 (bibtex-field-braces-alist, bibtex-field-strings-alist)
10050 (bibtex-field-re-init): Replace only space characters by regexp
10051 for whitespace.
10052 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
10053 (bibtex-initialize): Also update bibtex-strings.
10054 (bibtex-kill-field): Preserve white space at end of entry.
10055 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
10056 Update bibtex-reference-keys.
10057
10058 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
10059
10060 * minibuffer.el (completion-pcm--merge-try): Also consider placing
10061 point after a star, if that's the only place where modifications can
10062 make progress.
10063
10064 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
10065
10066 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
10067 in docstrings.
10068
10069 2009-12-04 Juri Linkov <juri@jurta.org>
10070
10071 * proced.el (proced): Call `(proced-update t)' to update process
10072 information instead of only running proced-post-display-hook.
10073 (proced-send-signal): Add a leading space to the buffer name
10074 " *Marked Processes*" to make this buffer ephemeral.
10075
10076 2009-12-04 Juri Linkov <juri@jurta.org>
10077
10078 * dired.el (dired-auto-revert-buffer): New defcustom.
10079 (dired-internal-noselect): Use it.
10080
10081 2009-12-04 Juri Linkov <juri@jurta.org>
10082
10083 Change roles of modes and functions in image-mode.el (Bug#5062).
10084
10085 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
10086 in `auto-mode-alist'.
10087 (image-mode-previous-major-mode): New variable.
10088 (image-minor-mode-map): Rename from `image-mode-text-map'.
10089 (image-mode): Move graceful error-handling code from
10090 `image-minor-mode' to here. On errors call `image-mode-as-text'.
10091 (image-minor-mode): Remove all image-handling code.
10092 Replace `image-mode-text-map' with `image-minor-mode-map'.
10093 Check for `image-type' in mode-line format string.
10094 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
10095 (image-mode-as-text): New function with most code from
10096 `image-mode-maybe'.
10097 (image-toggle-display-text): Move code that removes image
10098 properties from `image-toggle-display' to here.
10099 (image-toggle-display-image): New function with code that adds
10100 image properties copied from `image-toggle-display'.
10101 (image-toggle-display): Remove most code with leaving only code
10102 that toggles between `image-mode-as-text' and `image-mode'.
10103
10104 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
10105
10106 * net/newst-treeview.el
10107 (newsticker--treeview-list-highlight-start): Restored call to
10108 save-excursion: Selected item was stuck.
10109 (newsticker--treeview-list-select): New.
10110 (newsticker--treeview-item-show-text)
10111 (newsticker--treeview-item-show)
10112 (newsticker--treeview-item-update): Use new
10113 newsticker-treeview-item-mode.
10114 (newsticker-treeview-update): Keep current item.
10115 (newsticker-treeview-next-new-or-immortal-item): Doc change.
10116 (newsticker--treeview-first-feed): Doc change.
10117 (newsticker-treeview-list-menu)
10118 (newsticker-treeview-item-menu): Added menu entries.
10119 (newsticker-treeview-item-mode): New.
10120
10121 * net/newst-backend.el (newsticker-customize): Delete other
10122 windows.
10123
10124 2009-12-04 Sam Steingold <sds@gnu.org>
10125
10126 * log-view.el (log-view-mode-map): "q" calls quit-window,
10127 like in all the other non-self-insert buffers.
10128
10129 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
10130
10131 Minor cleanup.
10132 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
10133 key decoding rather than do it manually via last-input-event +
10134 ascii-character.
10135 (term-exec): Use delete-and-extract-region.
10136 (term-handle-ansi-terminal-messages): Remove unused var `end'.
10137 (term-process-pager): Remove unused var `i'.
10138 (term-dynamic-simple-complete): Make obsolete.
10139 (serial-update-config-menu): Remove unused vars `y' and `str'.
10140 (term-update-mode-line): Remove unused var `temp'.
10141
10142 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
10143
10144 Limit the number of log entries displayed by default.
10145 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
10146 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
10147 using a prefix argument.
10148
10149 2009-12-03 Glenn Morris <rgm@gnu.org>
10150
10151 * progmodes/idlwave.el (class): Restore still useful declaration.
10152
10153 2009-12-03 Alan Mackenzie <acm@muc.de>
10154
10155 Enhance `c-parse-state' to run efficiently in "brace deserts".
10156
10157 * progmodes/cc-mode.el (c-basic-common-init):
10158 Call c-state-cache-init.
10159 (c-neutralize-syntax-in-and-mark-CPP): Rename from
10160 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
10161 placing `category' properties value 'c-cpp-delimiter at its boundaries.
10162
10163 * progmodes/cc-langs.el (c-before-font-lock-function):
10164 c-extend-and-neutralize-syntax-in-CPP has been renamed
10165 c-neutralize-syntax-in-and-mark-CPP.
10166
10167 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
10168 with `category' properties now, not `syntax-table' ones.
10169
10170 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
10171 enhanced (but slower) version of c-end-of-macro that won't land
10172 inside a literal or on another awkward character.
10173 (c-state-cache-too-far, c-state-cache-start)
10174 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
10175 (c-state-nonlit-pos-cache-limit, c-state-point-min)
10176 (c-state-point-min-lit-type, c-state-point-min-lit-start)
10177 (c-state-min-scan-pos, c-state-brace-pair-desert)
10178 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
10179 buffer local variables.
10180 (c-state-literal-at, c-state-lit-beg)
10181 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
10182 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
10183 (c-state-cache-top-paren, c-state-cache-after-top-paren)
10184 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
10185 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
10186 (c-renarrow-state-cache)
10187 (c-append-lower-brace-pair-to-state-cache)
10188 (c-state-push-any-brace-pair, c-append-to-state-cache)
10189 (c-remove-stale-state-cache)
10190 (c-remove-stale-state-cache-backwards, c-state-cache-init)
10191 (c-invalidate-state-cache-1, c-parse-state-1)
10192 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
10193 (c-parse-state): Enhance and refactor.
10194 (c-debug-parse-state): Amend to deal with all the new variables.
10195
10196 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
10197 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
10198 modify to use category text properties rather than syntax-table ones.
10199 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
10200 to switch off/on the syntactic paren property of C++ template
10201 delimiters using the category property.
10202 (c-with-<->-as-parens-suppressed): Macro to invoke code with
10203 template delims suppressed.
10204 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
10205 New constant/macros which apply category properties to the start
10206 and end of preprocessor constructs.
10207 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
10208 "comment out" the syntactic value of characters in preprocessor
10209 constructs.
10210 (c-with-cpps-commented-out)
10211 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
10212 with characters in all or all but one preprocessor constructs
10213 "commented out".
10214
10215 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10216
10217 * proced.el (proced-filter-alist): Use regexp-quote.
10218
10219 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
10220
10221 Cleanup.
10222 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
10223 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
10224 arguments. Expand `default-directory'.
10225
10226 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
10227 the benefit of returning an expanded localname.
10228 (tramp-tramp-file-p): Handle the case NAME is not a string.
10229
10230 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
10231
10232 Add support for bzr shelve/unshelve.
10233 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
10234 (vc-bzr-extra-menu-map): New variables.
10235 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
10236 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
10237 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
10238 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
10239 (vc-bzr-dir-extra-headers): Display shelves.
10240
10241 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
10242
10243 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
10244
10245 * textmodes/bibtex.el (bibtex-complete-internal):
10246 Use completion-in-region.
10247 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
10248
10249 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
10250
10251 Support applying stashes. Improve UI.
10252 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
10253 (vc-git-stash-apply, vc-git-stash-pop)
10254 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
10255 (vc-git-stash-menu): New functions.
10256 (vc-git-stash-menu-map): New variable.
10257 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
10258
10259 2009-12-03 Glenn Morris <rgm@gnu.org>
10260
10261 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
10262 (vc-print-log-internal): Fix previous change.
10263 (vc-revert): Correct pluralization.
10264
10265 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
10266
10267 * progmodes/make-mode.el (makefile-special-targets-list): No need for
10268 it to be an alist any more.
10269 (makefile-complete): Use completion-in-region.
10270
10271 * progmodes/octave-mod.el (octave-complete-symbol):
10272 Use completion-in-region.
10273
10274 Misc cleanup.
10275 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
10276 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
10277 (idlwave-complete-class): Don't quote lambda.
10278 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
10279 (idlwave-mode-map): Move initialization into declaration.
10280 (idlwave-action-and-binding): Use backquotes.
10281 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
10282 Simplify.
10283 (idlwave-is-pointer-dereference): Remove unused var `pos'.
10284 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
10285 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
10286 `parts', and `all-parts'.
10287 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
10288 (idlwave-convert-xml-system-routine-info): Remove unused string
10289 `version-string'.
10290 (idlwave-display-user-catalog-widget): Use dolist.
10291 (idlwave-scanning-lib): Declare dynamically-scoped var.
10292 (idlwave-scan-library-catalogs): Remove unused var `flags'.
10293 (completion-highlight-first-word-only): Declare to silence bytecomp.
10294 (idlwave-popup-select): Tighten scope of `resp'.
10295 (idlwave-find-struct-tag): Remove unused var `beg'.
10296 (idlwave-after-load-rinfo-hook): Declare.
10297 (idlwave-sintern-class-info): Remove unused var `taglist'.
10298 (idlwave-find-class-definition): Remove unused var `list'.
10299 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
10300 (idlwave-what-module-find-class): Remove unused var `classes'.
10301
10302 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
10303
10304 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
10305
10306 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
10307
10308 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
10309 buffers visited. Remove redundant current-buffer-saving.
10310
10311 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
10312
10313 Use completion-in-buffer and remove uses of dynamic scoping.
10314 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
10315 (pascal-buffer-to-use, pascal-flag): Don't declare.
10316 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
10317 (pascal-get-completion-decl, pascal-keyword-completion):
10318 Add `pascal-str' argument, save-excursion,
10319 return the found completions, and don't filter with pascal-pred.
10320 (pascal-completion-cache): New var.
10321 (pascal-completion): Don't switch buffer any more (it was never
10322 necessary). Don't save-excursion any more (it's done by the called
10323 subroutines). Use a cache to avoid redundant computations.
10324 Use complete-with-action rather than pascal-completion-response and
10325 let it apply the predicate as well.
10326 (pascal-complete-word): Use completion-in-buffer when
10327 pascal-toggle-completions is nil.
10328 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
10329 not used any more.
10330 (pascal-comp-defun): Don't change buffer any more.
10331 Use complete-with-action rather than pascal-completion-response and
10332 let it apply the predicate as well.
10333 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
10334 when neded.
10335
10336 2009-12-02 Kenichi Handa <handa@m17n.org>
10337
10338 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
10339 shape for all Indic scripts.
10340
10341 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
10342
10343 Use completion-in-buffer.
10344 * wid-edit.el (widget-field-text-end): New function.
10345 (widget-field-value-get): Use it.
10346 (widget-string-complete, widget-file-complete)
10347 (widget-color-complete): Use it and completion-in-region.
10348 (widget-complete): Don't narrow the buffer.
10349
10350 2009-12-02 Glenn Morris <rgm@gnu.org>
10351
10352 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
10353 (rmail-select-summary): Use rmail-pop-to-buffer.
10354 * mail/rmailsum.el: Replace all pop-to-buffer calls with
10355 rmail-pop-to-buffer, to prevent horizontal splits.
10356
10357 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
10358 save-excursion with save-current-buffer.
10359 Widen before searching. (Bug#5093)
10360 (diary-list-sexp-entries): Remove superfluous save-excursion.
10361
10362 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
10363
10364 * woman.el (woman-make-bufname): Handle man-pages with "." in the
10365 name. (Bug#5038)
10366
10367 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
10368
10369 * ido.el (ido-file-internal): Handle filenames at point that do
10370 not have a directory part. (Bug#5049)
10371
10372 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
10373
10374 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
10375 (mpc-songs-jump-to, mpc-resume): Doc fixes.
10376
10377 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
10378
10379 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
10380 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
10381 any more.
10382
10383 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
10384
10385 * comint.el (comint-insert-input): Ignore clicks to the right of
10386 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
10387
10388 * vc.el (vc-print-log-internal): Don't wait for the process to
10389 terminate before setting up the major mode.
10390
10391 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
10392 in case.
10393
10394 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
10395 the last element.
10396
10397 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
10398
10399 2009-12-01 Glenn Morris <rgm@gnu.org>
10400
10401 * window.el (window--display-buffer-2): Fix previous changes.
10402
10403 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
10404
10405 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
10406
10407 2009-12-01 Glenn Morris <rgm@gnu.org>
10408
10409 * Makefile.in (ELCFILES): Add mpc.elc.
10410
10411 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
10412
10413 * mpc.el: New file.
10414
10415 2009-12-01 Glenn Morris <rgm@gnu.org>
10416
10417 * window.el (window-to-use): Define for compiler.
10418
10419 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
10420 consistent with others (no final period).
10421
10422 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
10423 (rmail-mime-show): Downcase the encoding. (Bug#5070)
10424
10425 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
10426
10427 Make vc-print-log buttons work.
10428 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
10429
10430 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
10431
10432 * savehist.el (savehist-autosave-interval): Allow setting to nil
10433 through customize. (Bug#5056)
10434
10435 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
10436
10437 Fix references to jit-lock properties.
10438 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
10439 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
10440 (perl-font-lock-special-syntactic-constructs):
10441 Quote jit-lock-defer-multiline property.
10442
10443 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
10444
10445 * vc-git.el (vc-git-registered): Call vc-git-root only once.
10446
10447 2009-11-30 Juri Linkov <juri@jurta.org>
10448
10449 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
10450 value `buffer' of `multi-isearch-next-buffer-current-function'.
10451 Use `(current-buffer)' when `buffer' is nil.
10452 (multi-isearch-next-buffer-from-list): Don't fallback to
10453 `(current-buffer)' when `buffer' is nil. (Bug#4947)
10454
10455 2009-11-30 Juri Linkov <juri@jurta.org>
10456
10457 * misearch.el (multi-isearch-read-buffers): Move canonicalization
10458 of buffers with `get-buffer' to `multi-isearch-buffers'.
10459 (multi-isearch-buffers, multi-isearch-buffers-regexp):
10460 Canonicalize BUFFERS with `get-buffer'. Doc fix.
10461 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
10462 FILES with `expand-file-name' converting relative file names
10463 to absolute. Doc fix. (Bug#4727)
10464
10465 2009-11-30 Juri Linkov <juri@jurta.org>
10466
10467 * misearch.el (multi-isearch-read-buffers)
10468 (multi-isearch-read-matching-buffers): New functions.
10469 (multi-isearch-buffers, multi-isearch-buffers-regexp):
10470 Use them in the `interactive' spec. Doc fix.
10471 (multi-isearch-read-files, multi-isearch-read-matching-files):
10472 New functions.
10473 (multi-isearch-files, multi-isearch-files-regexp):
10474 Use them in the `interactive' spec. Doc fix. (Bug#4725)
10475
10476 2009-11-30 Juri Linkov <juri@jurta.org>
10477
10478 * doc-view.el (doc-view-continuous):
10479 Rename from `doc-view-continuous-mode'.
10480 (doc-view-menu): Move "Toggle display" to the top.
10481 Add submenu "Continuous" with radio buttons "Off"/"On"
10482 and "Save as Default".
10483 (doc-view-scroll-up-or-next-page)
10484 (doc-view-scroll-down-or-previous-page)
10485 (doc-view-next-line-or-next-page)
10486 (doc-view-previous-line-or-previous-page): Rename
10487 `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
10488
10489 2009-11-30 Juri Linkov <juri@jurta.org>
10490
10491 * comint.el (comint-mode-map): Rebind `M-r' from
10492 `comint-previous-matching-input' to
10493 `comint-history-isearch-backward-regexp'.
10494 Unbind `M-s' to allow global key binding `M-s'.
10495 Add menu items for `comint-history-isearch-backward' and
10496 `comint-history-isearch-backward-regexp'. (Bug#3746)
10497
10498 2009-11-30 Juri Linkov <juri@jurta.org>
10499
10500 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
10501 For def=recenter, replace `recenter' with `recenter-top-bottom'
10502 that is called with `this-command' and `last-command' let-bound
10503 to `recenter-top-bottom'. When the last `def' was not `recenter',
10504 set `recenter-last-op' to nil. (Bug#4981)
10505
10506 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
10507
10508 Minor cleanup and simplification.
10509 * filecache.el (file-cache-add-directory)
10510 (file-cache-add-directory-recursively)
10511 (file-cache-add-from-file-cache-buffer)
10512 (file-cache-delete-file-regexp, file-cache-delete-directory)
10513 (file-cache-files-matching-internal, file-cache-display): Use dolist.
10514 (file-cache-temp-minibuffer-message): Delete function.
10515 (file-cache-minibuffer-complete): Use minibuffer-message instead.
10516
10517 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
10518 Don't signal an error when bumping into EOB in tr, s, or y.
10519
10520 2009-11-29 Juri Linkov <juri@jurta.org>
10521
10522 * startup.el (fancy-about-text): Fix wording of Guided Tour.
10523 (Bug#4960)
10524
10525 * descr-text.el (describe-char-unidata-list): Use lowercase name
10526 for "Unicode name" like in other tags.
10527
10528 2009-11-29 Juri Linkov <juri@jurta.org>
10529
10530 * ediff-util.el (ediff-minibuffer-with-setup-hook):
10531 New compatibility macro.
10532 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
10533
10534 2009-11-29 Juri Linkov <juri@jurta.org>
10535
10536 Add defcustom to define the cycling order of `recenter-top-bottom'.
10537 (Bug#4981)
10538
10539 * window.el (recenter-last-op): Doc fix.
10540 (recenter-positions): New defcustom.
10541 (recenter-top-bottom): Rewrite to use `recenter-positions'.
10542 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
10543
10544 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
10545
10546 Improve integration of Tramp and ange-ftp in eshell.
10547
10548 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
10549 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
10550 (eshell/sudo): Flatten args. Let-bind `default-directory'.
10551
10552 * eshell/esh-util.el (top): Require also Tramp when compiling.
10553 (eshell-directory-files-and-attributes): Check for FTP remote
10554 connection.
10555 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
10556 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
10557 (eshell-file-attributes): Handle ".". Return `entry'.
10558
10559 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
10560 (ange-ftp-directory-files-and-attributes)
10561 (ange-ftp-real-directory-files-and-attributes): New defuns.
10562
10563 * net/tramp.el (tramp-maybe-open-connection): Open the remote
10564 shell with "exec" when possible. This prevents trailing prompts
10565 in `start-file-process'.
10566
10567 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
10568
10569 Try and remove assumptions about point-min==1.
10570 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
10571 (rng-compute-mode-line-string): Show the validation percentage in
10572 terms of the narrowed text, not the widened text.
10573 (rng-do-some-validation): Don't catch internal errors when debugging.
10574 (rng-first-error): Simplify.
10575 (rng-after-change-function): Remove work around. AFAIK the bug has
10576 been fixed a while ago.
10577
10578 * image-mode.el (image-minor-mode): Exit more gracefully when the image
10579 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
10580
10581 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
10582
10583 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
10584 `cd' doesn't always do it for us (bug#5067).
10585
10586 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
10587 on 2009-10-25 as part of some other change (bug#5067).
10588
10589 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
10590
10591 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
10592 `suspicious'.
10593 (byte-compile-warnings): Use byte-compile-warning-types.
10594 (byte-compile-save-excursion): Warn about use of set-buffer right
10595 after save-excursion.
10596
10597 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
10598 the excursion as well.
10599
10600 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
10601
10602 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
10603 providing a Tramp related implementation of "su" and "sudo".
10604 (eshell-unix-initialize): Add "su" and "sudo".
10605
10606 2009-11-27 Daiki Ueno <ueno@unixuser.org>
10607
10608 * net/socks.el (socks-send-command): Convert binary request to
10609 unibyte before sending. This fixes mishandling of some port
10610 numbers such as 129.
10611
10612 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
10613
10614 * help.el (describe-bindings-internal): Remove `interactive'.
10615
10616 * man.el (Man-completion-table): Trim a terminating "(".
10617 Remove the space between name page a section.
10618 Add the command's description on the `help-echo' property.
10619 Remove `process-connection-type' binding since it's unused by
10620 call-process.
10621 Provide completion for the "<section> <name>" format as well.
10622 (Man-default-man-entry): Remove spurious var shadowing the argument.
10623
10624 2009-11-26 Kevin Ryde <user42@zip.com.au>
10625
10626 * log-view.el: Add "Keywords: tools", since its other keywords
10627 aren't in finder-known-keywords, and following vc.el.
10628
10629 * sha1.el (sha1-string-external): default-directory "/" in case
10630 otherwise non-existent. process-connection-type pipe for touch of
10631 efficiency recommended by elisp manual. (An aside in Bug#3911.)
10632
10633 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
10634
10635 Misc coding convention cleanups.
10636 * htmlfontify.el (hfy-init-kludge-hook): Rename from
10637 hfy-init-kludge-hooks.
10638 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
10639 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
10640 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
10641 and push.
10642 (hfy-slant, hfy-weight): Use tables rather than code.
10643 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
10644 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
10645 (hfy-face-attr-for-class): Initialize `face-spec' directly.
10646 (hfy-face-to-css): Remove `nconc' with single arg.
10647 (hfy-p-to-face-lennart): Use `or'.
10648 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
10649 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
10650 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
10651 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
10652 (hfy-force-fontification): Use run-hooks.
10653
10654 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
10655
10656 Various minor fixes.
10657 * htmlfontify.el (hfy-default-header): Add toggle_invis since
10658 Javascript belongs in the header, not the body.
10659 (hfy-javascript): Remove.
10660 (hfy-fontify-buffer): Don't insert it any more.
10661 (hfy-face-at): Handle (face0 face1 face2) style face properties.
10662 Fix bug in invis handling when there were no invis props in a chunk.
10663
10664 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
10665
10666 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
10667
10668 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
10669
10670 * finder.el (finder-mode-map): Add a menu.
10671
10672 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
10673
10674 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
10675 "unsigned" structs.
10676
10677 (verilog-leap-to-head, verilog-backward-token): Handle "disable
10678 fork" statement better.
10679
10680 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
10681
10682 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
10683 (verilog-delete-auto, verilog-delete-empty-auto-pair)
10684 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
10685 Reported by Clay Douglass.
10686
10687 (verilog-auto-inst, verilog-auto-star-safe)
10688 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
10689 Fix removing "// Interfaces" when saving .* expansions. Reported by
10690 Pierre-David Pfister.
10691
10692 2009-11-26 Glenn Morris <rgm@gnu.org>
10693
10694 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
10695 the scope.
10696
10697 2009-11-25 Johan Bockgård <bojohan@gnu.org>
10698
10699 * vc-annotate.el (vc-annotate-revision-previous-to-line):
10700 Really use previous revision.
10701
10702 2009-11-25 Kevin Ryde <user42@zip.com.au>
10703
10704 * man.el (Man-completion-table): default-directory "/" in case
10705 doesn't otherwise exist. process-environment COLUMNS=999 so as
10706 not to truncate long names. process-connection-type pipe to avoid
10707 any chance of hitting the pseudo-tty TIOCGWINSZ.
10708 (man): completion-ignore-case t for friendliness and since man
10709 itself is case-insensitive on the command line.
10710 Further to Bug#3717.
10711
10712 * arc-mode.el: Add "Keywords: files", so the details in its
10713 commentary can be reached from finder-by-keyword.
10714 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
10715 editing mode, but it's comms related and sgml-mode.el has "comm"
10716 on that basis too.
10717 * textmodes/bibtex-style.el: Add "Keywords: tex".
10718 * international/isearch-x.el, international/ja-dic-cnv.el:
10719 * international/ja-dic-utl.el, international/kkc.el:
10720 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
10721
10722 2009-11-25 Juri Linkov <juri@jurta.org>
10723
10724 * man.el (Man-completion-table): Modify regexp to include
10725 section names to completion strings. (Bug#3717)
10726
10727 2009-11-25 Juri Linkov <juri@jurta.org>
10728
10729 Search recursively in gzipped files. (Bug#4982)
10730
10731 * progmodes/grep.el (grep-highlight-matches): Add new options
10732 `always' and `auto'. Doc fix.
10733 (grep-process-setup): Check `grep-highlight-matches' for
10734 `auto-detect' to determine the need to compute grep defaults.
10735 Move Windows/DOS specific --colors settings handling
10736 to `grep-compute-defaults'. Check `grep-highlight-matches'
10737 to get the value of "--color=".
10738 (grep-compute-defaults): Compute `grep-highlight-matches' when it
10739 has the value `auto-detect'. Move Windows/DOS specific settings
10740 from `grep-process-setup'.
10741 (zrgrep): New command with alias `rzgrep'.
10742
10743 2009-11-25 Juri Linkov <juri@jurta.org>
10744
10745 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
10746 to nil instead of switching off view-mode. (Bug#4896)
10747
10748 2009-11-25 Juri Linkov <juri@jurta.org>
10749
10750 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
10751
10752 * mwheel.el (mwheel-scroll-up-function)
10753 (mwheel-scroll-down-function): New defvars.
10754 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
10755 `scroll-up', and `mwheel-scroll-down-function' instead of
10756 `scroll-down'.
10757
10758 * doc-view.el (doc-view-scroll-up-or-next-page)
10759 (doc-view-scroll-down-or-previous-page): Add optional ARG.
10760 Use this ARG in the call to image-scroll-up/image-scroll-down.
10761 Change `interactive' spec to "P". Goto next/previous page only
10762 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
10763 SPC/DEL case). Doc fix.
10764 (doc-view-next-line-or-next-page)
10765 (doc-view-previous-line-or-previous-page): Rename arg to ARG
10766 for consistency.
10767 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
10768 `doc-view-scroll-up-or-next-page', and buffer-local
10769 `mwheel-scroll-down-function' to
10770 `doc-view-scroll-down-or-previous-page'.
10771
10772 2009-11-25 Juri Linkov <juri@jurta.org>
10773
10774 Provide additional default values (directories at other Dired
10775 windows) via M-n in the minibuffer of some Dired commands.
10776
10777 * dired-aux.el (dired-diff, dired-compare-directories)
10778 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
10779 `minibuffer-default' in `minibuffer-with-setup-hook'.
10780 (dired-dwim-target-directory): Find a window that displays Dired
10781 buffer instead of failing when the next window is not Dired.
10782 Use `get-window-with-predicate' to find for the next Dired window.
10783 (dired-dwim-target-defaults): New function.
10784
10785 * ediff-util.el (ediff-read-file-name):
10786 Use `dired-dwim-target-defaults' to set `minibuffer-default'
10787 in `minibuffer-with-setup-hook'.
10788
10789 2009-11-25 Juri Linkov <juri@jurta.org>
10790
10791 Provide additional default values (file name at point or at the
10792 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
10793
10794 * minibuffer.el (read-file-name-defaults): New function.
10795 (read-file-name): Reset `minibuffer-default' to nil when
10796 it duplicates initial input `insdef'.
10797 Bind `minibuffer-default-add-function' to lambda that
10798 calls `read-file-name-defaults' in `minibuffer-selected-window'.
10799 (minibuffer-insert-file-name-at-point): New command.
10800
10801 * files.el (file-name-at-point-functions): New defcustom.
10802 (find-file-default): Remove defvar.
10803 (find-file-read-args): Don't use `find-file-default'.
10804 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
10805 to `read-file-name'.
10806 (find-file-literally): Use `read-file-name' with
10807 `confirm-nonexistent-file-or-buffer'.
10808
10809 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
10810
10811 * dired.el (dired-read-dir-and-switches):
10812 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
10813 to `read-file-name'.
10814 (dired-file-name-at-point): New function.
10815 (dired-mode): Add hook `dired-file-name-at-point' to
10816 `file-name-at-point-functions'.
10817
10818 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
10819
10820 Really make the *Completions* window soft-dedicated (bug#5030).
10821 * window.el (window--display-buffer-2): Add `dedicated' argument.
10822 (display-buffer): Pass it when needed so the dedicated flag is set
10823 after calling set-window-buffer, which would otherwise reset it.
10824
10825 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
10826
10827 * progmodes/meta-mode.el (meta-complete-symbol):
10828 * progmodes/etags.el (complete-tag):
10829 * mail/mailabbrev.el (mail-abbrev-complete-alias):
10830 Use completion-in-region.
10831
10832 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
10833 (dabbrev-completion): Use completion-in-region.
10834 (dabbrev--abbrev-at-point): Simplify regexp.
10835
10836 * abbrev.el (abbrev--before-point): Use word-motion functions
10837 if :regexp is not specified (bug#5031).
10838
10839 * subr.el (string-prefix-p): New function.
10840
10841 * man.el (Man-completion-cache): New var.
10842 (Man-completion-table): Use it.
10843
10844 * vc.el (vc-print-log-internal): Make `limit' optional for better
10845 compatibility (e.g. with vc-annotate.el).
10846
10847 2009-11-24 Kevin Ryde <user42@zip.com.au>
10848
10849 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
10850 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
10851
10852 * emacs-lisp/elint.el (elint-add-required-env): Better error message
10853 when .el source file not found or other error.
10854
10855 2009-11-24 Markus Triska <markus.triska@gmx.at>
10856
10857 * linum.el (linum-update-window): Ignore intangible (bug#4996).
10858
10859 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
10860
10861 Handle the [back] button properly (bug#4979).
10862 * descr-text.el (describe-text-properties): Add a `buffer' argument.
10863 Use help-setup-xref, help-buffer, and with-help-window.
10864 (describe-char): Add `buffer' argument.
10865 Pass proper command to help-setup-xref. Don't meddle with
10866 help-xref-stack-item directly.
10867 (describe-text-category): Use with-help-window and help-buffer.
10868
10869 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
10870 for the displayed buffer (bug#4887).
10871
10872 * man.el (Man-completion-table): New function.
10873 (man): Use it.
10874
10875 2009-11-24 David Reitter <david.reitter@gmail.com>
10876
10877 * vc-git.el (vc-git-registered): Use checkout directory (where
10878 .git is) rather than the file's directory and a relative path spec
10879 to work around a bug in git.
10880
10881 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
10882
10883 Improve handling of processes on remote hosts.
10884
10885 * eshell/esh-util.el (eshell-path-env): New defvar.
10886 (eshell-parse-colon-path): New defun.
10887 (eshell-file-attributes): Use `eshell-parse-colon-path'.
10888
10889 * eshell/esh-ext.el (eshell-search-path):
10890 Use `eshell-parse-colon-path'.
10891 (eshell-remote-command): Remove argument HANDLER.
10892 (eshell-external-command): Check for FTP remote connection.
10893
10894 * eshell/esh-proc.el (eshell-gather-process-output):
10895 Use `file-truename', in order to start also symlinked files.
10896 Apply `start-file-process' instead of `start-process'.
10897 Shorten `command' to the local file name part.
10898
10899 * eshell/em-cmpl.el (eshell-complete-commands-list):
10900 Use `eshell-parse-colon-path'.
10901
10902 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
10903
10904 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
10905 to `eshell-directory-change-hook'.
10906
10907 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
10908
10909 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
10910 because it could be enabled automatically if view-read-only is non-nil.
10911
10912 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
10913
10914 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
10915 made on 2009-11-22.
10916
10917 2009-11-24 Glenn Morris <rgm@gnu.org>
10918
10919 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
10920 deleted variable bookmark-bmenu-bookmark-column.
10921
10922 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
10923
10924 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
10925
10926 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
10927
10928 * net/browse-url.el (browse-url-filename-alist): On Windows, add
10929 two slashes to the "file:" prefix.
10930 (browse-url-file-url): De-munge Cygwin filenames before passing
10931 them to Windows browser.
10932 (browse-url-default-windows-browser): Use call-process.
10933
10934 2009-11-23 Juri Linkov <juri@jurta.org>
10935
10936 Implement DocView Continuous mode. (Bug#4896)
10937 * doc-view.el (doc-view-continuous-mode): New defcustom.
10938 (doc-view-mode-map): Bind C-n/<down> to
10939 `doc-view-next-line-or-next-page', C-p/<up> to
10940 `doc-view-previous-line-or-previous-page'.
10941 (doc-view-next-line-or-next-page)
10942 (doc-view-previous-line-or-previous-page): New commands.
10943
10944 2009-11-23 Juri Linkov <juri@jurta.org>
10945
10946 Implement Isearch in comint input history. (Bug#3746)
10947 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
10948 `isearch-mode-hook'.
10949 (comint-history-isearch): New defcustom.
10950 (comint-history-isearch-backward)
10951 (comint-history-isearch-backward-regexp): New commands.
10952 (comint-history-isearch-message-overlay): New buffer-local variable.
10953 (comint-history-isearch-setup, comint-history-isearch-end)
10954 (comint-goto-input, comint-history-isearch-search)
10955 (comint-history-isearch-message, comint-history-isearch-wrap)
10956 (comint-history-isearch-push-state)
10957 (comint-history-isearch-pop-state): New functions.
10958
10959 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
10960
10961 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
10962 return.
10963 (tramp-handle-make-symbolic-link)
10964 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
10965 Quote file names.
10966 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
10967 (tramp-handle-process-file): Use it.
10968
10969 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
10970
10971 * window.el (move-to-window-line-last-op): Remove.
10972 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
10973
10974 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
10975
10976 Make M-r mirror the new cycling behavior of C-l.
10977 * window.el (move-to-window-line-last-op): New var.
10978 (move-to-window-line-top-bottom): New command.
10979 (global-map): Bind M-r move-to-window-line-top-bottom.
10980
10981 2009-11-23 Sven Joachim <svenjoac@gmx.de>
10982
10983 * dired-x.el (dired-guess-shell-alist-default):
10984 Support xz format. (Bug#4953)
10985
10986 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
10987
10988 * emulation/viper-cmd.el: Use viper-last-command-char instead of
10989 last-command-char/last-command-event.
10990 (viper-prefix-arg-value): Do correct conversion of event-char for
10991 XEmacs.
10992
10993 * emulation/viper-util.el, emulation/viper.el:
10994 Use viper-last-command-char instead of
10995 last-command-char/last-command-event.
10996
10997 * ediff-init.el, ediff-mult.el, ediff-util.el:
10998 Replace last-command-char and last-command-event
10999 with (ediff-last-command-char) everywhere.
11000
11001 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
11002 created in fundamental mode.
11003
11004 * ediff.el (ediff-version): Revert the change of interactive-p to
11005 called-interactively-p.
11006
11007 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
11008
11009 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
11010 generation from word-movement command names.
11011
11012 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
11013
11014 * cus-start.el (all): Add native condition for font-use-system-font.
11015
11016 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
11017
11018 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
11019 Correct the patch from 2009-11-18. (Bug#3910)
11020
11021 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
11022
11023 * progmodes/subword.el: Rename from lisp/subword.el.
11024
11025 * subword.el: Rename to progmodes/subword.el.
11026
11027 * Makefile.in (ELCFILES): Adapt to subword.el move.
11028
11029 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11030 Stefan Monnier <monnier@iro.umontreal.ca>
11031
11032 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
11033 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
11034 (bookmark-bmenu-show-filenames): Use push.
11035 (bookmark-bmenu-hide-filenames): Use local var instead of
11036 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
11037 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
11038 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
11039 filenames now that the bookmark names are always available.
11040
11041 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
11042
11043 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
11044 (bookmark-search-pattern): Move and leave unbound.
11045 (bookmark-bmenu-mode-map): Change binding.
11046 (bookmark-read-search-input): Simplify.
11047 Don't use text-char-description. Don't error on non-char events.
11048 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
11049 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
11050 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
11051 Use a local var for the timer.
11052 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
11053 (i.e. bookmark-bmenu-search).
11054
11055 2009-11-21 Glenn Morris <rgm@gnu.org>
11056
11057 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
11058
11059 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
11060
11061 * net/browse-url.el (browse-url-default-windows-browser):
11062 Use cygstart for cygwin.
11063
11064 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
11065
11066 * bookmark.el: Formatting and doc fixes only:
11067 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
11068 (bookmark-bmenu-search): Wrap to fit within 80 columns.
11069 Minor grammar and punctuation fixes in doc string.
11070 (bookmark-read-search-input): Adjust to fit within 80 columns.
11071
11072 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
11073
11074 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
11075 (c-backward-into-nomenclature): Adapt to subword renaming.
11076
11077 * subword.el (subword-forward, subword-backward, subword-mark)
11078 (subword-kill, subword-backward-kill, subword-transpose)
11079 (subword-downcase, subword-upcase, subword-capitalize)
11080 (subword-forward-internal, subword-backward-internal):
11081 Rename from forward-subword, backward-subword, mark-subword,
11082 kill-subword, backward-kill-subword, transpose-subwords,
11083 downcase-subword, upcase-subword, capitalize-subword,
11084 forward-subword-internal, backward-subword-internal.
11085
11086 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11087
11088 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
11089 New options.
11090 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
11091 New vars.
11092 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
11093 (bookmark-bmenu-filter-alist-by-regexp)
11094 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
11095 (bookmark-bmenu-search): New command.
11096 (bookmark-bmenu-mode-map): Bind it.
11097
11098 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
11099
11100 * progmodes/cc-cmds.el: declare-functioned forward-subword and
11101 backward-subword to quit the byte-compiler.
11102
11103 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
11104
11105 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
11106
11107 * progmodes/cc-cmds.el (c-update-modeline)
11108 (c-forward-into-nomenclature, c-backward-into-nomenclature):
11109 Refer to subword.el functions instead of cc-subword.el.
11110
11111 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
11112 subword.el functions instead of cc-subword.el.
11113
11114 * progmodes/cc-subword.el: Rename to subword.el.
11115 * subword.el: Rename from progmodes/cc-subword.el.
11116 (subword-mode-map): Rename from c-subword-mode-map.
11117 (subword-mode): Rename from c-subword-mode.
11118 (global-subword-mode): New global minor mode.
11119 (forward-subword): Rename from c-forward-subword.
11120 (backward-subword): Rename from c-backward-subword.
11121 (mark-subword): Rename from c-mark-subword.
11122 (kill-subword): Rename from c-kill-subword.
11123 (backward-kill-subword): Rename from c-backward-kill-subword.
11124 (transpose-subwords): Rename from c-tranpose-subword.
11125 (downcase-subword): Rename from c-downcase-subword.
11126 (capitalize-subword): Rename from c-capitalize-subword.
11127 (forward-subword-internal): Rename from c-forward-subword-internal.
11128 (backward-subword-internal): Rename from c-backward-subword-internal.
11129
11130 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
11131
11132 * vc.el (vc-deduce-fileset): Allow non-state changing operations
11133 from a dired buffer.
11134 (vc-dired-deduce-fileset): New function.
11135 (vc-root-diff, vc-print-root-log): Use it.
11136
11137 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
11138 nil LIMIT argument to vc-print-log-internal.
11139
11140 2009-11-20 Glenn Morris <rgm@gnu.org>
11141
11142 * Makefile.in (ELCFILES): Regenerate.
11143
11144 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
11145
11146 * calc/calc.el (calc-set-mode-line):
11147 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
11148 (math-format-number): Rename `math-format-complement-signed' to
11149 `math-format-twos-complement'.
11150
11151 * calc/calc-bin.el (math-format-twos-complement): Rename from
11152 math-format-complement-signed.
11153 (calc-radix): Rename `calc-complement-signed-mode' to
11154 `calc-twos-complement-mode'.
11155 (calc-octal-radix, calc-hex-radix): Add an argument for
11156 two's complement.
11157
11158 * calc/calc-embed.el (calc-embedded-mode-vars):
11159 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
11160
11161 * calc/calc-ext.el (calc-init-extensions):
11162 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
11163 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
11164
11165 * calc/calc-units.el (math-build-units-table-buffer):
11166 Let `calc-twos-complement-mode' be nil.
11167
11168 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
11169 entries.
11170
11171 * calc/calc-vec.el (calcFunc-vunpack):
11172 * calc/calc-aent.el (calc-do-calc-eval):
11173 * calc/calc-forms.el (math-format-date):
11174 * calc/calc-graph.el (calc-graph-plot):
11175 * calc/calc-math.el (math-use-emacs-fn):
11176 * calc/calccomp.el (math-compose-expr):
11177 Let `calc-twos-complement-mode' be nil.
11178
11179 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11180
11181 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
11182 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
11183 * minibuffer.el (completion-in-region-functions): New hook.
11184 (completion-in-region): New function.
11185 * emacs-lisp/lisp.el (lisp-complete-symbol):
11186 * pcomplete.el (pcomplete-std-complete): Use it.
11187
11188 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11189
11190 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
11191 (latex-complete-alist): New vars.
11192 (latex-string-prefix-p, latex-complete-bibtex-keys)
11193 (latex-complete-envnames, latex-complete-refkeys)
11194 (latex-complete-data): New functions.
11195 (latex-complete, latex-indent-or-complete): New commands.
11196
11197 * window.el (display-buffer-mark-dedicated): New var.
11198 (display-buffer): Obey it.
11199 * minibuffer.el (minibuffer-completion-help): Use it.
11200
11201 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
11202
11203 * filecache.el (file-cache-add-file): Use push and cons.
11204 (file-cache-delete-file-regexp): Use push.
11205 (file-cache-complete): Use completion-in-region.
11206
11207 * simple.el (with-wrapper-hook): Fix thinko.
11208
11209 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
11210 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
11211 Use with-current-buffer and string-to-number.
11212 (hfy-fallback-colour-values): Use assoc-string.
11213 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
11214 (hfy-face-at): Remove unused var `found-face'.
11215 (hfy-compile-stylesheet): Remove unused var `css'.
11216 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
11217 and `orig-buffer'.
11218 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
11219 Use with-current-buffer.
11220 (hfy-text-p): Use expand-file-name and fewer setq.
11221
11222 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
11223
11224 * htmlfontify.el, hfy-cmap.el: New files.
11225
11226 2009-11-19 Juri Linkov <juri@jurta.org>
11227
11228 * minibuffer.el (completions-format): New defcustom.
11229 (completion--insert-strings): Implement vertical format.
11230
11231 * simple.el (switch-to-completions): Move point to the first
11232 completion when point was at the beginning of the buffer.
11233
11234 2009-11-19 Juri Linkov <juri@jurta.org>
11235
11236 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
11237
11238 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
11239
11240 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
11241
11242 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
11243 (mail-signature): Change default to t.
11244 (mail-from-style): Deprecate `system-default' value.
11245 (mail-insert-from-field): For default value of mail-from-style,
11246 default to `angles' unless `angles' needs quoting and `parens'
11247 does not.
11248 (mail-citation-prefix-regexp): Use citation regexp from
11249 message-mode.
11250
11251 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
11252
11253 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
11254 Set variables for computing the prompt for reading password.
11255
11256 2009-11-19 Glenn Morris <rgm@gnu.org>
11257
11258 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
11259
11260 * textmodes/flyspell.el (sgml-lexical-context): Declare.
11261
11262 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
11263 (newsticker-treeview-listwindow-height): Fix custom type.
11264
11265 2009-11-19 Kenichi Handa <handa@m17n.org>
11266
11267 * descr-text.el (describe-char-padded-string): Compose with TAB
11268 only if there's a font for CH.
11269 (describe-char): Fix the condition for detecting a trivial composition.
11270
11271 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
11272
11273 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
11274 more accurate version of the regexp. (Bug#3910)
11275
11276 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
11277
11278 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
11279
11280 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
11281
11282 * font-setting.el (font-use-system-font): Declare for byte-compiler.
11283 (font-setting-change-default-font): Fix typo in docstring.
11284
11285 2009-11-18 Alan Mackenzie <acm@muc.de>
11286
11287 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
11288
11289 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11290
11291 * font-setting.el (font-use-system-font): Move ...
11292
11293 * cus-start.el (all): ... to here.
11294
11295 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
11296
11297 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
11298 Don't set `ad-return-value' if `ad-do-it' doesn't.
11299
11300 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
11301 modification time.
11302
11303 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11304
11305 * menu-bar.el: Put "Use system font" in Option-menu.
11306 (menu-bar-options-save): Add font-use-system-font.
11307
11308 * loadup.el: If feature system-font-setting or font-render-setting is
11309 there, load font-setting.
11310
11311 * Makefile.in (ELCFILES): Add font-settings.el.
11312 * font-setting.el: New file.
11313
11314 2009-11-17 Glenn Morris <rgm@gnu.org>
11315
11316 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
11317
11318 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
11319 Preserve point in the list buffer. (Bug#4939)
11320 Use point-at-eol.
11321 (newsticker--treeview-list-update-highlight)
11322 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
11323
11324 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
11325
11326 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
11327 Remove.
11328
11329 * calc/calc-ext.el (calc-init-extensions): Remove references to
11330 symclip.
11331
11332 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
11333
11334 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
11335 * calc/calc-help.el (calc-b-prefix-help): Remove references to
11336 `calc-symclip'.
11337
11338 2009-11-16 Kevin Ryde <user42@zip.com.au>
11339
11340 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
11341 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
11342
11343 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
11344 (lm-keywords-list): Allow comma-only separator like "foo,bar".
11345 Ignore trailing spaces by omit-nulls to split-string (fixing
11346 regression from Emacs 21 due to the incompatible split-string
11347 change). (Bug #4928.)
11348
11349 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
11350
11351 * vc.el (vc-log-show-limit): Default to 2000.
11352 (vc-print-log-internal): Insert buttons to request more entries
11353 when limiting the output.
11354
11355 * vc-sccs.el (vc-sccs-print-log):
11356 * vc-rcs.el (vc-rcs-print-log):
11357 * vc-cvs.el (vc-cvs-print-log):
11358 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
11359 LIMIT is non-nil.
11360
11361 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
11362
11363 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
11364 error when `tramp-gvfs-dbus-event-vector' is set.
11365 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
11366
11367 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
11368
11369 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
11370
11371 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
11372
11373 * net/dbus.el (dbus-unregister-service): New defun.
11374 (dbus-register-property): Register the handlers of
11375 "org.freedesktop.DBus.Properties" for SERVICE.
11376 (dbus-property-handler): Fix docstring.
11377
11378 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11379
11380 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
11381 Quote doc string reference in defvaralias as it is not in special form.
11382 (byte-compile-output-docform): Doc fix.
11383
11384 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
11385
11386 * calc/calc.el (math-2-word-size, math-half-2-word-size)
11387 (calc-complement-signed-mode): New variables.
11388 (calc-set-mode-line): Add indicator for twos-complements.
11389 (math-format-number): Format twos-complement notation.
11390
11391 * calc/calc-bin.el (calc-word-size): Reset the variables
11392 `math-2-word-size' and `math-half-2-word-size'.
11393 (math-format-complement-signed, math-symclip, calcFunc-symclip)
11394 (calc-symclip): New functions.
11395
11396 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
11397
11398 * calc/calc-embed.el (calc-embedded-mode-vars):
11399 Add `calc-complement-signed-mode' to the list of modes.
11400
11401 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
11402 (calc-b-oper-keys): Add `calc-symclip' to list.
11403
11404 * calc/calc-ext.el (math-read-number-fancy): Read complement
11405 signed numbers.
11406 (calc-init-extensions): Add binding for `calc-symclip'.
11407 Add autoload for `calcFunc-symclip' and `calc-symclip'.
11408
11409 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
11410 `calc-symclip'.
11411 (calc-modes-menu): Add item for twos complement mode.
11412
11413 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
11414
11415 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
11416
11417 * register.el (jump-to-register, insert-register): Handle Semantic
11418 tags. From commented-out advice in semantic/senator.el.
11419
11420 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
11421
11422 * vc.el (vc-log-show-limit): New variable.
11423 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
11424 when using a prefix argument.
11425 (vc-print-log-internal): Add new argument LIMIT.
11426
11427 * vc-svn.el (vc-svn-print-log):
11428 * vc-mtn.el (vc-mtn-print-log):
11429 * vc-hg.el (vc-hg-print-log):
11430 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
11431 pass it to the log command when set. Make the BUFFER argument
11432 non-optional.
11433
11434 * vc-sccs.el (vc-sccs-print-log):
11435 * vc-rcs.el (vc-rcs-print-log):
11436 * vc-git.el (vc-git-print-log):
11437 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
11438 ignore it. Make the BUFFER argument non-optional
11439
11440 * bindings.el (mode-line-buffer-identification): Do not purecopy.
11441
11442 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
11443
11444 * dired.el (dired-mode-map): Move encryption items to "Operate"
11445 menu (Bug#4703).
11446
11447 * strokes.el (strokes-update-window-configuration): Make strokes
11448 buffer current before erasing (Bug#4906).
11449
11450 2009-11-15 Juri Linkov <juri@jurta.org>
11451
11452 * simple.el (set-mark-default-inactive): Add :type, :group
11453 and :version. (Bug#4876)
11454
11455 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
11456
11457 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
11458 (archive-unique-fname): ... here. (Bug#4929)
11459
11460 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
11461
11462 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
11463 with a real fix.
11464
11465 * novice.el (disabled-command-function): Add useful args.
11466 Setup the help buffer so that [back] works.
11467 Remove redundant call to help-mode.
11468 (disabled-command-function): Use `case'.
11469 (en/disable-command): New function extracted from enable-command.
11470 (enable-command, disable-command): Use it.
11471
11472 2009-11-14 Glenn Morris <rgm@gnu.org>
11473
11474 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
11475 constants. (Bug#4913)
11476
11477 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
11478
11479 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
11480
11481 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
11482 defined in C that have no doc-strings. (Bug#1063)
11483
11484 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
11485
11486 * cus-edit.el (data, files):
11487 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
11488
11489 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
11490
11491 * simple.el (shell-command): Doc fix (Bug#4891).
11492
11493 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
11494
11495 2009-11-14 Glenn Morris <rgm@gnu.org>
11496
11497 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
11498 statements for vc-diff, emerge-quit, and rmail-cease-edit.
11499 If they are already loaded, eval-after-load will do the right thing.
11500
11501 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
11502 compiling.
11503
11504 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
11505
11506 * simple.el (x-selection-owner-p): Declare.
11507 (read-mail-command): Use custom radio type rather than choice.
11508 (completion-no-auto-exit): Doc fix.
11509
11510 * custom.el (defgroup):
11511 * epg-config.el (epg): Doc fixes.
11512
11513 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
11514
11515 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
11516 * international/ccl.el (define-ccl-program): Do not purecopy the
11517 docstring, defconst does it anyway.
11518
11519 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
11520
11521 * add-log.el (add-change-log-entry): Avoid displaying the changelog
11522 a second time.
11523
11524 * x-dnd.el (x-dnd-maybe-call-test-function):
11525 * window.el (split-window-vertically):
11526 * whitespace.el (whitespace-help-on):
11527 * vc-rcs.el (vc-rcs-consult-headers):
11528 * userlock.el (ask-user-about-lock-help)
11529 (ask-user-about-supersession-help):
11530 * type-break.el (type-break-force-mode-line-update):
11531 * time-stamp.el (time-stamp-conv-warn):
11532 * terminal.el (te-set-output-log, te-more-break, te-filter)
11533 (te-sentinel, terminal-emulator):
11534 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
11535 (term-write-input-ring, term-check-source, term-start-output-log):
11536 (term-display-buffer-line, term-dynamic-list-completions):
11537 (term-ansi-make-term, serial-term):
11538 * subr.el (selective-display):
11539 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
11540 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
11541 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
11542 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
11543 (speedbar-remove-localized-speedbar-support)
11544 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
11545 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
11546 (speedbar-buffers-line-directory):
11547 * simple.el (shell-command-on-region, append-to-buffer)
11548 (prepend-to-buffer):
11549 * shadowfile.el (shadow-save-todo-file):
11550 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
11551 (scroll-bar-maybe-set-window-start):
11552 * sb-image.el (speedbar-image-dump):
11553 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
11554 (load-save-place-alist-from-file):
11555 * ps-samp.el (ps-print-message-from-summary):
11556 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
11557 (ps-background-image, ps-begin-job, ps-do-despool):
11558 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
11559 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
11560 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
11561 (pr-call-process, pr-file-list, pr-interface-save):
11562 * novice.el (disabled-command-function)
11563 (enable-command, disable-command):
11564 * mouse.el (mouse-buffer-menu-alist):
11565 * mouse-copy.el (mouse-kill-preserving-secondary):
11566 * macros.el (kbd-macro-query):
11567 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
11568 * informat.el (batch-info-validate):
11569 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
11570 * hippie-exp.el (try-expand-dabbrev-visible):
11571 * help-mode.el (help-make-xrefs):
11572 * help-fns.el (describe-variable):
11573 * generic-x.el (bat-generic-mode-run-as-comint):
11574 * finder.el (finder-mouse-select):
11575 * find-dired.el (find-dired-sentinel):
11576 * filesets.el (filesets-file-close):
11577 * files.el (list-directory):
11578 * faces.el (list-faces-display, describe-face):
11579 * facemenu.el (list-colors-display):
11580 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
11581 * epg.el (epg--process-filter, epg-cancel):
11582 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
11583 (epa--read-signature-type):
11584 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
11585 (emerge-file-names):
11586 * ehelp.el (electric-helpify):
11587 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
11588 * ediff-vers.el (rcs-ediff-view-revision):
11589 * ediff-util.el (ediff-setup):
11590 * ediff-mult.el (ediff-append-custom-diff):
11591 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
11592 (ediff-wordify):
11593 * echistory.el (Electric-command-history-redo-expression):
11594 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
11595 * disp-table.el (describe-display-table):
11596 * dired.el (dired-find-buffer-nocreate):
11597 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
11598 * dabbrev.el (dabbrev--same-major-mode-p):
11599 * chistory.el (list-command-history):
11600 * apropos.el (apropos-documentation):
11601 * allout.el (allout-obtain-passphrase):
11602 (allout-copy-exposed-to-buffer):
11603 (allout-verify-passphrase): Use with-current-buffer.
11604
11605 2009-11-13 Glenn Morris <rgm@gnu.org>
11606
11607 * Makefile.in (ELCFILES): Regenerate.
11608
11609 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
11610
11611 * net/dbus.el (dbus-registered-objects-table): Rename from
11612 `dbus-registered-functions-table', because it contains also properties.
11613 (dbus-unregister-object): Unregister also properties.
11614 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
11615 Use a timeout of 500 msec, in order to not block.
11616 (dbus-register-property, dbus-property-handler): New defuns.
11617
11618 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
11619
11620 * simple.el (minibuffer-default-add-completions): Drop deprecated
11621 4th arg.
11622
11623 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
11624
11625 * textmodes/artist.el (artist-mouse-choose-operation):
11626 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
11627 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
11628 (artist-compute-up-event-key): New function.
11629 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
11630
11631 2009-11-13 Kenichi Handa <handa@m17n.org>
11632
11633 * language/japan-util.el: Make sure that the value of jisx0208
11634 property is jisx0208 character.
11635
11636 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
11637
11638 * international/mule.el (auto-coding-regexp-alist): Only purecopy
11639 car or each item, not the whole list.
11640
11641 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
11642
11643 * minibuffer.el (minibuffer-completion-help):
11644 Use minibuffer-hide-completions.
11645
11646 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
11647
11648 * dired.el (dired-save-positions, dired-restore-positions): New funs.
11649 (dired-revert): Use them (bug#4880).
11650
11651 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
11652
11653 * tooltip.el (tooltip-frame-parameters): Undo previous change.
11654
11655 2009-11-12 Juri Linkov <juri@jurta.org>
11656
11657 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
11658 New functions.
11659 (find-file-literally-at-point): Alias of `ffap-literally'.
11660
11661 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
11662
11663 * textmodes/ispell.el (ispell-skip-region-alist):
11664 * textmodes/css-mode.el (auto-mode-alist):
11665 * progmodes/compile.el (auto-mode-alist):
11666 * international/mule.el (ctext-non-standard-encodings-alist)
11667 (ctext-non-standard-encodings-regexp):
11668 * simple.el (shell-command-switch, text-read-only):
11669 * replace.el (occur-mode-map):
11670 * paths.el (rmail-file-name):
11671 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
11672 * find-file.el (ff-special-constructs):
11673 * files.el (file-name-handler-alist):
11674 * composite.el: Purecopy strings.
11675
11676 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
11677
11678 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
11679
11680 * widget.el (define-widget): Purecopy the docstring.
11681 * international/mule-cmds.el (charset): Do not purecopy the
11682 docstring here, define-widget does it.
11683
11684 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
11685 * textmodes/bibtex-style.el (auto-mode-alist):
11686 * progmodes/inf-lisp.el (inferior-lisp-prompt):
11687 * progmodes/compile.el (compile-command):
11688 * language/korea-util.el (default-korean-keyboard):
11689 * international/mule-conf.el (file-coding-system-alist):
11690 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
11691 * tooltip.el (tooltip-frame-parameters):
11692 * newcomment.el (comment-end, comment-padding):
11693 * dired.el (dired-trivial-filenames):
11694 * comint.el (comint-file-name-prefix): Purecopy initial values.
11695
11696 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
11697
11698 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
11699 (tramp-advice-minibuffer-electric-tilde): Unload advices via
11700 `tramp-unload'.
11701 (tramp-advice-make-auto-save-file-name)
11702 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
11703 after removing the advice.
11704
11705 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
11706
11707 * progmodes/grep.el (grep-regexp-alist):
11708 * international/mule-cmds.el (iso-2022-control-alist):
11709 * emacs-lisp/timer.el (timer-duration-words):
11710 * subr.el (version-separator, version-regexp-alist):
11711 * minibuffer.el (completion-styles-alist):
11712 * faces.el (face-attribute-name-alist, list-faces-sample-text):
11713 Change defvars to defconsts.
11714
11715 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
11716 * loadup.el ("international/mule-conf"): Load the byte compiled version.
11717 * international/mule-conf.el: Allow to be byte compiled.
11718
11719 * international/mule.el (define-charset): Purecopy props.
11720 (load-with-code-conversion): Purecopy doc string and file name.
11721 (put-charset-property): Purecopy strings.
11722 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
11723
11724 * international/mule-cmds.el (register-input-method): Purecopy arguments.
11725 (define-char-code-property): Correctly purecopy the table.
11726
11727 * international/ccl.el (define-ccl-program): Purecopy the docstring.
11728
11729 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
11730
11731 * subr.el (add-hook): Purecopy strings.
11732 (eval-after-load): Purecopy load-history-regexp and the form.
11733
11734 * custom.el (custom-declare-group): Purecopy load-file-name.
11735
11736 * subr.el (menu-bar-separator): New defconst.
11737 * net/eudc.el (eudc-tools-menu):
11738 * international/mule-cmds.el (set-coding-system-map)
11739 (mule-menu-keymap):
11740 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
11741 * vc-hooks.el (vc-menu-map):
11742 * replace.el (occur-mode-map):
11743 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
11744 (menu-bar-edit-menu, menu-bar-goto-menu)
11745 (menu-bar-custom-menu, menu-bar-showhide-menu)
11746 (menu-bar-options-menu, menu-bar-tools-menu)
11747 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
11748 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
11749 (menu-bar-help-menu):
11750 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
11751 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
11752
11753 * term/x-win.el (x-gtk-stock-map):
11754 * progmodes/vera-mode.el (auto-mode-alist):
11755 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
11756 (inferior-lisp-program, inferior-lisp-load-command):
11757 * progmodes/hideshow.el (hs-special-modes-alist):
11758 * progmodes/gud.el (same-window-regexps):
11759 * progmodes/grep.el (grep-program, find-program, xargs-program):
11760 * net/telnet.el (same-window-regexps):
11761 * net/rlogin.el (same-window-regexps):
11762 * language/ethiopic.el (font-ccl-encoder-alist):
11763 * vc-sccs.el (vc-sccs-master-templates):
11764 * vc-rcs.el (vc-rcs-master-templates):
11765 * subr.el (cl-assertion-failed):
11766 * simple.el (next-error-overlay-arrow-position):
11767 * lpr.el (lpr-command):
11768 * locate.el (locate-ls-subdir-switches):
11769 * info.el (same-window-regexps, info)
11770 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
11771 * image-mode.el (image-mode, auto-mode-alist):
11772 * hippie-exp.el (hippie-expand-ignore-buffers):
11773 * format.el (format-alist):
11774 * find-dired.el (find-ls-subdir-switches, find-grep-options)
11775 (find-name-arg):
11776 * facemenu.el (facemenu-keybindings):
11777 * dired.el (dired-listing-switches, dired-chown-program):
11778 * diff.el (diff-switches, diff-command):
11779 * cus-edit.el (same-window-regexps):
11780 * bindings.el (mode-line-mule-info)
11781 (mode-line-buffer-identification): Purecopy strings.
11782
11783 2009-11-11 Juri Linkov <juri@jurta.org>
11784
11785 * simple.el (dired-get-filename) <declare-function>:
11786 Tell the byte-compiler about dired-get-filename.
11787 (shell-command): In Dired mode, get filename from the current line
11788 as the default value.
11789
11790 2009-11-10 Glenn Morris <rgm@gnu.org>
11791
11792 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
11793 * calendar/holidays.el, progmodes/cperl-mode.el:
11794 Update x-popup-menu declarations.
11795
11796 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
11797 (list-load-path-shadows): Use dolist.
11798 (list-load-path-shadows): Use with-current-buffer.
11799
11800 2009-11-10 Juri Linkov <juri@jurta.org>
11801
11802 * minibuffer.el (read-file-name): Support a list of default values
11803 in `default-filename'. Use the first file name where only one
11804 element is required. Doc fix.
11805
11806 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
11807
11808 * net/dbus.el (dbus-unregister-object): Release service, if no
11809 other method is registered for it.
11810
11811 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
11812
11813 * bookmark.el (bookmark-completing-read): Sort bookmark names if
11814 bookmark-sort-flag is non-nil (Bug#4653).
11815
11816 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
11817
11818 * emulation/cua-base.el: Add CUA property to some CC mode commands
11819 (Bug#4100).
11820
11821 2009-11-08 Kevin Ryde <user42@zip.com.au>
11822
11823 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
11824 at end of sentence (Bug#4818).
11825
11826 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
11827
11828 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11829 Handle "see declaration of" MSFT statements (Bug#4100).
11830
11831 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
11832
11833 * net/tramp.el (tramp-advice-make-auto-save-file-name)
11834 (tramp-advice-file-expand-wildcards): Unload via
11835 `ad-remove-advice'.
11836
11837 * net/trampver.el: Update release number.
11838
11839 2009-11-08 Kevin Ryde <user42@zip.com.au>
11840
11841 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
11842 `ad-do-it'.
11843
11844 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
11845
11846 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
11847 in order to keep context in SELinux.
11848
11849 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
11850
11851 * dired-aux.el (dired-query): Place cursor in echo area and allow
11852 C-g.
11853
11854 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
11855 menu item if not on a directory (Bug#4701).
11856
11857 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
11858
11859 Sync with Tramp 2.1.17.
11860
11861 * net/tramp.el (tramp-handle-copy-directory): Don't use
11862 `file-remote-p' (due to compatibility).
11863
11864 * net/tramp-compat.el (tramp-compat-copy-directory)
11865 (tramp-compat-delete-directory): New defuns.
11866
11867 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
11868 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
11869 `tramp-compat-delete-directory'.
11870
11871 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
11872 (tramp-smb-handle-delete-directory): Use
11873 `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
11874
11875 * net/trampver.el: Update release number.
11876
11877 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
11878
11879 * tar-mode.el (tar-copy): Call write-region on the right buffer
11880 (Bug#4857).
11881
11882 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
11883 by hand, if necessary (Bug#4878).
11884
11885 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
11886
11887 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
11888 align size column (Bug#4839).
11889
11890 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
11891 statement.
11892
11893 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
11894
11895 * progmodes/ld-script.el (auto-mode-alist):
11896 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
11897
11898 * cus-face.el (custom-declare-face): Purecopy face spec.
11899
11900 2009-11-06 Kenichi Handa <handa@m17n.org>
11901
11902 * international/uni-bidi.el: Re-generated.
11903 * international/uni-category.el: Re-generated.
11904 * international/uni-combining.el: Re-generated.
11905 * international/uni-mirrored.el: Re-generated.
11906
11907 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
11908
11909 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
11910 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
11911 (tex-start-options, slitex-run-command, latex-run-command)
11912 (tex-run-command, tex-directory):
11913 * textmodes/ispell.el (ispell-html-skip-alists)
11914 (ispell-tex-skip-alists, ispell-tex-skip-alists):
11915 * textmodes/fill.el (adaptive-fill-first-line-regexp):
11916 (adaptive-fill-regexp):
11917 * textmodes/dns-mode.el (auto-mode-alist):
11918 * progmodes/python.el (interpreter-mode-alist):
11919 * progmodes/etags.el (tags-compression-info-list):
11920 * progmodes/etags.el (tags-file-name):
11921 * net/browse-url.el (browse-url-galeon-program)
11922 (browse-url-firefox-program):
11923 * mail/sendmail.el (mail-signature-file)
11924 (mail-citation-prefix-regexp):
11925 * international/mule-conf.el (eight-bit):
11926 * international/latexenc.el (latex-inputenc-coding-alist):
11927 * international/fontset.el (x-pixel-size-width-font-regexp):
11928 * emacs-lisp/warnings.el (warning-type-format):
11929 * emacs-lisp/trace.el (trace-buffer):
11930 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
11931 (emacs-lisp-mode-map):
11932 * calendar/holidays.el (holiday-solar-holidays)
11933 (holiday-bahai-holidays, holiday-islamic-holidays)
11934 (holiday-christian-holidays, holiday-hebrew-holidays)
11935 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
11936 (hebrew-holidays-1, holiday-oriental-holidays)
11937 (holiday-general-holidays):
11938 * x-dnd.el (x-dnd-known-types):
11939 * tool-bar.el (tool-bar):
11940 * startup.el (site-run-file):
11941 * shell.el (shell-dumb-shell-regexp):
11942 * rfn-eshadow.el (file-name-shadow-tty-properties)
11943 (file-name-shadow-properties):
11944 * paths.el (remote-shell-program, news-directory):
11945 * mouse.el ([C-down-mouse-3]):
11946 * menu-bar.el (menu-bar-tools-menu):
11947 * jka-cmpr-hook.el (jka-compr-load-suffixes)
11948 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
11949 (jka-compr-compression-info-list):
11950 * isearch.el (search-whitespace-regexp):
11951 * image-file.el (image-file-name-extensions):
11952 * find-dired.el (find-ls-option):
11953 * files.el (directory-listing-before-filename-regexp)
11954 (directory-free-space-args, insert-directory-program)
11955 (list-directory-brief-switches, magic-fallback-mode-alist)
11956 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
11957 (automount-dir-prefix):
11958 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
11959 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
11960 (face-font-registry-alternatives, face-font-registry-alternatives)
11961 (face-font-family-alternatives):
11962 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
11963 (facemenu-foreground-menu, facemenu-face-menu):
11964 * epa-hook.el (epa-file-name-regexp):
11965 * dnd.el (dnd-protocol-alist):
11966 * textmodes/rst.el (auto-mode-alist):
11967 * button.el (default-button): Purecopy strings.
11968
11969 2009-11-06 Glenn Morris <rgm@gnu.org>
11970
11971 * Makefile.in (ELCFILES): Update.
11972
11973 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
11974
11975 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
11976 * emacs-lisp/levents.el: Move to obsolete/levents.el.
11977
11978 * nxml/xsd-regexp.el (xsdre-gen-categories):
11979 * nxml/xmltok.el (xmltok-parse-entity):
11980 * nxml/rng-parse.el (rng-parse-validate-file):
11981 * nxml/rng-maint.el (rng-format-manual)
11982 (rng-manual-output-force-new-line):
11983 * nxml/rng-loc.el (rng-save-schema-location-1):
11984 * nxml/rng-cmpct.el (rng-c-parse-file):
11985 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
11986 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
11987
11988 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
11989
11990 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
11991 Remove extra save-excursions and make-variable-buffer-local's.
11992 Suggested by Stefan Monnier.
11993
11994 (verilog-getopt-file, verilog-module-inside-filename-p)
11995 (verilog-set-define): Merge GNU 1.35 and repair changes from
11996 switching to using with-current-buffer.
11997
11998 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
11999 being treated as a number and confusing AUTORESET.
12000 Reported by Dan Dever.
12001
12002 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
12003 Add verilog-auto-ignore-concat to fix backward compatibility with
12004 older verilog-modes. Reported by Dan Katz.
12005
12006 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
12007 containing closing anchors "...$".
12008
12009 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
12010 Reported by Wade Smith.
12011
12012 (verilog-batch-execute-func): Comment on function usage.
12013
12014 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
12015
12016 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
12017 for labels.
12018
12019 (verilog-label-re, verilog-calc-1): Support proper indent of named
12020 asserts.
12021
12022 (verilog-backward-token, verilog-basic-complete-re)
12023 (verilog-beg-of-statement, verilog-indent-re): Support proper
12024 indent of the assert statement at the beginning of a block of text.
12025
12026 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
12027 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
12028 tokens as begins.
12029
12030 2009-11-05 Glenn Morris <rgm@gnu.org>
12031
12032 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
12033 Emacs 19. (Bug#1531)
12034 (byte-compile-fix-header): Update for the above change.
12035 Drop test for epoch::version.
12036
12037 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
12038 * cus-dep.el (custom-make-dependencies):
12039 * finder.el (finder-compile-keywords):
12040 Use autoload-rubric's feature argument.
12041
12042 * calendar/diary-lib.el (top-level): Make load behave more like require.
12043
12044 * vc-git.el (vc-git-stash-map): Move definition before use.
12045
12046 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
12047
12048 * custom.el (custom-declare-group): Purecopy standard-value.
12049 (custom-declare-group): Purecopy custom-prefix.
12050
12051 * international/mule.el (load-with-code-conversion):
12052 Call do-after-load-evaluation unconditionally.
12053
12054 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
12055
12056 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
12057
12058 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
12059
12060 2009-11-04 Glenn Morris <rgm@gnu.org>
12061
12062 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
12063 (byte-compile-compatibility): Remove option.
12064 (byte-compile-close-variables, byte-compile-fix-header)
12065 (byte-compile-insert-header, byte-compile-output-docform)
12066 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
12067 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
12068 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
12069 (byte-compile-insert, byte-compile-defun):
12070 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
12071 (byte-defop-compiler19): Remove.
12072 Without byte-compile-compatibility, the 'emacs19-opcode property is not
12073 used by anything. Replace all calls with byte-defop-compiler.
12074
12075 2009-11-04 Juri Linkov <juri@jurta.org>
12076
12077 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
12078 (menu-bar-options-menu): Don't quote the `prop' arg of
12079 `menu-bar-make-mm-toggle'.
12080
12081 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
12082
12083 * calendar/calendar.el (cal-loaddefs):
12084 * calendar/diary-lib.el (diary-loaddefs):
12085 * calendar/holidays.el (hol-loaddefs):
12086 * eshell/esh-module.el (esh-groups): Load rather than require.
12087
12088 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
12089
12090 * calendar/todo-mode.el (todo-add-category): Don't hardcode
12091 point-min==1.
12092 (todo-top-priorities): Only display-buffer when called interactively.
12093 (todo-item-start): Don't save excursion point.
12094 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
12095 (todo-insert-item-here, todo-file-item, todo-remove-item):
12096 Adjust uses of todo-item-start and todo-item-end.
12097
12098 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
12099 (autoload-rubric): Don't use any more.
12100
12101 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
12102 and only put a prop if it is non-nil.
12103
12104 2009-11-03 Juri Linkov <juri@jurta.org>
12105
12106 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
12107 (menu-bar-options-menu): Fix list quoting (Bug#4429).
12108
12109 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
12110 and "Menu" to make top-level menu item visually one unit (like
12111 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
12112 multi-word menu items). Fix :help string for quit-window.
12113
12114 2009-11-03 Glenn Morris <rgm@gnu.org>
12115
12116 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
12117 (byte-compile-file-form-define-abbrev-table)
12118 (byte-compile-file-form-custom-declare-variable)
12119 (byte-compile-variable-ref, byte-compile-defvar):
12120 Whether or not a warning is enabled should only affect whether we issue
12121 the warning, not whether or not we collect the relevant data.
12122 Eg warnings can be turned on and off throughout the course of a file.
12123
12124 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
12125 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
12126
12127 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
12128
12129 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
12130 * play/mpuz.el (mpuz-create-buffer):
12131 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
12132 (lm-print-y,s,noise, lm-print-w0, lm-init):
12133 * play/gomoku.el (gomoku-prompt-for-move):
12134 * play/fortune.el (fortune-in-buffer):
12135 * play/dissociate.el (dissociated-press):
12136 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
12137 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
12138 * mail/supercite.el (sc-eref-show):
12139 * mail/smtpmail.el (smtpmail-send-it):
12140 * mail/rmailsum.el (rmail-summary-next-labeled-message)
12141 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
12142 (rmail-summary-undelete-many, rmail-summary-rmail-update)
12143 (rmail-summary-goto-msg, rmail-summary-expunge)
12144 (rmail-summary-get-new-mail, rmail-summary-search-backward)
12145 (rmail-summary-add-label, rmail-summary-output-menu)
12146 (rmail-summary-output-body):
12147 * mail/rfc822.el (rfc822-addresses):
12148 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
12149 * mail/mailpost.el (post-mail-send-it):
12150 * mail/hashcash.el (hashcash-generate-payment):
12151 * mail/feedmail.el (feedmail-run-the-queue)
12152 (feedmail-queue-send-edit-prompt-help-first)
12153 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
12154 (feedmail-deduce-address-list):
12155 * eshell/esh-ext.el (eshell-remote-command):
12156 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
12157 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
12158 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
12159 (viper-save-string-in-file, viper-valid-marker):
12160 * emulation/viper-keym.el (viper-toggle-key):
12161 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
12162 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
12163 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
12164 * emulation/viper-cmd.el (viper-exec-form-in-vi)
12165 (viper-exec-form-in-emacs, viper-brac-function):
12166 * emulation/viper.el (viper-delocalize-var):
12167 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
12168 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
12169 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
12170 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
12171 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
12172 * emulation/edt.el (edt-electric-helpify):
12173 * emulation/cua-rect.el (cua--rectangle-aux-replace):
12174 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
12175 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
12176 (cua-indent-to-global-mark-column):
12177 * calendar/diary-lib.el (calendar-mark-1):
12178 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
12179 Use with-current-buffer.
12180 * emulation/viper.el (viper-delocalize-var): Use dolist.
12181
12182 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
12183
12184 * comint.el (comint-replace-by-expanded-history-before-point):
12185 Replace !! with the previous input string literally (Bug#1795).
12186
12187 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
12188
12189 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
12190 to be made up of whitespace.
12191
12192 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
12193
12194 * minibuffer.el (read-file-name): Don't use file dialogs for
12195 remote directories (Bug#99).
12196
12197 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
12198
12199 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
12200
12201 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
12202
12203 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
12204 instead of deleting the window or frame.
12205
12206 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
12207
12208 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
12209 Support face colors.
12210
12211 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
12212 New function. Support face colors (Bug#1168).
12213 (tex-common-initialization): Use it.
12214
12215 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
12216 mode allows it (Bug#1168).
12217
12218 2009-10-31 Juri Linkov <juri@jurta.org>
12219
12220 * facemenu.el (list-colors-display): Don't mark buffer as
12221 modified (Bug#3948).
12222
12223 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
12224
12225 * international/mule-diag.el (list-character-sets-1): Minor
12226 message fix (Bug#3526).
12227
12228 * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
12229 face property (Bug#4834).
12230 (etags-list-tags, etags-tags-apropos-additional)
12231 (etags-tags-apropos, tags-select-tags-table): Add follow-link
12232 property.
12233
12234 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
12235 items.
12236
12237 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
12238
12239 * textmodes/two-column.el (2C-split):
12240 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
12241 * textmodes/tex-mode.el (tex-set-buffer-directory):
12242 * textmodes/spell.el (spell-region, spell-string):
12243 * textmodes/reftex.el (reftex-erase-buffer):
12244 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
12245 * textmodes/reftex-toc.el (reftex-toc-promote-action):
12246 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
12247 (reftex-select-item):
12248 * textmodes/reftex-ref.el (reftex-label-info-update)
12249 (reftex-offer-label-menu):
12250 * textmodes/reftex-index.el (reftex-index-change-entry)
12251 (reftex-index-phrases-info):
12252 * textmodes/reftex-global.el (reftex-create-tags-file)
12253 (reftex-save-all-document-buffers, reftex-ensure-write-access):
12254 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
12255 (reftex-view-crossref-from-bibtex):
12256 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
12257 (reftex-extract-bib-entries-from-thebibliography)
12258 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
12259 * textmodes/refbib.el (r2b-capitalize-title):
12260 (r2b-convert-buffer, r2b-help):
12261 * textmodes/page-ext.el (pages-directory)
12262 (pages-directory-goto-with-mouse):
12263 * textmodes/bibtex.el (bibtex-validate-globally):
12264 * textmodes/bib-mode.el (bib-capitalize-title):
12265 * textmodes/artist.el (artist-clear-buffer, artist-system):
12266 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
12267 (local-set-scheme-interaction-buffer, xscheme-process-filter)
12268 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
12269 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
12270 (xscheme-send-control-g-interrupt, xscheme-start-process)
12271 (xscheme-process-sentinel, xscheme-cd):
12272 * progmodes/verilog-mode.el (verilog-read-always-signals)
12273 (verilog-set-define, verilog-getopt-file)
12274 (verilog-module-inside-filename-p):
12275 * progmodes/sh-script.el:
12276 * progmodes/python.el (python-pdbtrack-get-source-buffer)
12277 (python-pdbtrack-grub-for-buffer, python-execute-file):
12278 * progmodes/octave-inf.el (inferior-octave):
12279 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
12280 (idlwave-shell-compile-helper-routines, idlwave-set-local)
12281 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
12282 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
12283 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
12284 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
12285 (idlwave-shell-filter, idlwave-shell-examine-highlight)
12286 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
12287 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
12288 (idlwave-shell-examine-display, idlwave-shell-run-region)
12289 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
12290 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
12291 * progmodes/idlw-help.el (idlwave-help-get-special-help)
12292 (idlwave-help-get-help-buffer):
12293 * progmodes/gud.el (gud-basic-call, gud-find-class)
12294 (gud-tooltip-activate-mouse-motions-if-enabled):
12295 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
12296 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
12297 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
12298 (ebrowse-tags-next-file):
12299 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
12300 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
12301 (ebnf-eps-finish-and-write):
12302 * progmodes/cpp.el (cpp-edit-save):
12303 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
12304 * progmodes/cc-defs.el (c-emacs-features):
12305 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
12306 (antlr-directory-dependencies):
12307 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
12308 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
12309 (ada-find-any-references, ada-make-filename-from-adaname)
12310 (ada-make-body-gnatstub):
12311 * obsolete/rnews.el (news-list-news-groups):
12312 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
12313 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
12314 * net/rcirc.el (rcirc-debug):
12315 * net/newst-treeview.el (newsticker--treeview-list-add-item)
12316 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
12317 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
12318 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
12319 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
12320 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
12321 (newsticker--treeview-list-clear-highlight)
12322 (newsticker--treeview-list-update-highlight)
12323 (newsticker--treeview-list-highlight-start)
12324 (newsticker--treeview-tree-update-highlight)
12325 (newsticker--treeview-get-selected-item)
12326 (newsticker-treeview-mark-list-items-old)
12327 (newsticker--treeview-set-current-node):
12328 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
12329 * net/newst-backend.el (newsticker--get-news-by-funcall)
12330 (newsticker--get-news-by-wget, newsticker--image-get)
12331 (newsticker--image-sentinel):
12332 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
12333 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
12334 (eudc-ph-close-session):
12335 * net/eudc.el (eudc-save-options):
12336 * language/thai-word.el (thai-update-word-table):
12337 * language/japan-util.el (japanese-string-conversion):
12338 * international/titdic-cnv.el (tsang-quick-converter)
12339 (ziranma-converter, ctlau-converter):
12340 * international/mule-cmds.el (describe-language-environment):
12341 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
12342 (skkdic-convert-postfix, skkdic-convert-prefix):
12343 (skkdic-convert-okuri-nasi, skkdic-convert):
12344 * emacs-lisp/re-builder.el (reb-update-overlays):
12345 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
12346 * emacs-lisp/gulp.el (gulp-send-requests):
12347 * emacs-lisp/find-gc.el (trace-call-tree):
12348 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
12349 (eieio-describe-generic):
12350 * emacs-lisp/eieio-base.el (eieio-persistent-read):
12351 * emacs-lisp/edebug.el (edebug-outside-excursion):
12352 * emacs-lisp/debug.el (debugger-make-xrefs):
12353 * emacs-lisp/cust-print.el (custom-prin1-to-string):
12354 * emacs-lisp/chart.el (chart-new-buffer):
12355 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
12356 Use with-current-buffer.
12357 * textmodes/artist.el (artist-system): Don't call
12358 copy-sequence on a fresh string.
12359 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
12360
12361 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
12362
12363 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
12364 is no item to edit. (Bug#4820)
12365 (todo-top-priorities): Restore point and restore narrowing in Todo
12366 buffer. (Bug#4820)
12367
12368 2009-10-31 Glenn Morris <rgm@gnu.org>
12369
12370 * net/ange-ftp.el (top-level): Don't require dired when compiling.
12371 (comint-last-output-start, comint-last-input-start)
12372 (comint-last-input-end): Don't defvar when compiling.
12373 (ange-ftp-process-file): Use bound-and-true-p.
12374
12375 * pcmpl-rpm.el (top-level): Move provide statement to end.
12376 (pcmpl-rpm): Remove unused custom group.
12377
12378 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
12379
12380 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
12381
12382 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
12383 (byte-compile-warnings): Add `constants' as an option.
12384 (byte-compile-callargs-warn, byte-compile-arglist-warn)
12385 (display-call-tree): Update for byte-compile-fdefinition possibly
12386 returning `(macro lambda ...)'. (Bug#4778)
12387 (byte-compile-variable-ref, byte-compile-setq-default):
12388 Respect `constants' member of byte-compile-warnings.
12389
12390 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
12391
12392 * vc-bzr.el (vc-bzr-revision-keywords): New var.
12393 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
12394 to "submit:".
12395
12396 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
12397
12398 * textmodes/ispell.el (ispell-skip-region-alist):
12399 * international/mule-conf.el (eight-bit):
12400 * international/fontset.el (font-encoding-alist):
12401 * startup.el (pure-space-overflow-message):
12402 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
12403 * paths.el (gnus-nntp-service, rmail-spool-directory)
12404 (term-file-prefix):
12405 * files.el (save-some-buffers-action-alist):
12406 * cmuscheme.el (same-window-buffer-names):
12407 * ielm.el (same-window-buffer-names):
12408 * shell.el (same-window-buffer-names):
12409 * mail/sendmail.el (same-window-buffer-names):
12410 * progmodes/inf-lisp.el (same-window-buffer-names):
12411 * bindings.el (mode-line-client)
12412 (mode-line-column-line-number-mode-map):
12413 * language/tibetan.el (tibetan-precomposition-rule-regexp)
12414 (tibetan-precomposed-regexp): Purecopy string arguments.
12415
12416 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12417
12418 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
12419 (calcDigit-nondigit):
12420 * calc/calc-yank.el (calc-copy-to-buffer):
12421 * calc/calc-units.el (calc-invalidate-units-table):
12422 * calc/calc-trail.el (calc-trail-yank):
12423 * calc/calc-store.el (calc-insert-variables):
12424 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
12425 * calc/calc-prog.el (calc-read-parse-table):
12426 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
12427 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
12428 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
12429 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
12430 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
12431 (calc-graph-name, calc-graph-find-command, calc-graph-view)
12432 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
12433 * calc/calc-ext.el (calc-realign):
12434 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
12435 (calc-embedded-finish-edit, calc-embedded-make-info)
12436 (calc-embedded-finish-command, calc-embedded-stack-change):
12437 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
12438
12439 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
12440 shell-dynamic-complete-filename in preference to
12441 comint-dynamic-complete-filename.
12442
12443 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
12444 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
12445 Don't consider whether the display supports colors.
12446 (bookmark-import-new-list): Use dolist.
12447 (bookmark-bmenu-mode-map): Move initialization into declaration.
12448 (bookmark-bmenu-list): Use dolist, simplify.
12449 (bookmark-show-all-annotations): Use save-selected-window and dolist.
12450 (menu-bar-final-items): Use push.
12451
12452 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
12453
12454 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
12455 it works on remote files.
12456 (vc-hg-diff): Don't pass any `--cwd' argument.
12457
12458 2009-10-27 Kevin Ryde <user42@zip.com.au>
12459
12460 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
12461 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
12462 (Further to Bug#3921).
12463
12464 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
12465
12466 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
12467 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
12468 calling `tramp-imap-put-file'. Add file size to the call.
12469 (tramp-imap-get-file-entries): Compute also user name, file size,
12470 and date.
12471 (tramp-imap-handle-insert-directory): Insert uid and gid.
12472 (tramp-imap-handle-file-attributes): Transform uid and gid
12473 according to `id-format'.
12474 (tramp-imap-put-file): New optional parameter SIZE. Encode file
12475 size in header X-Size.
12476
12477 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
12478
12479 * simple.el (transpose-subr): Give clearer error when the mark
12480 is not set. (Bug#4807)
12481
12482 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
12483
12484 * net/tramp.el (tramp-perl-file-truename): New defconst.
12485 Perl code contributed by yary <not.com@gmail.com> (tiny change).
12486 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
12487 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
12488 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
12489
12490 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
12491 Ignore `dired-call-process'.
12492 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
12493
12494 2009-10-26 Julian Scheid <julians37@gmail.com>
12495
12496 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
12497 (tramp-get-remote-readlink): New defun.
12498 (tramp-handle-file-truename): Use it.
12499 (tramp-handle-file-exists-p): Check file-attributes cache, assume
12500 file exists if cache value present.
12501 (tramp-check-cached-permissions): New defun.
12502 (tramp-handle-file-readable-p): Use it.
12503 (tramp-handle-file-writable-p): Likewise.
12504 (tramp-handle-file-executable-p): Likewise.
12505 (tramp-handle-file-name-all-completions): Try using Perl to get
12506 partial completions. When perl not available, combine `cd' and
12507 `ls' into single remote operation and use shell expansion to get
12508 partial remote directory contents. Set `file-exists-p' cache for
12509 directory and any files returned by ls. Change cache handling to
12510 support partial directory contents. Use error message emitted by
12511 remote `cd' or Perl code for local tramp-error.
12512 (tramp-do-copy-or-rename-file-directly): Avoid separate
12513 tramp-send-command-and-check call.
12514 (tramp-handle-process-file): Merge three remote ops into one.
12515 Do not flush all caches when `process-file-side-effects' is set.
12516 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
12517 file-attributes shows uid/gid to be set already.
12518
12519 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
12520
12521 * textmodes/tex-mode.el (tex-dvi-view-command)
12522 (tex-show-queue-command, tex-open-quote):
12523 * progmodes/ruby-mode.el (auto-mode-alist)
12524 (interpreter-mode-alist): Purecopy strings.
12525
12526 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
12527
12528 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
12529 string for the hook, keymap and abbrev table.
12530
12531 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
12532
12533 * x-dnd.el (x-dnd-xdnd-to-action):
12534 * startup.el (fancy-startup-text, fancy-about-text): Change to
12535 defconst from defvar.
12536
12537 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
12538
12539 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
12540 Purecopy initialization strings.
12541
12542 * mail/sendmail.el (mail-header-separator)
12543 (mail-personal-alias-file):
12544 * mail/rmail.el (rmail-default-dont-reply-to-names)
12545 (rmail-ignored-headers, rmail-retry-ignored-headers)
12546 (rmail-highlighted-headers, rmail-secondary-file-directory)
12547 (rmail-secondary-file-regexp):
12548 * files.el (null-device, file-name-invalid-regexp)
12549 (locate-dominating-stop-dir-regexp)
12550 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
12551 (interpreter-mode-alist): Use mapcar instead of mapc.
12552
12553 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
12554
12555 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
12556 (completion-ignored-extensions):
12557 (debug-ignored-errors): Purecopy strings.
12558
12559 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
12560
12561 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
12562 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
12563 (pcomplete--here): Use push.
12564
12565 * subr.el (all-completions): Declare the 4th arg obsolete.
12566
12567 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
12568
12569 * pcomplete.el (pcomplete-unquote-argument-function): New var.
12570 (pcomplete-unquote-argument): New function.
12571 (pcomplete--common-suffix): Always pay attention to case.
12572 (pcomplete--table-subvert): Quote and unquote the text.
12573 (pcomplete--common-quoted-suffix): New function.
12574 (pcomplete-std-complete): Use it and pcomplete-begin.
12575
12576 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
12577 we're inside a dedicated or minibuffer window.
12578
12579 2009-10-24 Karl Fogel <kfogel@red-bean.com>
12580
12581 * bookmark.el: Update documentation, especially documentation
12582 of `bookmark-alist' and of the bookmark file format.
12583 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
12584
12585 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
12586
12587 * mail/emacsbug.el (report-emacs-bug): Clarify that the
12588 keybindings apply to the mail buffer (Bug#4003). Shrink help
12589 window to buffer.
12590
12591 * whitespace.el (whitespace-mode, whitespace-newline-mode)
12592 (global-whitespace-mode, global-whitespace-newline-mode)
12593 (whitespace-toggle-options, global-whitespace-toggle-options):
12594 Doc fix (Bug#3660).
12595
12596 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
12597 of xmltok-start before the end tag was inserted (Bug#2840).
12598
12599 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
12600 patterns that are preceded by an open-paren (Bug#1320).
12601
12602 2009-10-24 Sven Joachim <svenjoac@gmx.de>
12603
12604 * files.el (delete-directory): Delete symlinks to directories with
12605 delete-file (Bug#4739).
12606
12607 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
12608
12609 * vc.el (vc-backend-for-registration): Rename from
12610 vc-get-backend-for-registration. Update callers.
12611
12612 * international/mule-cmds.el (set-language-info-alist):
12613 Purecopy lang-env.
12614 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
12615 (charset): Purecopy the name.
12616 (define-char-code-property): Purecopy string arguments.
12617
12618 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
12619 Purecopy string arguments.
12620
12621 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
12622 * ediff-hook.el (menu-bar-ediff-menu):
12623 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
12624 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
12625
12626 2009-10-24 Glenn Morris <rgm@gnu.org>
12627
12628 * comint.el (comint-dynamic-list-completions):
12629 * term.el (term-dynamic-list-completions): Use choose-completion rather
12630 than obsolete alias mouse-choose-completion.
12631
12632 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
12633 file-cache-choose-completion.
12634 (file-cache-choose-completion): Handle an optional event argument.
12635 (file-cache-mouse-choose-completion): Make it an obsolete alias.
12636
12637 * progmodes/octave-mod.el (octave-complete-symbol):
12638 Use choose-completion if mouse-choose-completion is ever removed.
12639
12640 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
12641 use.
12642
12643 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
12644 compiler.
12645
12646 * vc-hooks.el (vc-responsible-backend): Fix declaration.
12647
12648 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
12649
12650 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
12651 Ignore `pred' now that we receive one.
12652 Handle test-completion specially.
12653
12654 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
12655
12656 * vc.el (vc-responsible-backend): Throw an error if not backend is
12657 found. Remove the REGISTER argument. Move the code dealing with
12658 REGISTER ...
12659 (vc-get-backend-for-registration): ... here. New function.
12660 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
12661 of vc-responsible-backend, pass the file name instead of the
12662 directory name.
12663
12664 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
12665
12666 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
12667 New funs.
12668 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
12669 (pcomplete-comint-setup): Don't modify a global var via
12670 accidental side-effects.
12671 (pcomplete-shell-setup): Adjust call accordingly.
12672 (pcomplete-parse-comint-arguments): Use push.
12673
12674 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
12675
12676 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
12677 Allow uncapitalized info node names (Bug#3921).
12678
12679 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
12680 to the DEBUG file (Bug#3781).
12681
12682 2009-10-23 Jari Aalto <jari.aalto@cante.net>
12683
12684 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
12685 dictionary entry (Bug#4579).
12686
12687 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
12688
12689 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
12690 from `rfn-eshadow-update-overlay-hook' when unloading.
12691 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
12692 "rsyncc". Adjust doc string.
12693 (tramp-temp-buffer-file-name): New buffer-local defvar.
12694 (tramp-handle-insert-file-contents, tramp-handle-write-region):
12695 Keep temporary file when indicated by method ("rsync" and
12696 "rsyncc").
12697 (tramp-handle-write-region): Handle APPEND.
12698 (tramp-delete-temp-file-function): New defun. Added to
12699 `kill-buffer-hook'.
12700
12701 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
12702
12703 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
12704
12705 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
12706
12707 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
12708 (color-name-rgb-alist, tty-standard-colors)
12709 (tty-color-mode-alist): Change to defconst.
12710
12711 * simple.el (mark-inactive): Purecopy message.
12712
12713 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
12714 (global-map, yank-menu):
12715 * textmodes/ispell.el (ispell-menu-map):
12716 * net/eudc.el (eudc-tools-menu):
12717 * international/mule-cmds.el (describe-language-environment-map)
12718 (setup-language-environment-map, set-coding-system-map)
12719 (mule-menu-keymap):
12720 * vc-hooks.el (vc-menu-entry, vc-menu-map):
12721 * replace.el (occur-mode-map):
12722 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
12723
12724 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
12725
12726 * calc/calc.el (math-read-number, math-read-number-simple): Use
12727 `save-match-data'.
12728
12729 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
12730
12731 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
12732 rather than fiddling with global-map bindings, since it should only
12733 affect per-terminal settings.
12734 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
12735
12736 * minibuffer.el (completion-table-with-terminator): Allow to specify
12737 the terminator-regexp.
12738
12739 * simple.el (switch-to-completions): Look for *Completions* in other
12740 frames as well.
12741
12742 * pcomplete.el: Allow the use of completion-tables.
12743 (pcomplete-std-complete): New command.
12744 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
12745 (pcomplete--here): Use a function for `form' rather than an expression,
12746 so it can be byte-compiled.
12747 (pcomplete-here, pcomplete-here*): Adjust accordingly.
12748 Add edebug declaration.
12749 (pcomplete-show-completions): Remove unused var `curbuf'.
12750 (pcomplete-do-complete, pcomplete-stub):
12751 Don't assume `completions' is a list of strings any more.
12752
12753 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
12754
12755 * find-dired.el (find-name-arg): Fix typo in docstring.
12756
12757 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
12758
12759 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
12760 (pcmpl-linux-fs-types): Same, and update to new modules layout.
12761
12762 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
12763 pcomplete-entries.
12764
12765 * comint.el (comint-read-input-ring, comint-write-input-ring)
12766 (comint-substitute-in-file-name)
12767 (comint-dynamic-complete-as-filename)
12768 (comint-dynamic-simple-complete)
12769 (comint-dynamic-list-filename-completions)
12770 (comint-dynamic-list-completions)
12771 (comint-redirect-results-list-from-process): Minor simplifications.
12772
12773 2009-10-21 Kevin Ryde <user42@zip.com.au>
12774
12775 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
12776 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
12777 the first form. And insert a blank line after ";;; Code" since
12778 that's usual style. (Bug#4612)
12779
12780 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
12781
12782 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
12783
12784 * minibuffer.el (completion-table-with-terminator): Properly implement
12785 boundaries, in case `terminator' appears in the suffix.
12786 (completion--embedded-envvar-table): Don't return boundaries if
12787 there's no valid completion. Simplify.
12788 (completion-file-name-table): New completion table extracted from
12789 completion--file-name-table.
12790 (completion--file-name-table): Use it.
12791 (read-file-name-predicate): Declare obsolete.
12792 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
12793 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
12794 completion-file-name-table, and use the `pred' argument.
12795 * files.el (locate-file-completion-table): Use the `pred' arg rather
12796 than read-file-name-predicate.
12797 (abbreviate-file-name): Use \` rather than ^ for BOS.
12798
12799 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
12800
12801 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
12802 vc-responsible-backend to register, it causes problems.
12803
12804 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
12805
12806 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
12807
12808 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
12809
12810 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
12811 (tramp-smb-handle-file-attributes): Use it.
12812 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
12813 (tramp-smb-handle-insert-directory): Use `mapc' rather than
12814 `mapcar'. Use `tramp-smb-get-stat-capability'.
12815 Add `dired-filename' text properties.
12816 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
12817 (tramp-smb-maybe-open-connection): Simplify check for smbclient
12818 version.
12819
12820 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
12821
12822 * subr.el (read-key-delay): Reduce to 0.01.
12823 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
12824 (bug#4751).
12825
12826 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
12827
12828 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
12829
12830 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
12831 (Info-menu): Remove unused vars `last' and `completions'.
12832 (Info-index-nodes): Remove unused var `node'.
12833
12834 * info.el (Info-complete-menu-item): Use complete-with-action.
12835
12836 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
12837
12838 Make vc-annotate work through copies and renames.
12839 * vc-annotate.el (vc-annotate-extract-revision-at-line):
12840 Return the file name too.
12841 (vc-annotate-revision-at-line)
12842 (vc-annotate-find-revision-at-line)
12843 (vc-annotate-revision-previous-to-line)
12844 (vc-annotate-show-log-revision-at-line): Update to get the file
12845 name from vc-annotate-extract-revision-at-line.
12846 (vc-annotate-show-diff-revision-at-line-internal): Change the
12847 argument to mean whether to show a file diff or not. Get the file
12848 name from vc-annotate-extract-revision-at-line.
12849 (vc-annotate-show-diff-revision-at-line):
12850 Update vc-annotate-show-diff-revision-at-line call.
12851 (vc-annotate-warp-revision): Add an optional file argument.
12852
12853 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
12854 (vc-git-annotate-extract-revision-at-line): Also return the file
12855 name if found.
12856
12857 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
12858 command. Remove unused code.
12859 (vc-hg-annotate-re): Update to match --follow output.
12860 (vc-hg-annotate-extract-revision-at-line): Also return the file
12861 name if found.
12862
12863 * vc.el: Update annotate-extract-revision-at-line documentation.
12864
12865 2009-10-18 Kevin Ryde <user42@zip.com.au>
12866
12867 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
12868 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
12869
12870 * net/browse-url.el (browse-url): Identify alist with "consp and
12871 not functionp" and let all other things go down the `apply' leg,
12872 as suggested by Stefan. (Further to bug#4531.)
12873
12874 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
12875
12876 * minibuffer.el (read-file-name): Check for repeat before putting
12877 a default argument in file-name-history (Bug#4657).
12878
12879 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
12880 read syntax (Bug#4737).
12881
12882 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
12883
12884 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
12885
12886 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
12887 (html-tag-alist, html-tag-help): Add descriptions for undocumented
12888 entries and make note of obsolete tags.
12889
12890 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
12891
12892 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
12893
12894 2009-10-18 Glenn Morris <rgm@gnu.org>
12895
12896 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
12897 grep, so that binary files (eg international/uni-bidi.el) can match.
12898 Remove test for "UnicodeData" files, since it is hopefully unnecessary
12899 now, and in any case the file header format has changed.
12900
12901 2009-10-17 Glenn Morris <rgm@gnu.org>
12902
12903 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
12904 (flyspell-get-word, flyspell-large-region)
12905 (flyspell-auto-correct-previous-word): Doc/error message fixes.
12906
12907 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
12908
12909 * Makefile.in (ELCFILES): Add ede/shell.
12910
12911 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
12912
12913 * term/common-win.el (x-colors): Purecopy it.
12914
12915 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
12916
12917 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
12918 permissive for when the buffer is empty.
12919 (tar-header-block-tokenize): Decode the username and groupname.
12920 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
12921
12922 2009-10-17 Eric Ludlam <zappo@gnu.org>
12923
12924 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
12925 contains multibyte characters, choose first applicable coding
12926 system automatically.
12927
12928 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
12929
12930 * international/mule-cmds.el (select-safe-coding-system): If the file
12931 has a coding cookie, use it regardless of any other setting (bug#4712).
12932
12933 2009-10-17 Glenn Morris <rgm@gnu.org>
12934
12935 * foldout.el (foldout-mouse-swallow-events):
12936 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
12937
12938 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
12939 (dired-keep-marker-copy, dired-keep-marker-hardlink)
12940 (dired-keep-marker-symlink, dired-dwim-target)
12941 (dired-copy-preserve-time): Do not autoload these defcustoms.
12942
12943 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
12944 messages from messing up the file coding. (Bug#4623)
12945
12946 2009-10-17 Jari Aalto <jari.aalto@cante.net>
12947
12948 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
12949 if no match is found for the current dictionary. (Bug#4578)
12950
12951 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
12952 optional, since that is how it is documented, and this is often called
12953 with a nil argument. (Bug#4577)
12954 (flyspell-external-point-words, flyspell-auto-correct-word)
12955 (flyspell-correct-word-before-point, flyspell-word-search-forward)
12956 (flyspell-word-search-backward): Remove nil argument in calls to
12957 flyspell-get-word, since it is not needed now.
12958
12959 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
12960
12961 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
12962
12963 2009-10-16 Glenn Morris <rgm@gnu.org>
12964
12965 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
12966
12967 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
12968
12969 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
12970 (ange-ftp-file-size): New function.
12971 (ange-ftp-file-attributes): Use it.
12972
12973 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
12974
12975 * net/tramp-smb.el (tramp-smb-version): New defvar.
12976 (tramp-smb-maybe-open-connection): Use it, in order to avoid
12977 repeated checks.
12978
12979 2009-10-16 Glenn Morris <rgm@gnu.org>
12980
12981 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
12982 Maybe copy some custom properties from old to new name. (Bug#4706)
12983
12984 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
12985
12986 * subr.el (error, sit-for, start-process-shell-command)
12987 (start-file-process-shell-command): Set the calling convention
12988 after the function definition.
12989
12990 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
12991
12992 * subr.el (error, sit-for, start-process-shell-command)
12993 (start-file-process-shell-command): Use the new
12994 set-advertised-calling-convention feature.
12995
12996 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
12997
12998 * international/ucs-normalize.el (ucs-normalize-version):
12999 Change to 1.2.
13000 (check-range): Adjust for Unicode 5.2.
13001
13002 2009-10-15 Juri Linkov <juri@jurta.org>
13003
13004 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
13005 to the `menu-item' format.
13006
13007 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
13008
13009 * net/tramp.el (tramp-replace-environment-variables): Do not fail
13010 if the environment variable does not exist.
13011
13012 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
13013 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
13014 parameter.
13015 (tramp-smb-handle-add-name-to-file)
13016 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
13017 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
13018 (tramp-smb-handle-file-attributes)
13019 (tramp-smb-do-file-attributes-with-stat)
13020 (tramp-smb-handle-file-local-copy)
13021 (tramp-smb-handle-insert-directory)
13022 (tramp-smb-handle-make-directory)
13023 (tramp-smb-handle-make-directory-internal)
13024 (tramp-smb-handle-make-symbolic-link)
13025 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
13026 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
13027 (tramp-smb-maybe-open-connection): Apply the changed parameters.
13028 (tramp-smb-read-file-entry): Read Disk names in compressed format.
13029 Handle long file names.
13030 (tramp-smb-get-cifs-capabilities): Check, whether the connection
13031 process is running.
13032 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
13033 Read share names with "-g" option.
13034
13035 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
13036
13037 * net/rcirc.el (rcirc-view-log-file): New command.
13038 (rcirc-track-minor-mode-map): Remove C-c ` binding.
13039 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
13040 specified.
13041
13042 2009-10-15 Glenn Morris <rgm@gnu.org>
13043
13044 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
13045 from the second command-line argument.
13046 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
13047 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
13048 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
13049 w32-batch-update-autoloads.
13050 * emacs-lisp/autoload.el (autoload-make-program): New variable.
13051 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
13052
13053 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
13054 the headers cannot be located. Simplify, subtracting superflous
13055 save-excursions.
13056
13057 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
13058
13059 Replace completion-base-size by completion-base-position to fix bugs
13060 such as (bug#4699).
13061 * simple.el (completion-base-position): New var.
13062 (completion-base-size): Mark as obsolete.
13063 (choose-completion): Make it work for mouse events as well.
13064 Pass the new base-position to choose-completion-string.
13065 (choose-completion-guess-base-position): New function, extracted from
13066 choose-completion-delete-max-match.
13067 (choose-completion-delete-max-match): Use it. Make obsolete.
13068 (choose-completion-string): Use the new base-position info.
13069 (completion-root-regexp): Delete.
13070 (completion-setup-function): Preserve completion-base-position.
13071 Eliminate obsolete base-size manipulation.
13072 * minibuffer.el (display-completion-list): Don't mess with base-size.
13073 (minibuffer-completion-help): Set completion-base-position instead.
13074 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
13075 choose-completion.
13076 * textmodes/bibtex.el (bibtex-complete):
13077 * emacs-lisp/crm.el (crm--choose-completion-string):
13078 Adjust to new calling convention.
13079 * complete.el (partial-completion-mode): Use minibufferp to avoid
13080 bumping into incompatible change to choose-completion-string-functions.
13081 * ido.el (ido-choose-completion-string): Make its calling convention
13082 more permissive.
13083 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
13084 base-size manipulation.
13085 (comint-dynamic-list-input-ring): Use dotimes and push.
13086 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
13087 fundamental-mode. Use `or'.
13088
13089 2009-10-14 Juri Linkov <juri@jurta.org>
13090
13091 * misearch.el (multi-isearch-next-buffer-from-list)
13092 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
13093
13094 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13095
13096 * Makefile.in (compile-onefile): Load `bytecomp' rather than
13097 `bytecomp.el'.
13098
13099 * minibuffer.el (completion-pcm--merge-completions): Make sure the
13100 string we return is all made up of text from the completions rather
13101 than part from the completions and part from the input (bug#4219).
13102
13103 * ido.el (ido-everywhere): Use define-minor-mode.
13104
13105 * buff-menu.el (list-buffers, ctl-x-map):
13106 Mark the entry points with ;;;###autoload cookies.
13107
13108 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
13109
13110 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
13111 correctly in the detached head case.
13112 (vc-git-print-log): Remove unused binding.
13113
13114 * vc.el (vc-responsible-backend): When a directory is passed for
13115 for registration create a VC repository if no backend is
13116 responsible for the directory argument.
13117 (vc-deduce-fileset): Tell vc-responsible-backend to register.
13118
13119 * vc.el: Move comments about RCS and SCCS ...
13120 * vc-rcs.el:
13121 * vc-sccs.el: ... here, respectively.
13122
13123 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13124
13125 * minibuffer.el (completion--file-name-table): Return nil if there's
13126 no file completion, even if substitute-in-file-name changed
13127 the string (bug#4708).
13128
13129 2009-10-13 Juri Linkov <juri@jurta.org>
13130
13131 * files-x.el (read-file-local-variable-value): Don't filter out
13132 minor modes from mode name completion (bug#4664).
13133
13134 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
13135
13136 * international/mule-cmds.el (ucs-names): Remove exclusion of
13137 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
13138
13139 2009-10-13 Kenichi Handa <handa@m17n.org>
13140
13141 * international/uni-name.el: Regenerated.
13142
13143 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
13144
13145 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
13146 should be automatically buffer-local, but isn't.)
13147
13148 2009-10-12 Sam Steingold <sds@gnu.org>
13149
13150 * progmodes/compile.el (compilation-next-error-function): Fix the
13151 timestamps if the buffer has been visited before.
13152 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
13153 non-anchored patterns, like the perl one (bug#3928).
13154
13155 2009-10-12 Glenn Morris <rgm@gnu.org>
13156
13157 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
13158 Let-bind `size'.
13159
13160 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
13161
13162 * proced.el (proced-unload-function): New function.
13163
13164 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
13165 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
13166 Doc fix.
13167
13168 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
13169
13170 2009-10-11 Juri Linkov <juri@jurta.org>
13171
13172 * files-x.el (read-file-local-variable-value):
13173 Provide default value only for bound variables (bug#4664).
13174
13175 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
13176
13177 * net/tramp.el (tramp-local-host-p): Function shall return nil for
13178 connection methods like smb.
13179
13180 * net/tramp-cache.el (tramp-flush-connection-property): The hash
13181 can be empty.
13182
13183 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
13184 (tramp-smb-file-name-handler-alist): Add handlers for
13185 `add-name-to-file', `make-symbolic-link'.
13186 (tramp-smb-handle-add-name-to-file)
13187 (tramp-smb-do-file-attributes-with-stat)
13188 (tramp-smb-handle-make-symbolic-link)
13189 (tramp-smb-get-cifs-capabilities): New defuns.
13190 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
13191 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
13192 (tramp-smb-handle-file-local-copy)
13193 (tramp-smb-handle-make-directory-internal)
13194 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
13195 The file name syntax depends on cifs capabilities.
13196 (tramp-smb-handle-file-attributes):
13197 Call `tramp-smb-do-file-attributes-with-stat' if possible.
13198 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
13199 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
13200
13201 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
13202
13203 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
13204 (eieio-defclass): Apply deftype handler and setf-method properties
13205 directly.
13206 (eieio-add-new-slot): Avoid union function from cl library.
13207 (eieio--typep): New function.
13208 (eieio-perform-slot-validation): Use it.
13209
13210 2009-10-10 Karl Fogel <kfogel@red-bean.com>
13211
13212 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
13213 Update documentation to refer to the variables documented in r1.135.
13214 (Bug#4188)
13215
13216 2009-10-10 Karl Fogel <kfogel@red-bean.com>
13217
13218 * bookmark.el (Info-suffix-list): Remove this unused variable.
13219 (bookmark-current-point): Remove this obsolete variable.
13220 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
13221 Adjust for removal of bookmark-current-point.
13222
13223 (bookmarks-already-loaded, bookmark-current-buffer)
13224 (bookmark-yank-point): Document. (Bug#4188)
13225
13226 2009-10-10 Glenn Morris <rgm@gnu.org>
13227
13228 * frame.el (frame-height): Doc fix.
13229
13230 * calendar/calendar.el (calendar-split-width-threshold): New option.
13231 (calendar-basic-setup): Use calendar-split-width-threshold.
13232
13233 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
13234
13235 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
13236 Ideographic Supplement" range (U+1F200..U+1F2FF).
13237
13238 2009-10-09 Karl Fogel <kfogel@red-bean.com>
13239
13240 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
13241 since the list will have been rebuilt anyway. (Bug#4349)
13242
13243 2009-10-09 Karl Fogel <kfogel@red-bean.com>
13244
13245 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
13246 (bookmark-bmenu-execute-deletions): Don't save here, as
13247 bookmark-delete will now do so if necessary.
13248 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
13249 (Bug#4348)
13250
13251 2009-10-09 Glenn Morris <rgm@gnu.org>
13252
13253 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
13254
13255 2009-10-09 Karl Fogel <kfogel@red-bean.com>
13256
13257 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
13258 (bookmark-jump-other-window): Just invoke bookmark-jump with new
13259 argument now, so the two function's behaviors will match. (Bug#3645)
13260
13261 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
13262
13263 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
13264 (tramp-file-name-real-host, tramp-file-name-port):
13265 Apply `save-match-data'.
13266
13267 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
13268 case both directories are remote.
13269 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
13270 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
13271
13272 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
13273
13274 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
13275
13276 2009-10-07 Glenn Morris <rgm@gnu.org>
13277
13278 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
13279 of concat.
13280
13281 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
13282
13283 * files-x.el (read-file-local-variable): Include some
13284 non-user-variables in the completion table (bug#4664).
13285
13286 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
13287
13288 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
13289 message.
13290
13291 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
13292 (tramp-smb-file-name-handler-alist): Add handler for
13293 `copy-directory', `expand-file-name', `set-file-modes'.
13294 (tramp-smb-handle-copy-directory)
13295 (tramp-smb-handle-expand-file-name)
13296 (tramp-smb-handle-set-file-modes): New defuns.
13297 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
13298 (tramp-smb-handle-file-attributes): Simplify check for retrieving
13299 entry.
13300 (tramp-smb-handle-insert-directory): Don't flush the cache.
13301 (tramp-smb-maybe-open-connection): Check for samba client and
13302 server versions.
13303
13304 2009-10-07 Eli Zaretskii <eliz@gnu.org>
13305
13306 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
13307 to not error out of search for "^lisp=" fails.
13308
13309 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
13310
13311 * makefile.w32-in (WINS_UPDATES): New macro.
13312 (custom-deps, finder-data, autoloads): Use it.
13313
13314 2009-10-07 Glenn Morris <rgm@gnu.org>
13315
13316 * Makefile.in (autoloads): Revert previous change.
13317 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
13318 the list of preloaded files passed on the command-line, get
13319 it from src/Makefile.
13320
13321 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
13322 show the original buffer rather than a random one.
13323
13324 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
13325
13326 * help.el (describe-no-warranty): Place point in a slightly better
13327 position in the GPLv3 text.
13328
13329 2009-10-06 Sam Steingold <sds@gnu.org>
13330
13331 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
13332 the comm attribute is present before calling regexp-quote.
13333
13334 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
13335
13336 * play/animate.el (animate-string): For good effect, make sure
13337 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
13338
13339 * play/animate.el (animate-sequence, animate-birthday-present):
13340 * misc.el (butterfly): Don't set `indent-tabs-mode'.
13341
13342 2009-10-06 Glenn Morris <rgm@gnu.org>
13343
13344 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
13345
13346 * emacs-lisp/autoload.el (autoload-excludes): New variable.
13347 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
13348 (batch-update-autoloads): Process a string value of autoload-excludes,
13349 set during the build process.
13350 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
13351
13352 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
13353 inside with-parsed... macro so that `v' is defined.
13354
13355 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
13356 * progmodes/fortran.el (fortran-end-of-block)
13357 (fortran-beginning-of-block):
13358 Also push mark in the macro case.
13359
13360 * emerge.el (emerge-show-file-name):
13361 * calc/calc.el (calc-quit):
13362 * calc/calc-misc.el (calc-big-or-small):
13363 * calc/calc-graph.el (calc-graph-view):
13364 * calc/calc-ext.el (calc-reset):
13365 * calendar/calendar.el (calendar-basic-setup):
13366 Use window-full-height-p.
13367
13368 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
13369 header we don't understand, don't insert another. (Bug#4624)
13370 If changing mime charset, insert the new one in the right place.
13371
13372 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
13373
13374 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
13375 (cal-tex-cursor-month): Correctly increment the end date for diary and
13376 holiday listing. (Bug#4626)
13377
13378 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13379
13380 * help-fns.el (describe-function-1): Don't burp if the function is not
13381 a symbol.
13382
13383 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
13384
13385 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
13386 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
13387 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
13388 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
13389
13390 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
13391 (eieio-default-superclass): Reflow docstrings.
13392 (this, class-option-assoc, defclass, eieio-class-un-autoload)
13393 (eieio-unbind-method-implementations, defmethod)
13394 (eieio-validate-slot-value, eieio-validate-class-slot-value)
13395 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
13396 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
13397 (eieio-slot-originating-class-p, eieio-slot-name-index)
13398 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
13399 (constructor, initialize-instance, no-next-method, object-print)
13400 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
13401 Fix typos in docstrings.
13402 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
13403 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
13404 (next-method-p): Doc fixes.
13405 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
13406 Fix typos in error messages.
13407 (eieio-defmethod): Fix typo in description of generic method.
13408
13409 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
13410 (eieio-persistent-save-interactive, slot-missing):
13411 Fix typos in docstrings.
13412 (eieio-instance-inheritor-slot-boundp): Doc fix.
13413
13414 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
13415 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
13416
13417 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
13418 (eieio-custom-object-apply-reset):
13419 Fix typos in docstrings and error messages.
13420
13421 * emacs-lisp/eieio-datadebug.el (data-debug-show):
13422 Fix typo in docstring.
13423
13424 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
13425 (eieio-browse-tree): Doc fix.
13426 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
13427 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
13428 Fix typos in docstrings.
13429
13430 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
13431 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
13432 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
13433 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
13434 Reflow docstrings.
13435
13436 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
13437
13438 * vc-hg.el (log-view-vc-backend): Declare for compiler.
13439 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
13440 Set log-view-vc-backend so that diff can work.
13441
13442 * log-view.el (log-view-diff): Use vc-diff-internal instead of
13443 vc-version-diff.
13444 (vc-diff-internal): Autoload this instead of vc-version-diff.
13445
13446 2009-10-05 Eli Zaretskii <eliz@gnu.org>
13447
13448 * simple.el (eval-expression): Doc fix.
13449
13450 * progmodes/cwarn.el (cwarn-mode): Doc fix.
13451
13452 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
13453
13454 * files.el (directory-files-no-dot-files-regexp): New defconst.
13455 (delete-directory): Use it.
13456 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
13457
13458 * net/tramp.el (tramp-verbose): Fix docstring.
13459 (tramp-methods): Add recursive option to `tramp-copy-args'.
13460 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
13461 "scp1_old", "scp2_old", "rsync", "rsyncc".
13462 (tramp-default-method): Check also for `auth-source-user-or-password'.
13463 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
13464 Add handler for `copy-directory'.
13465 (tramp-handle-copy-directory): New defun.
13466 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
13467 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
13468 Optimize sent command.
13469
13470 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13471
13472 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
13473 window if necessary.
13474
13475 * calendar/calendar.el (calendar-basic-setup): Don't call
13476 switch-to-buffer in a dedicated window.
13477
13478 2009-10-05 Karl Fogel <kfogel@red-bean.com>
13479
13480 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
13481 don't do anything related to relocating, just return nil.
13482 (bookmark-error-no-filename): New error.
13483 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
13484 bookmark has no file. Don't even attempt to handle things that
13485 are not files; the whole point of custom handlers is to keep that
13486 knowledge elsewhere anyway. Tighten some comments.
13487 (bookmark-file-or-variation-thereof): Remove now-unused function.
13488 (bookmark-location): Doc string fix.
13489 (Bug#4250)
13490
13491 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13492
13493 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
13494 don't use a file dialog, because they usually don't know how to read
13495 a directory target from the user. (Bug#4230)
13496 Also, make sure the prompt can display directories as well as files.
13497
13498 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13499
13500 * bookmark.el (bookmark-set, bookmark-buffer-name):
13501 Improve doc strings. (Bug#1193)
13502
13503 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13504
13505 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
13506 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
13507 (bookmark-get-annotation, bookmark-set-annotation)
13508 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
13509 (bookmark-set-position, bookmark-get-front-context-string)
13510 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
13511 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
13512 (bookmark-jump-other-window, bookmark-handle-bookmark)
13513 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
13514 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
13515 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
13516 Improve doc strings to say whether bookmark can be a string or
13517 a record or both, and make other consistency and clarity fixes.
13518 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
13519 (bookmark-default-annotation-text, bookmark-yank-word)
13520 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
13521 (bookmark-import-new-list, bookmark-maybe-rename)
13522 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
13523 (bookmark-bmenu-bookmark): Give these doc strings.
13524 (bookmark-bmenu-check-position): Give this a doc string, but also
13525 add a FIXME comment about how the function may be pointless.
13526 (bookmark-default-handler): Rework doc string and change a
13527 parameter name, to clarify that this takes a bookmark record
13528 not a bookmark name.
13529 (bookmark-set): Change a parameter name to indicate its meaning,
13530 and improve the doc string a bit.
13531 (Bug#4188)
13532
13533 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13534
13535 * bookmark.el (bookmark-alist): Document the new `handler' element
13536 in the param alist.
13537 (bookmark-make-record-function): Adjust documentation for above.
13538 (Bug#4193)
13539
13540 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13541
13542 * info.el (Info-bookmark-make-record): Document this function.
13543 (Info-bookmark-jump): Document with a doc string, not just a comment.
13544 (Bug#4203)
13545
13546 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
13547
13548 * files.el (copy-directory): New defun.
13549
13550 * dired-aux.el (dired-copy-file-recursive): Use it.
13551
13552 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
13553
13554 * files-x.el (modify-dir-local-variable)
13555 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
13556 docstrings.
13557
13558 * recentf.el (recentf-unload-function): New function.
13559
13560 2009-10-04 Glenn Morris <rgm@gnu.org>
13561
13562 * window.el (window-full-height-p): Add doc string.
13563
13564 2009-10-04 Martin Rudalics <rudalics@gmx.at>
13565
13566 * window.el (window-full-height-p): New function. (Bug#4543)
13567
13568 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
13569
13570 * vc.el: Remove commented out code.
13571 (vc-derived-from-dir-mode): Remove, unused.
13572 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
13573
13574 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
13575
13576 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
13577 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
13578 there could be recursive loading when `default-directory' is a
13579 remote file name. (Bug#4614)
13580
13581 2009-10-03 Glenn Morris <rgm@gnu.org>
13582
13583 * calendar/calendar.el (calendar-basic-setup): Handle the case where
13584 the frame is wide.
13585 (calendar-generate-window): Test for shrinkability rather than width.
13586
13587 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
13588 reusing existing buffers, in case we happen to visit two files with the
13589 same basename. (Bug#4593)
13590
13591 2009-10-02 Eli Zaretskii <eliz@gnu.org>
13592
13593 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
13594 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
13595 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
13596 subdirs of cedet as well.
13597 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
13598
13599 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
13600
13601 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
13602 Obey advertised-signature-table.
13603
13604 * help-fns.el (help-function-arglist): Don't check
13605 advertised-signature-table.
13606 (describe-function-1): Do it here instead so it also applies to subrs.
13607
13608 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
13609
13610 * simple.el (start-file-process): Say in the doc-string, that file
13611 handlers might not support pty association, if PROGRAM is nil.
13612
13613 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
13614 HOST and USER are strings. They are nil, when there are
13615 incomplete entries in ~/.netrc, for example.
13616 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
13617 root directory ("device busy" error otherwise).
13618
13619 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
13620 Flush file properties of created directory.
13621
13622 2009-10-02 Eli Zaretskii <eliz@gnu.org>
13623
13624 * makefile.w32-in (WINS_BASIC): Remove cedet.
13625 (WINS_CEDET): Add cedet.
13626 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
13627
13628 2009-10-02 Kevin Ryde <user42@zip.com.au>
13629
13630 * net/browse-url.el (browse-url): Pass any symbol in
13631 browse-url-browser-function to `apply', since if you've mistakenly put
13632 an unbound symbol then the error is clearer. (Bug#4531)
13633
13634 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
13635
13636 * allout.el (allout-init, allout-back-to-current-heading)
13637 (allout-beginning-of-current-entry, allout-ascend-to-depth)
13638 (allout-ascend, allout-up-current-level, allout-end-of-level)
13639 (allout-previous-visible-heading, allout-forward-current-level)
13640 (allout-backward-current-level, allout-show-children):
13641 * apropos.el (apropos-describe-plist):
13642 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
13643 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
13644 * completion.el (add-completion, add-permanent-completion):
13645 * descr-text.el (describe-text-category, describe-char):
13646 * desktop.el (desktop-lazy-abort):
13647 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
13648 * dired.el (dired-build-subdir-alist):
13649 * ediff.el (ediff-version):
13650 * elide-head.el (elide-head, elide-head-show):
13651 * emerge.el (emerge-version):
13652 * env.el (getenv):
13653 * face-remap.el (variable-pitch-mode):
13654 * faces.el (describe-face):
13655 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
13656 (dired-at-point):
13657 * files.el (find-file-existing, auto-save-mode):
13658 * font-lock.el (font-lock-fontify-buffer):
13659 * help-fns.el (describe-function, describe-variable)
13660 (describe-syntax, describe-categories):
13661 * help.el (view-lossage, describe-bindings, describe-key)
13662 (describe-mode):
13663 * hexl.el (hexl-current-address):
13664 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
13665 * info.el (Info-goto-emacs-key-command-node):
13666 * log-edit.el (log-edit-insert-cvs-template)
13667 (log-edit-insert-cvs-rcstemplate):
13668 * menu-bar.el (menu-bar-mode):
13669 * mouse.el (mouse-appearance-menu):
13670 * newcomment.el (comment-indent-new-line):
13671 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
13672 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
13673 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
13674 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
13675 * recentf.el (recentf-mode):
13676 * savehist.el (savehist-mode, savehist-save):
13677 * shadowfile.el (shadow-copy-files):
13678 * simple.el (kill-ring-save, next-line, previous-line)
13679 (normal-erase-is-backspace-mode):
13680 * strokes.el (strokes-update-window-configuration)
13681 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
13682 (strokes-xpm-for-stroke):
13683 * time.el (emacs-uptime, emacs-init-time):
13684 * tutorial.el (tutorial--describe-nonstandard-key)
13685 (tutorial--detailed-help):
13686 * type-break.el (type-break-mode)
13687 (type-break-mode-line-message-mode, type-break-query-mode)
13688 (type-break-guesstimate-keystroke-threshold):
13689 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
13690 * version.el (emacs-version):
13691 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
13692 * winner.el (winner-mode):
13693 * calendar/timeclock.el (timeclock-in, timeclock-out)
13694 (timeclock-status-string, timeclock-change)
13695 (timeclock-workday-remaining-string)
13696 (timeclock-workday-elapsed-string)
13697 (timeclock-when-to-leave-string):
13698 * calendar/todo-mode.el (todo-add-category):
13699 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
13700 * emacs-lisp/autoload.el (update-file-autoloads):
13701 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
13702 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
13703 (checkdoc-message-text, checkdoc-defun):
13704 * emacs-lisp/debug.el (debugger-list-functions):
13705 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
13706 * emacs-lisp/eieio-opt.el (eieio-describe-class)
13707 (eieio-describe-generic):
13708 * emacs-lisp/lisp-mnt.el (lm-synopsis):
13709 * emacs-lisp/shadow.el (list-load-path-shadows):
13710 * emulation/cua-base.el (cua-mode):
13711 * emulation/edt.el (edt-set-scroll-margins):
13712 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
13713 (tpu-toggle-regexp, tpu-toggle-search-direction)
13714 (tpu-toggle-rectangle, tpu-toggle-control-keys):
13715 * emulation/tpu-extras.el (tpu-set-scroll-margins):
13716 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
13717 (viper-set-parsing-style-toggling-macro)
13718 (viper-set-emacs-state-searchstyle-macros):
13719 * emulation/viper.el (viper-set-hooks):
13720 * eshell/esh-mode.el (eshell-truncate-buffer):
13721 * international/mule-cmds.el (prefer-coding-system)
13722 (describe-input-method, describe-language-environment):
13723 * international/mule-diag.el (list-character-sets)
13724 (describe-character-set, describe-coding-system)
13725 (describe-fontset, list-fontsets, list-input-methods):
13726 * mail/sendmail.el (mail-signature):
13727 * net/ange-ftp.el (ange-ftp-copy-file):
13728 * net/browse-url.el (browse-url):
13729 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
13730 * net/quickurl.el (quickurl-add-url):
13731 * net/rcirc.el (names, topic):
13732 * net/xesam.el (xesam-mode):
13733 * play/5x5.el (5x5-new-game):
13734 * play/yow.el (apropos-zippy):
13735 * progmodes/ada-mode.el (ada-mode-version):
13736 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
13737 (f90-end-of-block)
13738 (f90-beginning-of-block):
13739 * progmodes/fortran.el (fortran-end-of-block)
13740 (fortran-beginning-of-block):
13741 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
13742 * progmodes/python.el (python-describe-symbol, python-shell):
13743 * term/ns-win.el (ns-print-buffer):
13744 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
13745 * textmodes/flyspell.el (flyspell-mode-on):
13746 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
13747 (pages-directory-for-addresses):
13748 * textmodes/table.el (table-recognize-cell)
13749 (table-query-dimension, table-generate-source)
13750 (table-insert-sequence, table--warn-incompatibility):
13751 * textmodes/tex-mode.el (tex-validate-buffer):
13752 * textmodes/texinfmt.el (texinfmt-version)
13753 (texinfo-format-buffer):
13754 Use `called-interactively-p' instead of `interactive-p'.
13755
13756 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
13757
13758 * image-mode.el (image-toggle-display):
13759 * emacs-lisp/elp.el (elp-instrument-function):
13760 * emacs-lisp/advice.el (ad-make-advised-definition):
13761 * emacs-lisp/easy-mmode.el (define-minor-mode):
13762 * net/browse-url.el (browse-url-maybe-new-window):
13763 * progmodes/sh-script.el (sh-learn-buffer-indent):
13764 Pass new argument 'any to `called-interactively-p'.
13765
13766 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
13767
13768 * international/uni-bidi.el:
13769 * international/uni-category.el:
13770 * international/uni-combining.el:
13771 * international/uni-comment.el:
13772 * international/uni-decimal.el:
13773 * international/uni-decomposition.el:
13774 * international/uni-digit.el:
13775 * international/uni-lowercase.el:
13776 * international/uni-mirrored.el:
13777 * international/uni-name.el:
13778 * international/uni-numeric.el:
13779 * international/uni-old-name.el:
13780 * international/uni-titlecase.el:
13781 * international/uni-uppercase.el:
13782 Regenerate from Unicode 5.2.0 data.
13783
13784 2009-10-01 Glenn Morris <rgm@gnu.org>
13785
13786 * Makefile.in (ELCFILES): Regenerate.
13787
13788 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
13789
13790 * subr.el (interactive-p): Mark obsolete.
13791 (called-interactively-p): Make the optional-ness of `kind' obsolete.
13792 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
13793 advertised-signature-table for subroutines as well.
13794
13795 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
13796 (set-advertised-calling-convention): New function.
13797 (make-obsolete, define-obsolete-function-alias)
13798 (make-obsolete-variable, define-obsolete-variable-alias):
13799 Make the optional-ness of `when' obsolete.
13800 (define-obsolete-face-alias): Make `when' non-optional.
13801 * help-fns.el (help-function-arglist):
13802 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
13803 Use advertised-signature-table.
13804
13805 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
13806
13807 * files.el (delete-directory): New defun. The original function
13808 in fileio.c has been renamed to `delete-directory-internal'.
13809
13810 * dired.el (dired-delete-file): Call `delete-directory' with
13811 RECURSIVE parameter.
13812
13813 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
13814 parameter RECURSIVE. Implementation is missing.
13815
13816 * net/tramp.el (tramp-handle-make-directory): Flush upper
13817 directory's file properties.
13818 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
13819 (tramp-handle-dired-recursive-delete-directory): Flush directory
13820 properties after the remove command only.
13821
13822 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
13823 Handle optional parameter RECURSIVE.
13824
13825 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
13826 Handle optional parameter RECURSIVE.
13827
13828 * net/tramp-smb.el (tramp-smb-errors): Add error message for
13829 connection timeout.
13830 (tramp-smb-handle-delete-directory): Handle optional parameter
13831 RECURSIVE.
13832
13833 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
13834
13835 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
13836 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
13837 (byte-compile-defmacro): Use backquotes.
13838
13839 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
13840
13841 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
13842 has no associated file.
13843 (vc-resynch-buffer): Use vc-dir-buffers.
13844
13845 2009-10-01 Glenn Morris <rgm@gnu.org>
13846
13847 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
13848 (chart-file-count):
13849 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
13850 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
13851 * emacs-lisp/eieio-opt.el (eieio-describe-class):
13852 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
13853 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
13854 (eieio-copy-parents-into-subclass, make-instance, class-children)
13855 (eieio-generic-form):
13856
13857 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
13858 match-data. (Bug#4555).
13859
13860 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
13861 rather than parsing it as a regexp. This relaxes the layout
13862 requirements and makes errors easier to detect.
13863 (check-declare-verify): Check file is regular.
13864 (check-declare-directory): Doc fix.
13865 * subr.el (declare-function): Doc fix.
13866
13867 * ibuffer.el (ibuffer-format-qualifier):
13868 * isearch.el (hi-lock-regexp-okay):
13869 * calc/calc.el (math-zerop):
13870 * mail/uce.el (rmail-msgbeg, rmail-msgend):
13871 * term/w32-win.el (setup-default-fontset, set-fontset-font):
13872 Remove unused declarations.
13873
13874 2009-09-30 Eric Ludlam <zappo@gnu.org>
13875
13876 * emacs-lisp/eieio.el (boolean-p): Delete.
13877
13878 2009-09-30 Glenn Morris <rgm@gnu.org>
13879
13880 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
13881
13882 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
13883 filename is not a string.
13884
13885 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
13886
13887 * files.el (safe-local-eval-forms): Fix typo.
13888
13889 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
13890
13891 * vc-hooks.el (vc-dir-buffers): New var.
13892 (vc-state-refresh): New function.
13893 (vc-state): Use it.
13894 (vc-after-save): Always ask the backend to recompute the new state.
13895 Always call vc-dir if necessary, using vc-dir-buffers.
13896 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
13897 Use vc-dir-buffers.
13898 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
13899 (vc-dir-prepare-status-buffer, vc-dir-update)
13900 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
13901 Don't call expand-file-name on default-directory.
13902
13903 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
13904
13905 * speedbar.el (speedbar-item-delete):
13906 * calc/calc-prog.el (calc-kbd-if):
13907 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
13908
13909 * epa.el (epa-key-list-mode-map):
13910 * hi-lock.el (hi-lock-menu): Fix typos in menus.
13911
13912 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
13913 (hs-show-hook): Fix typo in docstring.
13914
13915 2009-09-29 Glenn Morris <rgm@gnu.org>
13916
13917 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
13918 file-name-nondirectory call preventing location of cedet files.
13919 (check-declare-verify): Use literal search rather than re-search.
13920 Add basic defmethod and defclass, and define-overloadable-function.
13921
13922 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13923 Use tramp-compat-file-attributes rather than nonexistent
13924 tramp-compat-handle-file-attributes.
13925
13926 * Makefile.in (lisptagsfiles4): New.
13927 (AUTOGENEL): Add cedet loaddefs files.
13928 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
13929 (update-elclist, compile-always, backup-compiled-files)
13930 (bootstrap-clean): Add yet another directory level.
13931 (update-elclist): Use LC_COLLATE rather than COLLATE.
13932 (ELCFILES): Update, via `make update-elclist'.
13933
13934 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
13935
13936 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
13937 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
13938 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
13939
13940 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
13941
13942 * Makefile.in (lisptagsfiles3): Define.
13943 (TAGS, TAGS-LISP): Use it.
13944 (update-elclist): Add third directory level to look for elc files.
13945 (compile-always): Likewise.
13946 (backup-compiled-files): Likewise.
13947 (bootstrap-clean): Likewise.
13948 (ELCFILES): Update.
13949
13950 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
13951
13952 * Makefile.in (ELCFILES): Add CEDET files.
13953
13954 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
13955
13956 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
13957
13958 * net/tramp.el (top): Require tramp-imap.
13959
13960 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13961 Use `tramp-compat-handle-file-attributes'.
13962
13963 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
13964
13965 * net/tramp-imap.el: New package.
13966
13967 2009-09-28 Eric Ludlam <zappo@gnu.org>
13968
13969 * emacs-lisp/chart.el:
13970 * emacs-lisp/eieio-base.el:
13971 * emacs-lisp/eieio-comp.el:
13972 * emacs-lisp/eieio-custom.el:
13973 * emacs-lisp/eieio-datadebug.el:
13974 * emacs-lisp/eieio-opt.el:
13975 * emacs-lisp/eieio-speedbar.el:
13976 * emacs-lisp/eieio.el: New files.
13977
13978 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13979
13980 * whitespace.el (whitespace-trailing-regexp)
13981 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
13982 Fix doc string.
13983
13984 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
13985
13986 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
13987 menu.
13988
13989 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
13990 menu-bar-ediff-menu.
13991
13992 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
13993 define-overloadable-function.
13994
13995 * progmodes/autoconf.el: Provide autoconf as well, so that this
13996 file can be `require'd.
13997
13998 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
13999
14000 * emacs-lisp/autoload.el (generated-autoload-feature)
14001 (generated-autoload-load-name): New vars.
14002 (autoload-rubric, autoload-generate-file-autoloads): Use them.
14003 (make-autoload): Recognize define-overloadable-function and
14004 defclass forms (for EIEIO).
14005
14006 * Makefile.in (update-subdirs): Exclude cedet directory.
14007
14008 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
14009
14010 * term/ns-win.el: Don't set the region face background. (Bug#4381)
14011
14012 * faces.el: Default light-background background for region face to
14013 ns_selection_color under NS.
14014
14015 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
14016
14017 * net/imap-hash.el: New library, see NEWS.
14018
14019 * Makefile.in (ELCFILES): Add imap-hash.el.
14020
14021 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
14022
14023 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
14024 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
14025 * help-macro.el (make-help-screen): Avoid using an ambiguous function
14026 definition where the docstring could be taken for the return value.
14027
14028 2009-09-26 Glenn Morris <rgm@gnu.org>
14029
14030 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
14031 Add option to only show images below a certain size.
14032 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
14033 save-excursion calls.
14034
14035 2009-09-26 Eli Zaretskii <eliz@gnu.org>
14036
14037 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
14038 subdirectories) and eieio.
14039
14040 2009-09-26 Alan Mackenzie <acm@muc.de>
14041
14042 * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
14043 buggy bracketing. (Bug#4289)
14044
14045 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
14046 character constants (as case labels). (Bug#4289)
14047
14048 2009-09-25 Juri Linkov <juri@jurta.org>
14049
14050 * files.el (safe-local-eval-forms): Allow time-stamp in
14051 before-save-hook (Bug#4554).
14052
14053 2009-09-25 Drew Adams <drew.adams@oracle.com>
14054
14055 * menu-bar.el (list-buffers-directory): Doc fix.
14056
14057 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
14058
14059 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
14060 Try and avoid copying twice the same paragraph.
14061 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
14062 Remove save-excursion.
14063 (log-edit-changelog-entry): Do it here instead.
14064
14065 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
14066
14067 * bs.el (bs--get-file-name): Use `list-buffers-directory'
14068 when available, instead of hardcoding mode names. Doc fix.
14069
14070 * menu-bar.el (list-buffers-directory): Add docstring.
14071 Make automatically buffer-local.
14072
14073 * dired.el (dired-mode):
14074 * files.el (cd-absolute):
14075 * pcvs.el (cvs-temp-buffer):
14076 * pcvs-util.el (cvs-get-buffer-create):
14077 * shell.el (shell-mode):
14078 * vc-dir.el (vc-dir-mode):
14079 Don't make `list-buffers-directory' buffer local.
14080
14081 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
14082
14083 * comint.el (comint-exec, comint-run, make-comint):
14084 Doc fixes (Bug#4542).
14085
14086 2009-09-25 Glenn Morris <rgm@gnu.org>
14087
14088 * mail/rmailmm.el (rmail-mime): New custom group.
14089 Move all defcustoms in this file into this group.
14090 (rmail-mime-media-type-handlers-alist): Revert previous change.
14091 (rmail-mime-show-images): New option.
14092 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
14093 references to it, since it wasn't actually used for anything.
14094 (rmail-mime-insert-image): New function.
14095 (rmail-mime-image): Use rmail-mime-insert-image.
14096 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
14097 obey the value of `rmail-mime-show-images' option. Print the size of
14098 attachments.
14099
14100 2009-09-25 David Engster <deng@randomsample.de>
14101
14102 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
14103
14104 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14105
14106 * whitespace.el: Does not highlight trailing spaces While point is
14107 at end of line. Does not highligt spaces at beginning of buffer
14108 while point is at beginning of buffer. Does not highlight spaces
14109 at end of buffer while point is at end of buffer. (Bug#4177)
14110 New version 12.0.
14111 (whitespace-display-mappings): Adjust initialization.
14112 (whitespace-point, whitespace-font-lock-refontify): New vars.
14113 (whitespace-color-on, whitespace-color-off): Adjust code.
14114 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
14115 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
14116 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
14117
14118 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
14119
14120 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
14121
14122 * textmodes/sgml-mode.el: Remove xml-mode alias.
14123
14124 * files.el (auto-mode-alist, conf-mode-maybe)
14125 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
14126
14127 2009-09-24 Alan Mackenzie <acm@muc.de>
14128
14129 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
14130 c-forward-conditionals, but it doesn't move point and doesn't set
14131 the mark.
14132 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
14133 (c-down-conditional-with-else, c-backward-conditional)
14134 (c-forward-conditional): Refactor to use c-scan-conditionals.
14135
14136 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
14137
14138 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
14139 (help-default-arg-highlight): Remove.
14140 (help-highlight-arg): New function.
14141 (help-do-arg-highlight): Use it.
14142 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
14143
14144 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
14145
14146 * term.el (term-set-scroll-region, term-handle-ansi-escape):
14147 Undo last change, which didn't fix the problem and introduced others.
14148
14149 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
14150
14151 * progmodes/gdb-mi.el: Don't require speedbar.
14152 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
14153
14154 2009-09-24 Glenn Morris <rgm@gnu.org>
14155
14156 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
14157
14158 * term/ns-win.el (ns-reg-to-script): Define for compiler.
14159
14160 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
14161 there is no newline after the final mime boundary. (Bug#4539)
14162 Move markers on insertion so that any buttons inserted don't end up in
14163 the next part of a multipart message.
14164 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
14165 (rmail-mime-bulk-handler): Optionally handle images.
14166 (rmail-mime-image): New button action.
14167 (rmail-mime-image-handler): New function.
14168 (rmail-mime-mode): New mode.
14169 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
14170
14171 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
14172
14173 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
14174 than just dropping elements from it (bug#4504).
14175
14176 * term.el (term-set-scroll-region): Don't move cursor any more.
14177 (term-handle-ansi-escape): Call term-goto here instead.
14178 Suggested by Ivan Kanis <apple@kanis.eu>.
14179
14180 * term.el: Require CL.
14181 (term-ansi-reset): New function.
14182 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
14183 (term-handle-colors-array): Simplify.
14184
14185 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
14186
14187 * allout.el (allout-overlay-interior-modification-handler)
14188 (allout-obtain-passphrase):
14189 * epa-file.el (epa-file-write-region):
14190 * ps-print.el (ps-begin-job):
14191 * vc-hooks.el (vc-toggle-read-only):
14192 * vc-rcs.el (vc-rcs-rollback):
14193 * vc-sccs.el (vc-sccs-rollback):
14194 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
14195 (vc-version-diff, vc-revert, vc-rollback):
14196 * wdired.el (wdired-check-kill-buffer):
14197 * emacs-lisp/authors.el (authors):
14198 * net/socks.el (socks-open-connection):
14199 * net/zeroconf.el (zeroconf-service-add-hook):
14200 * obsolete/vc-mcvs.el (vc-mcvs-register):
14201 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
14202 (gdb-select-frame):
14203 * progmodes/grep.el (lgrep, rgrep):
14204 * progmodes/idlw-help.el (idlwave-help-check-locations)
14205 (idlwave-help-html-link, idlwave-help-assistant-open-link):
14206 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
14207 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
14208 (reftex-toc-rename-label): Fix typos in error messages.
14209
14210 * dired-aux.el (dired-do-shell-command): Reflow docstring.
14211 (dired-copy-how-to-fn): Doc fix.
14212 (dired-files-attributes, dired-read-shell-command):
14213 Fix typos in docstrings.
14214
14215 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
14216 (dired-x-find-file-other-window): Reflow docstrings.
14217 (dired-omit-marker-char, dired-read-shell-command)
14218 (dired-x-submit-report): Fix typos in docstrings.
14219
14220 * shell.el (shell-mode-hook):
14221 * view.el (View-scroll-line-forward):
14222 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
14223 Fix typos in docstrings.
14224
14225 * net/dig.el (dig-invoke): Fix typo in docstring.
14226 (query-dig): Reflow docstring.
14227
14228 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
14229 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
14230 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
14231 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
14232 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
14233 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
14234 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
14235 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
14236 (idlwave-completion-map, idlwave-current-indent)
14237 (idlwave-custom-ampersand-surround, idlwave-customize)
14238 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
14239 (idlwave-define-abbrev, idlwave-determine-class-special)
14240 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
14241 (idlwave-end-block-reg, idlwave-end-of-statement)
14242 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
14243 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
14244 (idlwave-explicit-class-listed, idlwave-file-header)
14245 (idlwave-fill-paragraph, idlwave-find-class-definition)
14246 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
14247 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
14248 (idlwave-in-quote, idlwave-indent-action-table)
14249 (idlwave-indent-expand-table, idlwave-indent-line)
14250 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
14251 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
14252 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
14253 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
14254 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
14255 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
14256 (idlwave-outlawed-buffers, idlwave-popup-select)
14257 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
14258 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
14259 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
14260 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
14261 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
14262 (idlwave-statement-type, idlwave-struct-skip)
14263 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
14264 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
14265 (idlwave-what-module-find-class): Fix typos in docstrings.
14266 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
14267 (idlwave-calculate-cont-indent, idlwave-expand-equal)
14268 (idlwave-find-module, idlwave-find-structure-definition)
14269 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
14270 (idlwave-list-load-path-shadows, idlwave-next-statement)
14271 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
14272 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
14273 (idlwave-template): Reflow docstrings.
14274
14275 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
14276 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
14277 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
14278 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
14279 (idlwave-shell-display-line, idlwave-shell-display-wframe)
14280 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
14281 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
14282 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
14283 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
14284 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
14285 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
14286 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
14287 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
14288 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
14289 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
14290 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
14291 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
14292 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
14293 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
14294 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
14295 Fix typos in docstrings.
14296 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
14297 (idlwave-shell-hide-output, idlwave-shell-mode)
14298 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
14299 Reflow docstrings.
14300
14301 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
14302
14303 2009-09-24 Ivan Kanis <apple@kanis.eu>
14304
14305 * term.el (term-bold-attribute): New var.
14306 (term-handle-colors-array): Use it.
14307
14308 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
14309
14310 * progmodes/gdb-mi.el (gdb-version): New variable.
14311 (gdb-non-stop-handler): Set gdb-version.
14312 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
14313 Condition "--thread" option on gdb-version.
14314 (gdb-invalidate-threads): Remove unused argument.
14315
14316 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14317
14318 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
14319 to looking-back to avoid ridiculous slow down in large files (bug#4511).
14320
14321 2009-09-23 Glenn Morris <rgm@gnu.org>
14322
14323 * mail/rmail.el (rmail-reply): Don't try to add a References header when
14324 replying to mail without References or Message-Id. (Bug#4525)
14325
14326 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
14327
14328 * term/ns-win.el (ns-reg-to-script): New variable.
14329
14330 2009-09-23 Daiki Ueno <ueno@unixuser.org>
14331
14332 * epg.el (epg-wait-for-status): Preserve existing 'error results.
14333
14334 2009-09-22 Sam Steingold <sds@gnu.org>
14335
14336 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
14337 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
14338 to 1 because hg returns status 1 when nothing is found.
14339 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
14340
14341 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
14342
14343 * textmodes/fill.el: Convert to utf-8 encoding.
14344 (fill-french-nobreak-p): Remove redundant » and « inherited from our
14345 pre-Unicode days.
14346
14347 * add-log.el (change-log-fill-forward-paragraph): New function.
14348 (change-log-mode): Use it so fill-region DTRT.
14349 Set fill-indent-according-to-mode here rather than in
14350 change-log-fill-paragraph.
14351 (change-log-fill-paragraph): Remove.
14352
14353 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
14354
14355 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
14356 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
14357
14358 2009-09-22 Glenn Morris <rgm@gnu.org>
14359
14360 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
14361 the scroll-bar scroll the calendar window rather than the buffer.
14362
14363 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
14364 commands that move point (as opposed to scrolling).
14365
14366 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
14367
14368 * emacs-lisp/elint.el (elint): New custom group.
14369 (elint-log-buffer): Make it a defcustom.
14370 (elint-scan-preloaded, elint-ignored-warnings)
14371 (elint-directory-skip-re): New options.
14372 (elint-builtin-variables): Doc fix.
14373 (elint-preloaded-env): New variable.
14374 (elint-unknown-builtin-args): Add an entry for encode-time.
14375 (elint-extra-errors): Make it a variable rather than a constant.
14376 (elint-preloaded-skip-re): New constant.
14377 (elint-directory): Skip files matching elint-directory-skip-re.
14378 (elint-features): New variable, local to linted buffers.
14379 (elint-update-env): Initialize elint-features. Possibly add
14380 elint-preloaded-env to the buffer's environment.
14381 (elint-get-top-forms): Bind elint-current-pos, for log messages.
14382 Skip quoted forms.
14383 (elint-init-form): New function, extracted from elint-init-env.
14384 Make non-list forms a warning rather than an error.
14385 Add the mode-map for define-derived-mode. Handle define-minor-mode,
14386 easy-menu-define, put that adds an error-condition, and provide.
14387 When requiring cl, also require cl-macs. Really require cl, to handle
14388 some cl macros. Store required libraries in the list elint-features,
14389 so as not to re-load them. Treat cc-require like require.
14390 (elint-init-env): Call elint-init-form to do the work.
14391 Handle eval-and-compile and such like.
14392 (elint-add-required-env): Do not clear messages.
14393 (elint-special-forms): Add handlers for function, defalias, if, when,
14394 unless, and, or.
14395 (elint-form): Add optional argument to ignore elint-special-forms,
14396 useful to prevent recursive calls from handlers. Doc fix.
14397 Respect elint-ignored-warnings.
14398 (elint-form): Respect elint-ignored-warnings.
14399 (elint-bound-variable, elint-bound-function): New variables.
14400 (elint-unbound-variable): Respect elint-bound-variable.
14401 (elint-get-args): Respect elint-bound-function.
14402 (elint-check-cond-form): Add some simple handling for (f)boundp and
14403 featurep tests.
14404 (elint-check-defalias-form): New handler.
14405 (elint-check-let-form): Make an empty let a warning rather than an
14406 error.
14407 (elint-check-setq-form): Make an empty setq a warning rather than an
14408 error. Respect elint-ignored-warnings.
14409 (elint-check-defvar-form): Accept null doc-strings.
14410 (elint-check-conditional-form): New handler. Does some simple-minded
14411 checking of featurep and (f)boundp tests.
14412 (elint-put-function-args): New function.
14413 (elint-initialize): Use elint-scan-doc-file rather than
14414 elint-find-builtin-variables. Use elint-put-function-args.
14415 Possibly scan preloaded-file-list.
14416 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
14417 extend to handle functions as well.
14418
14419 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
14420
14421 * linum.el (linum-delete-overlays, linum-update-window):
14422 Do not modify the right margin. (Bug#3971)
14423
14424 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
14425
14426 * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
14427 nxml-mode instead of xml-mode.
14428
14429 2009-09-21 Kevin Ryde <user42@zip.com.au>
14430
14431 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
14432
14433 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
14434
14435 * net/dig.el (dig-mode): Use define-derived-mode.
14436
14437 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
14438
14439 * vc-dispatcher.el (vc-do-command): Return the process object in
14440 the asynchronous case. Use when instead of if. Do not run
14441 vc-exec-after to display a message if not enabled. (Bug#4463)
14442
14443 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
14444 properties to the stash strings.
14445 (vc-git-stash-list): Return a list of strings.
14446 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
14447 (vc-git-stash-show-at-point): New functions.
14448 (vc-git-stash-map): New keymap.
14449
14450 * register.el (ctl-x-r-map): Define the keys here instead of
14451 using autoload.
14452
14453 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
14454
14455 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
14456 list, to workaround performance problem (bug#4485).
14457
14458 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
14459
14460 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
14461
14462 2009-09-20 Daiki Ueno <ueno@unixuser.org>
14463
14464 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
14465 Document that this option is not recommended to use.
14466
14467 2009-09-19 Glenn Morris <rgm@gnu.org>
14468
14469 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
14470 variable `var'.
14471
14472 * calc/calc-alg.el (var):
14473 * calc/calcalg2.el (var): Define for compiler.
14474
14475 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
14476
14477 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
14478 Doc fix (Bug#3932).
14479
14480 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
14481
14482 * time-stamp.el (time-stamp-month-dd-yyyy)
14483 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
14484 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
14485 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
14486 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
14487 Remove functions that have been obsolete since 1995 (Bug#4436).
14488
14489 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
14490 indent buffer only if called interactively (Bug#4452).
14491
14492 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
14493 Eli Zaretskii <eliz@gnu.org>
14494
14495 This fixes bug#4197 (merged to bug#865, though not identical).
14496 * server.el (server-auth-dir): Add docstring note about FAT32.
14497 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
14498 but warn against using them.
14499
14500 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
14501
14502 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
14503 older GDB where there is no has_more field.
14504
14505 2009-09-19 Glenn Morris <rgm@gnu.org>
14506
14507 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
14508
14509 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
14510
14511 * files.el (auto-mode-alist): Change default for XML files to nXML
14512 mode (Bug#4169).
14513
14514 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
14515
14516 * server.el (server-ensure-safe-dir): Pass 'integer
14517 to `file-attributes', as suggested.
14518
14519 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
14520
14521 * dired-aux.el (dired-query-alist): Remove spurious backslash.
14522 (dired-query): Use read-key.
14523
14524 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
14525
14526 * cus-start.el (ns-use-qd-smoothing): Remove.
14527
14528 2009-09-18 Glenn Morris <rgm@gnu.org>
14529
14530 * allout.el (top-level): Remove unnecessary progn.
14531
14532 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
14533
14534 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
14535 definition of abbrev table.
14536
14537 * speedbar.el (speedbar-track-mouse):
14538 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
14539 * net/eudc.el (eudc-expand-inline):
14540 * net/newst-backend.el (newsticker--cache-read-feed):
14541 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
14542 condition-case handlers.
14543
14544 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
14545
14546 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
14547 (gdb-var-list): Add an element for has_more field.
14548 (gdb-non-stop-handler): Enable pretty printing for STL containers.
14549 (gdb-var-create-handler, gdb-var-list-children-handler-1)
14550 (gdb-var-update-handler-1): Parse output of dynamic variable
14551 objects (STL containers).
14552 (gdb-var-delete-1): Pass var1 as an explicit second argument.
14553 (gdb-get-field): Delete alias. Use bindat-get-field directly.
14554
14555 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
14556 gdb-var-list.
14557 (gud-speedbar-buttons): Make node expandable if expression "has more"
14558 children.
14559
14560 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
14561
14562 * startup.el (emacs-quick-startup): Remove variable and all uses.
14563 (command-line): Set `inhibit-x-resources' instead.
14564 (command-line-1): Use `inhibit-x-resources' instead.
14565
14566 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
14567
14568 * subr.el: Fix last change to avoid using the `unless' macro,
14569 which breaks bootstrapping.
14570
14571 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
14572
14573 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
14574 extended definitions, in case we reload subr.el after having
14575 loaded CL.
14576 (eval-next-after-load): Mark as obsolete.
14577
14578 2009-09-17 Juri Linkov <juri@jurta.org>
14579
14580 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
14581 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
14582 (menu-bar-showhide-menu, menu-bar-tools-menu)
14583 (menu-bar-describe-menu, menu-bar-help-menu)
14584 (minibuffer-local-completion-map, minibuffer-local-map):
14585 Fix list quoting.
14586
14587 2009-09-17 Glenn Morris <rgm@gnu.org>
14588
14589 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
14590 arguments, whether or not it has a handler.
14591
14592 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
14593
14594 * simple.el (hard-newline): Give it a doc-string.
14595
14596 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
14597 (lisp-mode-syntax-table): Give them doc-strings.
14598
14599 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
14600
14601 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
14602 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
14603 (menu-bar-options-menu, menu-bar-showhide-menu)
14604 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
14605 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
14606 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
14607 (menu-bar-options-menu, menu-bar-tools-menu)
14608 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
14609 (menu-bar-help-menu):
14610 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
14611 string arguments.
14612
14613 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
14614 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
14615 calls for the menu names and :help.
14616
14617 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
14618
14619 * mouse.el (minor-mode-menu-from-indicator): Pay attention
14620 to :minor-mode-function (bug#4455).
14621
14622 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
14623
14624 * startup.el (command-line): Initialize the window-system after
14625 processing the command-line.
14626
14627 * textmodes/page.el (what-page): Make sure we don't inf-loop if
14628 page-delimiter matches the empty string.
14629
14630 2009-09-16 Glenn Morris <rgm@gnu.org>
14631
14632 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
14633 byte-compile-not-obsolete-var. It's a list now.
14634 (byte-compile-not-obsolete-funcs): New variable.
14635 (byte-compile-warn-obsolete): Don't warn about functions if they are in
14636 byte-compile-not-obsolete-funcs.
14637 (byte-compile-variable-ref, byte-compile-defvar): Update for
14638 byte-compile-not-obsolete-vars name-change and list nature.
14639 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
14640 and variables behind (f)boundp tests.
14641 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
14642
14643 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
14644
14645 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
14646
14647 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
14648
14649 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
14650 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
14651 Don't autoload.
14652
14653 2009-09-15 Stephen Eglen <stephen@gnu.org>
14654
14655 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
14656 the virtual-buffers, use the name of the buffer specified by
14657 find-file-noselect, as the match may be a symlink. (This was a
14658 problem if the target and the symlink had different names.)
14659
14660 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
14661
14662 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
14663
14664 * desktop.el (desktop-path): Check user-emacs-directory.
14665
14666 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
14667
14668 * loadup.el: Use after-load-functions to GC after loading each file.
14669 Remove the explicit GC calls that used to be sprinkled around.
14670
14671 * subr.el (after-load-functions): New hook.
14672 (do-after-load-evaluation): Run it. Use string-match-p to detect
14673 `obsolete' packages, rather than painfully extracting the relevant
14674 directory name.
14675
14676 2009-09-15 Glenn Morris <rgm@gnu.org>
14677
14678 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
14679 free variable `doc'.
14680
14681 * dired.el (dired-mode-map): Add menu entry for async shell command.
14682
14683 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
14684 variables, also consider the .elc files, since the .el files are
14685 normally gzipped (subsequent code locates the .el.gz from the .elc).
14686
14687 * calc/calc-prog.el (arglist): Define for compiler.
14688
14689 * calendar/diary-lib.el (diary-display-function): Change the default to
14690 fancy display.
14691 (body): Define for compiler.
14692
14693 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
14694 (byte-compile-file-form, byte-compile-lambda)
14695 (byte-compile-top-level-body, byte-compile-form)
14696 (byte-compile-variable-ref, byte-compile-setq)
14697 (byte-compile-setq-default, byte-compile-body)
14698 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
14699 (batch-byte-compile): Give some more local variables with common names
14700 a "bytecomp-" prefix to avoid masking warnings about free variables.
14701
14702 * startup.el (command-line-1): Give local variables with common names a
14703 distinguishing prefix, so as not to hide free variable warnings during
14704 bootstrap.
14705
14706 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
14707 clever and add a suffix to make a unique name, just let the user decide
14708 whether or not to overwrite it. If the input is a directory, write the
14709 default filename to that directory. (Bug#4388)
14710 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
14711 is a filename-as-a-directory.
14712
14713 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
14714
14715 * textmodes/page.el (what-page): Don't move to beginning of line.
14716 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
14717
14718 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
14719
14720 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
14721
14722 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
14723
14724 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
14725 * help.el (help-for-help-internal): Add purecopy calls for text.
14726
14727 * vc.el (top): print-log method now takes an optional SHORTLOG
14728 argument. Add a new method: root.
14729 (vc-root-diff, vc-print-root-log): New functions.
14730 (vc-log-short-style): New variable.
14731 (vc-print-log-internal): Add support for showing short logs.
14732
14733 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
14734 vc-print-root-log and vc-print-root-diff.
14735
14736 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
14737 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
14738 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
14739 short logs.
14740
14741 * vc-cvs.el (vc-cvs-print-log):
14742 * vc-mtn.el (vc-mtn-print-log):
14743 * vc-rcs.el (vc-rcs-print-log):
14744 * vc-sccs.el (vc-sccs-print-log):
14745 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
14746 that is ignored for now.
14747
14748 * vc-mtn.el (vc-mtn-annotate-command):
14749 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
14750
14751 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
14752
14753 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
14754 to function-key-map, and give them ascii-character property.
14755 * term/x-win.el (x-alternatives-map):
14756 * term/ns-win.el (ns-alternatives-map):
14757 * term/internal.el (msdos-key-remapping-map):
14758 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
14759
14760 2009-09-14 Glenn Morris <rgm@gnu.org>
14761
14762 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
14763 temp-buffers (2009-09-12).
14764
14765 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
14766
14767 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
14768 the new read-key function.
14769
14770 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
14771
14772 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
14773 is defined (Bug#4405).
14774
14775 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
14776
14777 * recentf.el (recentf-cleanup): Use a hash table to find
14778 duplicates (Bug#4407).
14779
14780 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
14781
14782 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
14783 kp-0 to ascii equivalents (Bug#4325).
14784
14785 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
14786
14787 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
14788
14789 * eshell/em-hist.el:
14790 * eshell/em-dirs.el (eshell-complete-user-reference):
14791 Declare pcomplete functions and variables to avoid compiler warnings.
14792
14793 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
14794
14795 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
14796 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
14797 * eshell/em-alias.el (eshell-aliases-file):
14798 * eshell/em-hist.el (eshell-history-file-name):
14799 Use expand-file-name instead of concat to make file names (Bug#4308).
14800
14801 2009-09-13 Glenn Morris <rgm@gnu.org>
14802
14803 * ediff-merg.el (ediff-do-merge):
14804 * filesets.el (filesets-run-cmd):
14805 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
14806 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
14807 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
14808 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
14809 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
14810 Replace empty `let's with `progn'.
14811
14812 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
14813
14814 * mail/sendmail.el (send-mail-function):
14815 * tooltip.el (tooltip-mode):
14816 * simple.el (transient-mark-mode):
14817 * rfn-eshadow.el (file-name-shadow-mode):
14818 * frame.el (blink-cursor-mode):
14819 * font-core.el (global-font-lock-mode):
14820 * files.el (temporary-file-directory)
14821 (small-temporary-file-directory, auto-save-file-name-transforms):
14822 * epa-hook.el (auto-encryption-mode):
14823 * composite.el (global-auto-composition-mode):
14824 Use custom-initialize-delay.
14825 * startup.el (command-line): Don't explicitly call
14826 custom-reevaluate-setting for all the above vars.
14827 * custom.el (custom-initialize-safe-set)
14828 (custom-initialize-safe-default): Delete.
14829
14830 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14831
14832 * term/x-win.el (x-initialize-window-system):
14833 * term/w32-win.el (w32-initialize-window-system):
14834 * term/ns-win.el (ns-initialize-window-system): Don't call
14835 mouse-wheel-mode since it's enabled globally by default already.
14836
14837 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
14838 actually define the variable, but only silences the byte-compiler.
14839 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
14840 before looking it up.
14841 (mouse-wheel-scroll-amount): Also reset the bindings if this value
14842 is changed.
14843
14844 2009-09-12 Glenn Morris <rgm@gnu.org>
14845
14846 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
14847 1000.
14848 (elint-add-required-env): Don't beep on error.
14849 (elint-forms): In case of error, return ENV unchanged.
14850 (elint-init-env): Skip non-list forms.
14851 (elint-log): Handle unknown file positions.
14852
14853 2009-09-12 Daiki Ueno <ueno@unixuser.org>
14854
14855 * epg.el (epg-make-context): Add autoload cookie.
14856 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
14857 (epg-decrypt-string, epg-start-verify, epg-verify-file)
14858 (epg-verify-string, epg-start-sign, epg-sign-file)
14859 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
14860 (epg-encrypt-string, epg-start-export-keys)
14861 (epg-export-keys-to-file, epg-export-keys-to-string)
14862 (epg-start-import-keys, epg-import-keys-from-file)
14863 (epg-import-keys-from-string, epg-start-receive-keys)
14864 (epg-receive-keys, epg-import-keys-from-server)
14865 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
14866 (epg-sign-keys, epg-start-generate-key)
14867 (epg-generate-key-from-file, epg-generate-key-from-string):
14868 Remove autoload cookie.
14869
14870 2009-09-12 Eli Zaretskii <eliz@gnu.org>
14871
14872 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
14873 reevaluation of trash-directory.
14874
14875 * mwheel.el: Fix last change.
14876 (mouse-wheel-mode): New defvar.
14877 (mouse-wheel-mode): Remove autoload cookie.
14878
14879 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14880
14881 * mwheel.el (mwheel-installed-bindings): New var.
14882 (mouse-wheel-mode): Use it, so as to make sure we really remove all
14883 the bindings we set last time. Use custom-initialize-delay.
14884 * loadup.el: Load mwheel after term/*-win.el.
14885 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
14886 and mouse-wheel-up-event now that their first evaluation is done
14887 sufficiently late to be correct.
14888
14889 * startup.el (tutorial-directory): Make it a defcustom.
14890 Use custom-initialize-delay rather than eval-at-startup to set it.
14891 * image.el (image-load-path): Make it a defcustom.
14892 Use custom-initialize-delay rather than eval-at-startup to set it.
14893 * subr.el (eval-at-startup): Remove.
14894 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
14895
14896 * subr.el (do-after-load-evaluation): Warn the user after loading an
14897 obsolete package.
14898
14899 2009-09-12 Glenn Morris <rgm@gnu.org>
14900
14901 * proced.el (proced-mark-alt): Remove alias.
14902 (proced-mode-map): Remove proced-mark-alt.
14903
14904 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
14905 Elint file and directory. Remove initialization entry.
14906
14907 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
14908 commands.
14909 (elint-current-buffer): Set mode-line-process.
14910 (elint-init-env): Handle define-derived-mode.
14911 Fix declare-function with unspecified arglist. Guard against odd
14912 defalias statements (eg iso-insert's 8859-1-map).
14913 (elint-add-required-env): Use a temp buffer.
14914 (elint-form): Just print the function/macro name, not the whole form.
14915 Return env unchanged if we fail to parse a macro.
14916 (elint-forms): Guard against parse errors.
14917 (elint-output): New function, to handle batch mode.
14918 (elint-log-message): Add optional argument. Use elint-output.
14919 (elint-set-mode-line): New function.
14920
14921 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
14922
14923 * emacs-lisp/elp.el (elp-not-profilable): Add more
14924 functions (Bug#4233).
14925
14926 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
14927
14928 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
14929 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
14930
14931 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
14932
14933 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
14934 (gdb-var-list-children): Use json parsing.
14935
14936 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
14937
14938 * progmodes/js.el (js--proper-indentation): Handle the case where
14939 char-before is null. Reported by Deniz Dogan.
14940
14941 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
14942
14943 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
14944
14945 2009-09-11 Daiki Ueno <ueno@unixuser.org>
14946
14947 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
14948 (epg-digest-algorithm-alist): Add SHA224.
14949 (epg-context-set-passphrase-callback)
14950 (epg-context-set-progress-callback): Add description about
14951 callback function.
14952
14953 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
14954
14955 * custom.el (custom-delayed-init-variables): New var.
14956 (custom-initialize-delay): New function.
14957 * startup.el (command-line): "Re"evaluate all vars in
14958 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
14959 explicitly any more.
14960 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
14961 to avoid creating a ~/.emacs.d at build-time (bug#4347).
14962
14963 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
14964
14965 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
14966
14967 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
14968 (gdb-var-update-handler): Use json parsing.
14969
14970 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
14971
14972 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
14973 decode annotated text, regardless of language environment. (Bug#2741)
14974
14975 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
14976
14977 * Makefile.in (autoloads): Make rmail.el writable as well.
14978
14979 2009-09-11 Glenn Morris <rgm@gnu.org>
14980
14981 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
14982 loaddefs.el.
14983 * dired.el: Regenerate with extracted autoloads.
14984 * Makefile.in (autoloads): Make dired.el writable.
14985
14986 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
14987 * ibuffer.el: Regenerate with extracted autoloads.
14988 * Makefile.in (autoloads): Make ibuffer.el writable.
14989
14990 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
14991 * version.el (emacs-copyright, emacs-major-version)
14992 (emacs-minor-version): Reformat doc-strings for make-docfile.
14993
14994 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
14995 functions and variables, since they must be stuff specific to some other
14996 platform.
14997 (apropos-print): Make mouse-click message less specific about button.
14998
14999 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
15000 that records where a macro was defined.
15001 * help-fns.el (describe-function-1): Mention if a function has a
15002 compiler-macro.
15003 * help-mode.el (help-function-cmacro): New button.
15004
15005 * locate.el (top-level): Always require dired.
15006 (locate-mode-map): Initialize inside the defvar.
15007
15008 * net/ange-ftp.el (dired-compress-file): Declare.
15009 (ange-ftp-dired-compress-file): Add doc string.
15010
15011 * term/ns-win.el (x-display-name, x-setup-function-keys):
15012 Unify doc-strings with X versions.
15013
15014 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
15015
15016 * emulation/crisp.el (crisp-mode-map): Move initialization
15017 into declaration.
15018 (crisp-mode): Use define-minor-mode.
15019
15020 * progmodes/xscheme.el (xscheme-evaluation-commands):
15021 Put a :advertised-binding property rather than using
15022 advertised-xscheme-send-previous-expression.
15023 (advertised-xscheme-send-previous-expression): Declare obsolete.
15024 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
15025 `advertised-undo'.
15026 (crisp-mode): Add corresponding bindings to
15027 undo's :advertised-binding instead.
15028 * dired.el (dired-mode-map): Put a :advertised-binding property rather
15029 than using dired-advertised-find-file.
15030 (dired-advertised-find-file):
15031 * simple.el (advertised-undo):
15032 * wid-edit.el (advertised-widget-backward): Declare obsolete.
15033 (widget-keymap): Put a :advertised-binding property rather
15034 than using advertised-widget-backward.
15035 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
15036 than using advertised-undo.
15037 * tutorial.el (tutorial--default-keys): Adjust accordingly.
15038
15039 2009-09-10 Simon South <ssouth@slowcomputing.org>
15040
15041 * progmodes/delphi.el (delphi-tab): Indent region when Transient
15042 Mark mode is enabled and region is active; otherwise indent or
15043 insert TAB as usual.
15044 (delphi-mode): Update description of TAB-key binding.
15045
15046 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
15047
15048 * subr.el (define-key-rebound-commands): Mark obsolete.
15049 * startup.el (precompute-menubar-bindings): Remove.
15050 (normal-top-level): Remove obsolete code that tried to precompute
15051 menubar bindings.
15052 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
15053 define-key-rebound-commands and precompute-menubar-bindings.
15054
15055 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
15056
15057 * net/imap.el (imap-interactive-login): Better messages.
15058 (imap-open): Fix bug with renamed buffer on reconnect.
15059 (imap-authenticate): Add buffer-local imap-last-authenticator variable
15060 for easier debugging and cleaner code. On successful (guessed based on
15061 server capabilities) secondary authentication, set imap-state
15062 correctly.
15063 (imap-last-authenticator): Define imap-last-authenticator as a variable
15064 to avoid warnings.
15065
15066 2009-09-10 Glenn Morris <rgm@gnu.org>
15067
15068 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
15069
15070 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
15071 (byte-compile-file-form-autoload): Don't warn about unknown functions
15072 where the autoload statement comes after the use.
15073 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
15074 that any handlers inside the body (eg require) are in turn respected.
15075
15076 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
15077 effects.
15078
15079 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
15080 and syntax and abbrev tables basic docs, if they don't have any.
15081
15082 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
15083
15084 * international/mule-cmds.el (top-level): Require cl when compiling.
15085 (view-hello-file): Use default-value rather than
15086 default-enable-multibyte-characters.
15087
15088 * progmodes/fortran.el: Move all safe and risky properties into the
15089 defcustoms.
15090
15091 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
15092 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
15093 * mail/undigest.el:
15094 Put autoloads in rmail.el rather than loaddefs.el.
15095 * mail/rmail.el: Regenerate with extracted autoloads.
15096
15097 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
15098 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
15099
15100 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
15101
15102 Reported in thread for Bug#4375.
15103 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
15104 "-data-evaluate-expression" instead of print.
15105 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
15106 (gdb-tooltip-print): Parse output from above MI command.
15107 (gdb): Revert 2009-08-11 change. User should detach inferior
15108 manually.
15109
15110 Remove the word "separate" from IO functions as inferior
15111 output is now never displayed in the GUD buffer.
15112
15113 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
15114
15115 * startup.el (command-line-normalize-file-name): On Windows and
15116 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
15117
15118 2009-09-10 Juri Linkov <juri@jurta.org>
15119
15120 * isearch.el (isearch-text-char-description): Propertize escape
15121 character sequences with the `escape-glyph' face. (Bug#4344)
15122
15123 * simple.el (shell-command): Set asynchronous process filter to
15124 `comint-output-filter'. (Bug#4343)
15125
15126 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
15127 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
15128 the list. Move "asm" to the bottom.
15129 (grep-find-ignored-directories): Add `choice' with nil value
15130 to empty the list easily.
15131 (grep-find-ignored-files): New option.
15132 (grep-files-history): Set to nil by default instead of '("ch" "el").
15133 (grep-compute-defaults): Add "<X>" to `grep-template'.
15134 (grep-read-files): Bind new local variables `default-alias' and
15135 `default-extension'. Use a list of default values for the file prompt.
15136 (lgrep): Add `--exclude=' command line options composed from
15137 `grep-find-ignored-files'.
15138 (rgrep): Add `-name' command line options composed from
15139 `grep-find-ignored-files'. (Bug#4301)
15140
15141 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
15142
15143 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
15144 (bug#4368).
15145
15146 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
15147
15148 * calendar/time-date.el (autoload):
15149 Expand define-obsolete-function-alias into defalias and make-obsolete
15150 for old Emacsen that Gnus supports.
15151 (with-no-warnings): Define it for old Emacsen.
15152 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
15153 is available.
15154 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
15155 float-time is available; suppress compile warning for time-to-seconds.
15156
15157 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
15158
15159 * net/imap.el (imap-message-map): Docstring fix.
15160
15161 2009-09-09 Glenn Morris <rgm@gnu.org>
15162
15163 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
15164 line numbers too. (Bug#4374)
15165
15166 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
15167
15168 * smerge-mode.el (smerge-remove-props, smerge-refine):
15169 Use with-silent-modifications (bug#4342).
15170
15171 * subr.el (with-silent-modifications): New macro.
15172
15173 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
15174
15175 * files.el (top-level): Require `cl' when compiling.
15176
15177 2009-09-07 Glenn Morris <rgm@gnu.org>
15178
15179 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
15180
15181 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
15182 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
15183
15184 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
15185
15186 * vc-git.el (vc-git-annotate-command): Use separator to parse
15187 arguments correctly.
15188
15189 2009-09-06 Eli Zaretskii <eliz@gnu.org>
15190
15191 * proced.el (proced-mode): Doc fix.
15192
15193 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
15194
15195 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
15196 lstat fails.
15197 (tramp-do-file-attributes-with-ls): Check for file existence at
15198 remote end.
15199 (tramp-do-file-attributes-with-stat): Likewise.
15200 (tramp-convert-file-attributes): Return nil when attr is nil.
15201
15202 2009-09-05 Glenn Morris <rgm@gnu.org>
15203
15204 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
15205 properties to this button.
15206 (diary-fancy-display): Don't extend the button to the final newline.
15207 (diary-fancy-display-mode): Continue to define "q" as a local key.
15208
15209 * calendar/cal-china.el (holiday-chinese): Make it slightly more
15210 efficient.
15211
15212 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
15213
15214 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
15215 (byte-compile-dest-file-function): New option.
15216 (byte-compile-dest-file): Doc fix.
15217 Obey byte-compile-dest-file-function.
15218 (byte-compile-cl-file-p): New function.
15219 (byte-compile-eval): Only suppress noruntime warnings about cl functions
15220 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
15221 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
15222 than for file being previously loaded.
15223 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
15224 (byte-compile-file-form-require): Handle the case where requiring a file
15225 indirectly causes CL to be loaded.
15226
15227 2009-09-05 Karl Fogel <kfogel@red-bean.com>
15228
15229 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
15230 before killing the old buffer, since by the time `kill-buffer' is
15231 run so many buffer variables have been set to nil that it may not
15232 behave as expected. (Bug#4061)
15233
15234 2009-09-05 Karl Fogel <kfogel@red-bean.com>
15235
15236 * files.el (find-alternate-file): If the old buffer is modified
15237 and visiting a file, behave similarly to `kill-buffer' when
15238 killing it, thus reverting to the pre-1.878 behavior; see
15239 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
15240 for discussion. Also, consult `buffer-file-name' as a variable
15241 not as a function, for consistency with the rest of the code.
15242
15243 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
15244
15245 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
15246 also when adding a new directory.
15247
15248 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
15249 defun.
15250
15251 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
15252
15253 * files.el (locate-file-completion-table): Make it provide boundary
15254 information, so partial-completion works better.
15255
15256 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
15257
15258 * mail/footnote.el (Footnote-text-under-cursor):
15259 Check footnote-text-marker-alist before using it (bug#4324).
15260
15261 2009-09-04 Glenn Morris <rgm@gnu.org>
15262
15263 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
15264 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
15265 * play/solitaire.el, play/tetris.el:
15266 Remove leading * from defcustom and defface docs.
15267
15268 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
15269 necessary.
15270 (diary-fancy-overriding-map): New variable.
15271 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
15272 Use view-mode.
15273
15274 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
15275 goto-line.
15276
15277 2009-09-03 Glenn Morris <rgm@gnu.org>
15278
15279 * arc-mode.el (archive-mode):
15280 * dos-fns.el (set-default-process-coding-system):
15281 * man.el (Man-getpage-in-background):
15282 * menu-bar.el (menu-bar-describe-menu):
15283 * server.el (server-process-filter):
15284 * startup.el (command-line):
15285 * tar-mode.el (tar-header-block-tokenize, tar-extract):
15286 * w32-fns.el (set-default-process-coding-system):
15287 * x-dnd.el (x-dnd-handle-file-name):
15288 * international/mule-cmds.el (mule-menu-keymap)
15289 (set-default-coding-systems, language-info-alist, set-language-info)
15290 (set-language-environment, standard-display-european-internal)
15291 (set-locale-environment):
15292 * international/mule-diag.el (mule-diag):
15293 * mail/emacsbug.el (report-emacs-bug):
15294 * mail/rmail.el (rmail-mode):
15295 * mail/sendmail.el (mail-setup):
15296 Use default-value rather than default-enable-multibyte-characters.
15297
15298 * progmodes/f90.el: Move all safe properties into the defcustoms.
15299 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
15300
15301 * calendar/appt.el (appt-check):
15302 * calendar/diary-lib.el (diary-set-header, diary-live-p)
15303 (diary-check-diary-file, diary-list-entries)
15304 (diary-include-other-diary-files, diary-simple-display)
15305 (diary-fancy-display, diary-print-entries)
15306 (diary-mark-included-diary-files, diary-make-entry):
15307 Don't call substitute-in-file-name on diary-file.
15308
15309 2009-09-03 Eduard Wiebe <usenet@pusto.de>
15310 Stefan Monnier <monnier@iro.umontreal.ca>
15311
15312 * mail/footnote.el (footnote-prefix): Make it a defcustom.
15313 (footnote-mode-map): Move initialization into the declaration.
15314 (footnote-minor-mode-map): Define it rather than changing global-map.
15315 (footnote-mode): Use define-minor-mode.
15316
15317 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
15318
15319 * net/tramp.el (tramp-handle-file-attributes-with-ls)
15320 (tramp-do-file-attributes-with-perl)
15321 (tramp-do-file-attributes-with-stat): Rename from
15322 `tramp-handle-file-attributes-with-*'.
15323 (tramp-handle-file-attributes): Use them.
15324 (tramp-do-directory-files-and-attributes-with-perl)
15325 (tramp-do-directory-files-and-attributes-with-stat): Rename from
15326 `tramp-handle-directory-files-and-attributes-with-*'.
15327 (tramp-handle-directory-files-and-attributes): Use them.
15328 (tramp-method-out-of-band-p): Additional parameter SIZE.
15329 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
15330 (tramp-handle-write-region): Use it.
15331 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
15332 (tramp-handle-vc-registered): Check, whether the first run did
15333 return files to be tested.
15334 (tramp-advice-make-auto-save-file-name): Do not call directly
15335 `tramp-handle-make-auto-save-file-name', because this would bypass
15336 the locking mechanism.
15337
15338 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
15339 (file-remote-p, process-file, start-file-process, set-file-times)
15340 (tramp-compat-file-attributes): Compatibility functions shall not
15341 call directly `tramp-handle-*', because this would bypass the
15342 locking mechanism.
15343 (tramp-compat-number-sequence): New defun.
15344
15345 2009-09-02 Glenn Morris <rgm@gnu.org>
15346
15347 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
15348 alias for float-time.
15349 (time-to-number-of-days): In Emacs, use float-time.
15350 * net/newst-backend.el (time-add): Suppress warnings from compat
15351 function.
15352 * time.el (emacs-uptime, emacs-init-time):
15353 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
15354 Use float-time rather than time-to-seconds.
15355
15356 * minibuffer.el (completion-initials-expand): Fix typo.
15357
15358 * faces.el (modeline, modeline-inactive, modeline-highlight)
15359 (modeline-buffer-id):
15360 * info.el (info-menu-5): Mark these face aliases as obsolete.
15361
15362 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
15363
15364 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
15365 space ...
15366 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
15367 no "--thread" option.
15368 (gdb-stopped): Don't print "Switched to thread" message when it is
15369 unchanged.
15370
15371 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
15372
15373 * minibuffer.el (completion-try-completion)
15374 (completion-all-completions): Remove ill-defined (and
15375 mistakenly installed and luckily never used nor documented)
15376 `completion-styles' property.
15377 (completion-initials-expand, completion-initials-all-completions)
15378 (completion-initials-try-completion): New functions.
15379 (completion-styles-alist): Add doc to each entry.
15380 Add new `initials' entry.
15381
15382 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
15383
15384 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
15385 MI command -var-evaluate-expression.
15386 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
15387 and tweak for case of string child.
15388 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
15389
15390 2009-09-01 Glenn Morris <rgm@gnu.org>
15391
15392 * add-log.el (change-log-date-face, change-log-name-face)
15393 (change-log-email-face, change-log-file-face, change-log-list-face)
15394 (change-log-conditionals-face, change-log-function-face)
15395 (change-log-acknowledgement-face):
15396 * cus-edit.el (custom-invalid-face, custom-rogue-face)
15397 (custom-modified-face, custom-set-face, custom-changed-face)
15398 (custom-saved-face, custom-button-face, custom-button-pressed-face)
15399 (custom-documentation-face, custom-state-face, custom-comment-face)
15400 (custom-comment-tag-face, custom-variable-tag-face)
15401 (custom-variable-button-face, custom-face-tag-face)
15402 (custom-group-tag-face-1, custom-group-tag-face):
15403 * diff-mode.el (diff-header-face, diff-file-header-face)
15404 (diff-index-face, diff-hunk-header-face, diff-removed-face)
15405 (diff-added-face, diff-changed-face, diff-function-face)
15406 (diff-context-face, diff-nonexistent-face):
15407 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
15408 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
15409 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
15410 (Info-title-4-face):
15411 * isearch.el (isearch-lazy-highlight-face):
15412 * log-view.el (log-view-file-face, log-view-message-face):
15413 * paren.el (show-paren-match-face, show-paren-mismatch-face):
15414 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
15415 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
15416 (cvs-msg-face):
15417 * smerge-mode.el (smerge-mine-face, smerge-other-face)
15418 (smerge-base-face, smerge-markers-face):
15419 * wid-edit.el (widget-documentation-face, widget-button-face)
15420 (widget-field-face, widget-single-line-field-face)
15421 (widget-inactive-face, widget-button-pressed-face):
15422 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
15423 (woman-addition-face):
15424 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
15425 (eshell-ls-executable-face, eshell-ls-readonly-face)
15426 (eshell-ls-unreadable-face, eshell-ls-special-face)
15427 (eshell-ls-missing-face, eshell-ls-archive-face)
15428 (eshell-ls-backup-face, eshell-ls-product-face)
15429 (eshell-ls-clutter-face):
15430 * eshell/em-prompt.el (eshell-prompt-face):
15431 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
15432 * obsolete/old-whitespace.el (whitespace-highlight-face):
15433 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
15434 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
15435 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
15436 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
15437 (antlr-font-lock-literal-face):
15438 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
15439 (ebrowse-root-class-face, ebrowse-file-name-face)
15440 (ebrowse-default-face, ebrowse-member-attribute-face)
15441 (ebrowse-member-class-face, ebrowse-progress-face):
15442 * progmodes/make-mode.el (makefile-space-face):
15443 * progmodes/sh-script.el (sh-heredoc-face):
15444 * textmodes/flyspell.el (flyspell-incorrect-face)
15445 (flyspell-duplicate-face):
15446 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
15447 * textmodes/texinfo.el (texinfo-heading-face):
15448 Mark face aliases with "-face" suffix as obsolete.
15449
15450 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
15451 compiler.
15452
15453 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
15454 (eudc-bob-sound-menu): Use defvar rather than defconst, since
15455 easy-menu-define wants to modify these.
15456
15457 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
15458
15459 * net/browse-url.el (browse-url-file-url):
15460 * term/internal.el (dos-codepage-setup):
15461 Use default-value rather than default-enable-multibyte-characters.
15462
15463 * progmodes/etags.el (etags-goto-tag-location):
15464 * progmodes/flymake.el (flymake-highlight-line)
15465 (flymake-goto-file-and-line, flymake-goto-line):
15466 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
15467 (gdb-goto-breakpoint):
15468 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
15469 * progmodes/python.el (python-find-function)
15470 (python-pdbtrack-track-stack-file):
15471 * progmodes/verilog-mode.el (verilog-surelint-off):
15472 * term/ns-win.el (ns-open-file-select-line):
15473 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
15474 Use forward-line rather than goto-line.
15475
15476 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
15477 * textmodes/reftex-index.el (reftex-display-index):
15478 * textmodes/reftex-ref.el (reftex-offer-label-menu):
15479 * textmodes/reftex-toc.el (reftex-toc):
15480 Remove unnecessary bindings of default-major-mode (all are followed by
15481 major-mode check and possible mode switch).
15482
15483 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
15484
15485 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
15486 Handle watchpoints (bug#4282).
15487 (def-gdb-thread-buffer-command): Enable thread to be selected by
15488 clicking without selecting threads buffer first.
15489 (gdb-current-context-command): Use selected frame so that "up",
15490 "down" etc work in the GUD buffer.
15491 (gdb-update): Find selected frame before rendering stack buffer.
15492 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
15493
15494 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
15495
15496 * progmodes/sym-comp.el (displayed-completions): Remove.
15497 (symbol-complete): Use minibuffer-complete.
15498
15499 2009-08-31 Glenn Morris <rgm@gnu.org>
15500
15501 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
15502
15503 * apropos.el (apropos-symbols-internal):
15504 Handle (obsolete) face aliases.
15505
15506 * faces.el (describe-face): Adjust the output format to be more like
15507 describe-variable, and to mention (obsolete) face aliases.
15508 Adjust the whitespace so that help-setup-xref works.
15509
15510 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
15511 * calendar/diary-lib.el (diary-button-face):
15512 Mark these face aliases as obsolete.
15513
15514 * calendar/calendar.el (calendar-today): Doc fix.
15515
15516 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
15517
15518 * progmodes/gdb-mi.el (gdb-control-all-threads)
15519 (gdb-control-current-thread): Force tool bar update.
15520 (gdb-non-stop-handler): New function.
15521 (gdb-init-1): Use it to test if non-stop mode is supported.
15522 Remove unused gdbmi buffer type.
15523
15524 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
15525
15526 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
15527 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
15528
15529 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
15530
15531 * comint.el (comint-exec-1): Check command is non-null first.
15532 Part of gdb-mi.el change (2009-08-28).
15533
15534 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
15535
15536 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
15537
15538 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
15539
15540 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
15541 instead of `dolist' to avoid a recursive require when bootstrapping.
15542
15543 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
15544
15545 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
15546
15547 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
15548
15549 * net/imap.el (imap-send-command): Simplify.
15550 (imap-wait-for-tag): point-max -> buffer-size.
15551
15552 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
15553
15554 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
15555 with constant argument.
15556
15557 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
15558
15559 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
15560
15561 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
15562 Change default, since most of our files don't have a history.
15563 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
15564 the user.
15565
15566 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15567 Add comint-run.
15568
15569 * calc/calc.el: Improve commenting convention.
15570 (calc-digit-map, toplevel): Simplify.
15571
15572 * comint.el (comint-insert-input): Be careful to only set point if we
15573 don't delegate to some other command.
15574
15575 * proced.el (proced-signal-list): Make it an alist.
15576 (proced-grammar-alist): Capitalize names.
15577 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
15578 Disable undo manually and make it read-only.
15579 Use completion-annotate-function.
15580
15581 * minibuffer.el (minibuffer-message): If the current buffer is not
15582 a minibuffer, insert the message in the echo area rather than at the
15583 end of the buffer.
15584 (completion-annotate-function): New variable.
15585 (minibuffer-completion-help): Use it.
15586 (completion--embedded-envvar-table): Environment vars are
15587 always case-sensitive.
15588
15589 2009-08-30 Glenn Morris <rgm@gnu.org>
15590
15591 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
15592 from fortran-current-defun.
15593 (fortran-beginning-of-subprogram): Be more precise about finding the
15594 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
15595 (fortran-end-of-subprogram): Simplify.
15596 (fortran-current-defun): Use fortran-start-prog-re.
15597
15598 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
15599
15600 * subr.el (do-after-load-evaluation): Simplify.
15601
15602 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
15603
15604 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
15605
15606 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
15607 (vc-rcs-print-log): Use it.
15608
15609 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
15610
15611 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
15612
15613 * paths.el (abbrev-file-name): Move to abbrev.el.
15614 * abbrev.el (abbrev-file-name): Move from paths.el.
15615 Obey user-emacs-directory.
15616 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
15617 user-emacs-directory.
15618 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
15619 abbrev-file-name and calc-settings-file any more.
15620 * startup.el (command-line): Recompute abbrev-file-name and
15621 abbreviated-home-dir.
15622 (normal-no-mouse-startup-screen): Improve the generic code and get rid
15623 of the special code for when C-h bindings haven't been changed.
15624 (display-startup-echo-area-message): Use with-current-buffer.
15625 (command-line-1): Use a list of strings, rather than a list of lists
15626 of strings for longopts.
15627
15628 * files.el (get-free-disk-space): Use / for default-directory.
15629
15630 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
15631 Use with-current-buffer.
15632
15633 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
15634 Recognize immutable variables like most-positive-fixnum.
15635 (byte-compile-setq-default): Check and warn if trying to assign
15636 to an immutable variable, or a non-variable.
15637
15638 * progmodes/cc-vars.el (c-comment-continuation-stars):
15639 * progmodes/cc-engine.el (c-looking-at-bos):
15640 * progmodes/cc-cmds.el (c-toggle-auto-state)
15641 (c-forward-into-nomenclature, c-backward-into-nomenclature)
15642 (c-comment-line-break-function): Add version of obsolescence.
15643
15644 2009-08-28 Juri Linkov <juri@jurta.org>
15645
15646 * files.el (magic-fallback-mode-alist): Add ZIP magic number
15647 associated with `archive-mode'.
15648
15649 * image.el (image-type-header-regexps): Use only JPEG magic number
15650 to determine JPEG images, and don't use `image-jpeg-p' because
15651 Emacs can display non-JFIF non-Exif JPEG images.
15652
15653 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
15654
15655 * arc-mode.el (archive-mode):
15656 * emacs-lisp/re-builder.el (re-builder-unload-function):
15657 Protect against the default value of `major-mode' being nil.
15658
15659 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
15660
15661 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
15662 Fix typos in docstrings.
15663
15664 * progmodes/js.el (js--macro-decl-re): Doc fix.
15665 (js--plain-method-re, js--split-name): Refloc docstring.
15666 (js--class-styles, js--make-merged-item, js--splice-into-items):
15667 Fix typos in docstrings; reflow docstrings.
15668 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
15669 (js--variable-decl-matcher, js--inside-pitem-p)
15670 (js--parse-state-at-point, js--get-all-known-symbols)
15671 (js--symbol-history, js-find-symbol, js--js-references)
15672 (js--moz-interactor, js--js-encode-value, js--read-tab):
15673 Fix typos in docstrings.
15674
15675 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15676
15677 * textmodes/reftex.el (reftex-get-file-buffer-force):
15678 * progmodes/verilog-mode.el (verilog-batch-execute-func):
15679 * emulation/viper.el (viper-go-away, viper-set-hooks):
15680 * emacs-lisp/re-builder.el (re-builder-unload-function):
15681 * emacs-lisp/bytecomp.el (byte-compile-file):
15682 * ses.el (ses-unload-function):
15683 * hexl.el (hexl-find-file):
15684 * files.el (normal-mode):
15685 * ehelp.el (with-electric-help):
15686 * autoinsert.el (auto-insert-alist):
15687 * arc-mode.el (archive-mode):
15688 Use (default-value 'major-mode) instead of default-major-mode.
15689
15690 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
15691 * international/mule.el (load-with-code-conversion):
15692 * emacs-lisp/debug.el (debug):
15693 * ediff-vers.el (ediff-rcs-get-output-buffer):
15694 * dired.el (dired-internal-noselect): Don't let-bind
15695 default-major-mode around code that doesn't use it.
15696 E.g. buffer creation via get-buffer-create doesn't use it.
15697
15698 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
15699
15700 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
15701 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
15702 when writing the temp file. Otherwise, epa-file gets confused.
15703 (tramp-register-file-name-handlers): Make it a defun. Move also
15704 `epa-file-handler' to the front of `file-name-handler-alist'.
15705
15706 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15707
15708 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
15709 start right after a ^M.
15710 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
15711 (tramp-completion-file-name-regexp-separate)
15712 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
15713 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
15714 Don't modify last-coding-system-used by accident.
15715 (tramp-completion-file-name-handler): Apply the checks here,
15716 instead during registration.
15717 (tramp-register-file-name-handlers): Renamed from
15718 `tramp-register-file-name-handler'. Register both
15719 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
15720 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
15721
15722 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
15723
15724 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
15725 Remove variable ...
15726 (gdb-init-1, gdb-display-separate-io-buffer)
15727 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
15728 references to it.
15729 (gdb-inferior-io-mode): Use make-comint-in-buffer.
15730 (gdb-inferior-filter): Use comint-output-filter to stop
15731 echoing and remove ^M characters.
15732
15733 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15734
15735 * emulation/viper-init.el (viper-restore-cursor-type):
15736 * emulation/cua-base.el (cua--update-indications):
15737 Replace default-cursor-type with (default-value 'cursor-type).
15738
15739 * mail/sendmail.el (mail-recover-1):
15740 * international/mule-diag.el (describe-current-coding-system-briefly)
15741 (describe-current-coding-system):
15742 * international/mule-cmds.el (select-safe-coding-system)
15743 (select-message-coding-system)
15744 (set-language-environment-coding-systems, set-locale-environment):
15745 * hexl.el (hexl-insert-multibyte-char):
15746 * dos-w32.el (find-buffer-file-type-coding-system):
15747 * simple.el (what-cursor-position):
15748 Replace uses of default-buffer-file-coding-system
15749 with (default-value 'buffer-file-coding-system).
15750
15751 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
15752 Replace uses of default-cursor-in-non-selected-windows
15753 with (default-value 'cursor-in-non-selected-windows).
15754 Use with-current-buffer.
15755
15756 * mail/feedmail.el: Use CL macros.
15757 (feedmail-run-the-queue, feedmail-send-it-immediately):
15758 * dos-w32.el (find-buffer-file-type): Replace uses of
15759 default-buffer-file-type with (default-value 'buffer-file-type).
15760
15761 2009-08-28 Glenn Morris <rgm@gnu.org>
15762
15763 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
15764 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
15765 Use default-value of major-mode rather than default-major-mode.
15766
15767 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
15768
15769 * Makefile.in (update-elcfiles): Report left over elc files.
15770
15771 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
15772 expand-file-name and with-current-buffer.
15773 (mail-get-names, mail-directory): Use with-current-buffer.
15774
15775 * vc.el (vc-read-revision): New function.
15776 (vc-version-diff, vc-merge): Use it.
15777
15778 2009-08-27 Sam Steingold <sds@gnu.org>
15779
15780 * simple.el (kill-do-not-save-duplicates): New user option.
15781 (kill-new): When it is non-nil, and the new string is the same as
15782 the latest kill, set replace to t to avoid duplicates in kill-ring.
15783
15784 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
15785
15786 * net/tramp.el (tramp-handle-process-file): Do not flush all
15787 caches when `process-file-side-effects' is set.
15788 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
15789 instead of `tramp-find-file-exists-command'.
15790 Unset `process-file-side-effects'.
15791
15792 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
15793
15794 * net/tramp.el (tramp-methods): New method "rsyncc".
15795 (top): Add completion function for "rsyncc".
15796 (tramp-message-show-message): New defvar.
15797 (tramp-message, tramp-error): Use it.
15798 (tramp-do-copy-or-rename-file-directly): Extend check for direct
15799 remote copying.
15800 (tramp-do-copy-or-rename-file-out-of-band): Handle new
15801 `tramp-methods' entry `copy-env' of "rsyncc".
15802 (tramp-vc-registered-read-file-names): New defconst.
15803 (tramp-vc-registered-file-names): New defvar.
15804 (tramp-handle-vc-registered): Implement optimization strategy.
15805 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
15806 (tramp-vc-file-name-handler): New defun.
15807 (tramp-get-ls-command, tramp-get-test-command)
15808 (tramp-get-file-exists-command, tramp-get-remote-ln)
15809 (tramp-get-remote-perl, tramp-get-remote-stat)
15810 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
15811
15812 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
15813 (tramp-cache-inhibit-cache): Extend doc string. It allows also
15814 timestamps.
15815 (tramp-get-file-property): Check for timestamps in
15816 `tramp-cache-inhibit-cache'.
15817 (tramp-set-file-property): Write timestamp.
15818
15819 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
15820
15821 * language/japan-util.el (japanese-symbol-table): Add entries for
15822 cp932-2-byte.
15823
15824 * international/characters.el: Add category `j' to cp932-2-byte.
15825
15826 2009-08-27 Kenichi Handa <handa@m17n.org>
15827
15828 * international/fontset.el (build-default-fontset-data): New macro.
15829 (setup-default-fontset): Use build-default-fontset-data for CJK,
15830 tibetan, ethiopic, and ipa.
15831
15832 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
15833
15834 * cus-start.el (default-major-mode): Customize `major-mode' instead.
15835 (enable-multibyte-characters): Not customizable any more.
15836
15837 * subr.el (default-mode-line-format, default-header-line-format)
15838 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
15839 (default-direction-reversed, default-truncate-lines)
15840 (default-left-margin, default-tab-width, default-case-fold-search)
15841 (default-left-margin-width, default-right-margin-width)
15842 (default-left-fringe-width, default-right-fringe-width)
15843 (default-fringes-outside-margins, default-scroll-bar-width)
15844 (default-vertical-scroll-bar, default-indicate-empty-lines)
15845 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
15846 (default-fringe-cursor-alist, default-scroll-up-aggressively)
15847 (default-scroll-down-aggressively, default-fill-column)
15848 (default-cursor-type, default-buffer-file-type)
15849 (default-cursor-in-non-selected-windows)
15850 (default-buffer-file-coding-system, default-major-mode)
15851 (default-enable-multibyte-characters): Mark as obsolete.
15852
15853 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
15854
15855 * vc-dir.el (vc-dir-update): Remove debug helper.
15856
15857 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
15858
15859 2009-08-26 Sam Steingold <sds@gnu.org>
15860
15861 * simple.el (save-interprogram-paste-before-kill): New user option.
15862 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
15863 save the interprogram-paste into kill-ring before overriding it
15864 with the Emacs kill.
15865
15866 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
15867
15868 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
15869 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
15870 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
15871 and move to vc-rcs.el.
15872 (vc-default-next-revision): Rename to vc-rcs-next-revision and
15873 move to vc-rcs.el.
15874 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
15875 (vc-rcs-update-changelog): Remove.
15876 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
15877 and move to vc-rcs.el.
15878
15879 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
15880 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
15881 renaming.
15882 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
15883 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
15884 vc.el, renamed to be RCS specific.
15885
15886 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
15887 New functions.
15888 (vc-cvs-update-changelog): Move here from vc.el.
15889
15890 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
15891 New functions.
15892
15893 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
15894
15895 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
15896
15897 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
15898
15899 * vc-git.el (vc-git-register): Use "git add" for directories.
15900 (vc-git-stash, vc-git-stash-show): New functions.
15901 (vc-git-extra-menu-map): Bind them.
15902
15903 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
15904 directory correctly in case the item is a directory itself.
15905
15906 * vc.el: Document the desired behavior for reverted files in the
15907 `added' state.
15908 (vc-default-prettify-state-info): Remove function, unused.
15909
15910 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
15911
15912 2009-08-26 Glenn Morris <rgm@gnu.org>
15913
15914 * bindings.el (standard-mode-line-format): Reposition dashes in
15915 which-func entry. (Bug#4217)
15916
15917 * files.el (enable-local-variables, enable-local-eval)
15918 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
15919 the defcustoms.
15920 (auto-mode-alist, ignored-local-variables)
15921 (save-some-buffers-action-alist): Move risky declarations to the
15922 definitions.
15923 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
15924 (font-lock-defaults, format-alist, imenu--index-alist)
15925 (imenu-generic-expression, input-method-alist, minor-mode-alist)
15926 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
15927 (mode-line-modified, mode-line-mule-info, mode-line-position)
15928 (mode-line-process, mode-line-remote, outline-level)
15929 (parse-time-rules, rmail-output-file-alist)
15930 (special-display-buffer-names, vc-mode):
15931 Move risky declarations to the relevant files.
15932 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
15933 (mode-line-modified, mode-line-process, mode-line-position)
15934 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
15935 * font-core.el (font-lock-defaults):
15936 * format.el (format-alist):
15937 * vc-hooks.el (vc-mode):
15938 * window.el (special-display-buffer-names):
15939 * international/mule-cmds.el (input-method-alist):
15940 Define riskiness here (dumped file) rather than in files.el.
15941 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
15942 * imenu.el (imenu-generic-expression, imenu--index-alist):
15943 * outline.el (outline-level):
15944 * time.el (display-time-string):
15945 * calendar/parse-time.el (parse-time-rules):
15946 * mail/rmailout.el (rmail-output-file-alist):
15947 Autoload riskiness here, rather than placing in files.el.
15948
15949 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
15950
15951 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
15952
15953 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
15954
15955 * simple.el (process-file-side-effects): New defvar.
15956
15957 * dired-aux.el (dired-show-file-type):
15958 * vc.el (vc-diff-internal):
15959 * vc-arch.el (vc-arch-diff):
15960 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
15961 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
15962 * vc-git.el (vc-git-registered, vc-git-working-revision)
15963 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
15964 (vc-git--empty-db-p):
15965 * vc-hooks.el (vc-user-login-name):
15966 * vc-svn.el (vc-svn-registered, vc-svn-state)
15967 (vc-svn-dir-extra-headers, vc-svn-find-revision):
15968 * progmodes/grep.el (grep-probe): Let-bind
15969 `process-file-side-effects' with nil.
15970
15971 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
15972
15973 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
15974 daemon. Replace ping by checking for running service for bluez
15975 and zeroconf. (Bug#4239)
15976
15977 2009-08-25 Kevin Ryde <user42@zip.com.au>
15978
15979 * net/dig.el (dig): Add autoload cookie.
15980
15981 2009-08-25 Glenn Morris <rgm@gnu.org>
15982
15983 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
15984 load-history for absolute file-names.
15985 (byte-compile-file-form-require): Warn about use of the cl package.
15986
15987 * format.el (format-alist): Doc fix.
15988
15989 * play/bubbles.el (top-level): Don't require cl at run-time.
15990
15991 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
15992 run-time cl).
15993
15994 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
15995
15996 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
15997 from cl package.
15998 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
15999
16000 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
16001
16002 * calc/calc-alg.el (math-trig-rewrite)
16003 (math-hyperbolic-trig-rewrite): New functions.
16004 (calc-simplify): Simplify trig functions when asked.
16005
16006 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
16007
16008 * diff-mode.el (diff-find-source-location): Avoid goto-line.
16009
16010 2009-08-24 Kenichi Handa <handa@m17n.org>
16011
16012 * language/ind-util.el (mapthread): Delete it.
16013 (combinatorial): New function.
16014 (indian--puthash-cv): Use combinatorial instead of mapthread.
16015
16016 2009-08-22 Kevin Ryde <user42@zip.com.au>
16017
16018 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
16019 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
16020 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
16021 Clarify docstring that the value is strings not symbols.
16022 (checkdoc-list-of-strings-p): New function.
16023
16024 2009-08-22 Glenn Morris <rgm@gnu.org>
16025
16026 * files.el (auto-mode-alist):
16027 * hippie-exp.el (he-concat-directory-file-name):
16028 * lpr.el (lpr-windows-system, printer-name):
16029 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
16030 * ps-print.el (ps-windows-system):
16031 * startup.el (command-line):
16032 * emulation/viper-ex.el (viper-glob-function):
16033 * international/mule-cmds.el (set-language-environment-coding-systems):
16034 * net/ange-ftp.el (ange-ftp-write-region):
16035 * obsolete/fast-lock.el (fast-lock-cache-name):
16036 Remove code for defunct system-types emx, macos, mswindows, next-mach,
16037 unisoft-unix, vax-vms, win32, w32.
16038
16039 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
16040 given name if the pattern is not more specific.
16041
16042 * calendar/lunar.el (lunar-phase-names): New option.
16043 (lunar-phase): Doc fix.
16044 (lunar-cycles-per-year): New constant.
16045 (lunar-index): New function.
16046 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
16047 (lunar-phase-name): Use lunar-phase-names.
16048 (calendar-lunar-phases): Use format.
16049 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
16050
16051 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
16052 Copy imenu-example--name-and-position function here for own use.
16053 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
16054
16055 * bs.el (bs--redisplay):
16056 * cus-edit.el (custom-redraw):
16057 * ibuffer.el (ibuffer-bury-buffer):
16058 * server.el (server-goto-line-column):
16059 * startup.el (command-line-1):
16060 * strokes.el (strokes-xpm-for-stroke):
16061 * term.el (term-display-buffer-line):
16062 * view.el (View-goto-line):
16063 * calc/calc.el (calc-do, calc-trail-buffer):
16064 * play/gamegrid.el (gamegrid-add-score-insecure):
16065 * progmodes/ada-mode.el (ada-compile-goto-error):
16066 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
16067 (ebrowse-select-1st-to-9nth):
16068 * progmodes/cperl-mode.el (cperl-time-fontification):
16069 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
16070 * progmodes/gud.el (gud-display-line):
16071 (idlwave-shell-display-line):
16072 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
16073 * progmodes/make-mode.el (makefile-browser-toggle):
16074 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
16075 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
16076 * textmodes/picture.el (picture-draw-rectangle):
16077 * textmodes/reftex-index.el (reftex-index-goto-letter):
16078 (reftex-select-jump-to-previous):
16079 * textmodes/reftex-sel.el (reftex-find-start-point)
16080 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
16081 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
16082 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
16083 * textmodes/tex-mode.el (tex-compilation-parse-errors):
16084 * textmodes/two-column.el (2C-associated-buffer):
16085 Use forward-line rather than goto-line.
16086
16087 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
16088 goto-line.
16089
16090 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
16091 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
16092 (quick-check-list-to-regexp): Declare.
16093
16094 * progmodes/make-mode.el (makefile-browser-insert-selection):
16095 Use goto-char rather than goto-line.
16096
16097 * progmodes/prolog.el (compilation-error-regexp-alist)
16098 (compilation-forget-errors): Declare.
16099
16100 2009-08-22 Juri Linkov <juri@jurta.org>
16101
16102 * progmodes/grep.el (lgrep, rgrep): At the beginning
16103 set `dir' to `default-directory' unless `dir' is a non-nil
16104 readable directory. (Bug#4052)
16105 (lgrep, rgrep): Change a weird way to report an error
16106 from using `read-string' to using `error'.
16107 Instead of using interactive arguments in the function body,
16108 add new argument `confirm'.
16109
16110 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
16111
16112 * textmodes/remember.el (remember-buffer):
16113 * progmodes/cperl-mode.el (cperl-vc-header-alist):
16114 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
16115 (icalendar-extract-ical-from-buffer):
16116 * net/newst-treeview.el (newsticker-groups-filename):
16117 * net/newst-backend.el (newsticker-cache-filename):
16118 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
16119 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
16120 (speedbar-add-ignored-path-regexp, speedbar-line-path)
16121 (speedbar-buffers-line-path, speedbar-path-line)
16122 (speedbar-buffers-line-path):
16123 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
16124 (epg-sign-keys):
16125 * epa.el (epa-display-verify-result):
16126 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
16127
16128 2009-08-21 Glenn Morris <rgm@gnu.org>
16129
16130 * progmodes/js.el (inferior-moz-process): Fix declaration.
16131
16132 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
16133
16134 * obsolete/rnewspost.el (news-mail-reply):
16135 Use goto-char rather than goto-line.
16136
16137 * term/ns-win.el (ns-open-file-select-line):
16138 Use line-beginning-position rather than goto-line.
16139
16140 * apropos.el (apropos-command):
16141 * ehelp.el (electric-helpify):
16142 * printing.el (pr-show-setup):
16143 * strokes.el (strokes-help):
16144 * tutorial.el (tutorial--describe-nonstandard-key)
16145 (tutorial--detailed-help):
16146 * woman.el (woman-mini-help, woman-display-extended-fonts):
16147 * calc/calc-help.el (calc-describe-key):
16148 * emulation/edt.el (edt-electric-helpify):
16149 * international/mule-diag.el (mule-diag):
16150 * play/yow.el (apropos-zippy):
16151 * progmodes/python.el (python-describe-symbol):
16152 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
16153 * textmodes/table.el (*table--cell-describe-mode)
16154 (*table--cell-describe-bindings):
16155 Use help-print-return-message rather than the now obsolete alias.
16156
16157 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
16158 (calendar-cursor-to-visible-date):
16159 * play/5x5.el (5x5-position-cursor):
16160 * play/decipher.el (decipher):
16161 * play/gomoku.el (gomoku-goto-xy):
16162 * play/landmark.el (lm-goto-xy):
16163 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
16164 (mpuz-paint-digit):
16165 Use forward-line, not goto-line.
16166
16167 * mail/rmail.el (rmail-obsolete): Delete custom group.
16168 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
16169 (rmail-remote-password, rmail-remote-password-required):
16170 Remove unneeded :set-after and :set properties.
16171
16172 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
16173
16174 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
16175
16176 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
16177
16178 * loadup.el: Remove leftover macos code.
16179
16180 * vc-git.el (vc-git-annotate-command): Run asynchronously.
16181 Explicitly pass the date format to git blame so that user local
16182 so that the output format can be parsed.
16183
16184 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
16185
16186 * net/dbus.el (top): Don't check for (getenv
16187 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
16188
16189 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
16190
16191 * log-edit.el (log-edit-strip-single-file-name): New var.
16192 (log-edit-insert-changelog): Use it. Bug#3571
16193
16194 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
16195
16196 * subr.el (read-passwd): Use read-key so keypad keys work as well.
16197 Bug#3287
16198
16199 * help.el (help-print-return-message): Rename from
16200 print-help-return-message.
16201
16202 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
16203 cvs-mode-map parent hack.
16204 (log-view-mode): Derive from special-mode.
16205
16206 * linum.el (linum-mode): window-size-change-functions is redundant.
16207 Adapt to new window-configuration-change-hook behavior.
16208 (linum-after-size, linum-after-config): Remove.
16209
16210 * imenu.el (imenu-example--name-and-position)
16211 (imenu-example--lisp-extract-index-name)
16212 (imenu-example--create-lisp-index, imenu-example--create-c-index):
16213 Mark as obsolete.
16214
16215 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
16216 (inferior-prolog-mode): Use it.
16217 (inferior-prolog-load-file): Reset list of errors.
16218
16219 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
16220
16221 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
16222
16223 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
16224
16225 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
16226
16227 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
16228 is running already.
16229
16230 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
16231
16232 * subr.el (listify-key-sequence-1): Use normal syntax since those
16233 integers are nowadays always represented by the same (positive) number
16234 on all platforms.
16235 (read-key-empty-map): New const.
16236 (read-key-delay): New var.
16237 (read-key): New function.
16238 (force-mode-line-update): Use with-current-buffer.
16239 (locate-user-emacs-file): Don't forget to abbreviate the file name.
16240 (start-process-shell-command, start-file-process-shell-command):
16241 Discourage the use of command-args.
16242
16243 2009-08-19 Glenn Morris <rgm@gnu.org>
16244
16245 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
16246
16247 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
16248
16249 * simple.el (choose-completion-string): Don't rely on
16250 minibuffer-completing-file-name and ad-hoc checks to decide whether
16251 to continue completion or not.
16252
16253 * minibuffer.el (minibuffer-hide-completions): New function.
16254 (completion--do-completion): Use it.
16255 (completions-annotations): New face.
16256 (completion--insert-strings): Use it.
16257 (completion-pcm--delim-wild-regex): Add docstring.
16258 (completion-pcm--string->pattern): Add support for 0-width delimiters
16259 in completion-pcm--delim-wild-regex.
16260
16261 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
16262
16263 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
16264 Remove unused var `buffer-modified-p'.
16265
16266 * minibuffer.el (completion--do-completion): Move point for the #b001
16267 case as well (bug#4176).
16268 (minibuffer-complete, minibuffer-complete-word): Don't move point.
16269
16270 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
16271
16272 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
16273 and :session buses.
16274
16275 2009-08-18 Kenichi Handa <handa@m17n.org>
16276
16277 * international/ucs-normalize.el (ucs-normalize-version):
16278 Change to 1.1.
16279 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
16280 (utf-8-hfs): Make it perform normalization on encoding too.
16281
16282 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
16283 (sentence-end-without-space): Delete duplicated chars.
16284 (sentence-end-base): Likewise.
16285
16286 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
16287 (html-mode): Delete duplicated chars from sentence-end-base.
16288
16289 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
16290 (texinfo-mode): Delete duplicated chars from sentence-end-base.
16291
16292 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
16293
16294 * files.el (hack-one-local-variable): If the mode function is for
16295 a minor mode, pass it an argument (Bug#4148).
16296
16297 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
16298
16299 * net/tramp.el (tramp-register-completion-file-name-handler):
16300 Check also for (member 'partial-completion completion-styles).
16301
16302 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
16303
16304 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
16305 abbrev (Bug#3943).
16306
16307 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
16308
16309 * progmodes/cperl-mode.el: Merge upstream 6.2.
16310 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
16311 (cperl-forward-re): Check cperl-brace-recursing.
16312 (cperl-highlight-charclass): New function.
16313 (cperl-find-pods-heres): Use it.
16314 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
16315 (cperl-beautify-regexp-piece): Fix column calculation.
16316 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
16317 (cperl-beautify-level): Don't process entire regexp.
16318 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
16319 calling man.
16320 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
16321 (cperl-init-faces): Build a list in the normal way.
16322
16323 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
16324
16325 * calendar/parse-time.el (parse-time-string-chars): Save match
16326 data.
16327
16328 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
16329
16330 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
16331 (sql-product): Use it.
16332 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
16333 (sql-set-product): Add completion.
16334 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
16335 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
16336 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
16337 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
16338 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
16339 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
16340 (sql-highlight-db2-keywords): Remove.
16341 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
16342 (sql-highlight-product): Use derived-mode-p.
16343 (sql-set-sqli-buffer): Use with-current-buffer.
16344 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
16345 Simplify.
16346
16347 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
16348
16349 * term.el: Fix commenting convention, turn comments into docstrings.
16350
16351 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
16352
16353 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
16354
16355 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
16356
16357 * calendar/parse-time.el (parse-time-string-chars): Compute using
16358 character classes, to handle non-ascii characters (Bug#3190).
16359
16360 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
16361
16362 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
16363 another heredoc if the user adds another < (Bug#3226).
16364
16365 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
16366 Don't initialize based on window-system (Bug#4124).
16367
16368 * facemenu.el (facemenu-read-color): Use a completion function
16369 that accepts any defined color, such as RGB triplets (Bug#3677).
16370
16371 * files.el (get-free-disk-space): Change fallback default
16372 directory to /. Expand DIR argument before switching to fallback.
16373 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
16374
16375 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
16376
16377 * files.el (load-library): Doc fix.
16378
16379 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
16380
16381 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
16382 (viper-if-string): Redefine C-s in the minibuffer to insert the last
16383 incremental search string.
16384
16385 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
16386 XEmacs.
16387
16388 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
16389 (ediff-merge-region-is-non-clash)
16390 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
16391 Also check if the job is really a merge job.
16392
16393 * ediff.el (ediff-current-file): New function.
16394
16395 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
16396
16397 * progmodes/js.el: Edit docstrings throughout to follow Emacs
16398 conventions.
16399 (js-insert-and-indent): Delete function.
16400 (js-mode-map): Don't bind keys to js-insert-and-indent.
16401 (js-beginning-of-defun): Rename from js--beginning-of-defun.
16402 (js-end-of-defun): Rename from js--end-of-defun.
16403 (js-auto-indent-flag): Delete variable.
16404
16405 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
16406
16407 * progmodes/js.el: Remove proclaim statement.
16408 Defvar which-func-imenu-joiner-function to silence compiler.
16409
16410 * files.el (auto-mode-alist): Use js-mode for .js files.
16411
16412 * progmodes/js2-mode.el: Remove file.
16413
16414 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
16415
16416 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
16417
16418 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
16419
16420 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
16421 Karl Landstrom <karl.landstrom@brgeight.se>
16422
16423 * progmodes/js.el: New file.
16424
16425 2009-08-14 Mark A. Hershberger <mah@everybody.org>
16426
16427 * timezone.el (timezone-parse-date): Add ability to understand ISO
16428 basic format (minimal separators) dates in addition to the
16429 already-supported extended format dates.
16430
16431 2009-08-14 Eli Zaretskii <eliz@gnu.org>
16432
16433 * international/ucs-normalize.el: Add a `coding' file variable.
16434
16435 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
16436
16437 2009-08-14 Sam Steingold <sds@gnu.org>
16438
16439 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
16440
16441 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
16442
16443 * faces.el (help-argument-name): Define it here instead of
16444 help-fns.el, because in daemon mode help-fns.el may be loaded when
16445 faces are still uninitialized (Bug#1078).
16446
16447 * help-fns.el (help-argument-name): Move defface to faces.el.
16448
16449 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
16450
16451 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
16452 create buffer with a pty but no process so that GDB can make the
16453 inferior the controlling process.
16454
16455 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
16456
16457 * international/ucs-normalize.el: New file.
16458
16459 2009-08-13 Richard Stallman <rms@gnu.org>
16460
16461 * mail/rmail.el (rmail-get-attr-names):
16462 Accept an attribute header that is too short.
16463
16464 * mail/rmail.el (rmail-forget-messages):
16465 Ignore nil elt in rmail-message-vector. Use dotimes.
16466
16467 * progmodes/compile.el (compilation-goto-locus):
16468 Use next-error-move-function.
16469
16470 * simple.el (next-error-move-function): New variable.
16471
16472 2009-08-12 Juri Linkov <juri@jurta.org>
16473
16474 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
16475 always non-nil. (Bug#4052)
16476
16477 * replace.el (read-regexp): Return empty string when
16478 `default-value' is nil.
16479 (keep-lines-read-args): Don't use empty string as the
16480 default value for `read-regexp'. (Bug#2495)
16481
16482 2009-08-12 Juri Linkov <juri@jurta.org>
16483
16484 * international/mule-cmds.el (ucs-insert): Change arguments
16485 from `arg' to `character', `count', `inherit' to be the same
16486 as in `insert-char'. Doc fix. (Bug#4039)
16487
16488 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
16489
16490 2009-08-12 Juri Linkov <juri@jurta.org>
16491
16492 * files-x.el: New file.
16493
16494 * files.el: Move code that deals with adding/deleting
16495 file/directory-local variables to files-x.el.
16496
16497 * Makefile.in (ELCFILES): Add files-x.elc.
16498
16499 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
16500
16501 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
16502 to use `goto-line'.
16503 (gdb-place-breakpoints, gdb-get-location): Rewritten without
16504 `goto-line'.
16505 (gdb-invalidate-disassembly): Do not refresh upon receiving
16506 'update signal. Instead, update all disassembly buffers only after
16507 threads list.
16508 (gdb): Send -target-detach when buffer is killed (Bug#3794).
16509 (gdb-starting): Moved -data-list-register-names...
16510 (gdb-stopped): ...here so it's sent when first thread stops.
16511 (gdb-registers-handler-custom): Do nothing if register names are
16512 unknown yet.
16513
16514 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
16515 from `gdb-mi.el' to avoid extra tangling.
16516
16517 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
16518 change which breaks `gud-def' definitions used in `gdb'.
16519 (gdb-update-gud-running): No extra fuss for updating frame number.
16520
16521 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
16522
16523 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
16524 (describe-language-environment-map, setup-language-environment-map)
16525 (set-coding-system-map): Move initialization into declaration.
16526 (set-language-info-alist): Last arg to define-key-after can be skipped.
16527
16528 * international/quail.el (quail-completion-1): Simplify.
16529 (quail-define-rules): Use slightly more compact code.
16530 (quail-insert-decode-map): Propertize keys, compact columns.
16531
16532 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16533 Add goto-line.
16534
16535 2009-08-10 Miles Bader <miles@gnu.org>
16536
16537 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
16538 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
16539 (js2-instance-member, js2-private-member, js2-private-function-call)
16540 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
16541 (js2-magic-paren, js2-external-variable):
16542 Remove "-face" suffix from face names.
16543 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
16544 (js2-highlight-undeclared-vars, js2-peek-token)
16545 (js2-parse-function-params, js2-mode-show-errors)
16546 (js2-mode-show-warnings, js2-make-magic-delimiter)
16547 (js2-mode-highlight-magic-parens): Update to use new face names.
16548
16549 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
16550
16551 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
16552 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
16553
16554 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
16555
16556 * subr.el: Provide hashtable-print-readable.
16557
16558 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
16559 hs-c-like-adjust-block-beginning.
16560 (hs-hide-block-at-point): Stop hiding at the beginning of
16561 hs-block-end-regexp (Bug#700).
16562
16563 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
16564
16565 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
16566 a macro.
16567 (gdb-registers-handler-custom): Do not fail when register names
16568 are unavailable.
16569
16570 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
16571
16572 * progmodes/gdb-mi.el (gdb-control-all-threads)
16573 (gdb-control-current-thread): Interactive setters for
16574 `gdb-gud-control-all-threads' to use in menu.
16575 (gdb-show-run-p): Show «Go» when process is not active.
16576 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
16577 gud/thread.xpm and gud/all.xpm.
16578
16579 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
16580
16581 * net/net-utils.el (net-utils-font-lock-keywords): New var.
16582 (nslookup-font-lock-keywords): Make it a variable.
16583 (net-utils-mode): New mode for viewing diagnostic network output.
16584 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
16585 (net-utils-run-simple): New function.
16586 (ifconfig, iwconfig, netstat, arp, route): Use it.
16587
16588 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
16589
16590 * progmodes/gdb-mi.el (gdb-read-memory-custom)
16591 (gdb-memory-set-address, def-gdb-set-positive-number)
16592 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
16593 after changing settings.
16594 (gdb-invalidate-disassembly): Update when first shown.
16595 (gdb-edit-locals-value): Fixed.
16596 (gdb-registers-handler-custom): Print registers in right order and
16597 allow changing register values (only for current thread yet).
16598 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
16599 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
16600 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
16601 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
16602 info in mode name.
16603 (gdb-registers-mode-map): TAB to switch to locals.
16604
16605 2009-08-08 Eli Zaretskii <eliz@gnu.org>
16606
16607 * mail/rmail.el (rmail-add-mbox-headers)
16608 (rmail-set-message-counters-counter): Search for
16609 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
16610
16611 2009-08-08 Glenn Morris <rgm@gnu.org>
16612
16613 * Makefile.in (ELCFILES): Update.
16614
16615 2009-08-07 Eli Zaretskii <eliz@gnu.org>
16616
16617 * mail/sendmail.el (mail-yank-original): Set
16618 buffer-file-coding-system from the one used by the message whose
16619 text is yanked.
16620
16621 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
16622 to "windows" when "pgnuplot" is used.
16623 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
16624 call accept-process-output if "pgnuplot" is used.
16625 (calc-graph-init): Don't send -display and -geometry to
16626 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
16627 running "pgnuplot -V" with shell-command-to-string.
16628
16629 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
16630 the default.
16631
16632 2009-08-07 Eli Zaretskii <eliz@gnu.org>
16633
16634 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
16635 org/org-latex.elc.
16636
16637 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
16638
16639 * vc-dispatcher.el (vc-resynch-window): Update comment.
16640
16641 * term.el (term-handle-ansi-escape): Add comments with the
16642 terminfo capabilities implemented.
16643
16644 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
16645
16646 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
16647 (gdb-var-create-handler): Rewritten using JSON parser.
16648 (gdb-propertize-header): Moved earlier.
16649 (gdb-set-header): Removed to avoid duplication.
16650 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
16651 Refresh disassembly buffers only after threads list have been
16652 update.
16653 (gdb-threads-header, gdb-registers-header): Per-buffer header line
16654 variables.
16655
16656 2009-08-04 Juri Linkov <juri@jurta.org>
16657
16658 * files.el: Commands to add/delete file/directory-local variables.
16659 (read-file-local-variable, read-file-local-variable-value)
16660 (read-file-local-variable-mode, modify-file-local-variable)
16661 (modify-file-local-variable-prop-line)
16662 (modify-dir-local-variable): New functions.
16663 (add-file-local-variable, delete-file-local-variable)
16664 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
16665 (add-dir-local-variable, delete-dir-local-variable)
16666 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
16667 (copy-dir-locals-to-file-locals-prop-line): New commands.
16668
16669 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
16670
16671 * abbrev.el (insert-abbrev-table-description): Prettify output.
16672 Suggested by Karl Chen.
16673
16674 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
16675
16676 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
16677 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
16678 (gdb-overlay-arrow-position, gdb-thread-position)
16679 (gdb-disassembly-position): Declare variables.
16680 (gdb-wait-for-pending): Function now.
16681 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
16682 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
16683 compilation goes smoothly.
16684 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
16685 (gdb-non-stop-setting): New customization setting which replaces
16686 `gdb-non-stop' so changing it doesn't break active GDB session.
16687 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
16688 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
16689 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
16690 (gdb-show-threads-by-default): New customization options.
16691 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
16692 routines.
16693 (gdb-get-buffer-create): Send buffers update signal when they are
16694 created.
16695 (gdb-invalidate-locals, gdb-invalidate-registers)
16696 (gdb-invalidate-breakpoints)
16697 (gdb-invalidate-threads, gdb-invalidate-disassembly)
16698 (gdb-invalidate-memory): Accept update signal.
16699 (gdb-current-context-command): Use --frame option.
16700 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
16701 Implement `gdb-frame-number' selection logic.
16702 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
16703 whether to show GUD toolbar buttons.
16704 (gdb-thread-exited): Unselect current thread when it exits.
16705 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
16706 (gdb-mark-line): Routine which sets overlay arrow or inverses
16707 video on fringeless displays.
16708 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
16709 to build aligned columns of data in GDB buffers and set text
16710 properties line-by-line.
16711 (gdb-invalidate-breakpoints)
16712 (gdb-breakpoints-list-handler-custom)
16713 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
16714 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
16715 (gdb-registers-handler-custom): Align data columns.
16716 (gdb-locals-handler-custom): Now prints data like in variable
16717 declarations.
16718 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
16719 Removed confusing buttons.
16720 (gdb-invalidate-threads): Append --frame.
16721 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
16722 between breakpoints/threads buffers.
16723 (gdb-set-window-buffer): Now can ignore dedicated windows.
16724 (gdb-propertize-header): Use `gdb-set-window-buffer'.
16725 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
16726 (def-gdb-thread-buffer-gud-command): Replaces
16727 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
16728 for fine thread control.
16729 (gdb-preempt-existing-or-display-buffer): New function used to
16730 display bound buffers without breaking window layout.
16731 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
16732 (gdb-select-frame): New version of `gdb-frames-select' which now
16733 sets `gdb-frame-number' so commands may use --frame option instead
16734 of inner debugger state.
16735 (gdb-frame-handler): Do not set `gdb-frame-number'.
16736 (gdb-threads-mode-map): Select threads with mouse.
16737
16738 * progmodes/gud.el (gdb-gud-context-call): Declare function to
16739 avoid compilation warning.
16740 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
16741 `gdb-show-stop-p`.
16742
16743 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
16744 Argument `key' renamed to `buffer-type'.
16745 (gdb-current-context-buffer-name): Do not add thread info to
16746 buffer name when no thread is selected.
16747 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
16748 command (bug 3794).
16749 (gdb-thread-selected): Handle `=thread-selected' notification.
16750 (gdb-wait-for-pending): New macro to deal with congestion problems.
16751 (gdb-breakpoints-list-handler-custom): Don't fail on pending
16752 breakpoints.
16753 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
16754 This fixes problem similar to one described in bug 3947.
16755 (gud-menu-map): More menu items.
16756 (gdb-init-1): Reset `gdb-thread-number' to nil.
16757
16758 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
16759 non-stop settings.
16760
16761 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
16762 (gdb-current-context-command): Do not append --thread if
16763 `gdb-thread-number' is nil.
16764 (gdb-running-threads-count, gdb-stopped-threads-count): New
16765 variables.
16766 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
16767 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
16768 customization options.
16769 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
16770 GUD commands.
16771 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
16772 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
16773 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
16774 set `gdb-thread-number' and update `gud-running' properly.
16775 (gdb-running): Update threads list when new threads appear.
16776 (gdb-stopped): Support non-stop operation and new thread switching
16777 logic.
16778 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
16779 (gdb-json-partial-output): New set of JSON routines.
16780 (def-gdb-auto-update-trigger): New `signal-list' optional
16781 argument.
16782 (gdb-thread-list-handler-custom): Update `gud-running',
16783 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
16784 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
16785 (gdb-continue-thread, gdb-step-thread): New commands for fine
16786 thread execution control.
16787 (gud-menu-map): New menu items to switch non-stop options.
16788 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
16789 (gdb-send): Mimic RET properly (bug 3794).
16790
16791 * progmodes/gdb-mi.el (gdb-rules-name-maker)
16792 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
16793 gdb-buffer-rules.
16794 (def-gdb-auto-update-handler): New nopreserve optional argument.
16795 (gdb-stack-list-frames-custom): Print stack from top to bottom.
16796
16797 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
16798 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
16799 (gdb-parent-mode): New mode to derive other GDB modes from.
16800 (gdb-display-disassembly-for-thread)
16801 (gdb-frame-disassembly-for-thread): New commands for threads
16802 buffer.
16803
16804 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
16805 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
16806 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
16807 (gdb-update): We now store all GDB buffers in a list so that they
16808 can be updated by traversing a list instead of calling invalidate
16809 triggers explicitly.
16810 (def-gdb-trigger-and-handler): New macro to define trigger-handler
16811 pair for GDB buffer.
16812 (gdb-stack-buffer-name): Add thread information.
16813 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
16814 handle pending triggers.
16815 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
16816 (def-gdb-thread-buffer-simple-command)
16817 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
16818 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
16819 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
16820 New commands which show buffers bound to thread.
16821 (gdb-stack-list-locals-regexp): Removed unused regexp.
16822
16823 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
16824 (gdb-locals-buffer-name, gdb-registers-buffer-name)
16825 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
16826 to (gud-comint-buffer) in *-buffer-name functions
16827 because (gdb-get-target-string) already does that.
16828 (gdb-locals-handler-custom, gdb-registers-handler-custom)
16829 (gdb-changed-registers-handler): Rewritten without regexps.
16830
16831 * progmodes/gdb-mi.el: Basic thread selection support.
16832 (gdb-thread-number): New variable.
16833 (gdb-current-context-command): New macro which adds --thread
16834 option to command.
16835 (gdb-threads-mode-map): Select thread with SPC.
16836 (gdb-thread-list-handler-custom): Mark current thread with overlay
16837 arrow. Synchronize GDB thread and Emacs thread.
16838 (gdb-select-thread): New command which selects current thread.
16839 (gdb-invalidate-frames, gdb-invalidate-locals)
16840 (gdb-invalidate-registers): Use --thread option.
16841
16842 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
16843
16844 * net/tramp.el (top): Make check for tramp-gvfs loading more
16845 robust. (Bug#3977)
16846 (tramp-handle-insert-file-contents): `unwind-protect' must be
16847 inside `with-parsed-tramp-file-name'.
16848
16849 * net/tramp-gvfs.el (top): Remove superfluous message when loading
16850 fails.
16851
16852 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
16853
16854 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
16855 directory if CLASSPATH is not set.
16856
16857 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
16858
16859 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
16860 New defconst.
16861 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
16862
16863 2009-08-02 Kevin Ryde <user42@zip.com.au>
16864
16865 * net/newst-backend.el (newsticker--raw-url-list-defaults):
16866 Update freshmeat link. Delete newsforge.com as it seems gone.
16867
16868 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
16869
16870 * select.el (x-set-selection): Doc fix (Bug#4021).
16871
16872 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
16873
16874 * help-fns.el (describe-variable): Treat list return values from
16875 dir-locals-find-file properly (Bug#4005).
16876
16877 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
16878
16879 * net/tramp.el (tramp-debug-message): Print also microseconds.
16880
16881 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
16882
16883 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
16884 or END is non-nil.
16885 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
16886 (tramp-get-debug-buffer): Change `outline-regexp' according to new
16887 format.
16888
16889 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
16890 (tramp-get-file-property): Use it.
16891
16892 * autorevert.el (auto-revert-handler): Allow
16893 `auto-revert-tail-mode' for remote files.
16894
16895 2009-08-02 Jason Rumney <jasonr@gnu.org>
16896
16897 * minibuffer.el (read-file-name): Treat confirm options to
16898 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
16899
16900 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
16901
16902 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
16903 (font-lock-variable-name-face, font-lock-constant-face): Darken
16904 the colors for light backgrounds.
16905
16906 2009-08-01 Eli Zaretskii <eliz@gnu.org>
16907
16908 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
16909 month names. (Bug#3987)
16910
16911 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
16912
16913 * simple.el (line-move-finish): Pass whole number to
16914 line-move-to-column.
16915 (line-move-visual): Perform hscroll to the recorded position.
16916
16917 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
16918
16919 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
16920
16921 2009-07-29 Alan Mackenzie <acm@muc.de>
16922
16923 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
16924
16925 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
16926
16927 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
16928 (gdb-place-breakpoints): Use full path when setting breakpoints.
16929
16930 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
16931
16932 * calc/calc.el (calc-mode-map): Add keybinding for
16933 `calc-transpose-lines'.
16934
16935 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
16936
16937 * calc/calc-misc.el (calc-transpose-lines): New function.
16938
16939 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
16940
16941 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
16942 Simplify check for out-of-band methods.
16943 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
16944 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
16945
16946 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
16947
16948 * vc-git.el (vc-git-checkin): Fix typo.
16949
16950 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
16951
16952 * progmodes/js2-mode.el: New file.
16953
16954 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
16955
16956 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
16957 (gud-menu-map): Adjust tooltip accordingly.
16958
16959 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
16960
16961 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
16962 (vc-bzr-log-view-mode): Adjust log-view-file-re.
16963
16964 * add-log.el (change-log-mode-map): Add a menu.
16965
16966 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
16967
16968 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
16969 function returns nil.
16970 (dbus-handle-event): Handle special return value :ignore.
16971 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
16972
16973 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
16974
16975 * view.el (view-mode-enable): Don't define Helper-return-blurb if
16976 it's not needed.
16977
16978 2009-07-25 Eli Zaretskii <eliz@gnu.org>
16979
16980 Fix Bug#3888:
16981
16982 * w32-vars.el (x-select-enable-clipboard): Doc fix.
16983
16984 * term/pc-win.el (x-display-name, x-colors)
16985 (x-select-enable-clipboard, x-select-text): Doc fix.
16986
16987 * term/common-win.el (x-display-name, x-colors): Doc fix.
16988
16989 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
16990 (xw-defined-colors): Doc fix.
16991
16992 * w32-fns.el (x-select-text, x-setup-function-keys)
16993 (x-get-selection, x-set-selection): Doc fix.
16994
16995 * term/x-win.el (x-select-text, x-setup-function-keys)
16996 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
16997
16998 * select.el (x-set-selection): Doc fix.
16999
17000 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
17001
17002 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
17003 instead of "IsNSSSupportAvailable". Avahi ought to work also when
17004 "IsNSSSupportAvailable" method is not available. Reported by
17005 Steve Youngs <steve@sxemacs.org>.
17006
17007 2009-07-24 Kenichi Handa <handa@m17n.org>
17008
17009 * international/characters.el: Fix setting of category ?C, ?|, ?K,
17010 and ?H. Fix setting of case for Latin Extended and Greek Extended.
17011 (build-unicode-category-table): Fix range checks.
17012
17013 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
17014
17015 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
17016 the buffer we try to sync is current when calling
17017 vc-resynch-buffer.
17018
17019 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
17020 not show up to date files.
17021
17022 2009-07-24 Glenn Morris <rgm@gnu.org>
17023
17024 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
17025 Add autoload cookies. If necessary, initialize.
17026 (elint-log): Handle non-file buffers.
17027 (elint-initialize): Add optional argument to reinitialize.
17028 (elint-find-builtin-variables): Save excursion.
17029
17030 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
17031
17032 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
17033 for Lint.
17034
17035 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
17036
17037 * vc.el (vc-print-log-internal): New function, split out from ...
17038 (vc-print-log): ... here.
17039 (vc-dir-move-to-goal-column): Declare.
17040
17041 * vc-git.el (vc-git-add-signoff): New variable.
17042 (vc-git-checkin): Use it.
17043 (vc-git-toggle-signoff): New function.
17044 (vc-git-extra-menu-map): Bind it to menu.
17045 (vc-git--run-command-string): Accept a nil FILE argument.
17046 (vc-git-stash-list): New function.
17047 (vc-git-dir-extra-headers): Use it.
17048
17049 2009-07-23 Glenn Morris <rgm@gnu.org>
17050
17051 * help-fns.el (describe-variable): Describe ignored and risky local
17052 variables in a similar way to that in which we describe safe ones.
17053
17054 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
17055 (byte-compile-output-file-form, byte-compile-output-docform)
17056 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
17057 Give some more local variables with common names a "bytecomp-" prefix,
17058 so as not to shadow things during compilation.
17059 * emacs-lisp/cl-macs.el (load-time-value)
17060 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
17061 `outbuffer' to `bytecomp-outbuffer'.
17062
17063 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
17064 since the next two variables cover them automatically now.
17065 (elint-builtin-variables, elint-autoloaded-variables): New.
17066 (elint-unknown-builtin-args): Remove all members, since they can be
17067 parsed automatically now.
17068 (elint-extra-errors): New.
17069 (elint-env-add-env, elint-env-add-macro): Use cadr.
17070 (elint-current-buffer): Use or. Change final message.
17071 (elint-get-top-forms): Use line-end-position.
17072 (elint-init-env): Use cadr. Handle autoload, declare-function,
17073 and defalias.
17074 (elint-add-required-env): Doc fix. Use or. Standardize error.
17075 (regexp-assoc): Remove unused function.
17076 (elint-top-form): Set elint-current-pos, to record the start of the
17077 top-level form, for compilation-mode.
17078 (elint-form): Trap errors in macro expansion. Use dolist.
17079 (elint-unbound-variable): Use elint-builtin-variables and
17080 elint-autoloaded-variables.
17081 (elint-get-args): Use cadr, or.
17082 (elint-check-cond-form): Use dolist, cadr.
17083 (elint-check-condition-case-form): Doc fix. Use cadr.
17084 Use elint-extra-errors.
17085 (elint-log): New function.
17086 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
17087 Distinguish errors and warnings.
17088 (elint-log-message): Use with-current-buffer. Inhibit read-only.
17089 Use a bytecomp-style format.
17090 (elint-clear-log): Preserve default-directory. Inhibit read-only.
17091 (elint-get-log-buffer): Use compilation mode. Disable undo.
17092 Don't truncate lines.
17093 (elint-initialize): Set builtin and autoloaded variable lists.
17094 Only process elint-unknown-builtin-args if non-nil.
17095 (elint-find-builtin-variables, elint-find-autoloaded-variables):
17096 New functions.
17097 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
17098
17099 2009-07-22 Kevin Ryde <user42@zip.com.au>
17100
17101 * net/newst-backend.el (newsticker--parse-atom-1.0)
17102 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
17103 (newsticker--parse-rss-1.0):
17104 * progmodes/idlwave.el (idlwave-mode):
17105 * progmodes/idlw-shell.el (idlwave-shell-mode):
17106 * progmodes/vera-mode.el (vera-mode):
17107 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
17108 * progmodes/vhdl-mode.el (vhdl-mode):
17109 * textmodes/table.el (table-generate-source)
17110 (table--warn-incompatibility):
17111 Hyperlink urls in docstrings with URL `...'.
17112
17113 2009-07-22 Glenn Morris <rgm@gnu.org>
17114
17115 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
17116 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
17117 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
17118 Remove leading * from defcustom docs.
17119
17120 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
17121
17122 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
17123 defcustom doc.
17124 (list-load-path-shadows): Optionally, just return shadows as a string.
17125
17126 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
17127
17128 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
17129
17130 * mail/rmailedit.el (rmail-edit-mode): Use
17131 auto-save-include-big-deletions.
17132
17133 * mail/rmail.el (rmail-variables): Use
17134 auto-save-include-big-deletions.
17135
17136 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
17137 changes.
17138
17139 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
17140
17141 * calc/calc.el (calc-undo-length): New variable.
17142 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
17143
17144 2009-07-21 Richard Stallman <rms@gnu.org>
17145
17146 * files.el (auto-save-mode): Handle buffer-save-size = -2
17147 for toggling mode.
17148
17149 2009-07-21 Glenn Morris <rgm@gnu.org>
17150
17151 * textmodes/ispell.el (ispell-looking-back): Update declaration.
17152
17153 * calendar/todo-mode.el (calendar-current-date): Update declaration.
17154
17155 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
17156 silence compiler. Instead...
17157 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
17158 (ps-print-ensure-fontified): Update for above function name changes.
17159
17160 * printing.el (pr-mh-get-msg-num, pr-mh-show)
17161 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
17162 silence compiler. Instead...
17163 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
17164 (mh-show-buffer): Only define for compiler.
17165 (pr-mh-current-message): Update for above function name changes.
17166
17167 * files.el (abort-if-file-too-large): Explicitly pass `filename'
17168 as an argument.
17169 (find-file-noselect, insert-file-1): Update for above change.
17170
17171 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
17172
17173 * mail/mailclient.el (mailclient-send-it): Fix message.
17174
17175 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
17176 (edebug-eval): Check cl-debug-env is bound.
17177 (print-level, print-circle): Don't redefine built-in variables.
17178
17179 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
17180 (custom-print-vectors): Remove old comments from doc.
17181
17182 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
17183 (emerge-version): Make the variable an obsolete alias for the
17184 emacs-version variable. Make the function obsolete.
17185 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
17186 Emerge options, rather than merging in into the main Options menu.
17187 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
17188 and auto advance modes. Disable edit/fast items when not relevant.
17189
17190 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
17191
17192 * term/vt420.el (terminal-init-vt420): Fix typo.
17193
17194 2009-07-20 Sam Steingold <sds@gnu.org>
17195
17196 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
17197 variable (removed from compile.el on 2004-03-11).
17198
17199 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
17200
17201 * files.el (hack-local-variables-filter): Fix last change.
17202
17203 2009-07-19 Juri Linkov <juri@jurta.org>
17204
17205 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
17206 (dir-local-variables-alist): New buffer-local variable.
17207 (hack-local-variables-filter): If variable is not dir-local,
17208 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
17209 because file-local overrides dir-local.
17210 (c-postprocess-file-styles) <declare-function>:
17211 Remove obsolete declaration.
17212 (hack-dir-local-variables): Add dir-local variable/value pair to
17213 `dir-local-variables-alist' and remove duplicates. Doc fix.
17214
17215 * help-fns.el (describe-variable): Add information about
17216 file-local and dir-local variables.
17217
17218 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
17219
17220 * files.el (hack-local-variables-filter): Rewrite.
17221
17222 2009-07-19 Glenn Morris <rgm@gnu.org>
17223
17224 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
17225 Silence compiler by only defining on XEmacs.
17226
17227 * international/mule.el (auto-coding-regexp-alist): Only match
17228 BABYL... at the start of buffer, not of lines. (Bug#3790)
17229
17230 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
17231 non-calendar buffers (Bug#3862). Restore "not on a date" message.
17232 (cal-menu-context-mouse-menu): Doc fix.
17233
17234 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
17235
17236 * simple.el (mail-user-agent): Doc fix. Set :version tag.
17237
17238 2009-07-18 Juri Linkov <juri@jurta.org>
17239
17240 * info.el: Virtual Info keyword finder.
17241 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
17242 (Info-finder-file): New variable.
17243 (Info-finder-find-file): New function.
17244 (finder-known-keywords, finder-package-info)
17245 (find-library-name, lm-commentary): Use defvar and
17246 declare-function to silence compiler warnings.
17247 (Info-finder-find-node): New function.
17248 (info-finder): New command.
17249
17250 * subr.el (process-kill-buffer-query-function): New function.
17251 (add-hook)<kill-buffer-query-functions>: Add hook
17252 `process-kill-buffer-query-function'.
17253
17254 2009-07-18 Alan Mackenzie <acm@muc.de>
17255
17256 * progmodes/cc-mode.el (c-before-hack-hook)
17257 (c-postprocess-file-styles): Give invocation of `c-set-style'
17258 DONT-OVERRIDE parameter of t. Already set style variables will
17259 thus not be overridden by style settings given by `c-file-syle'.
17260
17261 * files.el (hack-local-variables-filter): Remove entries with
17262 duplicate keys from `file-local-variables-alist'.
17263
17264 2009-07-18 Eli Zaretskii <eliz@gnu.org>
17265
17266 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
17267 x-set-selection if display-selections-p returns nil for the
17268 current frame.
17269
17270 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
17271
17272 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
17273
17274 2009-07-18 Eli Zaretskii <eliz@gnu.org>
17275
17276 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
17277 Accept nil in addition to a regexp.
17278 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
17279 Accept nil in addition to a regexp.
17280 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
17281 buffers that have an associated file. Handle nil values of
17282 desktop-buffers-not-to-save and desktop-files-not-to-save.
17283 (Bug#3833)
17284
17285 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
17286 (x-disown-selection-internal): New functions.
17287
17288 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
17289
17290 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
17291 warning.
17292 (gdb-breakpoints-header): Move forward to avoid compiler warning.
17293 (gdb-make-header-line-mouse-map): Remove duplicate definition.
17294
17295 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
17296
17297 * simple.el (set-mark): Revert last change.
17298
17299 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
17300
17301 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
17302 rendering of pngs is not possible instead of messaging a long
17303 description.
17304
17305 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
17306
17307 * w32-fns.el (x-selection-owner-p): New function.
17308
17309 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
17310 (mouse-yank-at-click, mouse-yank-primary): If
17311 select-active-regions is non-nil, deactivate the mark before
17312 insertion.
17313
17314 * simple.el (deactivate-mark, set-mark): Only save selection if we
17315 own it.
17316
17317 2009-07-17 Kenichi Handa <handa@m17n.org>
17318
17319 * case-table.el (describe-buffer-case-table): Fix for the case
17320 that KEY is a cons.
17321
17322 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
17323
17324 * vc-rcs.el (vc-rcs-find-file-hook):
17325 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
17326
17327 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
17328
17329 * net/tramp.el (tramp-wait-for-output): Handle the case when
17330 commands do not return a newline but a null byte before the shell
17331 prompt. (Bug#3858)
17332
17333 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17334
17335 * term/ns-win.el (ns-set-alpha): Don't declare.
17336 (ns-set-background-alpha): Remove function.
17337
17338 2009-07-16 Kevin Ryde <user42@zip.com.au>
17339
17340 * emacs-lisp/copyright.el (copyright-update): Save match-data across
17341 y-or-n-p, for safety.
17342
17343 2009-07-16 Richard Stallman <rms@gnu.org>
17344
17345 * files.el (auto-save-mode): If buffer-saved-size is -2,
17346 don't clobber it.
17347
17348 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
17349 (rmail-retry-ignored-headers): Add more uninteresting fields.
17350
17351 2009-07-15 Jari Aalto <jari.aalto@cante.net>
17352
17353 * net/rcirc.el (rcirc): Use history variables.
17354 (rcirc-server-name-history, rcirc-nick-name-history)
17355 (rcirc-server-port-history): New variables.
17356
17357 2009-07-15 Kenichi Handa <handa@m17n.org>
17358
17359 * international/mule-cmds.el (set-language-environment-charset):
17360 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
17361 ignore them.
17362
17363 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
17364 Delete unibyte-display.
17365
17366 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
17367
17368 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
17369
17370 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
17371
17372 * simple.el (deactivate-mark): Optional argument FORCE.
17373 (set-mark): Use deactivate-mark.
17374
17375 * info.el (Info-search): No need to check transient-mark-mode
17376 before calling deactivate-mark.
17377
17378 * select.el (x-set-selection): Doc fix.
17379 (x-valid-simple-selection-p): Allow buffer values.
17380 (xselect--selection-bounds): Handle buffer values. Suggested by
17381 David De La Harpe Golden.
17382
17383 * mouse.el (mouse-set-region, mouse-drag-track): Call
17384 copy-region-as-kill before setting the mark, to let
17385 select-active-regions work.
17386
17387 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
17388
17389 * simple.el (deactivate-mark): If select-active-regions is
17390 non-nil, copy the selection data into a string.
17391 (activate-mark): If select-active-regions is non-nil, set the
17392 selection to the current buffer.
17393 (set-mark): Update selection if select-active-regions is non-nil.
17394
17395 * select.el (x-valid-simple-selection-p): Allow buffer values.
17396
17397 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
17398
17399 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
17400 and more featureful message-mode.
17401
17402 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
17403
17404 * select.el (x-set-selection): Doc fix.
17405 (x-valid-simple-selection-p): Disallow selection data consisting
17406 of a list or cons of integers, since that is not used.
17407 (xselect--selection-bounds, xselect--int-to-cons): New functions.
17408 (xselect-convert-to-string, xselect-convert-to-length)
17409 (xselect-convert-to-filename, xselect-convert-to-charpos)
17410 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
17411
17412 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
17413
17414 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
17415 output in -break-info command (Emacs bug #3794).
17416
17417 2009-07-14 Glenn Morris <rgm@gnu.org>
17418
17419 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
17420 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
17421 (edebug-print-length, edebug-print-level, edebug-print-circle)
17422 (edebug-sit-for-seconds, edebug-view-outside)
17423 (edebug-bounce-point, edebug-set-global-break-condition)
17424 (edebug-Go-nonstop-mode, edebug-trace-mode)
17425 (edebug-Trace-fast-mode, edebug-continue-mode)
17426 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
17427 (edebug-visit-eval-list): Doc fixes.
17428
17429 * subr.el (def-edebug-spec): Doc fix.
17430
17431 2009-07-14 Kenichi Handa <handa@m17n.org>
17432
17433 * international/characters.el: Fix setting of category ?C.
17434
17435 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
17436
17437 * term/ns-win.el (x-select-font): defalias x-select-font to
17438 ns-popup-font-panel instead of generate-fontset-menu.
17439
17440 2009-07-12 Eli Zaretskii <eliz@gnu.org>
17441
17442 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
17443
17444 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
17445
17446 * arc-mode.el (archive-find-type): Allow for a PK00 string before
17447 the PK\003\004 header (Bug#3770).
17448
17449 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
17450
17451 * pcomplete.el (pcomplete-comint-setup): Check for
17452 shell-dynamic-complete-filename too.
17453
17454 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
17455
17456 * simple.el (temporary-goal-column): Change the value for
17457 line-move-visual to a cons cell.
17458 (line-move-visual): Record or set the window hscroll, if
17459 necessary (Bug#3494).
17460 (line-move-1): Handle cons value of temporary-goal-column.
17461
17462 2009-07-11 Kenichi Handa <handa@m17n.org>
17463
17464 * international/mule-diag.el (describe-character-set): Don't show
17465 width.
17466
17467 2009-07-10 Sam Steingold <sds@gnu.org>
17468
17469 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17470 Omake sometimes indents the errors it prints, so allow all
17471 regexps to start with spaces.
17472
17473 2009-07-10 Eli Zaretskii <eliz@gnu.org>
17474
17475 * cus-edit.el (customize-changed-options-previous-release):
17476 Bump value to 22.1. (Bug#3804)
17477
17478 2009-07-08 Sam Steingold <sds@gnu.org>
17479
17480 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
17481 to be a cons cell (test . ignored-directory) to selectively ignore
17482 some directories depending on the location of the search.
17483
17484 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
17485
17486 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
17487 remote user is root, on the local host.
17488 (tramp-local-host-p): Either the local user or the remote user
17489 must be root. (Bug#3771)
17490
17491 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
17492
17493 * progmodes/gdb-mi.el (gdb): Remove description of
17494 gdb-use-separate-io-buffer.
17495 (menu): Don't allow toggling of or enable
17496 gdb-use-separate-io-buffer from menubar.
17497
17498 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
17499
17500 * mail/unrmail.el (unrmail): Make sure the message ends with two
17501 newlines (Bug#3769).
17502
17503 2009-07-08 Glenn Morris <rgm@gnu.org>
17504
17505 * calendar/calendar.el (calendar-current-date): Rework previous change.
17506
17507 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
17508
17509 * calendar/calendar.el (calendar-current-date):
17510 Add an optional argument giving an offset from today.
17511
17512 2009-07-08 Glenn Morris <rgm@gnu.org>
17513
17514 * tutorial.el (tutorial--describe-nonstandard-key):
17515 Adjust the message for when a key has been unbound.
17516 (help-with-tutorial): Hide the arch-tag.
17517
17518 2009-07-08 Kenichi Handa <handa@m17n.org>
17519
17520 * international/fontset.el (setup-default-fontset): For each
17521 script, append (not set) font-specs.
17522
17523 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
17524 docstring.
17525
17526 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
17527
17528 * progmodes/gdb-mi.el (gdb-init-1): Move sending
17529 -data-list-register-names to ...
17530 (gdb-starting): ... here because GDB 7.0 requires execution to
17531 have started when using this MI command.
17532 (gdb-set-header): New function to distinguish select and
17533 unselected tabs in gdb buffers.
17534 (gdb-propertize-header): New macro that uses gdb-set-header.
17535 (gdb-breakpoints-header, gdb-locals-header): Use it.
17536 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
17537
17538 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
17539
17540 * Makefile.in (ELCFILES): Remove fadr.elc.
17541
17542 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
17543
17544 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
17545 may contain frame information, so `string-match' should be used.
17546 (gdb-update): Disassembly is invalidated through
17547 `gdb-get-selected-frame'.
17548 (gdb-pad-string): New function to pad string with spaces.
17549 (gdb-invalidate-disassembly): Invalidate only if the buffer
17550 exists.
17551 (gdb-disassembly-handler-custom): Column alignment.
17552 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
17553 placing new ones.
17554 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
17555 end of line, too.
17556 (gdb-frame-handler): Match convention to for disassembly buffer
17557 mode name.
17558 (gdb-stack-list-frames-handler): Rewritten without regexps.
17559 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
17560 not highlight breakpoints without line information.
17561 (gdb-input): Add trailing newline to command.
17562
17563 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
17564 buffer properly.
17565 (gdb-breakpoints-list-handler-custom): Replacement for
17566 `gdb-break-list-handler'. Using real parser instead of regexps
17567 now.
17568 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
17569 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
17570 to place breakpoints.
17571 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
17572 functions.
17573 (gdb-disassembly-handler-custom): Show overlay arrow.
17574 (gdb-disassembly-place-breakpoints): Show breakpoints in
17575 disassembly buffer.
17576 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
17577 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
17578 instead of parsing breakpoints buffer. Fixed old menu references
17579 in `gud-menu-map'.
17580
17581 * fadr.el: Remove.
17582
17583 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
17584 (gdb-memory-address): New variable which holds top address of
17585 memory page shown in memory buffer.
17586 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
17587 customization variables.
17588 New functions:
17589 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
17590 display the memory buffer.
17591 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
17592 buffer display parameters.
17593 (def-gdb-memory-format, gdb-memory-format-binary)
17594 (gdb-memory-format-octal, gdb-memory-format-unsigned)
17595 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
17596 Functions for setting memory buffer format.
17597 (gdb-memory-unit-word, gdb-memory-unit-halfword)
17598 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
17599 unit size used in memory buffer.
17600 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
17601 to next/previous page of memory buffer.
17602 Now using (bindat-get-field) instead of fadr functions.
17603
17604 2009-07-07 Sam Steingold <sds@gnu.org>
17605
17606 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
17607 non-top-level files.
17608
17609 2009-07-07 Kenichi Handa <handa@m17n.org>
17610
17611 * international/mule-cmds.el (reset-language-environment): Put
17612 the highset priority to the charset iso-8859-1.
17613
17614 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
17615
17616 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
17617 to the end of the line when locating the block (Bug#700).
17618
17619 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
17620
17621 * net/tramp.el (tramp-handle-write-region): Flush file properties
17622 in case of short track.
17623
17624 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
17625
17626 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
17627 Coded custom representation of verilog error regular expressions
17628 to work with Emacs-22's new format.
17629 (verilog-error-regexp-xemacs-alist): Coded custom representation
17630 of verilog error regular expressions to work with XEmacs format.
17631 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
17632 error recognition into XEmacs.
17633 (verilog-error-regexp-add-emacs): Hook routine to install verilog
17634 error recognition into Emacs-22.
17635
17636 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
17637
17638 * woman.el: Remove stand-alone closing parentheses.
17639 (woman-file-name, woman2-format-paragraphs)
17640 (woman-leave-blank-lines): Code cleanup.
17641 (woman-use-own-frame): Change default to nil.
17642 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
17643 defaults to inherit from default faces.
17644 (woman2-process-escapes): Consume the newline after a stand-alone
17645 filler character (Bug#3651).
17646
17647 2009-07-06 Glenn Morris <rgm@gnu.org>
17648
17649 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
17650 (top-level): Move provide to the end.
17651 (ffap): Remove defunct URL from custom group.
17652
17653 * subr.el (eval-after-load): Doc fix.
17654
17655 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
17656
17657 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
17658 `calc-embedded-word' is called twice.
17659
17660 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
17661
17662 * files.el (find-alternate-file-other-window, find-alternate-file):
17663 Obey confirm-nonexistent-file-or-buffer.
17664
17665 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
17666
17667 * dired-aux.el (dired-show-file-type): Handle remote files.
17668
17669 2009-07-05 Jari Aalto <jari.aalto@cante.net>
17670
17671 * desktop.el (desktop-globals-to-save):
17672 Add file-name-history (Bug#2750).
17673
17674 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
17675
17676 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
17677
17678 2009-07-04 Johan Bockgård <bojohan@gnu.org>
17679
17680 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
17681 property on entire argument since this is what eshell-lisp-command
17682 expects.
17683
17684 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
17685
17686 * net/tramp-gvfs.el (tramp-gvfs-methods)
17687 (tramp-gvfs-zeroconf-domain)
17688 (tramp-bluez-discover-devices-timeout): Add version flag.
17689 (tramp-gvfs-handler-mounted-unmounted)
17690 (tramp-gvfs-connection-mounted-p): Polish handling of
17691 incompatibilities between GVFS 0.2 and 1.0.
17692
17693 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
17694
17695 * cus-start.el (all): Add make-pointer-invisible.
17696
17697 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
17698
17699 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
17700 formatted correctly.
17701
17702 2009-07-02 Juri Linkov <juri@jurta.org>
17703
17704 * info.el: Virtual Info files and nodes.
17705 (Info-virtual-files, Info-virtual-nodes): New variables.
17706 (Info-current-node-virtual): New variable.
17707 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
17708 New functions.
17709 (Info-file-supports-index-cookies): Use Info-virtual-file-p
17710 to check for a virtual file instead of checking a fixed list
17711 of node names.
17712 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
17713 instead of ad-hoc processing of "dir" and (apropos history toc).
17714 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
17715 instead of ad-hoc processing of "dir" and (apropos history toc).
17716 Reread a file when moving from a virtual node.
17717 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
17718 (Info-directory-toc-nodes, Info-directory-find-file)
17719 (Info-directory-find-node): New functions.
17720 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
17721 (Info-history): Move part of code to
17722 `Info-history-find-node'.
17723 (Info-history-toc-nodes, Info-history-find-file)
17724 (Info-history-find-node): New functions.
17725 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
17726 (Info-toc): Move part of code to `Info-toc-find-node'.
17727 (Info-toc-find-node): New function.
17728 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
17729 the current Info file name to references because now the node
17730 "*TOC*" belongs to the same Info manual.
17731 (Info-toc-build): Rename from `Info-build-toc'.
17732 (Info-toc-nodes): Rename input argument `file' to `filename'.
17733 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
17734 instead of ad-hoc processing of ("dir" apropos history toc).
17735 (Info-index-nodes): Use Info-virtual-file-p
17736 to check for a virtual file instead of checking a fixed list
17737 of node names.
17738 (Info-index-node): Add check for `Info-current-node-virtual'.
17739 Raise `save-match-data' higher up the tree to contain
17740 `search-forward' too (bug fix).
17741 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
17742 (Info-virtual-index-nodes): New variable.
17743 (Info-virtual-index-find-node, Info-virtual-index): New functions.
17744 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
17745 (Info-apropos-file, Info-apropos-nodes): New variables.
17746 (Info-apropos-toc-nodes, Info-apropos-find-file)
17747 (Info-apropos-find-node, Info-apropos-matches): New functions.
17748 (info-apropos): Move part of code to `Info-apropos-find-node' and
17749 `Info-apropos-matches'.
17750 (Info-mode-map): Bind "I" to `Info-virtual-index'.
17751 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
17752 for a virtual file instead of checking a fixed list of node names.
17753
17754 * simple.el (async-shell-command): New command.
17755
17756 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
17757
17758 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
17759 instead of `mount-info'.
17760
17761 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
17762
17763 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
17764 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
17765
17766 2009-07-02 Kenichi Handa <handa@m17n.org>
17767
17768 * international/mule.el (set-keyboard-coding-system): Force *-unix
17769 coding-system to avoid eol conversion.
17770
17771 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
17772
17773 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
17774 Add handler for `process-file', `shell-command' and
17775 `start-file-process'.
17776 (tramp-gvfs-handle-shell-command)
17777 (tramp-gvfs-handle-start-file-process)
17778 (tramp-gvfs-handle-process-file): New defuns.
17779 (tramp-synce-list-devices): Simplify check for existence of property.
17780
17781 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
17782
17783 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
17784
17785 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
17786
17787 * language/korean.el (set-language-info-alist): Add korean-cp949,
17788 cp949 to spec.
17789
17790 2009-07-01 Kenichi Handa <handa@m17n.org>
17791
17792 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
17793
17794 * international/encoded-kb.el: Deleted.
17795
17796 * international/mule.el (set-keyboard-coding-system): Perform the
17797 necessary setup here instead of calling encoded-kbd-setup-display.
17798
17799 2009-07-01 Glenn Morris <rgm@gnu.org>
17800
17801 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
17802
17803 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
17804
17805 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
17806
17807 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
17808
17809 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
17810 Handle also the 'rename case, when setting file modes. (Bug#3712)
17811 (tramp-default-file-modes): Remove execute permissions.
17812
17813 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
17814 (top): Add a default for "synce" in `tramp-default-user-alist'.
17815 Add completion function for "synce" method.
17816 (tramp-hal-service, tramp-hal-path-manager)
17817 (tramp-hal-interface-manager, tramp-hal-interface-device):
17818 New defconst.
17819 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
17820 (tramp-synce-list-devices, tramp-synce-parse-device-names):
17821 New defuns.
17822
17823 * net/trampver.el: Update release number.
17824
17825 2009-06-30 Kenichi Handa <handa@m17n.org>
17826
17827 * international/fontset.el (setup-default-fontset): Add CJK fonts
17828 for symbols and the other miscellaneous characters.
17829
17830 * language/korea-util.el (setup-korean-environment-internal):
17831 Make char-width-table suitable for Korean environments.
17832 (exit-korean-environment): Cancel above.
17833
17834 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
17835 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
17836 setup-function to make char-width-table suitable for respective
17837 environments, and an exit-function to cancel that.
17838
17839 * language/japan-util.el (setup-japanese-environment-internal):
17840 Call use-cjk-char-width-table with arg `ja_JP'.
17841
17842 * international/characters.el (cjk-char-width-table): Delete it.
17843 (cjk-char-width-table-list): New variable.
17844 (use-cjk-char-width-table): New arg local-name.
17845 (use-default-char-width-table): Fix for the case that Emacs is
17846 already using the default char-width-table.
17847
17848 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
17849
17850 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
17851 modes mandatory. (Bug#3712)
17852
17853 2009-06-29 Alan Mackenzie <acm@muc.de>
17854
17855 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
17856 correction between the visible width of TABs and their number of bytes.
17857
17858 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
17859
17860 * server.el (server-buffer-done): Prevent kill-buffer from
17861 prompting by clearing the buffer modification flag (Bug#3696).
17862
17863 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
17864
17865 * progmodes/verilog-mode.el (verilog-beg-of-statement)
17866 (verilog-endcomment-reason-re): Support unique case and priority case.
17867 (verilog-basic-complete-re): Support localparam lineup.
17868 (verilog-beg-of-statement-1): Fix for robustness, unique case.
17869 (verilog-set-auto-endcomments): Fix for unique case, always_comb
17870 commenting.
17871 (verilog-leap-to-case-head): Now support *nested* unique &
17872 priority case statements.
17873 (verilog-auto-lineup): Make just declarations the default (as it
17874 had been).
17875 (verilog-leap-to-case-head): Support priority/unique case statements.
17876 (verilog-auto-lineup): Rework to give users radio buttons to
17877 select the various styles of automatic lineup.
17878 (verilog-error-regexp-alist): Rework to support the XEmacs style
17879 of error regular expressions from compilers, lint tools &
17880 simulators. Note that GNU Emacs has made it impossible for a mode
17881 to load such things.
17882 (electric-verilog-terminate-line, verilog-indent-declaration)
17883 (verilog-auto-wiure): Rework for radio button selection of
17884 auto-lineup selection of specification of auto lineup.
17885 (verilog-beg-of-statement-1): Redesign to support proper operation
17886 in additional code, based on testing with auto-lineup.
17887 (verilog-calculate-indent, assignments & declarations)
17888 (verilog-backward-token): Enhance to support auto-lineup of
17889 assignments & declarations.
17890 (verilog-in-directive-p, verilog-at-struct-p): New function for
17891 easy test of whether we are.
17892 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
17893 to support safe execution at almost anyline.
17894 (verilog-calc-1): Properly support indenting deep inside generate
17895 blocks.
17896 (verilog-init-font): Remove definition & use of verilog-init-font,
17897 as it is redundant with font-lock-defaults.
17898 (verilog-mode): Alter the definition of verilog-font-lock-defaults
17899 to avoid circular calls if syntax-ppss is a function (as is the
17900 case now in 22.x GNU Emacs) as that function would sometimes call
17901 itself, leading to (nearly) infinite recursion.
17902 (verilog-ovm-begin-re, verilog-ovm-end-re)
17903 (verilog-ovm-statement-re, verilog-leap-to-head)
17904 (verilog-backward-token): Add support for OVM macros. Some are
17905 complete statements, and others open and close scopes like begin
17906 and end.
17907 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
17908 (verilog-defun-level-generate-only-re): Really fix the defun-list
17909 compilation issue.
17910 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
17911 coverpoint, constraint and cross statements.
17912 (verilog-defun-level-list, verilog-generate-defun-level-list)
17913 (verilog-all-defun-level-list): Redo these specifications - it is
17914 too hard to support eval-when compile aggregation of lists also
17915 built at when-compile time.
17916 (verilog-defun-level-list): Place defconsts of variables used in
17917 building regular expressions which are built in eval-when-compile
17918 bodies in the same eval-when-compile body to facilitate compile
17919 without load.
17920 (verilog-beg-block-re-ordered): Support indenting
17921 virtual/protected tasks and functions.
17922 (verilog-defun-level-list, verilog-in-generate-region-p)
17923 (verilog-backward-ws&directives, verilog-calc-1): Speed up
17924 indentation of some module items (generate items).
17925 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
17926 across virtual/protected tasks and functions.
17927
17928 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
17929
17930 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
17931 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
17932 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
17933 in concatenations. Reported by Yishay Belkind.
17934 (verilog-auto-ascii-enum): Support one-hot state machines in
17935 AUTOASCIIENUM. Suggested by Lloyd Gomez.
17936 (verilog-auto-inst, verilog-auto-inst-port): Include interface
17937 modport in AUTOINST and add vl-modport for users. Reported by
17938 David Rogoff.
17939 (verilog-auto-inout-module, verilog-auto-inst)
17940 (verilog-decls-get-interfaces, verilog-insert-definition)
17941 (verilog-insert-one-definition, verilog-read-decls)
17942 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
17943 (verilog-sig-modport, verilog-signals-combine-bus)
17944 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
17945 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
17946 Suggested by David Rogoff.
17947 (verilog-repair-open-comma): Fix non-insertion of comma when
17948 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
17949 (verilog-make-width-expression): Simplify [A-1:0] expression
17950 widths to just {A{1'b0}}.
17951 (verilog-mode): Cleanup checkdoc warnings.
17952 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
17953 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
17954 inputs/outputs or data type. Suggested by Vasu Kandadi.
17955 (next-error-last-buffer): Fix byte-compiler warning.
17956 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
17957 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
17958 or shell command text during AUTO expansion. Suggested by Tad Truex.
17959 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
17960 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
17961 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
17962 in AUTOINOUT. Reported by Matthew Lovell.
17963 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
17964 causing use of <= assignments. Reported by Alex Reed.
17965 (verilog-read-decls): Fix triand, trior, wand, wor to be
17966 recognized by AUTOWIRE. Reported by Spencer Isaacson.
17967 (verilog-extended-complete-re): Support import "DPI-C" functions.
17968 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
17969 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
17970 (verilog-insert-date, verilog-insert-year)
17971 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
17972 Windows systems. Reported by Michael Potts.
17973 (verilog-read-module-name): Fix AUTOINST when the child module
17974 declaration's name is a tick define. Reported by Elliot Mednick.
17975 (verilog-read-decls): Fix V2K parameter bit subscripts getting
17976 passed to next parameter's definition. Reported by Bruce T.
17977 (verilog-read-decls): Fix detecting "parameter int" when using
17978 AUTOINSTPARAM. Reported by Bruce T.
17979 (verilog-goto-defun): Fix goto not finding modules unless first
17980 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
17981 (verilog-mode): Expand -f flag arguments on entry to mode so
17982 verilog-goto-defun will work. Reported by Lawrence Butcher.
17983 (verilog-getopt): Expand environment variables in -f file
17984 arguments. Suggested by Lawrence Butcher.
17985 (verilog-set-define): Fix "Symbol's value as variable is void"
17986 when reading enumerations.
17987 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
17988 Suggested by Stephen Peltan.
17989 (verilog-read-defines): Fix reading of enumerations in include
17990 files. Reported by Steve Peltan.
17991
17992 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
17993
17994 * files.el (trash-directory): Fix defcustom type.
17995
17996 2009-06-28 Juri Linkov <juri@jurta.org>
17997
17998 * help-fns.el (describe-function-1): Correctly locate adviced
17999 functions in hyperlink (Bug#2438).
18000
18001 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
18002
18003 * files.el (trash-directory): Change default to nil.
18004 (move-file-to-trash): If trash-directory is nil and
18005 system-move-file-to-trash is unbound, perform freedesktop-style
18006 trashing.
18007
18008 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
18009
18010 * files.el (move-file-to-trash): Add freedesktop trash
18011 support (Bug#973).
18012
18013 2009-06-28 Glenn Morris <rgm@gnu.org>
18014
18015 * autorevert.el (global-auto-revert-non-file-buffers)
18016 (global-auto-revert-mode): Doc fixes.
18017
18018 2009-06-27 Johan Bockgård <bojohan@gnu.org>
18019
18020 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
18021
18022 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
18023
18024 * faces.el (x-handle-named-frame-geometry): Ensure that we have
18025 opened an X connection before calling x-get-resource (Bug#3194).
18026
18027 * play/doctor.el: Remove reference to obsolete website.
18028 (make-doctor-variables): Correct grammar mistake (Bug#2633).
18029
18030 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
18031
18032 Remove find-file-not-found-hook VC method. (Bug#2757)
18033 * vc-hooks.el (vc-file-not-found-hook)
18034 (vc-default-find-file-not-found-hook): Remove functions.
18035 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
18036 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
18037 * vc.el:
18038 * vc-hg.el:
18039 * vc-git.el: Do not mention find-file-not-found-hook VC method.
18040
18041 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
18042
18043 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
18044 compatibility function for `looking-back'.
18045
18046 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
18047 Use `ispell-looking-back'.
18048
18049 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
18050
18051 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
18052 rather than `filename'.
18053
18054 2009-06-23 Miles Bader <miles@gnu.org>
18055
18056 * face-remap.el (text-scale-set): New function.
18057
18058 2009-06-23 Glenn Morris <rgm@gnu.org>
18059
18060 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
18061
18062 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
18063
18064 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
18065
18066 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
18067
18068 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
18069 Simplify Persian conditionals.
18070
18071 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
18072 variable `filename'.
18073
18074 * comint.el (comint-insert-input): Doc fix.
18075
18076 * Makefile.in (ELCFILES): Fix typo in previous change.
18077
18078 2009-06-23 Miles Bader <miles@gnu.org>
18079
18080 * cus-start.el: Add entry for `recenter-redisplay'.
18081
18082 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
18083
18084 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
18085 Add an optional argument for the backend, use it instead of
18086 calling vc-backend.
18087 (vc-mode-line): Add an optional argument for the backend.
18088 Pass the backend to vc-state and vc-working-revision. Move code for
18089 special handling for vc-state being a buffer to ...
18090
18091 * vc-rcs.el (vc-rcs-find-file-hook):
18092 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
18093
18094 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
18095 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
18096 vc-stay-local-p and vc-mode-line calls.
18097
18098 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
18099 (vc-cvs-diff, vc-cvs-annotate-command)
18100 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
18101 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
18102 vc-mode-line calls.
18103
18104 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
18105 direct comparison.
18106 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
18107 backend when calling vc-mode-line.
18108 (vc-register): Do not create a closure for calling the vc register
18109 function, call it directly.
18110
18111 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
18112
18113 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
18114 to make it obvious item can be clicked.
18115
18116 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
18117
18118 2009-06-23 Kenichi Handa <handa@m17n.org>
18119
18120 * language/korea-util.el (korean-key-bindings): Change the binding
18121 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
18122 same command.
18123
18124 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
18125
18126 Sync with Tramp 2.1.16.
18127
18128 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
18129
18130 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
18131 when a loading of a package fails. Completion function for rsync
18132 is `tramp-completion-function-alist-ssh'.
18133 (all): Replace all calls of `split-string' and
18134 `tramp-split-string' by `tramp-compat-split-string'.
18135 (tramp-default-method): Use `tramp-compat-process-running-p'.
18136 (tramp-default-proxies-alist): Allow also Lisp forms.
18137 (tramp-remote-path): Add choice "Private Directories".
18138 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
18139 (tramp-domain-regexp): Allow also "-", "_" and ".".
18140 (tramp-end-of-output): Remove newlines, and add "$" at the end.
18141 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
18142 (tramp-debug-message): Insert header line in debug buffer.
18143 (tramp-handle-directory-files-and-attributes-with-stat):
18144 Care about filenames with spaces, or starting with "-".
18145 (tramp-handle-dired-uncache): New defun.
18146 (tramp-handle-insert-directory): Don't flush the directory from
18147 cache, this is handled by `dired-uncache' now.
18148 (tramp-handle-insert-file-contents): Improve error handling.
18149 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
18150 Quote `tramp-end-of-output'.
18151 (tramp-action-password): Improve trace message.
18152 (tramp-check-for-regexp): Both echoes must be present, before removing.
18153 (tramp-open-connection-setup-interactive-shell): Trace coding system.
18154 (tramp-compute-multi-hops): Eval cons cells of
18155 `tramp-default-proxies-alist'.
18156 (tramp-maybe-open-connection): Use the same command pattern for
18157 first hop and further hops.
18158 (tramp-wait-for-output): Remove handling of newlines.
18159 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
18160 (tramp-split-string): Remove function. It is handled in
18161 tramp-compat now.
18162
18163 * net/tramp-cmds.el (tramp-bug):
18164 Recommend `tramp-cleanup-all-connections' in the bug mail.
18165
18166 * net/tramp-compat.el (tramp-compat-split-string)
18167 (tramp-compat-process-running-p): New defuns.
18168
18169 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
18170 for `dired-uncache'.
18171
18172 * net/tramp-gvfs.el: New package.
18173
18174 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
18175 Add handler for `dired-uncache'.
18176 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
18177
18178 * net/trampver.el: Update release number. Make version check fit
18179 for SXEmacs 22.
18180
18181 2009-06-22 Jim Meyering <meyering@redhat.com>
18182
18183 Automatically handle .xz suffix (XZ-compressed files), too.
18184 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
18185 XZ is the successor to LZMA: <http://tukaani.org/xz/>
18186
18187 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
18188 Nick Roberts <nickrob@snap.net.nz>
18189
18190 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
18191 repository (http://sphinx.net.ru/hg/gdb-mi/).
18192
18193 2009-06-22 Glenn Morris <rgm@gnu.org>
18194
18195 * files.el (dir-locals-collect-mode-variables): Allow for any number of
18196 `mode' and `eval' entries. (Bug#3430)
18197
18198 * Makefile.in (ELCFILES): Add fadr.elc.
18199
18200 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
18201 differing behavior of \n and ^ in strings. (Bug#3385)
18202
18203 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
18204
18205 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
18206 property.
18207 (lisp-indent-function): Make it a defcustom.
18208
18209 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
18210
18211 * progmodes/gdb-ui.el: Replace with ...
18212 * progmodes/gdb-mi.el: ... this file.
18213 * progmodes/gud.el: Modify for gdb-mi.el.
18214
18215 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
18216
18217 * fadr.el: New file.
18218
18219 See ChangeLog.14 for earlier changes.
18220
18221 ;; Local Variables:
18222 ;; coding: utf-8
18223 ;; End:
18224
18225 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
18226
18227 This file is part of GNU Emacs.
18228
18229 GNU Emacs is free software: you can redistribute it and/or modify
18230 it under the terms of the GNU General Public License as published by
18231 the Free Software Foundation, either version 3 of the License, or
18232 (at your option) any later version.
18233
18234 GNU Emacs is distributed in the hope that it will be useful,
18235 but WITHOUT ANY WARRANTY; without even the implied warranty of
18236 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18237 GNU General Public License for more details.
18238
18239 You should have received a copy of the GNU General Public License
18240 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.