* lisp/eshell/em-cmpl.el (eshell-pcomplete): New command.
[bpt/emacs.git] / lisp / ChangeLog
1 2012-11-15 Glenn Morris <rgm@gnu.org>
2
3 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
4 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
5
6 * faces.el (face-underline-p): Doc fix. Handle :underline being
7 things other than `t' (a string, a list).
8 (face-inverse-video-p): Doc fix.
9 (set-face-underline): Rename it back from set-face-underline-p.
10 Doc fix. Allow interactive input of values other than t.
11 (read-face-attribute): Apply formatting to :underline,
12 since like :box and :stipple it can take list values.
13
14 * term.el (ansi-term): Don't let C-x escape-char binding
15 clobber the more standard C-c binding. (Bug#12842)
16
17 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
18
19 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
20 (bug#12879).
21
22 2012-11-14 Glenn Morris <rgm@gnu.org>
23
24 * subr.el (set-temporary-overlay-map): Doc fix.
25
26 2012-11-13 Martin Rudalics <rudalics@gmx.at>
27
28 * window.el (record-window-buffer)
29 (display-buffer-record-window): When copying the markers to
30 window-point preserve window-point-insertion-type. (Bug#12588)
31
32 2012-11-13 Glenn Morris <rgm@gnu.org>
33
34 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
35 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
36 Use new names for hooks rather than obsolete aliases.
37
38 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
39
40 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
41
42 2012-11-12 Wolfgang Jenkner <wjenkner@inode.at>
43
44 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
45 39 and 49. This fixes bug#12792. Also, treat unimplemented
46 parameters as 0, thereby restoring the behavior of revisions prior
47 to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
48
49 2012-11-12 Fabián Ezequiel Gallina <fgallina@cuca>
50
51 Fix end-of-defun misbehavior.
52 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
53 python-beginning-of-defun-function. Handle nested defuns
54 correctly.
55 (python-nav-end-of-defun): Rename from
56 python-end-of-defun-function. Ensure forward movement.
57 (python-info-current-defun): Reimplement to work as intended
58 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
59 parent defuns as soon as possible.
60
61 2012-11-12 Glenn Morris <rgm@gnu.org>
62
63 * progmodes/flymake.el (flymake-error-bitmap)
64 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
65 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
66
67 2012-11-12 Dmitry Gutov <dgutov@yandex.ru>
68
69 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
70 backward, always stop at indentation. Reverts the change from
71 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
72
73 2012-11-11 Glenn Morris <rgm@gnu.org>
74
75 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
76 Add ibuffer-filter-by-derived-mode.
77
78 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
79 the same name shadowing each other.
80
81 * window.el (with-temp-buffer-window): Doc tweak.
82
83 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
84
85 * help.el (temp-buffer-max-height):
86 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
87 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
88
89 2012-11-10 Leo Liu <sdl.web@gmail.com>
90
91 * ido.el (ido-set-matches-1): Fix split-string args to avoid
92 performance issue. (Bug#12796)
93
94 2012-11-10 Glenn Morris <rgm@gnu.org>
95
96 * term.el (term-default-fg-color, term-default-bg-color):
97 Make obsolete, rather than just saying "deprecated" in the doc.
98
99 * term.el (term): Rename from `term-face'.
100 (term-current-face, ansi-term-color-vector)
101 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
102 Update all users.
103
104 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
105
106 * server.el (server-create-window-system-frame): Improve comment.
107
108 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
109
110 * server.el (server-create-window-system-frame): Handle Nextstep
111 specially (Bug#12780).
112
113 2012-11-08 Glenn Morris <rgm@gnu.org>
114
115 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
116 Unautoload, and make obsolete. (Bug#7449)
117
118 2012-11-08 Chong Yidong <cyd@gnu.org>
119
120 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
121 rename from diff-remove-trailing-whitespace (Bug#12831).
122
123 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
124
125 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
126 miscompilation of trace.el.
127
128 2012-11-08 Glenn Morris <rgm@gnu.org>
129
130 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
131
132 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
133
134 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
135 (bug#12812).
136
137 2012-11-07 Chong Yidong <cyd@gnu.org>
138
139 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
140 a defcustom with an appropriate :set function.
141 (minibuffer-default--in-prompt-regexps): New function.
142
143 2012-11-07 Glenn Morris <rgm@gnu.org>
144
145 * emacs-lisp/cl.el (define-setf-expander, defsetf)
146 (define-modify-macro): Doc fixes.
147
148 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
149 (gv-define-simple-setter): Update doc of `fix-return'.
150
151 2012-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
152
153 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
154 twice when `fix-return' is set (bug#12813).
155
156 * emacs-lisp/cl.el (defsetf): Pass the third arg to
157 gv-define-simple-setter (bug#12812).
158
159 2012-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
160
161 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
162 (bug#12756).
163
164 2012-11-06 Glenn Morris <rgm@gnu.org>
165
166 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
167
168 2012-11-05 Glenn Morris <rgm@gnu.org>
169
170 * emacs-lisp/cl-extra.el (cl-prettyexpand):
171 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
172 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
173 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
174
175 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
176
177 2012-11-03 Glenn Morris <rgm@gnu.org>
178
179 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
180 Rename handler properties back from cl-- to cl-. (Bug#12788)
181
182 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
183
184 2012-11-03 Eli Zaretskii <eliz@gnu.org>
185
186 * term/pc-win.el: Don't load term/internal from here.
187
188 * loadup.el: Load term/internal from here.
189
190 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
191
192 * progmodes/python.el (inferior-python-mode): Fix hang in
193 jit-lock (Bug#12645).
194
195 2012-11-03 Martin Rudalics <rudalics@gmx.at>
196
197 * window.el (switch-to-visible-buffer)
198 (switch-to-buffer-preserve-window-point): Fix doc-strings.
199
200 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
201
202 * play/gomoku.el (gomoku-display-statistics): Update mode line
203 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
204
205 2012-10-31 Martin Rudalics <rudalics@gmx.at>
206
207 * window.el (quit-restore-window): If the window has been
208 created on an existing frame and ended up as the sole window on
209 that frame, do not delete it (Bug#12764).
210
211 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
212
213 * progmodes/sh-script.el (sh--inside-noncommand-expression):
214 Rename from sh--inside-arithmetic-expression, handle more cases
215 (bug#11263).
216
217 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
218 (sh-font-lock-open-heredoc): Use it (bug#12770).
219
220 2012-10-30 Glenn Morris <rgm@gnu.org>
221
222 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
223
224 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
225
226 2012-10-29 Chong Yidong <cyd@gnu.org>
227
228 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
229 function key is stored in a keyboard macro (Bug#4894).
230
231 * thingatpt.el (number-at-point): Apply a thing-at-point property.
232
233 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
234
235 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
236 header comments".
237 (diff-unified->context, diff-context->unified)
238 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
239
240 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
241
242 * files.el (find-alternate-file): Only ask one question (bug#12487).
243
244 2012-10-29 Chong Yidong <cyd@gnu.org>
245
246 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
247 Suggested by Dan Nicolaescu (Bug#6326).
248
249 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
250
251 * startup.el (fancy-about-screen): Don't message (Bug#12680).
252
253 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
254
255 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
256
257 * face-remap.el (face-remap-add-relative): Handle the case where a
258 face-remapping-alist entry is a cons cell (Bug#12762).
259
260 2012-10-29 Kevin Ryde <user42@zip.com.au>
261
262 * woman.el (woman-parse-numeric-value): Handle picas correctly
263 (Bug#12639).
264
265 2012-10-29 Glenn Morris <rgm@gnu.org>
266
267 * emacs-lisp/cl.el (defsetf): Doc fix.
268
269 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
270
271 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
272 syntax to the matching opener, if any (bug#12547).
273 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
274 matching open as a "case-(".
275 (sh-smie-rc-grammar): Add a corresponding rule for it.
276
277 2012-10-28 Daniel Hackney <dan@haxney.org>
278
279 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
280 "PKGNAME-autoloads.el" in case we created it.
281
282 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
283
284 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
285 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
286 (completion--twq-all): Disable too-strict assertions.
287
288 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
289
290 2012-10-27 Eli Zaretskii <eliz@gnu.org>
291
292 * profiler.el (profiler-report-make-entry-part): Fix help-echo
293 text to match the real keybindings.
294
295 2012-10-27 Juri Linkov <juri@jurta.org>
296
297 * wdired.el (wdired-keep-marker-rename): New defcustom.
298 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
299 (Bug#11795)
300
301 * dired.el (dired-keep-marker-rename): Add reference to
302 `wdired-keep-marker-rename' in the docstring.
303 Add default character value ?R to display initially in
304 Customization UI instead of ?@.
305
306 2012-10-27 Martin Rudalics <rudalics@gmx.at>
307
308 * window.el (display-buffer): In doc-string describe
309 window-height and window-width alist entries.
310
311 * time.el (display-time-world): Restore fit-window-to-buffer
312 behavior.
313
314 2012-10-27 Chong Yidong <cyd@gnu.org>
315
316 * subr.el (insert-buffer-substring-as-yank): Doc fix.
317
318 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
319
320 * minibuffer.el (completion-category-overrides): New completion
321 category `bookmark' (bug#11131).
322
323 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
324
325 * emacs-lisp/advice.el (ad-assemble-advised-definition):
326 Silence bogus compiler warnings for ad-do-it.
327
328 * bookmark.el (bookmark-completing-read): Set the completion category
329 to `bookmark' (bug#11131).
330
331 2012-10-26 Bastien <bzg@altern.org>
332 Stefan Monnier <monnier@iro.umontreal.ca>
333
334 * face-remap.el: Use lexical-binding.
335 (text-scale-adjust): Improve docstring. Use itself for the temporary
336 overlay-map bindings, so as to repeat the "Use..." message each time.
337
338 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
339
340 * emacs-lisp/macroexp.el (macroexp--expand-all):
341 Obey byte-compile-warning-enabled-p (bug#12486).
342
343 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
344 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
345
346 2012-10-26 Martin Rudalics <rudalics@gmx.at>
347
348 * mouse.el (mouse-drag-line): Move last form into preceding when
349 clause (Bug#12731).
350
351 * help.el (resize-temp-buffer-window): Fix doc-string.
352
353 2012-10-25 David Engster <deng@randomsample.de>
354
355 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
356 Remove. This feature is already integrated in imenu.
357
358 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
359 always loaded. Require `speedbar' unconditionally.
360
361 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
362
363 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
364
365 * minibuffer.el (minibuffer-force-complete): Fix thinko.
366
367 * net/ldap.el (ldap-search-internal): The official ldif format starts
368 with a "version: 1" header (bug#12724).
369
370 * emacs-lisp/package.el (package-installed-p): Warn if not ready
371 (bug#12721).
372
373 2012-10-25 Glenn Morris <rgm@gnu.org>
374
375 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
376
377 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
378
379 * minibuffer.el (minibuffer-force-complete): Use one more marker
380 for the temporary-overlay-map command (bug#12619).
381
382 2012-10-24 Chong Yidong <cyd@gnu.org>
383
384 * time.el (display-time-world-mode): Derive from special-mode.
385 (display-time-world): Use display-buffer (Bug#12708).
386 (display-time-world-mode-map): Variable deleted.
387 (display-time-world-display): Wrap the final delete-char inside
388 inhibit-read-only.
389
390 2012-10-24 Chong Yidong <cyd@gnu.org>
391
392 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
393 Doc fix.
394
395 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
396
397 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
398
399 * minibuffer.el (completion--all-sorted-completions-location): New var.
400 (completion--cache-all-sorted-completions)
401 (completion--flush-all-sorted-completions): Use it.
402 (completion-in-region, completion-in-region--postch)
403 (completion-at-point, completion-help-at-point): Use markers in
404 completion-in-region--data (bug#12619).
405
406 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
407
408 * progmodes/compile.el (compilation-start): Try to handle common
409 quoting of `cd' argument (bug#12640).
410
411 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
412 (bug#12671).
413
414 2012-10-23 Glenn Morris <rgm@gnu.org>
415
416 * progmodes/gud.el (gud-menu-map):
417 Check gdb-active-process is bound. (Bug#12358)
418
419 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
420
421 * repeat.el (repeat): Set real-this-command (bug#12232).
422
423 * htmlfontify.el (hfy-post-html-hook):
424 * filesets.el (filesets-cache-fill-content-hook):
425 * arc-mode.el (archive-extract-hook):
426 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
427 * net/rcirc.el (rcirc-sentinel-functions)
428 (rcirc-receive-message-functions, rcirc-activity-functions)
429 (rcirc-print-functions):
430 * net/dbus.el (dbus-event-error-functions):
431 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
432 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
433 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
434 * term/sun.el (sun-raw-prefix-hooks):
435 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
436
437 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
438
439 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
440 Set `tramp-chunksize' to 1. This improves the performance.
441 (tramp-smb-wait-for-output): Add timeout to
442 `tramp-accept-process-output' calls.
443
444 2012-10-23 Chong Yidong <cyd@gnu.org>
445
446 * faces.el (font-list-limit): Define as an obsolete variable.
447
448 * startup.el (command-line):
449 * cus-start.el: Don't refer to font-list-limit.
450
451 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
452
453 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
454
455 * subr.el (internal-temp-output-buffer-show): Rename from
456 temp-output-buffer-show, since previously compiled files expect this name.
457
458 2012-10-23 Glenn Morris <rgm@gnu.org>
459
460 * image.el (image-type-from-file-name): If multiple types match,
461 return the first one that is supported. (Bug#9045)
462
463 2012-10-22 Glenn Morris <rgm@gnu.org>
464
465 * image.el (imagemagick-enabled-types): Doc fix.
466
467 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
468
469 * progmodes/which-func.el (which-func-current): The hash-table may have
470 an explicit nil (bug#12338).
471
472 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
473
474 * electric.el (electric-pair-delete-selection-self-insert-function):
475 Rename to electric-pair-will-use-region, return a boolean.
476 (electric-pair-mode): Adjust accordingly. Don't require delsel.
477
478 * delsel.el (delete-selection-helper): Use a function instead of a hook.
479 (delete-selection-pre-hook): Use use-region-p.
480 (delete-selection-self-insert-function): Remove.
481 (self-insert-command): Obey self-insert-uses-region-functions.
482 (self-insert-iso): Revert to previous setting, since we don't actually
483 know what that command does.
484 (delete-selection-self-insert-hooks): Remove.
485
486 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
487
488 * delsel.el (delete-selection-helper): New function, extracted from
489 delete-selection-pre-hook.
490 (delete-selection-pre-hook): Use it.
491 (delete-selection-self-insert-function): New function.
492 (delete-selection-self-insert-hooks): New hook.
493 (self-insert-command, self-insert-iso): Use it.
494 * electric.el (electric-pair-syntax): New function, extracted from
495 electric-pair-post-self-insert-function.
496 (electric-pair-post-self-insert-function): Use it.
497 (electric-pair-delete-selection-self-insert-function): New function.
498 (electric-pair-mode): Require delsel and setup
499 delete-selection-self-insert-hooks (bug#11520).
500
501 2012-10-20 Chong Yidong <cyd@gnu.org>
502
503 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
504 no changes to show (Bug#12586).
505
506 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
507 list explicitly (Bug#12571).
508
509 2012-10-20 Arne Jørgensen <arne@arnested.dk>
510
511 * progmodes/flymake.el (flymake-create-temp-inplace):
512 Use file-truename.
513
514 2012-10-20 Eli Zaretskii <eliz@gnu.org>
515
516 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
517
518 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
519
520 * calc/calc-units.el (math-extract-units): Properly extract powers
521 of units.
522
523 2012-10-20 Daniel Colascione <dancol@dancol.org>
524
525 * frame.el (make-frame): Set x-display-name as we used to in order
526 to unbreak creating an X11 frame from an Emacs daemon started
527 without a display.
528
529 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
530
531 * minibuffer.el (minibuffer-force-complete): Make the next completion use
532 the same completion-field (bug@12221).
533
534 2012-10-19 Martin Rudalics <rudalics@gmx.at>
535
536 * emacs-lisp/debug.el (debug): Record height of debugger window
537 also when debugger will be back (Bug#8789).
538
539 2012-10-18 Chong Yidong <cyd@gnu.org>
540
541 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
542 Convert to defcustom.
543 (gdb-get-source-file): Don't bind pop-up-windows.
544
545 * progmodes/gud.el (gud-display-line): Don't specially re-use
546 other frames for the gdb-mi case (Bug#12648).
547
548 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
549
550 * emacs-lisp/advice.el: Clean up commentary a bit.
551 (ad-do-advised-functions, ad-with-originals): Use `declare'.
552 (byte-code-function-p): Never redefine.
553
554 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
555
556 2012-10-18 Glenn Morris <rgm@gnu.org>
557
558 * dired.el (dired-sort-toggle): Some ls implementations only allow
559 a single option string. (Bug#12666)
560
561 * minibuffer.el (completion-cycle-threshold): Doc fix.
562
563 2012-10-17 Kenichi Handa <handa@gnu.org>
564
565 * international/mule.el (set-keyboard-coding-system):
566 Recover input meta mode when the new coding system doesn not use 8-bit.
567 Supply TERMINAL arg to set-input-meta-mode.
568
569 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
570
571 * wdired.el (wdired-old-marks): New variable.
572 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
573 (wdired-do-renames): Move point with renamed file and don't lose
574 mark status (Bug#11795).
575
576 2012-10-16 Juri Linkov <juri@jurta.org>
577
578 * replace.el (query-replace-help): Mention multi-buffer replacement
579 keys in the Help message. (Bug#12655)
580
581 2012-10-15 Chong Yidong <cyd@gnu.org>
582
583 * emacs-lisp/byte-run.el (defsubst): Doc fix.
584
585 2012-10-14 Eli Zaretskii <eliz@gnu.org>
586
587 * window.el (display-buffer): Doc fix.
588
589 * progmodes/compile.el (compilation-error-regexp-alist-alist):
590 Adjust the msft regexp to the output of Studio 2010, and move msft
591 before edg-1. See the discussion on emacs-devel,
592 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
593 for the details.
594
595 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
596
597 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
598 (oset): Move uses of object-class-fast macro after its definition.
599
600 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
601
602 2012-10-13 Chong Yidong <cyd@gnu.org>
603
604 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
605 enabled, re-enable it (Bug#11963).
606
607 2012-10-13 Martin Rudalics <rudalics@gmx.at>
608
609 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
610 non-nil, restore window configuration (Bug#12623).
611
612 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
613
614 * help-fns.el (describe-variable, describe-function-1):
615 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
616
617 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
618
619 2012-10-12 Glenn Morris <rgm@gnu.org>
620
621 * mail/rmailsum.el (rmail-header-summary):
622 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
623
624 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
625
626 * progmodes/python.el (python-mode-map):
627 Replace subtitute-key-definition with proper command remapping.
628 (python-nav--up-list): Fix behavior for blocks on the same level.
629
630 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
631
632 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
633
634 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
635 changes to the format of load-history.
636
637 * international/mule-cmds.el (read-char-by-name): Move let-binding of
638 completion-ignore-case in case that var is buffer-local (bug#12615).
639
640 2012-10-11 Kenichi Handa <handa@gnu.org>
641
642 * international/eucjp-ms.el: Re-generated.
643
644 2012-10-10 Kenichi Handa <handa@gnu.org>
645
646 * select.el (xselect--encode-string): If a coding is specified for
647 selection, and that is compatible with COMPOUND_TEXT, use it.
648
649 2012-10-10 Martin Rudalics <rudalics@gmx.at>
650
651 * window.el (switch-to-buffer-preserve-window-point): New option.
652 (switch-to-buffer):
653 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
654
655 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
656
657 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
658 Don't document nil as a useful value (bug#12583).
659
660 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
661
662 * net/tramp.el (tramp-debug-message):
663 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
664 (with-tramp-progress-reporter): Rename from
665 `tramp-with-progress-reporter'.
666 (with-tramp-file-property, with-tramp-connection-property):
667 Move from tramp-cache.el, rename from `with-file-property' and
668 `with-connection-property', respectively.
669
670 * net/tramp-cache.el: Remove `with-file-property' and
671 `with-connection-property'.
672
673 * net/tramp.el:
674 * net/tramp-gvfs.el:
675 * net/tramp-sh.el:
676 * net/tramp-smb.el: Adapt callees.
677
678 * net/trampver.el: Update release number.
679
680 2012-10-09 Glenn Morris <rgm@gnu.org>
681
682 * w32-fns.el (set-message-beep):
683 * term/w32-win.el (set-message-beep): Update declarations.
684
685 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
686
687 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
688 (mode-line-widen, mode-line-input-method-map)
689 (mode-line-coding-system-map, mode-line-remote)
690 (mode-line-unbury-buffer, mode-line-bury-buffer)
691 (mode-line-next-buffer, mode-line-previous-buffer):
692 Replace save-selected-window+select-window => with-selected-window.
693
694 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
695 * progmodes/cc-vars.el (bq-process): Remove, unused.
696
697 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
698
699 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
700
701 Implemented `backward-up-list'-like navigation.
702 * progmodes/python.el (python-nav-up-list)
703 (python-nav-backward-up-list): New functions.
704 (python-mode-map): Define substitute key for backward-up-list to
705 python-nav-backward-up-list.
706
707 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
708
709 * progmodes/python.el (python-fill-paragraph): Rename from
710 python-fill-paragraph-function. Fixed fill-paragraph for
711 decorators (Bug#12605).
712
713 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
714
715 * progmodes/python.el (python-shell-output-filter): Handle extra
716 carriage return in OSX (Bug#12409).
717
718 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
719
720 Fix shell handling of unbalanced quotes and parens in output.
721 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
722 (python-syntax-propertize-function): Use it.
723 (python-shell-output-syntax-table): New var.
724 (inferior-python-mode): Prevent unbalanced parens/quotes from
725 previous output mess with current input context.
726
727 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
728
729 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
730 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
731
732 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
733
734 * ffap.el (ffap-replace-file-component): Support Tramp file name
735 syntax, not only ange-ftp's one.
736
737 2012-10-08 Glenn Morris <rgm@gnu.org>
738
739 * cus-start.el (message-log-max): Set :version.
740
741 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
742
743 2012-10-08 Martin Rudalics <rudalics@gmx.at>
744
745 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
746 the minibuffer window (Bug#10851).
747
748 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
749
750 Enhancements on forward-sexp movement.
751 * progmodes/python.el (python-nav-beginning-of-statement)
752 (python-nav-end-of-statement): Return point-marker.
753 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
754 (python-info-current-symbol)
755 (python-info-statement-starts-block-p): Rename from
756 python-info-beginning-of-block-p.
757 (python-info-statement-ends-block-p): Rename from
758 python-info-end-of-block-p.
759 (python-info-beginning-of-statement-p)
760 (python-info-end-of-statement-p)
761 (python-info-beginning-of-block-p, python-info-end-of-block-p):
762 New functions.
763
764 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
765
766 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
767 frame-selected-windows.
768
769 2012-10-08 Daniel Colascione <dancol@dancol.org>
770
771 * battery.el (battery-status-function): Check for
772 w32-battery-status itself, not system-time windows-nt.
773
774 * frame.el: Require cl-lib.
775 (display-format-alist): New variable mapping frame types to
776 functions that initialize them.
777 (window-system-for-display): New function: interprets
778 display-format-alist.
779 (make-frame-on-display): Remove existing display-selection logic
780 and just forward to make-frame, which will now DTRT.
781 (make-frame): Restructure to use window-system-for-display to
782 figure out how to create a frame on a given display.
783 (display-mouse-p): Look for frame-type w32, not a particular
784 system-type.
785
786 * loadup.el: Load w32 lisp code when we have the w32 feature.
787
788 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
789 system-type windows-nt.
790
791 * server.el (server-create-window-system-frame): Look for window
792 type.
793 (server-proces-filter): Only force a window system when windows-nt
794 _and_ w32. Explain why.
795
796 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
797 of window systems we configure for the mode.
798
799 * startup.el (command-line): Mark window system is initialized
800 after we've done it.
801
802 * common-win.el (x-select-text): Look for w32, not windows-nt.
803
804 * ns-win.el: Require cl-lib. Add ourselves to
805 display-format-alist.
806 (ns-initialize-window-system): Assert we're not initialized twice.
807
808 * w32-win.el: Enable lexical binding; require cl-lib; add
809 ourselves to display-format-alist.
810 (w32-handle-dropped-file): Convert incoming dropped files from
811 Windows paths to Cygwin ones before passing them on to the rest of
812 Emacs.
813 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
814 (w32-initialize-window-system): Assert we're not initialized twice.
815
816 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
817 (x-initialize-window-system): Assert we're not initialized twice.
818
819 * w32-common-fns.el: New File.
820 (w32-version, w32-using-nt, w32-get-clipboard-data)
821 (w32-set-clipboard-data, x-set-selection, x-get-selection)
822 (w32-charset-info-alist, x-last-selected, text)
823 (x-get-selection-value, x-selection-value): Move here.
824
825 * w32-fns.el: Require w32-common-fns.
826 (w32-version, w32-using-nt, w32-get-clipboard-data)
827 (w32-set-clipboard-data, x-set-selection, x-get-selection)
828 (w32-charset-info-alist, x-last-selected, text)
829 (x-get-selection-value, x-selection-value): Move to
830 w32-common-fns.
831
832 * w32-vars.el:
833 (w32-allow-system-shell, w32-system-shells): Define only in
834 non-cygwin case.
835
836 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
837
838 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
839 (read-passwd): Remove a few more potential sources of leaks.
840
841 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
842
843 * progmodes/python.el (inferior-python-mode)
844 (python-shell-make-comint): Fix initialization of local
845 variables copied from parent buffer.
846
847 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
848
849 * term/ns-win.el (ns-read-file-name): Update declaration to match
850 nsfns.m.
851 (ns-respond-to-change-font): Change fontsize separatly so we are sure
852 it is set when font is acted upon.
853
854 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
855
856 Enhancements to indentation.
857 * progmodes/python.el (python-indent-context): Give priority to
858 inside-string context. Make comments indentation markers.
859 (python-indent-region): Do not mess with strings, unless it's the
860 enclosing set of quotes.
861
862 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
863
864 * window.el (internal--before-save-selected-window)
865 (internal--after-save-selected-window): New functions extracted from
866 save-selected-window. Make sure we return the `alist' we construct.
867 (save-selected-window): Use them.
868
869 * textmodes/tex-mode.el (tex-recenter-output-buffer):
870 Use with-selected-window.
871
872 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
873 forms that define macros (bug#12593).
874
875 2012-10-07 Kenichi Handa <handa@gnu.org>
876
877 * international/mule-conf.el (compound-text-with-extensions):
878 Add :mime-charset property as x-ctext.
879
880 2012-10-07 Stefan Merten <smerten@oekonux.de>
881
882 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
883 (rst-indent-literal-normal, rst-indent-literal-minimized)
884 (rst-indent-comment): Correct :version tag.
885 (rst-official-cvs-rev): Correct version string.
886
887 2012-10-07 Glenn Morris <rgm@gnu.org>
888
889 * mail/rmailmm.el (rmail-mime-process-multipart):
890 Do not confuse a multipart message with an epilogue
891 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
892
893 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
894
895 Fix shell output retrieval and comint-prompt-regexp init.
896 * progmodes/python.el (inferior-python-mode):
897 (python-shell-make-comint): Fix initialization of
898 comint-prompt-regexp from copied file local variables.
899 (python-shell-fetched-lines): Remove var.
900 (python-shell-output-filter-in-progress): Rename from
901 python-shell-fetch-lines-in-progress.
902 (python-shell-output-filter-buffer): Rename from
903 python-shell-fetch-lines-string.
904 (python-shell-fetch-lines-filter): Delete function.
905 (python-shell-output-filter): New function.
906 (python-shell-send-string-no-output): Use them.
907
908 2012-10-07 Glenn Morris <rgm@gnu.org>
909
910 * hi-lock.el (hi-lock-process-phrase):
911 Try to make it less fragile. (Bug#7161)
912
913 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
914
915 2012-10-06 Glenn Morris <rgm@gnu.org>
916
917 * ehelp.el (electric-help-mode): Use help-mode rather than
918 non-existent mode `help'.
919 (electric-help-map): Use button-buffer-map. (Bug#10917)
920
921 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
922 (reftex-create-bibtex-footer): Fix custom types.
923
924 * progmodes/sh-script.el (sh-indent-after-continuation):
925 Add explicit :group.
926
927 * textmodes/rst.el (rst-preferred-decorations)
928 (rst-shift-basic-offset): Clarify obsolescence versions.
929
930 * profiler.el (profiler): Add missing group :version tag.
931 * avoid.el (mouse-avoidance-banish-position):
932 * proced.el (proced-renice-command):
933 * calc/calc.el (calc-ensure-consistent-units):
934 * calendar/icalendar.el (icalendar-import-format-uid):
935 * net/tramp.el (tramp-save-ad-hoc-proxies):
936 * progmodes/bug-reference.el (bug-reference-bug-regexp):
937 * progmodes/flymake.el (flymake-error-bitmap)
938 (flymake-warning-bitmap, flymake-fringe-indicator-position):
939 * progmodes/sh-script.el (sh-indent-after-continuation):
940 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
941 (verilog-before-save-font-hook, verilog-after-save-font-hook):
942 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
943 (vhdl-array-index-record-field-in-sensitivity-list)
944 (vhdl-indent-comment-like-next-code-line):
945 * textmodes/reftex-vars.el (reftex-ref-style-alist)
946 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
947 (reftex-cite-key-separator, reftex-create-bibtex-header)
948 (reftex-create-bibtex-footer):
949 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
950 (rst-indent-literal-normal, rst-indent-literal-minimized)
951 (rst-indent-comment): Add missing custom :version tags.
952
953 * calendar/timeclock.el (timeclock-modeline-display):
954 Add missing obsolete alias for renamed user option.
955
956 * strokes.el (strokes-modeline-string):
957 * emulation/crisp.el (crisp-mode-modeline-string):
958 * eshell/esh-mode.el (eshell-status-in-modeline):
959 Aliases to defcustoms must come before the defcustom.
960
961 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
962 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
963 (cal-tex-cursor-week-monday): Doc fixes.
964 (cal-tex-cursor-week2-summary): Doc fix.
965 Rename from cal-tex-cursor-week-at-a-glance.
966
967 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
968 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
969
970 * calendar/calendar.el (calendar-mode-map):
971 Add cal-tex-cursor-week2-summary.
972
973 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
974
975 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
976
977 * subr.el (read-passwd-map): New var.
978 (read-passwd): Use `read-string' again.
979 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
980
981 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
982
983 * register.el (append-to-register, prepend-to-register):
984 Deactivate mark, as does `copy-to-register' (bug#12389).
985
986 2012-10-06 Chong Yidong <cyd@gnu.org>
987
988 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
989
990 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
991
992 * international/characters.el: Fix simple mistake ((car chars) ->
993 elt), delete duplicated code.
994
995 2012-10-06 Glenn Morris <rgm@gnu.org>
996
997 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
998
999 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
1000
1001 * color.el (color-hsl-to-rgb): Fix incorrect results for
1002 small and large hue values. (Bug#12559)
1003
1004 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
1005
1006 Enhancements to docstring formatting when filling paragraphs.
1007 * progmodes/python.el (python-fill-docstring-style): Rename from
1008 python-fill-string-style. Added new style.
1009 (python-fill-string): Use new style. Better checks for
1010 docstrings.
1011
1012 2012-10-05 Glenn Morris <rgm@gnu.org>
1013
1014 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
1015
1016 * color.el (color-name-to-rgb, color-rgb-to-hex)
1017 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1018 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1019 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1020 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1021
1022 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
1023
1024 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
1025
1026 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
1027 to get the correct size across symlinks.
1028
1029 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
1030
1031 2012-10-04 Juri Linkov <juri@jurta.org>
1032
1033 * replace.el (query-replace-interactive): Declare obsolete.
1034 (query-replace-read-from): Add the last incremental search string
1035 to the list of default values accessible via M-n.
1036 (map-query-replace-regexp): Use `read-regexp'.
1037 (query-replace, query-replace-regexp, query-replace-regexp-eval)
1038 (map-query-replace-regexp, replace-string, replace-regexp):
1039 Fix docstrings to replace mentions of `query-replace-interactive'
1040 with alternatives. (Bug#12526)
1041
1042 2012-10-04 Juri Linkov <juri@jurta.org>
1043
1044 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
1045 (dired-pop-to-buffer): Declare obsolete.
1046 (dired-mark-pop-up): Doc fix.
1047
1048 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
1049
1050 Allow user to set docstring style for fill-paragraph.
1051 * progmodes/python.el
1052 (python-fill-comment-function, python-fill-string-function)
1053 (python-fill-decorator-function, python-fill-paren-function):
1054 Remove :safe for defcustoms.
1055 (python-fill-string-style): New defcustom
1056 (python-fill-paragraph-function): Enhance context detection.
1057 (python-fill-string): Honor python-fill-string-style settings.
1058
1059 2012-10-04 Martin Rudalics <rudalics@gmx.at>
1060
1061 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
1062 after setting its buffer (Bug#10805).
1063
1064 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
1065
1066 Fix cornercase for string syntax.
1067 * progmodes/python.el (python-syntax-propertize-function):
1068 Simplify and enhance the regexp for unescaped quotes. Now it also
1069 matches quotes in weird situations like the single quote in
1070 "something\"'".
1071 (python-syntax-stringify): Simplify num-quotes detecting code.
1072
1073 2012-10-03 Glenn Morris <rgm@gnu.org>
1074
1075 * help-macro.el (three-step-help):
1076 Revert 2012-09-29 change. (Bug#12567)
1077
1078 2012-10-03 Martin Rudalics <rudalics@gmx.at>
1079
1080 * menu-bar.el (kill-this-buffer): Don't do anything when
1081 `menu-frame' is not alive or visible (Bug#8184).
1082
1083 * emacs-lisp/debug.el (debug): When quitting the debugger window
1084 restore current buffer (Bug#12502).
1085
1086 2012-10-02 Chong Yidong <cyd@gnu.org>
1087
1088 * progmodes/hideif.el (hif-lookup, hif-defined):
1089 Handle semantic-c-takeover-hideif.
1090
1091 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
1092
1093 Change sampling interval units from ms to ns.
1094 * profiler.el (profiler-sampling-interval): Change units
1095 from ms to ns, multiplying the default by 1000000 so that
1096 it remains 1 ms.
1097 (profiler-report-cpu-line-format): Give enough room for
1098 the maximum counters on 64-bit hosts.
1099 (profiler-report-render-calltree-1): Call them "CPU samples",
1100 not "Time (ms)", since they are not milliseconds now (and
1101 never really were).
1102
1103 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
1104
1105 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
1106 Fix querying BBDB for entries without a last name (Bug#11580).
1107
1108 2012-10-02 Chong Yidong <cyd@gnu.org>
1109
1110 * emacs-lisp/eieio.el: Restore Version header.
1111
1112 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1113
1114 * vc/diff-mode.el (diff--auto-refine-data): New var.
1115 (diff-hunk): Use it to delay refinement.
1116 (diff-mode): Remove overlays when we turn off font-lock.
1117
1118 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
1119 (table-initialize-table-fixed-width-mode)
1120 (table-set-table-fixed-width-mode): Remove functions.
1121 (table-command-list): Move initialization into declaration.
1122 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
1123 (table-with-cache-buffer): Use `declare'.
1124 (table-span-cell): Simplify via CSE.
1125 (table-fixed-width-mode): Use define-minor-mode.
1126 (table-call-interactively, table-funcall, table-apply): Remove.
1127 (table-function): New function, to replace them.
1128
1129 * bookmark.el (bookmark-search-pattern): Remove var.
1130 (bookmark-read-search-input): Remove function.
1131 (bookmark-bmenu-search): Reimplement using a minibuffer.
1132
1133 * faces.el (modeline): Remove obsolete face name.
1134
1135 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
1136 and give a non-nil default value.
1137 (add-change-log-entry): Simplify accordingly.
1138
1139 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
1140
1141 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
1142 (vc-git-log-edit-toggle-amend): New function.
1143 (vc-git-log-edit-toggle-signoff): New function.
1144 (vc-git-log-edit-mode): New major mode.
1145 (vc-git-log-edit-mode-map): Keymap for it.
1146 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
1147
1148 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
1149 header names.
1150 (log-edit-toggle-header): New function.
1151 (log-edit-extract-headers): Accept function values in HEADERS alist.
1152
1153 2012-10-01 David Engster <deng@randomsample.de>
1154
1155 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
1156 from symbol property and change message to be more consistent with
1157 Emacs proper.
1158 (eieio-describe-generic): Add filename for each implementation.
1159 Fix indices for generic and normal methods.
1160 (eieio-method-def, eieio-class-def): New buttons.
1161 (eieio-help-find-method-definition)
1162 (eieio-help-find-class-definition): New functions.
1163 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
1164 class, constructor and method definitions.
1165
1166 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
1167 information in symbol property.
1168 (scoped-class): Remove.
1169 (eieio-slot-name-index, call-next-method): Check if it is bound.
1170
1171 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
1172
1173 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
1174 (eieio-custom-mode): New major mode.
1175 (eieio-customize-object): Use it.
1176
1177 2012-10-01 Eric Ludlam <zappo@gnu.org>
1178
1179 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
1180 specifying the expected class, and whether subclassing is allowed.
1181 (eieio-persistent-convert-list-to-object):
1182 (eieio-persistent-validate/fix-slot-value)
1183 (eieio-persistent-slot-type-is-class-p): New functions.
1184 (eieio-named::slot-missing): Doc fix.
1185
1186 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
1187 Stop using unused publd variable.
1188
1189 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
1190 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
1191 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
1192 (eieio-speedbar-handle-click): Do not specify a class for the
1193 method. Fixes method invocation order problems with EDE.
1194
1195 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1196
1197 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
1198 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
1199
1200 2012-10-01 Karl Fogel <kfogel@red-bean.com>
1201
1202 * bookmark.el (bookmark-version-control): Give tags in the
1203 :type choices (Bug#12309), and improve doc string.
1204 (bookmark-write-file): Bind `print-circle' to `t' to allow
1205 circular custom bookmark types. (Bug#12503)
1206
1207 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
1208
1209 Revert the FOLLOW-SYMLINKS change for file-attributes.
1210 * files.el (remote-file-name-inhibit-cache, after-find-file):
1211 * time.el (display-time-file-nonempty-p): Undo last change.
1212
1213 * profiler.el (profiler-sampling-interval): Change default back to 1.
1214 See Stefan Monnier in
1215 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
1216
1217 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
1218
1219 Shell output catching a la gud-gdb.
1220 * progmodes/python.el (python-shell-fetch-lines-in-progress)
1221 (python-shell-fetch-lines-string, python-shell-fetched-lines):
1222 New Vars.
1223 (python-shell-fetch-lines-filter): New function.
1224 (python-shell-send-string-no-output): Use them.
1225
1226 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
1227
1228 * profiler.el (profiler-sampling-interval): Rename from
1229 profiler-sample-interval.
1230 (profiler-sampling-interval): Default to 10.
1231 (profiler-find-profile): New command (was profiler-find-log).
1232 (profiler-find-profile-other-window): New command.
1233 (profiler-find-profile-other-frame): New command.
1234 (profiler-profile): Introduce API-level data structure.
1235
1236 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1237
1238 file-attributes has a new optional arg FOLLOW-SYMLINKS.
1239 * files.el (remote-file-name-inhibit-cache):
1240 * time.el (display-time-file-nonempty-p): Use it.
1241 * files.el (after-find-file): Don't chase links before calling
1242 file-exists-p, as file-exists-p already does the right thing.
1243
1244 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
1245
1246 Merge from standalone RefTeX repository.
1247
1248 The following ChangeLog entries are shortened versions of the
1249 original ones with file paths adapted. A not so strongly edited
1250 version of the original ChangeLog can be found in the commit log.
1251
1252 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
1253 (reftex-arg-cite): Use `reftex-cite-key-separator'.
1254 Correctly handle new value type returned by `reftex-citation'.
1255
1256 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
1257 that entries with whitespace at various places are found.
1258 Doc fix. Include entries that are cross-referenced from cited entries.
1259 Include @String definitions in the resulting bib file. Add header
1260 and footer defined in `reftex-create-bibtex-header' and
1261 `reftex-create-bibtex-footer'.
1262 (reftex-do-citation): Make it possible again to insert
1263 non-existent entries. Save match data when asking for optional
1264 arguments. Return all keys, not just the first one.
1265 (reftex-all-used-citation-keys): Fix regexp to correctly extract
1266 all citations in the same line.
1267 (reftex-parse-bibtex-entry): Accept additional optional argument
1268 `raw' and keep quotes or braces if it is non-nil. Match fields
1269 containing hyphens besides word constituents.
1270 (reftex-get-string-refs): New function.
1271 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
1272 and ask if it should be reread in case it did.
1273 (reftex-pop-to-bibtex-entry)
1274 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
1275 entries with spaces or tabs in front of arguments.
1276 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
1277 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
1278 Match entries containing numbers and symbol constituents.
1279 (reftex-do-citation, reftex-figure-out-cite-format):
1280 Use `reftex-cite-key-separator'.
1281
1282 * textmodes/reftex-dcr.el: Move provide statement to end of file.
1283 (reftex-mouse-view-crossref): Explain why point is set.
1284
1285 * textmodes/reftex-global.el: Whitespace changes.
1286
1287 * textmodes/reftex-index.el: Move provide statement to end of
1288 file.
1289 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
1290 (reftex-index-visit-phrases-buffer): Set marker when visiting
1291 buffer. This allows for returning from the phrases file to the
1292 file one was just editing instead of the file where the last
1293 phrases was added from.
1294 (reftex-index-phrases-syntax-table): New variable. Give ?\"
1295 punctuation syntax as it usually is not used as string quote in
1296 TeX-related modes and may occur unmatched. The change also
1297 prevents fontification of quoted content.
1298 (reftex-index-phrases-mode): Use it.
1299
1300 * textmodes/reftex-parse.el (reftex-parse-from-file):
1301 Move backward one char if a `\' was matched after a section macro.
1302 (reftex-parse-from-file): Use beginning of match instead of end as
1303 bound.
1304
1305 * textmodes/reftex-ref.el: Adapt creation of
1306 `reftex-<package>-<macro>' functions to new structure of
1307 `reftex-ref-style-alist'.
1308 (reftex-reference): Use `reftex-ref-style-list' function.
1309 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
1310 reference macro if `reftex-ref-macro-prompt' is non-nil.
1311 (reftex-reference): Pass refstyle to `reftex-format-special'.
1312 Determine reference macro by looking at
1313 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
1314 Use only one special format function.
1315 (reftex-varioref-vref, reftex-fancyref-fref)
1316 (reftex-fancyref-Fref): Remove definitions. The functions are now
1317 generated from `reftex-ref-style-alist'.
1318 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
1319 Remove.
1320 (reftex-format-special): New function.
1321
1322 * textmodes/reftex-sel.el
1323 (reftex-select-cycle-ref-style-internal): Adapt to new structure
1324 of `reftex-ref-style-alist'. Remove code for testing macro type.
1325 (reftex-select-toggle-varioref)
1326 (reftex-select-toggle-fancyref): Remove.
1327 (reftex-select-cycle-ref-style-internal)
1328 (reftex-select-cycle-ref-style-forward)
1329 (reftex-select-cycle-ref-style-backward): New functions.
1330 (reftex-select-label-map): Use `v' and `V' for general cycling
1331 through reference styles. Add `p' for switching between number
1332 and page reference types.
1333
1334 * textmodes/reftex-toc.el (reftex-re-enlarge):
1335 Call `enlarge-window' only if there is something to do because in Emacs
1336 the horizontal version throws an error even if the parameter is 0.
1337
1338 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
1339 (reftex-plug-into-AUCTeX): Doc fix.
1340 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
1341 string. Adapt to new name.
1342 (reftex-ref-style-alist): Change structure so that it is not
1343 possible to use multiple different package names within a style.
1344 Remove the symbols for symbols for macro type distinction.
1345 Add characters for macro selection.
1346 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
1347 (reftex-create-bibtex-footer): New variables.
1348 (reftex-format-ref-function): Mention third argument of special
1349 format function.
1350 (reftex-ref-style-alist, reftex-ref-style-default-list):
1351 New variables.
1352 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
1353 to new implementation. Mark as obsolete. Add compatibility code
1354 for honoring the variable values in case they are set.
1355 (reftex-cite-format-builtin, reftex-bibliography-commands):
1356 Add support for ConTeXt.
1357 (reftex-format-ref-function, reftex-format-cite-function):
1358 Fix custom type.
1359 (reftex-cite-key-separator): New variable.
1360
1361 * textmodes/reftex.el (reftex-syntax-table-for-bib)
1362 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
1363 `reftex-syntax-table' because parens have to retain their paren
1364 syntax in order for parsing of BibTeX entries like @book(...) to
1365 work.
1366 (reftex-in-comment): Do not error out if `comment-start-skip' is
1367 not set. Deal correctly with escaped comment characters.
1368 (reftex-tie-multifile-symbols): Add doc string.
1369 Initialize `reftex-ref-style-list'.
1370 (reftex-untie-multifile-symbols): Add doc string.
1371 (reftex-add-index-macros): Doc fix.
1372 (reftex-ref-style-activate, reftex-ref-style-toggle)
1373 (reftex-ref-style-list): New functions.
1374 (reftex-mode-menu): Use them. Adapt to new structure of
1375 `reftex-ref-style-alist'.
1376 (reftex-select-with-char): Kill the RefTeX Select buffer when
1377 done.
1378 (reftex-remove-if): New function.
1379 (reftex-erase-all-selection-and-index-buffers)
1380 (reftex-mode-menu): Reference styles are now computed from
1381 `reftex-ref-style-alist'. Fix typo.
1382 (reftex-report-bug): New function.
1383 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
1384 algorithms with O(n log n). Introduce optional argument SORT (not
1385 yet used).
1386
1387 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
1388
1389 Enhancements for triple-quote string syntax.
1390 * progmodes/python.el (python-syntax-propertize-function):
1391 Match both quote cases in one regexp.
1392 (python-syntax-stringify): Handle matches properly.
1393
1394 2012-09-30 Juri Linkov <juri@jurta.org>
1395
1396 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
1397 to nil around the call to `insert' to prevent
1398 directory time modification by lock_file. (Bug#2295)
1399 * tar-mode.el (tar-summarize-buffer): Idem.
1400
1401 2012-09-30 Juri Linkov <juri@jurta.org>
1402
1403 * facemenu.el (list-colors-sort): Add option "Luminance".
1404 (list-colors-sort-key): Implement it.
1405
1406 * vc/diff-mode.el (diff-refine-removed):
1407 * vc/ediff-init.el (ediff-fine-diff-A):
1408 * vc/smerge-mode.el (smerge-refined-removed):
1409 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
1410
1411 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
1412
1413 * term/ns-win.el (x-file-dialog): New function.
1414
1415 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
1416
1417 * ido.el (ido-max-directory-size): Default to nil; the current
1418 default is small for POSIX systems, and impractical on Windows 7
1419 now that lstat returns directory sizes for NTFS.
1420
1421 2012-09-30 Martin Rudalics <rudalics@gmx.at>
1422
1423 In buffer display functions handle window-height/window-width
1424 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
1425 * window.el (window--display-buffer): New argument ALIST.
1426 Obey window-height and window-width alist entries.
1427 (window--try-to-split-window): New argument ALIST.
1428 Bind window-combination-limit to t when the window's size shall be
1429 changed and window-combination-limit equals `window-size'.
1430 (display-buffer-in-atom-window)
1431 (display-buffer-in-major-side-window)
1432 (display-buffer-in-side-window, display-buffer-same-window)
1433 (display-buffer-reuse-window, display-buffer-pop-up-frame)
1434 (display-buffer-pop-up-window, display-buffer-below-selected)
1435 (display-buffer-at-bottom, display-buffer-in-previous-window)
1436 (display-buffer-use-some-window): Adjust all callers of
1437 window--display-buffer and window--try-to-split-window.
1438 (fit-frame-to-buffer): New option.
1439 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
1440 is non-nil.
1441 (display-buffer-in-major-side-window): Evaluate window-height /
1442 window-width alist entries.
1443
1444 * help.el (temp-buffer-resize-frames)
1445 (temp-buffer-resize-regexps): Remove options.
1446 (temp-buffer-resize-mode): Adjust doc-string.
1447 (resize-temp-buffer-window): Don't consult
1448 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
1449 temp-buffer-resize-frames.
1450
1451 * dired.el (dired-mark-pop-up):
1452 Call display-buffer-below-selected with a fit-window-to-buffer alist
1453 entry.
1454
1455 2012-09-30 Chong Yidong <cyd@gnu.org>
1456
1457 * server.el (server-host): Document the security implications.
1458 (server-auth-key): Doc fix.
1459
1460 * startup.el (initial-buffer-choice): Doc fix.
1461
1462 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
1463
1464 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
1465 restriction change.
1466
1467 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
1468
1469 * help-fns.el (help-fns--obsolete): Fix last change.
1470
1471 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
1472
1473 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
1474 (minor-mode-map-alist): Remove redundant code.
1475
1476 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
1477 visited in a buffer.
1478 (cvs-insert-visited-file): New function.
1479 (find-file-hook): Use it.
1480
1481 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
1482
1483 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
1484 chose face.
1485 (log-edit-empty-buffer-p): Don't require a space after a header.
1486
1487 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
1488
1489 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
1490
1491 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
1492 a proper minor-mode.
1493
1494 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
1495
1496 2012-09-29 Glenn Morris <rgm@gnu.org>
1497
1498 * winner.el (winner-mode): Remove variable (let define-minor-mode
1499 handle it).
1500 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
1501 Doc fixes.
1502 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
1503 (winner-mode): Use define-minor-mode.
1504
1505 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
1506 the full definition in loaddefs, rather than duplicating it.
1507
1508 * help-macro.el (three-step-help): No need to autoload defcustom.
1509
1510 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
1511 (inferior-lisp-program, inferior-lisp-load-command)
1512 (inferior-lisp-prompt, inferior-lisp-mode-hook):
1513 No need to autoload defcustoms.
1514
1515 * hippie-exp.el (hippie-expand-try-functions-list)
1516 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
1517 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
1518 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
1519 (hippie-expand-only-buffers): No need to autoload defcustoms.
1520 * progmodes/vhdl-mode.el (vhdl-line-expand):
1521 Explicitly load hippie-exp, so it does not get autoloaded
1522 while hippie-expand-try-functions-list is let-bound.
1523
1524 2012-09-28 Glenn Morris <rgm@gnu.org>
1525
1526 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
1527
1528 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
1529 Only "cl.el" counts as cl these days.
1530
1531 2012-09-28 Juri Linkov <juri@jurta.org>
1532
1533 Display archive errors in the echo area instead of inserting
1534 to the file buffer.
1535
1536 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
1537 to STDERR-TEST that can be a regexp matching a successful output.
1538 Create a temporary file and redirect stderr to it. Search for
1539 STDERR-TEST in the stderr output and display it in the echo area
1540 if no match is found.
1541 (archive-extract-by-file): New function like
1542 `archive-extract-by-stdout' but extracting archives to files
1543 and looking for successful matches in stdout. Function body is
1544 mostly copied from `archive-rar-extract'.
1545 (archive-rar-extract): Use `archive-extract-by-file'.
1546 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
1547
1548 2012-09-28 Leo Liu <sdl.web@gmail.com>
1549
1550 * pcomplete.el (pcomplete-show-completions):
1551 Use minibuffer-message to make pcomplete usable in minibuffer.
1552
1553 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
1554
1555 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1556
1557 * type-break.el: Use lexical-binding.
1558 (type-break-mode): Use define-minor-mode.
1559
1560 * emacs-lisp/pcase.el (pcase--mark-used): New.
1561 (pcase--u1): Use it (bug#12512).
1562
1563 * custom.el (load-theme): Set buffer-file-name so the load is recorded
1564 in load-history with the right file name.
1565
1566 2012-09-28 Tassilo Horn <tsdh@gnu.org>
1567
1568 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
1569 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
1570 (doc-view-get-bounding-box): Make bounding box slicing work for
1571 ODF and DVI documents.
1572
1573 2012-09-28 Glenn Morris <rgm@gnu.org>
1574
1575 * type-break.el (type-break-mode, type-break-interval)
1576 (type-break-good-rest-interval, type-break-keystroke-threshold):
1577 No need to autoload.
1578 (type-break-good-rest-interval, type-break-keystroke-threshold):
1579 Add :set-after.
1580
1581 2012-09-28 Chong Yidong <cyd@gnu.org>
1582
1583 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
1584 Add :version tag.
1585
1586 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
1587
1588 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
1589
1590 2012-09-27 Glenn Morris <rgm@gnu.org>
1591
1592 * faces.el (x-display-name): Declare (for without-x builds).
1593
1594 * linum.el (linum-format): Don't autoload it. Improve :type.
1595
1596 * progmodes/tcl.el: Don't require outline when compiling.
1597 (outline-regexp, outline-level): Declare.
1598 * textmodes/sgml-mode.el: Don't require outline when compiling.
1599 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
1600
1601 * term.el (term-ansi-reset):
1602 Try setting term-ansi-face-already-done to nil. (Bug#11785)
1603
1604 * vc/vc.el (vc-next-action): Only gripe about committing read-only
1605 files for RCS and SCCS. (Bug#9781)
1606
1607 2012-09-27 Chong Yidong <cyd@gnu.org>
1608
1609 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
1610 change; value should be t.
1611
1612 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
1613
1614 * image-mode.el: Use lexical-binding.
1615 (image-mode-winprops): Use t to stand for the window of
1616 a buffer that's not displayed.
1617 * doc-view.el (doc-view-new-window-function): Handle the new
1618 t in winprops.
1619 (doc-view-enlarge): Make it a real nop if the size is not changed.
1620 (doc-view-display): Handle the case where the buffer is not (yet?)
1621 displayed in any window.
1622 (doc-view-saved-settings): New var.
1623 (doc-view-mode): Use it.
1624 (doc-view-fallback-mode): Set it.
1625
1626 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
1627 Set lexical-binding.
1628 (minibuffer-eldef-shorten-default): New var.
1629 (minibuffer-default-in-prompt-regexps): Use it for new default.
1630 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
1631
1632 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
1633
1634 * international/uni-bidi.el:
1635 * international/uni-category.el:
1636 * international/uni-name.el:
1637 * international/uni-numeric.el: Regenerate.
1638
1639 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
1640 Stefan Monnier <monnier@iro.umontreal.ca>
1641
1642 * profiler.el: New file.
1643
1644 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
1645
1646 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
1647 (testcover-reinstrument): Simplify with CSE.
1648
1649 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
1650
1651 * window.el (temp-buffer-window-setup): Fix typo in docstring.
1652
1653 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
1654
1655 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
1656 (verilog-auto-input, verilog-auto-insert-lisp)
1657 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
1658 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
1659 (verilog-auto-unused, verilog-auto-wire)
1660 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
1661 newline. Reported by Andrew Jones.
1662 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
1663 Reported by Brad Dobbie.
1664 (verilog-batch-delete-trailing-whitespace):
1665 Create verilog-batch-delete-trailing-whitespace.
1666 Reported by Brad Dobbie.
1667 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
1668 parameters from another module. Reported by Dan Katz.
1669 (verilog-auto, verilog-auto-assign-modport)
1670 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
1671 AUTOINOUTMODPORT for UVM interface module shell generation.
1672 Reported by Brad Dobbie.
1673 (verilog-auto-inst-interfaced-ports): Make default nil, as more
1674 standard behavior.
1675 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
1676 Reported by Matt Martin.
1677
1678 2012-09-25 Martin Rudalics <rudalics@gmx.at>
1679
1680 * window.el (window--resize-child-windows): When resizing child
1681 windows proportionally, process them in reverse order to
1682 preserve the "when splitting a window the new one gets the odd
1683 line" behavior.
1684 (window--resize-root-window-vertically): When resizing the
1685 minibuffer window try to affect only windows at the bottom of the
1686 frame. (Bug#12419)
1687
1688 2012-09-25 Chong Yidong <cyd@gnu.org>
1689
1690 * subr.el (declare): Doc fix.
1691
1692 * help-fns.el (help-fns--obsolete): Handle macros properly.
1693
1694 2012-09-25 Chong Yidong <cyd@gnu.org>
1695
1696 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
1697 this function obsolete.
1698
1699 * calendar/cal-x.el (calendar-two-frame-setup)
1700 (calendar-only-one-frame-setup, calendar-one-frame-setup):
1701 * calendar/calendar.el (american-calendar, european-calendar)
1702 (calendar-for-loop):
1703 * comint.el (comint-dynamic-simple-complete)
1704 (comint-dynamic-complete-as-filename, comint-unquote-filename):
1705 * desktop.el (desktop-load-default):
1706 * dired-x.el (dired-omit-here-always)
1707 (dired-hack-local-variables, dired-default-directory):
1708 * emacs-lisp/derived.el (derived-mode-class):
1709 * emacs-lisp/timer.el (timer-set-time-with-usecs):
1710 * emacs-lock.el (toggle-emacs-lock):
1711 * epa.el (epa-display-verify-result):
1712 * epg.el (epg-sign-keys, epg-start-sign-keys)
1713 (epg-passphrase-callback-function):
1714 * eshell/esh-util.el (eshell-for):
1715 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
1716 (eshell-add-to-window-buffer-names):
1717 * files.el (locate-file-completion):
1718 * imenu.el (imenu-example--create-c-index)
1719 (imenu-example--create-lisp-index)
1720 (imenu-example--lisp-extract-index-name)
1721 (imenu-example--name-and-position):
1722 * international/mule-cmds.el (princ-list):
1723 * international/mule-diag.el (decode-codepage-char):
1724 * international/mule-util.el (detect-coding-with-priority):
1725 * iswitchb.el (iswitchb-read-buffer):
1726 * mail/mailalias.el (mail-complete):
1727 * mail/sendmail.el (mail-sent-via):
1728 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
1729 (mouse-major-mode-menu):
1730 * password-cache.el (password-read-and-add):
1731 * pcomplete.el (pcomplete-parse-comint-arguments):
1732 * progmodes/sh-script.el (sh-maybe-here-document):
1733 * replace.el (query-replace-regexp-eval):
1734 * savehist.el (savehist-load):
1735 * simple.el (choose-completion-delete-max-match):
1736 * term.el (term-dynamic-simple-complete):
1737 * vc/ediff-init.el (ediff-check-version):
1738 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
1739 * vc/vc.el (vc-diff-switches-list):
1740 * view.el (view-return-to-alist-update): Likewise.
1741
1742 * subr.el (eval-next-after-load, makehash, insert-string)
1743 (assoc-ignore-representation, assoc-ignore-case): Use declare to
1744 mark obsolete.
1745 (mode-line-inverse-video): Variable deleted.
1746
1747 * international/mule-util.el (string-to-sequence): Remove.
1748
1749 * calendar/calendar.el (calendar-version):
1750 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
1751 (icalendar-convert-diary-to-ical):
1752 * cus-edit.el (custom-mode):
1753 * ansi-color.el (ansi-color-unfontify-region):
1754 * international/latin1-disp.el (latin1-char-displayable-p):
1755 * progmodes/cwarn.el (turn-on-cwarn-mode):
1756 * progmodes/which-func.el (which-func-update-1):
1757 Use define-obsolete-function-alias.
1758
1759 * net/newst-backend.el (newsticker-cache-filename):
1760 * net/newst-treeview.el (newsticker-groups-filename):
1761 Fix incorrect obsolescence declaration.
1762
1763 * allout.el (allout-passphrase-hint-string): Likewise.
1764 (allout-init): Use a declare form to mark obsolete.
1765
1766 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
1767 this applies to functions.
1768
1769 * iswitchb.el (iswitchb-read-buffer): Move code of
1770 iswitchb-define-mode-map here, and delete that obsolete function.
1771
1772 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
1773 font-lock-reference-face.
1774
1775 2012-09-25 Glenn Morris <rgm@gnu.org>
1776
1777 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
1778 Doc fixes.
1779
1780 * eshell/em-term.el (eshell-term-name):
1781 Default to term-term-name. (Bug#12485)
1782
1783 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
1784
1785 * progmodes/python.el (python-shell-send-buffer): Better handling
1786 of "if __name__ == '__main__':" conditionals when sending the buffer.
1787
1788 2012-09-24 Glenn Morris <rgm@gnu.org>
1789
1790 * eshell/esh-cmd.el (eshell-find-alias-function):
1791 Tighten up file-name regexp. (Bug#12499)
1792
1793 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
1794
1795 Enhancements for triple-quote string syntax.
1796 * progmodes/python.el (python-quote-syntax): Remove.
1797 (python-syntax-propertize-function): New value.
1798 (python-syntax-count-quotes, python-syntax-stringify):
1799 New functions.
1800
1801 2012-09-24 Chong Yidong <cyd@gnu.org>
1802
1803 * mail/supercite.el (sc-version): Remove obsolete function.
1804 (sc-describe): Don't mark as obsolete, since it is bound.
1805 (sc-submit-bug-report): Remove.
1806
1807 * vc/log-edit.el (cvs-changelog-full-paragraphs)
1808 (cvs-commit-buffer-require-final-newline): Remove.
1809 (log-edit-require-final-newline)
1810 (log-edit-changelog-full-paragraphs): Default to t.
1811
1812 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
1813 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
1814 * vc/vc.el (vc-checkout-carefully): Likewise.
1815
1816 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
1817 (emerge-version): Remove.
1818
1819 * progmodes/compile.el (compile-internal): Remove.
1820 (compilation-parse-errors-function): Fix typo.
1821
1822 * international/mule.el (set-char-table-default): Remove.
1823 (set-coding-priority, make-coding-system, generic-char-p)
1824 (charset-list, charset-bytes, charset-id): Use declare to mark
1825 functions as obsolete.
1826
1827 * vc/pcvs-defs.el (cvs-buffer-name-alist)
1828 (cvs-invert-ignore-marks): Remove references to obsolete vars.
1829 * vc/vc-hooks.el (vc-default-registered): Don't use
1830 vc-master-templates.
1831
1832 * font-lock.el (font-lock-reference-face):
1833 Use define-obsolete-variable-alias.
1834
1835 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
1836 * calendar/calendar.el (calendar-font-lock-keywords):
1837 * calendar/diary-lib.el (diary-font-lock-keywords)
1838 (diary-fancy-font-lock-keywords):
1839 * textmodes/reftex-sel.el (reftex-insert-docstruct):
1840 * textmodes/reftex-index.el (reftex-insert-index):
1841 * textmodes/reftex-cite.el (reftex-format-bib-entry):
1842 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
1843 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
1844 * progmodes/prolog.el (prolog-font-lock-keywords):
1845 * progmodes/idlwave.el (idlwave-idl-keywords):
1846 * progmodes/ada-mode.el (ada-font-lock-keywords):
1847 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
1848
1849 2012-09-24 Glenn Morris <rgm@gnu.org>
1850
1851 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
1852
1853 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
1854
1855 * progmodes/python.el (python-indent-line): More consistent cursor
1856 movement behavior.
1857
1858 2012-09-23 Stefan Merten <smerten@oekonux.de>
1859
1860 * textmodes/rst.el: Fix compiler warning.
1861
1862 2012-09-23 Roland Winkler <winkler@gnu.org>
1863
1864 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
1865 Transcribe also LaTeX hyphenation.
1866 (bibtex-reformat): Bug fix. Do not quote twice the elements of
1867 bibtex-reformat-previous-options.
1868
1869 2012-09-23 Roland Winkler <winkler@gnu.org>
1870
1871 * proced.el (proced-renice-command): New variable.
1872 (proced-marked-processes): New function.
1873 (proced-with-processes-buffer): New macro.
1874 (proced-send-signal): Use them.
1875 (proced-renice): New command bound to r.
1876
1877 2012-09-23 Roland Winkler <winkler@gnu.org>
1878
1879 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
1880 ibuffer-saved-filter-groups has one element, shortcut the call of
1881 completing-read. (Bug#12331)
1882
1883 2012-09-23 Chong Yidong <cyd@gnu.org>
1884
1885 * bindings.el (mode-line-toggle-read-only):
1886 * bs.el (bs-toggle-readonly):
1887 * buff-menu.el (Buffer-menu-toggle-read-only):
1888 * dired.el (dired-toggle-read-only):
1889 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
1890
1891 2012-09-23 Chong Yidong <cyd@gnu.org>
1892
1893 * image.el (image-type-available-p): Adapt to init-image-library
1894 argument changes.
1895
1896 2012-09-22 Juri Linkov <juri@jurta.org>
1897
1898 * dired.el (dired-mode-map): Add [remap read-only-mode] for
1899 `dired-toggle-read-only'. (Bug#12462)
1900
1901 2012-09-22 Martin Rudalics <rudalics@gmx.at>
1902
1903 * subr.el (temp-output-buffer-show): New function.
1904 (with-output-to-temp-buffer): Call temp-output-buffer-show
1905 instead of internal-temp-output-buffer-show.
1906
1907 2012-09-22 Chong Yidong <cyd@gnu.org>
1908
1909 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
1910 (Bug#12462).
1911
1912 * repeat.el (repeat): Doc fix (Bug#12348).
1913
1914 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
1915 (Bug#10909).
1916
1917 * simple.el (shell-command-on-region): Doc fix.
1918 (read-only-mode): Doc fix.
1919
1920 2012-09-22 Eli Zaretskii <eliz@gnu.org>
1921
1922 * emacs-lisp/timer.el (run-with-idle-timer)
1923 (timer-activate-when-idle): Warn against reinvoking an idle timer
1924 from within its own timer action. (Bug#12447)
1925
1926 2012-09-22 Martin Rudalics <rudalics@gmx.at>
1927
1928 * cus-start.el (window-combination-limit): Add new optional
1929 values.
1930 * window.el (temp-buffer-window-show)
1931 (window--try-to-split-window): Handle new values of
1932 window-combination-limit (Bug#1806).
1933 (split-window): Test window-combination-limit for t instead of
1934 non-nil.
1935 (display-buffer-at-bottom): New buffer display action function.
1936 * help.el (temp-buffer-resize-regexps): New option.
1937 (temp-buffer-resize-mode): Rewrite doc-string.
1938 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
1939 Don't resize reused window. Suggested by Glenn Morris.
1940
1941 2012-09-22 Stefan Merten <smerten@oekonux.de>
1942
1943 * textmodes/rst.el: Revamp section title faces.
1944 (rst-official-version)
1945 (rst-package-emacs-version-alist): Sync with official version
1946 V1.4.0.
1947 (rst-faces-defaults, rst-set-level-default)
1948 (rst-level-face-max, rst-level-face-base-color)
1949 (rst-level-face-base-light, rst-level-face-format-light)
1950 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
1951 (rst-adornment-faces-alist): Match new setup.
1952 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
1953 (rst-level-5, rst-level-6): New faces.
1954
1955 2012-09-22 Chong Yidong <cyd@gnu.org>
1956
1957 * simple.el (undo): Handle indirect buffers (Bug#8207).
1958
1959 2012-09-21 Leo Liu <sdl.web@gmail.com>
1960
1961 IDO: Disable match re-ordering for buffer switching.
1962 * ido.el (ido-buffer-disable-smart-matches): New variable.
1963 (ido-set-matches-1): Use it. (Bug#2042)
1964
1965 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
1966
1967 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
1968 Fix 2011-05-17 change. (Bug#12418)
1969
1970 2012-09-21 Leo Liu <sdl.web@gmail.com>
1971
1972 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
1973
1974 2012-09-21 Glenn Morris <rgm@gnu.org>
1975
1976 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
1977 Be more robust about locating simple.el.
1978
1979 2012-09-21 Glenn Morris <rgm@gnu.org>
1980
1981 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
1982
1983 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
1984
1985 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
1986
1987 2012-09-20 Juri Linkov <juri@jurta.org>
1988
1989 * replace.el (query-replace-read-from): Use `read-regexp' instead
1990 of `read-from-minibuffer' when `regexp-flag' is non-nil.
1991 (occur-read-primary-args): Use `read-regexp' instead of
1992 `read-string'.
1993 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
1994 `read-from-minibuffer'.
1995 * isearch.el (isearch-occur): Use `read-regexp' instead of
1996 `read-string'.
1997 * dired.el (dired-read-regexp): Use `read-regexp' instead of
1998 `read-from-minibuffer'.
1999 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
2000 of `read-string'. (Bug#7567)
2001
2002 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
2003 and allow accepting a list of strings prepended to a list of
2004 standard default values. Doc fix. (Bug#12321)
2005
2006 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
2007
2008 * replace.el (read-regexp): Don't add ": " when PROMPT already
2009 ends with a colon and space. (Bug#12321)
2010
2011 2012-09-20 Tassilo Horn <tsdh@gnu.org>
2012
2013 * doc-view.el (doc-view-display): Better fix for the cl-assertion
2014 error.
2015
2016 2012-09-20 Stefan Merten <smerten@oekonux.de>
2017
2018 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
2019 Fixes feature request bug#11711.
2020 (rst-mode): Create `imenu-create-index-function'.
2021 (rst-get-stripped-line): Delete after refactoring.
2022 (rst-section-tree, rst-section-tree-rec)
2023 (rst-section-tree-point): Refactor and document properly.
2024 (rst-imenu-find-adornments-for-position)
2025 (rst-imenu-convert-cell, rst-imenu-create-index):
2026 New function.
2027
2028 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2029
2030 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
2031 (macroexp--expand-all): Use it.
2032 (macroexp--funcall-and-return): Remove by folding it into its sole
2033 caller (macroexp--warn-and-return).
2034 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
2035 Use macroexp--obsolete-warning.
2036
2037 * calc/calc.el: Fix last change by removing the whole chunk, since it
2038 was only needed back when Calc was not bundled.
2039
2040 2012-09-20 Martin Rudalics <rudalics@gmx.at>
2041
2042 * emacs-lisp/debug.el (debug): Restore assignment to
2043 debugger-old-buffer removed on 2012-09-08.
2044
2045 2012-09-20 Juri Linkov <juri@jurta.org>
2046
2047 * dired-aux.el (dired-diff): Remove (require 'diff) since
2048 `diff-latest-backup-file' is now autoloaded.
2049
2050 2012-09-20 Chong Yidong <cyd@gnu.org>
2051
2052 * vc/diff.el (diff-latest-backup-file): Autoload.
2053
2054 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2055
2056 * calc/calc.el: Remove redundant autoload shape check.
2057 (sel-mode): Don't defvar.
2058 (calc-get-stack-element): Add `sel-mode' arg instead.
2059 (calc-top, calc-top-list): Pass it this additional argument.
2060 * calc/calc-store.el (calc-store-map):
2061 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
2062 (calc-map-equation, calc-outer-product, calc-inner-product):
2063 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
2064
2065 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
2066
2067 2012-09-19 Juri Linkov <juri@jurta.org>
2068
2069 * dired-aux.el (dired-diff): Add (require 'diff) because
2070 `diff-latest-backup-file' is not autoloaded.
2071 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
2072 of `dired-get-filename' to t to not report error when there is
2073 no default file on the current line.
2074
2075 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2076
2077 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
2078 macroexp--eval-if-compile.
2079 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
2080 (macroexp--expand-all): Use them (bug#12371).
2081
2082 * doc-view.el (doc-view-guess-paper-size)
2083 (doc-view-scale-bounding-box): Fix unbound `caddr'.
2084
2085 2012-09-19 Tassilo Horn <tsdh@gnu.org>
2086
2087 New feature: set optimal slice from BoundingBox information.
2088 * doc-view.el (doc-view-mode-map): Add keybinding.
2089 (doc-view-menu): Add menu entry.
2090 (doc-view-set-slice): Adapt docstring.
2091 (doc-view-get-bounding-box, doc-view-guess-paper-size)
2092 (doc-view-scale-bounding-box)
2093 (doc-view-set-slice-from-bounding-box): New functions.
2094 (doc-view-paper-sizes): New defvar.
2095
2096 2012-09-19 Glenn Morris <rgm@gnu.org>
2097
2098 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
2099 (byte-compile-log-warning): Autoload. (Bug#12371)
2100
2101 * calendar/calendar.el (calendar-american-month-header)
2102 (calendar-european-month-header, calendar-iso-month-header)
2103 (calendar-month-header): New options.
2104 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
2105 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
2106
2107 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
2108
2109 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
2110
2111 2012-09-18 Juri Linkov <juri@jurta.org>
2112
2113 * dired-aux.el (dired-diff): Restore original functionality of
2114 getting the default value, but keep new feature of using the
2115 latest existing backup file (`diff-latest-backup-file').
2116
2117 2012-09-18 Juri Linkov <juri@jurta.org>
2118
2119 * dired.el (dired-mark): If the region is active in Transient Mark
2120 mode, mark all files in the active region. Doc fix.
2121 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
2122 Doc fix. (Bug#10624)
2123
2124 2012-09-18 Juri Linkov <juri@jurta.org>
2125
2126 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
2127 attributes for M-n are pulled from the file at point.
2128 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
2129 Suggested by Drew Adams. (Bug#10624)
2130
2131 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
2132
2133 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
2134 whitespace after "end".
2135 (ruby-do-end-to-brace): Collapse block to one line if it fits
2136 within fill-column.
2137
2138 2012-09-18 Martin Rudalics <rudalics@gmx.at>
2139
2140 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
2141 value.
2142 (debug): Don't remove debugger window when debugger is expected
2143 to be back.
2144
2145 2012-09-18 Chong Yidong <cyd@gnu.org>
2146
2147 * custom.el (defface): Doc fix.
2148
2149 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
2150
2151 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
2152
2153 * progmodes/compile.el (compilation-start): Use compilation-always-kill
2154 to initialize query-on-exit; then test that instead (bug#12288).
2155
2156 2012-09-17 Stefan Merten <smerten@oekonux.de>
2157
2158 * textmodes/rst.el: Add support for `testcover'.
2159 (rst-defcustom-testcover, rst-testcover-add-compose)
2160 (rst-testcover-add-1value): New functions.
2161 (rst-portable-mark-active-p): Replace by `use-region-p'.
2162 (rst-update-section, rst-classify-adornment)
2163 (rst-find-title-line): Mark `1value' forms.
2164 (rst-classify-adornment): Remove superfluous form.
2165 (rst-update-section, rst-get-adornments-around)
2166 (rst-adornment-complete-p, rst-get-next-adornment)
2167 (rst-adjust, rst-promote-region)
2168 (rst-display-adornments-hierarchy, rst-straighten-adornments)
2169 (rst-find-pfx-in-region, rst-section-tree-rec)
2170 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
2171 (rst-toc-node, rst-toc, rst-forward-section)
2172 (rst-iterate-leftmost-paragraphs)
2173 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
2174 (rst-bullet-list-region)
2175 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
2176 (rst-compile-find-conf, rst-compile)
2177 (rst-repeat-last-character): Fix style.
2178
2179 2012-09-17 Chong Yidong <cyd@gnu.org>
2180
2181 * comint.el (comint--complete-file-name-data): Don't add a space
2182 if the status is `sole'; that adds a gratuitous space in the
2183 completion-cycling case (Bug#12092).
2184
2185 * pcomplete.el (pcomplete-completions-at-point): Likewise.
2186
2187 2012-09-17 Richard Stallman <rms@gnu.org>
2188
2189 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
2190 only in the mime-shown mode, not in raw mode.
2191 (rmail-mime): Toggle off mime by displaying the message without
2192 mime processing. (Bug#12305)
2193
2194 * mail/rmail.el (rmail-retry-failure):
2195 Turn off mime processing first. (Bug#12037)
2196
2197 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
2198
2199 2012-09-17 Chong Yidong <cyd@gnu.org>
2200
2201 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
2202 (shell-dynamic-complete-functions): Convert to defcustom.
2203 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
2204
2205 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
2206 * comint.el (comint-prompt-read-only):
2207 * custom.el (defcustom):
2208 * hi-lock.el (hi-lock-mode):
2209 * ibuffer.el (ibuffer-formats):
2210 * ielm.el (ielm-prompt-read-only):
2211 * novice.el (disable-command):
2212 * saveplace.el (toggle-save-place):
2213 * speedbar.el (speedbar-supported-extension-expressions):
2214 * startup.el (auto-save-list-file-prefix, init-file-user)
2215 (after-init-hook, inhibit-startup-echo-area-message):
2216 * strokes.el (strokes-help):
2217 * time-stamp.el (time-stamp):
2218 * calendar/calendar.el (calendar, diary-file):
2219 * calendar/diary-lib.el (diary-mail-entries, diary)
2220 (diary-list-entries-hook):
2221 * calendar/holidays.el (holidays, calendar-holidays):
2222 * calendar/lunar.el (lunar-phases):
2223 * calendar/solar.el (sunrise-sunset):
2224 * emulation/edt.el (edt-load-keys):
2225 * emulation/viper.el (viper-mode):
2226 * eshell/em-alias.el (eshell-command-aliases-list):
2227 * eshell/esh-util.el (eshell-convert-numeric-arguments):
2228 * international/ogonek.el (ogonek-information):
2229 * net/tramp-cmds.el (tramp-bug):
2230 * net/quickurl.el (quickurl-reread-hook-postfix):
2231 * play/decipher.el (decipher-font-lock-keywords):
2232 * progmodes/cc-styles.el (c-set-style):
2233 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
2234 * progmodes/inf-lisp.el (inferior-lisp-prompt):
2235 * progmodes/octave-mod.el (octave-mode):
2236 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
2237 * progmodes/verilog-mode.el (verilog-read-defines):
2238 * textmodes/two-column.el (2C-mode): Likewise.
2239
2240 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
2241
2242 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
2243 that holds many addresses.
2244
2245 2012-09-16 Chong Yidong <cyd@gnu.org>
2246
2247 * align.el (align-areas): Call the indication function with
2248 positions instead of markers for arguments (Bug#12343).
2249
2250 * files.el (parse-colon-path): Use split-string (Bug#12351).
2251
2252 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
2253 (display-buffer-function): Mark as obsolete.
2254
2255 * progmodes/compile.el (compilation-parse-errors): Accept list
2256 values similar to font-lock-keywords (Bug#12136).
2257 Suggested by Oleksandr Manzyuk.
2258 (compilation-error-regexp-alist): Doc fix.
2259
2260 2012-09-15 Glenn Morris <rgm@gnu.org>
2261
2262 * version.el (emacs-bzr-version-bzr): New function.
2263 (emacs-bzr-get-version): Add optional EXTERNAL argument.
2264
2265 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
2266 checkouts, check the parent dirstate matches the branch.
2267 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
2268 empty string.
2269
2270 * version.el (emacs-bzr-version): Doc fix.
2271 (emacs-bzr-version-dirstate): New function.
2272 (emacs-bzr-get-version): For lightweight checkouts, if the parent
2273 is local try and check that it matches the branch. If not, just
2274 use dirstate information. (Bug#12441)
2275
2276 2012-09-14 Juri Linkov <juri@jurta.org>
2277
2278 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
2279 (Bug#12399)
2280
2281 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2282
2283 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
2284
2285 * emacs-lisp/edebug.el: Miscellaneous cleanup.
2286 Remove obsolete byte-compiler hack that tried to silence some warnings.
2287 (edebug-submit-bug-report): Remove.
2288 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
2289 Remove aliases, use the un-prefixed name instead.
2290 (edebug-pop-to-buffer): Consider other frames.
2291 (edebug-original-read):: Make it more obvious that it's always defined.
2292 (edebug--make-form-data-entry, edebug--form-data-name)
2293 (edebug--form-data-begin, edebug--form-data-end): Rename from the
2294 single-dashed name, and implement with cl-defstruct.
2295 (edebug-set-form-data-entry): Use the standard accessors.
2296 (edebug-make-top-form-data-entry): Use push.
2297 (edebug-no-match): Drop useless `funcall'.
2298 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
2299 to functions.
2300 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
2301 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
2302 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
2303 (easy-menu-define, with-custom-print): Remove redundant specs.
2304 (edebug-outside-overriding-local-map)
2305 (edebug-outside-overriding-terminal-local-map): Remove, unused.
2306 (edebug--display): Bind unread-command-events directly to nil rather
2307 than binding it to unread-command-events and later setting it to nil.
2308 (edebug--display): Kill edebug-eval-buffer here...
2309 (edebug--recursive-edit): ...rather than here.
2310 Bind standard-output and standard-input.
2311 (edebug-eval): Check cl-macroexpand-all is fboundp.
2312 (edebug-temp-display-freq-count): Fix last change.
2313
2314 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
2315 * subr.el (noreturn, 1value): Add `debug' spec.
2316 * emacs-lisp/advice.el: Require cl-lib.
2317 (ad-copy-tree): Remove, use copy-tree instead.
2318 (ad-dolist): Remove use dolist or cl-dolist instead.
2319 (ad-do-return): Remove, use cl-return instead.
2320 (defadvice): Add `debug' spec.
2321
2322 2012-09-13 Juri Linkov <juri@jurta.org>
2323
2324 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
2325 (Bug#12399)
2326
2327 2012-09-13 Glenn Morris <rgm@gnu.org>
2328
2329 * calc/calc.el (math-compose-expr):
2330 * calc/calc-ext.el (math-compose-expr):
2331 * progmodes/cc-defs.el (cl-macroexpand-all):
2332 * progmodes/cc-langs.el (delete-duplicates, mapcan)
2333 (cl-macroexpand-all): Update declarations.
2334
2335 * vc/vc.el: No need to require ediff.
2336 (ediff-load-version-control): Declare.
2337 (ediff-vc-internal): Fix declaration.
2338 (vc-version-ediff): Require ediff.
2339
2340 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
2341
2342 Use a more backwards-compatible timer format (Bug#12430).
2343 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
2344 being right after USECS, as that better supports old code that
2345 inadvisedly looked directly at the timer vector.
2346
2347 2012-09-13 Kenichi Handa <handa@gnu.org>
2348
2349 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
2350 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
2351 `coding-priority' property of these language environment.
2352
2353 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
2354
2355 Fix glitches caused by addition of psec to timers (Bug#12430).
2356 * image.el (image-animate-timer):
2357 * time.el (display-time-world-timer):
2358 Use timer--function and timer--args rather than raw access to
2359 timer vector.
2360
2361 2012-09-13 Glenn Morris <rgm@gnu.org>
2362
2363 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
2364 If not compiling a file, try using load-file-name.
2365
2366 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
2367
2368 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
2369 Fix last change.
2370 (edebug-update-eval-list): Use `push'.
2371
2372 * emacs-lisp/edebug.el: Use lexical-binding.
2373 Remove the "edebug-" prefix from non-dynamically-scoped variables.
2374 Mark unused args with underscore.
2375 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
2376 (edebug-form-data): Use defvar-local.
2377 (edebug-make-before-and-after-form, edebug-make-after-form):
2378 Use backquote.
2379 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
2380 Not dynamically scoped any more.
2381 (edebug--enter-trace): Add arguments `function' and `args'.
2382 Rename from edebug-enter-trace.
2383 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
2384 (edebug--update-coverage): Add `after-index' and `value' args.
2385 Rename from edebug-update-coverage.
2386 (edebug-slow-after): Call it accordingly.
2387 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
2388 edebug-recursive-edit.
2389 (edebug--display): Call it accordingly. Add args `value',
2390 `offset-index', and `arg-mode'. Rename from edebug-display.
2391 (edebug-debugger, edebug): Call it accordingly.
2392 (edebug-eval-display-list): Use dolist.
2393
2394 2012-09-12 Juri Linkov <juri@jurta.org>
2395
2396 * info.el (Info-search): Don't check for isearch-mode and
2397 isearch-regexp before let-binding search-spaces-regexp to
2398 Info-search-whitespace-regexp.
2399 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
2400 search-whitespace-regexp if isearch-lax-whitespace or
2401 isearch-regexp-lax-whitespace is non-nil.
2402 (Info-mode): Don't set local variable search-whitespace-regexp.
2403 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
2404
2405 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2406
2407 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
2408 (debugger-env-macro): Remove support for unread-command-char.
2409
2410 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
2411 the temporary map re-appearing on emulation-mode-map-alists.
2412
2413 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
2414 since 22.1.
2415
2416 * ehelp.el (with-electric-help): Accept functions in
2417 electric-help-form-to-execute.
2418 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
2419 And replace unread-command-char -> unread-command-events.
2420
2421 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
2422
2423 Sync with Tramp 2.2.6.
2424
2425 * net/tramp.el (tramp-accept-process-output): Don't use
2426 JUST-THIS-ONE in the XEmacs case.
2427
2428 * net/trampver.el: Update release number.
2429
2430 2012-09-12 Martin Rudalics <rudalics@gmx.at>
2431
2432 * emacs-lisp/debug.el (debugger-previous-window-height):
2433 New variable.
2434 (debug): When debugger-jumping-flag is non-nil try to restore
2435 height of debugger window. (Bug#8789)
2436
2437 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2438
2439 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
2440 overriding-local-map and pre/post-command-hook here.
2441 (edebug-recursive-edit): Do it here instead (bug#12345).
2442 (edebug-outside-unread-command-char): Remove all uses of
2443 unread-command-char.
2444
2445 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
2446 inhibit-debugger is bound instead.
2447
2448 2012-09-11 Bastien Guerry <bzg@gnu.org>
2449
2450 * subr.el (set-temporary-overlay-map): Add a docstring.
2451 (Bug#12346)
2452
2453 2012-09-11 Bastien Guerry <bzg@gnu.org>
2454
2455 * minibuffer.el (completion-table-subvert): Fix docstring.
2456 (Bug#12347)
2457
2458 2012-09-11 Bastien Guerry <bzg@gnu.org>
2459
2460 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
2461
2462 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
2463
2464 * progmodes/sql.el: Version 3.1
2465 (sql-db2-escape-newlines): New variable.
2466 (sql-escape-newlines-filter): Use it.
2467
2468 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
2469
2470 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
2471
2472 2012-09-10 Dan Nicolaescu <dann@gnu.org>
2473
2474 * vc/diff-mode.el (diff-mode-menu):
2475 Bind diff-remove-trailing-whitespace.
2476
2477 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2478
2479 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
2480 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
2481 (emacs-lisp-byte-code-mode): New functions.
2482 (eval-sexp-add-defvars): Don't skip defvars in column >0.
2483 (eval-defun-2): Remove bogus interactive spec.
2484 (lisp-indent-line): Remove redundant whole-exp code, now done in
2485 indent-according-to-mode.
2486 (save-match-data): Remove redundant indent data.
2487
2488 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
2489 Use `declare'.
2490
2491 2012-09-09 Juri Linkov <juri@jurta.org>
2492
2493 * replace.el (replace-regexp-lax-whitespace): New defcustom.
2494 (replace-lax-whitespace, query-replace-regexp)
2495 (query-replace-regexp-eval, replace-regexp): Doc fix.
2496 (perform-replace, replace-highlight): Let-bind
2497 isearch-lax-whitespace to replace-lax-whitespace and
2498 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
2499
2500 * isearch.el (isearch-query-replace): Let-bind
2501 replace-lax-whitespace to isearch-lax-whitespace and
2502 replace-regexp-lax-whitespace to
2503 isearch-regexp-lax-whitespace. (Bug#10885)
2504
2505 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
2506
2507 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
2508
2509 2012-09-09 Alan Mackenzie <acm@muc.de>
2510
2511 * progmodes/cc-engine.el (c-state-cache-init):
2512 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
2513 (c-record-parse-state-state):
2514 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
2515
2516 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
2517
2518 * register.el (register-separator): Rename from
2519 separator-register. All uses changed. Doc fix.
2520 (register): Fix version.
2521
2522 2012-09-09 Chong Yidong <cyd@gnu.org>
2523
2524 * replace.el (query-replace-map): Bind four new symbols for
2525 requesting window scrolling.
2526
2527 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
2528 query-replace-map (Bug#8948).
2529
2530 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
2531
2532 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
2533 since they are now in query-replace-map.
2534
2535 * window.el (scroll-other-window-down): Make the arg optional.
2536
2537 2012-09-09 Chong Yidong <cyd@gnu.org>
2538
2539 * files.el (hack-local-variables-confirm): Use quit-window to kill
2540 the *Local Variables* buffer.
2541
2542 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
2543
2544 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
2545 not just expect to be at its beginning. Adjust callees.
2546 Succeed when do-end block has no space before the pipe character.
2547 (ruby-brace-to-do-end): When the original block is one-liner,
2548 convert to multiline. Reindent the result.
2549
2550 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
2551
2552 * register.el (register): New group.
2553 (separator-register): New user option.
2554 (increment-register): Route it to `append-to-register', if
2555 register contains text. Implication is that `C-x r +' can now be
2556 used for appending to a text register (bug#12217).
2557 (append-to-register, prepend-to-register): Add separator based on
2558 `separator-register'.
2559
2560 2012-09-08 Alan Mackenzie <acm@muc.de>
2561
2562 AWK Mode: make auto-newline work when there's "==" in the pattern.
2563 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
2564 correctly.
2565 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
2566 Test more rigorously for "=" token.
2567
2568 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
2569
2570 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
2571 Only fail when reached LIMIT.
2572
2573 2012-09-08 Chong Yidong <cyd@gnu.org>
2574
2575 * dired.el (dired-mode-map): Don't bind M-=.
2576
2577 * dired-aux.el (dired-diff): Use backup file as default.
2578
2579 2012-09-08 Drew Adams <drew.adams@oracle.com>
2580
2581 * subr.el (add-to-history): Fix delete usage (Bug#12314).
2582
2583 2012-09-08 Chong Yidong <cyd@gnu.org>
2584
2585 * subr.el (syntax-after, syntax-class): Doc fix.
2586
2587 2012-09-08 Martin Rudalics <rudalics@gmx.at>
2588
2589 * window.el (display-buffer-in-previous-window): New buffer
2590 display action function.
2591
2592 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
2593 (debugger-previous-window): New variable.
2594 (debug): Rewrite using display-buffer-in-previous-window,
2595 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
2596
2597 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2598
2599 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
2600
2601 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
2602
2603 * progmodes/python.el (python-shell-send-string):
2604 When default-directory is remote, create temp file on remote
2605 filesystem.
2606 (python-shell-send-file): When file is remote, pass local view of
2607 file paths to remote Python interpreter. (Bug#12340)
2608
2609 2012-09-07 Chong Yidong <cyd@gnu.org>
2610
2611 * window.el (switch-to-buffer): Doc fix (Bug#12181).
2612
2613 * files.el (after-find-file): Don't fail on a read-only buffer if
2614 require-final-newline is `visit' or `visit-save' (Bug#11156).
2615
2616 * subr.el (read-char-choice): Allow quitting via ESC ESC.
2617
2618 * userlock.el (ask-user-about-supersession-threat):
2619 Use read-char-choice (Bug#12093).
2620
2621 2012-09-07 Chong Yidong <cyd@gnu.org>
2622
2623 * subr.el (buffer-narrowed-p): New function.
2624
2625 * ses.el (ses-widen):
2626 * simple.el (count-words--buffer-message):
2627 * net/browse-url.el (browse-url-of-buffer): Use it.
2628
2629 * simple.el (count-words-region): Don't signal an error if there
2630 is a non-nil prefix arg and the mark is not set.
2631
2632 * help.el (describe-key-briefly): Allow the message to be seen
2633 when invoked from the minibuffer (Bug#7014).
2634
2635 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
2636
2637 * progmodes/ruby-mode.el (ruby-end-of-defun)
2638 (ruby-beginning-of-defun): Simplify, allow indentation before
2639 block beginning and end keywords.
2640 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
2641 (ruby-end-of-defun): Expect that the point is at the beginning of
2642 the defun.
2643
2644 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2645
2646 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
2647 (bug#12367).
2648 (cl--make-usage-args): Strip _ from argument names.
2649
2650 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2651
2652 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
2653 obsolete alias speedbar-key-map.
2654 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
2655 (vhdl-index-menu-init): Don't use obsolete variable
2656 font-lock-maximum-size.
2657
2658 2012-09-06 Chong Yidong <cyd@gnu.org>
2659
2660 * frame.el (window-system-version): Mark as obsolete.
2661
2662 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
2663 of obsolete variable speedbar-key-map.
2664
2665 2012-09-06 Juri Linkov <juri@jurta.org>
2666
2667 * replace.el (replace-lax-whitespace): New defcustom.
2668 (query-replace, query-replace-regexp, query-replace-regexp-eval)
2669 (replace-string, replace-regexp): Mention it in docstrings.
2670 (perform-replace, replace-highlight): Let-bind
2671 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
2672 to the values of replace-lax-whitespace and regexp-flag.
2673 Don't let-bind search-whitespace-regexp. (Bug#10885)
2674
2675 * isearch.el (isearch-query-replace): Let-bind
2676 replace-lax-whitespace instead of let-binding
2677 replace-search-function and replace-re-search-function.
2678 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
2679 and isearch-regexp-lax-whitespace to lazy-highlight variables.
2680 (isearch-toggle-symbol): Set isearch-regexp to nil
2681 in isearch-word mode (like in isearch-toggle-word).
2682
2683 2012-09-06 Juri Linkov <juri@jurta.org>
2684
2685 * replace.el (replace-search-function)
2686 (replace-re-search-function): Set default values to nil.
2687 (perform-replace): Let-bind isearch-related variables based on
2688 replace-related values, call `isearch-search-fun' and let-bind
2689 the result to `search-function'. Remove code that sets
2690 `search-function' and `search-string' separately for
2691 `delimited-flag'.
2692 (replace-highlight): Add new argument `delimited-flag' and
2693 rename other arguments to the names used in `perform-replace'.
2694 Let-bind `isearch-word' to the argument `delimited-flag'.
2695 (Bug#10885, bug#10887)
2696
2697 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
2698
2699 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
2700 ruby-beginning-of-indent, simplify, allow all keywords to have
2701 indentation before them.
2702 (ruby-beginning-of-indent): Adjust for above. Search until the
2703 found point is not inside a string or comment.
2704 (ruby-font-lock-keywords): Allow symbols to start with "@"
2705 character, give them higher priority than variables.
2706 (ruby-syntax-propertize-function)
2707 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
2708 matchers. Expression expansions are not comments when inside a
2709 string, and there comment syntax status is irrelevant.
2710 (ruby-match-expression-expansion): New function. Check that
2711 expression expansion is inside a string, and it's not escaped.
2712 (ruby-font-lock-keywords): Use it.
2713
2714 2012-09-05 Martin Rudalics <rudalics@gmx.at>
2715
2716 * help.el (temp-buffer-max-height): New default value.
2717 (temp-buffer-resize-frames): New option.
2718 (resize-temp-buffer-window): Optionally resize frame.
2719
2720 * window.el (fit-frame-to-buffer-bottom-margin): New option.
2721 (fit-frame-to-buffer): New function.
2722
2723 2012-09-05 Glenn Morris <rgm@gnu.org>
2724
2725 * emulation/cua-rect.el (cua--init-rectangles):
2726 * textmodes/picture.el (picture-mode-map):
2727 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
2728 like forward-char and backward-char. (Bug#12317)
2729
2730 2012-09-05 Leo Liu <sdl.web@gmail.com>
2731
2732 * progmodes/flymake.el (flymake-warning-re): New variable.
2733 (flymake-parse-line): Use it.
2734
2735 2012-09-05 Glenn Morris <rgm@gnu.org>
2736
2737 * calendar/holidays.el (holiday-christian-holidays):
2738 Rename an entry. (Bug#12289)
2739
2740 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2741
2742 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
2743 (bug#12222).
2744
2745 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2746
2747 * loadup.el: Load macroexp. Remove hack.
2748 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
2749 (macroexp--expand-all): Use it to get better warnings.
2750 (macroexp--backtrace, macroexp--trim-backtrace-frame)
2751 (internal-macroexpand-for-load): New functions.
2752 (macroexp--pending-eager-loads): New var.
2753 (emacs-startup-hook): New hack to replace one in loadup.el.
2754 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
2755 (cl--compiler-macro-cXXr): Move to top, before they can be used.
2756 (cl-psetf): Simplify.
2757 (cl-defstruct): Add indent rule.
2758
2759 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
2760
2761 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
2762 over `user-mail-address' for the SMTP MAIL FROM envelope.
2763 (smtpmail-via-smtp): Ditto.
2764
2765 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
2766
2767 * progmodes/ruby-mode.el: Clean up keybindings.
2768 (ruby-mode-map): Don't bind ruby-electric-brace,
2769 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
2770 backward-kill-word, reindent-then-newline-and-indent.
2771 (ruby-mark-defun): Remove.
2772 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
2773 (ruby-mode): Set local beginning-of-defun-function and
2774 end-of-defun-function values.
2775
2776 2012-09-03 Martin Rudalics <rudalics@gmx.at>
2777
2778 * window.el (temp-buffer-window-setup-hook)
2779 (temp-buffer-window-show-hook): New hooks.
2780 (temp-buffer-window-setup, temp-buffer-window-show)
2781 (with-temp-buffer-window): New functions.
2782 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
2783 (special-display-popup-frame): Make sure the window used shows BUFFER.
2784
2785 * help.el (temp-buffer-resize-mode): Fix doc-string.
2786 (resize-temp-buffer-window): New optional argument WINDOW.
2787
2788 * files.el (recover-file, save-buffers-kill-emacs):
2789 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
2790
2791 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
2792
2793 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
2794 remote definition of `default-directory', ensure we can connect.
2795
2796 2012-09-02 Juri Linkov <juri@jurta.org>
2797
2798 Toggle whitespace matching mode with M-s SPC.
2799 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
2800
2801 * isearch.el (search-whitespace-regexp): Doc fix.
2802 Remove cons cell customization.
2803 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
2804 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
2805 New variables.
2806 (isearch-forward, isearch-forward-regexp): Doc fix.
2807 (isearch-toggle-lax-whitespace): New command.
2808 (search-forward-lax-whitespace, search-backward-lax-whitespace)
2809 (re-search-forward-lax-whitespace)
2810 (re-search-backward-lax-whitespace): New functions.
2811 (isearch-whitespace-regexp): Remove function.
2812 (isearch-query-replace): Let-bind replace-search-function and
2813 replace-re-search-function.
2814 (isearch-occur): Let-bind search-spaces-regexp according to the
2815 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
2816 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
2817 condition for C-q SPC.
2818 (isearch-search-fun-default): Use new functions mentioned above.
2819 (isearch-search-forward, isearch-search-backward): Remove functions.
2820 (isearch-search): Don't let-bind search-spaces-regexp.
2821 (isearch-lazy-highlight-space-regexp): Remove variable.
2822 (isearch-lazy-highlight-lax-whitespace)
2823 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
2824 (isearch-lazy-highlight-new-loop): Use them.
2825 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
2826
2827 2012-09-02 Chong Yidong <cyd@gnu.org>
2828
2829 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
2830
2831 2012-09-02 Glenn Morris <rgm@gnu.org>
2832
2833 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
2834
2835 2012-09-01 Glenn Morris <rgm@gnu.org>
2836
2837 * term.el: Tidy up menu definitions.
2838 (term-mode-map): Use easymenu for In/Out, Complete menus.
2839 (term-pager-break-map): Initialize in the defvar.
2840 (term-terminal-menu, term-signals-menu): Define with easymenu.
2841 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
2842 (term-pager-menu): New, extracted from term-process-pager.
2843 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
2844 (term-update-mode-line): Propertize line/char and page items.
2845 (term-process-pager): Move keymap initialization elsewhere.
2846
2847 2012-09-01 Martin Rudalics <rudalics@gmx.at>
2848
2849 * window.el (switch-to-prev-buffer): Handle additional values of
2850 BURY-OR-KILL argument. Don't switch in minibuffer window.
2851 (switch-to-next-buffer): Don't switch in minibuffer window.
2852 (quit-restore-window): New function based on quit-window.
2853 Handle additional values of former KILL argument.
2854 (quit-window): Call quit-restore-window with appropriate
2855 interpretation of KILL argument.
2856 (display-buffer-below-selected): New buffer display action
2857 function.
2858
2859 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
2860
2861 * minibuffer.el (completion-at-point-functions): Complete docstring
2862 (bug#12254).
2863
2864 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
2865
2866 Better seed support for (random).
2867 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
2868 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
2869 * play/mpuz.el, play/tetris.el, play/zone.el:
2870 * calc/calc-comb.el (math-init-random-base):
2871 * play/blackbox.el (bb-init-board):
2872 * play/life.el (life):
2873 * server.el (server-use-tcp):
2874 * type-break.el (type-break):
2875 Remove unnecessary call to (random t).
2876 * net/sasl.el (sasl-unique-id-function):
2877 Change (random t) to (random), now that the latter is more random.
2878 * play/life.el (life-initialized): Remove no-longer-needed var.
2879
2880 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
2881
2882 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
2883 Consider frame's buffer predicate when choosing the buffer.
2884 (Bug#12081)
2885
2886 2012-08-30 Richard Stallman <rms@gnu.org>
2887
2888 * simple.el (special-mode-map): Delete binding for `z'.
2889
2890 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
2891
2892 * progmodes/compile.el (compilation-always-kill): Doc fix.
2893
2894 2012-08-30 Chong Yidong <cyd@gnu.org>
2895
2896 * window.el (display-buffer-reuse-frames): Make the obsolescence
2897 message more informative.
2898
2899 2012-08-30 Glenn Morris <rgm@gnu.org>
2900
2901 * paren.el (show-paren-delay):
2902 Add a :set function. Doc fix. (Bug#12297)
2903
2904 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
2905
2906 * progmodes/compile.el (compilation-always-kill): New var.
2907 (compilation-start): Use it.
2908
2909 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2910
2911 * simple.el (read-only-mode): Move from files.el for bootstrapping.
2912 * files.el (read-only-mode): Move to simple.el.
2913
2914 * files.el (read-only-mode): New minor mode.
2915 (toggle-read-only): Use it and mark obsolete.
2916 (find-file--read-only):
2917 * vc/vc.el (vc-next-action, vc-checkout):
2918 * vc/vc-cvs.el (vc-cvs-checkout):
2919 * obsolete/vc-mcvs.el (vc-mcvs-update):
2920 * ffap.el (ffap--toggle-read-only): Update callers.
2921
2922 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
2923
2924 * eshell/esh-ext.el (eshell-external-command): Do not examine
2925 remote shell scripts.
2926 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
2927
2928 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
2929 "/usr/local/sbin".
2930
2931 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2932
2933 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
2934
2935 2012-08-28 Leo Liu <sdl.web@gmail.com>
2936
2937 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
2938 completion-at-point. (Bug#12220)
2939
2940 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
2941
2942 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
2943
2944 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2945
2946 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
2947 be buffer-local; add delete-trailing-whitespace (bug#12259).
2948
2949 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
2950
2951 * progmodes/hideif.el (hif-compress-define-list):
2952 Fix typo. (Bug#11951)
2953
2954 2012-08-28 Dan Nicolaescu <dann@gnu.org>
2955
2956 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
2957 buffer local setting.
2958
2959 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
2960 rcirc-encode-coding-system.
2961
2962 2012-08-28 Leo Liu <sdl.web@gmail.com>
2963
2964 * net/rcirc.el (rcirc-split-message): New function.
2965 (rcirc-send-message): Use it. (Bug#12051)
2966
2967 2012-08-28 Juri Linkov <juri@jurta.org>
2968
2969 * info.el (Info-fontify-node): Hide empty lines at the end of
2970 the node. (Bug#12272)
2971
2972 2012-08-27 Drew Adams <drew.adams@oracle.com>
2973
2974 * dired.el (dired-pop-to-buffer): Make window start at beginning
2975 of buffer (Bug#12281).
2976
2977 2012-08-26 Chong Yidong <cyd@gnu.org>
2978
2979 * window.el (special-display-regexps, special-display-frame-alist)
2980 (special-display-buffer-names, special-display-function)
2981 (display-buffer-reuse-frames): Mark as obsolete.
2982
2983 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
2984
2985 * help.el (help-print-return-message): Don't treat
2986 display-buffer-reuse-frames specially.
2987
2988 2012-08-26 Chong Yidong <cyd@gnu.org>
2989
2990 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
2991 New variable, replacing gdb-frame-parameters.
2992 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
2993 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
2994 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
2995 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
2996 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
2997 the functions directly with gdb-display-buffer-other-frame-action.
2998 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
2999 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
3000 (gdb-display-stack-buffer, gdb-display-locals-buffer)
3001 (gdb-display-registers-buffer): Define directly.
3002 (def-gdb-display-buffer): Macro deleted.
3003 (gdb-display-buffer): Remove second and third args, callers don't
3004 use them. Defer to the default display-buffer behavior, apart
3005 from making windows dedicated.
3006 (gdb-setup-windows): Don't call display-buffer unnecessarily.
3007
3008 * progmodes/gud.el (gud-display-line): Just use display-buffer.
3009
3010 * window.el (display-buffer-pop-up-frame): Handle a
3011 pop-up-frame-parameters alist entry.
3012 (display-buffer): Document it.
3013
3014 2012-08-26 Chong Yidong <cyd@gnu.org>
3015
3016 * isearch.el (search-whitespace-regexp): Make string and nil
3017 values apply to both ordinary and regexp search. Allow a cons
3018 cell value to distinguish between the two.
3019 (isearch-whitespace-regexp, isearch-search-forward)
3020 (isearch-search-backward): New functions.
3021 (isearch-occur, isearch-search-fun-default, isearch-search)
3022 (isearch-lazy-highlight-new-loop): Use them.
3023 (isearch-forward, isearch-forward-regexp): Doc fix.
3024
3025 2012-08-26 Chong Yidong <cyd@gnu.org>
3026
3027 * faces.el (help-argument-name): Always inherit from italic
3028 (Bug#12213).
3029
3030 2012-08-25 Martin Rudalics <rudalics@gmx.at>
3031
3032 * window.el (window--even-window-heights): Even heights when
3033 WINDOW and the selected window form a vertical combination.
3034 (display-buffer-use-some-window): Provide that window used gets
3035 sized back by quit-window. (Bug#11880) and (Bug#12091)
3036
3037 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
3038
3039 Fix file time stamp problem with bzr and CVS (Bug#12001).
3040 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
3041 in the file's time stamp, since the version control system loses
3042 that information.
3043
3044 2012-08-22 Juri Linkov <juri@jurta.org>
3045
3046 * info.el (Info-fontify-node): Hide the suffix of the
3047 Info file name in the header line. (Bug#12187)
3048
3049 2012-08-22 Glenn Morris <rgm@gnu.org>
3050
3051 * calendar/cal-tex.el (cal-tex-weekly-common):
3052 Restore leading blank page.
3053
3054 2012-08-22 Le Wang <l26wang@gmail.com> (tiny change)
3055
3056 * misc.el (forward-to-word, backward-to-word): Activate or extend
3057 the region under `shift-select-mode'. (Bug#12231)
3058
3059 2012-08-22 Bastien Guerry <bzg@gnu.org>
3060
3061 * progmodes/executable.el (executable-prefix): Set to "#!" instead
3062 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
3063 gives details on why the space is never needed.
3064
3065 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3066
3067 * window.el (walk-window-tree, window-with-parameter):
3068 New optional argument MINIBUF to control whether these functions
3069 should run on the minibuffer window.
3070 (window-at-side-list): Don't operate on minibuffer window.
3071 (window-in-direction): Simplify and rewrite doc-string.
3072 (window--size-ignore): Rename to window--size-ignore-p.
3073 Update callers.
3074 (display-buffer-in-atom-window, window--major-non-side-window)
3075 (window--major-side-window, display-buffer-in-major-side-window)
3076 (delete-side-window, display-buffer-in-side-window):
3077 New functions.
3078 (window--side-check, window-deletable-p, delete-window)
3079 (delete-other-windows, split-window): Handle side windows and
3080 atomic windows appropriately.
3081 (window--display-buffer): Call display-buffer-record-window also
3082 when the window buffer did not change.
3083
3084 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
3085
3086 * help-fns.el (help-fns--key-bindings):
3087 Abbreviate non-symbol remap targets. (Bug#12174)
3088
3089 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3090
3091 * dired.el (dired-mark-remembered): Don't clobber point.
3092 (Bug#11795)
3093
3094 2012-08-22 Glenn Morris <rgm@gnu.org>
3095
3096 * progmodes/bug-reference.el (bug-reference): New custom group.
3097 (bug-reference-bug-regexp): Make it a defcustom.
3098
3099 2012-08-22 Daiki Ueno <ueno@unixuser.org>
3100
3101 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
3102 (js-paren-indent-offset, js-square-indent-offset)
3103 (js-curly-indent-offset): Add :safe (Bug#12257).
3104
3105 2012-08-22 Edward O'Connor <hober0@gmail.com>
3106
3107 * json.el (json-key-format): Add error properties.
3108 (json-encode-key): New function.
3109 (json-encode-hash-table, json-encode-alist, json-encode-plist):
3110 Use json-encode-key.
3111
3112 2012-08-22 Glenn Morris <rgm@gnu.org>
3113
3114 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
3115 (cal-tex-leftday, cal-tex-rightday): Remove functions.
3116 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
3117 Update for above change.
3118
3119 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
3120
3121 * cus-face.el (custom-face-attributes): Fix customize type for the
3122 :underline attribute. (Bug#11805)
3123
3124 2012-08-21 Martin Rudalics <rudalics@gmx.at>
3125
3126 * window.el (window-point-1, set-window-point-1): Remove.
3127 (window-in-direction, record-window-buffer)
3128 (set-window-buffer-start-and-point, split-window-below)
3129 (window--state-get-1, display-buffer-record-window):
3130 Replace calls to window-point-1 and set-window-point-1 by calls to
3131 window-point and set-window-point respectively.
3132
3133 2012-08-21 Glenn Morris <rgm@gnu.org>
3134
3135 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
3136 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
3137 Use it.
3138
3139 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
3140 (cal-tex-shortday): New function.
3141 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
3142 (cal-tex-cursor-filofax-daily): Use the above.
3143
3144 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
3145 New functions.
3146 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3147 (cal-tex-cursor-filofax-week): Use them.
3148
3149 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
3150 New constants.
3151 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3152 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
3153
3154 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
3155 (cal-tex-end-document): Don't rely on buffer name.
3156
3157 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
3158 Use cal-tex-vspace.
3159 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
3160 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
3161 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
3162 Use cal-tex-arg.
3163
3164 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
3165 (cal-tex-cursor-week, cal-tex-cursor-week2)
3166 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
3167 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3168 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
3169 (cal-tex-insert-preamble, cal-tex-b-document)
3170 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
3171 Improve cal-tex-cmd usage.
3172
3173 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
3174 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
3175 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
3176 (cal-tex-weekly-paper): New function.
3177 (cal-tex-cursor-week, cal-tex-cursor-week2)
3178 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
3179 (cal-tex-cursor-day): Use it.
3180
3181 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
3182 (cal-tex-cursor-filofax-week): Remove leading blank page.
3183
3184 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3185 Add autoload cookie. For now at least, don't use color, since
3186 no other cal-tex function does.
3187
3188 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
3189 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3190 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
3191
3192 2012-08-21 Juri Linkov <juri@jurta.org>
3193
3194 * info.el (Info-file-attributes): New variable.
3195 (info-insert-file-contents): Add file attributes to
3196 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
3197 `Info-toc-nodes' when previous modtime of the Info file is less
3198 than new modtime.
3199 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
3200 of info.el. (Bug#12230)
3201
3202 2012-08-20 Glenn Morris <rgm@gnu.org>
3203
3204 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
3205 * calendar/holidays.el (calendar-holiday-list):
3206 Report errors with display-warning rather than beep'n'sleep.
3207
3208 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
3209
3210 * net/tramp.el (tramp-accept-process-output): Accept only output
3211 from PROC. Otherwise, process filters and sentinels might be
3212 confused. (Bug#12145)
3213
3214 2012-08-20 Chong Yidong <cyd@gnu.org>
3215
3216 * descr-text.el (describe-text-properties-1): Use overlays-in to
3217 report on empty overlays (Bug#3322).
3218
3219 2012-08-20 Glenn Morris <rgm@gnu.org>
3220
3221 * mail/rmailout.el (rmail-output-read-file-name):
3222 Trap and report errors in rmail-output-file-alist elements.
3223
3224 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
3225 since most non-font-lock faces are not also variables).
3226
3227 2012-08-20 Edward Reingold <reingold@iit.edu>
3228
3229 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3230 New function. (Bug12160)
3231
3232 2012-08-19 Glenn Morris <rgm@gnu.org>
3233
3234 * mail/rmailout.el (rmail-output-read-file-name):
3235 Fix previous change (when the alist is nil or does not match).
3236
3237 2012-08-19 Chong Yidong <cyd@gnu.org>
3238
3239 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
3240 (Bug#12228).
3241
3242 2012-08-18 Chong Yidong <cyd@gnu.org>
3243
3244 * simple.el (yank-handled-properties): New defcustom.
3245 (yank-excluded-properties): Add font-lock-face and category.
3246 (yank): Doc fix.
3247
3248 * subr.el (remove-yank-excluded-properties):
3249 Obey yank-handled-properties. The special handling of font-lock-face
3250 and category is now done this way, instead of being hard-coded.
3251 (insert-for-yank-1): Remove font-lock-face handling.
3252 (yank-handle-font-lock-face-property)
3253 (yank-handle-category-property): New function.
3254
3255 2012-08-17 Glenn Morris <rgm@gnu.org>
3256
3257 * mail/rmailout.el (rmail-output-read-file-name):
3258 Check rmail-output-file-alist against the full message body
3259 in the correct rmail buffer. (Bug#12214)
3260
3261 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
3262
3263 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3264 Eliminate superfluous prompt. (Bug#12203)
3265
3266 2012-08-17 Chong Yidong <cyd@gnu.org>
3267
3268 * mouse.el (mouse-appearance-menu): If x-select-font returns a
3269 font spec, set the font directly (Bug#3228).
3270
3271 2012-08-17 Martin Rudalics <rudalics@gmx.at>
3272
3273 * window.el (delete-window): Fix last fix.
3274
3275 2012-08-16 Martin Rudalics <rudalics@gmx.at>
3276
3277 * window.el (window-valid-p): Move to window.c.
3278 (window-child, window-child-count, window-last-child)
3279 (window-normalize-window, window-combined-p)
3280 (window-combinations, window-atom-root, window-min-size)
3281 (window-sizable, window-sizable-p, window-size-fixed-p)
3282 (window-min-delta, window-max-delta, window--resizable)
3283 (window--resizable-p, window-resizable, window-total-size)
3284 (window-full-height-p, window-full-width-p, window-body-size)
3285 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
3286 (minimize-window, window-deletable-p, delete-window)
3287 (delete-other-windows, set-window-buffer-start-and-point)
3288 (next-buffer, previous-buffer, split-window, balance-windows-2)
3289 (set-window-text-height, window-buffer-height)
3290 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
3291 (truncated-partial-width-window-p): Minor code adjustments.
3292 In doc-strings state whether the argument window has to denote a
3293 live, valid or any window.
3294
3295 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
3296
3297 * progmodes/subword.el (subword-forward-function)
3298 (subword-backward-function, subword-forward-regexp)
3299 (subword-backward-regexp): New variables.
3300 (subword-forward, subword-forward-internal, subword-backward-internal):
3301 Use new variables, eg so that different "word" definitions
3302 can be easily used. (Bug#11411)
3303
3304 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3305
3306 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
3307 for composite selectors.
3308 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
3309 operation just because we can't find a previous revision.
3310
3311 2012-08-15 Chong Yidong <cyd@gnu.org>
3312
3313 * frame.el (set-frame-font): Accept font objects.
3314
3315 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3316
3317 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
3318
3319 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
3320
3321 * man.el (Man-overstrike-face, Man-underline-face)
3322 (Man-reverse-face): Remove variables.
3323 (Man-overstrike, Man-underline, Man-reverse): New faces.
3324 (Man-fontify-manpage): Use them instead of the variables.
3325 (Man-cleanup-manpage): Comment change.
3326 (Man-ansi-color-map): New variable.
3327 (Man-fontify-manpage): Use it.
3328 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
3329
3330 Implement ANSI SGR parameters 22-27 (bug#12146).
3331 * ansi-color.el (ansi-colors): Doc fix.
3332 (ansi-color-context, ansi-color-context-region): Doc fix.
3333 (ansi-color--find-face): New function.
3334 (ansi-color-apply, ansi-color-apply-on-region): Use it.
3335 Rename the local variable `face' to `codes' since it is now a list of
3336 ansi codes. Doc fix.
3337 (ansi-color-get-face): Remove.
3338 (ansi-color-parse-sequence): New function, derived from
3339 ansi-color-get-face.
3340 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
3341 codes 22-27.
3342
3343 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
3344
3345 * subr.el (read-passwd): Allow use from a minibuffer.
3346
3347 2012-08-14 Eli Zaretskii <eliz@gnu.org>
3348
3349 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
3350 inside comments and strings as identifiers.
3351
3352 * progmodes/gud.el (gud-tooltip-print-command): Quote the
3353 expression to evaluate. This allows to evaluate expressions with
3354 embedded whitespace.
3355 (gud-tooltip-tips): Add a blank before the newline in the
3356 message-box text, for the benefit of message-box emulation on
3357 MS-Windows.
3358
3359 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
3360 messages from GDB, pop them up in a tooltip to give feedback to
3361 user.
3362 (gdb-tooltip-print-1): Quote the expression to evaluate.
3363 This allows to evaluate expressions with embedded whitespace.
3364 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
3365 if the TTY name is nil or empty (which happens when communicating
3366 with the inferior via pipes, e.g. on MS-Windows).
3367 (gdb-internals): If GDB sends a "&\n" empty debugging message,
3368 don't send that to the GUD buffer.
3369
3370 2012-08-14 Glenn Morris <rgm@gnu.org>
3371
3372 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
3373 Optimize away setq-default with no args, as for setq. (Bug#12195)
3374
3375 2012-08-14 Chong Yidong <cyd@gnu.org>
3376
3377 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
3378
3379 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
3380 (Bug#12085).
3381
3382 2012-08-14 Glenn Morris <rgm@gnu.org>
3383
3384 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
3385
3386 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
3387
3388 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
3389 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
3390 Use cached shell name.
3391
3392 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
3393
3394 * progmodes/python.el (python-shell-send-string):
3395 (python-shell-send-setup-code): Do not use `format' with `message'.
3396
3397 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
3398
3399 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
3400 (ruby-percent-literal-beg-re): New constant.
3401 (ruby-syntax-general-delimiters-goto-beg): Rename to
3402 `ruby-syntax-enclosing-percent-literal', improve literal type check.
3403 (ruby-syntax-propertize-general-delimiters): Rename to
3404 `ruby-syntax-propertize-percent-literal', it's a shorter and more
3405 popular term. Adjust comments everywhere.
3406 (ruby-syntax-propertize-percent-literal): Only propertize when not
3407 inside a simple string or comment. When the literal is unclosed,
3408 leave the text after it unpropertized.
3409 (ruby-syntax-methods-before-regexp): New constant.
3410 (ruby-syntax-propertize-function): Use it to recognize regexps.
3411 Don't look at the text after regexp, just use the whitelist.
3412
3413 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
3414
3415 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
3416 non-nil always load the compiled file if it exists. (Bug#12197)
3417
3418 2012-08-14 Chong Yidong <cyd@gnu.org>
3419
3420 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
3421 (hi-lock-set-pattern): When deciding whether to use font lock or
3422 overlays, look at font-lock-mode instead of font-lock-fontified
3423 (Bug#12168).
3424 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
3425 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
3426
3427 2012-08-14 Daiki Ueno <ueno@unixuser.org>
3428
3429 * subr.el (internal--after-with-selected-window): Fix typo
3430 (Bug#12193).
3431
3432 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
3433
3434 Use `completion-table-dynamic' for completion functions.
3435 * progmodes/python.el
3436 (python-shell-completion--do-completion-at-point)
3437 (python-shell-completion--get-completions):
3438 Remove functions.
3439 (python-shell-completion-complete-at-point): New function.
3440 (python-completion-complete-at-point): Use it.
3441
3442 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
3443
3444 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
3445 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
3446
3447 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
3448
3449 * subr.el (function-get): Refine `autoload' arg so it can also
3450 autoload functions for gv.el (bug#12191).
3451 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
3452 autoloads macros.
3453
3454 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
3455 Prefer pcase-let over destructuring-bind.
3456 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
3457 Also, remove whitespace as we go, rather than after accumulating the
3458 various places.
3459
3460 * subr.el (internal--before-with-selected-window)
3461 (internal--after-with-selected-window): Fix typo seleted->selected.
3462 (with-selected-window): Adjust callers.
3463 Reported by Dmitry Gutov <dgutov@yandex.ru>.
3464
3465 2012-08-13 Bastien Guerry <bzg@gnu.org>
3466
3467 * window.el (special-display-popup-frame): Minor docstring
3468 enhancement. (Bug#12172)
3469
3470 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
3471
3472 * tar-mode.el (tar-header-data-end): Only ignore size for files of
3473 type 1-6.
3474 (tar-header-block-summarize, tar-get-descriptor): Handle pax
3475 extended headers.
3476
3477 * files.el (hack-local-variables-filter): Remove useless eval.
3478
3479 2012-08-13 Martin Rudalics <rudalics@gmx.at>
3480
3481 * subr.el (with-selected-window): Fix last change.
3482
3483 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3484
3485 * subr.el (internal--before-with-seleted-window)
3486 (internal--after-with-seleted-window): New functions.
3487 (with-selected-window): Use them, to replace dependency on
3488 tty-top-frame.
3489
3490 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
3491
3492 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
3493 binding for `newline'.
3494 (ruby-move-to-block): When moving backward, stop at block opening,
3495 not indentation.
3496 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
3497 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
3498 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
3499 `ruby-toggle-block'.
3500
3501 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3502
3503 * ibuffer.el (ibuffer-do-toggle-read-only):
3504 * dired.el (dired-toggle-read-only):
3505 * buff-menu.el (Buffer-menu-toggle-read-only):
3506 * bindings.el (mode-line-toggle-read-only):
3507 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
3508
3509 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
3510
3511 * descr-text.el (describe-char): Put the overlays over the
3512 "displayed as" character.
3513
3514 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
3515
3516 * calc/calc-units.el (math-default-units-table): Give an
3517 initial value.
3518 (math-put-default-units): Add options to put composite units and
3519 unit systems in the default units table.
3520 (calc-convert-units): Send composite units to
3521 `math-put-default-units' when appropriate.
3522
3523 2012-08-11 Glenn Morris <rgm@gnu.org>
3524
3525 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
3526
3527 * tutorial.el (help-with-tutorial):
3528 * emacs-lisp/copyright.el (copyright-update-directory):
3529 * emacs-lisp/autoload.el (autoload-find-generated-file)
3530 (autoload-find-file): Disable local eval: (for insurance).
3531
3532 * files.el (hack-local-variables-filter): If an eval: form is not
3533 known to be safe, and enable-local-variables is :safe, then ignore
3534 the form totally, as is done for non-eval forms. (Bug#12155)
3535 This is CVE-2012-3479.
3536
3537 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
3538
3539 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
3540 (rx-form): Simplify.
3541
3542 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
3543
3544 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
3545 ?, _, and : are symbol constituents, ! is not (but kinda should be).
3546 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
3547 (ruby-syntax-propertize-function): Adjust for changes in
3548 `ruby-syntax-propertize-heredoc'.
3549
3550 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
3551
3552 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
3553 binding (use `M-;' instead).
3554 (ruby-singleton-class-p): New function.
3555 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
3556
3557 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
3558
3559 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
3560
3561 2012-08-10 Chong Yidong <cyd@gnu.org>
3562
3563 * progmodes/python.el (python-shell-get-process-name): Don't mess
3564 with same-window-buffer-names.
3565
3566 * eshell/eshell.el (eshell-add-to-window-buffer-names)
3567 (eshell-remove-from-window-buffer-names): Make obsolete.
3568 (eshell-buffer-name, eshell-unload-hook): Don't use them.
3569 (eshell): Just use pop-to-buffer-same-window instead.
3570
3571 2012-08-10 Chong Yidong <cyd@gnu.org>
3572
3573 * bindings.el: Bind M-= back to count-words-region.
3574
3575 * simple.el (count-words-region): Accept a prefix arg for acting
3576 on the entire buffer.
3577 (count-words--buffer-message): New helper function.
3578
3579 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
3580
3581 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
3582 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
3583 (event-start, event-end): Use posn-at-point to return a more
3584 informative posn.
3585 (posnp): New function.
3586 * mouse.el (popup-menu-normalize-position): Use it.
3587
3588 2012-08-10 Masatake YAMATO <yamato@redhat.com>
3589
3590 * mouse.el (popup-menu-normalize-position): New function.
3591 (popup-menu): Use `popup-menu-normalize-position' to normalize
3592 the form for POSITION argument.
3593
3594 * term/x-win.el (x-menu-bar-open):
3595 Use the value returend from (posn-at-point) as position
3596 passed to `popup-menu'.
3597
3598 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
3599
3600 * calc/calccomp.el (math-compose-expr): Add extra argument
3601 indicating that parentheses should be put around products in
3602 denominators. Give multiplication precedence over division during
3603 composition.
3604
3605 2012-08-09 Chong Yidong <cyd@gnu.org>
3606
3607 * man.el (Man-switches, Man-sed-command, Man-awk-command)
3608 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
3609 (Man-untabify-command, manual-program): Convert to defcustom
3610 (Bug#10429).
3611
3612 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
3613
3614 * descr-text.el (describe-char): Don't insert extra newlines
3615 (Bug#10127).
3616
3617 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
3618 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
3619
3620 * align.el (align-region): Delete temporary markers (Bug#10047).
3621 Plus some code cleanups.
3622
3623 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
3624
3625 * progmodes/python.el (python-pdbtrack-tracked-buffer)
3626 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
3627 (python-shell-internal-last-output): Use make-local-variable
3628 instead of make-variable-buffer-local.
3629
3630 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
3631
3632 * progmodes/python.el: Enhancements to forward-sexp.
3633 (python-nav-forward-sexp): Rename from
3634 python-nav-forward-sexp-function.
3635 (python-nav--forward-sexp, python-nav--backward-sexp):
3636 New functions.
3637
3638 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
3639
3640 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
3641 modes and simplification modes.
3642
3643 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
3644
3645 * delsel.el (delete-selection-pre-hook): Don't propagate the
3646 file-supersession signals (bug#12161).
3647
3648 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3649
3650 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
3651 (cl-map-extents): Add compatibility aliases (bug#12135).
3652
3653 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
3654
3655 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
3656 tests by `ignore-error'.
3657 (tramp-find-shell): Open also a new shell, when cache is already
3658 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
3659
3660 2012-08-08 Juri Linkov <juri@jurta.org>
3661
3662 * bookmark.el: Add `defaults' property to the bookmark record.
3663 (bookmark-current-buffer): Doc fix.
3664 (bookmark-make-record): Add `defaults' property with default values
3665 to the bookmark record.
3666 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
3667 with `bookmark-insert-current-bookmark'.
3668 (bookmark-set): Get `defaults' property from the bookmark record
3669 and use it in `read-from-minibuffer'.
3670 (bookmark-insert-current-bookmark): Remove function.
3671
3672 * info.el (Info-bookmark-make-record): Add `defaults' property
3673 with values of canonical Info node name, the current Info file
3674 name and the current Info node name. (Bug#12107)
3675
3676 2012-08-08 Juri Linkov <juri@jurta.org>
3677
3678 * files.el (basic-save-buffer): Use `buffer-name' as the default
3679 of `read-file-name' when buffer is not visiting a file (bug#12128).
3680
3681 2012-08-08 Juri Linkov <juri@jurta.org>
3682
3683 * info.el (Info-isearch-search): Doc fix.
3684 (Info-search): Change search-failed message from "initial node" to
3685 "end of node" (bug#12078).
3686 (Info-isearch-search): Change `isearch-string-state' to
3687 `isearch--state-string'.
3688
3689 2012-08-08 Glenn Morris <rgm@gnu.org>
3690
3691 * language/persian.el: Remove file.
3692 * language/misc-lang.el: Move unique part of persian.el here.
3693 * loadup.el: Remove language/persian.
3694
3695 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
3696
3697 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
3698
3699 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
3700
3701 * progmodes/python.el Fixed defsubst warning.
3702 (python-syntax-context) Rename from python-info-ppss-context.
3703 (python-syntax-context-type): Rename from
3704 python-info-ppss-context-type.
3705 (python-syntax-comment-or-string-p): Rename from
3706 python-info-ppss-comment-or-string-p.
3707
3708 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
3709
3710 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
3711
3712 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
3713
3714 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
3715 a defcustom that is quoted with backquote.
3716
3717 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
3718 Fix handling of interactive spec when the body uses return.
3719 (math-do-arg-check, math-define-function-body): Use backquote forms.
3720 * calc/calc-ext.el (math-defcache): Likewise.
3721 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
3722 * allout.el (allout-new-exposure): Likewise.
3723 * calc/calcalg2.el (math-tracing-integral): Likewise.
3724 * info.el (Info-last-menu-item): Likewise.
3725 * emulation/vip.el (vip-loop): Likewise.
3726 * textmodes/artist.el (artist-funcall): Likewise.
3727 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
3728 Construct menu-item directly.
3729
3730 * progmodes/autoconf.el (font-lock-syntactic-keywords):
3731 Don't declare.
3732
3733 2012-08-07 Chong Yidong <cyd@gnu.org>
3734
3735 * simple.el (deactivate-mark): Preserve text properties when
3736 saving the primary selection (Bug#8384).
3737
3738 2012-08-07 Kevin Ryde <user42@zip.com.au>
3739
3740 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
3741 (woman-parse-numeric-value): On a bad .IP line, issue a warning
3742 and continue processing (Bug#12110).
3743
3744 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
3745
3746 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
3747 syntax-propertize-function (bug#10095).
3748
3749 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
3750
3751 * help-fns.el (help-fns--key-bindings, help-fns--signature)
3752 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
3753 describe-function-1.
3754 (describe-function-1): Use them. Move compiler macro after sig.
3755 (help-fns--compiler-macro): Use function-get. Assume we're already in
3756 standard-output. Adjust layout to new call order.
3757
3758 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
3759 re-binding a symbol that has a symbol-macro (bug#12119).
3760
3761 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
3762
3763 * language/persian.el: New file. (Bug#11812)
3764 * loadup.el: Add language/persian.el.
3765
3766 2012-08-06 Chong Yidong <cyd@gnu.org>
3767
3768 * window.el (window--maybe-raise-frame): New function.
3769 (window--display-buffer): Split off from here.
3770 (display-buffer-reuse-window, display-buffer-pop-up-frame)
3771 (display-buffer-pop-up-window, display-buffer-use-some-window):
3772 Obey an inhibit-switch-frame action alist entry.
3773 (display-buffer): Update doc.
3774
3775 * replace.el (occur-after-change-function): Avoid losing focus by
3776 using the inhibit-switch-frame display parameter (Bug#12139).
3777
3778 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
3779
3780 Make internal shell process buffer names start with space.
3781 * progmodes/python.el (python-shell-make-comint): Add optional
3782 argument INTERNAL.
3783 (run-python-internal): Use it.
3784 (python-shell-internal-get-or-create-process): Check for new
3785 internal buffer names.
3786
3787 2012-08-06 Glenn Morris <rgm@gnu.org>
3788
3789 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
3790 Do less getting and setting of environment variables.
3791
3792 2012-08-05 Chong Yidong <cyd@gnu.org>
3793
3794 * proced.el (proced): Add substitution string to docstring to
3795 trigger autoloading of the proced library on C-h f (Bug#1768).
3796
3797 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
3798 Don't show defvars which have no second argument (Bug#8638).
3799
3800 * imenu.el (imenu-generic-expression): Move documentation here
3801 from imenu--generic-function.
3802 (imenu--generic-function): Refer to imenu-generic-expression.
3803
3804 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
3805
3806 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
3807 indentation declaration.
3808 (viper-loop): Add indentation declaration (Bug#7025).
3809
3810 2012-08-05 Chong Yidong <cyd@gnu.org>
3811
3812 * help-fns.el (describe-variable): Add hyperlink for
3813 directory-local variables files. Improve buffer-local and
3814 permanent-local reporting; suggested by MON KEY (Bug#6644).
3815
3816 * help-mode.el (help-dir-local-var-def): New button type.
3817
3818 * files.el (kill-buffer-hook): Provide a defvar.
3819
3820 2012-08-05 Glenn Morris <rgm@gnu.org>
3821
3822 * eshell/esh-ext.el (eshell/addpath):
3823 Also update eshell-path-env. (Bug#12013)
3824
3825 2012-08-05 Chong Yidong <cyd@gnu.org>
3826
3827 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
3828
3829 * fringe.el (fringe-styles): Add docstring.
3830 (fringe--check-mode): New function.
3831 (set-fringe-mode, set-fringe-style): Use it.
3832 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
3833
3834 * files.el (set-auto-mode): Fix invalid setq call.
3835
3836 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3837
3838 * isearch.el: Misc simplification; use defstruct.
3839 (isearch-mode-map): Dense maps now work like sparse ones.
3840 (isearch--state): New defstruct.
3841 (isearch-string-state, isearch-message-state, isearch-point-state)
3842 (isearch-success-state, isearch-forward-state)
3843 (isearch-other-end-state, isearch-word-state, isearch-error-state)
3844 (isearch-wrapped-state, isearch-barrier-state)
3845 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
3846 replaced by defstruct's accessors.
3847 (isearch--set-state): Rename from isearch-top-state and change
3848 calling convention.
3849 (isearch-push-state): Use new isearch--get-state.
3850 (isearch-toggle-word): Disable regexp when enabling word.
3851 (isearch-message-prefix): Remove unused arg _c-q-hack.
3852 (isearch-message-suffix): Remove unused arg _ellipsis.
3853
3854 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
3855
3856 * simple.el (list-processes--refresh): For a server use :host or
3857 :local as the address.
3858 (list-processes): Doc fix.
3859
3860 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
3861
3862 * lisp/mpc.el: Support password in host argument.
3863 (mpc--proc-connect): Parse and use new password element.
3864 Set mpc-proc variable instead of returning process.
3865 (mpc-proc): Adjust accordingly.
3866
3867 2012-08-03 Eli Zaretskii <eliz@gnu.org>
3868
3869 * whitespace.el (whitespace-display-mappings): Use Unicode
3870 codepoints, instead of emacs-mule codepoints. See
3871 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
3872 for the details.
3873
3874 * files.el (file-truename): Don't skip symlink-chasing part on
3875 windows-nt. Incorporate the resolution of 8+3 short aliases on
3876 Windows into the loop that recursively chases symlinks.
3877 Compare directory and its parent case-insensitively on MS-Windows and
3878 MS-DOS.
3879
3880 2012-08-03 Chong Yidong <cyd@gnu.org>
3881
3882 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
3883
3884 * sort.el (sort-regexp-fields): Doc fix.
3885
3886 2012-08-03 Tassilo Horn <tsdh@gnu.org>
3887
3888 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
3889 labels regex position point at the expected place.
3890
3891 2012-08-03 MON KEY <monkey@sandpframing.com>
3892
3893 * net/imap.el (imap-interactive-login, imap-authenticate)
3894 (imap-mailbox-lsub, imap-mailbox-list)
3895 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
3896 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
3897 (imap-parse-response): Doc fix.
3898
3899 2012-08-03 João Távora <joaotavora@gmail.com>
3900
3901 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
3902 if sexp scanning does not move point (Bug#5734).
3903
3904 2012-08-02 Tassilo Horn <tsdh@gnu.org>
3905
3906 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
3907 Add listings, minted, and ctable packages.
3908 (reftex-label-alist-builtin): Move listings, minted, and ctable
3909 entries before LaTeX.
3910 (reftex-label-alist): Docfix.
3911
3912 2012-08-02 Bastien Guerry <bzg@gnu.org>
3913
3914 * replace.el (occur): Fix docstring (bug#12122).
3915
3916 2012-08-02 Glenn Morris <rgm@gnu.org>
3917
3918 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
3919
3920 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
3921
3922 Obsolete alias inactivate-current-input-method-function (Bug#10150).
3923 * international/mule-cmds.el: Create
3924 inactivate-current-input-method-function as an obsolete alias for
3925 deactivate-current-input-method-function. See Katsumi Yamaoka in
3926 <http://bugs.gnu.org/10150#46>.
3927
3928 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
3929
3930 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
3931 of nested `if's.
3932
3933 2012-08-01 Glenn Morris <rgm@gnu.org>
3934
3935 * progmodes/autoconf.el (autoconf-definition-regexp):
3936 Add AH_TEMPLATE, adjust submatch numbering.
3937 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
3938 (autoconf-current-defun-function): Update for above change.
3939 (autoconf-current-defun-function): First skip to end of current word.
3940
3941 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
3942
3943 * calendar/cal-html.el (cal-html-insert-agenda-days):
3944 Fix typo. (Bug#12018)
3945
3946 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
3947
3948 Shell processes: enhancements to startup and CEDET compatibility.
3949 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
3950 (python-shell-make-comint): accept-process-output at startup.
3951 (run-python-internal): Set inferior-python-mode-hook to nil.
3952 (python-shell-internal-get-or-create-process): call sit-for.
3953 (python-preoutput-result): Add obsolete alias.
3954 (python-shell-internal-send-string): Use it.
3955 (python-shell-send-setup-code): Remove call to
3956 accept-process-output.
3957
3958 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
3959
3960 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
3961 (Bug#12108)
3962
3963 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
3964
3965 * calc-mode.el (calc-basic-simplification-mode): Rename from
3966 `calc-limited-simplification-mode'.
3967 (calc-alg-simplification-mode): New function.
3968 (calc-set-simplify-mode): Adjust message.
3969
3970 * calc.el (calc-set-mode-line): Adjust mode line display for
3971 basic simplification mode.
3972
3973 * calc-help.el (calc-m-prefix-help): Update help message.
3974
3975 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
3976 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
3977
3978 2012-07-31 Bastien Guerry <bzg@gnu.org>
3979
3980 * man.el (man): Fix comment. (bug#12101)
3981
3982 2012-07-31 Martin Rudalics <rudalics@gmx.at>
3983
3984 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
3985 Don't return a non-nil value when no suitable buffer was found.
3986
3987 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
3988
3989 * progmodes/python.el (run-python-internal): Disable font lock for
3990 internal shells.
3991
3992 2012-07-30 Stefan Merten <smerten@oekonux.de>
3993
3994 * textmodes/rst.el: Silence `checkdoc-ispell'.
3995 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
3996 (rst-official-version, rst-official-cvs-rev)
3997 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
3998 (rst-mode-map): New key binding.
3999
4000 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4001
4002 Update .PHONY listings in makefiles.
4003 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
4004 autoloads, update-subdirs, updates, bzr-update, update-authors,
4005 compile-onefile, compile-calc, backup-compiled-files,
4006 compile-after-backup, compile-one-process, mh-autoloads,
4007 bootstrap-clean, distclean, maintainer-clean.
4008
4009 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
4010
4011 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
4012 (calc-set-mode-line): Don't display "AlgSimp ".
4013
4014 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
4015 (calc-lim-simplify-mode): New function.
4016 (calc-set-simplify-mode): Default to 'alg.
4017 (calc-default-simplify-mode): Make algebraic simplifications
4018 the default.
4019
4020 * calc/calc-ext.el (calc-init-extensions): Remove binding for
4021 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
4022
4023 * calc/calc-help.el (calc-m-prefix-help): Change messages to
4024 indicate new simplification modes.
4025
4026 * calc/README: Mention new default simplification mode.
4027
4028 * calc/calc.el (math-normalize-error): New variable.
4029 (math-normalize): Set `math-normalize-error' to t
4030 when there's an error.
4031
4032 * calc/calc-alg.el (math-simplify): Don't simplify when
4033 `math-normalize' returns an error.
4034
4035 2012-07-29 Eli Zaretskii <eliz@gnu.org>
4036
4037 * international/mule-cmds.el (set-locale-environment): Revert last
4038 change, since display-graphic-p returns nil when this function is
4039 called during startup. Instead...
4040
4041 * term/w32console.el (terminal-init-w32console): ...setup the
4042 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
4043
4044 2012-07-29 Juri Linkov <juri@jurta.org>
4045
4046 * simple.el (goto-line): Don't display default line number in the
4047 prompt because it should be displayed by `read-number' (bug#9952).
4048 Add the current line number to the defaults of `goto-line' to
4049 allow its easier modification by users with `M-n' (bug#9201).
4050
4051 * subr.el (read-number): Support multiple default values like in
4052 other minibuffer reading functions. Replace `read' with
4053 `string-to-number' for consistency with `number-to-string'.
4054
4055 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4056
4057 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
4058 * emulation/viper-init.el (viper-deactivate-input-method-action):
4059 Rename from viper-inactivate-input-method-action.
4060 (viper-deactivate-input-method):
4061 Rename from viper-inactivate-input-method.
4062 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
4063 * international/mule-cmds.el (deactivate-input-method):
4064 Rename from inactivate-input-method.
4065 Also run input-method-deactivate-hook.
4066 (deactivate-current-input-method-function):
4067 Rename from inactivate-current-input-method-function.
4068 (input-method-deactivate-hook): New hook.
4069 (input-method-inactivate-hook): Mark obsolete.
4070 (inactivate-input-method): Mark obsolete.
4071
4072 * international/quail.el (quail-activate):
4073 Also run quail-deactivate-hook.
4074 (quail-deactivate): Rename from quail-inactivate.
4075 * international/robin.el (robin-activate):
4076 Also run robin-deactivate-hook.
4077 (robin-deactivate): Rename from robin-inactivate.
4078
4079 2012-07-29 Chong Yidong <cyd@gnu.org>
4080
4081 * simple.el (indicate-copied-region): New function.
4082 (kill-ring-save): Split off from here.
4083
4084 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
4085 (kill-rectangle): Set deactivate-mark to t on read-only error.
4086
4087 * register.el (copy-to-register, copy-rectangle-to-register):
4088 Deactivate the mark, and use indicate-copied-region (Bug#10056).
4089 (append-to-register, prepend-to-register): Call indicate-copied-region.
4090
4091 2012-07-29 Juri Linkov <juri@jurta.org>
4092
4093 * simple.el (async-shell-command-buffer): New defcustom.
4094 (shell-command): Use it. (Bug#4719)
4095
4096 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4097
4098 * international/mule-cmds.el (set-locale-environment): In a
4099 console session on MS-Windows, set up keyboard and terminal
4100 encoding from the OEM codepage, not the ANSI codepage.
4101 (Bug#12055)
4102
4103 2012-07-28 Chong Yidong <cyd@gnu.org>
4104
4105 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
4106 gdb-get-location.
4107
4108 2012-07-28 Leo Liu <sdl.web@gmail.com>
4109
4110 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
4111 the alist (bug#12029).
4112
4113 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4114
4115 * makefile.w32-in (custom-deps, finder-data, updates, compile)
4116 (compile-always, compile-first)
4117 ($(lisp)/calendar/cal-loaddefs.el)
4118 ($(lisp)/calendar/diary-loaddefs.el)
4119 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4120 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
4121 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
4122 instead of on update-subdirs.
4123 (bootstrap-clean): Delete $(lisp)/subdirs.el.
4124
4125 2012-07-28 Chong Yidong <cyd@gnu.org>
4126
4127 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
4128 directory if vc-deduce-backend returns nil (Bug#7350).
4129
4130 * simple.el (delete-trailing-lines): New option.
4131 (delete-trailing-whitespace): Obey it (Bug#11879).
4132
4133 2012-07-28 David Engster <deng@randomsample.de>
4134
4135 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
4136 Explanation of new 'symbol-qnames feature in doc-strings.
4137 (xml-maybe-do-ns): Return expanded names as plain symbols if
4138 'symbol-qnames was provided in XML-NS argument (Bug#11916).
4139 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
4140
4141 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4142
4143 Consistent completion in inferior python with emacs -nw.
4144 * progmodes/python.el (inferior-python-mode): replace "<tab>"
4145 binding in inferior-python-mode-map with "\t".
4146 (python-shell-completion-complete-at-point)
4147 (python-completion-complete-at-point): Remove interactive spec.
4148
4149 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4150
4151 * calc/calccomp.el (math-compose-expr): Undo previous change.
4152
4153 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4154
4155 * progmodes/python.el (python-mode-map): Add keybinding for
4156 run-python.
4157 (python-shell-make-comint): Fix pop-to-buffer call.
4158 (run-python): Autoload. New arg SHOW.
4159 (python-shell-get-or-create-process): Do not pop python process
4160 buffer.
4161
4162 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
4163
4164 * notifications.el (notifications-on-action-signal)
4165 (notifications-on-closed-signal): Use also the bus address for the map.
4166 (notifications-notify, notifications-close-notification)
4167 (notifications-get-capabilities): Add optional argument BUS.
4168
4169 2012-07-27 Tassilo Horn <tsdh@gnu.org>
4170
4171 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
4172 Add support for the lstlisting and minted environments, and for the
4173 ctable macro.
4174 * textmodes/reftex.el (reftex-compile-variables): Also recognize
4175 labels written in keyvals syntax.
4176
4177 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4178
4179 * calc/calccomp.el (math-compose-expr): Use parentheses when
4180 there is a product in the denominator of a fraction.
4181
4182 2012-07-26 Eli Zaretskii <eliz@gnu.org>
4183
4184 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
4185 ($(lisp)/calendar/diary-loaddefs.el)
4186 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4187 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
4188 Fixes failures in parallel bootstrap because subdirs.el is being
4189 rewritten while the autoload files are built at the same time,
4190 which needs to load subdirs.el.
4191
4192 2012-07-26 Martin Rudalics <rudalics@gmx.at>
4193
4194 * mouse.el (popup-menu): Fix doc-string and re-indent code.
4195 (mouse-drag-line): Don't exit tracking when a switch-frame or
4196 switch-window event occurs (Bug#12006).
4197
4198 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4199
4200 * mouse.el (popup-menu): Fix last change.
4201
4202 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4203
4204 Autoload from Lisp with more care. Follow aliases when looking for
4205 function properties.
4206 * subr.el (autoloadp): New function.
4207 (symbol-file): Use it.
4208 (function-get): New function.
4209 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
4210 autoload-do-load.
4211 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
4212 (lisp-indent-function):
4213 * emacs-lisp/gv.el (gv-get):
4214 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
4215 * emacs-lisp/byte-opt.el (byte-optimize-form):
4216 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
4217 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
4218 Use function-get.
4219 * emacs-lisp/cl.el: Don't propagate function properties any more.
4220
4221 * speedbar.el (speedbar-add-localized-speedbar-support):
4222 * emacs-lisp/disass.el (disassemble-internal):
4223 * desktop.el (desktop-load-file):
4224 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
4225 (describe-function-1):
4226 * emacs-lisp/find-func.el (find-function-noselect):
4227 * emacs-lisp/elp.el (elp-instrument-function):
4228 * emacs-lisp/advice.el (ad-has-proper-definition):
4229 * apropos.el (apropos-safe-documentation, apropos-macrop):
4230 * emacs-lisp/debug.el (debug-on-entry):
4231 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
4232 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
4233 * calc/calc.el (name): Use autoloadp & autoload-do-load.
4234
4235 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
4236
4237 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
4238 function, not an obsolete variable (Bug#12046).
4239
4240 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
4241
4242 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
4243
4244 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
4245
4246 * emacs-lisp/pp.el (pp-display-expression): Select old selected
4247 window only if it is still live (Bug#12034).
4248
4249 2012-07-25 Martin Rudalics <rudalics@gmx.at>
4250
4251 * subr.el (redirect-frame-focus): Add advertised calling
4252 convention (Bug#12030).
4253
4254 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
4255
4256 Prefer typical American spelling for "acknowledgment".
4257 * vc/add-log.el (change-log-acknowledgment): Rename from
4258 change-log-acknowledgement, with an alias for the old name.
4259
4260 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
4261
4262 * calc-alg.el (math-simplify-divide): Don't cross multiply
4263 in an equation when the lhs is a variable.
4264
4265 2012-07-24 Julien Danjou <julien@danjou.info>
4266
4267 * net/netrc.el (netrc-find-service-number, netrc-store-data):
4268 Remove, unused.
4269
4270 2012-07-23 Eli Zaretskii <eliz@gnu.org>
4271
4272 * startup.el (command-line): Don't display an empty user name in
4273 the error message about non-existent home directory, when
4274 init-file-user was set to an empty string. See
4275 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
4276 for the details and context.
4277
4278 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
4279
4280 * ses.el (ses-cell-formula-aset): New macro.
4281 (ses-cell-references-aset): New macro.
4282 (ses-cell-p): New function.
4283 (ses-rename-cell): Do no longer rely on complex operations like
4284 ses-cell-set-formula or ses-set-cell to change the cell and handle
4285 the undo at the same time, but rather use lower level new macros
4286 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
4287 the undo directly. Refresh the mode line.
4288
4289 2012-07-21 Leo Liu <sdl.web@gmail.com>
4290
4291 * progmodes/cc-cmds.el (c-defun-name):
4292 Use match-string-no-properties instead for consistency.
4293
4294 2012-07-20 Leo Liu <sdl.web@gmail.com>
4295
4296 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
4297 (Bug#7879)
4298
4299 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
4300
4301 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
4302
4303 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
4304 * progmodes/bug-reference.el, misearch.el: Provide themselves
4305 (bug#11915).
4306
4307 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
4308 of narrowed buffer (bug#11966).
4309
4310 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
4311
4312 * ses.el (ses-rename-cell): Set new name also in reference list of
4313 cells of which the renamed cell depends.
4314
4315 2012-07-20 Masatake YAMATO <yamato@redhat.com>
4316
4317 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
4318 to check whether menu-bar is shown or not. If not shown,
4319 show the menu-bar as a popup menu instead of using tmm.
4320 * mouse.el (popup-menu): Accept `point' as `position' argument.
4321
4322 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
4323
4324 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
4325 up inside string symbol literal (bug#11923).
4326
4327 2012-07-20 Eli Zaretskii <eliz@gnu.org>
4328
4329 * startup.el (fancy-startup-text): Read the whole tutorial, not
4330 just its first 256 bytes. Prevents gibberish in display of the
4331 tutorial title.
4332
4333 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
4334
4335 Drop idle buffer compaction due to an absence of the
4336 proved efficiency.
4337 * compact.el: Remove.
4338
4339 2012-07-19 Sam Steingold <sds@gnu.org>
4340
4341 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
4342 vc-bzr-pull & vc-bzr-merge-branch.
4343 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
4344 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
4345 for consistency with compilation-error-regexp-alist.
4346 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
4347 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
4348 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
4349 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
4350
4351 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
4352
4353 * emacs-lisp/chart.el: Use lexical-binding.
4354 (chart-emacs-storage): Don't hardcode the list of entries.
4355
4356 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
4357
4358 Next round of tweaks caused by Fgarbage_collect changes.
4359 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
4360
4361 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
4362
4363 Compact buffers when idle.
4364 * compact.el: New file.
4365
4366 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
4367
4368 * subr.el (eventp): Presume that if it looks vaguely like an event,
4369 it's an event (bug#10190).
4370
4371 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
4372
4373 Enhancements to ppss related code (thanks Stefan).
4374 * progmodes/python.el (python-indent-context)
4375 (python-indent-calculate-indentation, python-indent-dedent-line)
4376 (python-indent-electric-colon, python-nav-forward-block)
4377 (python-mode-abbrev-table)
4378 (python-info-assignment-continuation-line-p): Simplify checks
4379 for ppss context.
4380 (python-info-continuation-line-p): Cleanup.
4381 (python-info-ppss-context): Do not catch 'quote.
4382 (python-info-ppss-context-type)
4383 (python-info-ppss-comment-or-string-p): Simplify.
4384
4385 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
4386
4387 * progmodes/python.el: Enhancements to eldoc support.
4388 (python-info-current-symbol): New function.
4389 (python-eldoc-at-point): Use python-info-current-symbol.
4390 (python-info-current-defun): Fix cornercase on first defun scan.
4391 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
4392 and signal error when no inferior python process is available.
4393
4394 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
4395
4396 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
4397 assume it's always t.
4398 (vc-git-registered): Remove caching, the function is only called
4399 once.
4400 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
4401
4402 2012-07-18 Chong Yidong <cyd@gnu.org>
4403
4404 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
4405
4406 * simple.el (count-words): Report on narrowing (Bug#9959).
4407
4408 * bindings.el: Bind M-= to count-words.
4409
4410 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
4411
4412 2012-07-18 Masatake YAMATO <yamato@redhat.com>
4413
4414 * progmodes/sh-script.el (sh-imenu-generic-expression):
4415 Capture a function with `function' keyword and without parentheses
4416 like "function FOO" (bug#11856).
4417
4418 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
4419
4420 * window.el (split-window-sensibly): Make WINDOW argument
4421 optional.
4422
4423 2012-07-18 Chong Yidong <cyd@gnu.org>
4424
4425 * subr.el (keyboard-translate): Doc fix (Bug#7261).
4426
4427 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
4428 and make C-x 8 RET exit isearch (Bug#11439).
4429
4430 * international/iso-transl.el: Move isearch-mode-map key
4431 definitions to isearch.el.
4432
4433 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
4434
4435 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
4436 (eieio-defclass): Use gv-define-setter when possible.
4437
4438 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
4439
4440 Reflect recent changes in Fgarbage_collect.
4441 * emacs-lisp/chart.el (chart-emacs-storage): Change to
4442 reflect new format of data returned by Fgarbage_collect.
4443
4444 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
4445
4446 New utility functions + python-info-ppss-context fix (Bug#11910).
4447 * progmodes/python.el (python-info-beginning-of-block-statement-p)
4448 (python-info-ppss-comment-or-string-p): New functions.
4449 (python-info-ppss-context): Small fix for string check.
4450
4451 2012-07-17 Juri Linkov <juri@jurta.org>
4452
4453 * dired-aux.el (dired-do-async-shell-command): Doc fix.
4454 (dired-do-async-shell-command): Don't add `*' at the end of the
4455 command (Bug#11815).
4456 (dired-do-shell-command): Doc fix.
4457 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
4458 Join the individual commands using either "&" or ";" as the
4459 separator depending on the values of these trailing characters.
4460 At the end re-add the trailing "&". (Bug#10598)
4461
4462 * simple.el (async-shell-command): Sync the interactive spec with
4463 `shell-command'. Doc fix.
4464 (shell-command): Doc fix.
4465
4466 2012-07-17 Juri Linkov <juri@jurta.org>
4467
4468 * descr-text.el (describe-char): Fix format args. (Bug#10129)
4469
4470 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
4471
4472 Final renames and doc fixes for movement commands (bug#11899).
4473 * progmodes/python.el (python-nav-beginning-of-statement):
4474 Rename from python-nav-statement-start.
4475 (python-nav-end-of-statement): Rename from
4476 python-nav-statement-end.
4477 (python-nav-beginning-of-block): Rename from
4478 python-nav-block-start.
4479 (python-nav-end-of-block): Rename from python-nav-block-end.
4480
4481 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
4482
4483 * progmodes/python.el (python-shell-send-string-no-output):
4484 Allow accept-process-output to quit, keeping shell process ready for
4485 future interactions (Bug#11868).
4486
4487 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
4488
4489 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
4490
4491 * emacs-lisp/elint.el (elint-find-args-in-code):
4492 Use help-function-arglist, so as to handle lexical byte-code.
4493
4494 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
4495 change (bug#11826).
4496
4497 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
4498
4499 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
4500 Avoid spuriously marking the buffer as modified because of c-is-sws.
4501
4502 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
4503 as not-a-comment (bug#11946).
4504
4505 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
4506 for uninterned vars.
4507
4508 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
4509 Use read-event since we don't really want to read chars but bytes.
4510
4511 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
4512 $$..$$ but also $..$ using regexps (bug#11953).
4513 Use tex-verbatim for \url and \path.
4514 (tex-font-lock-keywords): Define as defconst like the others.
4515 (tex-common-initialization): Don't use font-lock-syntax-table any more.
4516
4517 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
4518
4519 * international/mule-cmds.el (ucs-insert): Make it an obsolete
4520 alias for insert-char.
4521
4522 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
4523
4524 * progmodes/python.el: Simplified imenu implementation.
4525 (python-nav-jump-to-defun): Remove command.
4526 (python-mode-map): Use `imenu' instead.
4527 (python-nav-list-defun-positions-cache)
4528 (python-imenu-include-defun-type, python-imenu-make-tree)
4529 (python-imenu-subtree-root-label, python-imenu-index-alist):
4530 Remove vars.
4531 (python-nav-list-defun-positions, python-nav-read-defun)
4532 (python-imenu-tree-assoc, python-imenu-make-element-tree)
4533 (python-imenu-make-tree, python-imenu-create-index):
4534 Remove functions.
4535 (python-mode): Update to interact with imenu by setting
4536 `imenu-extract-index-name-function' only.
4537
4538 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
4539
4540 * progmodes/python.el: Enhancements to navigation commands.
4541 (python-nav-backward-sentence)
4542 (python-nav-forward-sentence): Remove.
4543 (python-nav-backward-statement, python-nav-forward-statement)
4544 (python-nav-statement-start, python-nav-statement-end)
4545 (python-nav-backward-block, python-nav-forward-block)
4546 (python-nav-block-start, python-nav-block-end)
4547 (python-nav-forward-sexp-function)
4548 (python-info-current-line-comment-p)
4549 (python-info-current-line-empty-p): New functions.
4550 (python-indent-context): Use `python-nav-statement-start'.
4551
4552 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
4553
4554 * eshell/em-ls.el (eshell/ls): Use `apply'.
4555
4556 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
4557 multi-hops, instead of Tramp internals.
4558
4559 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
4560
4561 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
4562 when F1 and F2 are located on different hosts.
4563
4564 2012-07-14 Chong Yidong <cyd@gnu.org>
4565
4566 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
4567 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
4568 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
4569 (xterm-mouse--read-event-sequence-1000)
4570 (xterm-mouse--read-event-sequence-1006): New functions. For old
4571 mouse protocol, handle M-mouse-X events correctly.
4572 (xterm-mouse-event): New arg specifying mouse protocol.
4573 (turn-on-xterm-mouse-tracking-on-terminal)
4574 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
4575 sequence to toggle extended coordinates on newer XTerms.
4576 This appears to be harmless on terminals which do not support this.
4577
4578 2012-07-14 Leo Liu <sdl.web@gmail.com>
4579
4580 Add fringe bitmap indicators for flymake. (Bug#11253)
4581 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
4582 (flymake-make-overlay): New arg BITMAP.
4583 (flymake-error-bitmap, flymake-warning-bitmap)
4584 (flymake-fringe-indicator-position): New user variables.
4585
4586 * fringe.el: New bitmap exclamation-mark.
4587
4588 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
4589
4590 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
4591 also (Bug#7879).
4592
4593 2012-07-14 Chong Yidong <cyd@gnu.org>
4594
4595 * electric.el (electric-pair-post-self-insert-function): Fix pair
4596 insertion in empty-region case (Bug#11520).
4597
4598 2012-07-14 Chong Yidong <cyd@gnu.org>
4599
4600 * bindings.el: Consolidate ctl-x-r-map bindings.
4601 Bind copy-rectangle-as-kill to C-x r w.
4602
4603 * rect.el, register.el: Move bindings to bindings.el.
4604
4605 2012-07-14 Reuben Thomas <rrt@sc3d.org>
4606
4607 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
4608
4609 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
4610
4611 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
4612
4613 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
4614
4615 * bindings.el (top): Use `mapc' instead of `mapcar'.
4616
4617 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
4618
4619 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
4620
4621 * progmodes/sql.el (sql-comint): Suppress the check for program on
4622 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
4623 (Bug#11908)
4624
4625 2012-07-13 Chong Yidong <cyd@gnu.org>
4626
4627 * bindings.el: Assign a non-nil permanent-local property to
4628 per-buffer variables which lack a default value (Bug#11930).
4629
4630 * help-fns.el (describe-variable): In the "automatically becomes
4631 local" notice, take note of permanent-local variables.
4632
4633 2012-07-13 Chong Yidong <cyd@gnu.org>
4634
4635 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
4636 to allow printing the message when called from Lisp.
4637
4638 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4639 Remove toggle-read-only.
4640
4641 * bs.el (bs-toggle-readonly):
4642 * buff-menu.el (Buffer-menu-toggle-read-only):
4643 Remove with-no-warnings around toggle-read-only.
4644
4645 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
4646 Remove with-no-warnings around toggle-read-only.
4647 (ffap-read-only, ffap-read-only-other-window)
4648 (ffap-read-only-other-frame): Callers changed.
4649
4650 * help-mode.el: Don't require view package.
4651 (help-mode-finish): Set buffer-read-only instead of calling
4652 toggle-read-only.
4653
4654 * bindings.el (mode-line-toggle-read-only):
4655 * dired.el (dired-toggle-read-only):
4656 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
4657 with non-nil second arg.
4658
4659 * emacs-lisp/eieio-custom.el (eieio-customize-object):
4660 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
4661 directly.
4662
4663 2012-07-12 Eli Zaretskii <eliz@gnu.org>
4664
4665 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
4666 not incf.
4667
4668 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
4669
4670 More CL cleanups and reduction of use of cl.el.
4671 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
4672 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
4673 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
4674 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
4675 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
4676 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
4677 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
4678 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
4679 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
4680 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
4681 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
4682 * eshell/em-cmpl.el, eshell/em-banner.el:
4683 * calendar/parse-time.el: Use cl-lib.
4684 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
4685 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
4686 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
4687 * term/ns-win.el, term.el, shell.el, ps-samp.el:
4688 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
4689 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
4690 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
4691 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
4692 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
4693 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
4694 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
4695 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
4696 `lambda' rather than with `quote'.
4697 (eshell-do-opt): Adjust accordingly.
4698 (eshell-process-option): Simplify.
4699 * eshell/esh-var.el:
4700 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
4701 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
4702 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
4703 to `pcase--dontcare'.
4704 * emacs-lisp/cl.el (labels): Mark obsolete.
4705 (cl--letf, letf): Move to cl-lib.
4706 (cl--letf*, letf*): Remove.
4707 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
4708 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
4709 (cl-progv): Rewrite.
4710 (cl--letf, cl-letf): Move from cl.el.
4711 (cl-letf*): New macro.
4712 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
4713
4714 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
4715
4716 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
4717
4718 2012-07-11 Chong Yidong <cyd@gnu.org>
4719
4720 * vc/log-edit.el (log-edit-vc-backend): New variable.
4721 (log-edit): Doc fix.
4722
4723 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
4724 argument of log-edit to set up all local variables.
4725 (vc-start-logentry): New optional arg specifying VC backend.
4726
4727 * vc/vc.el (vc-checkin): Use it.
4728 (vc-deduce-fileset): Handle Log Edit buffers.
4729 (vc-diff): Make first argument optional too.
4730
4731 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
4732
4733 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
4734
4735 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
4736 command, just in case. The function is not needed anymore.
4737 (eshell-external-command): Do not call `eshell-remote-command'.
4738
4739 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
4740
4741 Reduce use of (require 'cl).
4742 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
4743 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
4744 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
4745 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
4746 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
4747 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
4748 * battery.el, avoid.el, abbrev.el: Use cl-lib.
4749 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
4750 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
4751 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
4752 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
4753 * calculator.el, autorevert.el, apropos.el: Don't require CL.
4754 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
4755 (byte-compile-unfold-bcf, byte-compile-check-variable):
4756 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
4757 (byte-compile-nilconstp):
4758 * emacs-lisp/autoload.el (make-autoload): Use pcase.
4759 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
4760
4761 * emacs-lisp/gv.el (cond): Make it a valid place.
4762 (if): Simplify slightly.
4763
4764 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
4765 (pcase--self-quoting-p): New function.
4766 (pcase--u1): Use it.
4767
4768 2012-07-10 Glenn Morris <rgm@gnu.org>
4769
4770 * emacs-lisp/authors.el (authors-fixed-entries):
4771 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
4772
4773 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
4774
4775 Rename configure.in to configure.ac (Bug#11603).
4776 * emacs-lisp/authors.el (authors-canonical-file-name):
4777 * progmodes/autoconf.el (autoconf-mode):
4778 Prefer configure.ac to configure.in.
4779
4780 2012-07-08 Chong Yidong <cyd@gnu.org>
4781
4782 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
4783 Implement the mouse-1-click-follows-link handling properly.
4784
4785 * info.el (Info-link-keymap): Use follow-link mechanism for
4786 header-line links (Bug#374).
4787
4788 * simple.el (deactivate-mark): Do not set the primary selection
4789 if another program has acquired it (Bug#11772).
4790
4791 2012-07-07 Kevin Ryde <user42@zip.com.au>
4792
4793 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
4794 (woman-decode-region): Replace escaped-escapes without destroying
4795 bold or underline (Bug#11552).
4796 (woman2-process-escapes): Handle nofill regions (Bug#11591).
4797
4798 2012-07-07 Chong Yidong <cyd@gnu.org>
4799
4800 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
4801 (interprogram-cut-function, interprogram-paste-function):
4802 Mention that we typically mean the clipboard.
4803
4804 2012-07-06 Glenn Morris <rgm@gnu.org>
4805
4806 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
4807
4808 * files.el (toggle-read-only): Restrict message to interactive use.
4809
4810 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
4811
4812 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
4813
4814 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
4815
4816 2012-07-06 Glenn Morris <rgm@gnu.org>
4817
4818 * Makefile.in (compile-one-process): Rename from "recompile".
4819
4820 * Makefile.in (bzr-update): "compile" is the same as "recompile
4821 autoloads", but parallelizable, so use that instead.
4822
4823 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
4824
4825 * window.el (quit-window): Always restore window height when
4826 it's saved in quit-restore parameter (Bug#11810).
4827
4828 2012-07-06 Glenn Morris <rgm@gnu.org>
4829
4830 * simple.el (kill-whole-line): Doc tweak.
4831
4832 2012-07-06 Eli Zaretskii <eliz@gnu.org>
4833
4834 * files.el (file-relative-name): Compare file names
4835 case-insensitively if on MS-Windows or MS-DOS, or if
4836 read-file-name-completion-ignore-case is non-nil. Don't use
4837 case-fold-search for this purpose. (Bug#11827)
4838
4839 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
4840
4841 * calendar/cal-dst.el (calendar-current-time-zone):
4842 Return calendar-current-time-zone-cache if non-nil.
4843
4844 2012-07-17 Masatake YAMATO <yamato@redhat.com>
4845 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
4846
4847 * calendar/cal-dst.el (calendar-current-time-zone):
4848 Return calendar-current-time-zone-cache if non-nil.
4849
4850 2012-07-06 Glenn Morris <rgm@gnu.org>
4851
4852 * Makefile.in (cvs-update): Remove old alias.
4853
4854 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
4855
4856 Sync with Tramp 2.2.6-pre.
4857
4858 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
4859 compatible declaration.
4860
4861 * net/tramp-cmds.el (tramp-append-tramp-buffers):
4862 Protect `list-load-path-shadows' call.
4863
4864 * net/tramp-compat.el (top): Require packages, which aren't
4865 autoloaded anymore for XEmacs. Protect call of
4866 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
4867 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
4868 it hurts at least for SXEmacs.
4869 (tramp-compat-temporary-file-directory): In XEmacs, there is no
4870 standard-value for `temporary-file-directory'.
4871
4872 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
4873 Redirect stderr to /dev/null.
4874 (tramp-sh-handle-write-region): uid and gid can be floats.
4875 Reported by Russell Sim <russell.sim@gmail.com>.
4876 (tramp-sh-handle-vc-registered): Hide errors.
4877 (tramp-vc-file-name-handler): Use dummy results for `process-file'
4878 and `start-file-process'.
4879 (tramp-maybe-open-connection): Check also whether `non-essential'
4880 is bound.
4881
4882 2012-07-04 Chong Yidong <cyd@gnu.org>
4883
4884 * xml.el (xml--parse-buffer): Use xml-syntax-table.
4885 (xml-parse-tag): Likewise, and avoid changing entity tables.
4886 (xml-syntax-table): Define from scratch, making sure not to give
4887 x2000 and other Unicode spaces whitespace syntax, since those are
4888 not spaces in XML.
4889 (xml-parse-fragment): Delete unused function.
4890 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
4891 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
4892 (xml-entity-ref, xml-pe-reference-re)
4893 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
4894 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
4895 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
4896 (xml-entity-value-re): Use syntax references in regexps where
4897 possible; no need to define inside a let-binding.
4898 (xml-parse-dtd): Use xml-pe-reference-re.
4899 (xml-entity-or-char-ref-re): New defconst.
4900 (xml-parse-string, xml-substitute-special): Use it.
4901
4902 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
4903
4904 * files.el (locate-dominating-file): Allow `name' to be a predicate.
4905 (find-file--read-only): New function.
4906 (find-file-read-only, find-file-read-only-other-window)
4907 (find-file-read-only-other-frame): Use it.
4908 (insert-file-contents-literally): Don't `fset'.
4909 (get-free-disk-space): Use locate-dominating-file.
4910
4911 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
4912 function is already compiled.
4913
4914 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
4915
4916 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
4917
4918 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
4919 files on the same host.
4920
4921 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
4922
4923 * help-fns.el (describe-function-1): Only call
4924 help-fns--autoloaded-p when we have a file name. (Bug#11848)
4925
4926 2012-07-03 Chong Yidong <cyd@gnu.org>
4927
4928 * xml.el: Protect parser against XML bombs.
4929 (xml-entity-expansion-limit): New variable.
4930 (xml-parse-string, xml-substitute-special): Use it.
4931 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
4932
4933 2012-07-03 Glenn Morris <rgm@gnu.org>
4934
4935 * progmodes/bug-reference.el (bug-reference-bug-regexp):
4936 Allow linking to specific messages in debbugs reports (eg 123#5).
4937
4938 2012-07-02 Chong Yidong <cyd@gnu.org>
4939
4940 * xml.el: Fix entity and character reference expansion, allowing
4941 them to expand into markup as per XML spec.
4942 (xml-default-ns): New variable.
4943 (xml-entity-alist): Use XML spec definitions for lt and amp.
4944 (xml-parse-region): Make first two arguments optional.
4945 Discard text properties.
4946 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
4947 All callers changed.
4948 (xml-parse-tag): Call xml-parse-tag-1. For backward
4949 compatibility, this function should not modify buffer contents.
4950 (xml-parse-tag-1): Fix opening-tag regexp.
4951 (xml-parse-string): Rewrite, handling entity and character
4952 references properly.
4953 (xml--entity-replacement-text): Signal an error if a parameter
4954 entity is undefined.
4955
4956 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
4957
4958 * comint.el (comint-output-filter): Filter out repeated prompts.
4959
4960 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
4961 and file-name-absolute-p.
4962 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
4963 internal calls.
4964
4965 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
4966
4967 Spelling fixes.
4968 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
4969 Rename from byte-compile--refiy-function. All uses changed.
4970
4971 2012-07-01 Chong Yidong <cyd@gnu.org>
4972
4973 * xml.el (xml--parse-buffer): New function. Move most of
4974 xml-parse-region here.
4975 (xml-parse-region): Copy region into a temporary buffer, since
4976 parameter entity substitution requires changing buffer contents.
4977 Use xml--parse-buffer.
4978 (xml-parse-file): Use xml--parse-buffer.
4979 (xml-parse-dtd): Make parameter entity substitution work right.
4980 Use proper regexps for ELEMENT declarations (Bug#7172).
4981
4982 2012-06-30 Glenn Morris <rgm@gnu.org>
4983
4984 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
4985
4986 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
4987 Remove outdated and unnecessary dbus declarations.
4988
4989 2012-06-30 Eli Zaretskii <eliz@gnu.org>
4990
4991 * emacs-lisp/timer.el (timer-until): Subtract results of
4992 float-time, instead of taking float-time of the result of
4993 time-subtract, since float-time signals an error for negative time
4994 arguments.
4995
4996 2012-06-30 Chong Yidong <cyd@gnu.org>
4997
4998 * xml.el (xml-*-re): Convert defvars into defconsts, and
4999 eval-and-compile them so eval-and-compile works on derivatives.
5000 (xml--entity-replacement-text): Use eval-and-comple.
5001
5002 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
5003
5004 * vc/vc-git.el (vc-git-registered): Use cache property
5005 `git-registered'.
5006 (vc-git-mode-line-string): Call `vc-working-revision' instead of
5007 `vc-git-working-revision' in order to benefit from the cache.
5008 (vc-git-root): Use cache property `git-root'. (Bug#11757)
5009
5010 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
5011
5012 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
5013 removed (likely outside Emacs). (Bug#11757)
5014
5015 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5016
5017 * emacs-lisp/cl-lib.el: Require macroexp.
5018
5019 2012-06-30 Chong Yidong <cyd@gnu.org>
5020
5021 * xml.el: Implement XML parameter entities.
5022 (xml-parameter-entity-alist): New variable.
5023 (xml-parse-region, xml-parse-fragment): Preserve previous values
5024 of xml-entity-alist and xml-parameter-entity-alist, so that
5025 repeated calls on different documents do not change them.
5026 (xml-parse-tag): Fix doctype regexp.
5027 (xml--entity-replacement-text): New function.
5028 (xml-parse-dtd): Use it. Don't handle system entities; doing that
5029 properly requires url retrieval which is unimplemented.
5030 (xml-escape-string): Doc fix.
5031
5032 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5033
5034 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
5035
5036 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5037
5038 * fringe.el (fringe-mode): Doc fix.
5039
5040 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
5041
5042 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
5043 is non-nil.
5044 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
5045 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
5046
5047 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
5048
5049 * calendar/cal-dst.el (calendar-current-time-zone):
5050 Return calendar-current-time-zone-cache if non-nil.
5051
5052 2012-06-29 Masatake YAMATO <yamato@redhat.com>
5053
5054 * progmodes/which-func.el (which-func-format):
5055 Add mouse-face. (Bug#11698)
5056
5057 2012-06-29 Leo Liu <sdl.web@gmail.com>
5058
5059 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
5060
5061 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5062
5063 * minibuffer.el (minibuffer-confirm-exit-commands):
5064 Add completion-at-point (bug#11725).
5065
5066 2012-06-29 Glenn Morris <rgm@gnu.org>
5067
5068 * progmodes/f90.el (f90-font-lock-keywords-2):
5069 Add some preprocessor elements. (Bug#10499)
5070
5071 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5072
5073 * progmodes/cperl-mode.el (cperl-update-syntaxification):
5074 Use syntax-propertize (bug#11739).
5075
5076 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
5077
5078 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
5079
5080 2012-06-28 Julien Danjou <julien@danjou.info>
5081
5082 * term.el (term-handle-colors-array): Use a set of new faces to
5083 color the terminal. Also uses :inverse-video property.
5084 (term-default-fg-color): Set to nil by default, deprecate in favor
5085 of `term-face'.
5086 (term-default-bg-color): Set to nil by default, deprecate in favor
5087 of `term-face'.
5088 (term-current-face): Use `term-face' by default.
5089 (term-bold-attribute): Variable deleted.
5090
5091 2012-06-28 Glenn Morris <rgm@gnu.org>
5092
5093 * simple.el (completion-list-mode-finish):
5094 Don't use toggle-read-only. (Since completion-list-mode has
5095 a special mode-class, it wasn't doing anything extra anyway.)
5096
5097 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
5098
5099 Make inlining of other-mode interpreted functions work (bug#11799).
5100 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
5101 (byte-compile): Use it to fix compilation of lexical-binding closures.
5102 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
5103 function, if needed.
5104
5105 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5106
5107 * help-mode.el (help-make-xrefs): Don't just withstand
5108 cyclic-variable-indirection but any error in documentation-property.
5109
5110 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
5111 memory use.
5112 * bindings.el (bindings--define-key): New function.
5113 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
5114 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
5115 * bindings.el: Use it to purecopy define-key bindings.
5116
5117 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
5118
5119 * emacs-lisp/cl.el (flet): Mark obsolete.
5120 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
5121 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
5122 * progmodes/js.el (js-c-fill-paragraph):
5123 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
5124 (ebrowse-switch-member-buffer-to-derived-class):
5125 * play/5x5.el (5x5-solver): Use cl-flet.
5126
5127 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
5128 (cl--symbol-function): New macro.
5129 (cl--letf, cl--letf*): Use it.
5130
5131 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
5132 Strip "toggle-" if any.
5133
5134 2012-06-27 Glenn Morris <rgm@gnu.org>
5135
5136 * info.el (Info-default-directory-list): Move here from paths.el.
5137 * paths.el: Remove file, which is now empty.
5138 * loadup.el: No longer load "paths".
5139
5140 * custom.el (custom-initialize-delay): Doc fix.
5141
5142 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
5143 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
5144 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
5145 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
5146 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
5147 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
5148 * eshell/eshell.el (eshell-defgroup): Remove alias.
5149
5150 2012-06-27 Chong Yidong <cyd@gnu.org>
5151
5152 * help.el (help-enable-auto-load): New variable.
5153
5154 * help-fns.el (help-fns--autoloaded-p): New function.
5155 (describe-function-1): Refer to a function as "autoloaded" if it
5156 was autoloaded at any time in the past. Perform autoloading if
5157 help-enable-auto-load is non-nil.
5158
5159 2012-06-26 Eli Zaretskii <eliz@gnu.org>
5160
5161 * makefile.w32-in (compile, compile-always): Depend on
5162 update-subdirs, not on subdirs.el. Otherwise, several different
5163 sub-targets of 'bootstrap' running in parallel could
5164 simultaneously write to subdirs.el, producing a garbled file.
5165
5166 2012-06-26 Sam Steingold <sds@gnu.org>
5167
5168 * files.el (file-name-base): New convenience function.
5169 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
5170 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
5171 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
5172 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
5173 * textmodes/ispell.el, textmodes/reftex-ref.el:
5174 * textmodes/tex-mode.el: Use it.
5175 Did not touch cedet and org because they are maintained elsewhere.
5176
5177 2012-06-26 Martin Rudalics <rudalics@gmx.at>
5178
5179 * calendar/calendar.el (calendar-exit): Don't try to delete or
5180 iconify last frame. See:
5181 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
5182
5183 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
5184
5185 * server.el (server-process-filter): Remember dir in the
5186 process's `server-client-directory' properties.
5187
5188 2012-06-24 Chong Yidong <cyd@gnu.org>
5189
5190 * xml.el (xml-parse-tag): Correctly handle comment embedded in
5191 non-tag text.
5192
5193 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
5194
5195 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
5196
5197 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5198
5199 * help-fns.el (describe-variable): Don't croak when doc is not found.
5200 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
5201 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
5202 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
5203 * emacs-lisp/smie.el (smie-next-sexp): CSE.
5204 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
5205 ((lambda ..) ..).
5206 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
5207
5208 2012-06-23 Chong Yidong <cyd@gnu.org>
5209
5210 * info.el (Info-mouse-follow-link): Accept symbol values of
5211 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
5212 (Info-fontify-node): Use Info-link-keymap for all navigation
5213 buttons, with link-args property to perform the desired action.
5214 (Info-link-keymap): Doc fix.
5215 (Info-next-link-keymap, Info-prev-link-keymap)
5216 (Info-up-link-keymap): Delete now-unused keymaps.
5217
5218 2012-06-23 Chong Yidong <cyd@gnu.org>
5219
5220 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
5221
5222 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
5223 system abbrevs.
5224
5225 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
5226
5227 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5228
5229 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
5230 (bug#11719).
5231
5232 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
5233 the requote function doesn't work properly (bug#11714).
5234
5235 2012-06-23 Glenn Morris <rgm@gnu.org>
5236
5237 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
5238
5239 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5240
5241 Further GV/CL cleanups.
5242 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
5243 gv-expander.
5244 (gv--defun-declaration): New function.
5245 (defun-declarations-alist): Use it.
5246 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
5247 (gv-place): Autoload.
5248 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
5249 original definition of dotimes and dolist.
5250 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
5251 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
5252 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
5253 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
5254 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
5255 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
5256 to the function's definition.
5257 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
5258 * window.el:
5259 * files.el:
5260 * faces.el:
5261 * env.el: Don't use CL.
5262
5263 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
5264
5265 Support higher-resolution time stamps (Bug#9000).
5266
5267 * calendar/time-date.el (with-decoded-time-value): New arg
5268 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
5269 (encode-time-value): New optional arg PICO. New type 3.
5270 (time-to-seconds) [!float-time]: Support the new picoseconds
5271 component if it's used.
5272 (seconds-to-time, time-subtract, time-add):
5273 Support ps-resolution time stamps as well.
5274
5275 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
5276 (timerp): Timer vectors now have length 9, not 8.
5277 (timer--time): Support new-style (4-part) time stamps.
5278 (timer-next-integral-multiple-of-time): Time stamps now have
5279 picosecond resolution, so take a bit more care about rounding.
5280 (timer-relative-time, timer-inc-time): New optional arg psecs.
5281 (timer-set-time-with-usecs): Set psecs to 0.
5282 (timer--activate): Check psecs component, too.
5283
5284 * proced.el (proced-time-lessp): Support ps-resolution stamps.
5285
5286 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5287
5288 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
5289 Move the non-essential binding to the post/pre-command-hook where it is
5290 more obviously correct.
5291
5292 * subr.el (read-passwd): Don't use a history at all.
5293 * savehist.el (savehist-save): Remove password saved accidentally
5294 because of the above bug.
5295
5296 2012-06-22 Bastien Guerry <bzg@gnu.org>
5297
5298 * files.el (toggle-read-only): Display a message telling whether
5299 the buffer is read-only or not (bug#11726).
5300
5301 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5302
5303 * emacs-lisp/gv.el: New file.
5304 * subr.el (push, pop): Extend to generalized variables.
5305 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
5306 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
5307 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
5308 gv-define-simple-setter, and gv-define-expander.
5309 Remove setf-methods defined in gv. Rename cl-setf -> setf.
5310 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
5311 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
5312 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
5313 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
5314 gv-letplace.
5315 (cl-defstruct): Don't define setf-method any more.
5316 * emacs-lisp/cl.el (flet): Don't autoload.
5317 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
5318 (define-setf-expander, defsetf, define-modify-macro)
5319 (cl-struct-setf-expander): Move from cl-lib.el.
5320 * emacs-lisp/syntax.el:
5321 * emacs-lisp/ewoc.el:
5322 * emacs-lisp/smie.el:
5323 * emacs-lisp/cconv.el:
5324 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
5325 (timer--time): Use gv-define-simple-setter.
5326 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
5327 to avoid coding-system problems in subr.el. Adjust all users.
5328 (macroexp--maxsize, macroexp-small-p): New functions.
5329 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
5330 * scroll-bar.el (scroll-bar-mode):
5331 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
5332 (normal-erase-is-backspace-mode): Don't use the `eq' place.
5333 * winner.el (winner-configuration, winner-make-point-alist)
5334 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
5335 * files.el (locate-file-completion-table): Avoid list*.
5336
5337 2012-06-22 Chong Yidong <cyd@gnu.org>
5338
5339 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
5340 (dired-create-files): Doc fix (Bug#11329).
5341 (dired-do-copy): Doc fix (Bug#11334).
5342 (dired-mark-read-string): Doc fix (Bug#11553).
5343
5344 * dired.el (dired-recursive-copies, dired-recursive-deletes):
5345 Doc fix (Bug#11326).
5346 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
5347 (dired-dwim-target): Doc fix.
5348
5349 * wdired.el (wdired-mode): Doc fix.
5350
5351 2012-06-22 Glenn Morris <rgm@gnu.org>
5352
5353 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
5354 (pcmpl-rpm-cache-stamp-file): New constant.
5355 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
5356 (pcmpl-rpm-packages): Optionally cache list of packages.
5357
5358 * pcmpl-rpm.el (pcmpl-rpm): New group.
5359 (pcmpl-rpm-query-options): New option.
5360 (pcmpl-rpm-packages): No need to inline it.
5361 Use pcmpl-rpm-query-options.
5362
5363 * calendar/calendar.el (calendar-in-read-only-buffer):
5364 Avoid some needless mode changes.
5365
5366 2012-06-21 Chong Yidong <cyd@gnu.org>
5367
5368 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
5369 (desktop-path): Remove . from the default value (Bug#10977).
5370 (desktop-read): Use user-emacs-directory if desktop-path is nil.
5371
5372 2012-06-20 Chong Yidong <cyd@gnu.org>
5373
5374 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
5375
5376 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
5377
5378 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
5379 (bug#11201).
5380
5381 2012-06-20 Chong Yidong <cyd@gnu.org>
5382
5383 * term.el (term-window-width): Handle the case of a missing right
5384 fringe (Bug#8837).
5385 (term-check-size): Use window-text-height (Bug#5445).
5386 (term-mode): Use define-derived-mode. Minor cleanups.
5387 Set font-lock-defaults (Bug#7692).
5388 (term-move-columns, term-insert-char, term-emulate-terminal)
5389 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
5390
5391 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
5392
5393 * net/ange-ftp.el (ange-ftp-get-passwd):
5394 Bind `enable-recursive-minibuffers'.
5395 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
5396
5397 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
5398
5399 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
5400
5401 2012-06-19 Glenn Morris <rgm@gnu.org>
5402
5403 * progmodes/python.el (python-mode): Derive from prog-mode.
5404
5405 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
5406
5407 * emulation/edt.el (edt-default-menu-bar-update-buffers)
5408 (edt-user-menu-bar-update-buffers): New functions.
5409 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
5410
5411 2012-06-19 Chong Yidong <cyd@gnu.org>
5412
5413 * subr.el (with-selected-window): Preserve the selected window's
5414 terminal's top-frame (Bug#4702).
5415
5416 * window.el (save-selected-window): Likewise.
5417
5418 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5419
5420 * progmodes/python.el (python-rx-constituents): Move backquote.
5421 (python-skeleton-define, python-define-auxiliary-skeleton):
5422 Use `declare'.
5423
5424 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
5425
5426 * minibuffer.el (read-file-name-default): Revert the patch from
5427 2012-06-17.
5428
5429 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5430
5431 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
5432 (pcase--u1, pcase--q1): Don't use apply-partially.
5433
5434 2012-06-18 Glenn Morris <rgm@gnu.org>
5435
5436 * progmodes/python.el (python-proc, python-buffer)
5437 (python-send-receive, python-send-string): Fix obsolete versions.
5438
5439 2012-06-18 Martin Rudalics <rudalics@gmx.at>
5440
5441 * window.el (special-display-p): Completely remove stringp
5442 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
5443
5444 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
5445
5446 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
5447
5448 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
5449
5450 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
5451 * net/tramp-sh.el (tramp-maybe-open-connection):
5452 Throw if `non-essential' is non-nil.
5453
5454 2012-06-17 Martin Rudalics <rudalics@gmx.at>
5455
5456 * window.el (special-display-p): Signal an error if BUFFER-NAME
5457 is not a string (Bug#11713).
5458
5459 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
5460
5461 * progmodes/python.el (python-info-beginning-of-backslash):
5462 Rename from python-info-beginning-of-backlash, as a spelling fix.
5463
5464 2012-06-17 Chong Yidong <cyd@gnu.org>
5465
5466 * term.el (term-emulate-terminal): If term-check-size is called,
5467 move point to the process mark without resetting point (Bug#4635).
5468
5469 2012-06-17 Glenn Morris <rgm@gnu.org>
5470
5471 * international/mule-cmds.el (mule-menu-keymap)
5472 (set-language-environment, set-locale-environment): Doc tweaks.
5473
5474 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
5475
5476 * cus-face.el (custom-face-attributes): Add wave-style underline
5477 attribute.
5478 * faces.el (set-face-attribute): Update docstring to describe
5479 wave-style underline attribute.
5480
5481 2012-06-16 Chong Yidong <cyd@gnu.org>
5482
5483 * term/xterm.el (terminal-init-xterm): Discard input before
5484 querying background mode (Bug#10959).
5485
5486 2012-06-16 Stefan Merten <smerten@oekonux.de>
5487
5488 * textmodes/rst.el: Added and corrected some comments.
5489 (rst-re-alist-def): Improve symbol syntax.
5490 (rst-mode-syntax-table): Correct syntax entries.
5491 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
5492 (rst-official-version, rst-official-cvs-rev): Update version
5493 information.
5494
5495 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
5496
5497 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
5498 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
5499
5500 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
5501
5502 * progmodes/python.el: New python.el merge.
5503 (python-guess-indent): Obsolete var.
5504 (python-indent-guess-indent-offset): New defcustom.
5505 (python-indent): Obsolete var.
5506 (python-indent-offset): New defcustom.
5507 (python-python-command, python-jython-command): Delete var.
5508 (python-shell-interpreter): New defcustom.
5509 (python-pdbtrack-do-tracking-p): Delete var.
5510 (python-pdbtrack-activate): New defcustom.
5511 (python-use-skeletons): Obsolete var.
5512 (python-skeleton-autoinsert): New defcustom.
5513 (inferior-python-filter-regexp, python-continuation-offset)
5514 (python-honour-comment-indentation, python-indent-string-contents)
5515 (python-jython-packages, python-mode-hook)
5516 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
5517 (python-shell-prompt-alist)
5518 (python-source-modes): Delete defcustoms.
5519 (python-check-buffer-name, python-eldoc-setup-code)
5520 (python-eldoc-string-code, python-ffap-setup-code)
5521 (python-ffap-string-code, python-fill-comment-function)
5522 (python-fill-decorator-function, python-fill-paren-function)
5523 (python-fill-string-function, python-imenu-include-defun-type)
5524 (python-imenu-make-tree, python-imenu-subtree-root-label)
5525 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
5526 (python-shell-compilation-regexp-alist)
5527 (python-shell-completion-module-string-code)
5528 (python-shell-completion-pdb-string-code)
5529 (python-shell-completion-setup-code)
5530 (python-shell-completion-string-code)
5531 (python-shell-enable-font-lock, python-shell-exec-path)
5532 (python-shell-extra-pythonpaths)
5533 (python-shell-internal-buffer-name, python-shell-interpreter-args)
5534 (python-shell-process-environment)
5535 (python-shell-prompt-block-regexp)
5536 (python-shell-prompt-output-regexp)
5537 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
5538 (python-shell-send-setup-max-wait, python-shell-setup-codes)
5539 (python-shell-virtualenv-path): New defcustoms.
5540 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
5541 (inferior-python-mode-syntax-table, python--prompt-regexp)
5542 (python-buffer, python-command python-python-command)
5543 (python-default-template, python-imports, python-indent-index)
5544 (python-indent-list, python-indent-list-length)
5545 (python-mode-running, python-pdbtrack-is-tracking-p)
5546 (python-preoutput-continuation, python-preoutput-leftover)
5547 (python-preoutput-result, python-preoutput-skip-next-prompt)
5548 (python-prev-dir/file, python-recursing)
5549 (python-saved-check-command, python-version-checked)
5550 (python-which-func-length-limit)
5551 (view-return-to-alist): Delete vars.
5552 (python-check-custom-command, python-dotty-syntax-table)
5553 (python-imenu-index-alist, python-indent-current-level)
5554 (python-indent-dedenters, python-indent-levels)
5555 (python-nav-beginning-of-defun-regexp)
5556 (python-nav-list-defun-positions-cache)
5557 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
5558 (python-shell-internal-buffer)
5559 (python-skeleton-available): New vars.
5560 (def-python-skeleton): Delete macro.
5561 (python-skeleton-define): New macro.
5562 (python-define-auxiliary-skeleton, python-rx): New macros.
5563 (python-insert-class): Delete command.
5564 (python-skeleton-class): New command.
5565 (python-insert-def): Delete command.
5566 (python-skeleton-def): New command.
5567 (python-insert-for): Delete command.
5568 (python-skeleton-for): New command.
5569 (python-insert-if): Delete command.
5570 (python-skeleton-if): New command.
5571 (python-insert-try/except, python-insert-try/finally): Delete commands.
5572 (python-skeleton-try): New command.
5573 (python-insert-while): Delete command.
5574 (python-skeleton-while): New command.
5575 (python-backspace): Delete command.
5576 (python-indent-dedent-line-backspace): New command.
5577 (python-electric-colon): Delete command.
5578 (python-indent-electric-colon): New command.
5579 (python-guess-indent): Delete command.
5580 (python-indent-guess-indent-offset): New command.
5581 (python-shift-left): Delete command.
5582 (python-indent-shift-left): New command.
5583 (python-shift-right): Delete command.
5584 (python-indent-shift-right): New command.
5585 (python-find-function): Delete command.
5586 (python-nav-jump-to-defun): New command.
5587 (python-next-statement): Delete command.
5588 (python-nav-forward-sentence): New command.
5589 (python-previous-statement): Delete command.
5590 (python-nav-backward-sentence): New command.
5591 (python-fill-paragraph): Delete command.
5592 (python-fill-paragraph-function): New command.
5593 (python-send-buffer): Delete command.
5594 (python-shell-send-buffer): New command.
5595 (python-send-defun): Delete command.
5596 (python-shell-send-defun): New command.
5597 (python-send-region, python-send-region-and-go): Delete commands.
5598 (python-shell-send-region)
5599 (python-shell-switch-to-shell): New commands.
5600 (python-send-string): Delete command.
5601 (python-shell-send-string): New command.
5602 (python-switch-to-python): Delete command.
5603 (python-shell-switch-to-shell): New command.
5604 (python-describe-symbol): Delete command.
5605 (python-eldoc-at-point): New command.
5606 (python--set-prompt-regexp, python-args-to-list)
5607 (python-after-info-look, python-check-version)
5608 (python-check-comint-prompt, python-find-imports)
5609 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
5610 (python-unload-function, python-expand-template)
5611 (python-maybe-jython, python-preoutput-filter)
5612 (python-pdbtrack-get-source-buffer)
5613 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
5614 (python-pdbtrack-toggle-stack-tracking)
5615 (python-pdbtrack-track-stack-file, python-initial-text)
5616 (python-first-word, python-comment-line-p, python-send-command)
5617 (python-setup-brm, python-sentinel, python-set-proc)
5618 (python-skip-out, python-input-filter, python-outdent-p)
5619 (python-outline-level, python-backslash-continuation-line-p)
5620 (python-end-of-block, python-end-of-statement, python-mark-block)
5621 (python-beginning-of-block, python-beginning-of-statement)
5622 (python-blank-line-p, python-beginning-of-string)
5623 (python-open-block-statement-p): Delete functions.
5624 (python-indent-line, python-indent-line-1): Delete functions.
5625 (python-indent-line): New function.
5626 (python-indentation-levels): Delete function.
5627 (python-indent-calculate-levels): New function.
5628 (python-proc): Delete function.
5629 (python-shell-get-process): New function.
5630 (python-send-receive): Delete function.
5631 (python-shell-send-string-no-output): New function.
5632 (python-module-path): Delete function.
5633 (python-ffap-module-path): New function.
5634 (python-completion-at-point)
5635 (python-symbol-completions): Delete functions.
5636 (python-completion-complete-at-point): New function.
5637 (python-load-file): Delete function.
5638 (python-shell-send-file): New function.
5639 (python-calculate-indentation): Delete function.
5640 (python-indent-calculate-indentation): New function.
5641 (python-skip-comments/blanks): Delete function.
5642 (python-util-forward-comment): New function.
5643 (python-continuation-line-p): Delete function.
5644 (python-info-continuation-line-p): New function.
5645 (python-which-func, python-current-defun): Delete function.
5646 (python-info-current-defun): New function.
5647 (python-beginning-of-defun): Delete function.
5648 (python-nav-beginning-of-defun): New function.
5649 (python-close-block-statement-p)
5650 (python-block-end-p): Delete function.
5651 (python-info-closing-block): New function.
5652 (python-comint-output-filter-function)
5653 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
5654 (python-fill-comment, python-fill-decorator, python-fill-paren)
5655 (python-fill-string, python-imenu-make-element-tree)
5656 (python-imenu-make-tree, python-imenu-tree-assoc)
5657 (python-indent-context, python-indent-dedent-line)
5658 (python-indent-line-function)
5659 (python-indent-post-self-insert-function)
5660 (python-indent-toggle-levels)
5661 (python-info-assignment-continuation-line-p)
5662 (python-info-beginning-of-backlash)
5663 (python-info-block-continuation-line-p)
5664 (python-info-closing-block-message)
5665 (python-info-line-ends-backslash-p)
5666 (python-info-looking-at-beginning-of-defun)
5667 (python-info-ppss-context, python-info-ppss-context-type)
5668 (python-nav-list-defun-positions, python-nav-read-defun)
5669 (python-nav-sentence-end, python-nav-sentence-start)
5670 (python-pdbtrack-comint-output-filter-function)
5671 (python-pdbtrack-set-tracked-buffer)
5672 (python-shell-calculate-exec-path)
5673 (python-shell-calculate-process-environment)
5674 (python-shell-completion--do-completion-at-point)
5675 (python-shell-completion--get-completions)
5676 (python-shell-completion-complete-at-point)
5677 (python-shell-completion-complete-or-indent)
5678 (python-shell-get-or-create-process)
5679 (python-shell-get-process-name)
5680 (python-shell-internal-get-or-create-process)
5681 (python-shell-internal-get-process-name)
5682 (python-shell-internal-send-string, python-shell-make-comint)
5683 (python-shell-parse-command, python-shell-send-setup-code)
5684 (python-skeleton-add-menu-items)
5685 (python-util-clone-local-variables, python-util-position)
5686 (run-python-internal, python-indentation-levels)
5687 (python-nav-beginning-of-defun)
5688 (python-completion-complete-at-point): New functions.
5689 (run-python): Change arguments. New API requirements.
5690
5691 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5692
5693 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
5694 (bug#11649).
5695
5696 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
5697 (macroexp--expand-all): Use it.
5698
5699 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
5700 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
5701 Use `cl-function' instead.
5702
5703 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
5704
5705 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
5706 Suggested by Stefan Monnier while discussing bug#11657.
5707
5708 2012-06-14 Sam Steingold <sds@gnu.org>
5709
5710 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
5711
5712 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
5713
5714 * play/doctor.el (doctor-doc): Remove parameter and use
5715 doctor-sent instead of sent.
5716 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
5717
5718 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5719
5720 * files.el: Require cl-lib.
5721 (file-name-non-special): Replace case -> cl-case.
5722
5723 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
5724
5725 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
5726 mapping from #' to function*.
5727
5728 2012-06-13 Chong Yidong <cyd@gnu.org>
5729
5730 * mouse.el (mouse-drag-track): Do not set the mark if the user
5731 releases the mouse without selecting anything (Bug#11588).
5732
5733 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5734
5735 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
5736 as well (bug#11646).
5737
5738 * loadup.el: Count byte-code functions as well.
5739
5740 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
5741 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
5742
5743 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
5744 (bug#11649). Add cl-defun and cl-defmacro.
5745
5746 2012-06-13 Drew Adams <drew.adams@oracle.com>
5747
5748 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
5749 Fix last change.
5750
5751 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
5752
5753 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
5754 Otherwise, it blocks in batch mode.
5755
5756 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
5757
5758 * help-mode.el (bookmark-make-record-default): Declare.
5759
5760 2012-06-13 Chong Yidong <cyd@gnu.org>
5761
5762 * emacs-lisp/package.el (list-packages): Compute a list of
5763 packages that are newly-available since the last list-packages
5764 invocation.
5765 (package-menu--new-package-list): New var.
5766 (package-menu--generate, package-menu--print-info)
5767 (package-menu--status-predicate, package-menu-mark-install):
5768 Handle new status label "new".
5769
5770 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
5771
5772 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
5773 conversion to backquotes.
5774
5775 2012-06-12 Chong Yidong <cyd@gnu.org>
5776
5777 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
5778 Rename from gud-inhibit-global-bindings.
5779
5780 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
5781
5782 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
5783 hook from nxml-glyph-set-hook.
5784
5785 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
5786 declaration.
5787
5788 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
5789
5790 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
5791 Convert to defcustom.
5792
5793 2012-06-12 Drew Adams <drew.adams@oracle.com>
5794
5795 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
5796 New functions.
5797 (help-mode): Use them.
5798
5799 2012-06-11 Glenn Morris <rgm@gnu.org>
5800
5801 * progmodes/fortran.el (fortran-font-lock-keywords-3):
5802 Use preprocessor face for directives.
5803 (fortran-directive-re): Doc fix.
5804
5805 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
5806
5807 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
5808 conversion to backquotes (bug#11652).
5809
5810 Fix compiler-expansion of CL's cXXr functions (bug#11673).
5811 * emacs-lisp/cl-lib.el (cl--defalias): New function.
5812 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
5813 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
5814 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
5815 (cl-ninth, cl-tenth): Mark them as inlinable.
5816 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
5817 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
5818 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
5819 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
5820 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
5821 (cl-list*, cl-adjoin): Don't put an autoload manually.
5822 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
5823 (cl--compiler-macro-list*): Add autoload cookie.
5824 (cl--compiler-macro-cXXr): New function.
5825
5826 * help-fns.el (help-fns--compiler-macro): New function extracted from
5827 describe-function-1; follow aliases and use `compiler-macro' property.
5828 (describe-function-1): Use it.
5829
5830 2012-06-11 Chong Yidong <cyd@gnu.org>
5831
5832 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
5833 is uninstalled, if imagemagick is installed.
5834
5835 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
5836
5837 * emacs-lisp/cl-lib.el: Use lexical-binding.
5838 (cl-map-extents, cl-maclisp-member): Remove.
5839 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
5840 (cl--set-substring, cl--block-wrapper, cl--block-throw)
5841 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
5842 * emacs-lisp/cl-extra.el: Use lexical-binding.
5843 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
5844 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
5845 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
5846 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
5847 * emacs-lisp/cl-seq.el: Use lexical-binding.
5848 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
5849 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
5850 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
5851 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
5852 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
5853 CL's internals.
5854
5855 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
5856
5857 Sync with Tramp 2.2.6-pre.
5858
5859 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
5860 `print-length' and `print-level' to nil, in order to avoid
5861 truncation. Reported by Christopher Schmidt
5862 <christopher@ristopher.com>.
5863
5864 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
5865
5866 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
5867 New defmacro.
5868 (tramp-compat-copy-directory): Add optional argument
5869 COPY-CONTENTS. It is not handled yet.
5870
5871 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
5872 (tramp-ftp-file-name-p): Simplify.
5873
5874 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
5875 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
5876 connection vector.
5877
5878 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
5879 (tramp-methods): Do not use `tramp-password-end-of-line'.
5880 (tramp-completion-function-alist-putty): Handle UNIX case.
5881 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
5882 (tramp-do-file-attributes-with-stat)
5883 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
5884 gid as real numbers. They could run out of integer range on cygwin.
5885 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
5886 (tramp-sh-handle-expand-file-name): Handle hops.
5887 (tramp-open-connection-setup-interactive-shell):
5888 Use `tramp-cleanup'. Move check for busyboxes ...
5889 (tramp-find-shell): ... here. Simplify implementation.
5890 Set "remote-shell" property also for alternative shells.
5891 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
5892 If failing, a regular file would be written otherwise.
5893 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
5894 (tramp-find-inline-encoding): Cache the coding commands in the
5895 process cache. Apply test command on the remote side, if defined.
5896 (tramp-find-inline-compress): Cache the compress commands in the
5897 process cache.
5898 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
5899 when requested. Handle hops.
5900 (tramp-current-connection): New defvar.
5901 (tramp-maybe-open-connection): Use `tramp-cleanup'.
5902 Throw `suppress', if there was a failed connection shortly before.
5903 Handle user interrupt. (Bug#10187)
5904 (tramp-get-inline-compress, tramp-get-inline-coding):
5905 Read connection properties from the process cache.
5906
5907 * net/tramp-smb.el (tramp-smb-server-version)
5908 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
5909 New defconsts.
5910 (tramp-smb-prompt): Extend for powershell prompt.
5911 (tramp-smb-file-name-handler-alist): Add handlers for
5912 `process-file', `shell-command' and `start-file-process'.
5913 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
5914 (tramp-smb-winexe-shell-command-switch): New defcustoms.
5915 (tramp-smb-file-name-p): Simplify.
5916 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
5917 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
5918 (tramp-smb-shell-quote-argument): New defuns.
5919 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
5920 Implement using "tar". By this, time-stamps are preserved.
5921 (tramp-smb-handle-copy-file): Handle also the case of directories.
5922 (tramp-smb-do-file-attributes-with-stat)
5923 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
5924 Use `tramp-get-connection-buffer').
5925 (tramp-smb-handle-rename-file): Use "rename", when source and
5926 target are on the same share.
5927 (tramp-smb-maybe-open-connection): Handle wrong passwords.
5928 Use `tramp-smb-server-version'.
5929 (tramp-smb-wait-for-output): Remove prompt.
5930
5931 * net/tramp.el (top): Require 'cl.
5932 (tramp-methods, tramp-rsh-end-of-line):
5933 Remove `tramp-password-end-of-line' from docstring.
5934 (tramp-save-ad-hoc-proxies): New defcustom.
5935 (tramp-completion-function-alist): Adapt docstring.
5936 (tramp-default-password-end-of-line): Remove defcustom.
5937 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
5938 (tramp-user-regexp, tramp-file-name-regexp-unified)
5939 (tramp-file-name-regexp-url): Extend regexp by hop separator.
5940 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
5941 (tramp-remote-file-name-spec-regexp): New defconst.
5942 (tramp-file-name-structure): Extend structure for hops.
5943 (tramp-get-method-parameter): Move up.
5944 (tramp-file-name-p, tramp-dissect-file-name)
5945 (with-parsed-tramp-file-name): Handle hops.
5946 (tramp-file-name-hop): New defun.
5947 (tramp-make-tramp-file-name): New optional arg HOP.
5948 (tramp-message-show-progress-reporter-message): New defvar.
5949 (tramp-with-progress-reporter): Use it. We cannot use
5950 `tramp-message-show-message' here, because this suppresses also
5951 error buffers.
5952 (tramp-error-with-buffer): Suppress buffer view, if
5953 `tramp-message-show-message' is nil.
5954 Use `tramp-get-connection-buffer'.
5955 (tramp-cleanup): New defun.
5956 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
5957 (tramp-file-name-handler): If `debug-on-error' is set, propagate
5958 an error unchanged.
5959 (tramp-completion-handle-file-name-all-completions): Handle hops.
5960 Fix an error when called from ido.
5961 (tramp-completion-dissect-file-name): Use better local variable
5962 name. Add hop to the vector.
5963 (tramp-handle-insert-file-contents): Use progress-reporter for the
5964 whole scenario.
5965 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
5966 to `t'.
5967 (tramp-check-for-regexp): Simplify search.
5968 (tramp-enter-password): Remove it. Move implementation ...
5969 (tramp-action-password): ... here.
5970 (tramp-mode-string-to-int, tramp-local-host-p)
5971 (tramp-make-tramp-temp-file, tramp-read-passwd)
5972 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
5973 Set tramp-autoload cookie.
5974
5975 * net/trampver.el: Update release number.
5976
5977 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5978 Michael Albinus <michael.albinus@gmx.de>
5979
5980 * net/tramp.el (tramp-set-completion-function): Fix docstring.
5981 (tramp-parse-group, tramp-parse-file)
5982 (tramp-parse-shostkeys-sknownhosts): New defuns.
5983 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
5984 (tramp-parse-shosts-group, tramp-parse-sconfig)
5985 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
5986 (tramp-parse-sknownhosts, tramp-parse-hosts)
5987 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
5988 Use them.
5989 (tramp-parse-passwd-group, tramp-parse-netrc-group)
5990 (tramp-parse-putty-group): Don't narrow.
5991 (tramp-parse-putty): Make a loop.
5992 (tramp-file-name-handler): Catch the `suppress' signal.
5993
5994 2012-06-11 Chong Yidong <cyd@gnu.org>
5995
5996 * image.el (imagemagick-register-types): Put the ImageMagick entry
5997 at the end of image-type-file-name-regexps.
5998
5999 2012-06-11 Johan Bockgård <bojohan@gnu.org>
6000
6001 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
6002 (pcase, pcase-let*, pcase-dolist): Use them.
6003
6004 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6005
6006 * emacs-lisp/pcase.el (pcase--let*): New function.
6007 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
6008 (pcase--expand): Use macroexp-let².
6009
6010 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6011
6012 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
6013 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
6014 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
6015 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
6016 * emacs-lisp/derived.el: Use pcase instead of `cl'.
6017 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
6018
6019 2012-06-10 Glenn Morris <rgm@gnu.org>
6020
6021 * mail/rmail.el (rmail-yank-current-message): Leave point at
6022 correct position. (Bug#11660)
6023
6024 2012-06-10 Chong Yidong <cyd@gnu.org>
6025
6026 * allout-widgets.el: Fix code header.
6027
6028 2012-06-10 Chong Yidong <cyd@gnu.org>
6029
6030 * cus-edit.el (customize-changed-options-previous-release):
6031 Bump to 24.1.
6032
6033 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
6034
6035 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
6036
6037 2012-06-09 Chong Yidong <cyd@gnu.org>
6038
6039 * ebuff-menu.el (electric-buffer-list): Preserve header line.
6040
6041 2012-06-09 Martin Rudalics <rudalics@gmx.at>
6042
6043 * window.el (special-display-popup-frame): Don't use
6044 window--display-buffer (Bug#11651).
6045
6046 2012-06-09 Eli Zaretskii <eliz@gnu.org>
6047
6048 Fix parallel builds: make sure loaddefs.el is not being written
6049 while Lisp files are compiled.
6050 (compile): Don't depend on 'mh-autoloads'.
6051 (compile-CMD, compile-SH): Depend on 'autoloads'.
6052 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
6053
6054 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
6055
6056 2012-06-09 Chong Yidong <cyd@gnu.org>
6057
6058 * face-remap.el (face-remap-add-relative, face-remap-set-base)
6059 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
6060 Doc fixes (Bug#11225).
6061
6062 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
6063
6064 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
6065 a function if there's a clear indication that it has a compiler-macro.
6066 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
6067 (macro-declarations-alist): Add arglist to declaration functions.
6068 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
6069 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
6070 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
6071 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
6072 Also add autoload to find the compiler macro.
6073 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
6074 (cl--compiler-macro-member, cl--compiler-macro-assoc)
6075 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
6076 (cl--compiler-macro-get): New functions, replacing calls to
6077 cl-define-compiler-macro.
6078 (cl-typep) [compiler-macro]: Use macroexp-let².
6079
6080 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
6081
6082 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
6083 string properly, fixes Bug#11473.
6084
6085 2012-06-08 Chong Yidong <cyd@gnu.org>
6086
6087 * faces.el (set-face-attribute): Doc fix.
6088 (modify-face): Don't use :bold and :italic.
6089 (error, warning, success): Tweak definitions.
6090
6091 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
6092 (custom-modified, custom-set, custom-changed, custom-themed)
6093 (custom-saved, custom-button, custom-button-mouse)
6094 (custom-button-pressed, custom-state, custom-comment-tag)
6095 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
6096 (custom-group-subtitle): Use new-style face specs.
6097 (custom-invalid-face, custom-rogue-face, custom-modified-face)
6098 (custom-set-face, custom-changed-face, custom-saved-face)
6099 (custom-button-face, custom-button-pressed-face)
6100 (custom-documentation-face, custom-state-face)
6101 (custom-comment-face, custom-comment-tag-face)
6102 (custom-variable-tag-face, custom-variable-button-face)
6103 (custom-face-tag-face, custom-group-tag-face-1)
6104 (custom-group-tag-face): Remove obsolete face alias.
6105
6106 * epa.el (epa-validity-high, epa-validity-medium)
6107 (epa-validity-low, epa-mark, epa-field-name, epa-string)
6108 (epa-field-name, epa-field-body):
6109 * font-lock.el (font-lock-comment-face, font-lock-string-face)
6110 (font-lock-keyword-face, font-lock-builtin-face)
6111 (font-lock-function-name-face, font-lock-variable-name-face)
6112 (font-lock-type-face, font-lock-constant-face):
6113 * ido.el (ido-first-match, ido-only-match, ido-subdir)
6114 (ido-virtual, ido-indicator, ido-incomplete-regexp):
6115 * speedbar.el (speedbar-button-face, speedbar-file-face)
6116 (speedbar-directory-face, speedbar-tag-face)
6117 (speedbar-selected-face, speedbar-highlight-face)
6118 (speedbar-separator-face):
6119 * whitespace.el (whitespace-newline, whitespace-space)
6120 (whitespace-hspace, whitespace-tab, whitespace-trailing)
6121 (whitespace-line, whitespace-space-before-tab)
6122 (whitespace-space-after-tab, whitespace-indentation)
6123 (whitespace-empty):
6124 * emulation/cua-base.el (cua-global-mark):
6125 * eshell/em-prompt.el (eshell-prompt):
6126 * net/newst-plainview.el (newsticker-new-item-face)
6127 (newsticker-old-item-face, newsticker-immortal-item-face)
6128 (newsticker-obsolete-item-face, newsticker-date-face)
6129 (newsticker-statistics-face, newsticker-default-face):
6130 * net/newst-reader.el (newsticker-feed-face)
6131 (newsticker-extra-face, newsticker-enclosure-face):
6132 * net/newst-treeview.el (newsticker-treeview-face)
6133 (newsticker-treeview-new-face, newsticker-treeview-old-face)
6134 (newsticker-treeview-immortal-face)
6135 (newsticker-treeview-obsolete-face)
6136 (newsticker-treeview-selection-face):
6137 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
6138 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
6139 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
6140 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
6141 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
6142 (nxml-outline-active-indicator, nxml-outline-ellipsis):
6143 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
6144 (mpuz-text):
6145 * progmodes/vera-mode.el (vera-font-lock-number)
6146 (vera-font-lock-function, vera-font-lock-interface):
6147 * textmodes/table.el (table-cell): Use new-style face specs, and
6148 don't use the old :bold and :italic attributes.
6149
6150 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
6151 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
6152 (ebrowse-member-class, ebrowse-progress): Likewise.
6153 (ebrowse-tree-mark-face, ebrowse-root-class-face)
6154 (ebrowse-file-name-face, ebrowse-default-face)
6155 (ebrowse-member-attribute-face, ebrowse-member-class-face)
6156 (ebrowse-progress-face): Remove obsolete faces.
6157
6158 * progmodes/flymake.el (flymake-errline, flymake-warnline):
6159 Inherit from error and warning faces respectively.
6160
6161 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
6162 Likewise.
6163 (flyspell-incorrect-face, flyspell-duplicate-face):
6164 Remove obsolete aliases.
6165
6166 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
6167
6168 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6169 Avoid infloop.
6170
6171 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6172
6173 * startup.el (argv, argi): Make lexically scoped.
6174 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
6175 * emacs-lisp/cl-macs.el: Use lexical-binding.
6176 Rename cl-bind-* to cl--bind-*.
6177 * files.el: Don't require `cl' since it doesn't use it.
6178 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
6179
6180 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
6181
6182 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
6183 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
6184 instead of calling external sort utility.
6185 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
6186
6187 2012-06-08 Eli Zaretskii <eliz@gnu.org>
6188
6189 * descr-text.el (describe-char): Mention how to insert the
6190 character, if the current input method doesn't support it.
6191 See the discussion in this thread for the details:
6192 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
6193
6194 2012-06-08 Sam Steingold <sds@gnu.org>
6195
6196 * bindings.el (global-map): Bind XF86Forward to next-buffer and
6197 XF86Back to previous-buffer.
6198 (minibuffer-local-map): Bind them to next-history-element and
6199 previous-history-element respectively.
6200 * help-mode.el (help-mode-map): Bind them to help-go-forward and
6201 help-go-back respectively.
6202 * info.el (Info-mode-map): Bind them to Info-history-forward and
6203 Info-history-back respectively.
6204 These are the keys next to Up on the ThinkPad keyboard.
6205
6206 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6207
6208 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
6209 * emacs-lisp/cl-macs.el: Provide itself.
6210 (cl--labels-convert-cache): New var.
6211 (cl--labels-convert): New function.
6212 (cl-flet, cl-labels): New implementation with new semantics, relying on
6213 lexical-binding.
6214 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
6215 (cl-closure-vars, cl--function-convert-cache)
6216 (cl--function-convert): Move from cl-macs.el.
6217 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
6218 rename by removing the "cl-" prefix.
6219 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
6220
6221 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6222
6223 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
6224 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
6225 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
6226 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
6227 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
6228 (cl-hash-table-count): Add old compatibility aliases.
6229
6230 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
6231 Use macroexpand-all-environment instead.
6232 (cl--old-macroexpand): New var.
6233 (cl--sm-macroexpand): New function.
6234 (cl-symbol-macrolet): Use it during macro expansion.
6235 (cl--function-convert-cache): New var.
6236 (cl--function-convert): New function, extracted from
6237 cl-macroexpand-all.
6238 (cl-lexical-let): Use it.
6239
6240 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
6241 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
6242 (cl-member): Remove old alias.
6243
6244 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
6245 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
6246 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
6247 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
6248 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
6249 (cl-macroexpand-cmacs): Remove var.
6250 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
6251 Use macroexpand-all instead.
6252
6253 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6254
6255 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
6256 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
6257 (macroexp-copyable-p): New functions and macros.
6258 * emacs-lisp/edebug.el (edebug-unwrap):
6259 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
6260 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
6261 (pcase--let*): Remove.
6262 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
6263 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
6264 macroexp-const-p instead.
6265 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
6266
6267 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
6268 instead of "cl-" for internal definitions. Use macroexp-const-p.
6269 (cl-old-bc-file-form): Remove var.
6270 (cl-const-exprs-p): Remove fun.
6271 (cl-labels, cl-macrolet): Use backquote.
6272 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
6273 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
6274 (cl-define-setf-expander): Rename from cl-define-setf-method.
6275 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
6276
6277 * international/mule-cmds.el: Don't require CL.
6278 (view-hello-file): Don't use `letf'.
6279
6280 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6281
6282 * tmm.el (tmm-prompt): Use string-prefix-p.
6283 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
6284 (tmm-add-prompt): Use minibuffer-completion-help.
6285 (tmm-delete-map): Remove.
6286
6287 * subr.el (kbd): Make it its own function.
6288
6289 2012-06-07 Stefan Merten <smerten@oekonux.de>
6290
6291 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
6292 Silence compiler warnings. Fix versions.
6293 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
6294 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
6295 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
6296 (rst-package-emacs-version-alist): Correct Emacs version to
6297 represent major merge with upstream.
6298 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
6299
6300 2012-06-06 Glenn Morris <rgm@gnu.org>
6301
6302 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
6303 Only print environment variables if set.
6304
6305 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6306
6307 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
6308 (macroexp--cons): Rename from maybe-cons.
6309 (macroexp--accumulate): Rename from macroexp-accumulate.
6310 (macroexp--all-forms): Rename from macroexpand-all-forms.
6311 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
6312 (macroexp--expand-all): Rename from macroexpand-all-1.
6313
6314 2012-06-06 Sam Steingold <sds@gnu.org>
6315
6316 * calendar/calendar.el (calendar-in-read-only-buffer):
6317 Call `special-mode' to enable the standard read-only keybindings.
6318
6319 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6320
6321 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
6322 with "loading" messages (bug#11635).
6323
6324 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
6325
6326 * files.el (enable-remote-dir-locals): New option.
6327 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
6328
6329 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6330 Ensure, that the temp directory is local.
6331
6332 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
6333 `temporary-file-directory'.
6334
6335 * progmodes/python.el (python-send-region): Ensure, that the
6336 temporary file is created also in the remote case.
6337
6338 2012-06-06 Glenn Morris <rgm@gnu.org>
6339
6340 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
6341 (vc-rcs-update-changelog): Use it.
6342
6343 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
6344
6345 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
6346 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
6347 (vc-sccs-diff): Replace use of the external vcdiff script.
6348
6349 2012-06-05 Glenn Morris <rgm@gnu.org>
6350
6351 * ledit.el: Move to obsolete/.
6352
6353 2012-06-05 Sam Steingold <sds@gnu.org>
6354
6355 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
6356 patch (Bug#11140).
6357
6358 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6359
6360 * emacs-lisp/cust-print.el: Move to obsolete.
6361
6362 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
6363 compiler-macro expansion.
6364
6365 Add native compiler-macro support.
6366 * emacs-lisp/macroexp.el (macroexpand-all-1):
6367 Support compiler-macros directly. Properly follow aliases and apply
6368 the compiler macros more thoroughly.
6369 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
6370 macroexpand now properly follows aliases.
6371 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
6372 (cl-compiler-macroexpand): Use new prop.
6373 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
6374
6375 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
6376
6377 2012-06-05 Martin Rudalics <rudalics@gmx.at>
6378
6379 * window.el (get-lru-window, get-mru-window, get-largest-window):
6380 New argument NOT-SELECTED to avoid picking the selected window.
6381 (window--display-buffer-1, window--display-buffer-2): Replace by
6382 new function window--display-buffer
6383 (display-buffer-same-window, display-buffer-reuse-window)
6384 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
6385 Use window--display-buffer.
6386 (display-buffer-use-some-window): Remove temporary dedication
6387 hack by calling get-lru-window and get-largest-window with
6388 NOT-SELECTED argument non-nil. Call window--display-buffer.
6389
6390 2012-06-05 Glenn Morris <rgm@gnu.org>
6391
6392 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
6393 Replace external vcdiff script.
6394
6395 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
6396
6397 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
6398
6399 2012-06-04 Chong Yidong <cyd@gnu.org>
6400
6401 * image.el (imagemagick-types-inhibit): Revert last change.
6402 Add INFO and M.
6403 (imagemagick-enabled-types): Remove CIN and EPS*.
6404
6405 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
6406
6407 * emacs-lisp/cl-lib.el: Rename from cl.el.
6408 * emacs-lisp/cl.el: New compatibility file.
6409 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
6410 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
6411 to obey the "cl-" prefix.
6412 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
6413
6414 2012-06-03 Glenn Morris <rgm@gnu.org>
6415
6416 * emacs-lisp/authors.el (authors-aliases): Addition.
6417
6418 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
6419 Fix :version.
6420
6421 2012-06-03 Stefan Merten <smerten@oekonux.de>
6422
6423 * textmodes/rst.el: Add comments.
6424 (rst-transition, rst-adornment): New faces.
6425 (rst-adornment-faces-alist): Make default safe to reevaluate.
6426 Fixes
6427 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
6428 Improve customization tags.
6429 (rst-define-level-faces): Clarify meaning.
6430
6431 2012-06-03 Chong Yidong <cyd@gnu.org>
6432
6433 * progmodes/compile.el (compilation-mode-line-fail)
6434 (compilation-mode-line-run, compilation-mode-line-exit):
6435 New faces.
6436 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
6437
6438 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
6439
6440 * progmodes/which-func.el (which-func-update-ediff-windows):
6441 New function. Use it in ediff-select-hook (Bug#11478).
6442
6443 2012-06-03 Chong Yidong <cyd@gnu.org>
6444
6445 * bindings.el: Remove explicit help text from format-mode-line.
6446 It is now supplied by mode-line-default-help-echo.
6447 (mode-line-front-space, mode-line-end-spaces)
6448 (mode-line-misc-info): New variables.
6449 (mode-line-modes, mode-line-position): Move the default value to
6450 the variable definition.
6451 (mode-line-default-help-echo): New defcustom.
6452 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
6453 (mode-line-modified-help-echo): New functions.
6454 (mode-line-mule-info, mode-line-modified): Use them.
6455 (mode-line-eol-desc, propertized-buffer-identification):
6456 Consistency fixes for help text.
6457 (mode-line-coding-system-map): Allow using mouse-3 to invoke
6458 set-buffer-file-coding-system (Bug#289).
6459 (mode-line-mule-info-help-echo): Update help text.
6460
6461 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6462
6463 * simple.el (execute-extended-command): Set real-this-command
6464 (bug#11506).
6465
6466 2012-06-02 Chong Yidong <cyd@gnu.org>
6467
6468 Remove incorrect uses of "modeline" in comments, docstrings, and
6469 function/variable names (Bug#10329).
6470
6471 * cus-edit.el (mode-line):
6472 * dframe.el (dframe-mouse-hscroll):
6473 * emacs-lisp/re-builder.el:
6474 * emacs-lisp/easy-mmode.el (define-minor-mode):
6475 * frame.el (set-frame-name):
6476 * help.el (lookup-minor-mode-from-indicator):
6477 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
6478 * progmodes/cc-cmds.el (c-toggle-auto-newline)
6479 (c-toggle-hungry-state):
6480 * progmodes/antlr-mode.el (antlr-language-alist):
6481 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
6482 * progmodes/vhdl-mode.el (vhdl-mode):
6483 * progmodes/which-func.el (which-func, which-func-cleanup-function):
6484 * term/ns-win.el (ns-face-at-pos):
6485 * term/sup-mouse.el (sup-mouse-report):
6486 * textmodes/flyspell.el (flyspell-mode-line-string):
6487 * textmodes/ispell.el (ispell-highlight-face):
6488 * textmodes/reftex-global.el:
6489 * vc/vc-arch.el (vc-arch-mode-line-string):
6490 * vc/vc-cvs.el (vc-cvs-mode-line-string):
6491 * vc/vc-git.el (vc-git-mode-line-string):
6492 * vc/vc-hooks.el (vc-display-status)
6493 (vc-default-mode-line-string):
6494 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
6495
6496 * ansi-color.el (ansi-color-faces-vector): Change default faces.
6497
6498 * dired.el (dired-sort-set-mode-line): Rename from
6499 dired-sort-set-modeline. All callers changed.
6500
6501 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
6502 eshell-status-in-modeline.
6503
6504 * foldout.el (foldout-mode-line-string): Rename from
6505 foldout-modeline-string. All callers changed.
6506 (foldout-update-mode-line): Rename from foldout-update-modeline.
6507
6508 * subr.el (redraw-modeline): Make into obsolete alias.
6509
6510 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
6511 timeclock-modeline-display. Make old name an alias.
6512 (timeclock-update-mode-line): Likewise. All callers changed.
6513 (timeclock-mode-line-display): No need to check before using
6514 add-hook.
6515 (timeclock-relative, timeclock-day-over-hook)
6516 (timeclock-use-elapsed, timeclock-mode-string)
6517 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
6518
6519 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
6520 crisp-mode-modeline-string.
6521
6522 * play/solitaire.el (solitaire-build-mode-line): Rename from
6523 solitaire-build-modeline. All callers changed.
6524
6525 * play/zone.el (zone-hiding-mode-line): Rename from
6526 zone-hiding-modeline. All callers changed.
6527 (zone): Remove unusued `modeline-hidden-level' property.
6528
6529 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
6530 xscheme-modeline-initialize. All callers changed.
6531
6532 * strokes.el (strokes-lighter): Rename from
6533 strokes-modeline-string.
6534
6535 * textmodes/sgml-mode.el (html-face-tag-alist)
6536 (html-tag-face-alist): Use mode-line face instead of obsolete
6537 alias modeline.
6538
6539 2012-06-02 Stefan Merten <smerten@oekonux.de>
6540
6541 * textmodes/rst.el: Always require `cl'.
6542 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
6543
6544 2012-06-02 Chong Yidong <cyd@gnu.org>
6545
6546 * image.el (imagemagick-enabled-types): Rename from
6547 imagemagick-types-enable. Add many more types.
6548 (imagemagick-types-inhibit): Change default to nil.
6549 (imagemagick-filter-types): Caller changed.
6550
6551 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6552
6553 * emacs-lisp/cl-macs.el: Use backquotes.
6554 (cl-transform-function-property): Use eval-and-compile rather than
6555 abusing `require'.
6556 (defstruct): Use declare-function instead of with-no-warnings.
6557
6558 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
6559 (byte-compile-output-docform): Re-add the print-circle bindings.
6560 (byte-compile-fix-header): Use #$ just because it's shorter.
6561 (byte-compile-output-file-form): Remove defun/defmacro.
6562
6563 2012-06-01 Martin Rudalics <rudalics@gmx.at>
6564
6565 * simple.el (choose-completion): Remove now obsolete binding for
6566 owindow.
6567
6568 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
6569
6570 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
6571 in order to avoid "Stack overflow in regexp matcher".
6572
6573 2012-05-31 Glenn Morris <rgm@gnu.org>
6574
6575 * image.el: For clarity, call imagemagick-register-types at
6576 top-level, rather than relying on a custom :initialize.
6577 (imagemagick-types-enable): New option. (Bug#11557)
6578 (imagemagick-filter-types): New function. (Bug#7406)
6579 (imagemagick-register-types): Use imagemagick-filter-types.
6580 If disabling support, remove elements altogether rather
6581 than using an impossible regexp.
6582 (imagemagick-types-inhibit): Give it the default init function.
6583
6584 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6585
6586 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
6587 Handle arbitrary file name lengths (Bug#11585).
6588
6589 2012-05-31 Martin Rudalics <rudalics@gmx.at>
6590
6591 * desktop.el (desktop-read): Clear previous and next buffers for
6592 all windows and bury *Messages* buffer (bug#11556).
6593
6594 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6595
6596 Add `declare' for `defun'. Align `defmacro's with it.
6597 * emacs-lisp/easy-mmode.el (define-minor-mode)
6598 (define-globalized-minor-mode): Don't autoload the var definitions.
6599 * emacs-lisp/byte-run.el: Use lexical-binding.
6600 (defun-declarations-alist, macro-declarations-alist): New vars.
6601 (defmacro, defun): Use them.
6602 (make-obsolete, define-obsolete-function-alias)
6603 (make-obsolete-variable, define-obsolete-variable-alias):
6604 Use `declare'.
6605 (macro-declaration-function): Mark obsolete.
6606 * emacs-lisp/autoload.el: Use lexical-binding.
6607 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
6608
6609 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6610
6611 * textmodes/ispell.el (ispell-with-no-warnings):
6612 Define as a macro.
6613 (ispell-kill-ispell, ispell-change-dictionary):
6614 Use `called-interactively-p' for Emacs instead of obsolete
6615 `interactive-p'.
6616
6617 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6618
6619 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
6620 (macro-declaration-function): Move var from C code.
6621 (macro-declaration-function): Define function with defalias.
6622 * emacs-lisp/macroexp.el (macroexpand-all-1):
6623 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
6624 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
6625 defun/defmacro any more.
6626 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
6627 Provide fallback for unknown arglist.
6628 (byte-compile-arglist-warn): Change calling convention.
6629 (byte-compile-output-file-form): Move print-vars binding.
6630 (byte-compile-output-docform): Simplify accordingly.
6631 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
6632 (byte-compile-defmacro-declaration): Remove.
6633 (byte-compile-file-form-defmumble): Generalize to defalias.
6634 (byte-compile-output-as-comment): Return byte-positions.
6635 Simplify callers accordingly.
6636 (byte-compile-lambda): Use `assert'.
6637 (byte-compile-defun, byte-compile-defmacro): Remove.
6638 (byte-compile-file-form-defalias):
6639 Use byte-compile-file-form-defmumble.
6640 (byte-compile-defalias-warn): Remove.
6641
6642 2012-05-29 Stefan Merten <smerten@oekonux.de>
6643
6644 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
6645 possible. Fix authors. Improve comments. Improve loading of `cl'.
6646
6647 (rst-mode-abbrev-table): Merge definition.
6648 (rst-mode): Make sure `font-lock-defaults' is buffer local.
6649 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
6650
6651 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
6652
6653 * calendar/icalendar.el
6654 (icalendar-export-region): Export UID properly.
6655
6656 2012-05-29 Leo Liu <sdl.web@gmail.com>
6657 * calendar/icalendar.el (icalendar-import-format):
6658 Add `icalendar-import-format-uid' (Bug#11525).
6659 (icalendar-import-format-uid): New.
6660 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
6661 Export UID.
6662
6663 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
6664
6665 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
6666 different alternative patterns.
6667 (pcase-codegen): Be more careful to preserve identity.
6668 (pcase--u1): Don't forget to mark vars as used.
6669
6670 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
6671 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
6672 (byte-compile-from-buffer): ...rather than here.
6673
6674 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
6675 functions from byte-compile-function-environment.
6676
6677 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
6678
6679 * window.el (window-deletable-p): Avoid deleting the root window
6680 of a frame with an active minibuffer.
6681
6682 2012-05-29 Martin Rudalics <rudalics@gmx.at>
6683
6684 * simple.el (choose-completion): Use quit-window (Bug#11567).
6685
6686 2012-05-29 Chong Yidong <cyd@gnu.org>
6687
6688 * whitespace.el (whitespace-cleanup): Fix usage of
6689 whitespace-empty-at-bob-regexp (Bug#11492).
6690
6691 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
6692
6693 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
6694 revert (Bug#11488).
6695
6696 2012-05-29 Juri Linkov <juri@jurta.org>
6697
6698 * isearch.el (isearch-mode-map): Bind `M-s _' to
6699 `isearch-toggle-symbol'. Bind `M-s c' to
6700 `isearch-toggle-case-fold'.
6701 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
6702 (isearch-forward): Add `M-s _' to the docstring.
6703 (isearch-forward-symbol, isearch-toggle-case-fold)
6704 (isearch-symbol-regexp): New functions. (Bug#11381)
6705
6706 2012-05-29 Juri Linkov <juri@jurta.org>
6707
6708 * isearch.el (isearch-word): Add docstring. (Bug#11381)
6709 (isearch-occur, isearch-search-and-update): If `isearch-word' is
6710 a function, call it to get the regexp.
6711 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
6712 property `isearch-message-prefix' instead of the string "word ".
6713 (isearch-search-fun-default): For the case of `isearch-word',
6714 return a lambda that calls re-search-forward/re-search-backward
6715 with a regexp returned by `word-search-regexp' or by the function
6716 in `isearch-word'.
6717
6718 2012-05-29 Juri Linkov <juri@jurta.org>
6719
6720 * isearch.el (isearch-search-fun-default): New function.
6721 (isearch-search-fun): Move default part to the new function
6722 `isearch-search-fun-default'.
6723 (isearch-search-fun-function): Set the default value to
6724 `isearch-search-fun-default'. (Bug#11381)
6725
6726 * comint.el (comint-history-isearch-end):
6727 Use `isearch-search-fun-default'.
6728 (comint-history-isearch-search): Use `isearch-search-fun-default'
6729 and remove spacial case for `isearch-word'.
6730 (comint-history-isearch-wrap): Remove spacial case for
6731 `isearch-word'.
6732
6733 * hexl.el (hexl-isearch-search-function):
6734 Use `isearch-search-fun-default'.
6735
6736 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
6737 Use `word-search-regexp' for `isearch-word'.
6738
6739 * misearch.el (multi-isearch-search-fun):
6740 Use `isearch-search-fun-default'.
6741
6742 * simple.el (minibuffer-history-isearch-search):
6743 Use `isearch-search-fun-default' and remove spacial case for
6744 `isearch-word'.
6745 (minibuffer-history-isearch-wrap): Remove spacial case for
6746 `isearch-word'.
6747
6748 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
6749 Remove spacial case for `isearch-word'.
6750 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
6751
6752 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6753
6754 Decrease XEmacs incompatibilities.
6755 * textmodes/flyspell.el (flyspell-check-pre-word-p):
6756 Use `string-match'.
6757 (flyspell-delete-region-overlays): Use alternative definition for
6758 XEmacs.
6759 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
6760 (flyspell-word): Use `process-kill-without-query' if XEmacs.
6761 (flyspell-mode-on): Use `interactive-p' if XEmacs.
6762 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
6763 `define-obsolete-face-alias' under XEmacs, but old method.
6764
6765 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
6766 `with-no-warnings' definition or Emacs alias.
6767 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
6768 (ispell-word): Do not use `region-p' if XEmacs.
6769
6770 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6771
6772 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
6773 Check for `ispell-dictionary-base-alist' instead of full
6774 `ispell-dictionary-alist'.
6775 (ispell-init-process): Show spellchecker when starting new Ispell
6776 process.
6777
6778 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
6779
6780 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
6781 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
6782
6783 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
6784
6785 * version.el (motif-version-string, gtk-version-string)
6786 (ns-version-string): Declare.
6787
6788 2012-05-27 Juri Linkov <juri@jurta.org>
6789
6790 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
6791 after the `eval-defun-1' specialcaseing
6792 like in `edebug-eval-defun' (bug#10181).
6793
6794 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
6795 like in `eval-defun-1'.
6796
6797 2012-05-27 Eli Zaretskii <eliz@gnu.org>
6798
6799 * mail/sendmail.el (mail-yank-region):
6800 Recognize rmail-yank-current-message in addition to insert-buffer.
6801 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
6802 a *mail* buffer created through rmail-start-mail with sendmail as
6803 mail-user-agent.
6804
6805 2012-05-27 Chong Yidong <cyd@gnu.org>
6806
6807 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
6808 Default to 256 (Bug#11267).
6809
6810 * help.el (describe-mode): Doc fix.
6811
6812 2012-05-26 Glenn Morris <rgm@gnu.org>
6813
6814 * w32-fns.el (w32-init-info): Remove.
6815 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
6816
6817 * info.el (info-initialize): For self-contained NS builds, put the
6818 included info/ directory at the front. (Bug#2791)
6819
6820 * paths.el (Info-default-directory-list): Make it a defcustom,
6821 mainly so that we can use custom-initialize-delay.
6822
6823 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
6824
6825 * subr.el (buffer-has-markers-at): Mark obsolete.
6826
6827 * subr.el (lambda): Use declare.
6828
6829 * emacs-lisp/lisp-mode.el (lambda):
6830 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
6831
6832 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
6833
6834 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
6835
6836 2012-05-26 Glenn Morris <rgm@gnu.org>
6837
6838 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
6839
6840 2012-05-25 Glenn Morris <rgm@gnu.org>
6841
6842 * paths.el: Remove no-byte-compile.
6843 * loadup.el: No need to load paths.el uncompiled.
6844
6845 * image.el (imagemagick-types-inhibit): Doc fix.
6846
6847 * version.el: Remove no-byte-compile and associated formatting.
6848 * loadup.el: No need to load version.el uncompiled. AFAICS, this
6849 is ancient code from when there was an "inc-vers.el".
6850
6851 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6852
6853 * progmodes/gdb-mi.el: Minor style changes.
6854 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
6855 Turn into minor modes.
6856 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
6857 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
6858 (gdb-shell): Remove unneeded let-binding.
6859 (gdb-get-many-fields): Eliminate O(n²) behavior.
6860
6861 2012-05-25 Eli Zaretskii <eliz@gnu.org>
6862
6863 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
6864 platforms that don't link in fontset.c.
6865
6866 2012-05-25 Juri Linkov <juri@jurta.org>
6867
6868 Use the same diff color scheme as in modern VCSes (bug#10181).
6869
6870 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
6871 to avoid confusion with `diff-added' that now uses green colors.
6872 (diff-removed): Use shades of red.
6873 (diff-added): Use shades of green.
6874 (diff-changed): Leave just the yellow color.
6875 (diff-use-changed-face): New variable.
6876 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
6877 how to highlight context diff changes.
6878 (diff-refine-change): Use shades of yellow.
6879 (diff-refine-removed): New face that uses shades of red.
6880 (diff-refine-added): New face that uses shades of green.
6881 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
6882 `diff-refine-removed' in the call to `smerge-refine-subst'
6883 depending on the value of `diff-use-changed-face'.
6884
6885 * vc/smerge-mode.el (smerge-mine): Use shades of red.
6886 (smerge-other): Use shades of green.
6887 (smerge-base): Use shades of yellow.
6888 (smerge-refined-change): Empty face.
6889 (smerge-refined-removed): New face that uses shades of red.
6890 (smerge-refined-added): New face that uses shades of green.
6891 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
6892 args `props-r' and `props-a', and use them. Doc fix.
6893 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
6894 on its value use different faces `smerge-refined-change',
6895 `smerge-refined-removed', `smerge-refined-added' in the call to
6896 `smerge-refine-subst'.
6897
6898 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
6899 Add face condition `min-colors 88' with shades of red.
6900 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
6901 `min-colors 88' with shades of green.
6902 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
6903 `min-colors 88' with shades of yellow.
6904
6905 2012-05-24 Glenn Morris <rgm@gnu.org>
6906
6907 * paths.el (prune-directory-list, remote-shell-program): Move to...
6908 * files.el (prune-directory-list, remote-shell-program): ...here.
6909 For the latter, delay initialization, prefer ssh, just search PATH.
6910
6911 * paths.el (term-file-prefix): Move to faces.el (the only user).
6912 * faces.el (term-file-prefix): Move here, make it a defcustom.
6913
6914 * paths.el (news-directory, news-path, news-inews-program):
6915 Move to gnus/nnspool.el.
6916
6917 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
6918
6919 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
6920 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
6921 Make the latter a defcustom, with a delayed initialization.
6922
6923 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
6924 These were deleted from Gnus itself late 2010.
6925
6926 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
6927
6928 * progmodes/which-func.el (which-func-ff-hook):
6929 Check against user-error, not error.
6930
6931 * emacs-lisp/edebug.el (top): Do not load or set up loading of
6932 cl-specs.el, which no longer exists.
6933
6934 2012-05-22 Glenn Morris <rgm@gnu.org>
6935
6936 * info.el (info-emacs-bug): New command.
6937 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
6938 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
6939
6940 2012-05-21 Glenn Morris <rgm@gnu.org>
6941
6942 * makefile.w32-in (update-subdirs-SH):
6943 * Makefile.in (update-subdirs): Update for moved update-subdirs.
6944
6945 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
6946
6947 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
6948
6949 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6950 Simplify Maven regexp, and make sure the file can't start with a space
6951 (bug#11517).
6952
6953 2012-05-21 Glenn Morris <rgm@gnu.org>
6954
6955 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
6956 Scrap superfluous subshells.
6957
6958 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
6959
6960 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
6961 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
6962
6963 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
6964
6965 * calc/calc.el (calc-ensure-consistent-units): New variable.
6966
6967 * calc/calc-units.el (math-consistent-units-p)
6968 (math-check-unit-consistency): New functions.
6969 (calc-quick-units, calc-convert-units):
6970 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
6971 is non-nil.
6972 (calc-extract-units): Fix typo.
6973
6974 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
6975
6976 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
6977
6978 * textmodes/flyspell.el: Commenting style, plus code simplifications.
6979 (flyspell-default-deplacement-commands): Don't spell check after
6980 repeated window/frame switches (e.g. triggered by mouse-movement).
6981 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
6982 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
6983 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
6984 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
6985 Remove unused vars.
6986 (flyspell-get-casechars, flyspell-get-not-casechars):
6987 Simplify; Don't bother removing a ] just to add it back.
6988 * textmodes/ispell.el (ispell-program-name): Use executable-find.
6989
6990 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6991
6992 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
6993 New functions.
6994 (math-function-table): Add support for more C functions.
6995
6996 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6997
6998 * textmodes/flyspell.el (flyspell-check-pre-word-p)
6999 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7000 Protect delay handling for otherchars against empty otherchars.
7001
7002 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7003
7004 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
7005 their respective macro declarations.
7006 * skeleton.el (define-skeleton):
7007 * progmodes/compile.el (define-compilation-mode):
7008 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
7009 (define-ibuffer-filter):
7010 * emacs-lisp/generic.el (define-generic-mode):
7011 * emacs-lisp/easy-mmode.el (define-minor-mode)
7012 (define-globalized-minor-mode):
7013 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
7014 * emacs-lisp/byte-run.el (defsubst):
7015 * custom.el (deftheme): Add doc-string metadata.
7016
7017 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7018
7019 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
7020
7021 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7022
7023 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
7024
7025 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
7026 * emacs-lisp/cl-macs.el: Idem.
7027 * emacs-lisp/cl-specs.el: Remove.
7028
7029 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7030
7031 Minor renaming of internal CL functions and variables.
7032 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
7033 (cl--position): Rename from cl-position.
7034 (cl--delete-duplicates): Rename from cl-delete-duplicates.
7035 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
7036 (cl--random-state): Rename from *random-state*.
7037
7038 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7039
7040 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
7041 parens around the arg list (bug#11499).
7042
7043 2012-05-17 Juri Linkov <juri@jurta.org>
7044
7045 * isearch.el (word-search-regexp, word-search-backward)
7046 (word-search-forward, word-search-backward-lax)
7047 (word-search-forward-lax): Move functions from search.c
7048 (bug#10145, bug#11381).
7049
7050 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7051
7052 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7053 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7054 Delay for otherchars as for normal word components.
7055
7056 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
7057
7058 * minibuffer.el (completion--sifn-requote): Fix last change.
7059 (minibuffer-local-must-match-filename-map):
7060 Move define-obsolete-variable-alias before its var.
7061
7062 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7063
7064 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
7065
7066 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
7067 behavior.
7068 (completion--string-equal-p): New function.
7069 (completion--twq-all): Use it to get better assertion failure data.
7070
7071 Only handle ".." and '..' quoting in shell-mode (bug#11466).
7072 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
7073 (shell--requote-argument): New functions.
7074 (shell-completion-vars): Use them.
7075 (shell--parse-pcomplete-arguments): Rename from
7076 shell-parse-pcomplete-arguments.
7077 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
7078 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
7079 Obey comint-file-name-quote-list.
7080
7081 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
7082 (smie-indent-keyword): Use it.
7083
7084 2012-05-14 Stefan Merten <smerten@oekonux.de>
7085
7086 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
7087
7088 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7089
7090 * net/rlogin.el (rlogin-mode-map): Fix last change.
7091
7092 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
7093
7094 * mail/smtpmail.el (smtpmail-send-command): Send the command and
7095 the following \r\n using a single `process-send-string', since the
7096 Lotus SMTP server refuses to accept any commands if they are sent
7097 with two `process-send-string's (Bug#11444).
7098
7099 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7100
7101 * shell.el (shell-parse-pcomplete-arguments):
7102 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
7103
7104 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7105
7106 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
7107 (image-transform-scale, image-transform-right-angle-fudge): New vars.
7108 (image-transform-width, image-transform-fit-width): New functions.
7109 (image-transform-properties): Use them.
7110 (image-transform-check-size): New function.
7111 (image-toggle-display-image): Use it (for testing).
7112 (image-transform-set-rotation): Reduce angle mod 360.
7113 Delete obsolete comment.
7114
7115 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7116
7117 * image-mode.el: Fix scaling (bug#11399).
7118 (image-transform-resize): Doc fix.
7119 (image-transform-properties): Default scale is 1 and height should
7120 be an integer.
7121
7122 2012-05-13 Johan Bockgård <bojohan@gnu.org>
7123
7124 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
7125 than hard-coding `car', to fix misbehavior when moving forward.
7126
7127 2012-05-13 Chong Yidong <cyd@gnu.org>
7128
7129 * emacs-lisp/tabulated-list.el (tabulated-list-format)
7130 (tabulated-list-entries, tabulated-list-padding)
7131 (tabulated-list-sort-key): Make permanent-local.
7132
7133 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
7134 (electric-buffer-list): Put electric buffer menu
7135 command descriptions in this docstring, instead of the docstring
7136 of electric-buffer-menu-mode. Code cleanups.
7137 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
7138 Electric-buffer-menu-mode.
7139 (electric-buffer-update-highlight): Minor code cleanup.
7140
7141 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
7142
7143 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
7144 (Bug#11447)
7145
7146 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
7147
7148 Move define-obsolete-variable-alias before the var's definition.
7149 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
7150 * tooltip.el (tooltip-hook):
7151 * textmodes/reftex-toc.el (reftex-toc-map):
7152 * textmodes/reftex-sel.el (reftex-select-label-map)
7153 (reftex-select-bib-map):
7154 * textmodes/reftex-index.el (reftex-index-map)
7155 (reftex-index-phrases-map):
7156 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
7157 * progmodes/meta-mode.el (meta-mode-map):
7158 * novice.el (disabled-command-hook):
7159 * loadhist.el (unload-hook-features-list):
7160 * frame.el (blink-cursor):
7161 * files.el (find-file-not-found-hooks, write-file-hooks)
7162 (write-contents-hooks):
7163 * emulation/tpu-edt.el (GOLD-map):
7164 * emacs-lock.el (emacs-lock-from-exiting):
7165 * emacs-lisp/generic.el (generic-font-lock-defaults):
7166 * emacs-lisp/chart.el (chart-map):
7167 * dos-fns.el (register-name-alist):
7168 * dired-x.el (dired-omit-files-p):
7169 * desktop.el (desktop-enable):
7170 * cus-edit.el (custom-mode-hook):
7171 * buff-menu.el (buffer-menu-mode-hook):
7172 * bookmark.el (bookmark-read-annotation-text-func)
7173 (bookmark-exit-hooks):
7174 * allout.el (allout-mode-deactivate-hook)
7175 (allout-exposure-change-hook, allout-structure-added-hook)
7176 (allout-structure-deleted-hook, allout-structure-shifted-hook):
7177 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
7178 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
7179 comes before the corresponding variable's definition.
7180
7181 2012-05-12 Chong Yidong <cyd@gnu.org>
7182
7183 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
7184 (Buffer-menu-mouse-select): Restore function (Bug#11459).
7185 (Buffer-menu-mode-map): Bind it.
7186 (Buffer-menu--pretty-name): Add a mouse-face property.
7187
7188 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
7189
7190 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
7191 (prolog-upper-case-string, prolog-lower-case-string)
7192 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
7193 (prolog-use-smie, prolog-smie-grammar): New vars.
7194 (prolog-smie-forward-token, prolog-smie-backward-token)
7195 (prolog-smie-rules): New funs.
7196 (prolog-comment-indent): Remove.
7197 (prolog-mode-variables): Use default comment indentation instead.
7198 Setup SMIE.
7199 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
7200 (prolog-mode): Don't call them any more.
7201 (prolog-electric-colon, prolog-electric-dash)
7202 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
7203
7204 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
7205
7206 * minibuffer.el (completion--twq-all): Again, allow case differences.
7207
7208 * term.el: Move keymap initialization code to be more idiomatic.
7209 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
7210 (term-terminal-menu): Move initialization into declaration.
7211 (term-escape-char): Let the user set it in her .emacs.
7212
7213 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
7214 Provide SMIE-based indentation (not enabled by default yet).
7215 (sh-mode-map): Don't bind electric keys.
7216 Use electric-pair-mode instead of skeleton-pair.
7217 (sh-assignment-regexp): Fit within 80 columns.
7218 (sh-indent-supported): Specify actual shell name instead of boolean.
7219 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
7220 (sh-maybe-here-document): Use it. Make obsolete.
7221 (sh-electric-here-document-mode) New minor mode.
7222 (sh-mode): Use it. Don't set sh-indent-supported-here here.
7223 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
7224 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
7225 (sh-smie-rc-grammar, sh-use-smie): New vars.
7226 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
7227 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
7228 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
7229 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
7230 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
7231 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
7232 (sh-set-shell): Use smie-setup if requested.
7233
7234 * term.el (term-set-escape-char): Properly set term-escape-char.
7235 See http://stackoverflow.com/questions/10524656.
7236
7237 2012-05-10 Chong Yidong <cyd@gnu.org>
7238
7239 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
7240 Use url-generic-parse-url, and handle host names and Windows
7241 filenames properly.
7242 (ffap-url-unwrap-remote): Use url-generic-parse-url.
7243 (ffap-url-unwrap-remote): Accept list values, specifying a list of
7244 URL schemes to work on.
7245 (ffap--toggle-read-only): New function.
7246 (ffap-read-only, ffap-read-only-other-window)
7247 (ffap-read-only-other-frame): Use it.
7248 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
7249 necessary for ffap-url-unwrap-remote.
7250
7251 2012-05-10 Dave Abrahams <dave@boostpro.com>
7252
7253 * cus-start.el (create-lockfiles): Add it.
7254
7255 2012-05-09 Chong Yidong <cyd@gnu.org>
7256
7257 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
7258 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
7259
7260 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7261
7262 * shell.el (shell-completion-vars): Fix last change (bug#11348).
7263
7264 2012-05-09 Chong Yidong <cyd@gnu.org>
7265
7266 * ansi-color.el (ansi-color-process-output): Check for validity of
7267 comint-last-output-start before using it. This avoids a bad
7268 interaction with gdb-mi's input/output buffer.
7269
7270 2012-05-09 Glenn Morris <rgm@gnu.org>
7271
7272 * files.el (dir-locals-read-from-file):
7273 Mention dir-locals in any error message.
7274
7275 2012-05-09 Chong Yidong <cyd@gnu.org>
7276
7277 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
7278 package (Bug#11410).
7279
7280 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
7281 variables into description.
7282
7283 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7284
7285 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
7286 shell-delimiter-argument-list (bug#11348).
7287 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
7288
7289 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
7290
7291 * textmodes/rst.el: Silence byte-compiler warnings.
7292 (rst-re-alist, rst-reset-section-caches): Move around.
7293 (rst-re): Use `characterp', not `char-valid-p'.
7294 (font-lock-beg, font-lock-end): Declare.
7295
7296 * progmodes/idlw-shell.el (specs): Remove reference to deleted
7297 variable `idlwave-shell-activate-alt-keybindings' and simplify.
7298
7299 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
7300
7301 2012-05-08 Glenn Morris <rgm@gnu.org>
7302
7303 * files.el (auto-mode-alist): Treat ".make" like ".mk".
7304
7305 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7306
7307 * vc/log-edit.el: Add GNU coding standards highlighting.
7308 (log-edit-font-lock-gnu-style)
7309 (log-edit-font-lock-gnu-keywords): New vars.
7310 (log-edit-font-lock-keywords): New fun.
7311 (log-edit-mode): Don't fold case in font-lock.
7312 (log-edit-font-lock-keywords): Do not assume case-folding.
7313
7314 * imenu.el: Misc cleanup. Make docstrings out of comments.
7315 Use lexical-binding.
7316 (imenu--index-alist, imenu--last-menubar-index-alist)
7317 (imenu-menubar-modified-tick): Use defvar-local.
7318 (imenu--split-menu): Remove unused var.
7319 (imenu--cleanup-seen): Declare as global.
7320 (imenu--cleanup): Use dolist.
7321
7322 * subr.el (defvar-local): Add debug spec and doc-string position.
7323
7324 2012-05-08 Glenn Morris <rgm@gnu.org>
7325
7326 * language/burmese.el, language/cham.el, language/czech.el:
7327 * language/english.el, language/georgian.el, language/greek.el:
7328 * language/japanese.el, language/khmer.el, language/korean.el:
7329 * language/lao.el, language/misc-lang.el, language/romanian.el:
7330 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
7331 * language/thai.el, language/utf-8-lang.el:
7332 Remove no-byte-compile setting.
7333
7334 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
7335
7336 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7337
7338 * progmodes/make-mode.el (makefile-browse):
7339 Remove unnecessary interactive. (Bug#11324)
7340
7341 2012-05-07 Glenn Morris <rgm@gnu.org>
7342
7343 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
7344
7345 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
7346
7347 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7348
7349 * loadup.el: Preload newcomment.el.
7350 * newcomment.el: Move autoload-only code to toplevel.
7351
7352 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
7353 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
7354 Handle new :right-align column property.
7355 (tabulated-list-print-col): Idem, plus use `display' text-property to
7356 try and preserve alignment for variable pitch fonts.
7357
7358 2012-05-07 Chong Yidong <cyd@gnu.org>
7359
7360 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
7361 (tabulated-list-use-header-line): New var.
7362 (tabulated-list-init-header): Use it.
7363 (tabulated-list-print-fake-header): New function.
7364 (tabulated-list-print): Use it.
7365 (tabulated-list-sort-button-map): Add non-header-line commands.
7366 (tabulated-list-init-header): Add column name property to basic
7367 labels as well.
7368 (tabulated-list-col-sort): Handle non-header-line button case.
7369 (tabulated-list--sort-by-column-name): Fix a corner case.
7370
7371 * buff-menu.el (list-buffers--refresh):
7372 Handle Buffer-menu-use-header-line.
7373
7374 2012-05-06 Chong Yidong <cyd@gnu.org>
7375
7376 * buff-menu.el: Convert to Tabulated List mode.
7377 (Buffer-menu-buffer+size-width): Make obsolete.
7378 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
7379 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
7380 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
7381 documentation into docstring of buffer-menu.
7382 (Buffer-menu-toggle-files-only): Add an informative message.
7383 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
7384 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
7385 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
7386 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
7387 (Buffer-menu-execute, Buffer-menu-select)
7388 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
7389 (Buffer-menu-bury): Use Tabulated List machinery.
7390 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
7391 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
7392 Delete.
7393 (list-buffers--refresh): New function.
7394 (list-buffers-noselect): Use it.
7395 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
7396 (Buffer-menu--pretty-file-name): New helper functions.
7397
7398 * loadup.el: Preload tabulated-list.
7399
7400 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
7401 tabulated-list-sort-column.
7402 (tabulated-list-init-header): Add the initial aligning space even
7403 if tabulated-list-padding is zero.
7404
7405 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
7406
7407 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
7408 whose cdr is not a cons cell correctly (bug#11038).
7409
7410 2012-05-06 Chong Yidong <cyd@gnu.org>
7411
7412 * emacs-lisp/tabulated-list.el (tabulated-list-format):
7413 Accept additional plist in column descriptors.
7414 (tabulated-list-init-header): Obey it.
7415 (tabulated-list-get-entry): New function.
7416 (tabulated-list-put-tag): Use it. Use string-width instead of
7417 length.
7418 (tabulated-list--column-number): New function.
7419 (tabulated-list-print): Use it.
7420 (tabulated-list-print-col): New function.
7421 Set `tabulated-list-column-name' property on each column's text.
7422 (tabulated-list-print-entry): Use it.
7423 (tabulated-list-delete-entry, tabulated-list-set-col):
7424 New functions.
7425 (tabulated-list-sort-column): New command (Bug#11337).
7426
7427 * buff-menu.el (list-buffers): Move C-x C-b binding from
7428 buff-menu.el to bindings.el.
7429
7430 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
7431 :advertised-binding feature.
7432
7433 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
7434
7435 * progmodes/compile.el (compilation-internal-error-properties):
7436 Calculate start position correctly when end-col is set but
7437 end-line is not (Bug#11382).
7438
7439 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
7440
7441 * man.el (Man-unindent): Use text-property-default-nonsticky to
7442 prevent untabify from inheriting face properties (Bug#11408).
7443
7444 2012-05-05 Stefan Merten <smerten@oekonux.de>
7445
7446 * textmodes/rst.el: Major merge with upstream development up to
7447 Docutils SVN r7399 / rst.el V1.2.1.
7448
7449 Clarify maintainership and authors.
7450
7451 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
7452 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
7453 (rst-official-version, rst-official-cvs-rev, rst-version)
7454 (rst-package-emacs-version-alist): New functions and variables
7455 for version information.
7456
7457 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
7458 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
7459 (rst-mode-syntax-table, rst-mode): New and corrected functions
7460 and variables representing reStructuredText features.
7461
7462 (rst-re): New function for reStructuredText regexes. Use in
7463 many places.
7464
7465 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
7466 (rst-mode-map): Rebind keys.
7467
7468 (rst-mode-lazy, rst-font-lock-keywords)
7469 (rst-font-lock-extend-region)
7470 (rst-font-lock-extend-region-internal)
7471 (rst-font-lock-extend-region-extend)
7472 (rst-font-lock-find-unindented-line-limit)
7473 (rst-font-lock-find-unindented-line-match)
7474 (rst-adornment-level, rst-font-lock-adornment-level)
7475 (rst-font-lock-adornment-match)
7476 (rst-font-lock-handle-adornment-pre-match-form)
7477 (rst-font-lock-handle-adornment-matcher): Major revision of
7478 font-locking. Integrate with other code. Use `jit-lock-mode'.
7479
7480 (rst-preferred-adornments, rst-adjust-hook)
7481 (rst-new-adornment-down, rst-preferred-bullets)
7482 (rst-preferred-bullets, rst-indent, rst-indent-width)
7483 (rst-indent-field, rst-indent-literal-normal)
7484 (rst-indent-literal-minimized, rst-indent-comment): Change,
7485 extend and improve customization.
7486
7487 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
7488 (rst-normalize-cursor-position, rst-get-decoration)
7489 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
7490 (rst-rstrip, rst-toc-insert-find-delete-contents)
7491 (rst-shift-fill-region, rst-compute-bullet-tabs)
7492 (rst-debug-print-tabs, rst-debug-mark-found)
7493 (rst-shift-region-guts, rst-shift-region-right)
7494 (rst-shift-region-left, rst-use-char-classes)
7495 (rst-font-lock-keywords-function)
7496 (rst-font-lock-indentation-point)
7497 (rst-font-lock-find-unindented-line-begin)
7498 (rst-font-lock-find-unindented-line-end)
7499 (rst-font-lock-find-unindented-line)
7500 (rst-font-lock-adornment-point, rst-font-lock-level)
7501 (rst-adornment-level-alist): Remove functions and variables.
7502
7503 (rst-compare-adornments, rst-get-adornment-match)
7504 (rst-suggest-new-adornment, rst-get-adornments-around)
7505 (rst-adornment-complete-p, rst-get-next-adornment)
7506 (rst-adjust-adornment, rst-display-adornments-hierarchy)
7507 (rst-straighten-adornments): Standardize function names to
7508 use "adornment" instead of "decoration". Correct callers.
7509 Similar standardizing in many places.
7510
7511 (rst-update-section, rst-adjust, rst-promote-region)
7512 (rst-enumerate-region, rst-bullet-list-region)
7513 (rst-repeat-last-character): Correct use of `interactive'.
7514
7515 (rst-classify-adornment, rst-find-all-adornments)
7516 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
7517 (rst-find-leftmost-column, rst-repeat-last-character):
7518 Refactor functions.
7519
7520 (rst-find-title-line, rst-reset-section-caches)
7521 (rst-get-adornments-around, rst-adjust-adornment-work)
7522 (rst-arabic-to-roman, rst-roman-to-arabic)
7523 (rst-insert-list-pos, rst-insert-list-new-item)
7524 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
7525 New functions.
7526
7527 (rst-all-sections, rst-section-hierarchy)
7528 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
7529 New variables.
7530
7531 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
7532 configuration instead of only buffer. Change where necessary.
7533
7534 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
7535 (rst-shift-region, rst-adaptive-fill): New functions for
7536 indentation and filling.
7537
7538 (rst-comment-line-break, rst-comment-indent)
7539 (rst-comment-insert-comment, rst-comment-region)
7540 (rst-uncomment-region): New functions for handling comments.
7541
7542 (rst-compile): Quote shell arguments.
7543
7544 (rst-compile-pdf-preview, rst-compile-slides-preview):
7545 Delete temporary files after use.
7546
7547 2012-05-05 Glenn Morris <rgm@gnu.org>
7548
7549 * calendar/cal-html.el: Optionally include holidays in the output.
7550 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
7551 (cal-html-holidays): New option.
7552 (cal-html-css-default): Add holiday entry.
7553 (holiday-in-range): Autoload it.
7554 (cal-html-htmlify-entry): Add optional class argument.
7555 (cal-html-htmlify-list): Add optional holidays argument.
7556 (cal-html-insert-agenda-days): Include holidays in the output.
7557 (cal-html-one-month): Maybe include holidays.
7558
7559 * calendar/holidays.el (holiday-in-range):
7560 Move here from cal-tex-list-holidays.
7561 * calendar/cal-tex.el (cal-tex-list-holidays):
7562 Make it an obsolete alias for holiday-in-range. Update all callers.
7563
7564 2012-05-05 Chong Yidong <cyd@gnu.org>
7565
7566 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
7567 Nextstep.
7568
7569 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
7570
7571 * files.el (file-auto-mode-skip): New var.
7572 (set-auto-mode-1): Use it.
7573
7574 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7575
7576 * repeat.el: Use lexical-binding.
7577 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
7578 (repeat-undo-count): Remove.
7579 (repeat):
7580 * progmodes/octave-mod.el (octave-abbrev-start):
7581 * progmodes/f90.el (f90-abbrev-start):
7582 * face-remap.el (text-scale-adjust):
7583 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
7584
7585 * emacs-lisp/pcase.el (pcase--let*): New function.
7586 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
7587 a bit more.
7588 (pcase--split-pred): Be more clever about ruling out overlap between
7589 a predicate and some constant pattern.
7590 (pcase--q1): Use `null' instead of (eq foo nil).
7591
7592 * subr.el (setq-local, defvar-local): New macros.
7593 (kbd): Redefine as an alias.
7594 (with-selected-window): Leave unrelated frames alone.
7595 (set-temporary-overlay-map): New function.
7596
7597 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7598
7599 * subr.el (user-error): New function.
7600 * window.el (switch-to-buffer):
7601 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
7602 (smerge-match-conflict):
7603 * simple.el (previous-matching-history-element)
7604 (next-matching-history-element, goto-history-element, undo-more)
7605 (undo-start):
7606 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
7607 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
7608 (next-file, tags-loop-scan, list-tags, complete-tag):
7609 * progmodes/compile.el (compilation-loop):
7610 * mouse.el (mouse-minibuffer-check):
7611 * man.el (Man-bgproc-sentinel, Man-goto-page):
7612 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
7613 (Info-history-forward, Info-follow-reference, Info-menu)
7614 (Info-extract-menu-item, Info-extract-menu-counting)
7615 (Info-forward-node, Info-backward-node, Info-next-menu-item)
7616 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
7617 (Info-next-reference, Info-prev-reference, Info-index)
7618 (Info-index-next, Info-follow-nearest-node)
7619 (Info-copy-current-node-name):
7620 * imenu.el (imenu--make-index-alist)
7621 (imenu-default-create-index-function, imenu-add-to-menubar):
7622 * files.el (basic-save-buffer, recover-file):
7623 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7624 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
7625 (checkdoc-message-text, checkdoc-defun):
7626 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
7627 * cus-edit.el (customize-changed-options, customize-rogue)
7628 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
7629 (custom-variable-mark-to-reset-standard)
7630 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
7631 (custom-file):
7632 * completion.el (check-completion-length):
7633 * comint.el (comint-search-arg)
7634 (comint-previous-matching-input-string-position)
7635 (comint-previous-matching-input)
7636 (comint-replace-by-expanded-history-before-point, comint-send-input)
7637 (comint-copy-old-input, comint-backward-matching-input)
7638 (comint-goto-process-mark, comint-set-process-mark):
7639 * calendar/calendar.el (calendar-cursor-to-date): Use it.
7640 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
7641
7642 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7643
7644 * dabbrev.el (dabbrev--ignore-case-p): New function.
7645 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
7646 Use it.
7647
7648 * files.el (automount-dir-prefix): Mark as obsolete.
7649
7650 2012-05-04 Glenn Morris <rgm@gnu.org>
7651
7652 * patcomp.el, play/bruce.el: Move to obsolete/.
7653
7654 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
7655
7656 Fix minor Y10k bugs.
7657 * arc-mode.el (archive-unixdate):
7658 * autoinsert.el (auto-insert-alist):
7659 * calc/calc-forms.el (math-this-year):
7660 * emacs-lisp/copyright.el (copyright-current-year)
7661 (copyright-update-year, copyright):
7662 * tar-mode.el (tar-clip-time-string):
7663 * time.el (display-time-update):
7664 Don't assume years have 4 digits.
7665
7666 2012-05-04 Chong Yidong <cyd@gnu.org>
7667
7668 * dos-w32.el (file-name-buffer-file-type-alist)
7669 (direct-print-region-use-command-dot-com):
7670 * ffap.el (ffap-menu-regexp):
7671 * find-file.el (ff-special-constructs):
7672 * follow.el (follow-debug):
7673 * forms.el (forms--debug):
7674 * iswitchb.el (iswitchb-all-frames):
7675 * ido.el (ido-all-frames):
7676 * emacs-lisp/timer.el (timer-max-repeats):
7677 * mail/feedmail.el (feedmail-mail-send-hook)
7678 (feedmail-mail-send-hook-queued):
7679 * mail/footnote.el (footnote-signature-separator):
7680 * mail/mailabbrev.el (mail-alias-separator-string)
7681 (mail-abbrev-mode-regexp):
7682 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
7683 * progmodes/idlwave.el (idlwave-libinfo-file)
7684 (idlwave-default-completion-case-is-down)
7685 (idlwave-library-routines): Convert defvars to defcustoms.
7686
7687 * mail/rmail.el (rmail-decode-mime-charset):
7688 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
7689 (idlwave-shell-fix-inserted-breaks)
7690 (idlwave-shell-activate-alt-keybindings)
7691 (idlwave-shell-use-breakpoint-glyph):
7692 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
7693
7694 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7695
7696 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
7697
7698 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
7699
7700 * progmodes/verilog-mode.el (font-lock-keywords):
7701 Fix mis-highligting auto. Reported by Craig Barner.
7702 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
7703 defines from global name space. Reported by Dan Dever.
7704 (verilog-auto-reset, verilog-auto-reset-widths)
7705 (verilog-auto-tieoff): Support using unbased numbers for
7706 AUTORESET and AUTOTIEOFF.
7707 (verilog-submit-bug-report): Update variable list.
7708 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
7709 parenthesis from not matching. Reported by Michael Rytting.
7710 (verilog-auto-template-lint): Fix hash error when linting modules
7711 with no used templates.
7712 (verilog-warn, verilog-warn-error)
7713 (verilog-warn-fatal): When non-interactive report multiple
7714 warnings before exiting. Suggested by Brad Dobbie.
7715 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
7716 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
7717 to report unused template errors. Reported by Brad Dobbie.
7718 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
7719 nets, bug438. Reported by Vns Blore.
7720 (verilog-auto-inout-module, verilog-auto-reg)
7721 (verilog-read-decls, verilog-read-sub-decls-sig)
7722 (verilog-signals-edit-wire-reg, verilog-signals-with):
7723 Fix passing of Verilog data types in ANSI input/output ports
7724 such as "output logic" into the AUTOs. Special case "wire" and
7725 "reg" for backwards compatibility presuming Verilog 2001.
7726 (verilog-auto-ascii-enum): Add "auto enum" as alias.
7727 (verilog-preprocess): Fix replication of preprocess output.
7728 Reported by Brad Dobbie.
7729 (verilog-auto-inst-interfaced-ports):
7730 Create verilog-auto-inst-interfaced-ports, bug429.
7731 Reported by Julian Gorfajn.
7732 (verilog-after-save-font-hook)
7733 (verilog-before-save-font-hook): New variable.
7734 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
7735 (verilog-save-font-mods): Wrap disabling fontification, reported
7736 by David Rogoff.
7737 (verilog-do-indent, verilog-pretty-declarations-auto)
7738 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
7739 Reported by Pierre-David Pfister.
7740 (verilog-set-auto-endcomments): Fix endtask auto comments outside
7741 of class declarations, bug292. Reported by Kevin Heilman.
7742 (verilog-read-decls): Fix 'parameter type' not appearing in
7743 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
7744 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
7745 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
7746 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
7747 Reported by David Kravitz.
7748
7749 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
7750
7751 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
7752 assignment with tests in ifs and for loops.
7753 (verilog-extended-complete-re, verilog-complete-reg): Change so
7754 that DPI inport functions don't look like fuction declarations.
7755 (verilog-pretty-expr): Don't line up assignment
7756 operations to the test and increment in if and for loops
7757 (verilog-extended-complete-re, verilog-complete-reg): Change so
7758 that DPI inport functions don't look like fuction declarations.
7759
7760 2012-05-03 Kenichi Handa <handa@m17n.org>
7761
7762 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
7763 decoding, and show a warning message without signaling an error
7764 (Bug#11282).
7765
7766 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7767
7768 * emacs-lisp/bytecomp.el
7769 (byte-compile-file-form-custom-declare-variable): Compile all elements,
7770 since cconv.el might have introduced :fun-body, internal-make-closure,
7771 and friends for bytecomp to handle (bug#11391).
7772 * custom.el (defcustom): Avoid ((λ ..) ..).
7773
7774 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
7775
7776 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
7777
7778 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
7779
7780 * notifications.el (dbus-debug):
7781 * term/linux.el (gpm-mouse-enable):
7782 * term/screen.el (xterm-register-default-colors): Declare.
7783
7784 2012-05-02 Chong Yidong <cyd@gnu.org>
7785
7786 * cus-start.el (gc-cons-percentage, exec-suffixes)
7787 (dos-display-scancodes, dos-hyper-key, dos-super-key)
7788 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
7789 (make-cursor-line-fully-visible, void-text-area-pointer)
7790 (font-list-limit): Add customization data.
7791
7792 * allout.el (allout-exposure-change-functions)
7793 (allout-structure-added-functions)
7794 (allout-structure-deleted-functions)
7795 (allout-structure-shifted-functions): Rename abnormal hooks from
7796 *-hook, and convert to defcustoms.
7797 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
7798 Convert to defcustoms.
7799 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
7800
7801 * allout-widgets.el: Hook callers changed.
7802
7803 2012-05-02 Eli Zaretskii <eliz@gnu.org>
7804
7805 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
7806 the yanked message in preference to the default value of
7807 buffer-file-coding-system.
7808
7809 2012-05-02 Martin Rudalics <rudalics@gmx.at>
7810
7811 * window.el (display-buffer--action-function-custom-type):
7812 Fix entry.
7813
7814 2012-05-02 Alan Mackenzie <acm@muc.de>
7815
7816 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
7817
7818 2012-05-01 Glenn Morris <rgm@gnu.org>
7819
7820 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
7821
7822 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
7823
7824 * cus-edit.el (custom-variable-documentation): Simplify with format.
7825
7826 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7827 Stefan Monnier <monnier@iro.umontreal.ca>
7828
7829 * simple.el (suggest-key-bindings, execute-extended-command):
7830 Move from keyboard.c.
7831
7832 2012-05-01 Chong Yidong <cyd@gnu.org>
7833
7834 * follow.el: Eliminate advice.
7835 (set-process-filter, process-filter, sit-for): Advice deleted.
7836 (follow-mode-off-hook): Obsolete hook removed.
7837 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
7838 Vars deleted.
7839 (follow-auto): Use a :set function.
7840 (follow-mode): Rewritten. Don't advise process filters.
7841 (follow-switch-to-current-buffer-all, follow-scroll-up)
7842 (follow-scroll-down): Assume follow-mode is bound.
7843 (follow-comint-scroll-to-bottom)
7844 (follow-align-compilation-windows): New functions.
7845 (follow--window-sorter): New function.
7846 (follow-all-followers): Use it to explicitly sort windows by their
7847 positions; don't make assumptions about next-window order.
7848 (follow-windows-start-end, follow-delete-other-windows-and-split)
7849 (follow-calc-win-start): Doc fix.
7850 (follow-windows-aligned-p, follow-select-if-visible): Don't call
7851 vertical-motion unnecessarily.
7852 (follow-adjust-window): New function.
7853 (follow-post-command-hook): Use it.
7854 (follow-call-set-process-filter, follow-call-process-filter)
7855 (follow-intercept-process-output, follow-tidy-process-filter-alist)
7856 (follow-stop-intercept-process-output, follow-generic-filter):
7857 Functions deleted.
7858 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
7859 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
7860 New functions, replacing advice on scroll-bar-* commands.
7861 (follow-mwheel-scroll): New function (Bug#4112).
7862
7863 * comint.el (comint-adjust-point): New function.
7864 (comint-postoutput-scroll-to-bottom): Use it.
7865 Call follow-comint-scroll-to-bottom for Follow mode buffers.
7866
7867 2012-05-01 Glenn Morris <rgm@gnu.org>
7868
7869 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
7870 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
7871 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
7872 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
7873 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
7874 Remove no-byte-compile setting.
7875
7876 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
7877
7878 * minibuffer.el (completion-table-with-quoting): Fix compatibility
7879 all-completions code to not return a number in the last cdr.
7880
7881 2012-04-30 Leo Liu <sdl.web@gmail.com>
7882
7883 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
7884 read-only error.
7885
7886 2012-04-29 Chong Yidong <cyd@gnu.org>
7887
7888 * follow.el (follow-calc-win-end): Rewrite to handle partial
7889 screen lines correctly (Bug#8390).
7890 (follow-avoid-tail-recenter): Minor cleanup.
7891
7892 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
7893
7894 Avoid the obsolete `assoc' package.
7895 * speedbar.el (speedbar-refresh): Avoid adelete.
7896 (speedbar-file-lists): Simplify and avoid aput.
7897 * man.el (Man--sections, Man--refpages): New vars, replacing
7898 Man-sections-alist and Man-refpages-alist.
7899 (Man-build-section-alist, Man-build-references-alist):
7900 Use them; avoid aput.
7901 (Man--last-section, Man--last-refpage): New vars.
7902 (Man-follow-manual-reference): Use them.
7903 Use the `default' arg of completing-read.
7904 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
7905
7906 2012-04-27 Chong Yidong <cyd@gnu.org>
7907
7908 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
7909
7910 * startup.el (x-apply-session-resources): New function.
7911
7912 * term/ns-win.el (ns-initialize-window-system):
7913 * term/w32-win.el (w32-initialize-window-system):
7914 * term/x-win.el (x-initialize-window-system): Use it to properly
7915 set menu-bar-mode and other vars from X resources, even if the
7916 initial frame is not a window-system frame (Bug#2299).
7917
7918 * subr.el (read-key): Avoid running filter function when setting
7919 up temporary tool bar entries (Bug#9922).
7920
7921 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
7922
7923 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
7924 (Bug#11344)
7925
7926 2012-04-27 Chong Yidong <cyd@gnu.org>
7927
7928 * select.el (xselect--encode-string): New function, split from
7929 xselect-convert-to-string.
7930 (xselect-convert-to-string): Use it.
7931 (xselect-convert-to-filename, xselect-convert-to-os)
7932 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
7933 returned strings are properly encoded (Bug#11315).
7934
7935 2012-04-27 Chong Yidong <cyd@gnu.org>
7936
7937 * simple.el (delete-active-region): Move to killing custom group.
7938
7939 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
7940
7941 * progmodes/which-func.el (which-func-current): Quote %
7942 characters for mode-line processing.
7943
7944 2012-04-27 Chong Yidong <cyd@gnu.org>
7945
7946 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
7947 reaching eob (Bug#11286).
7948
7949 2012-04-27 Eli Zaretskii <eliz@gnu.org>
7950
7951 * progmodes/gdb-mi.el (gdb-control-level): New variable.
7952 (gdb): Make it buffer-local and init to zero.
7953 (gdb-control-commands-regexp): New variable.
7954 (gdb-send): Don't wrap in "-interpreter-exec console" if
7955 gdb-control-level is positive. Increment gdb-control-level
7956 whenever the command matches gdb-control-commands-regexp, and
7957 decrement it each time the command is "end". (Bug#11279)
7958
7959 2012-04-27 Martin Rudalics <rudalics@gmx.at>
7960
7961 * window.el (adjust-window-trailing-edge, enlarge-window)
7962 (shrink-window, window-resize):
7963 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
7964 windows (Bug#11276).
7965
7966 2012-04-27 Chong Yidong <cyd@gnu.org>
7967
7968 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
7969 fix "missing prefix" warning. All callers changed.
7970
7971 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
7972
7973 * emacs-lisp/assoc.el: Move to obsolete/.
7974
7975 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
7976
7977 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
7978
7979 * term/ns-win.el (ns-define-service):
7980 * progmodes/pascal.el (pascal-goto-defun):
7981 * progmodes/js.el (js--read-tab):
7982 * progmodes/etags.el (tags-lazy-completion-table):
7983 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
7984 * emacs-lisp/ewoc.el (ewoc--wrap):
7985 * emacs-lisp/assoc.el (aput, adelete, amake):
7986 * doc-view.el (doc-view-convert-current-doc):
7987 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
7988
7989 2012-04-26 Chong Yidong <cyd@gnu.org>
7990
7991 * image.el (image-type-from-buffer): Only return supported image
7992 type (Bug#9045).
7993
7994 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
7995 value, for symmetry with diff-end-of-hunk.
7996 (diff-split-hunk, diff-find-source-location)
7997 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
7998 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
7999 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
8000 compute the relevant hunk or file properly (Bug#6005).
8001 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
8002
8003 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8004
8005 * vc/vc-mtn.el:
8006 * vc/vc-hg.el:
8007 * vc/vc-git.el:
8008 * vc/vc-dir.el:
8009 * vc/vc-cvs.el:
8010 * vc/vc-bzr.el:
8011 * vc/vc-arch.el:
8012 * vc/vc.el: Replace lexical-let by lexical-binding.
8013 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
8014 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
8015 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
8016
8017 2012-04-26 Chong Yidong <cyd@gnu.org>
8018
8019 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
8020 (diff-mode-shared-map): Bind it to / and [remap undo].
8021
8022 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
8023 (ediff-window-setup-function): Use it as the default, to set up
8024 windows based on whether the current frame is graphical (Bug#2138).
8025 (ediff-choose-window-setup-function-automatically): Make obsolete.
8026
8027 * vc/ediff-init.el: Always define ediff-pixel-width/height.
8028
8029 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8030
8031 * ffap.el: Remove old code for obsolete package.
8032 (ffap-complete-as-file-p): Remove.
8033
8034 Use completion-table-with-quoting for comint and pcomplete.
8035 * comint.el (comint--unquote&requote-argument)
8036 (comint--unquote-argument, comint--requote-argument): New functions.
8037 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
8038 (comint-quote-filename): Use regexp-opt-charset.
8039 (comint--common-suffix, comint--common-quoted-suffix)
8040 (comint--table-subvert): Remove.
8041 (comint-unquote-function, comint-requote-function): New vars.
8042 (comint--complete-file-name-data): Use them with
8043 completion-table-with-quoting.
8044 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
8045 * pcomplete.el (pcomplete-arg-quote-list)
8046 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
8047 (pcomplete-unquote-argument-function): Default to non-nil.
8048 (pcomplete-unquote-argument): Simplify.
8049 (pcomplete--common-quoted-suffix): Remove.
8050 (pcomplete-requote-argument-function): New var.
8051 (pcomplete--common-suffix): New function.
8052 (pcomplete-completions-at-point): Use completion-table-with-quoting
8053 and completion-table-subvert.
8054
8055 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
8056 (minibuffer--double-dollars): Preserve properties.
8057 (completion--sifn-requote): New function.
8058 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
8059
8060 * minibuffer.el: Add support for completion of quoted/escaped data.
8061 (completion-table-with-quoting, completion-table-subvert): New funs.
8062 (completion--twq-try, completion--twq-all): New functions.
8063 (completion--nth-completion): New function.
8064 (completion-try-completion, completion-all-completions): Use it.
8065
8066 2012-04-25 Leo Liu <sdl.web@gmail.com>
8067
8068 * progmodes/python.el (python-pdbtrack-get-source-buffer):
8069 Use compilation-message if available to find real filename.
8070
8071 2012-04-25 Chong Yidong <cyd@gnu.org>
8072
8073 * vc/diff-mode.el (diff-setup-whitespace): New function.
8074 (diff-mode): Use it.
8075
8076 * vc/diff.el (diff-sentinel):
8077 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
8078 Whitespace mode variables based on diff style (Bug#8612).
8079
8080 2012-04-25 Leo Liu <sdl.web@gmail.com>
8081
8082 * progmodes/python.el (python-send-region): Add suffix .py to the
8083 temp file.
8084
8085 * files.el (auto-mode-alist): Use javascript-mode instead.
8086
8087 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
8088
8089 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
8090
8091 * net/soap-client.el (soap-resolve-references-for-sequence-type)
8092 (soap-resolve-references-for-array-type): Hack to prevent self
8093 references, see Bug#9.
8094 (soap-parse-envelope): Report the contents of the 'detail' node
8095 when receiving a fault reply.
8096 (soap-parse-envelope): Report the contents of the entire 'detail' node.
8097
8098 * net/soap-inspect.el (soap-sample-value-for-simple-type)
8099 (soap-inspect-simple-type): New function.
8100
8101 * net/soap-client.el (soap-simple-type): New struct.
8102 (soap-default-xsd-types, soap-default-soapenc-types)
8103 (soap-decode-basic-type, soap-encode-basic-type):
8104 support unsignedInt and double basic types.
8105 (soap-resolve-references-for-simple-type)
8106 (soap-parse-simple-type, soap-encode-simple-type): New function.
8107 (soap-parse-schema): Parse xsd:simpleType declarations.
8108
8109 * net/soap-client.el (soap-default-xsd-types)
8110 (soap-default-soapenc-types): Add integer, byte and anyURI types.
8111 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
8112 the local name of "soapenc:Array".
8113 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
8114 decoding integer, byte and anyURI xsd types.
8115
8116 2012-04-25 Chong Yidong <cyd@gnu.org>
8117
8118 * cus-edit.el (custom-buffer-create-internal): Update header text.
8119
8120 2012-04-25 Eli Zaretskii <eliz@gnu.org>
8121
8122 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
8123 settings on 'system-type', not on 'window-system'. On MS-Windows,
8124 set interactive-mode on in GDB.
8125
8126 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8127
8128 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
8129 (ruby-syntax-propertize-regexp): Remove.
8130 (ruby-syntax-propertize-function): Split regexp into chunks.
8131 Match following code directly.
8132
8133 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
8134
8135 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
8136 (ruby-syntax-propertize-regexp): New function.
8137 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
8138 by a special keyword.
8139
8140 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
8141 (ruby-syntax-general-delimiters-goto-beg)
8142 (ruby-syntax-propertize-general-delimiters): New functions.
8143 (ruby-syntax-propertize-function): Use them to handle GDL.
8144 (ruby-font-lock-keywords): Move old handling of GDL...
8145 (ruby-font-lock-syntactic-keywords): .. to here.
8146 (ruby-calculate-indent): Adjust indentation for GDL.
8147
8148 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
8149
8150 * notifications.el (top): Remove unneeded declarations.
8151 (notifications-specification-version): Change to "1.2".
8152 (notifications-interface, notifications-notify-method)
8153 (notifications-close-notification-method): Fix docstring.
8154 (notifications-get-capabilities-method): New defconst.
8155 (notifications-notify): Add :action-items, :resident and
8156 :transient hints. Change "image_data" to "image-data" and
8157 "image_path" to "image-path".
8158 (notifications-get-capabilities): New defun.
8159
8160 2012-04-24 Leo Liu <sdl.web@gmail.com>
8161
8162 * progmodes/python.el: Move hideshow setup to the end.
8163
8164 2012-04-24 Martin Rudalics <rudalics@gmx.at>
8165
8166 * window.el (handle-select-window): Clear echo area since this is
8167 no more done by read_char (Bug#11304).
8168
8169 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8170
8171 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
8172 and `/ M' to filter-derived-mode.
8173 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
8174 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
8175 (ibuffer-mark-by-mode): Use default rather than initial-input.
8176 (ibuffer-filter-by-derived-mode): Autoload and require-match.
8177
8178 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
8179
8180 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
8181 (ibuffer-filter-by-derived-mode): New filter.
8182 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
8183
8184 2012-04-23 Andreas Politz <politza@fh-trier.de>
8185
8186 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
8187
8188 2012-04-23 Chong Yidong <cyd@gnu.org>
8189
8190 * cus-edit.el (customize-apropos, customize-apropos-options):
8191 Disable matching of non-option variables (Bug#11176).
8192 (customize-option, customize-option-other-window)
8193 (customize-changed-options): Doc fix.
8194 (customize-apropos-options, customize-apropos-faces)
8195 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
8196
8197 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
8198 Fix word list splitting (Bug#11132).
8199 (apropos-symbol, apropos-keybinding, apropos-label)
8200 (apropos-property, apropos-function-button)
8201 (apropos-variable-button, apropos-misc-button): New faces.
8202 (apropos-symbol-face, apropos-keybinding-face)
8203 (apropos-label-face, apropos-property-face, apropos-match-face):
8204 Variables removed (Bug#8396).
8205 (apropos-library-button, apropos-format-plist, apropos-print)
8206 (apropos-print-doc, apropos-describe-plist): Callers changed.
8207
8208 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
8209
8210 * net/xesam.el (xesam-mode-map): Use let-bound map in
8211 initialization. (Bug#11292)
8212
8213 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8214
8215 Preserve ispell session localwords when switching back to
8216 original buffer.
8217
8218 * textmodes/ispell.el (ispell-buffer-session-localwords):
8219 New buffer-local variable to hold buffer session localwords.
8220 (ispell-kill-ispell): Add option 'clear to delete session
8221 localwords.
8222 (ispell-command-loop, ispell-change-dictionary)
8223 (ispell-buffer-local-words): Preserve session localwords when
8224 needed.
8225
8226 * textmodes/flyspell.el (flyspell-process-localwords)
8227 (flyspell-do-correct): Preserve session localwords when needed.
8228
8229 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8230
8231 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
8232 using obsolete `translation-table-for-input'.
8233 (ispell-word, ispell-process-line, ispell-complete-word):
8234 Use plain `insert' instead of removed `ispell-insert-word'.
8235
8236 2012-04-22 Chong Yidong <cyd@gnu.org>
8237
8238 * cus-edit.el (custom-variable-menu)
8239 (custom-variable-reset-saved, custom-face-menu)
8240 (custom-face-reset-saved): If there is no saved value, make the
8241 "reset-saved" operation bring back the default (Bug#9509).
8242 (custom-face-state): Properly detect themed faces.
8243
8244 * faces.el (face-spec-set): Stop supporting deprecated form of
8245 third arg.
8246
8247 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
8248
8249 Move functions from C to Lisp. Make non-blocking method calls
8250 the default. Implement further D-Bus standard interfaces.
8251
8252 * net/dbus.el (dbus-message-internal): Declare function.
8253 Remove unneeded function declarations.
8254 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
8255 (dbus-message-type-method-return, dbus-message-type-error)
8256 (dbus-message-type-signal): Declare variables. Remove local
8257 definitions.
8258 (dbus-interface-dbus, dbus-interface-peer)
8259 (dbus-interface-introspectable, dbus-interface-properties)
8260 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
8261 Adapt docstring.
8262 (dbus-interface-objectmanager): New defconst.
8263 (dbus-call-method, dbus-call-method-asynchronously)
8264 (dbus-send-signal, dbus-method-return-internal)
8265 (dbus-method-error-internal, dbus-register-service)
8266 (dbus-register-signal, dbus-register-method): New defuns, moved
8267 from dbusbind.c
8268 (dbus-call-method-handler, dbus-setenv)
8269 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
8270 New defuns.
8271 (dbus-call-method-non-blocking): Make it an obsolete function.
8272 (dbus-unregister-object, dbus-unregister-service)
8273 (dbus-handle-event, dbus-register-property)
8274 (dbus-property-handler): Obey the new structure of
8275 `bus-registered-objects'.
8276 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
8277 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
8278 Use `dbus-call-method'.
8279
8280 2012-04-22 Chong Yidong <cyd@gnu.org>
8281
8282 * cus-edit.el (custom-commands, custom-reset-menu)
8283 (Custom-reset-standard): Tweak labels.
8284 (custom-reset-button-menu): Change default to t.
8285 (custom-buffer-create-internal): For the custom-reset-button-menu
8286 case, put the revert button first.
8287 (custom-group-subtitle): New face.
8288 (custom-group-value-create): Align docstring to a specific column.
8289
8290 * wid-edit.el (widget-documentation-link-add): Don't handle
8291 indentation in this function.
8292 (widget-documentation-string-indent-to): New function.
8293 (widget-documentation-string-value-create): Use it.
8294
8295 * autorevert.el (auto-revert):
8296 * epg-config.el (epg):
8297 * ibuffer.el (ibuffer):
8298 * mpc.el (mpc):
8299 * ses.el (ses):
8300 * eshell/eshell.el (eshell):
8301 * net/ange-ftp.el (ange-ftp):
8302 * progmodes/ebnf2ps.el (postscript):
8303 * progmodes/flymake.el (flymake):
8304 * progmodes/prolog.el (prolog):
8305 * progmodes/verilog-mode.el (verilog-mode):
8306 * progmodes/which-func.el (which-func):
8307 * term/xterm.el (xterm):
8308 * textmodes/picture.el (picture):
8309 * textmodes/tildify.el (tildify):
8310 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
8311 customization buffers.
8312
8313 2012-04-22 Alan Mackenzie <acm@muc.de>
8314
8315 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
8316 Adding a ) can hide the resulting (..) from searches. Fix it.
8317 Bound the backward search to the position of the existing (.
8318
8319 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
8320
8321 * progmodes/verilog-mode.el (verilog-mode): Check whether
8322 which-func-modes is t before adding verilog-mode.
8323 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
8324
8325 2012-04-21 Leo Liu <sdl.web@gmail.com>
8326
8327 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
8328
8329 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
8330
8331 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
8332 filling of the last column of a table (Bug#5635).
8333 (woman-find-next-control-line): New arg, specifying an additional
8334 regexp component for the control line.
8335 (woman2-roff-buffer): Use it.
8336 (woman-break-table): New function.
8337 (woman2-TS): Use it.
8338
8339 2012-04-21 Chong Yidong <cyd@gnu.org>
8340
8341 * woman.el (woman-set-buffer-display-table, woman-decode-region)
8342 (woman-horizontal-escapes, woman-negative-vertical-space)
8343 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
8344 (WoMan-warn-ignored): Use ?\s instead of ?\ .
8345
8346 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8347
8348 * minibuffer.el (completion-file-name-table): Complete user names.
8349
8350 2012-04-20 Leo Liu <sdl.web@gmail.com>
8351
8352 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
8353 and pcase-let*.
8354
8355 2012-04-20 Chong Yidong <cyd@gnu.org>
8356
8357 * server.el (server-execute): Respect initial-buffer-choice if it
8358 is a string and there are no files to open (Bug#2825).
8359 (server-create-window-system-frame, server-create-tty-frame):
8360 Don't switch buffers here.
8361 (server-process-filter): Only try to open a window system frame if
8362 compiled with graphical support (Bug#8314).
8363
8364 2012-04-20 Dan Nicolaescu <dann@gnu.org>
8365
8366 * battery.el (battery-echo-area-format): Display remaining time
8367 for sysfs backend too (Bug#11269).
8368 (battery-linux-sysfs): Fix conditional for the charge.
8369
8370 2012-04-20 Chong Yidong <cyd@gnu.org>
8371
8372 * progmodes/gdb-mi.el (gdb): Revert previous change.
8373 (gdb-inferior-io--init-proc): New function.
8374 (gdb-init-1): Use it.
8375 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
8376 responsible for allocating a new pty and hooking it to gdb when
8377 the old pty gets an EIO due to process exit.
8378 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
8379 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
8380 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
8381
8382 2012-04-20 Eli Zaretskii <eliz@gnu.org>
8383
8384 * window.el (window-min-size, window-sizable, window-min-delta)
8385 (window-max-delta, window--resizable, window-resizable)
8386 (window-total-size, window-full-height-p, window-full-width-p)
8387 (window-in-direction, window--resize-mini-window, window-resize)
8388 (window--resize-child-windows-normal)
8389 (window--resize-child-windows, window--resize-siblings)
8390 (window--resize-this-window, adjust-window-trailing-edge)
8391 (enlarge-window, shrink-window): Doc fixes.
8392
8393 2012-04-20 Chong Yidong <cyd@gnu.org>
8394
8395 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
8396 New function to call delete-process on the gdb-inferior buffer's pty.
8397 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
8398 pty process (Bug#11273).
8399 (gdb-update): New arg to suppress talking to the gdb process.
8400 (gdb-done-or-error): Use it.
8401 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
8402 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
8403 sentinel not being called.
8404
8405 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
8406
8407 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
8408
8409 2012-04-20 Glenn Morris <rgm@gnu.org>
8410
8411 * net/network-stream.el (open-network-stream): Doc fix.
8412
8413 2012-04-20 Chong Yidong <cyd@gnu.org>
8414
8415 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
8416
8417 2012-04-20 Alan Mackenzie <acm@muc.de>
8418
8419 Ensure searching for keywords is case sensitive.
8420
8421 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
8422 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
8423 (c-defun-name, c-mark-function, c-cpp-define-name)
8424 (c-comment-indent, c-scan-conditionals, c-indent-defun)
8425 (c-context-line-break): Bind case-fold-search to nil.
8426
8427 * progmodes/cc-mode.el (c-font-lock-fontify-region):
8428 Bind case-fold-search to nil.
8429
8430 2012-04-20 Chong Yidong <cyd@gnu.org>
8431
8432 * mail/sendmail.el (mail-bury): Call return action with the right
8433 Rmail buffer (Bug#11242).
8434
8435 * server.el (server-process-filter): Handle corner case where both
8436 tty and nowait options are present (Bug#11102).
8437
8438 2012-04-20 Eli Zaretskii <eliz@gnu.org>
8439
8440 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
8441 (top level): Put into the executable the ident-style '$Id:' tag on
8442 windows-nt as well.
8443
8444 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
8445
8446 * electric.el (electric-indent-post-self-insert-function): Check that
8447 electric-indent-mode is enabled in current buffer.
8448
8449 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
8450
8451 * imenu.el (imenu-progress-message): Restore; it is "used" in
8452 erc/erc-imenu.el and net/snmp-mode.el.
8453
8454 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
8455
8456 * avoid.el (mouse-avoidance-mode): Mark unused arg.
8457 (mouse-avoidance-nudge-mouse): Remove unused binding.
8458
8459 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
8460
8461 * descr-text.el (describe-char):
8462 * progmodes/python.el (python-describe-symbol):
8463 Don't call `toggle-read-only', set `buffer-read-only'.
8464
8465 * imenu.el (imenu-default-goto-function): Mark unused args.
8466 (imenu-progress-message): Remove obsolete macro; all callers changed.
8467
8468 * subr.el (keymap-canonicalize): Remove unused binding.
8469 (read-passwd): Mark unused arg.
8470
8471 * tutorial.el (tutorial--display-changes): Remove unused binding.
8472 (tutorial--save-tutorial-to): Remove unused variable.
8473
8474 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
8475 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
8476 (package-generate-autoloads, package-menu--generate)
8477 (package-menu--find-upgrades): Remove unused bindings.
8478
8479 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
8480 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
8481 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
8482 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
8483 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
8484 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
8485 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
8486 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
8487 (cua-delete-char-rectangle): Mark unused args.
8488 (cua-align-rectangle): Remove unused binding.
8489
8490 * mail/rmail.el (compilation--message->loc)
8491 (epa--find-coding-system-for-mime-charset): Declare.
8492
8493 * net/dbus.el (dbus-register-service): Declare.
8494 (dbus-name-owner-changed-handler): Remove unused binding.
8495
8496 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
8497 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
8498 (nxml-scan-backward-within): Mark unused arg.
8499 (nxml-dynamic-markup-word): Remove unused binding.
8500
8501 * mouse.el (mouse-menu-major-mode-map):
8502 * emacs-lisp/authors.el (authors-scan-change-log)
8503 (authors-add-to-author-list):
8504 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
8505 * emacs-lisp/smie.el (smie-auto-fill):
8506 * mail/sendmail.el (mail-bury):
8507 * mail/unrmail.el (unrmail):
8508 * net/tls.el (open-tls-stream):
8509 * textmodes/picture.el (picture-mouse-set-point):
8510 Remove unused bindings.
8511
8512 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
8513
8514 * net/tramp.el (tramp-action-password): Let-bind
8515 `enable-recursive-minibuffers' to t.
8516
8517 2012-04-18 Sam Steingold <sds@gnu.org>
8518
8519 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
8520 instead of 'string to accommodate values like [f11].
8521 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
8522 * progmodes/gdb-mi.el: Likewise.
8523
8524 2012-04-18 Leo Liu <sdl.web@gmail.com>
8525
8526 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
8527 current buffer.
8528 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
8529 LOCAL is nil.
8530
8531 2012-04-18 Chong Yidong <cyd@gnu.org>
8532
8533 * simple.el (line-move): Use forward-line if in batch mode
8534 (Bug#11053).
8535
8536 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
8537
8538 * files.el (after-find-file): Do not try to add a final newline if
8539 the buffer is read-only (Bug#11156).
8540
8541 2012-04-17 Richard Stallman <rms@gnu.org>
8542
8543 * mail/rmail.el (rmail-start-mail):
8544 Pass (rmail-mail-return...) for the return-action.
8545 Pass (rmail-yank-current-message...) for the yank-action.
8546 (rmail-yank-current-message): New function.
8547 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
8548 (rmail-reply): Likewise.
8549 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
8550
8551 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
8552 buffer, not the last. Reject temp buffers. Use the rmail-mode
8553 buffer, not newbuf.
8554
8555 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
8556
8557 * server.el (server-ensure-safe-dir): Simplify.
8558
8559 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8560
8561 * emacs-lisp/smie.el: Provide smarter auto-filling.
8562 (smie-auto-fill): New function.
8563 (smie-setup): Use it.
8564
8565 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
8566
8567 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
8568
8569 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
8570 (comment-indent): Use it.
8571
8572 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
8573
8574 * ses.el: The overall change is to add cell renaming, that is
8575 setting fancy names for cell symbols other than name matching
8576 "\\`[A-Z]+[0-9]+\\'" regexp .
8577 (ses-localvars): Add ses--renamed-cell-symb-list.
8578 (ses-create-cell-variable): New defun.
8579 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
8580 (ses-relocate-formula): Relocate formulas only for cells the
8581 symbols of which are not renamed, i.e. symbols whose names do not
8582 match regexp "\\`[A-Z]+[0-9]+\\'".
8583 (ses-relocate-all): Relocate values only for cells the symbols of
8584 which are not renamed.
8585 (ses-load): Create cells variables as the (ses-cell ...) are read,
8586 in order to check row col consistency with cell symbol name only
8587 for cells that are not renamed.
8588 (ses-replace-name-in-formula): New defun.
8589 (ses-rename-cell): New defun.
8590
8591 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
8592
8593 * progmodes/perl-mode.el (perl-indent-parens-as-block):
8594 New option (bug#11118).
8595 (perl-calculate-indent): Respect it.
8596
8597 2012-04-17 Glenn Morris <rgm@gnu.org>
8598
8599 * dired-aux.el (dired-mark-read-string): Doc fix.
8600
8601 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
8602
8603 * dired-aux.el (dired-mark-read-string): Offer optional completion.
8604 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
8605
8606 2012-04-17 Glenn Morris <rgm@gnu.org>
8607
8608 * mouse.el (mouse-drag-track):
8609 * speedbar.el (speedbar-frame-mode):
8610 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
8611
8612 2012-04-16 Leo Liu <sdl.web@gmail.com>
8613
8614 * progmodes/python.el: Trivial cleanup.
8615
8616 2012-04-16 Glenn Morris <rgm@gnu.org>
8617
8618 * vc/vc.el (vc-string-prefix-p):
8619 * vc/pcvs-util.el (cvs-string-prefix-p):
8620 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
8621 * mpc.el (mpc-string-prefix-p):
8622 Make all of these into obsolete aliases for string-prefix-p.
8623 Update callers.
8624 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
8625
8626 * textmodes/two-column.el: Move custom options to the start.
8627 (frame-width): Remove compat definition.
8628 (2C-associate-buffer, 2C-dissociate):
8629 Use with-current-buffer rather than save-excursion.
8630 (2C-dissociate): Force a mode-line update.
8631 (2C-autoscroll): Use ignore-errors.
8632
8633 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
8634 Autoload trivia.
8635
8636 * emacs-lisp/cl-extra.el (*random-state*):
8637 Remove unnecessary declaration.
8638
8639 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
8640
8641 * play/cookie1.el (cookie-snarf):
8642 Give an explicit error if input file cannot be read.
8643
8644 * play/yow.el (yow-file): Use expand-file-name rather than concat.
8645
8646 * progmodes/perl-mode.el (c-macro-expand):
8647 Remove unnecessary autoload (it is in loaddefs.el).
8648
8649 * textmodes/picture.el (picture-desired-column)
8650 (picture-update-desired-column): Convert comments to doc-strings.
8651 (picture-substitute): Remove function.
8652 (picture-mode-map): Initialize in the defvar.
8653
8654 * woman.el: Remove eval-after-load for tar-mode.
8655 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
8656 (woman-tar-extract-file): Autoload it.
8657
8658 * frame.el (automatic-hscrolling): Make this alias obsolete.
8659
8660 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8661
8662 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
8663 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
8664 (ispell-dictionary-base-alist): Revert to original XEmacs
8665 friendly version for default. [:alpha:] will be added in
8666 `ispell-set-spellchecker-params' if needed.
8667
8668 2012-04-16 Chong Yidong <cyd@gnu.org>
8669
8670 * image.el (imagemagick--file-regexp): New variable.
8671 (imagemagick-register-types): Use it.
8672 (imagemagick-types-inhibit): Add :set function. Allow new value
8673 of t to inhibit all types.
8674
8675 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
8676 so we can preload it.
8677
8678 * loadup.el (fboundp): Preload regexp-opt, needed by
8679 imagemagick-register-types.
8680
8681 2012-04-15 Chong Yidong <cyd@gnu.org>
8682
8683 * frame.el (scrolling): Remove nearly unused customization group.
8684
8685 * scroll-all.el (scroll-all-mode): Move to windows group.
8686
8687 2012-04-15 Chong Yidong <cyd@gnu.org>
8688
8689 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
8690
8691 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8692
8693 Avoid the use of ((lambda ...) ...) in lexical-binding code.
8694 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
8695
8696 2012-04-15 Glenn Morris <rgm@gnu.org>
8697
8698 * simple.el (process-file-side-effects): Doc fix.
8699
8700 2012-04-15 Glenn Morris <rgm@gnu.org>
8701
8702 * international/mule-cmds.el (set-language-environment): Doc fix.
8703
8704 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
8705
8706 * server.el (server-auth-key, server-generate-key): Doc fixes.
8707 (server-get-auth-key): Doc fix. Use `string-match-p'.
8708 (server-start): Reflow docstring.
8709
8710 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
8711
8712 * server.el (server-generate-key): `called-interactively-p'
8713 requires a parameter.
8714
8715 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
8716
8717 * server.el (server-auth-key): New variable.
8718 (server-generate-key, server-get-auth-key): New function.
8719 (server-start): Use the new variable and functions to allow
8720 setting a permanent server key (bug#9423).
8721
8722 2012-04-14 Leo Liu <sdl.web@gmail.com>
8723
8724 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
8725
8726 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
8727
8728 Spelling fixes.
8729 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
8730 Emacs uses American spelling.
8731
8732 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
8733
8734 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
8735 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
8736 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
8737 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
8738
8739 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8740
8741 * progmodes/which-func.el (which-func-modes): Change default.
8742
8743 2012-04-14 Kim F. Storm <storm@cua.dk>
8744
8745 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
8746 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
8747
8748 2012-04-14 Chong Yidong <cyd@gnu.org>
8749
8750 * custom.el (custom-theme-set-variables): Doc fix.
8751
8752 2012-04-14 Glenn Morris <rgm@gnu.org>
8753
8754 * international/mule.el (set-auto-coding-for-load): Doc fix.
8755
8756 2012-04-14 Alan Mackenzie <acm@muc.de>
8757
8758 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
8759 imenu work again for Objective C Mode. Correct the *-index values,
8760 these having been disturbed by a previous change in 2011-08.
8761
8762 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
8763 Correct two search limits.
8764
8765 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8766
8767 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
8768
8769 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
8770
8771 * international/characters.el: Fix sorting.
8772
8773 2012-04-14 Eli Zaretskii <eliz@gnu.org>
8774
8775 * international/characters.el: Add more missing Latin case pairs.
8776
8777 2012-04-14 Glenn Morris <rgm@gnu.org>
8778
8779 * files.el (dir-locals-set-class-variables): Doc fix.
8780
8781 2012-04-14 Eli Zaretskii <eliz@gnu.org>
8782
8783 * international/characters.el: Add set-case-syntax-pair call for
8784 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
8785 counterpart. (Bug#11209)
8786
8787 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
8788
8789 2012-04-14 Glenn Morris <rgm@gnu.org>
8790
8791 * calendar/holidays.el (calendar-check-holidays): Doc fix.
8792
8793 2012-04-14 Eli Zaretskii <eliz@gnu.org>
8794
8795 * textmodes/ispell.el (ispell-dictionary-base-alist):
8796 Add data for Hebrew.
8797
8798 2012-04-14 Chong Yidong <cyd@gnu.org>
8799
8800 * net/rcirc.el (rcirc-cmd-quit):
8801 Revert 2012-03-18 change (Bug#11192).
8802
8803 2012-04-14 Glenn Morris <rgm@gnu.org>
8804
8805 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
8806
8807 2012-04-14 Eli Zaretskii <eliz@gnu.org>
8808
8809 * minibuffer.el (completion-in-region-mode-map):
8810 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
8811
8812 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
8813
8814 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
8815
8816 2012-04-13 Masatake YAMATO <yamato@redhat.com>
8817
8818 * minibuffer.el (minibuffer-local-filename-syntax): New variable
8819 to allow `C-M-f' and `C-M-b' to move to the nearest path
8820 separator (bug#9511).
8821
8822 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
8823
8824 * avoid.el: Require cl when compiling. And also move the
8825 `provide' to the end.
8826
8827 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8828
8829 * avoid.el (mouse-avoidance-banish-position): New variable.
8830 (mouse-avoidance-banish-destination): Use it (bug#10165).
8831
8832 2012-04-13 Leo Liu <sdl.web@gmail.com>
8833
8834 * progmodes/which-func.el (which-func-modes): Add objc-mode.
8835
8836 2012-04-13 Ken Brown <kbrown@cornell.edu>
8837
8838 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
8839 this is no longer needed now that cygstart understands file:// URLs.
8840 (browse-url-filename-alist): For the same reason, don't modify
8841 file:// URLs on Cygwin.
8842
8843 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
8844
8845 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
8846 the region on shift if the binding is already shifted (bug#11221).
8847
8848 2012-04-12 Glenn Morris <rgm@gnu.org>
8849
8850 * mail/mailpost.el: Move to obsolete/.
8851
8852 2012-04-12 Drew Adams <drew.adams@oracle.com>
8853
8854 * imenu.el (imenu--generic-function): Ignore invisible definitions
8855 (bug#10123).
8856
8857 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
8858
8859 * hexl.el (hexl-bits): New variable.
8860 (hexl-options): Mention the variable in the doc string.
8861 (hexl-rulerise, hexl-line-displen): New functions.
8862 (hexl-mode): Mention the new variable.
8863 (hexl-mode, hexl-current-address, hexl-current-address):
8864 Use the displen.
8865 (hexl-ascii-start-column): New function.
8866 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
8867 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
8868
8869 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8870
8871 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
8872 '("-i" ENCODING), in 2 separate command-line arguments, to specify
8873 the encoding, as expected by hunspell.
8874
8875 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
8876
8877 * battery.el (battery--linux-sysfs-regexp): New const.
8878 (battery-status-function): Use it. Remove yeeloong special case.
8879 (battery-yeeloong-sysfs): Remove.
8880 (battery-echo-area-format): Remove yeeloong special case.
8881
8882 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
8883
8884 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
8885 Reported by Noah Friedman.
8886
8887 * subr.el (read-passwd): Use read-string.
8888
8889 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
8890
8891 * vcursor.el (vcursor-move): Increase the priority of the overlay
8892 (bug#9663).
8893
8894 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
8895
8896 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
8897 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
8898
8899 2012-04-11 William Stevenson <yhvh2000@gmail.com>
8900
8901 * textmodes/artist.el (artist-mode): Convert artist-mode to use
8902 define-minor-mode (bug#10760).
8903
8904 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
8905
8906 * progmodes/grep.el (rgrep): Tweak the find command line so
8907 that directories matching `grep-find-ignored-files' won't be
8908 pruned (bug#10351).
8909
8910 2012-04-11 Chong Yidong <cyd@gnu.org>
8911
8912 * startup.el (command-line): Remove support for long-obsolete
8913 variable font-lock-face-attributes.
8914
8915 2012-04-11 Glenn Morris <rgm@gnu.org>
8916
8917 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
8918
8919 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
8920
8921 * window.el (window--state-get-1): Obey window-point-insertion-type.
8922
8923 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
8924
8925 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
8926 to previous function when point is on the first character of a
8927 function. Take care of that in `narrow-to-defun' (bug#6157).
8928
8929 2012-04-11 Glenn Morris <rgm@gnu.org>
8930
8931 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
8932 not just file-errors.
8933
8934 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
8935 (vc-bzr-sha1): Use internal sha1.
8936
8937 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
8938
8939 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
8940
8941 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
8942
8943 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
8944 that start in the middle of the line (bug#10496).
8945
8946 2012-04-10 Dan Nicolaescu <dann@gnu.org>
8947
8948 * battery.el (battery-linux-proc-acpi): Only one battery is
8949 discharged at a time, but that seems to confuse battery.el when
8950 computing `rate-type' for the battery not being discharged
8951 (bug#10332).
8952
8953 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
8954
8955 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
8956
8957 * international/quail.el: Use dolist and simplify.
8958 (quail-define-package, quail-update-keyboard-layout)
8959 (quail-define-rules): Use dolist.
8960 (quail-insert-kbd-layout, quail-get-translation): CSE.
8961
8962 * tmm.el: Use dolist, remove left over hook.
8963 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
8964 Use dolist.
8965 (calendar-load-hook): Don't mess with it.
8966
8967 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
8968 Use derived-mode-p. Run the diff asynchronously.
8969
8970 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
8971
8972 * obsolete/mouse-sel.el: Add an Obsolete-since header.
8973
8974 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
8975
8976 * misc.el: Display absolute path of loaded DLLs (bug#10424).
8977 (list-dynamic-libraries--loaded): New function.
8978 (list-dynamic-libraries--refresh): Use it.
8979
8980 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
8981
8982 * progmodes/python.el (python-fill-paragraph):
8983 Make python-fill-region in a multiline string work when font-lock is
8984 disabled (bug#7018).
8985
8986 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
8987
8988 * language/european.el (cp775): Add oem/legacy (en)coding on
8989 DOS/MS Windows for the Baltic languages. There are still plenty
8990 of texts written in this encoding/codepage (bug#6519).
8991
8992 2012-04-10 Glenn Morris <rgm@gnu.org>
8993
8994 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
8995 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
8996
8997 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
8998
8999 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
9000 next-line "n" and previous-line "p" in order to make recentf more
9001 consistent with ibuffer, dired or org-mode (bug#9387).
9002
9003 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9004
9005 * image.el (put-image): Return the overlay created instead of the
9006 optional input string (bug#7834). Note that this may break code
9007 that is (for some reason or other) depending on `put-image'
9008 returning the string.
9009
9010 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
9011
9012 * simple.el (zap-to-char): Allow zapping using input methods
9013 (bug#1580).
9014
9015 * textmodes/fill.el (fill-region): Leave point and mark where they
9016 were before filling (bug#5399).
9017
9018 2012-04-09 Glenn Morris <rgm@gnu.org>
9019
9020 * version.el (emacs-bzr-get-version):
9021 Handle lightweight checkouts of local branches.
9022
9023 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
9024
9025 * international/characters.el: Recover lost case pairs. (Bug#11209)
9026
9027 2012-04-09 Chong Yidong <cyd@gnu.org>
9028
9029 * custom.el (custom-variable-p): Return nil for non-symbol
9030 arguments instead of signaling an error.
9031 (user-variable-p): Obsolete alias for custom-variable-p.
9032
9033 * apropos.el (apropos-variable):
9034 * files-x.el (read-file-local-variable):
9035 * simple.el (set-variable):
9036 * woman.el (woman-mini-help):
9037 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
9038
9039 2012-04-09 Glenn Morris <rgm@gnu.org>
9040
9041 * startup.el (normal-top-level): Don't look for leim-list.el
9042 in places where it will not be found. (Bug#910)
9043
9044 * international/mule-cmds.el (set-default-coding-systems):
9045 * files.el (normal-mode):
9046 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
9047 This function was removed with ucs-tables.el in 2008.
9048
9049 2012-04-08 Eli Zaretskii <eliz@gnu.org>
9050
9051 * textmodes/ispell.el (ispell-check-version): For hunspell, set
9052 ispell-encoding8-command to "-i", without a trailing space.
9053 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
9054 separate command-line arguments, to specify the encoding, since
9055 that's how hunspell expects it.
9056
9057 2012-04-08 Glenn Morris <rgm@gnu.org>
9058
9059 * loadup.el: Load bindings before cus-start.
9060 This reduces somewhat the number of "rogue" settings in emacs -Q.
9061
9062 2012-04-07 Glenn Morris <rgm@gnu.org>
9063
9064 * version.el (emacs-bzr-get-version): New function.
9065 (emacs-bzr-version): New variable.
9066 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
9067 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
9068
9069 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9070
9071 * international/uni-bidi.el, international/uni-category.el:
9072 * international/uni-combining.el, international/uni-decimal.el:
9073 * international/uni-decomposition.el, international/uni-digit.el:
9074 * international/uni-lowercase.el, international/uni-mirrored.el:
9075 * international/uni-name.el, international/uni-numeric.el:
9076 * international/uni-titlecase.el, international/uni-uppercase.el:
9077 Update for Unicode 6.1.
9078
9079 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9080
9081 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
9082
9083 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
9084
9085 * window.el (shrink-window): Mention the `window-min-height'
9086 variable in the doc string.
9087
9088 2012-04-05 Bastien Guerry <bzg@altern.org>
9089
9090 * color.el (color-lighten-name): Fix typo.
9091
9092 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9093
9094 * server.el (server--on-display-p): New function.
9095 (server--on-display-p): Use it.
9096
9097 2012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
9098
9099 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
9100 (bug#11145).
9101
9102 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9103
9104 * comint.el (comint--common-quoted-suffix): Check string boundary
9105 before comparing (bug#11158).
9106 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
9107
9108 2012-04-04 Chong Yidong <cyd@gnu.org>
9109
9110 * minibuffer.el (completion-extra-properties): Doc fix.
9111
9112 * subr.el (delayed-warnings-hook): Doc fix.
9113
9114 2012-04-04 Daiki Ueno <ueno@unixuser.org>
9115
9116 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
9117 selection (Bug#11159).
9118 (epa-insert-keys): Inform that the default public key will be
9119 exported if no key is selected.
9120
9121 2012-04-04 Richard Stallman <rms@gnu.org>
9122
9123 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
9124
9125 2012-04-03 Chong Yidong <cyd@gnu.org>
9126
9127 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
9128 mail-insert-file, not its obsolete alias mail-attach-file.
9129
9130 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
9131
9132 * notifications.el (notifications-notify): Fix docstring.
9133
9134 2012-04-02 Glenn Morris <rgm@gnu.org>
9135
9136 * emacs-lisp/authors.el (authors-aliases): Another addition.
9137
9138 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
9139
9140 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
9141 `tramp-compat-call-process' instead of `tramp-local-call-process'.
9142 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
9143
9144 2012-04-01 Chong Yidong <cyd@gnu.org>
9145
9146 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
9147 Handle root directory properly.
9148 (copy-directory): Caller changed.
9149
9150 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9151 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
9152
9153 2012-03-31 Glenn Morris <rgm@gnu.org>
9154
9155 * term/xterm.el (xterm-extra-capabilities): Doc fix.
9156
9157 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
9158
9159 * calendar/calendar.el (calendar-window-list)
9160 (calendar-hide-window): Restore. (Bug#11140)
9161 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
9162
9163 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
9164
9165 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9166
9167 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9168 Check if file is a symlink (Bug#10489).
9169
9170 * files.el (copy-directory): Likewise.
9171
9172 2012-03-30 Chong Yidong <cyd@gnu.org>
9173
9174 * image.el (imagemagick-types-inhibit)
9175 (imagemagick-register-types): Doc fix.
9176
9177 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9178
9179 * textmodes/ispell.el (ispell-get-extended-character-mode):
9180 Disable extended-char-mode for hunspell. hunspell does not support it
9181 and treats ~word as ordinary words in pipe mode.
9182
9183 2012-03-30 Glenn Morris <rgm@gnu.org>
9184
9185 * tutorial.el (help-with-tutorial): Ensure local variables don't
9186 happen to make the buffer read-only. (Bug#11127)
9187
9188 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
9189
9190 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
9191 (perl-calculate-indent): Return `noindent' in strings.
9192
9193 2012-03-28 Sam Steingold <sds@gnu.org>
9194
9195 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
9196 instead of the broken adhockery which does not prevent calendar
9197 buffers from being displayed at random after exit.
9198 (calendar-window-list, calendar-hide-window): Remove the broken
9199 adhockery.
9200
9201 2012-03-28 Glenn Morris <rgm@gnu.org>
9202
9203 * replace.el (query-replace-map): Doc fix.
9204
9205 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
9206
9207 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
9208 contents. (Bug#11109)
9209
9210 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
9211
9212 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
9213 (bug#11077).
9214 (avl-tree--check, avl-tree--check-node): New funs.
9215
9216 2012-03-27 Martin Rudalics <rudalics@gmx.at>
9217
9218 * window.el (switch-to-visible-buffer): New option.
9219 (switch-to-prev-buffer, switch-to-next-buffer):
9220 Observe switch-to-visible-buffer. Make sure that checking for a window
9221 showing a buffer already is done on the same frame.
9222
9223 2012-03-27 Glenn Morris <rgm@gnu.org>
9224
9225 * startup.el (mail-host-address): Doc fix.
9226
9227 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9228
9229 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
9230 than 197 variables.
9231
9232 2012-03-26 Ami Fischman <ami@fischman.org>
9233
9234 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
9235
9236 2012-03-26 Glenn Morris <rgm@gnu.org>
9237
9238 * files.el (save-buffers-kill-emacs): Doc fix.
9239
9240 * startup.el (normal-top-level, command-line, command-line-1):
9241 Give them doc strings.
9242
9243 2012-03-25 Eli Zaretskii <eliz@gnu.org>
9244
9245 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
9246 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
9247
9248 2012-03-25 Chong Yidong <cyd@gnu.org>
9249
9250 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
9251 theme if it was previously enabled before (Bug#11031).
9252
9253 * cus-theme.el (custom-theme-write-faces): Retrieve current face
9254 spec with custom-face-get-current-spec if its :shown-value is not
9255 determined yet (Bug#9337).
9256 (customize-create-theme, custom-theme-revert): Doc fixes.
9257
9258 * button.el (button-at): Minor addition to docstring.
9259
9260 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
9261
9262 * vc/vc.el (vc-merge): Fix a prompt.
9263
9264 2012-03-24 Chong Yidong <cyd@gnu.org>
9265
9266 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
9267 point (Bug#9623).
9268
9269 * button.el (button-at): Minor addition to docstring.
9270
9271 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
9272
9273 * newcomment.el (comment-choose-indent): No space after BOL.
9274
9275 2012-03-22 Sam Steingold <sds@gnu.org>
9276
9277 * window.el (switch-to-prev-buffer): Revert last patch because the
9278 bug turned out to be an advertised feature (Elisp manual 28.14).
9279
9280 2012-03-22 Glenn Morris <rgm@gnu.org>
9281
9282 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
9283 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
9284
9285 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
9286
9287 * net/network-stream.el (network-stream-open-starttls): Make error
9288 message under Windows be less misleading.
9289
9290 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
9291
9292 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
9293 understands (bug#9942).
9294
9295 2012-03-22 Chong Yidong <cyd@gnu.org>
9296
9297 * simple.el (end-of-visible-line): Handle return value of
9298 next-single-property-change properly (Bug#9371).
9299
9300 2012-03-22 Kenichi Handa <handa@m17n.org>
9301
9302 * international/quail.el (quail-insert-kbd-layout): Fix previous
9303 change. To avoid unwanted bidi reordering, use
9304 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
9305
9306 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
9307
9308 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
9309 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
9310 (ruby-beginning-of-indent): Be more careful with the difference
9311 between word-boundary and symbol boundary.
9312 (ruby-mode-syntax-table): Make : a symbol constituent.
9313
9314 2012-03-21 Andreas Politz <politza@fh-trier.de>
9315
9316 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
9317
9318 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
9319
9320 * progmodes/etags.el (tags-completion-at-point-function):
9321 Improve last fix.
9322
9323 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
9324
9325 2012-03-21 Sam Steingold <sds@gnu.org>
9326
9327 * progmodes/etags.el (tags-completion-at-point-function):
9328 Avoid the error when point is inside the pattern.
9329
9330 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
9331
9332 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
9333 line (Bug#10855).
9334
9335 2012-03-21 Drew Adams <drew.adams@oracle.com>
9336
9337 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
9338
9339 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
9340
9341 * ido.el (ido-set-current-directory, ido-read-internal)
9342 (ido-choose-completion-string, ido-completion-help): Handle nil
9343 value of ido-completion-buffer (Bug#11008).
9344
9345 2012-03-21 Sam Steingold <sds@gnu.org>
9346
9347 * window.el (switch-to-prev-buffer): Do not switch to a visible
9348 window previous buffer, just like with the frame previous buffers.
9349
9350 2012-03-21 Chong Yidong <cyd@gnu.org>
9351
9352 * faces.el (make-face, make-empty-face, copy-face):
9353 * face-remap.el (face-remap-add-relative, face-remap-set-base):
9354 Doc fixes.
9355
9356 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
9357
9358 * wid-edit.el (widget-complete-field): Remove (bug#11051).
9359 (widget-complete): Remove broken use of it.
9360
9361 2012-03-20 Chong Yidong <cyd@gnu.org>
9362
9363 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
9364 Use string-width and truncate-string-width to handle arbitrary
9365 characters.
9366
9367 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
9368
9369 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
9370 to draw rectangles, not squares. (Regression introduced by revno
9371 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
9372
9373 2012-03-18 Chong Yidong <cyd@gnu.org>
9374
9375 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
9376 it is not yet defined (for temacs).
9377
9378 2012-03-18 Leo Liu <sdl.web@gmail.com>
9379
9380 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
9381 prefix.
9382
9383 2012-03-17 Eli Zaretskii <eliz@gnu.org>
9384
9385 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
9386 (ispell-choices-win-default-height, ispell-silently-savep)
9387 (ispell-dictionary-alist, ispell-encoding8-command)
9388 (ispell-check-version, ispell-aspell-find-dictionary)
9389 (ispell-valid-dictionary-list, ispell-words-keyword)
9390 (ispell-get-word, ispell-internal-change-dictionary)
9391 (ispell-region, ispell-skip-region-list)
9392 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
9393 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
9394 (ispell-message-text-end, ispell-message)
9395 (ispell-buffer-local-parsing): Doc fix.
9396
9397 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
9398
9399 * htmlfontify.el: Add support for code block fontification for ODT
9400 export (Bug #9914).
9401 (hfy-optimisations): Define new option
9402 `body-text-only'
9403 (hfy-fontify-buffer): Honor above setting.
9404 (hfy-begin-span, hfy-end-span): New routines factored out form
9405 `hfy-fontify-buffer'.
9406 (hfy-begin-span-handler, hfy-end-span-handler): New variables
9407 that permit insertion of custom tags.
9408 (hfy-fontify-buffer): Use above handlers.
9409 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
9410 (hfy-face-to-css): Re-defined to be a variable.
9411 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
9412 over multiple runs. This is made possible by having the caller let
9413 bind a special variable `hfy-user-sheet-assoc'.
9414 (htmlfontify-string): New defun.
9415 (hfy-compile-face-map): Make sure that the last char in the
9416 buffer is correctly fontified.
9417 (hfy-face-resolve-face): Whitespace only change.
9418
9419 2012-03-17 Eli Zaretskii <eliz@gnu.org>
9420
9421 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
9422 message more clear.
9423
9424 2012-03-16 Leo Liu <sdl.web@gmail.com>
9425
9426 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
9427
9428 2012-03-16 Alan Mackenzie <acm@muc.de>
9429
9430 Further optimise the handling of large macros.
9431
9432 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
9433 limit to a call of `c-literal-limits'.
9434 (c-determine-+ve-limit): New function.
9435 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
9436 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
9437 In CASE 5B, restrict a search limit to 500.
9438 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
9439
9440 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
9441 Restrict macro bounds to +-500 from after-change's BEG END.
9442
9443 2012-03-16 Leo Liu <sdl.web@gmail.com>
9444
9445 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
9446
9447 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
9448
9449 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
9450 `special-mode' setting of `buffer-read-only'. (Bug#11010)
9451
9452 2012-03-16 Glenn Morris <rgm@gnu.org>
9453
9454 * view.el (view-buffer, view-buffer-other-window)
9455 (view-buffer-other-frame): Doc fixes re special mode-class.
9456
9457 * subr.el (eval-after-load): If named feature is provided not from
9458 a file, run after-load forms. (Bug#10946)
9459
9460 * calendar/calendar.el (calendar-insert-at-column):
9461 Handle non-unit-width characters a bit better. (Bug#10978)
9462
9463 2012-03-15 Chong Yidong <cyd@gnu.org>
9464
9465 * emacs-lisp/ring.el (ring-extend): New function.
9466 (ring-insert+extend): Extend the ring correctly (Bug#11019).
9467
9468 * comint.el (comint-read-input-ring)
9469 (comint-add-to-input-history): Grow comint-input-ring lazily.
9470
9471 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9472
9473 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
9474 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
9475
9476 * imenu.el: Fix multiple inheritance breakage (bug#9199).
9477 (imenu-add-to-menubar): Don't add a redundant index.
9478 (imenu-update-menubar): Handle a dynamically composed keymap.
9479
9480 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
9481
9482 * mail/sendmail.el (mail-encode-header):
9483 Bind rfc2047-encode-encoded-words to nil.
9484
9485 2012-03-13 Glenn Morris <rgm@gnu.org>
9486
9487 * calendar/calendar.el (calendar-string-spread):
9488 Handle non-unit-width characters a bit better. (Bug#10978)
9489
9490 2012-03-13 Leo Liu <sdl.web@gmail.com>
9491
9492 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
9493 directory and file as argument (Bug#10822).
9494
9495 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
9496
9497 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
9498 For dynamically generated code, follow $PC.
9499 (gdb-disassembly-handler-custom): Handle no function name case.
9500
9501 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
9502
9503 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
9504 * emulation/ws-mode.el (ws-query-replace):
9505 * sort.el (sort-regexp-fields):
9506 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
9507
9508 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9509
9510 * dabbrev.el: Fix cycle completion order (bug#10963).
9511 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
9512 (dabbrev-completion): Don't use an obarray; provide
9513 a cycle-sort-function.
9514
9515 2012-03-12 Leo Liu <sdl.web@gmail.com>
9516
9517 * simple.el (kill-new): Use equal-including-properties for comparison.
9518 (kill-do-not-save-duplicates): Doc fix.
9519
9520 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9521
9522 * dabbrev.el: Fix cycle completion (bug#10963).
9523 Use lexical binding and wrap to 80 columns.
9524 (dabbrev-completion): Delay computing the list of completions.
9525
9526 2012-03-12 Kenichi Handa <handa@m17n.org>
9527
9528 * international/quail.el (quail-insert-kbd-layout): Surround each
9529 row by LRO and PDF instead of inserting many LRMs. Pad the left
9530 and right of each non-spacing marks. Insert invisible space
9531 between lower and upper characters to prevent composition.
9532
9533 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9534
9535 * minibuffer.el (minibuffer-complete): Don't get confused when the
9536 function is run twice via different commands (bug#10958).
9537 (complete-with-action): Fix docstring.
9538
9539 2012-03-12 Chong Yidong <cyd@gnu.org>
9540
9541 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
9542 (nxml-completion-at-point-function): New function.
9543 (nxml-mode): Use it.
9544 (nxml-bind-meta-tab-to-complete-flag): Default to t.
9545
9546 * emacs-lisp/package.el (package-unpack, package-unpack-single):
9547 Load generated autoloads file before byte compiling (Bug#10970).
9548 (package--make-autoloads-and-compile): New helper fun.
9549
9550 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
9551
9552 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
9553
9554 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
9555
9556 * autorevert.el (auto-revert-handler): Ensure, that
9557 file-readable-p is applied only for local files or in
9558 auto-revert-tail-mode.
9559
9560 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
9561
9562 * server.el (server-eval-at): Handle non-tcp connections.
9563 Decode result string.
9564
9565 * server.el (server-msg-size): New constant.
9566 (server-reply-print): New function.
9567 (server-eval-and-print): Use it.
9568 (server-eval-at): Use server-quote-arg and server-unquote-arg.
9569 Handle -print-nonl.
9570
9571 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
9572
9573 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
9574 (Bug#10987).
9575
9576 2012-03-11 Chong Yidong <cyd@gnu.org>
9577
9578 * simple.el (goto-line): Doc fix (Bug#9938).
9579
9580 * subr.el (save-window-excursion): Doc fix (Bug#9979).
9581
9582 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
9583 when finished (Bug#10963).
9584
9585 2012-03-11 Martin Rudalics <rudalics@gmx.at>
9586
9587 * window.el (split-window-below): Fix bug in case where
9588 split-window-keep-point is nil (Bug#10971).
9589
9590 2012-03-11 Juri Linkov <juri@jurta.org>
9591
9592 * replace.el (replace-highlight): Set isearch-word to nil
9593 unconditionally. (Bug#10887)
9594
9595 2012-03-10 Eli Zaretskii <eliz@gnu.org>
9596
9597 * net/mairix.el (mairix-replace-invalid-chars): Rename from
9598 mairix-replace-illegal-chars; all callers changed. Don't remove
9599 ^, ~, and = characters: they are meaningful in mairix search specs.
9600 (mairix-widget-create-query): Add usage information about mairix
9601 search forms: negating words, searching for substrings, etc.
9602
9603 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
9604
9605 * international/fontset.el (font-encoding-alist): Add an entry for
9606 ksx1001 (Bug#5667).
9607
9608 2012-03-10 Richard Stallman <rms@gnu.org>
9609
9610 * mail/sendmail.el (mail-encode-header):
9611 Set rfc2047-encode-encoded-words.
9612
9613 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
9614
9615 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
9616 view buffer means not swapped.
9617 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
9618 (rmail-write-region-annotate): Error if real text has disappeared.
9619
9620 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
9621
9622 2012-03-10 Chong Yidong <cyd@gnu.org>
9623
9624 * emulation/cua-rect.el (cua--init-rectangles):
9625 * emulation/cua-base.el (cua--init-keymaps):
9626 Add delete-forward-char to remappings (Bug#9666).
9627
9628 2012-03-10 Martin Rudalics <rudalics@gmx.at>
9629
9630 * speedbar.el (speedbar-unhighlight-one-tag-line):
9631 Avoid unhighlighting due to frame switching (Bug#10275).
9632
9633 2012-03-10 Chong Yidong <cyd@gnu.org>
9634
9635 * minibuffer.el (completion-in-region, completion-help-at-point):
9636 Give the completion field overlay a high priority (Bug#6830).
9637
9638 * dired.el (dired-goto-file): Recognize absolute file name
9639 listings (Bug#7126).
9640 (dired-goto-file-1): New helper function.
9641 (dired-toggle-read-only): Inhibit warnings.
9642
9643 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
9644
9645 * net/dbus.el (dbus-property-handler): Return empty array if
9646 there are no properties.
9647
9648 2012-03-09 Leo Liu <sdl.web@gmail.com>
9649
9650 * savehist.el (savehist-printable): Stricter check for string
9651 value (Bug#10937).
9652
9653 2012-03-09 Eli Zaretskii <eliz@gnu.org>
9654
9655 * mail/smtpmail.el (smtpmail-send-it):
9656 Bind coding-system-for-write to *-unix, so that FCC files are kept in
9657 valid mbox format.
9658
9659 2012-03-09 Glenn Morris <rgm@gnu.org>
9660
9661 * files.el (dir-locals-find-file):
9662 Don't check result is regular, readable.
9663 (dir-locals-read-from-file): Demote errors.
9664
9665 2012-03-08 Eli Zaretskii <eliz@gnu.org>
9666
9667 * international/quail.el (quail-insert-kbd-layout):
9668 Insert invisible LRM characters before each character in a keyboard
9669 layout cell, to prevent their reordering by bidi display engine.
9670 For details, see the discussion in
9671 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
9672
9673 2012-03-08 Alan Mackenzie <acm@muc.de>
9674
9675 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
9676 the starting position; make it extend the marked region when
9677 invoked repeatedly - all under appropriate circumstances.
9678 Fixes bugs #5525, #10906.
9679
9680 2012-03-08 Glenn Morris <rgm@gnu.org>
9681
9682 * files.el (locate-dominating-file, dir-locals-find-file):
9683 Undo 2012-03-06 change.
9684
9685 2012-03-07 Eli Zaretskii <eliz@gnu.org>
9686
9687 * international/quail.el (quail-help):
9688 Force bidi-paragraph-direction be left-to-right. See discussion in
9689 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
9690 for the reason.
9691
9692 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
9693
9694 Avoid superfluous registering of signals. (Bug#10807)
9695
9696 * notifications.el (notifications-on-action-object)
9697 (notifications-on-close-object): New defvars.
9698 (notifications-on-action-signal, notifications-on-closed-signal):
9699 Unregister the signal if not needed any longer.
9700 (notifications-notify): Register `notifications-action-signal' or
9701 `notifications-closed-signal', if :on-action or :on-close has been
9702 passed as argument.
9703
9704 2012-03-07 Chong Yidong <cyd@gnu.org>
9705
9706 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
9707 non-X platforms.
9708
9709 2012-03-06 Glenn Morris <rgm@gnu.org>
9710
9711 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
9712 (x-disown-selection-internal, x-get-selection-internal):
9713 Doc fix (add arglist signatures). (Bug#10783)
9714
9715 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
9716
9717 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
9718 Handle breakpoints with no "type".
9719
9720 2012-03-06 Glenn Morris <rgm@gnu.org>
9721
9722 * files.el (locate-dominating-file): Add optional predicate argument.
9723 (dir-locals-find-file): Make use of above change.
9724
9725 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
9726
9727 * info.el (Info-insert-dir): Also try "dir.gz".
9728
9729 2012-03-06 Glenn Morris <rgm@gnu.org>
9730
9731 * files.el (dir-locals-find-file):
9732 Ignore non-readable or non-regular files. (Bug#10928)
9733
9734 * files.el (locate-dominating-file): Doc fix.
9735
9736 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
9737
9738 * calendar/calendar.el (calendar-set-mode-line):
9739 `getenv' returns a string. (Bug#10951)
9740
9741 2012-03-05 Leo Liu <sdl.web@gmail.com>
9742
9743 * simple.el (backward-delete-char-untabify): Constrain point to
9744 field (Bug#10939).
9745
9746 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
9747
9748 2012-03-05 Chong Yidong <cyd@gnu.org>
9749
9750 * simple.el (count-words): If called from Lisp, return the word
9751 count, for symmetry with `count-lines'. Arglist changed.
9752 (count-words--message): Args changed. Consolidate counting code
9753 from count-words and count-words-region.
9754 (count-words-region): Caller changed.
9755 (count-lines-region): Make it an obsolete alias.
9756
9757 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
9758
9759 * saveplace.el (save-place-to-alist)
9760 (save-place-ignore-files-regexp): Allow value nil to disable this
9761 feature.
9762
9763 2012-03-04 Chong Yidong <cyd@gnu.org>
9764
9765 * faces.el (face-spec-reset-face): For the default face, reset the
9766 attributes to default values (Bug#10748).
9767
9768 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
9769
9770 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
9771 previous patch: Check `message-send-mail-function', and not the
9772 default function (bug#10897).
9773
9774 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
9775
9776 * notifications.el (notifications-on-action-signal)
9777 (notifications-on-closed-signal): Check for unique service name of
9778 incoming event. Fix error in removing entry.
9779 (top): Register for signals with wildcard service name.
9780 (notifications-notify): Use daemon unique service name for map entries.
9781
9782 2012-03-04 Chong Yidong <cyd@gnu.org>
9783
9784 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
9785
9786 2012-03-04 Glenn Morris <rgm@gnu.org>
9787
9788 * abbrev.el (copy-abbrev-table, abbrev-table-p)
9789 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
9790 (expand-abbrev, define-abbrev-table): Doc fixes.
9791
9792 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
9793
9794 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
9795 `message-default-send-mail-function' and not `send-mail-function'
9796 when doing the prompting for `sendmail-query-once' before sending
9797 in Message buffers (bug#10897).
9798
9799 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
9800 This is inconsistent with all the other stream functions, which leave
9801 the setting up to the higher levels (if so wanted) (bug#10931).
9802
9803 2012-03-02 Alan Mackenzie <acm@muc.de>
9804
9805 Depessimize the handling of very large macros.
9806
9807 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
9808 (c-macro-cache-syntactic): New variables to implement a one
9809 element macro cache.
9810 (c-invalidate-macro-cache): New function.
9811 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
9812 Adapt to use the new cache.
9813 (c-state-safe-place): Use better the cache of safe positions.
9814 (c-state-semi-nonlit-pos-cache)
9815 (c-state-semi-nonlit-pos-cache-limit):
9816 New variables for...
9817 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
9818 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
9819 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
9820 Use c-state-semi-safe-place.
9821
9822 * progmodes/cc-langs.el (c-get-state-before-change-functions):
9823 Add c-invalidate-macro-cache to the C, C++, Obj entries.
9824
9825 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
9826
9827 * jka-compr.el (jka-compr-call-process):
9828 Apply `file-accessible-directory-p' only when the default directory is
9829 not remote.
9830
9831 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
9832
9833 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
9834 access of FILE2, if FILE1 does not exist.
9835
9836 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
9837 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
9838
9839 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
9840 Add "PAGER=" to `process-environment'.
9841
9842 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
9843
9844 * progmodes/sql.el: Bug fix
9845 (sql-get-login-ext): Save login values in globals.
9846 (sql-get-login): Use new version of `sql-get-login-ext'.
9847 (sql-interactive-mode): Set global `sql-connection' to nil.
9848 (sql-connect): Set global values for connection.
9849 (sql-product-interactive): Save global values as buffer local.
9850
9851 2012-02-29 Leo Liu <sdl.web@gmail.com>
9852
9853 * abbrev.el (define-abbrevs): Reset sys to nil.
9854
9855 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9856
9857 * files.el (file-equal-p): Rename from `files-equal-p'.
9858 Return nil when one or both files don't exist.
9859 (file-subdir-of-p): Now only top directory must exists,
9860 return nil if it doesn't.
9861 (copy-directory): No need to test with `file-subdir-of-p' after
9862 creating dir.
9863 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
9864 to `file-equal-p'.
9865
9866 2012-02-28 Glenn Morris <rgm@gnu.org>
9867
9868 * shell.el (shell-mode):
9869 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
9870 * play/landmark.el (landmark-font-lock-face-O):
9871 * play/handwrite.el (handwrite):
9872 * play/gomoku.el (gomoku-O):
9873 * net/browse-url.el (browse-url-browser-display):
9874 * international/mule.el (define-charset):
9875 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
9876 * filesets.el (filesets-find-file-delay):
9877 * eshell/em-xtra.el (eshell-xtra):
9878 * eshell/em-unix.el (eshell-grep):
9879 * emulation/viper.el (viper-mode):
9880 * emacs-lisp/regexp-opt.el (regexp-opt-group):
9881 * emacs-lisp/easymenu.el (easy-menu-define):
9882 * calendar/timeclock.el (timeclock-use-display-time):
9883 * bs.el (bs-mode):
9884 * bookmark.el (bookmark-save-flag):
9885 Doc fix (standardize possessive apostrophe usage).
9886
9887 2012-02-27 Chong Yidong <cyd@gnu.org>
9888
9889 * emulation/viper-cmd.el (viper-intercept-ESC-key):
9890 Fix key-binding lookup for ESC key (Bug#9146).
9891
9892 * font-lock.el (font-lock-specified-p): Rename from
9893 font-lock-spec-present. Callers changed.
9894
9895 2012-02-27 Daniel Hackney <dan@haxney.org>
9896
9897 * emacs-lisp/package.el (package-compute-transaction):
9898 Handle holding a package version to t in package-load-list.
9899
9900 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
9901
9902 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
9903 (tramp-get-inode, tramp-get-device): Use cached values.
9904
9905 2012-02-26 Alan Mackenzie <acm@muc.de>
9906
9907 Check there is a font-lock specification before doing initial
9908 fontification.
9909
9910 * font-core.el (font-lock-mode): Move the conditional from
9911 :after-hook to font-lock-initial-fontify.
9912 (font-lock-default-function): Move the check for a specification
9913 to font-lock-spec-present.
9914
9915 * font-lock.el (font-lock-initial-fontify): Call ...
9916 (font-lock-spec-present): New function.
9917
9918 2012-02-26 Jim Blandy <jimb@red-bean.com>
9919
9920 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
9921 (gdb-send): Apply it to the operand of the '-interpreter-exec
9922 console' command, so that we can pass arguments with (say) quotes
9923 in them. Store exact string sent in gdb-debug-log (Bug#10765).
9924
9925 2012-02-26 Chong Yidong <cyd@gnu.org>
9926
9927 * help-fns.el (describe-function-1): Clarify description of
9928 remapping (Bug#10844).
9929
9930 * files.el (files-equal-p): Doc fix.
9931 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
9932 and quit the loop once a mismatch is found.
9933
9934 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
9935
9936 * bs.el (bs--show-with-configuration): Don't throw an error
9937 if the window cannot be split; otherwise, subsequent calls to
9938 bs-show fail, restoring a stale window config. (Bug#10882)
9939
9940 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
9941
9942 * term/ns-win.el (global-map): Bind ns-drag-file to
9943 ns-find-file (Bug#5855, Bug#10050).
9944
9945 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
9946
9947 * calendar/parse-time.el (parse-time-string): Allow extractor to
9948 return nil.
9949
9950 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
9951
9952 * net/tramp.el (tramp-file-name-for-operation):
9953 Add `files-equal-p' and `file-subdir-of-p'.
9954
9955 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
9956 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
9957 Add COPY-CONTENTS argument.
9958
9959 2012-02-25 Chong Yidong <cyd@gnu.org>
9960
9961 Add custom groups for VC backends, for consistency with vc-bzr.
9962
9963 * vc/vc-arch.el (vc-arch):
9964 * vc/vc-cvs.el (vc-cvs):
9965 * vc/vc-git.el (vc-git):
9966 * vc/vc-hg.el (vc-hg):
9967 * vc/vc-mtn.el (vc-mtn):
9968 * vc/vc-rcs.el (vc-rcs):
9969 * vc/vc-sccs.el (vc-sccs):
9970 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
9971 All relevant defcustoms reassigned.
9972
9973 2012-02-25 Chong Yidong <cyd@gnu.org>
9974
9975 * newcomment.el (comment-styles): Add autoload (Bug#10868).
9976
9977 * term/x-win.el (x-initialize-window-system): Reduce default for
9978 x-selection-timeout to 5 seconds (Bug#8869).
9979
9980 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9981
9982 * files.el (files-equal-p, file-subdir-of-p): New functions.
9983 (copy-directory): Error when trying to copy a directory on itself.
9984 Add missing copy-contents arg to tramp handler.
9985 * dired-aux.el (dired-copy-file-recursive): Same.
9986 (dired-create-files): Modify destination when source is equal to
9987 dest when copying files.
9988 Return also when dest is a subdir of source. (Bug#10489)
9989
9990 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
9991
9992 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
9993 (Bug#10874)
9994
9995 2012-02-23 Alan Mackenzie <acm@muc.de>
9996
9997 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
9998 parameter "after-hook:" to allow the expansion to run code after
9999 the execution of the mode hooks.
10000
10001 * font-lock.el (font-lock-initial-fontify): New function extracted
10002 from font-lock-mode-internal.
10003
10004 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
10005 :after-hook.
10006
10007 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10008
10009 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
10010 (completion--cache-all-sorted-completions): New function.
10011 (completion-all-sorted-completions): Use it.
10012 (completion--do-completion, minibuffer-force-complete):
10013 Use it to re-instate the flush hook.
10014
10015 * icomplete.el (icomplete-completions): Replace last fix with a better
10016 one (bug#10850).
10017
10018 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
10019
10020 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
10021 when it might call us back infinitely (bug#10797).
10022
10023 2012-02-23 Glenn Morris <rgm@gnu.org>
10024
10025 * minibuffer.el (completion-category-overrides): Doc fix.
10026
10027 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10028
10029 * minibuffer.el (completion-table-with-context): Fix inf-loop.
10030 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
10031
10032 2012-02-23 Glenn Morris <rgm@gnu.org>
10033
10034 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
10035 (authors-obsolete-files-regexps, authors-ignored-files)
10036 (authors-ambiguous-files, authors-renamed-files-alist):
10037 Add more entries.
10038
10039 2012-02-23 Juri Linkov <juri@jurta.org>
10040
10041 * isearch.el (isearch-occur): Sync interactive spec with occur's
10042 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
10043
10044 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
10045
10046 2012-02-22 Juri Linkov <juri@jurta.org>
10047
10048 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
10049 (ucs-insert): Doc fix. Check for hex digits in the string.
10050 Don't display `nil' in the error message. (Bug#10857)
10051
10052 2012-02-22 Alan Mackenzie <acm@muc.de>
10053
10054 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
10055
10056 2012-02-22 Glenn Morris <rgm@gnu.org>
10057
10058 * ffap.el (ffap-c-path):
10059 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
10060
10061 2012-02-22 Chong Yidong <cyd@gnu.org>
10062
10063 * custom.el (load-theme): Doc fix.
10064
10065 2012-02-22 Glenn Morris <rgm@gnu.org>
10066
10067 * dired-x.el (dired-guess-shell-alist-default):
10068 Remove escape sequences from nroff output. (Bug#172)
10069
10070 2012-02-21 Glenn Morris <rgm@gnu.org>
10071
10072 * vc/emerge.el (emerge-defvar-local):
10073 Set `permanent-local' property rather than unused `preserved'.
10074
10075 * textmodes/picture.el (picture-delete-char): New alias.
10076 (picture-mode-map): Use it. (Bug#10860)
10077 (picture-mode): Doc fix.
10078
10079 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
10080
10081 * newcomment.el (uncomment-region-default): Remove unused binding.
10082
10083 2012-02-21 Glenn Morris <rgm@gnu.org>
10084
10085 * textmodes/picture.el (picture-motion, picture-motion-reverse)
10086 (picture-self-insert, picture-tab-chars): Doc fix.
10087 (picture-mode-map): Fix C-a, C-e.
10088
10089 2012-02-20 Glenn Morris <rgm@gnu.org>
10090
10091 * emacs-lisp/authors.el (authors-aliases): Add another entry.
10092
10093 2012-02-20 Leo Liu <sdl.web@gmail.com>
10094
10095 * icomplete.el (icomplete-completions): Check FROM arg before
10096 passing to substring (Bug#10850).
10097
10098 2012-02-19 Chong Yidong <cyd@gnu.org>
10099
10100 * comint.el: Require ansi-color.
10101 (comint-output-filter-functions): Add ansi-color-process-output.
10102
10103 * ansi-color.el: Don't set comint-output-filter-functions; it is
10104 now in the initial value defined in comint.el.
10105 (ansi-color-apply-face-function): New variable.
10106 (ansi-color-apply-on-region): Use it.
10107 (ansi-color-apply-overlay-face): New function.
10108
10109 * shell.el (shell): No need to require ansi-color.
10110 (shell-mode): Use ansi-color-apply-face-function to highlight
10111 color escapes using font-lock-face property (Bug#10835).
10112
10113 2012-02-19 Chong Yidong <cyd@gnu.org>
10114
10115 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
10116 mode-line formats (Bug#10839).
10117
10118 2012-02-18 Glenn Morris <rgm@gnu.org>
10119
10120 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
10121
10122 * mail/undigest.el (unforward-rmail-message): Doc fix.
10123
10124 * saveplace.el (save-place-ignore-files-regexp): Add :version.
10125
10126 2012-02-18 Eli Zaretskii <eliz@gnu.org>
10127
10128 * international/characters.el (script-list): Sync with the latest
10129 Unicode Character Database.
10130
10131 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
10132
10133 * international/titdic-cnv.el: Remove duplicate coding tag.
10134 * language/cham.el: Likewise.
10135 * language/tai-viet.el: Likewise.
10136
10137 2012-02-18 Glenn Morris <rgm@gnu.org>
10138
10139 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
10140 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
10141 (calendar-bahai-all-holidays-flag, calendar-other-dates):
10142 * calendar/diary-lib.el (diary-abbreviated-year-flag):
10143 * calendar/holidays.el (holiday-bahai-holidays)
10144 (calendar-holidays, list-holidays):
10145 Use utf-8 Bahá'í in doc-strings, menus, etc.
10146
10147 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
10148
10149 * saveplace.el (save-place-ignore-files-regexp): New variable
10150 allowing for excluding files from saving their location of point.
10151 The default value matches the temporary commit message editing
10152 files from Git, SVN, Bazaar, and Mercurial.
10153 (save-place-to-alist): Use it.
10154
10155 2012-02-17 Lawrence Mitchell <wence@gmx.li>
10156 Stefan Monnier <monnier@iro.umontreal.ca>
10157
10158 * newcomment.el (uncomment-region-default): Don't leave extra space
10159 when an arg is provided (bug#8150).
10160
10161 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
10162
10163 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
10164
10165 2012-02-17 Glenn Morris <rgm@gnu.org>
10166
10167 * net/socks.el: Require network-stream. (Bug#10599)
10168
10169 2012-02-17 Kenichi Handa <handa@m17n.org>
10170
10171 * international/charprop.el:
10172 * international/uni-name.el:
10173 * international/uni-old-name.el:
10174 * international/uni-comment.el: Regenerate.
10175
10176 2012-02-16 Glenn Morris <rgm@gnu.org>
10177
10178 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
10179 Interactively in calendar buffer, give an error if not on a date.
10180
10181 2012-02-15 Glenn Morris <rgm@gnu.org>
10182
10183 * shell.el (shell-delimiter-argument-list):
10184 Revert 2011-02-17 change. (Bug#8027)
10185
10186 2012-02-15 Chong Yidong <cyd@gnu.org>
10187
10188 * minibuffer.el (completion-at-point-functions): Doc fix.
10189
10190 * custom.el (defcustom): Doc fix; note use of defvar.
10191
10192 2012-02-15 Glenn Morris <rgm@gnu.org>
10193
10194 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
10195 Doc fixes.
10196
10197 2012-02-14 Glenn Morris <rgm@gnu.org>
10198
10199 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
10200
10201 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
10202
10203 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
10204 way the ports list is computed.
10205 (smtpmail-query-smtp-server): Prompt the user for a port number if
10206 we can't connect to any of the standard ports (bug#10810).
10207
10208 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
10209
10210 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
10211
10212 2012-02-13 Glenn Morris <rgm@gnu.org>
10213
10214 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
10215
10216 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
10217
10218 * net/gnutls.el (gnutls-trustfiles): New variable.
10219 (gnutls-negotiate): Use it.
10220
10221 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
10222
10223 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
10224 does its stuff if Gnus is running.
10225
10226 2012-02-13 Alan Mackenzie <acm@muc.de>
10227
10228 Fix a loop in c-set-fl-decl-start.
10229
10230 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
10231 c-backward-syntactic-ws actually moves backwards.
10232
10233 2012-02-13 Leo Liu <sdl.web@gmail.com>
10234
10235 * net/rcirc.el (rcirc-markup-attributes): Move point to the
10236 beginning so that all \C-o chars are removed.
10237
10238 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
10239
10240 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
10241
10242 2012-02-12 Alan Mackenzie <acm@muc.de>
10243
10244 Fix infinite loop with long macros.
10245 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
10246
10247 2012-02-12 Chong Yidong <cyd@gnu.org>
10248
10249 * window.el (display-buffer): Doc fix (Bug#10785).
10250
10251 2012-02-12 Glenn Morris <rgm@gnu.org>
10252
10253 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10254 (x-disown-selection-internal, x-get-selection-internal):
10255 Sync docs with the xselect.c versions.
10256
10257 * allout-widgets.el: Add missing license notice.
10258
10259 2012-02-11 Glenn Morris <rgm@gnu.org>
10260
10261 * select.el (x-get-selection-internal, x-own-selection-internal)
10262 (x-disown-selection-internal):
10263 * x-dnd.el (x-get-selection-internal): Update declarations.
10264
10265 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
10266
10267 * window.el (window-sides-slots):
10268 * tool-bar.el (tool-bar-position):
10269 * term/xterm.el (xterm-extra-capabilities):
10270 * ses.el (ses-self-reference-early-detection):
10271 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
10272 (verilog-auto-wire-type)
10273 (verilog-auto-delete-trailing-whitespace)
10274 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
10275 (verilog-auto-tieoff-declaration):
10276 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
10277 (sql-oracle-statement-starters, sql-oracle-scan-on):
10278 * progmodes/prolog.el (prolog-align-comments-flag)
10279 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
10280 (prolog-left-indent-regexp, prolog-paren-indent-p)
10281 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
10282 (prolog-types, prolog-mode-specificators)
10283 (prolog-determinism-specificators, prolog-directives)
10284 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
10285 (prolog-electric-dot-flag)
10286 (prolog-electric-dot-full-predicate-template)
10287 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
10288 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
10289 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
10290 (prolog-program-switches, prolog-prompt-regexp)
10291 (prolog-debug-on-string, prolog-debug-off-string)
10292 (prolog-trace-on-string, prolog-trace-off-string)
10293 (prolog-zip-on-string, prolog-zip-off-string)
10294 (prolog-use-standard-consult-compile-method-flag)
10295 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
10296 (prolog-imenu-max-lines, prolog-info-predicate-index)
10297 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
10298 (prolog-char-quote-workaround):
10299 * progmodes/cc-vars.el (c-defun-tactic):
10300 * net/tramp.el (tramp-encoding-command-interactive)
10301 (tramp-local-end-of-line):
10302 * net/soap-client.el (soap-client):
10303 * net/netrc.el (netrc-file):
10304 * net/gnutls.el (gnutls):
10305 * minibuffer.el (completion-category-overrides)
10306 (completion-cycle-threshold)
10307 (completion-pcm-complete-word-inserts-delimiters):
10308 * man.el (Man-name-local-regexp):
10309 * mail/feedmail.el (feedmail-display-full-frame):
10310 * international/characters.el (glyphless-char-display-control):
10311 * eshell/em-ls.el (eshell-ls-date-format):
10312 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
10313 (lisp-lambda-list-keyword-parameter-indentation)
10314 (lisp-lambda-list-keyword-parameter-alignment):
10315 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
10316 * dired-x.el (dired-omit-verbose):
10317 * cus-theme.el (custom-theme-allow-multiple-selections):
10318 * calc/calc.el (calc-highlight-selections-with-faces)
10319 (calc-lu-field-reference, calc-lu-power-reference)
10320 (calc-note-threshold):
10321 * battery.el (battery-mode-line-limit):
10322 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
10323 (archive-7z-update):
10324 * allout.el (allout-prefixed-keybindings)
10325 (allout-unprefixed-keybindings)
10326 (allout-inhibit-auto-fill-on-headline)
10327 (allout-flattened-numbering-abbreviation):
10328 * allout-widgets.el (allout-widgets-auto-activation)
10329 (allout-widgets-icons-dark-subdir)
10330 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
10331 (allout-widgets-theme-dark-background)
10332 (allout-widgets-theme-light-background)
10333 (allout-widgets-item-image-properties-emacs)
10334 (allout-widgets-item-image-properties-xemacs)
10335 (allout-widgets-run-unit-tests-on-load)
10336 (allout-widgets-time-decoration-activity)
10337 (allout-widgets-hook-error-post-time)
10338 (allout-widgets-track-decoration):
10339 Add missing :version tags to new defcustoms and defgroups.
10340
10341 * progmodes/sql.el (sql-ansi-statement-starters)
10342 (sql-oracle-statement-starters): Add custom type.
10343
10344 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
10345 (prolog-system-version): Give it a type.
10346
10347 2012-02-11 Eli Zaretskii <eliz@gnu.org>
10348
10349 * term/pc-win.el (x-select-text, x-selection-owner-p)
10350 (x-own-selection-internal, x-disown-selection-internal)
10351 (x-get-selection-internal): Sync doc strings and argument lists
10352 with xselect.c, common-win.el and x-win.el. (Bug#10783)
10353
10354 2012-02-11 Leo Liu <sdl.web@gmail.com>
10355
10356 * progmodes/python.el (python-end-of-statement): Fix infinite
10357 loop. (Bug#10788)
10358
10359 2012-02-10 Glenn Morris <rgm@gnu.org>
10360
10361 * international/mule-cmds.el (unify-8859-on-encoding-mode)
10362 (unify-8859-on-decoding-mode): Properly mark as obsolete.
10363
10364 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
10365
10366 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
10367 about SMTP before checking the From header.
10368
10369 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
10370 into own function for reuse by emacsbug.el.
10371
10372 2012-02-10 Leo Liu <sdl.web@gmail.com>
10373
10374 * subr.el (condition-case-unless-debug): Rename from
10375 condition-case-no-debug. All callers changed.
10376 (with-demoted-errors): Fix caller.
10377
10378 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
10379 * nxml/rng-valid.el (rng-do-some-validation):
10380 * emacs-lisp/package.el (package-refresh-contents)
10381 (package-menu-execute):
10382 * desktop.el (desktop-create-buffer):
10383 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
10384
10385 2012-02-10 Glenn Morris <rgm@gnu.org>
10386
10387 * textmodes/bibtex.el:
10388 Add missing :version tags for new/changed defcustoms.
10389
10390 * files.el (remote-file-name-inhibit-cache): Doc fixes.
10391
10392 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
10393
10394 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
10395 (smtpmail-via-smtp): Use it, or fall back on the From address.
10396 (smtpmail-send-it): Ditto.
10397
10398 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
10399
10400 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
10401 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
10402 (byte-compile-tmp-var): New const.
10403 (byte-compile-defvar): Use it to minimize .elc size.
10404 Just use `defvar' rather than simulate it (bug#10761).
10405
10406 2012-02-09 Glenn Morris <rgm@gnu.org>
10407
10408 * files.el (rename-uniquely): Doc fix. (Bug#3806)
10409
10410 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
10411 Add :version tags.
10412
10413 * progmodes/compile.el (compilation-error-screen-columns)
10414 (compilation-first-column, compilation-filter-start): Doc fixes.
10415
10416 * vc/log-view.el (log-view-toggle-entry-display):
10417 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
10418
10419 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
10420 (report-emacs-bug-can-use-xdg-email):
10421 (report-emacs-bug-insert-to-mailer): Doc fixes.
10422 (report-emacs-bug): Message fix.
10423
10424 * net/browse-url.el (browse-url-can-use-xdg-open)
10425 (browse-url-xdg-open): Doc fixes.
10426
10427 * electric.el (electric-indent-mode, electric-pair-mode)
10428 (electric-layout-rules, electric-layout-mode): Doc fixes.
10429 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
10430
10431 2012-02-08 Martin Rudalics <rudalics@gmx.at>
10432
10433 * server.el (server-unselect-display): Don't inadvertently kill
10434 the current buffer. (Bug#10729)
10435
10436 2012-02-08 Glenn Morris <rgm@gnu.org>
10437
10438 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
10439 (sql-list-table): Doc fixes.
10440
10441 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
10442 Comment out (does nothing).
10443
10444 * completion.el (dynamic-completion-mode):
10445 * dirtrack.el (dirtrack-debug-mode):
10446 * electric.el (electric-layout-mode):
10447 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
10448 * face-remap.el (text-scale-mode, buffer-face-mode):
10449 * iimage.el (iimage-mode):
10450 * image-mode.el (image-transform-mode):
10451 * minibuffer.el (completion-in-region-mode):
10452 * scroll-lock.el (scroll-lock-mode):
10453 * simple.el (next-error-follow-minor-mode):
10454 * tar-mode.el (tar-subfile-mode):
10455 * tooltip.el (tooltip-mode):
10456 * vcursor.el (vcursor-use-vcursor-map):
10457 * wid-browse.el (widget-minor-mode):
10458 * emulation/tpu-edt.el (tpu-edt-mode):
10459 * emulation/tpu-extras.el (tpu-cursor-free-mode):
10460 * international/iso-ascii.el (iso-ascii-mode):
10461 * language/thai-util.el (thai-word-mode):
10462 * mail/supercite.el (sc-minor-mode):
10463 * net/goto-addr.el (goto-address-mode):
10464 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
10465 * progmodes/cwarn.el (cwarn-mode):
10466 * progmodes/flymake.el (flymake-mode):
10467 * progmodes/glasses.el (glasses-mode):
10468 * progmodes/hideshow.el (hs-minor-mode):
10469 * progmodes/pascal.el (pascal-outline-mode):
10470 * textmodes/enriched.el (enriched-mode):
10471 * vc/smerge-mode.el (smerge-mode):
10472 Doc fixes (minor mode argument).
10473
10474 2012-02-07 Eli Zaretskii <eliz@gnu.org>
10475
10476 * ls-lisp.el (ls-lisp-sanitize): New function.
10477 (ls-lisp-insert-directory): Use it to fix or remove any elements
10478 in file-alist with missing attributes. (Bug#4673)
10479
10480 2012-02-07 Alan Mackenzie <acm@muc.de>
10481
10482 Fix spurious recognition of c-in-knr-argdecl.
10483
10484 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
10485 putative K&R region.
10486
10487 2012-02-07 Alan Mackenzie <acm@muc.de>
10488
10489 * progmodes/cc-engine.el (c-forward-objc-directive):
10490 Prevent looping in "#pragma mark @implementation".
10491
10492 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
10493
10494 * notifications.el (notifications-on-closed-signal): Make `reason'
10495 optional. (Bug#10744)
10496
10497 2012-02-07 Glenn Morris <rgm@gnu.org>
10498
10499 * emacs-lisp/easy-mmode.el (define-minor-mode):
10500 Doc fixes for the macro and the mode it defines.
10501
10502 * image.el (imagemagick-types-inhibit): Doc fix.
10503
10504 * cus-start.el (imagemagick-render-type): Add it.
10505
10506 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
10507
10508 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
10509 Set the default at load time, too, so that `font-lock-fontify-buffer'
10510 can be called without setting up the entire mode first. This fixes
10511 a bug in `mm-inline-text' with C MIME parts.
10512
10513 2012-02-06 Chong Yidong <cyd@gnu.org>
10514
10515 * simple.el (list-processes--refresh): Delete exited processes
10516 (Bug#8094).
10517
10518 * comint.el (comint-next-prompt): next-single-char-property-change
10519 and prev-single-char-property-change never return nil (Bug#8657).
10520
10521 * custom.el (defcustom): Doc fix (Bug#9711).
10522
10523 2012-02-05 Chong Yidong <cyd@gnu.org>
10524
10525 * cus-edit.el (custom-variable-reset-backup): Quote the value
10526 before storing it in the customized-value property (Bug#6712).
10527 (custom-display): Add a customization type tag.
10528 (custom-buffer-create-internal): Improve tooltip message.
10529
10530 * wid-edit.el (widget-field-value-get): New optional arg to
10531 suppress trailing whitespace truncation.
10532 (character): Use it (Bug#2689).
10533
10534 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
10535
10536 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
10537 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
10538
10539 2012-02-05 Chong Yidong <cyd@gnu.org>
10540
10541 * cus-edit.el (custom-variable-value-create): For mismatched
10542 types, show the current value (Bug#7600).
10543
10544 * custom.el (defcustom): Doc fix.
10545
10546 2012-02-05 Glenn Morris <rgm@gnu.org>
10547
10548 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
10549
10550 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
10551
10552 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
10553 (pp-buffer): Use `ignore-errors', `looking-at-p'.
10554 (pp-last-sexp): Use `looking-at-p'.
10555
10556 2012-02-04 Glenn Morris <rgm@gnu.org>
10557
10558 * files.el (revert-buffer):
10559 Doc fix (mention revert-buffer-in-progress-p).
10560
10561 * emacs-lisp/ert-x.el (ert-simulate-command):
10562 Check deferred-action-list (which is obsolete) is bound.
10563
10564 * subr.el (with-wrapper-hook): Doc fixes.
10565
10566 * simple.el (filter-buffer-substring-functions)
10567 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
10568
10569 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
10570
10571 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
10572 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
10573
10574 2012-02-04 Leo Liu <sdl.web@gmail.com>
10575
10576 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
10577
10578 2012-02-04 Glenn Morris <rgm@gnu.org>
10579
10580 * image.el (image-extension-data): Add obsolete alias.
10581
10582 * isearch.el (isearch-update): Doc fix.
10583
10584 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
10585
10586 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
10587
10588 2012-02-03 Glenn Morris <rgm@gnu.org>
10589
10590 * image.el (image-animated-p): Doc fix. Use image-animated-types.
10591 (image-animate-timeout): Doc fix.
10592
10593 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
10594
10595 2012-02-02 Glenn Morris <rgm@gnu.org>
10596
10597 * server.el (server-auth-dir): Doc fix.
10598 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
10599
10600 * subr.el (run-mode-hooks): Doc fix.
10601
10602 2012-02-02 Juri Linkov <juri@jurta.org>
10603
10604 * image-mode.el (image-toggle-display-image): Remove tautological
10605 `major-mode' from the `derived-mode-p' test.
10606
10607 2012-02-02 Kenichi Handa <handa@m17n.org>
10608
10609 * composite.el (compose-region): Cancel previous change.
10610
10611 2012-02-02 Kenichi Handa <handa@m17n.org>
10612
10613 * composite.el (compose-region, compose-string): Signal error for
10614 a null string component (Bug#6988).
10615
10616 2012-02-01 Chong Yidong <cyd@gnu.org>
10617
10618 * view.el (view-buffer-other-window, view-buffer-other-frame):
10619 Handle special modes like view-buffer (Bug#10650).
10620 (view-buffer): Simplify.
10621
10622 * frame.el (set-frame-font): Tweak meaning of third argument.
10623
10624 * dynamic-setting.el (font-setting-change-default-font):
10625 Use set-frame-font (Bug#9982).
10626
10627 2012-02-01 Glenn Morris <rgm@gnu.org>
10628
10629 * progmodes/compile.el (compilation-internal-error-properties):
10630 Respect compilation-first-column in the "*compilation*" buffer.
10631
10632 * emacs-lisp/easy-mmode.el (define-minor-mode):
10633 Relax :variable's test for a named function.
10634
10635 2012-01-31 Alan Mackenzie <acm@muc.de>
10636
10637 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
10638 off by one error.
10639
10640 2012-01-31 Chong Yidong <cyd@gnu.org>
10641
10642 * frame.el (set-frame-font): New arg ALL-FRAMES.
10643
10644 * menu-bar.el (menu-set-font): Use set-frame-font.
10645
10646 * faces.el (face-spec-reset-face): Don't apply unspecified
10647 attribute values to the default face.
10648
10649 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
10650
10651 * progmodes/cwarn.el (cwarn): Remove dead link.
10652 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
10653 Remove * from defcustom docstrings.
10654 (turn-on-cwarn-mode): Make obsolete.
10655 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
10656 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
10657
10658 2012-01-31 Glenn Morris <rgm@gnu.org>
10659
10660 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
10661 Fix :variable handling of mode a symbol not equal to modefun.
10662 Allow named functions to be used as the cdr of :variable.
10663
10664 2012-01-30 Glenn Morris <rgm@gnu.org>
10665
10666 * emacs-lisp/authors.el (authors-fixed-entries):
10667 Remove reference to deleted file rnewspost.el.
10668
10669 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
10670
10671 * window.el (window-with-parameter): Remove unused variable `windows'.
10672 (window--side-check): Remove unused variable `code'.
10673 (window--resize-siblings): Remove unused variable `first'.
10674 (adjust-window-trailing-edge): Remove unused variable `failed'.
10675 (window-deletable-p, window--delete): Remove unused variable `buffer'.
10676 Use `let', not `let*'.
10677 (balance-windows-2): Remove unused variable `found'.
10678 (window--state-put-2): Remove unused variable `splits'.
10679 (window-state-put): Remove unused variable `selected'.
10680 (same-window-p): Use `string-match-p'.
10681 (display-buffer-assq-regexp): Remove unused variable `value'.
10682 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
10683 Mark argument ALIST as ignored.
10684 (pop-to-buffer): Remove unused variable `old-window'.
10685
10686 2012-01-29 Eli Zaretskii <eliz@gnu.org>
10687
10688 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
10689 and .lzma compressed files.
10690
10691 2012-01-29 Chong Yidong <cyd@gnu.org>
10692
10693 * frame.el (window-system-default-frame-alist): Doc fix.
10694
10695 * dynamic-setting.el (font-setting-change-default-font): Don't
10696 change the default face if SET-FONT argument is non-nil (Bug#9982).
10697
10698 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
10699
10700 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
10701
10702 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
10703
10704 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
10705 breakpoints in files outside current directory (Bug#6098).
10706
10707 2012-01-29 Chong Yidong <cyd@gnu.org>
10708
10709 * progmodes/python.el: Require ansi-color at top-level.
10710
10711 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
10712 Define and use in Emacs Lisp mode (Bug#9360).
10713 (lisp-mode-abbrev-table): Add doc.
10714 (lisp-mode-variables): Don't set local-abbrev-table.
10715 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
10716
10717 2012-01-28 Roland Winkler <winkler@gnu.org>
10718
10719 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
10720
10721 2012-01-28 Roland Winkler <winkler@gnu.org>
10722
10723 * textmodes/bibtex.el (bibtex-entry-alist): New function.
10724 (bibtex-set-dialect): Use it. Either set global values of
10725 dialect-dependent variables or bind these variables buffer-locally
10726 (Bug#10254).
10727 (bibtex-mode): Call bibtex-set-dialect via
10728 hack-local-variables-hook.
10729 (bibtex-dialect): Update docstring.
10730 Add safe-local-variable predicate.
10731 (bibtex-entry-alist, bibtex-field-alist): Initialize via
10732 bibtex-set-dialect.
10733 (bibtex-mode-map): Define menu for each dialect.
10734 (bibtex-entry): Fix docstring.
10735
10736 2012-01-28 Chong Yidong <cyd@gnu.org>
10737
10738 * eshell/esh-arg.el (eshell-quote-argument): New function.
10739
10740 * eshell/esh-ext.el (eshell-invoke-batch-file):
10741 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
10742 first arg to eshell-parse-command (Bug#10523).
10743
10744 2012-01-28 Drew Adams <drew.adams@oracle.com>
10745
10746 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
10747 `default-directory' is non-nil.
10748
10749 2012-01-28 Eli Zaretskii <eliz@gnu.org>
10750
10751 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
10752 line that displays system-configuration-options. (Bug#9924)
10753
10754 2012-01-28 Drew Adams <drew.adams@oracle.com>
10755
10756 * descr-text.el (describe-char): Show information about POS, in
10757 addition to information about the character at POS. Improve and
10758 update the doc string. Change "code point" to "code point in
10759 charset", to avoid confusion with the character's Unicode code
10760 point shown above that. (Bug#10129)
10761
10762 2012-01-28 Eli Zaretskii <eliz@gnu.org>
10763
10764 * descr-text.el (describe-char): Show the raw character, not only
10765 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
10766 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
10767 for the reasons.
10768
10769 2012-01-28 Phil Hagelberg <phil@hagelb.org>
10770
10771 * emacs-lisp/package.el (package-install):
10772 Run package-refresh-contents if there is no archive yet (Bug#9798).
10773
10774 2012-01-28 Chong Yidong <cyd@gnu.org>
10775
10776 * emacs-lisp/package.el (package-maybe-load-descriptor):
10777 New function, split from package-maybe-load-descriptor.
10778 (package-maybe-load-descriptor): Use it.
10779 (package-download-transaction): Fully load required packages
10780 inside the loop, so that `require' calls work (Bug#10593).
10781 (package-install): No need to call package-initialize now.
10782
10783 2012-01-28 Chong Yidong <cyd@gnu.org>
10784
10785 * simple.el (deactivate-mark): Doc fix (Bug#8614).
10786
10787 * tooltip.el (tooltip-mode): Doc fix.
10788 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
10789
10790 * frame.el (set-cursor-color): Doc fix (Bug#352).
10791
10792 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
10793 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
10794
10795 * cus-edit.el (custom-buffer-create-internal): Fix search button
10796 action (Bug#10542).
10797 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
10798
10799 2012-01-27 Eduard Wiebe <usenet@pusto.de>
10800
10801 * dired.el (dired-mark-files-regexp):
10802 Include any subdirectory components. (Bug#10445)
10803
10804 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
10805
10806 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
10807 Handle [host]:port syntax. (Bug#10533)
10808
10809 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
10810
10811 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
10812
10813 2012-01-26 Glenn Morris <rgm@gnu.org>
10814
10815 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
10816 * term.el (term-raw-escape-map): Use Control-X-prefix.
10817 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
10818
10819 2012-01-25 Martin Rudalics <rudalics@gmx.at>
10820
10821 * window.el (window-state-get, window--state-get-1): Don't deal
10822 with fixed-sizeness of windows. Simplify code.
10823
10824 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
10825
10826 * window.el (window--state-get-1, window--state-put-2):
10827 Don't save and restore the mark.
10828
10829 2012-01-25 Chong Yidong <cyd@gnu.org>
10830
10831 * custom.el (custom-variable-p): Doc fix.
10832
10833 2012-01-25 Glenn Morris <rgm@gnu.org>
10834
10835 * dired.el (dired-goto-file): Handle some of the more common
10836 characters that `ls -b' escapes. (Bug#10596)
10837
10838 * progmodes/compile.el (compilation-next-error-function):
10839 Respect compilation-first-column in the "*compilation*" buffer.
10840 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
10841
10842 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
10843
10844 2012-01-24 Glenn Morris <rgm@gnu.org>
10845
10846 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
10847
10848 2012-01-24 Julien Danjou <julien@danjou.info>
10849
10850 * color.el (color-rgb-to-hsl): Fix value computing.
10851 (color-hue-to-rgb): New function.
10852 (color-hsl-to-rgb): New function.
10853 (color-clamp, color-saturate-hsl, color-saturate-name)
10854 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
10855 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
10856
10857 2012-01-24 Glenn Morris <rgm@gnu.org>
10858
10859 * vc/vc-rcs.el (vc-rcs-create-tag):
10860 * vc/vc-sccs.el (vc-sccs-create-tag):
10861 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
10862
10863 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
10864
10865 * eshell/esh-util.el (eshell-read-hosts-file):
10866 Skip comment lines. (Bug#10549)
10867
10868 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
10869
10870 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
10871
10872 * subr.el (display-delayed-warnings): Doc fix.
10873 (collapse-delayed-warnings): New function to collapse identical
10874 adjacent warnings.
10875 (delayed-warnings-hook): Add it.
10876
10877 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
10878
10879 * net/tramp.el (tramp-action-login): Set connection property "login-as".
10880
10881 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
10882 (tramp-default-user-alist): Don't add "pscp".
10883 (tramp-do-copy-or-rename-file-out-of-band): Use connection
10884 property "login-as", if set. (Bug#10530)
10885
10886 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
10887
10888 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
10889 "plink1" and "psftp". (Bug#10530)
10890
10891 2012-01-21 Kenichi Handa <handa@m17n.org>
10892
10893 * international/mule-cmds.el (prefer-coding-system): Show a
10894 warning message if the default value of file-name-coding-system
10895 was not changed.
10896
10897 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
10898
10899 * windmove.el (windmove-reference-loc):
10900 Fix windmove-reference-loc miscalculation.
10901
10902 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
10903
10904 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
10905 default unit.
10906
10907 2012-01-21 Glenn Morris <rgm@gnu.org>
10908
10909 * international/mule.el (auto-coding-alist): Add .tbz.
10910
10911 * files.el (local-enable-local-variables): Doc fix.
10912 (inhibit-local-variables-regexps): Rename from
10913 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
10914 Doc fix. Add some extensions from auto-coding-alist.
10915 (inhibit-local-variables-suffixes):
10916 Rename from inhibit-first-line-modes-suffixes. Doc fix.
10917 (inhibit-local-variables-p):
10918 New function, extracted from set-auto-mode-1.
10919 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
10920 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
10921 (hack-local-variables): Doc fix. Make the mode-only case
10922 respect enable-local-variables and friends.
10923 Respect inhibit-local-variables-regexps for file-locals, but
10924 not for directory-locals.
10925 (set-visited-file-name):
10926 Take account of inhibit-local-variables-regexps.
10927 Whether it applies may change as the file name is changed.
10928 * jka-cmpr-hook.el (jka-compr-install):
10929 * jka-compr.el (jka-compr-uninstall):
10930 Update for inhibit-first-line-modes-suffixes name change.
10931
10932 2012-01-20 Martin Rudalics <rudalics@gmx.at>
10933
10934 * help-macro.el (make-help-screen): Temporarily restore original
10935 binding for minor-mode-map-alist (Bug#10454).
10936
10937 2012-01-19 Julien Danjou <julien@danjou.info>
10938
10939 * color.el (color-name-to-rgb): Use the white color to find the max
10940 color component value and return correctly computed values.
10941 (color-name-to-rgb): Add missing float conversion for max value.
10942
10943 2012-01-19 Martin Rudalics <rudalics@gmx.at>
10944
10945 * window.el (window--state-get-1, window-state-get): Do not use
10946 special state value for window-persistent-parameters.
10947 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
10948 (window--state-put-2): Reset all window parameters to nil before
10949 assigning values of persistent parameters.
10950
10951 2012-01-18 Alan Mackenzie <acm@muc.de>
10952
10953 Eliminate sluggishness and hangs in fontification of "semicolon
10954 deserts".
10955
10956 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
10957 Change value 10000 -> 3000.
10958 (c-state-safe-place): Reformulate so it doesn't stack up an
10959 infinite number of wrong entries in c-state-nonlit-pos-cache.
10960 (c-determine-limit-get-base, c-determine-limit): New functions to
10961 determine backward search limits disregarding literals.
10962 (c-find-decl-spots): Amend commenting.
10963 (c-cheap-inside-bracelist-p): New function which detects "={".
10964
10965 * progmodes/cc-fonts.el
10966 (c-make-font-lock-BO-decl-search-function): Give a limit to a
10967 backward search.
10968 (c-font-lock-declarations): Fix an occurrence of point being
10969 undefined. Check additionally for point being in a bracelist or
10970 near a macro invocation without a semicolon so as to avoid a
10971 fruitless time consuming search for a declarator. Give a more
10972 precise search limit for declarators using the new
10973 c-determine-limit.
10974
10975 2012-01-18 Glenn Morris <rgm@gnu.org>
10976
10977 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
10978 (set-auto-mode): Doc fixes.
10979
10980 2012-01-17 Glenn Morris <rgm@gnu.org>
10981
10982 * isearch.el (search-nonincremental-instead): Fix doc typo.
10983
10984 * dired.el (dired-insert-directory): Handle newlines in directory name.
10985 (dired-build-subdir-alist): Unescape newlines in directory name.
10986
10987 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
10988
10989 * net/tramp.el (tramp-local-end-of-line): New defcustom.
10990 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
10991 (tramp-action-terminal): Use it. (Bug#10530)
10992
10993 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
10994
10995 * minibuffer.el (completion--replace): Strip properties (bug#10062).
10996
10997 2012-01-16 Martin Rudalics <rudalics@gmx.at>
10998
10999 * window.el (window-state-ignored-parameters): Remove variable.
11000 (window--state-get-1): Rename argument MARKERS to IGNORE.
11001 Handle persistent window parameters. Make copy of clone-of
11002 parameter only if requested. (Bug#10348)
11003 (window--state-put-2): Install a window parameter only if it has
11004 a non-nil value or an existing parameter shall be overwritten.
11005
11006 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
11007
11008 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
11009
11010 2012-01-14 Eli Zaretskii <eliz@gnu.org>
11011
11012 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
11013 don't pass the (nil) value of `upnode' to string-match.
11014
11015 2012-01-14 Chong Yidong <cyd@gnu.org>
11016
11017 * startup.el (command-line): Fix X resource class for cursorColor.
11018 Fix values recognized by the cursorBlink resource.
11019
11020 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
11021
11022 * epg.el (epg--make-temp-file): Avoid permission race condition
11023 when running on old Emacs versions (bug#10403).
11024
11025 2012-01-14 Glenn Morris <rgm@gnu.org>
11026
11027 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
11028
11029 2012-01-13 Alan Mackenzie <acm@muc.de>
11030
11031 Fix filling for when filladapt mode is enabled.
11032
11033 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
11034 c-mask-paragraph, pass in `fill-paragraph' rather than
11035 `fill-region-as-paragraph'. (This is a reversion of a previous
11036 change.)
11037 * progmodes/cc-mode.el (c-basic-common-init):
11038 Make fill-paragraph-handle-comment buffer local and set it to nil.
11039
11040 2012-01-13 Glenn Morris <rgm@gnu.org>
11041
11042 * dired.el (dired-switches-escape-p): New function.
11043 (dired-insert-directory): Use dired-switches-escape-p.
11044 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
11045
11046 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
11047
11048 2012-01-12 Glenn Morris <rgm@gnu.org>
11049
11050 * mail/sendmail.el (mail-mode): Update paragraph-separate for
11051 changes in adaptive-fill-regexp. (Bug#10276)
11052
11053 2012-01-11 Alan Mackenzie <acm@muc.de>
11054
11055 Fix Emacs bug #10463 - put `widen's around the critical spots.
11056
11057 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
11058 widen around each invocation of c-state-pp-to-literal. Remove an
11059 unused let variable.
11060
11061 2012-01-11 Glenn Morris <rgm@gnu.org>
11062
11063 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
11064 Doc fix.
11065
11066 2012-01-10 Chong Yidong <cyd@gnu.org>
11067
11068 * net/network-stream.el (network-stream-open-starttls):
11069 Avoid emitting a confusing error message when the server gives a bad
11070 response to the capability command.
11071
11072 2012-01-10 Glenn Morris <rgm@gnu.org>
11073
11074 * mail/unrmail.el (unrmail): Tweak previous change.
11075
11076 2012-01-09 Chong Yidong <cyd@gnu.org>
11077
11078 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
11079
11080 2012-01-08 Alan Mackenzie <acm@muc.de>
11081
11082 Optimise font locking in long enum definitions.
11083
11084 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
11085 arm to a cond form to handle enums.
11086 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
11087 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
11088
11089 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
11090
11091 * files.el (move-file-to-trash): Preserve default file modes on error.
11092 (Bug#10401)
11093
11094 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11095
11096 * faces.el (set-face-attribute): Clarify the meaning of the nil
11097 frame (bug#10294).
11098
11099 * subr.el (with-selected-frame): Mention that the selected frame
11100 is restored (bug#9980).
11101
11102 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
11103 (bug#9759).
11104
11105 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
11106 (password-read): Don't autoload unused function.
11107
11108 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
11109
11110 * progmodes/which-func.el (which-func-mode): Turn into a
11111 non-interactive function and mark as obsolete (bug#10428).
11112
11113 2012-01-06 Chong Yidong <cyd@gnu.org>
11114
11115 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
11116 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
11117 functions, along with 1 and -1.
11118
11119 2012-01-06 Eli Zaretskii <eliz@gnu.org>
11120
11121 * time.el (display-time-load-average)
11122 (display-time-default-load-average): Doc fixes. See the thread
11123 starting at
11124 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
11125 for the details.
11126
11127 2012-01-06 Glenn Morris <rgm@gnu.org>
11128
11129 * mail/unrmail.el (unrmail): Give an explicit error if the input file
11130 has no messages. (Bug#10377)
11131
11132 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
11133 than Info-edit. (Bug#10385)
11134
11135 * time.el (display-time-load-average, display-time-next-load-average):
11136 Doc fixes.
11137
11138 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
11139 local setting of buffer-read-only to the input buffer. (Bug#10419)
11140
11141 * calendar/calendar.el (calendar-mode):
11142 Locally set scroll-margin to 0. (Bug#10379)
11143
11144 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
11145
11146 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
11147
11148 2012-01-05 Glenn Morris <rgm@gnu.org>
11149
11150 * eshell/em-unix.el (diff-no-select): Autoload it.
11151 (eshell/diff): Use diff-no-select. (Bug#10420)
11152
11153 2012-01-05 Chong Yidong <cyd@gnu.org>
11154
11155 * shell.el (shell-dynamic-complete-functions): Revert last change.
11156 (shell-command-completion-function): New function.
11157 (shell-completion-vars): Use it to implement
11158 shell-completion-execonly (Bug#10417).
11159
11160 * custom.el (enable-theme): Don't set custom-safe-themes.
11161
11162 * cus-theme.el (custom-theme-merge-theme):
11163 Ignore custom-enabled-themes and custom-safe-themes.
11164
11165 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
11166
11167 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
11168 first prompt in `sql-interacive-mode'.
11169 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
11170 keywords.
11171 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
11172 (sql-product-interactive): Bug fix: Set `sql-buffer' in
11173 context of original buffer. Invoke `sql-login-hook'.
11174
11175 2012-01-04 Eli Zaretskii <eliz@gnu.org>
11176
11177 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
11178 letters in cite-prefix.
11179
11180 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11181
11182 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
11183
11184 2012-01-03 Chong Yidong <cyd@gnu.org>
11185
11186 * shell.el (shell-dynamic-complete-functions):
11187 Put pcomplete-completions-at-point, so as to try
11188 comint-filename-completion first (Bug#10417).
11189
11190 2012-01-02 Richard Stallman <rms@gnu.org>
11191
11192 * battery.el (battery-status-function):
11193 Detect when to use battery-yeeloong-sysfs.
11194 (battery-echo-area-format): Add string for Yeeloong.
11195 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
11196 (battery-yeeloong-sysfs): New function.
11197
11198 2012-01-02 Chong Yidong <cyd@gnu.org>
11199
11200 * dirtrack.el (dirtrack-list): Eliminate unused third element.
11201 (dirtrack): Merge code for handling relative filenames in prompt
11202 from shell-dir-cookie-watcher.
11203 (dirtrack-debug-message): New arg to avoid excess format calls.
11204
11205 * shell.el (shell-dir-cookie-re): Variable deleted.
11206 (shell-dir-cookie-watcher): Function deleted.
11207 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
11208 with dirtrack-mode.
11209
11210 2012-01-01 Eli Zaretskii <eliz@gnu.org>
11211
11212 * term/w32-win.el (dynamic-library-alist) <gnutls>:
11213 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
11214 libgnutls-26.dll.
11215
11216 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
11217
11218 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
11219
11220 2011-12-31 Eli Zaretskii <eliz@gnu.org>
11221
11222 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
11223 headers of non-MIME messages, when rmail-enable-mime is non-nil.
11224
11225 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
11226
11227 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
11228 also for alternative shells.
11229 (tramp-open-connection-setup-interactive-shell): Check, whether
11230 the shell is a busybox.
11231 (tramp-send-command): Don't suppress multiple prompts for
11232 busyboxes, it hurts.
11233
11234 2011-12-28 Chong Yidong <cyd@gnu.org>
11235
11236 * progmodes/gdb-mi.el (gdb-get-source-file-list)
11237 (gdb-get-source-file): Move mode line update to
11238 gdb-get-source-file (Bug#10087).
11239
11240 2011-12-25 Chong Yidong <cyd@gnu.org>
11241
11242 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
11243 gud-gdb-marker-filter without taking it as an argument.
11244 (gud-gdb-run-command-fetch-lines): Caller changed.
11245 (gud-gdb-completion-function): New variable.
11246 (gud-gdb-completion-at-point): Use it.
11247 (gud-gdb-completions-1): Split from gud-gdb-completions.
11248
11249 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
11250 function as separate arguments.
11251 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
11252 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
11253 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
11254 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
11255 (gdb-stopped, def-gdb-auto-update-trigger)
11256 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
11257 (gdb-get-changed-registers, gdb-get-main-selected-frame):
11258 Callers changed.
11259 (gud-gdbmi-completions): New function.
11260 (gdb): Use it for generating the completion table.
11261
11262 2011-12-24 Alan Mackenzie <acm@muc.de>
11263
11264 Introduce a mechanism to widen the region used in context font
11265 locking. Use this to protect declarations from losing their contexts.
11266
11267 * progmodes/cc-langs.el (c-before-font-lock-functions):
11268 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
11269 (c-before-context-fontification-functions): New defvar, a list of
11270 functions to be run just before context (etc.) font locking.
11271
11272 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
11273 New, functionality extracted from
11274 c-neutralize-syntax-in-and-mark-CPP.
11275 (c-in-after-change-fontification): New variable.
11276 (c-after-change): Set c-in-after-change-fontification.
11277 (c-set-fl-decl-start): Rejig its interface, so it can be called
11278 from both after-change and context fontifying.
11279 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
11280 New functions.
11281 (c-standard-font-lock-fontify-region-function): New variable.
11282 (c-font-lock-fontify-region): New function.
11283
11284 2011-12-24 Juri Linkov <juri@jurta.org>
11285
11286 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
11287 (Bug#10348)
11288
11289 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
11290
11291 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
11292 existence of source file. (Bug#10325)
11293
11294 2011-12-23 Alan Mackenzie <acm@muc.de>
11295
11296 Fix unstable fontification inside templates.
11297
11298 * progmodes/cc-langs.el (c-before-font-lock-functions):
11299 Newly created from the singular version. The (c c++ objc) entry now
11300 additionally has c-set-fl-decl-start. The other languages (apart
11301 from AWK) have that as a single entry.
11302
11303 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
11304 The functionality for "local" declarations has been extracted to
11305 c-set-fl-decl-start.
11306
11307 * progmodes/cc-mode.el (c-common-init, c-after-change):
11308 Changes due to pluralisation of c-before-font-lock-functions.
11309 (c-set-fl-decl-start): New function, extracted from
11310 c-font-lock-enclosing-decls and enhanced.
11311
11312 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
11313
11314 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
11315
11316 2011-12-22 Juri Linkov <juri@jurta.org>
11317
11318 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
11319
11320 2011-12-22 Chong Yidong <cyd@gnu.org>
11321
11322 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
11323
11324 2011-12-21 Drew Adams <drew.adams@oracle.com>
11325
11326 * files.el (file-remote-p): Fix docstring. (Bug#10319)
11327
11328 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11329
11330 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
11331
11332 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
11333
11334 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
11335 highlighting and support. Fix up comments for capitalization.
11336 (cfengine-mode-debug): New var.
11337 (cfengine3-mode): Change the modeline indicator to "CFE3".
11338 (cfengine3-font-lock-keywords): Improve defun highlighting.
11339 (cfengine2-actions): Rename from `cfengine-actions'.
11340 (cfengine2-font-lock-keywords): Rename from
11341 `cfengine-font-lock-keywords'.
11342 (cfengine2-imenu-expression): Rename from
11343 `cfengine-imenu-expression'.
11344 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
11345 (cfengine2-beginning-of-defun): Rename from
11346 `cfengine-beginning-of-defun'.
11347 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
11348 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
11349 (cfengine2-mode): Rename from `cfengine-mode'. Change the
11350 modeline indicator to "CFE2".
11351 (cfengine-mode): Defalias to `cfengine-auto-mode'.
11352 (cfengine-mode-abbrevs): Mark obsolete.
11353
11354 2011-12-21 Chong Yidong <cyd@gnu.org>
11355
11356 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
11357 filename argument.
11358
11359 2011-12-20 Martin Rudalics <rudalics@gmx.at>
11360
11361 * window.el (window-normalize-buffer-to-display): Remove.
11362 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
11363
11364 2011-12-19 Chong Yidong <cyd@gnu.org>
11365
11366 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
11367 Don't signal an error in a predicate function; return non-nil.
11368 (vc-dir-mark-file): Move the error here.
11369 (vc-dir-mark-unmark): If acting on the region, keep going if one
11370 of the entries cannot be marked/unmarked.
11371 (vc-dir-mark-all-files): If current entry is a directory, mark
11372 only child files, as documented.
11373
11374 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
11375
11376 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
11377 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
11378 addition.
11379
11380 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
11381
11382 * term/ns-win.el (ns-get-selection-internal)
11383 (ns-store-selection-internal): Declare.
11384 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
11385 Declare as obsolete.
11386 (ns-get-pasteboard, ns-paste-secondary):
11387 Use ns-get-selection-internal.
11388 (ns-set-pasteboard, ns-copy-including-secondary):
11389 Use ns-store-selection-internal.
11390
11391 2011-12-17 Chong Yidong <cyd@gnu.org>
11392
11393 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
11394 (vc-deduce-fileset): Doc fix.
11395
11396 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
11397
11398 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
11399
11400 2011-12-13 Sam Steingold <sds@gnu.org>
11401
11402 * man.el (Man-getpage-in-background): When running under a
11403 window-system, ignore $MANWIDTH and $COLUMNS.
11404
11405 2011-12-15 Kenichi Handa <handa@m17n.org>
11406
11407 * language/ethio-util.el: Change coding tag to utf-8-emacs.
11408 (setup-ethiopic-environment-internal): Comment out key-binding for
11409 ethio-toggle-punctuation.
11410
11411 2011-12-13 Alan Mackenzie <acm@muc.de>
11412
11413 Add the switch statement to AWK Mode.
11414
11415 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
11416 "default" to the keywords regexp.
11417
11418 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
11419 expression as the rest.
11420 (c-nonlabel-token-key): Allow string literals for AWK.
11421 Refactor for the other modes.
11422
11423 Large brace-block initialisation makes CC Mode slow: Fix.
11424 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
11425 routines. Limit backward searching in c-font-lock-enclosing.decl.
11426
11427 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
11428 pp-state and literal type in addition to the limits.
11429 (c-state-safe-place): New defun, extracted from c-state-literal-at.
11430 (c-state-literal-at): Use the above new defun.
11431 (c-slow-in-literal, c-fast-in-literal): Remove.
11432 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
11433
11434 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
11435 being in a literal. Add a limit for backward searching.
11436
11437 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
11438 c-slow-in-literal.
11439
11440 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
11441
11442 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
11443
11444 2011-12-13 Martin Rudalics <rudalics@gmx.at>
11445
11446 * window.el (delete-other-windows): Use correct frame in call to
11447 window-with-parameter.
11448
11449 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
11450
11451 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
11452 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
11453 (makefile-gmake-statements, makefile-makepp-statements):
11454 Use it and add new makepp keywords.
11455 (makefile-makepp-font-lock-keywords): Add new patterns.
11456 (makefile-match-function-end): Match new [...] and [[...]].
11457
11458 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
11459
11460 * ses.el (ses-call-printer-return, ses-cell-property-get)
11461 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
11462 (ses-create-cell-variable, ses-reset-header-string)
11463 (ses-cell-set-formula, ses-repair-cell-reference-all)
11464 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
11465 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
11466 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
11467 (ses-aset-with-undo, ses-load, ses-truncate-cell)
11468 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
11469 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
11470 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
11471 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
11472 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
11473 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
11474 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
11475 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
11476
11477 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
11478
11479 * ses.el: The overall change is to add cell renaming, that is
11480 setting fancy names for cell symbols other than name matching
11481 "\\`[A-Z]+[0-9]+\\'" regexp .
11482 (ses-create-cell-variable): New defun.
11483 (ses-relocate-formula): Relocate formulas only for cells the
11484 symbols of which are not renamed, i.e. symbols whose names do not
11485 match regexp "\\`[A-Z]+[0-9]+\\'".
11486 (ses-relocate-all): Relocate values only for cells the symbols of
11487 which are not renamed.
11488 (ses-load): Create cells variables as the (ses-cell ...) are read,
11489 in order to check row col consistency with cell symbol name only
11490 for cells that are not renamed.
11491 (ses-replace-name-in-formula): New defun.
11492 (ses-rename-cell): New defun.
11493
11494 2011-12-11 Chong Yidong <cyd@gnu.org>
11495
11496 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
11497 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
11498
11499 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
11500
11501 * window.el (other-window): Fix docstring.
11502
11503 2011-12-10 Eli Zaretskii <eliz@gnu.org>
11504
11505 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
11506 `from' or `to' address before taking its substring.
11507 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
11508 encoded name is chopped in the middle of the encoded string, and
11509 thus displayed encoded.
11510
11511 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
11512
11513 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
11514
11515 2011-12-10 Eli Zaretskii <eliz@gnu.org>
11516
11517 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
11518 to use texinfo-update-node and commands that call it if the
11519 Texinfo file uses @node lines without next/prev/up pointers.
11520 Correct outdated description about texinfo-master-menu.
11521 (texinfo-all-menus-update, texinfo-master-menu)
11522 (texinfo-update-node, texinfo-every-node-update)
11523 (texinfo-multiple-files-update): Doc fix. Warn against updating
11524 all the @node lines.
11525 (texinfo-master-menu): Only call texinfo-update-node if the prefix
11526 argument is numeric. Explain better in the doc string what the
11527 function really does.
11528 (texinfo-insert-master-menu-list): Improve the error message
11529 displayed if there's no menu in the Top node.
11530 (Bug#2975) See also this thread:
11531 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
11532
11533 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
11534
11535 * speedbar.el (speedbar-supported-extension-expressions):
11536 Add .adb and .ads, commonly used for Ada source code (bug#10256).
11537
11538 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
11539
11540 * printing.el (pr-mode-alist):
11541 * simple.el (filter-buffer-substring-functions)
11542 (completion-list-insert-choice-function):
11543 * window.el (window-with-parameter, window-atom-root)
11544 (window-sides-slots, window-size-fixed, window-min-delta)
11545 (window-max-delta, window--resize-mini-window)
11546 (window--resize-child-windows-normal, window-tree)
11547 (delete-other-windows, quit-window, split-window)
11548 (display-buffer-record-window, special-display-buffer-names)
11549 (special-display-regexps, special-display-popup-frame)
11550 (same-window-p, split-window-sensibly)
11551 (display-buffer-overriding-action, display-buffer-alist)
11552 (display-buffer-base-action, display-buffer, switch-to-buffer)
11553 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
11554 (fit-window-to-buffer, recenter-positions)
11555 (mouse-autoselect-window-state, mouse-autoselect-window-select):
11556 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
11557 and remove unneeded backslashes in docstrings.
11558
11559 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
11560
11561 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
11562
11563 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
11564 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
11565 end in ".mk".
11566 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
11567 when reading the makefile (bug#10116).
11568
11569 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
11570
11571 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
11572 (bug#10116).
11573
11574 2011-12-06 Glenn Morris <rgm@gnu.org>
11575
11576 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
11577
11578 2011-12-06 Chong Yidong <cyd@gnu.org>
11579
11580 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
11581
11582 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
11583
11584 * textmodes/table.el (table-shorten-cell): Fix typo.
11585
11586 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
11587
11588 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
11589
11590 2011-12-05 Eli Zaretskii <eliz@gnu.org>
11591
11592 * descr-text.el (describe-char): Fix display of strong
11593 right-to-left characters and directional embeddings and overrides.
11594
11595 * simple.el (what-cursor-position): Fix display of codepoints of
11596 strong right-to-left characters.
11597
11598 2011-12-05 Chong Yidong <cyd@gnu.org>
11599
11600 * faces.el (read-color): Doc fix.
11601
11602 2011-12-05 Glenn Morris <rgm@gnu.org>
11603
11604 * align.el (align--set-marker): Add doc-string.
11605 Don't try to move something that is not a marker. (Bug#10216)
11606
11607 2011-12-04 Glenn Morris <rgm@gnu.org>
11608
11609 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
11610 overly zealous deletion of trailing whitespace.
11611
11612 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
11613
11614 * server.el (server-delete-client): On Windows, do not try to delete
11615 the only terminal.
11616 (server-process-filter): On Windows, treat requests for a tty frame as
11617 if they were for a GUI frame if the running server is in GUI mode.
11618
11619 2011-12-03 Glenn Morris <rgm@gnu.org>
11620
11621 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
11622
11623 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
11624
11625 * electric.el: Streamline electric-indent's hook.
11626 (electric-indent-chars): Revert to simple list.
11627 (electric-indent-functions): New var.
11628 (electric-indent-post-self-insert-function): Use it.
11629
11630 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
11631 there's no inferior buffer (bug#10196).
11632 (prolog-consult-compile): Don't use toggle-read-only.
11633
11634 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
11635
11636 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
11637 interrupt. (Bug#10187)
11638
11639 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
11640
11641 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
11642 (bug#9160).
11643
11644 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
11645 (bug#10191).
11646
11647 2011-12-02 Juri Linkov <juri@jurta.org>
11648
11649 * info.el (Info-search): Display "end of manual" when Isearch
11650 reaches the end of single-file Info manual. (Bug#9918)
11651
11652 2011-12-02 Eli Zaretskii <eliz@gnu.org>
11653
11654 * isearch.el (isearch-message-prefix): Run the input method part
11655 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
11656
11657 2011-12-02 Juri Linkov <juri@jurta.org>
11658
11659 * isearch.el (isearch-occur): Use `word-search-regexp' for
11660 `isearch-word'.
11661 (isearch-search-and-update): Add condition for `isearch-word' and
11662 call `word-search-regexp'. (Bug#10145)
11663
11664 2011-12-01 Glenn Morris <rgm@gnu.org>
11665
11666 * eshell/em-hist.el (eshell-hist-initialize):
11667 Handle eshell-history-size nil and HISTSIZE set or unset.
11668 (eshell-history-file-name, eshell-history-size): Fix custom type.
11669
11670 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
11671
11672 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
11673
11674 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
11675
11676 * progmodes/verilog-mode.el (verilog-pretty-expr):
11677 Rework verilog-pretty-expr to handle new assignment operators in system
11678 verilog, such as += *= and the like.
11679 (verilog-assignment-operator-re): Regular expression to find the
11680 assigment operator in a verilog assignment.
11681 (verilog-assignment-operation-re): Regular expression to find an
11682 assignment statement for pretty-expr.
11683 (verilog-in-attribute-p): Query returns true if point is in an
11684 attribute context; used to skip these for expression line up from
11685 pretty-expr.
11686 (verilog-in-parameter-p): Query returns true if point is in an
11687 parameter definition context; used to skip these for expression
11688 line up from pretty-expr.
11689 (verilog-in-parenthesis-p): Query returns true if point is in a
11690 parenthetical expression, specifically ( ) but not [ ] or { };
11691 used by pretty-expr.
11692 (verilog-just-one-space): If there is no space, don't add one.
11693 (verilog-get-lineup-indent-2): Specifically skip just attribute
11694 contexts for expression lineup, rather than skipping all
11695 parenthetical expressions.
11696 (verilog-calculate-indent): Fix comment, and fix indent.
11697 (verilog-do-indent): Indent declarations in lists (suggested by
11698 Joachim Lechner).
11699 (verilog-mode-abbrev-table): Populate abbrev mode with the various
11700 skeleton items.
11701 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
11702 by Alain Mellan).
11703
11704 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
11705
11706 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
11707 parameters with embedded comments. Reported by Ray Stevens.
11708 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
11709 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
11710 Reported by Tim Holt.
11711 (verilog-auto): Fix AUTOing a upper module then AUTOing module
11712 instantiated by upper module causing wrong expansion until AUTOed a
11713 second time. Reported by K C Buckenmaier.
11714 (verilog-diff-auto): Fix showing .* as a difference when
11715 `verilog-auto-star-save' off. Reported by Dan Dever.
11716 (verilog-auto-reset, verilog-read-always-signals)
11717 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
11718 temporary signals in reset list if
11719 verilog-auto-reset-blocking-in-non is nil, and match assignment
11720 style to each signal's assignment type, bug381.
11721 Reported by Thomas Esposito.
11722 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
11723 (verilog-uvm-statement-re): Support UVM indentation and
11724 highlighting, with old OVM keywords only.
11725 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
11726 Support AUTOTIEOFF creating non-wire data types.
11727 Suggested by Jonathan Greenlaw.
11728 (verilog-auto-insert-lisp, verilog-delete-to-paren)
11729 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
11730 (verilog-inject-sense, verilog-read-inst-pins)
11731 (verilog-read-sub-decls, verilog-read-sub-decls-line):
11732 Fix mismatching parenthesis inside commented out code when deleting
11733 AUTOINST, bug383. Reported by Jonathan Greenlaw.
11734 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
11735 non-numeric vector width. Reported by Alex Reed.
11736 (verilog-auto-ascii-enum): Add "onehot" option to work around not
11737 detecting signals with parameter widths. Reported by Alex Reed.
11738 (verilog-auto-delete-trailing-whitespace):
11739 With `verilog-auto-delete-trailing-whitespace' remove trailing
11740 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
11741 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
11742 Fix verilog-scan-cache corruption when running user AUTO expansion
11743 hooks that call indentation routines.
11744 (verilog-simplify-range-expression): Fix typo ignoring lower case
11745 identifiers.
11746 (verilog-delete-auto): Fix delete-autos to also remove user created
11747 automatics, as long as they start with AUTO.
11748 (verilog-batch-diff-auto, verilog-diff-auto)
11749 (verilog-diff-function): Add `verilog-diff-auto' and bind to
11750 "C-c?" to report differences in AUTO expansion, ignoring spaces.
11751 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
11752 (verilog-in-paren-quick, verilog-re-search-backward-quick)
11753 (verilog-re-search-forward-quick, verilog-syntax-ppss):
11754 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
11755 is disabled and its cache will get corrupt, causing AUTOS not to
11756 expand. Instead use only -quick functions.
11757 (verilog-scan-region): Fix scanning over escaped quotes.
11758 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
11759 (verilog-re-search-backward-quick)
11760 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
11761 related functions now ignore strings, to fix misparsing of strings
11762 with magic comments embedded in them.
11763 (verilog-read-auto-template):
11764 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
11765 Reported by Brad Dobbie.
11766 (verilog-read-auto-template):
11767 Fix 'verilog-auto-inst-template-numbers' with comments.
11768 Reported by Brad Dobbie.
11769 (verilog-auto-inst, verilog-auto-inst-param)
11770 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
11771 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
11772 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
11773 debugging templates without merge conflicts, bug357.
11774 Reported by Brad Dobbie.
11775 (verilog-read-auto-template):
11776 Fix verilog-auto-inst-template-numbers with multiple templates.
11777 Reported by Brad Dobbie.
11778 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
11779 abbrevs so user won't be asked to save.
11780 (verilog-read-auto-lisp-present): Fix to start at beginning of
11781 buffer in case called outside of verilog-auto.
11782 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
11783 to "X-2". Reported by Matthew Myers.
11784 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
11785 all inputs from module templates. Reported by Leith Johnson.
11786 (verilog-module-inside-filename-p): Fix locating programs as with
11787 modules.
11788 (verilog-auto-inst-port): Fix vl-width expressions when using
11789 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
11790 (verilog-decls-get-regs, verilog-decls-get-signals,
11791 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
11792 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
11793 verilog-read-decls): Combine reg and wire structures into one var
11794 structure to represent SystemVerilog concepts.
11795 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
11796 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
11797 (verilog-auto-wire-type, verilog-insert-definition):
11798 Add verilog-auto-wire-type and AUTOLOGIC to support using
11799 SystemVerilog "logic" keyword instead of "wire"/"reg".
11800 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
11801 to declares outputs that also have assignments (presumably in an
11802 ifdef or generate if so there's not a driver conflict).
11803 Reported by Matthew Myers.
11804 (verilog-auto-declare-nettype, verilog-insert-definition):
11805 Add verilog-auto-declare-nettype to fix declarations using
11806 `default_nettype none. Reported by Julian Gorfajn.
11807 (verilog-read-always-signals-recurse, verilog-read-decls)
11808 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
11809 malformed end statement, bug325. Reported by Joshua Wise and
11810 Andrew Drake.
11811 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
11812 (verilog-inst-comment-re): Fix not deleting Interfaced comment
11813 when expanding .* in interfaces, bug320.
11814 Reported by Pierre-David Pfister.
11815 (verilog-read-module-name): Fix import statements between module
11816 name and open parenthesis, bug317.
11817 Reported by Pierre-David Pfister.
11818 (verilog-simplify-range-expression): Fix simplification of
11819 multiplications inside AUTOWIRE connections, bug303.
11820 (verilog-auto-inst-port): Support parameter expansion in
11821 multidimensional arrays.
11822 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
11823 after "assert property". Reported by Julian Gorfajn.
11824 (verilog-simplify-range-expression): Fix "couldn't merge" errors
11825 with multiplication, bug303.
11826 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
11827 Reported by Jan Frode Lonnum.
11828
11829 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
11830
11831 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
11832 (hfy-shell-file-name, hfy-shell):
11833 * international/fontset.el (x-decompose-font-name): Fix typos.
11834
11835 2011-11-29 Ken Brown <kbrown@cornell.edu>
11836
11837 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
11838 (gdb-version): Remove defvar.
11839 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
11840 (gdb-gud-context-command, gdb-non-stop-handler)
11841 (gdb-current-context-command, gdb-stopped): Use it.
11842 (gdb-init-1): Enable pretty printing here.
11843 (gdb-non-stop-handler): Don't enable pretty-printing here.
11844 Check to see if the target supports non-stop mode; if not, turn off
11845 non-stop mode. Use the following.
11846 (gdb-check-target-async): New defun.
11847 (gud-watch, gdb-stopped): Fix whitespace.
11848 (gdb-get-source-file): Don't try to display the source file if
11849 `gdb-main-file' is nil.
11850
11851 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
11852
11853 * align.el: Try to generate fewer markers (bug#10047).
11854 (align--set-marker): New macro.
11855 (align-region): Use it.
11856
11857 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
11858
11859 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
11860
11861 2011-11-29 Chong Yidong <cyd@gnu.org>
11862
11863 * indent.el (indent-for-tab-command, indent-according-to-mode):
11864 Doc fix.
11865 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
11866
11867 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
11868
11869 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
11870 aware of remote file names. (Bug#10124)
11871
11872 2011-11-29 Chong Yidong <cyd@gnu.org>
11873
11874 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
11875
11876 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
11877
11878 * files.el (find-file): Don't use force-same-window (bug#10144).
11879 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
11880 use pop-to-buffer if the selected window can't be used.
11881 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
11882
11883 2011-11-28 Eli Zaretskii <eliz@gnu.org>
11884
11885 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
11886 special-mode-map.
11887
11888 2011-11-28 Chong Yidong <cyd@gnu.org>
11889
11890 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
11891
11892 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
11893
11894 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
11895 gdb-get-source-file-list on gdb-create-source-file-list.
11896
11897 2011-11-26 Eli Zaretskii <eliz@gnu.org>
11898
11899 * whitespace.el (whitespace-newline): Use a different foreground
11900 color for 16-color light-background displays.
11901
11902 2011-11-24 Chong Yidong <cyd@gnu.org>
11903
11904 * window.el (display-buffer--special-action): Doc fix.
11905
11906 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
11907
11908 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
11909 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
11910 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
11911 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
11912 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
11913 (avl-tree-stack-first):
11914 * emacs-lisp/cconv.el (cconv--analyse-use):
11915 * net/gnutls.el (gnutls-negotiate): Fix typos.
11916
11917 2011-11-24 Glenn Morris <rgm@gnu.org>
11918
11919 * lpr.el (lpr-windows-system, lpr-lp-system):
11920 * mail/binhex.el (binhex-begin-line):
11921 * progmodes/grep.el (grep-history, grep-find-history):
11922 * textmodes/flyspell.el:
11923 * vc/pcvs-defs.el (cvs-global-menu):
11924 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
11925 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
11926 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
11927
11928 * net/tls.el: Fix case of "GnuTLS".
11929
11930 * paths.el (rmail-file-name): Format doc-string for make-docfile.
11931
11932 * version.el (emacs-build-system): Give it a doc-string.
11933
11934 2011-11-24 Juri Linkov <juri@jurta.org>
11935
11936 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
11937
11938 2011-11-24 Glenn Morris <rgm@gnu.org>
11939
11940 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
11941 if called on a non-mime message just toggle the headers. (Bug#8006)
11942
11943 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
11944
11945 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
11946 (allout-lead-with-comment-string, allout-structure-deleted-hook)
11947 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
11948 (allout-rebullet-heading, allout-open-sibtopic)
11949 (allout-toggle-current-subtree-encryption)
11950 (allout-toggle-subtree-encryption, allout-encrypt-string)
11951 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
11952 (allout-distinctive-bullets-string, allout-auto-activation):
11953 * window.el (window-normalize-buffer-to-display):
11954 * progmodes/verilog-mode.el (verilog-batch-indent):
11955 * textmodes/bibtex.el (bibtex-field-braces-opt)
11956 (bibtex-field-strings-opt):
11957 * vc/cvs-status.el (cvs-tree-merge):
11958 Fix typos.
11959
11960 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
11961
11962 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
11963 `non-essential' to t, in order to avoid remote connections.
11964
11965 2011-11-23 Eli Zaretskii <eliz@gnu.org>
11966
11967 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
11968 On MS-DOS and MS-Windows, compare with loaddefs.el
11969 case-insensitively.
11970
11971 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
11972
11973 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
11974
11975 2011-11-23 Glenn Morris <rgm@gnu.org>
11976
11977 * paths.el (rmail-file-name): Reformat the doc-string so that it
11978 is picked up.
11979
11980 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
11981 (rmail-auto-file): Ignore case in the "special" field names,
11982 as mail-fetch-field does for all others.
11983
11984 * mail/rmail.el (rmail-forward):
11985 * mail/rmailkwd.el (rmail-set-label):
11986 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
11987 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
11988
11989 * mail/rmail.el (rmail-current-message): Doc fix.
11990
11991 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
11992
11993 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
11994
11995 * server.el (server-eval-and-print): Allow C-g (bug#6585).
11996
11997 2011-11-22 Glenn Morris <rgm@gnu.org>
11998
11999 * mail/rmailmm.el (test-rmail-mime-handler)
12000 (test-rmail-mime-bulk-handler)
12001 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
12002
12003 2011-11-21 Juri Linkov <juri@jurta.org>
12004
12005 * calc/calc.el (calc-read-key-sequence):
12006 Let-bind `input-method-function' to nil. (Bug#10018)
12007
12008 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12009
12010 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
12011 Tell the caller that the next line needs recomputation, even
12012 though it doesn't start a sexp (bug#10094).
12013
12014 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
12015
12016 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
12017
12018 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12019
12020 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
12021 Use force-same-window.
12022
12023 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12024
12025 * descr-text.el (describe-char-unicode-data):
12026 * json.el (json-string-escape):
12027 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
12028 (Footnote-unicode, Footnote-style-p):
12029 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
12030
12031 2011-11-20 Chong Yidong <cyd@gnu.org>
12032
12033 * window.el (replace-buffer-in-windows): Restore interactive spec.
12034
12035 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12036
12037 * electric.el (electric-indent-mode): Fix last change (too optimistic).
12038
12039 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
12040 (byte-compile-global-not-obsolete-vars): New var.
12041 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
12042 Use it.
12043 (byte-compile-warn-obsolete): Align text with the one in *Help*.
12044
12045 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12046
12047 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
12048 * progmodes/pascal.el (electric-pascal-equal):
12049 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
12050 * xml.el (xml-substitute-special): Fix typos.
12051
12052 2011-11-20 Glenn Morris <rgm@gnu.org>
12053
12054 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
12055 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
12056 Doc fixes.
12057 (rmail-decode-mime-charset): Mark as obsolete.
12058
12059 * mail/rmailsum.el (rmail-message-regexp-p-1):
12060 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
12061 Before using mime functions, check they are set. (Bug#10077)
12062
12063 2011-11-19 Juri Linkov <juri@jurta.org>
12064
12065 * info.el (Info-finder-find-node): Use `package--builtins' instead
12066 of `package-alist'. Use node names formed by the pattern "Keyword "
12067 and the keyword name.
12068
12069 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12070
12071 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
12072
12073 2011-11-19 Juri Linkov <juri@jurta.org>
12074
12075 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
12076 that calls `revert-buffer' on all Info buffers. (Bug#9915)
12077 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
12078 `old-history', `old-history-forward'. Add let-binding
12079 `window-selected'. Remove calls to `kill-buffer',
12080 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
12081 before calling `Info-find-node', so `Info-find-node-2' will reread
12082 the Info file. Restore window positions only when `window-selected'
12083 is non-nil.
12084
12085 2011-11-19 Juri Linkov <juri@jurta.org>
12086
12087 * isearch.el (isearch-lazy-highlight-new-loop):
12088 Remove condition `(not isearch-error)'. (Bug#9918)
12089
12090 * misearch.el (multi-isearch-search-fun): Add condition
12091 `(not bound)' to ignore lazy-highlighting search.
12092 Add the search-failed message "end of multi" when the end of
12093 multi-sequence is reached. Uncapitalize the search-failed
12094 message "Repeat for next buffer".
12095
12096 * info.el (Info-search): Add the search-failed message
12097 "end of the manual" when the end of the manual is reached
12098 in Isearch mode.
12099
12100 2011-11-19 Juri Linkov <juri@jurta.org>
12101
12102 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
12103 Use non-destructive `remove' instead of `delete' because
12104 `Info-history-list' stored to `Info-isearch-initial-history-list' in
12105 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
12106
12107 2011-11-19 Juri Linkov <juri@jurta.org>
12108
12109 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
12110 to nil instead of binding `search-ring' and `regexp-search-ring'.
12111 (Bug#9185)
12112
12113 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12114
12115 * simple.el (line-move): Force movement by logical lines for any
12116 hscrolled window, not only when auto-hscroll-mode is on.
12117 (line-move-visual): Update doc string to that effect. (Bug#10076)
12118
12119 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12120
12121 * language/european.el (macintosh): Define as alias for mac-roman.
12122
12123 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12124
12125 * mail/rmailmm.el (rmail-mime-display-header)
12126 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
12127 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
12128 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
12129 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
12130 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
12131 of a raw aref.
12132 (rmail-mime-entity-segment): To get past the tagline, move forward
12133 2 more lines, to account for the 2 empty lines that precede and
12134 follow the line with the buttons.
12135 (rmail-mime-update-tagline): Move one more line, to get past the
12136 empty line that follows the buttons in the tagline. (Bug#9520)
12137
12138 2011-11-19 Martin Rudalics <rudalics@gmx.at>
12139
12140 * window.el (window-max-delta-1, window-min-delta-1)
12141 (window-min-size-1, window-state-get-1, window-state-put-1)
12142 (window-state-put-2): Use "window--" prefix.
12143
12144 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
12145
12146 * emacs-lisp/smie.el: Improve warnings and conflict detection.
12147 (smie-warning-count): New var.
12148 (smie-set-prec2tab): Use it.
12149 (smie-bnf->prec2): Improve warnings. Add docstring.
12150 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
12151 (smie-bnf--set-class): New function.
12152 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
12153 corner case.
12154
12155 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
12156 (compilation-error-properties, compilation-move-to-column):
12157 Handle compilation-first-column while in the target buffer.
12158
12159 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
12160 Don't hardcode point-min==1.
12161
12162 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
12163 (eshell-rewrite-for-command): Remove workaround.
12164 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
12165 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
12166 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
12167
12168 * files-x.el (modify-file-local-variable): Obey commenting conventions.
12169
12170 2011-11-17 Glenn Morris <rgm@gnu.org>
12171
12172 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12173 Ignore buffer-local generated-autoload-file if it is the same
12174 as the global value. (Bug#10049)
12175
12176 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
12177
12178 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
12179 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
12180 (reftex-toc-previous-heading, reftex-toc-max-level)
12181 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
12182 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
12183 (reftex-toc-do-promote, reftex-toc-promote-prepare)
12184 (reftex-toc-promote-action, reftex-toc-extract-section-number)
12185 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
12186 (reftex-toc-rename-label, reftex-toc-visit-location)
12187 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
12188 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
12189 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
12190 leaving "*toc*" only for references to the buffer.
12191
12192 2011-11-17 Martin Rudalics <rudalics@gmx.at>
12193
12194 * window.el (window-resize, delete-window, split-window):
12195 Replace window-splits by window-combination-resize.
12196 * cus-start.el (window-splits): Replace by window-combination-resize.
12197
12198 2011-11-17 Glenn Morris <rgm@gnu.org>
12199
12200 * progmodes/sh-script.el (sh-font-lock-keywords-var):
12201 Make bash entry derive from sh entry, not shell entry.
12202
12203 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
12204
12205 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
12206 local file name.
12207
12208 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12209
12210 * menu-bar.el (menu-bar-file-menu):
12211 * printing.el (pr-ps-utility):
12212 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
12213 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
12214 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
12215 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
12216 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
12217 (icalendar--convert-cyclic-to-ical)
12218 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
12219 (icalendar--convert-ical-to-diary)
12220 (icalendar--convert-recurring-to-diary)
12221 (icalendar--convert-non-recurring-all-day-to-diary)
12222 (icalendar-import-format-sample):
12223 * progmodes/idlw-shell.el (idlwave-shell-mode):
12224 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
12225 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
12226 (vhdl-ps-print-init): Fix typos.
12227
12228 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
12229
12230 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
12231 FSF and collapse date sequence, obscure author/maintainer email address
12232 better, remove extra version line, track relocation of author's webpage.
12233
12234 * progmodes/python.el (python-pdbtrack-input-prompt)
12235 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
12236 regular python pdb prompts. Adjustments shamelessly taken exactly as
12237 suggested in EmacsWiki page (tiny change):
12238 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
12239
12240 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12241
12242 * expand.el (expand-pos, expand-index, expand-point):
12243 Remove redundant info from docstring.
12244 (expand-add-abbrevs): Doc fix.
12245 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
12246 (expand-sample-perl-mode-expand-list): Fix typos.
12247
12248 * net/dbus.el (dbus-event-member-name):
12249 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
12250 * term/pc-win.el (msdos-create-frame-with-faces):
12251 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
12252
12253 2011-11-16 Martin Rudalics <rudalics@gmx.at>
12254
12255 * window.el (split-window, window-state-get-1)
12256 (window-state-put-1, window-state-put-2): Rename occurrences of
12257 window-nest to window-combination-limit.
12258 * cus-start.el (window-nest): Rename to window-combination-limit.
12259
12260 2011-11-16 Chong Yidong <cyd@gnu.org>
12261
12262 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
12263 regexp (Bug#10033).
12264
12265 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
12266
12267 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
12268 `completing-read' will remove *Completions* and will preserve
12269 current-buffer for us.
12270 (tmm-add-prompt): Users of *Completions* will always (re)set its
12271 major mode.
12272 (tmm-old-comp-map): Remove.
12273
12274 2011-11-16 Glenn Morris <rgm@gnu.org>
12275
12276 * mail/rmailedit.el: Require rmailmm when compiling.
12277 (rmail-old-mime-state): New declaration.
12278 (rmail-edit-current-message): If editing a mime message,
12279 edit the "raw" message from the mbox buffer.
12280 (rmail-cease-edit): Handle mime messages. (Bug#9840)
12281
12282 2011-11-15 Glenn Morris <rgm@gnu.org>
12283
12284 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
12285 which wasn't being used. Add optional arg to force given state.
12286 (rmail-mime): Add optional arg to force given state.
12287
12288 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
12289
12290 * allout.el (allout-encryption-plaintext-sanitization-regexps):
12291 * frame.el (display-mm-dimensions-alist):
12292 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
12293 (outline-move-subtree-down):
12294 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
12295 (newsticker--treeview-do-get-node):
12296 * net/quickurl.el (quickurl-list-buffer-name):
12297 * progmodes/dcl-mode.el (dcl-mode):
12298 * progmodes/gdb-mi.el (gdb-mapcar*):
12299 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
12300
12301 2011-11-15 Glenn Morris <rgm@gnu.org>
12302
12303 * mail/rmail.el (rmail-file-coding-system): It's only ever used
12304 in a boolean sense, so just make it a boolean, and fix the doc.
12305 (rmail-show-mime-function, rmail-mime-feature)
12306 (rmail-require-mime-maybe): Doc fixes.
12307 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
12308
12309 * mail/rmailmm.el (rmail-show-mime): Doc fix.
12310
12311 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
12312
12313 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
12314 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
12315 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
12316 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
12317
12318 2011-11-15 Glenn Morris <rgm@gnu.org>
12319
12320 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
12321 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
12322 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
12323 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
12324 (rmail-mime, rmail-show-mime): Doc fixes.
12325
12326 * term/ns-win.el (mode-line-frame-identification):
12327 Leave it alone. (Bug#10051)
12328
12329 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
12330
12331 * mail/rmailout.el (rmail-output-to-rmail-buffer):
12332 Handle empty buffers. (Bug#9978)
12333
12334 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
12335
12336 * international/mule.el (define-charset):
12337 * mail/rmailmm.el (rmail-mime-find-header-encoding):
12338 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
12339 * progmodes/verilog-mode.el (verilog-backward-token):
12340 * textmodes/ispell.el (lookup-words):
12341 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
12342
12343 2011-11-14 Glenn Morris <rgm@gnu.org>
12344
12345 * progmodes/executable.el
12346 (executable-make-buffer-file-executable-if-script-p):
12347 Handle file-modes returning nil.
12348
12349 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
12350 message - not necessary, and causes problems. (Bug#9831)
12351
12352 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
12353
12354 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
12355
12356 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
12357 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
12358 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
12359
12360 2011-11-12 Martin Rudalics <rudalics@gmx.at>
12361
12362 * window.el (window-resize, delete-window): Use window-splits
12363 variable instead of function.
12364 (window-state-get-1, window-state-put-2, window-state-put):
12365 Don't deal with windows' splits status.
12366
12367 2011-11-12 Glenn Morris <rgm@gnu.org>
12368
12369 * apropos.el (apropos-do-all, apropos-library, apropos-value)
12370 (apropos-documentation): Doc fixes.
12371
12372 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
12373
12374 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
12375 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
12376
12377 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
12378
12379 * electric.el (electric-indent-post-self-insert-function): Make it
12380 possible for a char to only indent in some circumstances.
12381 (electric-indent-mode): Simplify.
12382
12383 2011-11-11 Martin Rudalics <rudalics@gmx.at>
12384
12385 * window.el (windows-with-parameter): Remove unused function.
12386 (windows-at-side): Rename to window-at-side-list.
12387 (window-check, window-atom-check, window-atom-check-1)
12388 (window-side-check, window-size-ignore, window-size-fixed-1)
12389 (window-in-direction-2): Prefix with "window--".
12390 (window-tree-1): Rename to window--subtree, fix doc-string.
12391
12392 2011-11-11 Glenn Morris <rgm@gnu.org>
12393
12394 * subr.el (eval-after-load): If FILE is already loaded,
12395 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
12396
12397 2011-11-10 Glenn Morris <rgm@gnu.org>
12398
12399 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
12400 Call svn via vc-svn-command rather than vc-do-command.
12401 (vc-svn-command): Add --non-interactive. (Bug#9993)
12402 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
12403
12404 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
12405 Add toggle-read-only. (Bug#7292)
12406 * files.el (toggle-read-only): Mention that it should only
12407 be used interactively. (Bug#10006)
12408
12409 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
12410
12411 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12412 Adjust regexp for OCaml warnings.
12413
12414 * electric.el (electric-pair-post-self-insert-function): Let user
12415 turn it off buffer-locally (bug#9932).
12416
12417 * progmodes/python.el (python-beginning-of-statement):
12418 Rewrite (bug#2703).
12419
12420 * progmodes/compile.el: Better handle TABs (bug#9749).
12421 (compilation-internal-error-properties)
12422 (compilation-next-error-function): Obey the target buffer's
12423 compilation-error-screen-columns.
12424
12425 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
12426
12427 * progmodes/meta-mode.el: Remove obsolete comments.
12428 (meta-right-comment-regexp, meta-ignore-comment-regexp):
12429 Fix typos in docstrings.
12430
12431 2011-11-09 Martin Rudalics <rudalics@gmx.at>
12432
12433 * window.el (window-size-fixed-p): Rewrite doc-string.
12434 (window-resizable-p): Rename to window--resizable-p. Update callers.
12435 (window--resizable): New function. Make all callers of
12436 window-resizable call window--resizable instead.
12437 (window-resizable): Rewrite in terms of window--resizable.
12438
12439 2011-11-08 Glenn Morris <rgm@gnu.org>
12440
12441 * progmodes/delphi.el (delphi-mode-syntax-table):
12442 Let define-derived-mode define a proper syntax table. (Bug#9994)
12443
12444 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
12445
12446 * window.el: Stay away from defsubst.
12447 (window-list-no-nils): Remove.
12448 (window-state-get-1, window-state-get): Use backquote instead.
12449
12450 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12451
12452 * emacs-lisp/find-func.el (find-function-read):
12453 Fix incorrect use of default argument in `completing-read'.
12454
12455 2011-11-08 Martin Rudalics <rudalics@gmx.at>
12456
12457 * window.el (display-buffer-function, special-display-function):
12458 Mention display-buffer-record-window but do not mention
12459 help-setup parameter in doc-strings.
12460 (window-min-delta): Fix doc-string typo.
12461
12462 2011-11-08 Chong Yidong <cyd@gnu.org>
12463
12464 * window.el (window-total-height, window-total-width): Doc fix.
12465 (window-body-size): Move from C.
12466 (window-body-height, window-body-width): Move to C.
12467
12468 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
12469
12470 * window.el: Make special-display like display-buffer-alist (bug#9532).
12471 (display-buffer--special-action): New function, morphed
12472 from display-buffer--special.
12473 (display-buffer): Use it to handle special-display-buffers at higher
12474 priority (just after display-buffer-alist).
12475 (display-buffer-fallback-action, display-buffer--other-frame-action)
12476 (pop-to-buffer-same-window): Remove display-buffer--special.
12477
12478 2011-11-07 Glenn Morris <rgm@gnu.org>
12479
12480 * calendar/cal-menu.el (cal-menu-set-date-title):
12481 Do nothing if not in a calendar. (Bug#9976)
12482
12483 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
12484
12485 * files.el (find-file): Always use selected-window.
12486
12487 2011-11-07 Martin Rudalics <rudalics@gmx.at>
12488
12489 * window.el (window-combinations): Make WINDOW argument
12490 mandatory. Rewrite doc-string.
12491 (walk-window-subtree, window-atom-check, window-min-delta)
12492 (window-max-delta, window--resize-this-window)
12493 (window--resize-root-window-vertically, window-tree)
12494 (balance-windows, window-state-put): Rewrite doc-strings as to
12495 not mention the term "subwindow".
12496 (window--resize-subwindows-skip-p): Rename to
12497 window--resize-child-windows-skip-p.
12498 (window--resize-subwindows-normal): Rename to
12499 window--resize-child-windows-normal.
12500 (window--resize-subwindows): Rename to
12501 window--resize-child-windows.
12502 (window-or-subwindow-p): Rename to window--in-subtree-p.
12503
12504 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
12505
12506 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
12507 Ensure that mbox format messages end in two newlines (Bug#9974).
12508
12509 2011-11-06 Chong Yidong <cyd@gnu.org>
12510
12511 * window.el (window-combination-p): Function deleted; its
12512 side-effect is not used in any existing code.
12513 (window-combinations, window-combined-p): Call window-*-child
12514 directly.
12515
12516 2011-11-05 Chong Yidong <cyd@gnu.org>
12517
12518 * window.el (window-valid-p): Rename from window-any-p.
12519 (window-size-ignore, window-state-get): Callers changed.
12520 (window-normalize-window): Rename from window-normalize-any-window.
12521 New arg LIVE-ONLY, replacing window-normalize-live-window.
12522 (window-normalize-live-window): Delete.
12523 (window-combination-p, window-combined-p, window-combinations)
12524 (walk-window-subtree, window-atom-root, window-min-size)
12525 (window-sizable, window-sizable-p, window-size-fixed-p)
12526 (window-min-delta, window-max-delta, window-resizable)
12527 (window-resizable-p, window-full-height-p, window-full-width-p)
12528 (window-current-scroll-bars, window-point-1, set-window-point-1)
12529 (window-at-side-p, window-in-direction, window-resize)
12530 (adjust-window-trailing-edge, maximize-window, minimize-window)
12531 (window-deletable-p, delete-window, delete-other-windows)
12532 (record-window-buffer, unrecord-window-buffer)
12533 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
12534 (quit-window, split-window, window-state-put)
12535 (set-window-text-height, fit-window-to-buffer)
12536 (shrink-window-if-larger-than-buffer): Callers changed.
12537
12538 2011-11-04 Eli Zaretskii <eliz@gnu.org>
12539
12540 * mail/rmail.el (rmail-simplified-subject): Decode subject with
12541 rfc2047-decode-string.
12542 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
12543 warnings.
12544
12545 * window.el (window-body-height, window-body-width): Mention in
12546 the doc string that the return values are in frame's canonical
12547 units. (Bug#9949)
12548
12549 2011-11-03 Alan Mackenzie <acm@muc.de>
12550
12551 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
12552 change in cc-engine.el.
12553
12554 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
12555
12556 * window.el (switch-to-buffer): Use `force-same-window' interactively.
12557
12558 2011-11-02 Martin Rudalics <rudalics@gmx.at>
12559
12560 * window.el (quit-window): Call unrecord-window-buffer after
12561 showing another buffer in the window. (Bug#9937)
12562 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
12563
12564 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
12565
12566 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
12567 Accept status with more than 9 shelves. (Bug#9935)
12568 Reported by Colin D Bennett <colin@gibibit.com>.
12569
12570 2011-11-01 Martin Rudalics <rudalics@gmx.at>
12571
12572 * help.el (with-help-window): Don't reference
12573 temp-buffer-show-specifiers in doc-string.
12574
12575 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
12576
12577 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
12578 menu-item.
12579
12580 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12581
12582 * whitespace.el: New version 13.2.2.
12583 (whitespace-newline-mode): Disable properly. Reported by Sarah
12584 <EmacsWiki>.
12585
12586 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
12587
12588 * net/newst-treeview.el: Remove "Time-stamp".
12589 (newsticker--group-manage-orphan-feeds): Do not call
12590 newsticker--treeview-tree-update.
12591 (newsticker-treeview-update, newsticker-treeview):
12592 Call newsticker--treeview-tree-update if necessary.
12593
12594 2011-10-30 Martin Rudalics <rudalics@gmx.at>
12595
12596 * window.el (window-iso-combination-p, window-iso-combined-p)
12597 (window-iso-combinations): Remove "iso-" infix.
12598 Suggested by Chong Yidong.
12599 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
12600 (window-max-delta-1, window-resize, window--resize-siblings)
12601 (window--resize-this-window, adjust-window-trailing-edge)
12602 (split-window, balance-windows-1)
12603 (shrink-window-if-larger-than-buffer):
12604 * calendar/calendar.el (calendar-generate-window):
12605 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
12606
12607 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
12608
12609 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
12610 in place (bug#9907).
12611 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
12612 (eshell-rewrite-if-command, eshell-rewrite-for-command)
12613 (eshell-structure-basic-command, eshell-rewrite-while-command)
12614 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
12615 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
12616 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
12617 (eshell-do-pipelines-synchronously, eshell-eval-command):
12618 Use backquotes and prefer setq to set.
12619 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
12620 (eshell-macrop): Use functionp.
12621 (eshell-do-eval): Handle multiple expressions in `while' body.
12622
12623 2011-10-30 Chong Yidong <cyd@gnu.org>
12624
12625 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
12626 instead of set-mark (Bug#9810).
12627
12628 2011-10-30 Chong Yidong <cyd@gnu.org>
12629
12630 * window.el (split-window-below, split-window-right): Rename from
12631 split-window-above-each-other and split-window-side-by-side
12632 respectively. All callers changed.
12633 (split-window-sensibly, split-window-sensibly): Use them.
12634 (split-window-keep-point): Doc fix.
12635
12636 * isearch.el: Add isearch-scroll property to split-window-below
12637 and split-window-right.
12638
12639 * follow.el (follow-mode):
12640 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
12641 * progmodes/ada-xref.el (ada-gdb-application):
12642 * emulation/vip.el (vip-buffer-in-two-windows):
12643 * image-dired.el (image-dired-dired-with-window-configuration):
12644 * dired-x.el (dired-do-find-marked-files):
12645 * dired.el (dired-pop-to-buffer):
12646 * bs.el (bs--show-with-configuration):
12647 * vc/emerge.el (emerge-setup-windows):
12648 * textmodes/two-column.el (2C-two-columns):
12649 * textmodes/reftex-toc.el (reftex-toc):
12650 * progmodes/gdb-mi.el (gdb-setup-windows):
12651 * progmodes/fortran.el (fortran-window-create):
12652 * net/newst-treeview.el (newsticker--treeview-window-init):
12653 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
12654 * emulation/tpu-edt.el (tpu-gold-map):
12655 * emulation/crisp.el (crisp-mode-map):
12656 * calendar/calendar.el (calendar-basic-setup): Callers changed.
12657
12658 2011-10-29 Chong Yidong <cyd@gnu.org>
12659
12660 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
12661
12662 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
12663
12664 * textmodes/flyspell.el (flyspell-word): Fix char offset for
12665 forged Ispell output (Bug#7904).
12666
12667 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
12668
12669 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12670
12671 * doc-view.el: Avoid ugly errors about not finding nil.
12672 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
12673 (doc-view-dvipdf-program, doc-view-unoconv-program)
12674 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
12675 Avoid nil or absolute file name as default value.
12676 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
12677
12678 2011-10-28 Alan Mackenzie <acm@muc.de>
12679
12680 * progmodes/cc-defs.el (c-version): -> 5.32.2.
12681
12682 2011-10-28 Alan Mackenzie <acm@muc.de>
12683
12684 Amend the handling of c-beginning/end-of-defun in nested declaration
12685 scopes.
12686
12687 * progmodes/cc-vars.el (c-defun-tactic): Move here from
12688 cc-langs.el. Change it to a defcustom.
12689
12690 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
12691 cc-vars.el.
12692
12693 * progmodes/cc-engine.el (c-beginning-of-statement-1):
12694 Prevent "class foo : bar" being spuriously recognized as a label.
12695
12696 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
12697 Add parameter `inclusive' (to include enclosing braces in the region).
12698 (c-widen-to-enclosing-decl-scope): New function.
12699 (c-while-widening-to-decl-block): New macro.
12700 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
12701 outward for defun boundaries, and correspondingly change symbol
12702 `respect-enclosure' to `go-outward'.
12703 (c-declaration-limits): Change algorithm to report only the "innermost"
12704 defun's boundaries.
12705
12706 2011-10-28 Deniz Dogan <deniz@dogan.se>
12707
12708 * net/rcirc.el (rcirc-mode): Use hard newlines.
12709
12710 2011-10-28 Alan Mackenzie <acm@muc.de>
12711
12712 Amend to indent and fontify macros "which include their own semicolon"
12713 correctly, using the "virtual semicolon" mechanism.
12714
12715 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
12716
12717 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
12718 Recode to scan one line at a time rather than having \n and \r
12719 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
12720 (c-forward-label): Amend for virtual semicolons.
12721 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
12722
12723 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
12724 of the new C macros.
12725
12726 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
12727 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
12728 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
12729 (c-opt-cpp-macro-define): Make into a full language variable.
12730 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
12731 AWK Mode (including \n, \r) removed, no longer needed.
12732
12733 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
12734 Invoke c-make-macro-with-semi-re.
12735
12736 * progmodes/cc-vars.el (c-macro-with-semi-re):
12737 (c-macro-names-with-semicolon): New variables.
12738 (c-make-macro-with-semi-re): New function.
12739
12740 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12741
12742 * vc/log-edit.el: Fill empty field rather than adding new one.
12743 (log-edit-add-field): New function.
12744 (log-edit-insert-changelog): Use it.
12745
12746 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
12747
12748 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
12749
12750 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12751
12752 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
12753 (gdb--check-interpreter): New function.
12754 (gdb): Use it.
12755
12756 2011-10-27 Glenn Morris <rgm@gnu.org>
12757
12758 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
12759 (least-positive-float, least-negative-float)
12760 (least-positive-normalized-float, least-negative-normalized-float)
12761 (float-epsilon, float-negative-epsilon):
12762 Remove unnecessary declarations.
12763
12764 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
12765 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
12766 (least-positive-float, least-negative-float)
12767 (least-positive-normalized-float, least-negative-normalized-float)
12768 (float-epsilon, float-negative-epsilon): Add doc-strings,
12769 based on those in cl.texi.
12770
12771 * files.el (set-visited-file-name): If the major-mode changed,
12772 reload the local variables. (Bug#9796)
12773
12774 2011-10-27 Chong Yidong <cyd@gnu.org>
12775
12776 * subr.el (change-major-mode-after-body-hook): New hook.
12777 (run-mode-hooks): Run it.
12778
12779 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
12780 Use change-major-mode-before-body-hook.
12781
12782 * simple.el (fundamental-mode):
12783 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
12784 change introducing fundamental-mode-hook.
12785
12786 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
12787
12788 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
12789
12790 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
12791
12792 * ido.el (ido-file-name-all-completions-1): Do not require
12793 tramp.el explicitly. (Bug#7583)
12794
12795 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
12796
12797 * progmodes/octave-mod.el:
12798 * progmodes/octave-inf.el: Update maintainer.
12799
12800 2011-10-26 Chong Yidong <cyd@gnu.org>
12801
12802 * subr.el (with-wrapper-hook): Rewrite doc.
12803
12804 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
12805
12806 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
12807 filenames "/method:foo:". (Bug#9793)
12808
12809 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
12810
12811 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
12812 (bug#9865).
12813
12814 2011-10-24 Glenn Morris <rgm@gnu.org>
12815
12816 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
12817
12818 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
12819
12820 * notifications.el: Add the requirement of a running D-Bus session
12821 bus to the Commentary.
12822
12823 2011-10-24 Juri Linkov <juri@jurta.org>
12824
12825 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
12826 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
12827 (Bug#9364)
12828
12829 2011-10-24 Juri Linkov <juri@jurta.org>
12830
12831 * info.el (Info-following-node-name-re): Add newline to the list
12832 of allowed characters for leading space. (Bug#9824)
12833
12834 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
12835
12836 * progmodes/octave-inf.el (inferior-octave-mode-map):
12837 Fix C-c C-h binding.
12838 * progmodes/octave-mod.el (octave-help): Remove.
12839
12840 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
12841
12842 Sync with Tramp 2.2.3.
12843
12844 * net/tramp-cache.el (top): Pacify byte-compiler using
12845 `init-file-user' and `site-run-file'.
12846
12847 * net/trampver.el: Update release number.
12848
12849 2011-10-23 Chong Yidong <cyd@gnu.org>
12850
12851 * files.el (toggle-read-only): Remove obsolete comment about
12852 version control.
12853
12854 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
12855 for toggle-read-only. Note that this hasn't called vc-next-action
12856 since 2008-05-02, though it wasn't documented at the time.
12857
12858 * vc/ediff-init.el (ediff-toggle-read-only-function):
12859 Use toggle-read-only.
12860
12861 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
12862
12863 Fix bug #9560, sporadic wrong indentation; improve instrumentation
12864 of c-parse-state.
12865
12866 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
12867 correct faulty logical expression.
12868 (c-parse-state-state, c-record-parse-state-state):
12869 (c-replay-parse-state-state): New defvar/defuns.
12870 (c-debug-parse-state): Use new functions.
12871
12872 2011-10-22 Martin Rudalics <rudalics@gmx.at>
12873
12874 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
12875 last fix. Use window-in-direction correctly.
12876
12877 2011-10-21 Chong Yidong <cyd@gnu.org>
12878
12879 * progmodes/idlwave.el (idlwave-mode):
12880 * progmodes/vera-mode.el (vera-mode): No need to set
12881 require-final-newline; that's done in prog-mode.
12882 Suggested by Stefan Monnier.
12883
12884 2011-10-21 Martin Rudalics <rudalics@gmx.at>
12885
12886 * mouse.el (mouse-drag-window-above)
12887 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
12888 (mouse-drag-mode-line-1, mouse-drag-header-line)
12889 (mouse-drag-vertical-line-rightward-window): Remove.
12890 (mouse-drag-line): New function.
12891 (mouse-drag-mode-line, mouse-drag-header-line)
12892 (mouse-drag-vertical-line): Call mouse-drag-line.
12893 * window.el (window-at-side-p, windows-at-side): New functions.
12894
12895 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
12896
12897 * tar-mode.el (tar-grind-file-mode):
12898 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
12899
12900 2011-10-21 Chong Yidong <cyd@gnu.org>
12901
12902 * progmodes/idlwave.el (idlwave-mode):
12903 * progmodes/vera-mode.el (vera-mode):
12904 Use mode-require-final-newline.
12905
12906 2011-10-20 Glenn Morris <rgm@gnu.org>
12907
12908 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
12909
12910 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
12911
12912 * emulation/cua-base.el (cua-set-mark): Fix case of string.
12913
12914 2011-10-20 Chong Yidong <cyd@gnu.org>
12915
12916 * emulation/cua-base.el (cua-mode):
12917 * mail/footnote.el (footnote-mode):
12918 * mail/mailabbrev.el (mail-abbrevs-mode):
12919 * net/xesam.el (xesam-minor-mode):
12920 * progmodes/bug-reference.el (bug-reference-mode):
12921 * progmodes/cap-words.el (capitalized-words-mode):
12922 * progmodes/compile.el (compilation-minor-mode)
12923 (compilation-shell-minor-mode):
12924 * progmodes/gud.el (gud-tooltip-mode):
12925 * progmodes/hideif.el (hide-ifdef-mode):
12926 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
12927 * progmodes/subword.el (subword-mode):
12928 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
12929 * progmodes/which-func.el (which-function-mode):
12930 * term/tvi970.el (tvi970-set-keypad-mode):
12931 * term/vt100.el (vt100-wide-mode):
12932 * textmodes/flyspell.el (flyspell-mode):
12933 * textmodes/ispell.el (ispell-minor-mode):
12934 * textmodes/nroff-mode.el (nroff-electric-mode):
12935 * textmodes/paragraphs.el (use-hard-newlines):
12936 * textmodes/refill.el (refill-mode):
12937 * textmodes/reftex.el (reftex-mode):
12938 * textmodes/rst.el (rst-minor-mode):
12939 * textmodes/sgml-mode.el (html-autoview-mode)
12940 (sgml-electric-tag-pair-mode):
12941 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
12942 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
12943 * emulation/crisp.el (crisp-mode):
12944 * emacs-lisp/eldoc.el (eldoc-mode):
12945 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
12946 minor mode behavior.
12947
12948 2011-10-19 Juri Linkov <juri@jurta.org>
12949
12950 * descr-text.el (describe-char): Add #x2010 and #x2011 to
12951 the list of hard-coded chars with escape-glyph face.
12952
12953 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
12954
12955 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
12956
12957 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
12958
12959 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
12960 running process.
12961
12962 2011-10-19 Glenn Morris <rgm@gnu.org>
12963
12964 * vc/vc-bzr.el (vc-bzr-after-dir-status):
12965 Ignore ignored files. (Bug#9726)
12966
12967 2011-10-19 Chong Yidong <cyd@gnu.org>
12968
12969 Doc fix for minor modes, stating that an omitted argument enables
12970 the mode unconditionally when called from Lisp.
12971
12972 * abbrev.el (abbrev-mode):
12973 * allout.el (allout-mode):
12974 * autoinsert.el (auto-insert-mode):
12975 * autoarg.el (autoarg-mode, autoarg-kp-mode):
12976 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
12977 (global-auto-revert-mode):
12978 * battery.el (display-battery-mode):
12979 * composite.el (global-auto-composition-mode)
12980 (auto-composition-mode):
12981 * delsel.el (delete-selection-mode):
12982 * desktop.el (desktop-save-mode):
12983 * dired-x.el (dired-omit-mode):
12984 * dirtrack.el (dirtrack-mode):
12985 * doc-view.el (doc-view-minor-mode):
12986 * double.el (double-mode):
12987 * electric.el (electric-indent-mode, electric-pair-mode):
12988 * emacs-lock.el (emacs-lock-mode):
12989 * epa-hook.el (auto-encryption-mode):
12990 * follow.el (follow-mode):
12991 * font-core.el (font-lock-mode):
12992 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
12993 * help.el (temp-buffer-resize-mode):
12994 * hilit-chg.el (highlight-changes-mode)
12995 (highlight-changes-visible-mode):
12996 * hi-lock.el (hi-lock-mode):
12997 * hl-line.el (hl-line-mode, global-hl-line-mode):
12998 * icomplete.el (icomplete-mode):
12999 * ido.el (ido-everywhere):
13000 * image-file.el (auto-image-file-mode):
13001 * image-mode.el (image-minor-mode):
13002 * iswitchb.el (iswitchb-mode):
13003 * jka-cmpr-hook.el (auto-compression-mode):
13004 * linum.el (linum-mode):
13005 * longlines.el (longlines-mode):
13006 * master.el (master-mode):
13007 * mb-depth.el (minibuffer-depth-indicate-mode):
13008 * menu-bar.el (menu-bar-mode):
13009 * minibuf-eldef.el (minibuffer-electric-default-mode):
13010 * mouse-sel.el (mouse-sel-mode):
13011 * msb.el (msb-mode):
13012 * mwheel.el (mouse-wheel-mode):
13013 * outline.el (outline-minor-mode):
13014 * paren.el (show-paren-mode):
13015 * recentf.el (recentf-mode):
13016 * reveal.el (reveal-mode, global-reveal-mode):
13017 * rfn-eshadow.el (file-name-shadow-mode):
13018 * ruler-mode.el (ruler-mode):
13019 * savehist.el (savehist-mode):
13020 * scroll-all.el (scroll-all-mode):
13021 * scroll-bar.el (scroll-bar-mode):
13022 * server.el (server-mode):
13023 * shell.el (shell-dirtrack-mode):
13024 * simple.el (auto-fill-mode, transient-mark-mode)
13025 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
13026 (line-number-mode, column-number-mode, size-indication-mode)
13027 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
13028 * strokes.el (strokes-mode):
13029 * time.el (display-time-mode):
13030 * t-mouse.el (gpm-mouse-mode):
13031 * tool-bar.el (tool-bar-mode):
13032 * tooltip.el (tooltip-mode):
13033 * type-break.el (type-break-mode-line-message-mode)
13034 (type-break-query-mode):
13035 * view.el (view-mode):
13036 * whitespace.el (whitespace-mode, whitespace-newline-mode)
13037 (global-whitespace-mode, global-whitespace-newline-mode):
13038 * xt-mouse.el (xterm-mouse-mode): Doc fix.
13039
13040 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13041 Fix autogenerated docstring.
13042
13043 2011-10-19 Juri Linkov <juri@jurta.org>
13044
13045 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
13046 by checking environment variables "DESKTOP_SESSION" and
13047 "XDG_CURRENT_DESKTOP". (Bug#9779)
13048
13049 2011-10-19 Juri Linkov <juri@jurta.org>
13050
13051 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
13052 (browse-url-chromium-program, browse-url-chromium-arguments):
13053 New defcustoms.
13054 (browse-url-default-browser): Check for `browse-url-chromium' and
13055 call `browse-url-chromium-program'.
13056 (browse-url-chromium): New command. (Bug#9779)
13057
13058 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
13059
13060 * facemenu.el (list-colors-duplicates): On Windows, detect more
13061 duplicates by assuming that only colors matching "^System" are
13062 special "system colors". (Bug#9722)
13063
13064 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13065
13066 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
13067 to distinguish the author from the committer.
13068
13069 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
13070
13071 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
13072
13073 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
13074
13075 * international/mule.el (sgml-html-meta-auto-coding-function):
13076 Add support for detecting encoding in HTML5 specified only as
13077 <meta charset="UTF-8">. Implementation just makes http-equiv and
13078 content-type parts from HTML4 encoding string optional. (Bug#9716)
13079
13080 2011-10-18 Glenn Morris <rgm@gnu.org>
13081
13082 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
13083
13084 2011-10-18 Chong Yidong <cyd@gnu.org>
13085
13086 * faces.el (cursor): Doc fix.
13087
13088 2011-10-17 Chong Yidong <cyd@gnu.org>
13089
13090 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
13091
13092 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
13093
13094 * dirtrack.el (dirtrack): Support shell buffers with path
13095 prefixes, e.g. tramp-based remote shells. (Bug#9647)
13096
13097 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
13098
13099 * json.el: Bump version to 1.3 and note change in History.
13100 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
13101
13102 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13103
13104 * comint.el (comint-insert-input, comint-send-input)
13105 (comint-get-old-input-default, comint-backward-matching-input)
13106 (comint-next-prompt): Use nil instead of `input' for field property of
13107 past user input (bug#114).
13108
13109 * minibuffer.el (completion--replace): Inherit surrounding properties
13110 (bug#114).
13111 (minibuffer-complete-and-exit): Use it.
13112
13113 * comint.el (comint--table-subvert): Quote the all-completions output
13114 (bug#9160).
13115
13116 2011-10-17 Martin Rudalics <rudalics@gmx.at>
13117
13118 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
13119
13120 * menu-bar.el (menu-bar-file-menu): Add entry for making new
13121 window on right of selected. (Bug#9350) Reword other window
13122 entries and separate them from frame entries.
13123
13124 2011-10-15 Glenn Morris <rgm@gnu.org>
13125
13126 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
13127 Doc fixes.
13128
13129 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
13130
13131 * net/network-stream.el (network-stream-open-starttls):
13132 Improve detection of failure due to lack of TLS support.
13133
13134 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
13135 putting the input text in front and in bold.
13136
13137 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13138
13139 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
13140
13141 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
13142 empty buffer.
13143
13144 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
13145 unread-command-events rather than pushing yet-another event.
13146
13147 2011-10-14 Eli Zaretskii <eliz@gnu.org>
13148
13149 * mail/sendmail.el (sendmail-query-once): Improve the wording of
13150 the explanation of the possible choices. Make the options passed
13151 to completing-read shorter.
13152
13153 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13154
13155 * textmodes/flyspell.el (flyspell-large-region): Make sure
13156 extended character mode is used if defined (Bug#1339).
13157
13158 2011-10-13 Eli Zaretskii <eliz@gnu.org>
13159
13160 * simple.el (what-cursor-position): Fix the display of the
13161 character info for LRE, LRO, RLE, and RLO characters by appending
13162 an invisible PDF.
13163
13164 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
13165
13166 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
13167 even in case of error; add debug spec; simplify data flow.
13168 (with-timeout-handler): Remove.
13169
13170 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
13171
13172 Fix Bug#6019, Bug#9315.
13173
13174 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
13175 complete `buffer-file-name', the local file name part could look
13176 remotely (for example on VMS).
13177
13178 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
13179 `tramp-run-real-handler'.
13180 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
13181 already quoted by '"'.
13182
13183 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
13184 Let `file-name-handler-alist' be nil, the local file name part
13185 could look remotely (for example on VMS).
13186
13187 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
13188
13189 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
13190 from here...
13191 (flyspell-post-command-hook): ...to here.
13192
13193 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13194
13195 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
13196 if not needed.
13197 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
13198 using completion. Protect against "slow" callers.
13199 Remove the "message hack".
13200
13201 2011-10-11 Juri Linkov <juri@jurta.org>
13202
13203 * isearch.el (isearch-lazy-highlight-word): New variable.
13204 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
13205 Use it. (Bug#9727)
13206
13207 2011-10-11 Glenn Morris <rgm@gnu.org>
13208
13209 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
13210 like f90-previous-statement does.
13211
13212 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13213
13214 * eshell/eshell.el (eshell-command): History should be saved
13215 only in interactive use, to avoid error.
13216
13217 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13218
13219 * minibuffer.el (completion-file-name-table): Fix last change,
13220 i.e. ignore normal errors but not the other ones.
13221
13222 2011-10-10 Martin Rudalics <rudalics@gmx.at>
13223
13224 * window.el (special-display-buffer-names)
13225 (special-display-regexps): Remove some remnants of earlier
13226 changes from doc-strings.
13227 (quit-windows-on): New function.
13228
13229 * vc/vc.el (vc-revert, vc-rollback):
13230 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
13231 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
13232 (Bug#6183) (Bug#7074) (Bug#7447)
13233
13234 2011-10-09 Martin Rudalics <rudalics@gmx.at>
13235
13236 * window.el (frame-auto-hide-function): Add version tag.
13237 (Bug#9699)
13238
13239 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
13240
13241 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
13242 condition.
13243
13244 2011-10-09 Leo Liu <sdl.web@gmail.com>
13245
13246 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
13247 (Bug#9701)
13248
13249 2011-10-08 Glenn Morris <rgm@gnu.org>
13250
13251 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
13252 before the first code statement zero indent. (Bug#9690)
13253
13254 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
13255
13256 * simple.el (count-words-region): Always count in the region.
13257 Report the number of lines and characters too.
13258 (count-words): New command, which counts in the buffer if the
13259 region is inactive, as count-words-region used to.
13260 (count-words--message): New function. Handle plurals.
13261 (count-lines-region): Make it an alias for count-words-region.
13262
13263 * bindings.el (esc-map): Replace count-lines-region with
13264 count-words-region.
13265
13266 2011-10-08 Martin Rudalics <rudalics@gmx.at>
13267
13268 * window.el (window--delete): Delete dedicated frame
13269 unconditionally when argument KILL is non-nil. (Bug#9699)
13270 (switch-to-buffer): Fix doc-string typo.
13271
13272 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13273
13274 * eshell/eshell.el (eshell-command): Avoid using hooks.
13275
13276 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
13277
13278 * bindings.el ([M-left],[M-right]): Bind to left-word and
13279 right-word respectively.
13280
13281 2011-10-07 Glenn Morris <rgm@gnu.org>
13282
13283 * cus-start.el (debug-on-quit): Fix custom type.
13284
13285 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
13286
13287 * subr.el (define-key-after): Clarify that the function is not
13288 useful for non-menu keymaps.
13289
13290 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
13291
13292 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13293
13294 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
13295 in current minibuffer (Fix bug with recursive minibuffers).
13296
13297 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
13298
13299 * progmodes/gdb-mi.el (gdb): Doc fix.
13300
13301 2011-10-05 Martin Rudalics <rudalics@gmx.at>
13302
13303 * window.el (frame-auto-hide-function): New option replacing
13304 frame-auto-delete. Suggested by Stefan Monnier.
13305 (window--delete): Call frame-auto-hide-function instead of
13306 investigating frame-auto-delete.
13307 (window-point-1, set-window-point-1): New functions.
13308 (window-in-direction, record-window-buffer, window-state-get-1)
13309 (display-buffer-record-window): Use window-point-1 instead of
13310 window-point.
13311 (set-window-buffer-start-and-point): Use set-window-point-1.
13312
13313 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13314
13315 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
13316
13317 2011-10-05 Glenn Morris <rgm@gnu.org>
13318
13319 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
13320 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
13321
13322 2011-10-05 Leo Liu <sdl.web@gmail.com>
13323
13324 * subr.el (read-char-choice): Fix argument to buffer-live-p which
13325 works with buffer object.
13326
13327 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13328
13329 * mpc.el (mpc-tool-bar-map): Add labels.
13330
13331 2011-10-04 Glenn Morris <rgm@gnu.org>
13332
13333 * calendar/holidays.el (calendar-check-holidays): Doc fix.
13334
13335 2011-10-04 Martin Rudalics <rudalics@gmx.at>
13336
13337 * window.el (window--delete): New function.
13338 (frame-auto-delete): Resuscitate option.
13339 (bury-buffer, replace-buffer-in-windows)
13340 (quit-window): Rewrite using window--delete.
13341 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
13342 Pass display-buffer-mark-dedicated to window--display-buffer-2
13343 (Bug#9639).
13344
13345 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
13346
13347 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
13348 returns a list (bug#9554). Add remote file name completion.
13349 * comint.el (comint--table-subvert): Curry and get quote&unquote
13350 functions as arguments.
13351 (comint--complete-file-name-data): Adjust call accordingly.
13352 * pcomplete.el (pcomplete--table-subvert): Remove.
13353 (pcomplete-completions-at-point): Use comint--table-subvert instead.
13354
13355 * minibuffer.el (completion-table-case-fold): Use currying.
13356 (completion--styles-type, completion--cycling-threshold-type):
13357 New constants.
13358 (completion-styles, completion-category-overrides)
13359 (completion-cycle-threshold): Use them.
13360 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
13361 completion-table-case-fold.
13362
13363 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
13364
13365 * minibuffer.el (completion-category-overrides): Fix type of styles
13366 and add more user friendly tags (bug#9660).
13367
13368 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
13369
13370 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
13371 (mule-input-method-string): New widget.
13372 (default-input-method, language-info-custom-alist): Use it.
13373
13374 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
13375
13376 * pcomplete.el: Require comint.
13377 (pcomplete--common-suffix): Remove.
13378 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
13379 (pcomplete--table-subvert): Sync with comint--table-subvert.
13380 (pcomplete--entries): Use comint-completion-file-name-table.
13381 * comint.el (comint-unquote-filename): Simplify.
13382 (comint-completion-file-name-table): New function (bug#9616).
13383 (comint--complete-file-name-data): Use it.
13384
13385 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
13386 (pcmpl-gnu-tar-buffer): Remove.
13387 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
13388 around. Make sure pcomplete-suffix-list is only changed temporarily.
13389 Don't look inside the tar's file if it's too large.
13390
13391 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
13392
13393 * cus-edit.el (custom-mode-map):
13394 * epa.el (epa-key-list-mode-map):
13395 * man.el (Man-mode-map):
13396 * startup.el (splash-screen-keymap):
13397 * simple.el (special-mode-map): Use scroll-up-command and
13398 scroll-down-command.
13399
13400 * progmodes/idlw-help.el (idlwave-help-mode-map):
13401 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
13402 * net/newst-plainview.el (newsticker-mode-map):
13403 * emulation/ws-mode.el (wordstar-mode-map):
13404 * emulation/vi.el (vi-com-map):
13405 * calc/calc-graph.el (calc-graph-show-dumb):
13406 * term/sun.el (terminal-init-sun):
13407 * term/ns-win.el (global-map):
13408 * progmodes/grep.el (grep-mode-map):
13409 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
13410 * mail/rmail.el (rmail-mode-map):
13411 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
13412
13413 * custom.el (custom-safe-themes, load-theme): Treat value of t for
13414 custom-safe-themes as special.
13415
13416 2011-10-01 Julien Danjou <julien@danjou.info>
13417
13418 * notifications.el (notifications-notify): Fix docstring.
13419
13420 2011-10-01 Per Starbäck <per@starback.se>
13421
13422 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
13423
13424 2011-09-30 Martin Rudalics <rudalics@gmx.at>
13425
13426 * startup.el (command-line-1): Fix last fix by inserting
13427 initial-scratch-message into *scratch* before displaying it.
13428 (Bug#9605) and (Bug#9636)
13429
13430 2011-09-29 Eli Zaretskii <eliz@gnu.org>
13431
13432 * simple.el (line-move): If auto-hscroll-mode is disabled and the
13433 window is hscrolled, move by logical lines. (Bug#9607)
13434 (line-move-visual): Update the doc string to the above effect.
13435
13436 2011-09-29 Martin Rudalics <rudalics@gmx.at>
13437
13438 * window.el (display-buffer-record-window): When WINDOW is the
13439 selected window use `point' instead of `window-point'. (Bug#9626)
13440
13441 * startup.el (command-line-1): Use insert-before-markers when
13442 inserting initial-scratch-message. (Bug#9605)
13443
13444 * help.el (help-window): Remove variable.
13445
13446 2011-09-29 Glenn Morris <rgm@gnu.org>
13447
13448 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
13449
13450 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
13451
13452 * descr-text.el (describe-char-categories): Accept category
13453 descriptions more than one line long.
13454
13455 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
13456
13457 * simple.el (delete-trailing-whitespace): Fix last change.
13458
13459 * progmodes/perl-mode.el (perl-syntax-propertize-function):
13460 Don't confuse "y => 3" as the beginning of a `y' operation.
13461
13462 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
13463 object has more than 4 slots (bug#9613).
13464
13465 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
13466
13467 * subr.el (with-output-to-temp-buffer):
13468 * net/quickurl.el (quickurl, quickurl-browse-url):
13469 Fix typos in docstrings.
13470
13471 2011-09-27 Eli Zaretskii <eliz@gnu.org>
13472
13473 * minibuffer.el (completion-styles)
13474 (completion-category-overrides): Cross reference each other in doc
13475 strings.
13476
13477 2011-09-27 Glenn Morris <rgm@gnu.org>
13478
13479 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
13480 to split-string. (Bug#9606)
13481
13482 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
13483
13484 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
13485 (bug#9615).
13486
13487 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
13488
13489 * emacs-lisp/package.el (list-packages): Fix echo area message.
13490
13491 2011-09-27 Leo Liu <sdl.web@gmail.com>
13492
13493 * ido.el (ido-read-internal): Accept cons cell HIST arg.
13494
13495 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
13496
13497 * net/dbus.el (dbus-unregister-object): Don't release services for
13498 registered signals. (Bug#9581)
13499
13500 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
13501
13502 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
13503 function that picks between cfengine 2 and 3 support
13504 automatically. Update docs accordingly.
13505
13506 2011-09-22 Kenichi Handa <handa@m17n.org>
13507
13508 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
13509 ZERO.
13510 (indian-itrans-v5-table-for-tamil): New variable.
13511 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
13512
13513 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
13514
13515 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
13516 that's true if the current command involved collapsing of text.
13517 It's reset to false at the beginning of the next command.
13518 (allout-post-command-business): Move the cursor to the beginning
13519 of entry if the cursor is hidden and collapsing activity just
13520 happened.
13521
13522 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
13523
13524 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
13525 tracking (Bug#9541).
13526
13527 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
13528
13529 * net/newst-reader.el (newsticker-html-renderer)
13530 (newsticker-show-news): Automatically load html rendering package
13531 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
13532 because w3m-fill-column is let-bound" and the error "Symbol's value
13533 as variable is void: w3m-fill-column".
13534
13535 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
13536
13537 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
13538 Release services only if they are defined. (Bug#9581)
13539
13540 2011-09-23 Richard Stallman <rms@gnu.org>
13541
13542 * textmodes/paragraphs.el (forward-sentence): For backwards case,
13543 distinguish start of paragraph from start of its text.
13544
13545 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
13546
13547 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
13548 (rmail-generate-viewer-buffer): Put that hook on view buffer.
13549 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
13550
13551 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
13552
13553 * international/mule-diag.el (mule-diag): Insert a newline after
13554 each fontset description.
13555
13556 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
13557
13558 * simple.el (delete-trailing-whitespace):
13559 Document last change; simplify.
13560
13561 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
13562
13563 * simple.el (delete-trailing-whitespace): Also delete
13564 extra newlines at the end of the buffer.
13565
13566 * textmodes/picture.el: Make motion commands obey shift-select-mode.
13567 (picture-newline): Use forward-line so as to ignore fields.
13568
13569 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
13570
13571 * subr.el (with-wrapper-hook): Fix edebug spec.
13572
13573 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
13574
13575 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
13576 (bug#4538).
13577
13578 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
13579
13580 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
13581 Fix nasty bug using wrong cached values.
13582
13583 2011-09-23 Alan Mackenzie <acm@muc.de>
13584
13585 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
13586
13587 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
13588
13589 * window.el (pop-to-buffer): Ensure right window is selected if we
13590 chose another frame.
13591
13592 2011-09-22 Eli Zaretskii <eliz@gnu.org>
13593
13594 * simple.el (what-cursor-position): Use get-char-property-change
13595 and next-single-char-property-change, to be able to show display
13596 properties that come from overlays as well as text properties.
13597
13598 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
13599
13600 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
13601
13602 * cmuscheme.el (run-scheme, switch-to-scheme):
13603 * cus-edit.el (customize-group, custom-buffer-create)
13604 (customize-browse):
13605 * info.el (info):
13606 * shell.el (shell):
13607 * mail/sendmail.el (mail):
13608 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
13609
13610 2011-09-22 Richard Stallman <rms@gnu.org>
13611
13612 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
13613 move back only to line beg, don't move back over blank lines.
13614
13615 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
13616
13617 * files.el (copy-directory): Set directory attributes only in case
13618 they could be retrieved from the source directory. (Bug#9565)
13619
13620 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
13621
13622 * progmodes/hideshow.el (hs-looking-at-block-start-p)
13623 (hs-find-block-beginning, hs-hide-level-recursive):
13624 Ignore strings as well as comments. (Bug#9502)
13625
13626 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
13627
13628 * progmodes/sql.el (sql-comint-postgres):
13629 Convert port number to a string. (Bug#9566)
13630
13631 2011-09-22 Martin Rudalics <rudalics@gmx.at>
13632
13633 * window.el (quit-window): Undedicate window when switching to
13634 previous buffer. Reported by Thierry Volpiatto
13635 <thierry.volpiatto@gmail.com>.
13636 (special-display-popup-frame): When popping up a new frame reset
13637 its previous buffers to nil. Simplify code.
13638
13639 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
13640
13641 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
13642 and process filter, as done also in `shell-command'.
13643
13644 2011-09-21 Martin Rudalics <rudalics@gmx.at>
13645
13646 * window.el (set-window-buffer-start-and-point):
13647 Call set-window-start with NOFORCE argument t.
13648 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
13649 (quit-window): Reword doc-string. Handle new format of
13650 quit-restore parameter. Don't delete window if it has a
13651 previous buffer we can show instead of the present one.
13652 (display-buffer-record-window): Rewrite using a new format for
13653 the quit-restore window parameter
13654 (special-display-popup-frame, display-buffer-same-window)
13655 (display-buffer-reuse-window, display-buffer-pop-up-frame)
13656 (display-buffer-pop-up-window, display-buffer-use-some-window):
13657 Adapt symbol passed to display-buffer-record-window.
13658 * help.el (help-window-setup): Handle new format of quit-restore
13659 parameter.
13660
13661 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
13662
13663 * faces.el (face-list): Fix docstring (bug#9564).
13664
13665 * window.el (display-buffer--action-function-custom-type):
13666 Don't include internal functions in the Custom interface.
13667
13668 2011-09-20 Juri Linkov <juri@jurta.org>
13669
13670 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
13671 (Info-forward-node, Info-backward-node, Info-next-preorder)
13672 (Info-last-preorder): Use it. (Bug#9528)
13673
13674 2011-09-20 Juri Linkov <juri@jurta.org>
13675
13676 * info.el (Info-last-preorder): Visit last menu item only when
13677 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
13678
13679 2011-09-20 Julien Danjou <julien@danjou.info>
13680
13681 * password-cache.el (password-cache-remove): Remove entries even if the
13682 value is nil, so that password with a nil value (negative caching) is
13683 possible to invalidate.
13684
13685 2011-09-20 Lawrence Mitchell <wence@gmx.li>
13686
13687 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
13688 all whitespace around breakpoint. (Bug#9553)
13689 (f90-find-breakpoint): Only break at whitespace inside a comment.
13690
13691 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
13692
13693 * minibuffer.el (completion-file-name-table): Keep track of errors.
13694 (completion-table-with-predicate): Handle the case where pred1 is nil.
13695 * pcomplete.el (pcomplete-completions-at-point): Simplify.
13696
13697 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
13698
13699 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
13700 (debugger-return-value): Signal an error if the debugging context does
13701 not await any return value.
13702
13703 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
13704 * image-mode.el (image-toggle-display-text)
13705 (image-toggle-display-image): Stay away from evil `intangible'.
13706
13707 2011-09-19 Leo Liu <sdl.web@gmail.com>
13708
13709 * replace.el (occur-revert-arguments): Make it permanent-local.
13710 (occur-mode): Don't call font-lock-defontify.
13711
13712 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
13713
13714 * net/ldap.el (ldap-search-internal): Don't push empty search
13715 result (Bug#9508).
13716
13717 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
13718
13719 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
13720
13721 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
13722
13723 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
13724 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
13725
13726 2011-09-18 Juri Linkov <juri@jurta.org>
13727
13728 * buff-menu.el (Buffer-menu-mode-map):
13729 * dired.el (dired-mode-map):
13730 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
13731 (lisp-interaction-mode-map):
13732 * emacs-lisp/package.el (package-menu-mode-map):
13733 * epa.el (epa-key-list-mode-map):
13734 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
13735 (menu-bar-options-menu):
13736 * outline.el (outline-mode-menu-bar-map):
13737 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
13738 * vc/vc-dir.el (vc-dir-menu-map):
13739 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
13740 Capitalize non-function content words in menu item strings.
13741
13742 * dired.el (dired-mode-map): Add menu item for
13743 `image-dired-dired-toggle-marked-thumbs'.
13744
13745 2011-09-18 Juri Linkov <juri@jurta.org>
13746
13747 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
13748 to `isearch-case-fold-search' and restore its original value
13749 after the `isearch-mode' call.
13750
13751 2011-09-18 Juri Linkov <juri@jurta.org>
13752
13753 * progmodes/grep.el (grep-process-setup): Don't check code for 1
13754 because `zgrep' returns 1 for successful matches (bug#9226).
13755
13756 2011-09-18 Juri Linkov <juri@jurta.org>
13757
13758 * info.el (Info-extract-menu-node-name): Check the second match
13759 for empty string (second test-case of bug#9528).
13760 (Info-last-preorder): Let-bind `Info-history' to nil to not add
13761 intermediate nodes to the history (first test-case of bug#9528).
13762
13763 2011-09-18 Juri Linkov <juri@jurta.org>
13764
13765 * info.el (Info-mode-syntax-table): New variable.
13766 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
13767
13768 2011-09-18 Juri Linkov <juri@jurta.org>
13769
13770 * info.el (Info-file-supports-index-cookies):
13771 Increment line-beginning-position's arg from 3 to 4 because makeinfo
13772 outputs one more line for long file names (bug#4142).
13773
13774 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
13775
13776 * newcomment.el (comment-normalize-vars): If prompting for
13777 comment-start, set comment-start-skip too (Bug#8424).
13778
13779 2011-09-18 Johan Bockgård <bojohan@gnu.org>
13780
13781 * icomplete.el: Fix previous fix of Bug#5849.
13782 (icomplete-mode): Don't set completion-show-inline-help.
13783 (icomplete-minibuffer-setup): Set completion-show-inline-help
13784 locally during icompletion.
13785
13786 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
13787
13788 * woman.el (woman2-process-escapes): Don't delete unrecognized
13789 escapes (Bug#7843).
13790
13791 * files.el (inhibit-first-line-modes-regexps): Add image files.
13792 (hack-local-variables-prop-line): Return nil for malformed
13793 prop-lines (Bug#9044).
13794
13795 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
13796
13797 * net/tramp.el (top): Don't require 'shell.
13798 (tramp-methods): Fix docstring.
13799 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
13800 Return complete remote file name. Handle "smb" case.
13801 Use `tramp-tmpdir', if defined for the respective method.
13802 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
13803
13804 * net/tramp-compat.el (top): Require 'shell.
13805
13806 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
13807 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
13808 `tramp-current-host'.
13809 (tramp-get-remote-tmpdir): Remove.
13810
13811 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
13812 `tramp-tmpdir' entries.
13813 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
13814 (tramp-smb-handle-file-attributes): Ignore errors.
13815 (tramp-smb-wait-for-output): Check also for process end.
13816
13817 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
13818
13819 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
13820 when sending QUIT (bug#9312).
13821
13822 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
13823
13824 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
13825 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
13826 occur-mode-display-occurrence.
13827 (occur-edit-mode): Add usage message.
13828 (occur-cease-edit): New command.
13829 (occur-after-change-function): Use text properties to find the
13830 position of the prefix text.
13831 (occur-engine): Set stickiness of prefix text properties.
13832
13833 2011-09-17 Glenn Morris <rgm@gnu.org>
13834
13835 * progmodes/etags.el (complete-tag):
13836 Fix call to completion-in-region. (Bug#9526)
13837
13838 2011-09-17 Juri Linkov <juri@jurta.org>
13839
13840 * textmodes/ispell.el (ispell-word): Add to the error message
13841 the word, ispell program name and current dictionary (bug#9121).
13842 (ispell-tex-arg-end): Capitalize "error" in the error message.
13843
13844 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
13845
13846 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
13847 check. (Bug#4251)
13848
13849 2011-09-17 Juri Linkov <juri@jurta.org>
13850
13851 * window.el (window-safe-min-height, window-safe-min-width):
13852 Fix typos (followup to bug#9522).
13853
13854 2011-09-17 Sven Joachim <svenjoac@gmx.de>
13855
13856 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
13857
13858 2011-09-16 Eli Zaretskii <eliz@gnu.org>
13859
13860 * simple.el (line-move): If goal-column is set, move by logical
13861 lines, not by display lines. (Bug#971)
13862 (next-line, previous-line, goal-column, line-move-visual): Doc fix
13863 to reflect the above change.
13864
13865 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
13866
13867 * image.el (imagemagick-register-types): Use regexp-opt.
13868
13869 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
13870
13871 * window.el (display-buffer-base-action): Rename from
13872 display-buffer-default-action. Make default value empty.
13873 (display-buffer-overriding-action): Convert to defvar.
13874 (display-buffer-fallback-action): New var.
13875
13876 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
13877
13878 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
13879 declaration.
13880 (package--add-to-archive-contents): If there is a duplicate entry
13881 with an older version, remove it.
13882 (package-menu-mark-delete, package-menu-mark-install)
13883 (package-menu-mark-unmark): Make unused args optional.
13884 (package-menu-mark-obsolete-for-deletion):
13885 Use package-menu-get-status instead of a regexp search.
13886 (package-menu-get-status): Use tabulated-list-entry.
13887 (package-menu-mark-upgrades): New command.
13888 (package-menu-mode-map): Bind it to U. Add it to menu bar.
13889 (package-menu-execute): Do installation before deletion.
13890 (package-menu-refresh, package-menu-execute): Use derived-mode-p
13891 instead of checking major-mode.
13892 (package-menu--find-upgrades): New function.
13893
13894 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
13895
13896 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
13897 passwords in the log buffer.
13898 (smtpmail-process-filter): Update the process marker so that the
13899 "broken by peer" status message is inserted in the right place.
13900
13901 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
13902
13903 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
13904 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
13905 bibtex-completion-at-point-function.
13906 (bibtex-completion-at-point-function): Use them.
13907
13908 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
13909
13910 * mpc.el (mpc-constraints-tag-lookup): New function.
13911 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
13912 also to browser "album|playlist".
13913
13914 2011-09-14 Juri Linkov <juri@jurta.org>
13915
13916 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
13917 (isearch-edit-string): Use length of `isearch-string' when
13918 `isearch-fail-pos' returns nil.
13919 (isearch-message): Remove duplicate code and call
13920 `isearch-fail-pos' with arg `t'.
13921
13922 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
13923
13924 * replace.el (occur-mode-goto-occurrence): Don't force using other
13925 window (Bug#9499).
13926
13927 * dired-aux.el (dired-do-chmod): Don't provide initial input.
13928
13929 2011-09-14 Martin Rudalics <rudalics@gmx.at>
13930
13931 * window.el (display-buffer-window): Remove.
13932 (display-buffer-record-window): Use help-setup window parameter
13933 instead of variable display-buffer-window.
13934 (display-buffer-function, special-display-buffer-names)
13935 (special-display-function): Mention help-setup parameter instead
13936 of display-buffer-window in doc-string.
13937 * help.el (help-window-setup): New argument help-window.
13938 Use help-window-setup parameter instead of display-buffer-window.
13939 Reword some messages.
13940 (with-help-window): Pass window used for displaying the buffer
13941 to help-window-setup. Don't set display-buffer-window.
13942
13943 2011-09-13 Glenn Morris <rgm@gnu.org>
13944
13945 * emacs-lisp/debug.el (debugger-make-xrefs):
13946 Preserve point. (Bug#9462)
13947
13948 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
13949
13950 * window.el (window-deletable-p): Use next-frame.
13951
13952 2011-09-13 Martin Rudalics <rudalics@gmx.at>
13953
13954 * window.el (window-auto-delete): Remove.
13955 (window-deletable-p): Remove argument FORCE. Don't deal with
13956 dedication and previous buffers.
13957 (switch-to-prev-buffer): Don't delete window.
13958 (delete-windows-on): Delete a window's frame if and only if the
13959 window is dedicated.
13960 (replace-buffer-in-windows): Delete buffer's window or frame if
13961 and only if window is dedicated.
13962 (quit-window): Handle quit-restore as before last change.
13963 (bury-buffer): Delete window only if window-deletable-p returns t.
13964
13965 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
13966
13967 * window.el (window-deletable-p): Never delete the last frame on a
13968 given terminal.
13969
13970 2011-09-13 Glenn Morris <rgm@gnu.org>
13971
13972 * help.el (describe-key-briefly): Copy previous standard-output change.
13973
13974 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
13975
13976 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
13977
13978 2011-09-13 Glenn Morris <rgm@gnu.org>
13979
13980 * emacs-lisp/lisp-mode.el (lisp-indent-function):
13981 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
13982
13983 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
13984
13985 * dired-aux.el (dired-mark-read-string): Don't return default
13986 value on empty input (Bug#9361).
13987 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
13988 Omit initial minibuffer contents.
13989 (dired-do-chmod): Signal an error on empty input.
13990 (dired-mark-read-string): Don't return default on empty input.
13991
13992 * files.el (file-modes-symbolic-to-number): Doc fix.
13993
13994 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
13995
13996 * international/mule-cmds.el (ucs-completions): Remove.
13997 (read-char-by-name): Use complete-with-action instead; add metadata.
13998
13999 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14000
14001 * window.el (display-buffer--action-function-custom-type)
14002 (display-buffer--action-custom-type): New vars.
14003 (display-buffer-alist, display-buffer-default-action)
14004 (display-buffer-overriding-action): Add defcustom types.
14005
14006 * frame.el (delete-other-frames): Doc fix (Bug#276).
14007
14008 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14009
14010 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
14011
14012 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14013
14014 Change modes that used same-window-* vars to use switch-to-buffer.
14015
14016 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
14017 Use switch-to-buffer.
14018
14019 * cus-edit.el (customize-group, custom-buffer-create)
14020 (customize-browse, custom-buffer-create-other-window):
14021 Use switch-to-buffer or switch-to-buffer-other-window.
14022
14023 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
14024 (Info-prev, Info-up, Info-speedbar-goto-node)
14025 (info-display-manual): Use switch-to-buffer.
14026 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
14027
14028 * mail/sendmail.el (mail): Use switch-to-buffer.
14029 (mail-recover): Use switch-to-buffer-other-window.
14030
14031 * cmuscheme.el (run-scheme, switch-to-scheme):
14032 * ielm.el (ielm):
14033 * shell.el (shell):
14034 * net/rlogin.el (rlogin):
14035 * net/telnet.el (telnet, rsh):
14036 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
14037
14038 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
14039
14040 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
14041
14042 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14043
14044 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
14045 so don't mention it (bug#9301).
14046 (dired-sort-toggle-or-edit): Clarify string further.
14047
14048 * faces.el (face-spec-set-match-display): Make `(type graphic)'
14049 match `x', `w32' and `ns', like the manual says (bug#9029).
14050
14051 * subr.el (eval-after-load): Doc string clarification (bug#9125).
14052 (process-kill-buffer-query-function): Mention the buffer name in
14053 the query.
14054
14055 * image-mode.el (image-next-line): The line parameter is mandatory
14056 (bug#9258).
14057
14058 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
14059 which can be useful (bug#9301).
14060
14061 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
14062
14063 * subr.el (match-string): Mention that the current buffer should
14064 be the same as the search was done in (bug#9282).
14065
14066 * facemenu.el: Disable the remove-* commands if the mark isn't
14067 active (bug#9162).
14068
14069 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14070
14071 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
14072 of display-buffer.
14073 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
14074
14075 * replace.el (occur-mode-goto-occurrence)
14076 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
14077 and display-buffer.
14078
14079 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
14080 display-buffer.
14081
14082 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
14083 special-display and same-window variables.
14084 (mail-other-window): Use switch-to-buffer-other-window.
14085 (mail-other-frame): USe switch-to-buffer-other-frame.
14086
14087 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
14088 Use display-buffer-other-frame.
14089 (gdb-display-gdb-buffer): Use pop-to-buffer.
14090
14091 * progmodes/gud.el (gud-goto-info): Use info-other-window.
14092
14093 * progmodes/python.el: Don't set same-window-buffer-names.
14094
14095 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
14096
14097 * window.el (display-buffer-alist): Add *Python*.
14098
14099 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14100
14101 * window.el (display-buffer-alist): Add entry for buffers
14102 previously handled same-window-*.
14103 (display-buffer-alist, display-buffer-default-action)
14104 (display-buffer-overriding-action): Mark as risky.
14105 (display-buffer-alist): Document action function changes.
14106 (display-buffer--same-window-action)
14107 (display-buffer--other-frame-action): New variables.
14108 (switch-to-buffer, display-buffer-other-frame): Use them.
14109 (display-buffer): Rename reuse-frame entry to reusable-frames.
14110 (display-buffer-reuse-selected-window): Function deleted.
14111 (display-buffer-reuse-window): Handle reusable-frames alist entry.
14112 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
14113 (display-buffer-special): New function.
14114 (display-buffer--maybe-pop-up-frame-or-window): Rename from
14115 display-buffer-reuse-or-pop-window. Split off special-display
14116 part into display-buffer-special.
14117 (display-buffer-use-some-window): Don't perform any special
14118 pop-up-frames handling.
14119 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
14120 (display-buffer--maybe-same-window): Rename from
14121 display-buffer-maybe-same-window.
14122
14123 * info.el: Don't set same-window-regexps.
14124 (info-setup): New function.
14125 (info-other-window, info): Call it.
14126
14127 * cus-edit.el: Don't set same-window-regexps.
14128 (customize-group): New argument.
14129 (customize-group-other-window): Use it.
14130 (customize-face, customize-face-other-window): Likewise.
14131 (custom-buffer-create-other-window): Use pop-to-buffer directly.
14132
14133 * net/rlogin.el:
14134 * net/telnet.el:
14135 * progmodes/gud.el: Don't set same-window-regexps.
14136
14137 * cmuscheme.el:
14138 * ielm.el:
14139 * shell.el:
14140 * mail/sendmail.el:
14141 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
14142
14143 2011-09-10 Juri Linkov <juri@jurta.org>
14144
14145 * isearch.el (isearch-edit-string): Remove obsolete mention of
14146 `C-w' (`isearch-yank-word-or-char') from docstring.
14147 (isearch-query-replace): Fix typo in docstring (bug#9466).
14148
14149 2011-09-10 Juri Linkov <juri@jurta.org>
14150
14151 * paren.el (show-paren-function): Don't show escaped parens.
14152 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
14153
14154 2011-09-10 Eli Zaretskii <eliz@gnu.org>
14155
14156 * mail/sendmail.el (mml-to-mime, mml-attach-file)
14157 (mm-default-file-encoding): Remove autoload forms, they are
14158 replaced with autoload cookies in mml.el and mm-encode.el.
14159 (mail-add-attachment): New command.
14160 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
14161 (mail-mode): Mention mail-insert-file and mail-add-attachment in
14162 the doc string.
14163 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
14164
14165 2011-09-10 Reuben Thomas <rrt@sc3d.org>
14166
14167 * simple.el (count-words-region): Use buffer if there's no region
14168 (bug#9429).
14169
14170 2011-09-09 Juri Linkov <juri@jurta.org>
14171
14172 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
14173 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
14174 (wdired-isearch-filter-read-only): New function. (Bug#6362)
14175
14176 2011-09-09 Alan Mackenzie <acm@muc.de>
14177
14178 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
14179 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
14180
14181 2011-09-09 Eli Zaretskii <eliz@gnu.org>
14182
14183 Fix for Savannah bug#9392.
14184 * simple.el (mail-encode-mml): New defvar.
14185
14186 * mail/rmail.el (mail-encode-mml): Add a defvar.
14187 (rmail-enable-mime-composing): Default to t.
14188 (rmail-forward): Use MIME method of forwarding only if both
14189 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
14190 Set mail-encode-mml non-nil if the MIME method was used.
14191
14192 * mail/sendmail.el (mml-to-mime): Add autoload form.
14193 (mail-encode-mml): Add a defvar.
14194 (mail-mode): Make mail-encode-mml buffer-local and initialize it
14195 to nil.
14196 (mail-send): If mail-encode-mml is non-nil, run the outgoing
14197 message through mml-to-mime, and reset mail-encode-mml to nil.
14198
14199 2011-09-09 Glenn Morris <rgm@gnu.org>
14200
14201 * woman.el (woman-if-body): When processing an .el block,
14202 do not delete the next .el block as well. (Bug#9447)
14203 (woman-special-characters): Add oq, cq, and hy characters.
14204
14205 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14206
14207 * window.el (window-deletable-p): Make sure window is live before
14208 invoking window-prev-buffers.
14209
14210 2011-09-08 Leo Liu <sdl.web@gmail.com>
14211
14212 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
14213
14214 2011-09-08 Juri Linkov <juri@jurta.org>
14215
14216 * progmodes/compile.el (compilation-environment): Make it
14217 a defcustom (bug#8340).
14218
14219 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14220
14221 * window.el (frame-auto-delete): Rename to window-auto-delete.
14222 Make it control auto-deletion of windows and/or frames.
14223 (window-deletable-p): New argument FORCE. Rewrite conditions
14224 for deleting window/frame. (Bug#9419)
14225 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
14226 Rewrite handling of case when window/frame can be deleted.
14227 (delete-windows-on): Call window-deletable-p with new FORCE
14228 argument t. (Bug#9456)
14229
14230 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
14231
14232 * help-mode.el (help-mode): Restore autoload.
14233
14234 2011-09-07 Juri Linkov <juri@jurta.org>
14235
14236 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
14237 `compilation-environment'. Set buffer-local
14238 `compilation-environment' to `thisenv' later after (funcall mode).
14239 (Bug#8340)
14240
14241 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
14242 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
14243 instead of replacing its value. (Bug#8340)
14244
14245 2011-09-07 Juri Linkov <juri@jurta.org>
14246
14247 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
14248 based on text properties put by `grep-filter' instead of matching
14249 escape sequences.
14250 (grep-mode): Set buffer-local `compilation-error-screen-columns'
14251 to the value of `grep-error-screen-columns' (bug#9438).
14252
14253 2011-09-07 Juri Linkov <juri@jurta.org>
14254
14255 * simple.el (next-error-highlight, next-error-highlight-no-select):
14256 Doc fix (bug#9432).
14257
14258 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
14259
14260 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
14261 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
14262
14263 2011-09-07 Leo Liu <sdl.web@gmail.com>
14264
14265 * net/rcirc.el (rcirc-mode): Conditionally initialize
14266 rcirc-input-ring.
14267
14268 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
14269
14270 * emacs-lisp/find-func.el (find-function-C-source): Only set
14271 find-function-C-source-directory after checking that we found a source
14272 file there (bug#9440).
14273
14274 2011-09-06 Alan Mackenzie <acm@muc.de>
14275
14276 * isearch.el (isearch-other-meta-char): Wherever a key list is
14277 unread, "unread" the prefix arg, too. This fixes bug #8901.
14278
14279 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
14280
14281 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
14282
14283 2011-09-05 Juri Linkov <juri@jurta.org>
14284
14285 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
14286
14287 2011-09-05 Juri Linkov <juri@jurta.org>
14288
14289 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
14290 keeping point where processing of grep matches begins, and
14291 continue to delete remaining escape sequences from the same point.
14292 (grep-filter): Make leading zero optional in "0?1;31m" because
14293 git-grep emits "\033[1;31m" escape sequences unlike expected
14294 "\033[01;31m" as GNU Grep does (bug#9408).
14295 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
14296
14297 2011-09-05 Juri Linkov <juri@jurta.org>
14298
14299 * subr.el (y-or-n-p): Capitalize "yes".
14300
14301 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
14302
14303 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
14304 `tramp-cache-unload-hook' where appropriate.
14305 (tramp-methods): Rename `tramp-remote-sh' to
14306 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
14307 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
14308
14309 * net/tramp-sh.el (top): Don't require 'shell.
14310 (tramp-methods): Add `tramp-remote-shell' and
14311 `tramp-remote-shell-args' entries.
14312 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
14313 (tramp-sh-handle-shell-command): Remove.
14314 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
14315 Use `tramp-remote-shell'.
14316
14317 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
14318
14319 * mail/sendmail.el (sendmail-query-once-function): Delete.
14320 (sendmail-query-once): Save directly to send-mail-function.
14321 Update message-send-mail-function too.
14322
14323 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
14324
14325 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
14326
14327 * progmodes/python.el (python-mode-map): Use correct function to
14328 start python interpreter from menu-bar (as reported by Geert
14329 Kloosterman).
14330 (inferior-python-mode-map): Fix typo.
14331 (python-shell-map): Remove.
14332
14333 2011-09-03 Deniz Dogan <deniz@dogan.se>
14334
14335 * net/rcirc.el (rcirc-print): Simplify code for
14336 rcirc-scroll-show-maximum-output. There is no need to walk
14337 through all windows to find the right one.
14338
14339 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
14340
14341 * help.el (help-return-method): Doc fix.
14342
14343 2011-09-03 Martin Rudalics <rudalics@gmx.at>
14344
14345 * window.el (window-deletable-p): Don't return a non-nil value
14346 when there's a buffer that was shown in the window before.
14347 (Bug#9419)
14348 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14349 Set window's previous buffers to nil.
14350
14351 2011-09-03 Eli Zaretskii <eliz@gnu.org>
14352
14353 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
14354 newline before and after the tag line, so it doesn't interfere
14355 with determining the paragraph direction of bidirectional text.
14356
14357 2011-09-03 Leo Liu <sdl.web@gmail.com>
14358
14359 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
14360
14361 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
14362
14363 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
14364 (pop-to-buffer): Change interactive spec. Pass second argument
14365 directly to display-buffer.
14366 (display-buffer): Fix interactive spec. Use functionp to
14367 distinguish between a function and a list of functions.
14368
14369 * abbrev.el (edit-abbrevs):
14370 * arc-mode.el (archive-extract):
14371 * autoinsert.el (auto-insert):
14372 * bookmark.el (bookmark-bmenu-list):
14373 * files.el (find-file):
14374 * view.el (view-buffer):
14375 * progmodes/compile.el (compilation-goto-locus):
14376 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
14377
14378 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
14379
14380 * window.el (display-buffer-alist): Doc fix.
14381 (display-buffer): Add docstring. Don't treat
14382 display-buffer-default specially.
14383 (display-buffer-reuse-selected-window)
14384 (display-buffer-same-window, display-buffer-maybe-same-window)
14385 (display-buffer-reuse-window, display-buffer-pop-up-frame)
14386 (display-buffer-pop-up-window)
14387 (display-buffer-reuse-or-pop-window)
14388 (display-buffer-use-some-window): New functions.
14389 (display-buffer-default-action): Use them.
14390 (display-buffer-default): Delete.
14391 (pop-to-buffer-1): Fix choice of actions.
14392
14393 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
14394
14395 * minibuffer.el (completion--insert-strings): Don't get confused by
14396 completion entries that end with an LF char.
14397
14398 2011-09-01 Eli Zaretskii <eliz@gnu.org>
14399
14400 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
14401
14402 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
14403
14404 * window.el (display-buffer): Restore interactive spec.
14405 (display-buffer-same-window, display-buffer-other-window):
14406 New functions.
14407 (pop-to-buffer-1): New function. Use the above.
14408 (pop-to-buffer, pop-to-buffer-same-window): Use it.
14409 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
14410
14411 * view.el (view-buffer-other-window, view-buffer-other-frame):
14412 Just use pop-to-buffer.
14413
14414 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14415
14416 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
14417
14418 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
14419
14420 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
14421
14422 2011-08-31 Richard Stallman <rms@gnu.org>
14423
14424 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
14425 of the separation of rmail-view-buffer from rmail-buffer.
14426 If you say no to "replace original", the decrypt is in the
14427 view buffer. If you say yes, the decrypt goes into the
14428 rmail buffer also.
14429
14430 2011-08-31 Martin Rudalics <rudalics@gmx.at>
14431
14432 * window.el (display-buffer-window): Rewrite doc-string.
14433 (display-buffer-record-window): New function.
14434 (display-buffer-macro-specifiers)
14435 (display-buffer-even-window-sizes, display-buffer-set-height)
14436 (display-buffer-set-width, display-buffer-in-window)
14437 (display-buffer-reuse-window, display-buffer-split-specifiers)
14438 (display-buffer-side-specifiers, display-buffer-split-window-1)
14439 (display-buffer-split-window, display-buffer-split-atom-window)
14440 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
14441 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
14442 (display-buffer-other-window-means-other-frame)
14443 (display-buffer-normalize-special)
14444 (display-buffer-normalize-default)
14445 (display-buffer-normalize-argument)
14446 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
14447 (display-buffer-normalize-specifiers, display-buffer-frame)
14448 (display-buffer-same-window, display-buffer-same-frame)
14449 (display-buffer-other-window)
14450 (display-buffer-same-frame-other-window)
14451 (display-buffer-other-frame, pop-to-buffer-same-window)
14452 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
14453 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
14454 (switch-to-buffer-same-frame)
14455 (switch-to-buffer-other-window-same-frame)
14456 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
14457 (display-buffer-alist-set-1, display-buffer-alist-set-2)
14458 (display-buffer-alist-set): Remove.
14459 (display-buffer-function, special-display-buffer-names)
14460 (special-display-regexps, special-display-function):
14461 In doc-string refer to display-buffer-window and quit-restore
14462 parameter.
14463 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
14464 (special-display-frame-alist, special-display-popup-frame)
14465 (same-window-buffer-names, same-window-regexps, same-window-p)
14466 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
14467 (split-window-preferred-function, split-height-threshold)
14468 (split-width-threshold, window-splittable-p)
14469 (split-window-sensibly, window--try-to-split-window)
14470 (window--frame-usable-p, even-window-heights)
14471 (window--even-window-heights, window--display-buffer-1)
14472 (window--display-buffer-2, display-buffer-other-frame):
14473 Restore old Emacs 23 code, order and doc-strings where applicable.
14474 (display-buffer-default, display-buffer-assq-regexp): New functions.
14475 (display-buffer-alist): Rewrite doc-string.
14476 (display-buffer-default-action)
14477 (display-buffer-overriding-action): New variables.
14478 (display-buffer, switch-to-buffer): Rewrite.
14479 (pop-to-buffer): Restore Emacs 23 behavior but use
14480 window-normalize-buffer-to-display.
14481 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
14482 Restore Emacs 23 behavior but use
14483 window-normalize-buffer-to-switch-to.
14484 (pop-to-buffer-same-window): Rewrite.
14485 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
14486 Rewrite using Emacs 23 options.
14487
14488 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
14489
14490 * net/tramp.el (tramp-root-regexp): Remove.
14491 (tramp-completion-file-name-regexp-unified)
14492 (tramp-completion-file-name-regexp-separate)
14493 (tramp-completion-file-name-regexp-url): Don't use leading volume
14494 letter on w32 systems. (Bug#5303, Bug#9311)
14495 (tramp-drop-volume-letter): Simplify definition.
14496 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
14497
14498 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
14499
14500 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
14501 (bug#9356).
14502
14503 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
14504
14505 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
14506
14507 2011-08-29 Juri Linkov <juri@jurta.org>
14508
14509 * isearch.el (isearch-done): Don't display message "Mark saved"
14510 when arg `edit' is non-nil to prevent its flicker in the echo area.
14511
14512 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
14513
14514 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
14515 obsolete packages for deletion.
14516
14517 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
14518
14519 * help-mode.el (help-mode-map): Add special-mode-map to parent.
14520 (help-mode): Derive help-mode from special-mode. Don't invoke
14521 view-mode from help-mode.
14522 (help-xref-override-view-map): Remove.
14523 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
14524 view-mode is not used anymore.
14525
14526 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
14527
14528 * server.el (server-port): Doc fix.
14529
14530 * cus-theme.el (custom-theme-choose-mode): Inherit from
14531 special-mode (Bug#9124).
14532 (custom-theme-choose-mode-map): Add special-mode to parent.
14533
14534 2011-08-28 Alan Mackenzie <acm@muc.de>
14535
14536 * progmodes/cc-fonts.el
14537 (c-make-font-lock-BO-decl-search-function): New function.
14538 (c-basic-matchers-after - "Fontify the clauses after various
14539 keywords"): Extract the three keyword lists for the 3 erroneous
14540 constructs from the list of four, and use the new function above
14541 in place of an old one.
14542
14543 2011-08-28 Deniz Dogan <deniz@dogan.se>
14544
14545 * net/rcirc.el (rcirc-insert-prev-input)
14546 (rcirc-insert-next-input): Remove unused argument.
14547
14548 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
14549
14550 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
14551
14552 2011-08-27 Alan Mackenzie <acm@muc.de>
14553
14554 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
14555 handle function pointer parameters properly.
14556
14557 2011-08-27 Martin Rudalics <rudalics@gmx.at>
14558
14559 * window.el (display-buffer-reuse-window): Fix case where
14560 selected window was reused with non-nil OTHER-WINDOW argument.
14561 (Bug#9381)
14562
14563 2011-08-27 Deniz Dogan <deniz@dogan.se>
14564
14565 * net/rcirc.el (rcirc-check-auth-status): Adding support for
14566 oftc's NickServ messages.
14567
14568 2011-08-27 Glenn Morris <rgm@gnu.org>
14569
14570 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
14571
14572 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
14573
14574 * emacs-lisp/package.el (package-install): Call package-initialize
14575 if called interactively.
14576
14577 2011-08-26 Leo Liu <sdl.web@gmail.com>
14578
14579 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
14580
14581 2011-08-25 Juri Linkov <juri@jurta.org>
14582
14583 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
14584 `search-whitespace-regexp' (bug#9364).
14585
14586 2011-08-25 Juri Linkov <juri@jurta.org>
14587
14588 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
14589 `regexp-search-ring' to their global values to protect from
14590 updating by `read-from-minibuffer' (bug#9185).
14591
14592 2011-08-25 Juri Linkov <juri@jurta.org>
14593
14594 * textmodes/ispell.el (ispell-command-loop): Add newline
14595 at the end of the "Use option `i'..." line.
14596
14597 2011-08-25 Juri Linkov <juri@jurta.org>
14598
14599 * battery.el (display-battery-mode): If `battery-status-function'
14600 or `battery-mode-line-format' is nil, display the message and set
14601 `display-battery-mode' to nil (bug#9363).
14602
14603 2011-08-25 Eli Zaretskii <eliz@gnu.org>
14604
14605 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
14606 bidi-string-mark-left-to-right; they are unnecessary now.
14607
14608 2011-08-25 Deniz Dogan <deniz@dogan.se>
14609
14610 * net/quickurl.el: Documentation typo fixes.
14611
14612 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
14613
14614 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
14615
14616 2011-08-25 Glenn Morris <rgm@gnu.org>
14617
14618 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
14619
14620 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
14621 (smtpmail-via-smtp): Handle nil response from smtp.
14622
14623 2011-08-24 Juri Linkov <juri@jurta.org>
14624
14625 * proced.el (proced-marked): Inherit from `error' instead of
14626 `font-lock-warning-face'.
14627
14628 * ibuffer.el (ibuffer-marked-face): Change default face from
14629 `font-lock-warning-face' to `warning'.
14630 (ibuffer-deletion-face): Change default face from
14631 `font-lock-type-face' to `error'.
14632
14633 * battery.el (battery-update): Use the face `error' instead of
14634 `font-lock-warning-face' (bug#6117).
14635
14636 2011-08-24 Juri Linkov <juri@jurta.org>
14637
14638 * faces.el (success): Change face color from "Green3" to
14639 "ForestGreen" on light background (bug#9353).
14640
14641 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
14642
14643 * window.el (quit-window): Rename from quit-restore-window.
14644 Use same arglist as old quit-window.
14645 (frame-auto-delete): Doc fix.
14646
14647 * view.el (view-mode-exit): Use quit-window.
14648
14649 2011-08-24 Juri Linkov <juri@jurta.org>
14650
14651 * isearch.el (isearch-ring-adjust1): Start visiting previous
14652 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
14653 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
14654 for empty search string (when the last search string is reused
14655 automatically) to adjust the isearch ring to the last element and
14656 prepare the correct index for further M-p commands (bug#9185).
14657
14658 2011-08-24 Kenichi Handa <handa@m17n.org>
14659
14660 * international/ucs-normalize.el: If decomposition property of
14661 CHAR is the default one (i.e. a list of CHAR itself), treat it as
14662 nil.
14663 (nfd, nfkd): Likewise.
14664
14665 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
14666
14667 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
14668 from process filters aren't reliably transmitted to the surrounding
14669 accept-process-output.
14670 (mpc-proc-check): New function.
14671 (mpc-proc-sync): Use it (bug#8293)
14672
14673 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
14674
14675 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
14676 Add compatibility functions (bug#9313).
14677
14678 2011-08-23 Eli Zaretskii <eliz@gnu.org>
14679
14680 * cus-start.el (all): Add entry for bidi-paragraph-direction.
14681
14682 * international/uni-bidi.el: Regenerate.
14683
14684 2011-08-23 Kenichi Handa <handa@m17n.org>
14685
14686 * international/charprop.el:
14687 * international/uni-bidi.el:
14688 * international/uni-category.el:
14689 * international/uni-combining.el:
14690 * international/uni-comment.el:
14691 * international/uni-decimal.el:
14692 * international/uni-decomposition.el:
14693 * international/uni-digit.el:
14694 * international/uni-lowercase.el:
14695 * international/uni-mirrored.el:
14696 * international/uni-name.el:
14697 * international/uni-numeric.el:
14698 * international/uni-old-name.el:
14699 * international/uni-titlecase.el:
14700 * international/uni-uppercase.el: Regenerate.
14701
14702 2011-08-23 Martin Rudalics <rudalics@gmx.at>
14703
14704 * help.el (help-window-setup): Fix message displayed when other
14705 window is reused. (Bug#9341)
14706
14707 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
14708
14709 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
14710 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
14711
14712 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
14713 Mark obsolete.
14714 * shell.el (shell-parse-pcomplete-arguments): New function.
14715 (shell-completion-vars): Use it instead (bug#9160).
14716
14717 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
14718
14719 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
14720 strings and comments (bug#9333).
14721
14722 * emacs-lisp/debug.el (debug-arglist): New function.
14723 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
14724 (debug-on-entry-1): Handle interpreted closures (bug#9120).
14725
14726 2011-08-22 Juri Linkov <juri@jurta.org>
14727
14728 * progmodes/compile.el (compilation-mode-font-lock-keywords):
14729 Revert regexp that highlights output switches to its old
14730 pre-2010-10-28 value and remove one `?' from it (bug#9319).
14731
14732 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
14733 to check for empty output (bug#9226).
14734
14735 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
14736
14737 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
14738 symbol-constituent as the default, as that stops font-lock from
14739 working properly (Bug#8843).
14740
14741 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14742
14743 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
14744 `coding-system-for-*' around the process open call to avoid
14745 auth-source side effects.
14746 (smtpmail-try-auth-methods): Expand the secret password.
14747 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
14748 probe hangs.
14749
14750 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
14751
14752 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
14753
14754 * emacs-lisp/find-func.el (find-function-noselect): New arg
14755 lisp-only.
14756
14757 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
14758 signal an error for built-in functions (Bug#6664).
14759
14760 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14761
14762 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
14763 (smtpmail-try-auth-methods): Use it.
14764
14765 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
14766
14767 * font-lock.el (font-lock-fontify-region)
14768 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
14769 (font-lock-default-unfontify-buffer)
14770 (font-lock-default-fontify-region)
14771 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
14772
14773 * progmodes/compile.el (compilation-error-properties):
14774 Fix confusion between file struct and message struct (Bug#9319).
14775 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
14776 `ant' regexp.
14777
14778 * net/browse-url.el (browse-url-firefox): Don't call
14779 browse-url-firefox-sentinel unless using -remote (Bug#9328).
14780
14781 2011-08-20 Glenn Morris <rgm@gnu.org>
14782
14783 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
14784
14785 * tutorial.el (tutorial--default-keys): Update some default bindings.
14786
14787 * files.el (hack-local-variables): Fully ignore case for "mode:".
14788
14789 2011-08-20 Alan Mackenzie <acm@muc.de>
14790
14791 Resolve invalid use of a regexp in regexp-opt.
14792
14793 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
14794 detection for a java annotation.
14795
14796 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
14797 detection for a java annotation.
14798
14799 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
14800 handling for java.
14801 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
14802
14803 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
14804
14805 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
14806 (Bug#9274).
14807
14808 2011-08-20 Alan Mackenzie <acm@muc.de>
14809
14810 Fontify CPP expressions correctly when starting in the middle of
14811 such a construct. Mainly for when jit-lock etc. starts a chunk
14812 here.
14813
14814 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
14815 variable.
14816 (c-make-font-lock-search-form): New function, extracted from
14817 c-make-font-lock-search-function.
14818 (c-make-font-lock-search-function): Use the above function.
14819 (c-make-font-lock-context-search-function): New function.
14820 (c-cpp-matchers): Enhance the preprocessor expression case with
14821 the above function
14822 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
14823 which takes an expression.
14824
14825 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
14826
14827 2011-08-20 Martin Rudalics <rudalics@gmx.at>
14828
14829 * window.el (display-buffer-reuse-window)
14830 (display-buffer-pop-up-window): Don't reuse or split a side
14831 window.
14832
14833 2011-08-19 Glenn Morris <rgm@gnu.org>
14834
14835 * files.el (hack-local-variables-prop-line, hack-local-variables):
14836 Downcase "Mode:". (Bug#9331)
14837
14838 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
14839
14840 * international/characters.el: Add L and R categories.
14841
14842 * subr.el (bidi-string-mark-left-to-right): Rename from
14843 string-mark-left-to-right. Use category search.
14844
14845 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
14846
14847 2011-08-18 Juri Linkov <juri@jurta.org>
14848
14849 * faces.el (error, warning, success): New faces with definitions
14850 copied from old default values of `font-lock-warning-face',
14851 `compilation-warning', `compilation-info' (bug#6117).
14852
14853 * font-lock.el (font-lock-warning-face): Inherit from `error'.
14854
14855 * progmodes/compile.el (compilation-error): Inherit from `error'.
14856 (compilation-warning): Inherit from `warning'.
14857 (compilation-info): Inherit from `success'.
14858
14859 * dired.el (dired-marked): Inherit from `warning'.
14860 (dired-flagged): Inherit from `error'.
14861
14862 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
14863
14864 * mail/smtpmail.el (auth-source): Require to avoid problems with
14865 binding variables (bug#9298). Also clean up some unused
14866 autoloads.
14867
14868 * net/network-stream.el (network-stream-open-starttls):
14869 Support using starttls.el without using gnutls-cli.
14870
14871 2011-08-17 Juri Linkov <juri@jurta.org>
14872
14873 * progmodes/grep.el (rgrep): Handle the case when
14874 `grep-find-command' is a cons cell (bug#9278).
14875
14876 2011-08-17 Martin Rudalics <rudalics@gmx.at>
14877
14878 * window.el (display-buffer-pop-up-frame): Run frame creation
14879 function with BUFFER current (as special-display-popup-frame
14880 does). Reported by Drew Adams.
14881
14882 2011-08-17 Daiki Ueno <ueno@unixuser.org>
14883
14884 * epa-mail.el: Simplify GnuPG group expansion using
14885 epg-expand-group.
14886 (epa-mail-group-alist, epa-mail-group-modtime)
14887 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
14888 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
14889 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
14890 Remove.
14891
14892 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
14893
14894 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
14895
14896 2011-08-16 Alan Mackenzie <acm@muc.de>
14897
14898 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
14899 Correct, to avoid the inside of macros.
14900
14901 2011-08-16 Richard Stallman <rms@gnu.org>
14902
14903 * epa-mail.el: Handle GnuPG group definitions.
14904 (epa-mail-group-alist, epa-mail-group-modtime)
14905 (epa-mail-gnupg-conf-file): New variables.
14906 (epa-mail-parse-groups, epa-mail-sync-groups)
14907 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
14908 (epa-mail-expand-recipients): New functions.
14909 (epa-mail-encrypt): Call epa-mail-expand-recipients.
14910
14911 * mail/rmail.el (rmail-epa-decrypt): New command.
14912
14913 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
14914 Don't bind buffer-read-only, just inhibit-read-only.
14915 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
14916 (epa-decrypt-armor-in-region): Make error message clearer.
14917
14918 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
14919
14920 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
14921 and "a2b" to "ab" for `prefix'.
14922
14923 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
14924
14925 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
14926 filter groups.
14927 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
14928 Fourquet (Bug#8804).
14929
14930 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
14931
14932 * startup.el (argi): Declare as global variable (bug#9275).
14933
14934 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
14935
14936 * subr.el (string-mark-left-to-right): Search the entire string
14937 for RTL script, not just the terminating character. Doc fix.
14938
14939 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
14940
14941 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
14942 New function.
14943 (js--regexp-literal, js-syntax-propertize-function): Remove.
14944 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
14945 (js-mode-map): Don't rebind electric keys.
14946 (js-insert-and-indent): Remove.
14947 (js-mode): Setup electric-layout and electric-indent instead.
14948
14949 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
14950
14951 2011-08-12 Daiki Ueno <ueno@unixuser.org>
14952
14953 * epa.el (epa-progress-callback-function): Fix the logic of
14954 displaying progress.
14955 * epa-file.el (epa-file-insert-file-contents): Make progress
14956 display more user-friendly.
14957 (epa-file-write-region): Ditto.
14958
14959 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
14960
14961 * subr.el (string-mark-left-to-right): New function.
14962
14963 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
14964 Use string-mark-left-to-right.
14965 (list-buffers-noselect): Caller changed.
14966
14967 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
14968 Use string-mark-left-to-right.
14969 (tabulated-list-print): Recenter after moving point.
14970
14971 2011-08-10 Juri Linkov <juri@jurta.org>
14972
14973 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
14974 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
14975 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
14976
14977 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
14978
14979 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
14980 (Bug#7554).
14981
14982 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
14983
14984 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
14985 character. (Bug#6594)
14986
14987 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
14988
14989 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
14990 (image-dired--with-db-file): New macro.
14991 (image-dired-write-tags, image-dired-remove-tag)
14992 (image-dired-create-gallery-lists, image-dired-write-comments)
14993 (image-dired-get-comment, image-dired-mark-tagged-files)
14994 (image-dired-list-tags, image-dired-gallery-generate): Use it.
14995 (image-dired-gallery-generate): Use insert-file-contents.
14996
14997 * time.el (display-time-world-list, display-time-world-display):
14998 * time-stamp.el (time-stamp-string):
14999 * vc/add-log.el (add-change-log-entry): Use setenv instead of
15000 set-time-zone-rule (Bug#7337).
15001
15002 2011-08-08 Daiki Ueno <ueno@unixuser.org>
15003
15004 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
15005 (epg-error-to-string, epg-errors-to-string): New function.
15006 (epg-wait-for-completion): Reverse errors list.
15007 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
15008 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
15009 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
15010 (epg-sign-keys, epg-generate-key-from-file)
15011 (epg-generate-key-from-string): Format errors by using
15012 epg-errors-to-string (bug#9255).
15013 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
15014
15015 2011-08-07 Juri Linkov <juri@jurta.org>
15016
15017 * faces.el (list-faces-display): Remove extra angle bracket
15018 from `help-mode-map'.
15019
15020 * info.el (Info-history-toc-nodes): Doc fix.
15021
15022 * longlines.el (longlines-mode): Doc fix.
15023
15024 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
15025
15026 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
15027 of statements and in a few more cases (bug#9183).
15028
15029 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
15030 New functions.
15031 (cl-transform-lambda): Use them (bug#9239).
15032
15033 2011-08-05 Martin Rudalics <rudalics@gmx.at>
15034
15035 * window.el (display-buffer-same-window)
15036 (display-buffer-same-frame, display-buffer-other-window)
15037 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
15038 (pop-to-buffer-other-window)
15039 (pop-to-buffer-same-frame-other-window)
15040 (pop-to-buffer-other-frame): Make them defuns.
15041 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
15042
15043 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15044
15045 * subr.el (make-composed-keymap): Move from C. Change calling
15046 convention, and improve docstring to bring attention to a subtle point.
15047 * minibuffer.el (completing-read-default): Adjust accordingly.
15048
15049 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
15050
15051 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
15052 (tramp-open-shell): Use `tramp-shell-quote-argument'.
15053
15054 * net/trampver.el: Update release number.
15055
15056 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15057
15058 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
15059 "in" (bug#9190).
15060
15061 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15062
15063 * mail/sendmail.el (sendmail-query-once): Restore the current
15064 buffer after querying (bug#9074).
15065
15066 * dired.el (dired-flagged): Use different faces for marked and
15067 flagged files (bug#6117).
15068
15069 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
15070 (bug#4433).
15071
15072 * ido.el (ido-mode): Switch off the message if called
15073 non-interactively.
15074
15075 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
15076 before 587, since it appears that that's more likely to work for
15077 more people.
15078
15079 * cus-edit.el (custom-file): When running under emacs -q, always
15080 refuse to save the customizations, even if the .emacs file doesn't
15081 exist.
15082
15083 * info.el: Remove the `Info-beginning-of-buffer' function
15084 (bug#8325).
15085
15086 * net/network-stream.el (network-stream-open-starttls):
15087 Use `starttls-available-p' to see whether starttls.el can be used.
15088
15089 2011-08-01 Martin Rudalics <rudalics@gmx.at>
15090
15091 * window.el (display-buffer-in-window): Don't set dedicated status
15092 of window here (Bug#9215).
15093 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15094 (display-buffer-pop-up-side-window)
15095 (display-buffer-in-side-window): Set dedicated status of window here.
15096
15097 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
15098
15099 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
15100 before binding generated-autoload-file.
15101
15102 2011-08-01 Deniz Dogan <deniz@dogan.se>
15103
15104 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
15105
15106 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
15107
15108 Sync with Tramp 2.2.2.
15109
15110 * net/trampver.el: Update release number.
15111
15112 2011-07-30 Juri Linkov <juri@jurta.org>
15113
15114 * dired-aux.el (dired-touch-initial): Remove function.
15115 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
15116 current time, and `default' to the last modification time of the
15117 current marked file (bug#6887).
15118
15119 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
15120
15121 * simple.el (goto-line): Use string-to-number to provide a
15122 numeric argument to read-number (bug#9163).
15123
15124 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
15125
15126 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
15127 connection process, it could be nil.
15128
15129 2011-07-27 Leo Liu <sdl.web@gmail.com>
15130
15131 Simplify url handling in rcirc-mode.
15132
15133 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
15134 (rcirc-browse-url-at-mouse): Remove.
15135 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
15136
15137 2011-07-26 Alan Mackenzie <acm@muc.de>
15138
15139 Fontify bitfield declarations properly.
15140
15141 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
15142 (c-symbol-chars): Now exported as a lang variable.
15143 (c-not-primitive-type-keywords): New lang variable.
15144
15145 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
15146 QT keyword "more" to prevent "more slots: ...." being spuriously
15147 parsed as a bitfield declaration.
15148
15149 * progmodes/cc-engine.el (c-beginning-of-statement-1):
15150 Refactor and enhance to handle bitfield declarations.
15151 (c-punctuation-in): New function.
15152 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
15153 declarations properly.
15154
15155 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
15156
15157 * calendar/icalendar.el (icalendar--all-events): Take care of
15158 multiple vcalendars in a single file.
15159 (icalendar--convert-float-to-ical): Checkdoc fixes.
15160
15161 2011-07-25 Deniz Dogan <deniz@dogan.se>
15162
15163 * image.el (insert-image): Clarifying docstring.
15164
15165 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
15166
15167 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
15168 `tramp-send-command-and-check' if there is no error.
15169 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
15170
15171 2011-07-22 Alan Mackenzie <acm@muc.de>
15172
15173 Prevent cc-langs.elc being loaded at run time.
15174
15175 * progmodes/cc-mode.el: Remove two autoload forms which loaded
15176 cc-langs.
15177
15178 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
15179 "(require 'cc-langs)". Quote a form so it will evaluate at
15180 (cc-mode's) compilation time.
15181
15182 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
15183
15184 * net/tramp.el (tramp-file-name-handler): Avoid recursive
15185 loading. (Bug#9114)
15186
15187 2011-07-21 Martin Rudalics <rudalics@gmx.at>
15188
15189 * window.el (display-buffer-pop-up-window)
15190 (display-buffer-pop-up-side-window)
15191 (display-buffer-in-side-window): Call display-buffer-set-height
15192 and display-buffer-set-width after setting the new window's
15193 buffer so `fit-window-to-buffer' and friends work on the right buffer.
15194
15195 2011-07-20 Sam Steingold <sds@gnu.org>
15196
15197 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
15198 (etags-tags-included-tables): Call `convert-standard-filename' on
15199 the file names contained in TAGS so that windows Emacs can handle
15200 TAGS files created by cygwin ctags.
15201
15202 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
15203
15204 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
15205 which apparently didn't work.
15206
15207 2011-07-19 Roland Winkler <winkler@gnu.org>
15208
15209 * proced.el (proced-send-signal): For *Marked Processes* buffer
15210 put point at beginning of buffer.
15211
15212 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
15213
15214 * proced.el (proced-format): Make header lines align with the text
15215 (bug#1779).
15216
15217 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15218
15219 * view.el (view-buffer): Allow running in `special' modes if we're
15220 visiting a file (bug#8615).
15221
15222 2011-07-19 Martin Rudalics <rudalics@gmx.at>
15223
15224 * window.el (display-buffer-alist-of-strings-p)
15225 (display-buffer-alist-set-1, display-buffer-alist-set-2):
15226 New functions.
15227 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
15228 more accurately.
15229
15230 2011-07-18 Alan Mackenzie <acm@muc.de>
15231
15232 Fontify declarators properly when, e.g., a jit-lock chunk begins
15233 inside a declaration.
15234
15235 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
15236
15237 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
15238 New function.
15239 (c-complex-decl-matchers): Insert reference to
15240 c-font-lock-enclosing-decls.
15241
15242 * progmodes/cc-engine.el (c-backward-single-comment):
15243 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
15244 to nil around calls to (forward-comment -1).
15245
15246 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15247
15248 * image.el (put-image): Doc typo fix.
15249
15250 * progmodes/etags.el (tags-search): Doc typo fix.
15251
15252 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
15253 password if we get errors 550 to 554.
15254
15255 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
15256
15257 * net/gnutls.el (gnutls-log-level): Remove.
15258
15259 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
15260 indentation character (bug#6380).
15261
15262 * files.el (buffer-offer-save): Made permanently local (bug#6241).
15263
15264 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
15265 to clarify what the problem is (bug#4291).
15266
15267 * simple.el (current-kill): Clarify what
15268 `interprogram-paste-function' does (bug#7500).
15269 (auto-fill-mode): Document `auto-fill-function' in relation to
15270 `auto-fill-mode' (bug#2470).
15271
15272 2011-07-16 Lawrence Mitchell <wence@gmx.li>
15273
15274 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
15275 method if slot is read-only (bug#9035).
15276
15277 2011-07-16 Martin Rudalics <rudalics@gmx.at>
15278
15279 * frame.el (select-frame-set-input-focus): New argument NORECORD.
15280 * window.el (pop-to-buffer): Select window used even if it was
15281 selected before, see discussion of (Bug#8615), (Bug#6954).
15282 Pass argument NORECORD on to select-frame-set-input-focus.
15283
15284 2011-07-15 Glenn Morris <rgm@gnu.org>
15285
15286 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
15287 Respect help-form.
15288
15289 2011-07-09 Lawrence Mitchell <wence@gmx.li>
15290
15291 * net/gnutls.el (gnutls-min-prime-bits): New variable.
15292 (gnutls-negotiate): Use it.
15293
15294 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15295
15296 * net/gnutls.el (gnutls-negotiate):
15297 Upcase `gnutls-algorithm-priority'.
15298
15299 2011-07-15 Glenn Morris <rgm@gnu.org>
15300
15301 * jka-compr.el (jka-compr-verbose): Move from here...
15302 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
15303 Add missing :version tag.
15304 * info.el: No need to require jka-compr when compiling.
15305
15306 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15307
15308 * net/gnutls.el (gnutls-algorithm-priority): New variable.
15309 (gnutls-negotiate): Use it.
15310
15311 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
15312
15313 * info.el (Info-beginning-of-buffer): New command.
15314 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
15315 announcing `b' as the key (bug#8325).
15316 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
15317
15318 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
15319
15320 * international/mule-cmds.el
15321 (describe-specified-language-support): Make the error message
15322 clearer (bug#8905).
15323
15324 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
15325
15326 * isearch.el (isearch-barrier): Add a doc string, since it's
15327 mentioned in a function doc string (bug#8678).
15328
15329 2011-07-15 Martin Rudalics <rudalics@gmx.at>
15330
15331 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
15332 buffer argument (Bug#9083) and self-identifying label argument.
15333
15334 2011-07-15 Glenn Morris <rgm@gnu.org>
15335
15336 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
15337
15338 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15339
15340 * man.el (Man-fontify-manpage): Fix message when formatting the
15341 man page (bug#7929).
15342
15343 2011-07-14 Eli Zaretskii <eliz@gnu.org>
15344
15345 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
15346 argument LRM; if non-nil, append an invisible LRM character to the
15347 buffer name.
15348 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
15349 last argument non-nil, when formatting buffer names.
15350 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
15351 paragraph direction.
15352
15353 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15354
15355 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
15356 the man page name (bug#7929).
15357
15358 * image.el (put-image): Mention the `put-image' overlay property
15359 (bug#7834).
15360
15361 * scroll-bar.el (set-scroll-bar-mode): Mention that
15362 `scroll-bar-mode' lists the values (bug#7772).
15363
15364 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
15365 command (bug#7729).
15366
15367 * rect.el (apply-on-rectangle): Return the point after the last
15368 operation.
15369 (string-rectangle): Go to the point after the last operation
15370 (bug#7522).
15371
15372 * printing.el (pr-toggle-region): Clarify the documentation
15373 slightly (bug#7493).
15374
15375 * time.el (display-time-update):
15376 Allow `display-time-mail-function' to return nil (bug#7158).
15377 Fix suggested by Detlev Zundel.
15378
15379 * vc/diff.el (diff): Clarify the order the file names are read
15380 (bug#7111).
15381
15382 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
15383 the doc string (bug#7015).
15384
15385 * font-lock.el (font-lock-maximum-decoration): Mention what
15386 numeric levels mean (bug#6935).
15387
15388 * startup.el (initial-buffer-choice): Don't mention the `none'
15389 selection, which is against policy.
15390
15391 2011-07-14 Martin Rudalics <rudalics@gmx.at>
15392
15393 * window.el (display-buffer-normalize-special):
15394 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
15395
15396 2011-07-14 Eli Zaretskii <eliz@gnu.org>
15397
15398 * subr.el (version<, version<=, version=): Mention "-CVS" and
15399 "-12345" alpha version numbers.
15400
15401 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
15402
15403 * bindings.el: Add advertised binding for set-mark-command
15404 (Bug#5772).
15405
15406 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
15407
15408 * bindings.el (mode-line-other-buffer):
15409 * bookmark.el (bookmark-bmenu-2-window):
15410 * bs.el (bs-cycle-next, bs-cycle-previous):
15411 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
15412 switch-to-buffer.
15413
15414 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
15415 Delete.
15416
15417 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
15418
15419 * follow.el (follow-debug-message, follow-redisplay):
15420 * jka-cmpr-hook.el (with-auto-compression-mode):
15421 Fix typos in docstrings.
15422
15423 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15424
15425 * subr.el (with-silent-modifications): Clarify somewhat what the
15426 macro inhibits (bug#6525).
15427
15428 * simple.el (eval-expression): Note what it does if called
15429 interactively (bug#6495).
15430
15431 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
15432
15433 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
15434 Use pop-to-buffer buffer-or-name if it is nil.
15435
15436 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15437 Remove switch-to-buffer.
15438
15439 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15440
15441 * files.el (make-directory): Clarify that an error will be raised
15442 if there's an error (bug#6397).
15443
15444 * startup.el (initial-buffer-choice): Add `none' as a choice
15445 (bug#6234).
15446
15447 * subr.el (add-hook): Clarify section about buffer-local hooks
15448 (bug#6218).
15449
15450 * dired.el (dired-flagged): Clarify doc string (bug#6117).
15451
15452 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
15453
15454 * tabify.el (untabify): Preserve the current column so that point
15455 doesn't move (bug#6032).
15456
15457 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15458
15459 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
15460 Rewrite to avoid awkward possessive "s" (bug#5986).
15461
15462 2011-07-13 Glenn Morris <rgm@gnu.org>
15463
15464 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
15465 (dired-insert-directory): Give a message the first time
15466 if ls is found not to support --dired.
15467
15468 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15469
15470 * simple.el (toggle-truncate-lines): Clarify what is toggled
15471 (bug#5580). Text by Drew Adams.
15472
15473 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
15474
15475 * simple.el (blink-matching-open): Make the error message from the
15476 last change less verbose.
15477
15478 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
15479
15480 * font-lock.el (font-lock-comment-face): Use the high contrast
15481 "yellow" color for font-lock-comment-face on low color terminals
15482 using a dark background color (bug#4221).
15483
15484 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15485
15486 * dired.el (dired-insert-set-properties): Make the doc string
15487 reflect what it does now (bug#5325).
15488
15489 * simple.el (blink-matching-open): Say that we were unable to find
15490 the match within the limit, if we're limited (bug#5122).
15491
15492 * international/mule-cmds.el (prefer-coding-system): Add an
15493 example (bug#4869).
15494
15495 * progmodes/etags.el (tags-search): Document `file-list-form'
15496 (bug#4731).
15497
15498 2011-07-13 Lawrence Mitchell <wence@gmx.li>
15499
15500 * net/browse-url.el (browse-url-default-browser)
15501 (browse-url-browser-function): Make the default browser choice a
15502 bit more logical (bug#4300). Also clean up the doc string.
15503
15504 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
15505
15506 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
15507 binary endings (bug#4440).
15508
15509 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15510
15511 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
15512 which can be pretty annoying (bug#8971).
15513
15514 * jka-compr.el (jka-compr-verbose): New variable, and use
15515 throughout (bug#8971).
15516
15517 * info.el (Info-find-file): Fall back on the installation
15518 directory if we can't find the info node anywhere else.
15519
15520 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
15521
15522 * vc/vc.el (vc-revert-file):
15523 Don't set file time-stamp in the past. (Bug#5181)
15524
15525 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
15526
15527 * files.el (after-find-file): Give a better error message when
15528 trying to find a symlink that points to a file that doesn't exist
15529 (bug#4398).
15530
15531 * progmodes/cc-vars.el: Remove (probably) misleading comment
15532 (bug#4396).
15533
15534 2011-07-12 Johan Bockgård <bojohan@gnu.org>
15535
15536 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
15537
15538 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
15539
15540 * mouse-sel.el: Hack restoring functionality, while keeping
15541 compatibility with 2010-07-03 changes to mouse selection.
15542 (mouse-sel-primary-overlay): New var.
15543 (mouse-sel-selection-alist): Use it.
15544 (mouse-sel-mode): Doc fix; remove points that are default features
15545 of mouse.el.
15546
15547 2011-07-12 Johan Bockgård <bojohan@gnu.org>
15548
15549 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15550 Fix previous fix (bug#2490).
15551
15552 2011-07-12 Roland Winkler <winkler@gnu.org>
15553
15554 * textmodes/bibtex.el (bibtex-initialize):
15555 Use pop-to-buffer-same-window.
15556 (bibtex-search-entries): Fix interactive call.
15557
15558 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
15559
15560 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15561 Fontise bytecomp Error lines more correctly (bug#2490).
15562 Fix suggested by Johan Bockgård.
15563
15564 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
15565
15566 * dired-x.el (dired-guess-default): Use `delete-dups'.
15567
15568 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
15569
15570 * dired.el (dired-mark-prompt):
15571 * dired-aux.el (dired-read-shell-command): Doc fix.
15572
15573 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15574
15575 * mail/sendmail.el (sendmail-query-once):
15576 Use `customize-save-variable' unconditionally, now that it works under
15577 emacs -Q.
15578
15579 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
15580
15581 * cus-edit.el (custom-file): Take an optional no-error variable.
15582 (customize-save-variable): Set the variable, and give a warning if
15583 running under "emacs -q".
15584
15585 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
15586
15587 * loadhist.el (unload-feature-special-hooks):
15588 Add `auto-coding-functions', `fill-nobreak-predicate' and
15589 `find-directory-functions' (bug#5327).
15590
15591 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15592
15593 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
15594
15595 * cus-edit.el (custom-guess-name-alist): -alist variables should
15596 use the `alist' type (bug#3120). Suggested by Drew Adams.
15597
15598 * printing.el: Add documentation to all the `pr-toggle-' commands.
15599
15600 2011-07-11 Leo Liu <sdl.web@gmail.com>
15601
15602 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
15603 backends where it makes sense (bug#2623).
15604
15605 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15606
15607 * dired-x.el (dired-guess-default): Remove duplicate shell command
15608 entries (bug#2028).
15609 (dired-guess-default): Fix grammar in doc string (bug#2028).
15610 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
15611
15612 * subr.el (remove-duplicates): New conveniency function.
15613
15614 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
15615
15616 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
15617 (bug#1526).
15618
15619 2011-07-10 Martin Rudalics <rudalics@gmx.at>
15620
15621 * window.el (display-buffer-normalize-default): Don't invert
15622 meaning of even-window-heights. Reported by Eli Zaretskii
15623 <eliz@gnu.org>.
15624
15625 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
15626
15627 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
15628
15629 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
15630
15631 * window.el (display-buffer): Fix arguments to
15632 display-buffer-reuse-window in last change.
15633
15634 * faces.el (link): Use a less saturated blue on light backgrounds.
15635
15636 * startup.el (fancy-startup-text, fancy-about-text)
15637 (fancy-startup-tail): Use font-lock faces, for background safety.
15638
15639 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
15640
15641 * emulation/viper-cmd.el (viper-change-state-to-vi):
15642 Limit triggering of abbrev expansion (Bug#9038).
15643
15644 2011-07-09 Martin Rudalics <rudalics@gmx.at>
15645
15646 * window.el (display-buffer-default-specifiers): Remove.
15647 (display-buffer-macro-specifiers): Remove default specifiers.
15648 (display-buffer-alist): Default to nil.
15649 (display-buffer-reuse-window): New optional argument other-window.
15650 (display-buffer-pop-up-window): Allow splitting internal
15651 windows. Check whether a live window was created.
15652 (display-buffer-other-window-means-other-frame)
15653 (display-buffer-normalize-arguments): Rename to
15654 display-buffer-normalize-argument and rewrite. Set the
15655 other-window specifier.
15656 (display-buffer-normalize-special): New function.
15657 (display-buffer-normalize-options): Rename to
15658 display-buffer-normalize-default and rewrite.
15659 (display-buffer-normalize-options-inhibit): Remove.
15660 (display-buffer-normalize-specifiers): Rewrite.
15661 (display-buffer): Process other-window specifier and call
15662 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
15663 more faithfully.
15664 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
15665 (display-buffer-alist-set): Don't handle 'unset default values.
15666 (display-buffer-in-window, display-buffer-alist-set):
15667 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
15668 <tassilo@member.fsf.org>.
15669
15670 2011-07-09 Leo Liu <sdl.web@gmail.com>
15671
15672 * register.el (insert-register): Restore accidental change on
15673 2011-06-26. (Bug#9028)
15674
15675 2011-07-09 Glenn Morris <rgm@gnu.org>
15676
15677 * subr.el (remq): Handle the empty list. (Bug#9024)
15678
15679 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
15680
15681 * mail/sendmail.el (send-mail-function): No longer delay custom
15682 initialization.
15683 * custom.el (custom-initialize-delay): Doc fix.
15684
15685 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
15686
15687 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
15688
15689 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
15690
15691 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
15692 human-friendly prompt.
15693
15694 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
15695
15696 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
15697 provided by a particular plugin.
15698
15699 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
15700
15701 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
15702 save customizations (with "emacs -Q"), just set the variable
15703 instead of erroring out.
15704
15705 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
15706
15707 2011-07-08 Juri Linkov <juri@jurta.org>
15708
15709 * arc-mode.el (archive-zip-expunge, archive-zip-update)
15710 (archive-zip-update-case): Use 7z if found by `executable-find'.
15711 The order of searching the available programs is the same as in
15712 `archive-zip-extract' (bug#8968).
15713
15714 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
15715
15716 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
15717 (menu-bar-options-menu): Tweak descriptions.
15718
15719 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
15720
15721 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
15722 menu items into verb phrases (bug#1421). Also refill to fit under
15723 80 columns.
15724
15725 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
15726
15727 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
15728 (Info-read-node-name): Doc fix (Bug#1084).
15729
15730 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
15731 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
15732 (end-of-sexp, beginning-of-sexp)
15733 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
15734 (forward-symbol, forward-same-syntax, word-at-point)
15735 (sentence-at-point): Doc fix (Bug#1144).
15736
15737 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
15738
15739 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
15740 should cover it (bug#1281).
15741
15742 * cus-edit.el (custom-show): Mark as obsolete.
15743
15744 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
15745 negotiation fails, then possibly try again with a non-encrypted
15746 connection (bug#9017).
15747
15748 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
15749 be used.
15750
15751 2011-07-07 Richard Stallman <rms@gnu.org>
15752
15753 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
15754 property, and handle its changed format.
15755 Look for the correct line number.
15756 Use file's line contents (but not past first =) to find
15757 correct line in message.
15758
15759 2011-07-07 Kenichi Handa <handa@m17n.org>
15760
15761 * international/characters.el (build-unicode-category-table):
15762 Delete it.
15763 (unicode-category-table): Set it by unicode-property-table-internal.
15764
15765 * international/mule-cmds.el (char-code-property-alist): Move to
15766 to src/chartab.c.
15767 (get-char-code-property): Call unicode-property-table-internal to
15768 load a file. Call get-unicode-property-internal where necessary.
15769 (put-char-code-property): Call unicode-property-table-internal to
15770 load a file. Call put-unicode-property-internal where necessary.
15771 put-unicode-property-internal where necessary.
15772 (char-code-property-description):
15773 Call unicode-property-table-internal to load a file.
15774
15775 * international/charprop.el:
15776 * international/uni-bidi.el:
15777 * international/uni-category.el:
15778 * international/uni-combining.el:
15779 * international/uni-comment.el:
15780 * international/uni-decimal.el:
15781 * international/uni-decomposition.el:
15782 * international/uni-digit.el:
15783 * international/uni-lowercase.el:
15784 * international/uni-mirrored.el:
15785 * international/uni-name.el:
15786 * international/uni-numeric.el:
15787 * international/uni-old-name.el:
15788 * international/uni-titlecase.el:
15789 * international/uni-uppercase.el: Regenerate.
15790
15791 * loadup.el: Load international/charprop.el before
15792 international/characters.
15793
15794 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
15795
15796 * window.el (next-buffer, previous-buffer): Signal an error if
15797 called from a minibuffer window.
15798
15799 * bindings.el: Revert 2011-07-04 change.
15800
15801 2011-07-06 Richard Stallman <rms@gnu.org>
15802
15803 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
15804 (rmail-mime-insert-bulk, rmail-mime-insert-text):
15805 Treat markers like ints.
15806 (rmail-mime-entity): Doc fix.
15807
15808 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
15809
15810 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
15811 defcustom again for backwards compatibility.
15812
15813 * simple.el (shell-command-on-region): Fill.
15814
15815 * dired-aux.el (dired-kill-line): Add a doc string.
15816
15817 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
15818 to "\\sw\\|\\s_" (bug#358).
15819
15820 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
15821 (dired-unmark-backward): Ditto.
15822 (dired-flag-backup-files): Ditto.
15823
15824 * dired-x.el (dired-mark-sexp): Ditto.
15825
15826 2011-07-06 Richard Stallman <rms@gnu.org>
15827
15828 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
15829 (rmail-mime-entity): New arg TRUNCATED.
15830 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
15831 New functions.
15832 (rmail-mime-save): Warn if entity is truncated.
15833 (rmail-mime-toggle-hidden): Likewise, for showing.
15834 (rmail-mime-process-multipart): Record when an entity is truncated.
15835
15836 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
15837 if ENTITY is a string.
15838
15839 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
15840
15841 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
15842 of faces when `M-C-x'-ing their definitions (bug#8378).
15843 Also clean up the code slightly.
15844
15845 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
15846 because that makes the colors go away.
15847
15848 * mail/sendmail.el (send-mail-function): Change the default to
15849 `sendmail-query-once'.
15850 (sendmail-query-once): Add an autoload cookie.
15851
15852 * net/network-stream.el (network-stream-open-starttls): Try using
15853 a plain connection even if the server offered STARTTLS, and we
15854 kinda wanted to use it, if Emacs doesn't have any STARTTLS
15855 capability. This should make smtpmail.el work in slightly more
15856 configurations.
15857
15858 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
15859
15860 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
15861 New defun.
15862 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
15863
15864 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
15865
15866 * progmodes/sql.el: Version 3.0
15867 (sql-product-alist): Add product :completion-object,
15868 :completion-column, and :statement attributes.
15869 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
15870 (sql-mode-syntax-table): Mark all punctuation.
15871 (sql-font-lock-keywords-builder): Temporarily remove fallback on
15872 ansi keywords.
15873 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
15874 (sql-mode-oracle-font-lock-keywords): Improve.
15875 (sql-oracle-show-reserved-words): New function for development.
15876 (sql-product-font-lock): Simplify for source code buffers.
15877 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
15878 New functions.
15879 (sql-highlight-product): Set product specific syntax table.
15880 (sql-mode-map): Add statement movement functions.
15881 (sql-ansi-statement-starters, sql-oracle-statement-starters):
15882 New variable.
15883 (sql-statement-regexp, sql-beginning-of-statement)
15884 (sql-end-of-statement, sql-signum): New functions.
15885 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
15886 (sql-show-sqli-buffer): Bug fix.
15887 (sql-interactive-mode): Store connection data as buffer local.
15888 (sql-connect): Add NEW-NAME parameter. Redesign interaction
15889 with sql-interactive-mode.
15890 (sql-save-connection): Save buffer local settings.
15891 (sql-connection-menu-filter): Change menu entry name.
15892 (sql-product-interactive): Bug fix.
15893 (sql-preoutput-hold): New variable.
15894 (sql-interactive-remove-continuation-prompt): Bug fixes.
15895 (sql-debug-redirect): New variable.
15896 (sql-str-literal): New function.
15897 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
15898 Redesign.
15899 (sql-oracle-save-settings, sql-oracle-restore-settings)
15900 (sql-oracle-list-all, sql-oracle-list-table): New functions.
15901 (sql-completion-object, sql-completion-column)
15902 (sql-completion-sqlbuf): New variables.
15903 (sql-build-completions-1, sql-build-completions)
15904 (sql-try-completion): New functions.
15905 (sql-read-table-name): Use them.
15906 (sql-contains-names): New buffer local variable.
15907 (sql-list-all, sql-list-table): Use it.
15908 (sql-oracle-completion-types): New variable.
15909 (sql-oracle-completion-object, sql-sqlite-completion-object)
15910 (sql-postgres-completion-object): New functions.
15911
15912 2011-07-06 Glenn Morris <rgm@gnu.org>
15913
15914 * window.el (pop-to-buffer): Doc fix.
15915
15916 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
15917
15918 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
15919
15920 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
15921
15922 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
15923
15924 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
15925
15926 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
15927
15928 * button.el (button): Inherit from link face. Suggested by Dan
15929 Nicolaescu.
15930
15931 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
15932
15933 * progmodes/gdb-mi.el: Fit in 80 columns.
15934 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
15935 switch-to-buffer.
15936
15937 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
15938 if imenu is simply not configured (bug#8941).
15939
15940 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
15941
15942 * allout.el (allout-post-undo-hook): New allout outline-change
15943 event hook to signal undo activity.
15944 (allout-post-command-business): Run allout-post-undo-hook if an
15945 undo just occurred.
15946 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
15947 * allout-widgets.el (allout-widgets-after-undo-function):
15948 Ensure the integrity of the current item's decoration after it has been
15949 in the vicinity of an undo.
15950 (allout-widgets-mode): Include allout-widgets-after-undo-function
15951 on the new allout-post-undo-hook.
15952
15953 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
15954
15955 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
15956 Let define-derived-mode define it.
15957 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
15958 cycles of abbrev-table inheritance (bug#8998).
15959
15960 2011-07-05 Roland Winkler <winkler@gnu.org>
15961
15962 * textmodes/bibtex.el: Add support for biblatex.
15963 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
15964 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
15965 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
15966 (bibtex-entry-alist, bibtex-field-alist): New variables.
15967 (bibtex-entry-field-alist): Obsolete alias for
15968 bibtex-BibTeX-entry-alist.
15969 (bibtex-entry-alist, bibtex-field-alist): New widgets.
15970 (bibtex-set-dialect): New command.
15971 (bibtex-entry-type, bibtex-entry-head)
15972 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
15973 Bind via bibtex-set-dialect.
15974 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
15975 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
15976 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
15977 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
15978 Define via bibtex-set-dialect.
15979 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
15980 Obey bibtex-no-opt-remove-re.
15981 (bibtex-vec-push, bibtex-vec-incr): New functions.
15982 (bibtex-format-entry, bibtex-field-list)
15983 (bibtex-print-help-message, bibtex-validate)
15984 (bibtex-search-entries): Use new format of bibtex-entry-alist.
15985
15986 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
15987
15988 * progmodes/compile.el (compilation-goto-locus):
15989 * net/tramp-cmds.el (tramp-append-tramp-buffers):
15990 * bs.el (bs-cycle-next, bs-cycle-previous):
15991 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
15992 * bindings.el (mode-line-other-buffer):
15993 * autoinsert.el (auto-insert):
15994 * arc-mode.el (archive-extract):
15995 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
15996
15997 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
15998
15999 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
16000 Fix check of `emacs-lock-unlockable-modes'.
16001 Coerce true values of `emacs-lock--try-unlocking' to t.
16002
16003 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16004
16005 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
16006 * emacs-lock.el: New file.
16007
16008 2011-07-05 Julien Danjou <julien@danjou.info>
16009
16010 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
16011 than `boundp' to check if face is set.
16012
16013 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16014
16015 * register.el (registerv-make):
16016 * window.el (window-min-height): Fix typos in docstrings.
16017
16018 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
16019
16020 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
16021 Update doc string.
16022
16023 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16024
16025 * server.el (server-execute): Catch quit and call
16026 `server-return-error' to pass the error back to emacsclient and
16027 close the connection (bug#8942).
16028
16029 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
16030
16031 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
16032 insecure exception for current topic. Also note that auto-saves
16033 are handled differently.
16034
16035 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
16036 State variables for tracking auto-save inhibition situation.
16037
16038 (allout-write-contents-hook-handler): Rename from
16039 'allout-write-file-hook-handler', and describe how it depends on
16040 write-contents-functions sensitivity to non-nil value to prevent
16041 file write.
16042
16043 (allout-auto-save-hook-handler): Remove. auto-save does not check
16044 this in individual buffers, only in the starting buffer, so this
16045 is not the right way for us to inhibit auto-save in a buffer
16046 according to its condition.
16047
16048 (allout-mode): Use new allout-write-contents-hook-handler, and
16049 only with write-contents-functions. Remove auto-save provisions -
16050 they're implemented elsewhere.
16051
16052 (allout-before-change-handler): If undo is in progress, note that
16053 for attention of allout-post-command-business.
16054
16055 (allout-post-command-business): If the command we're following was
16056 an undo, check for change in the status of encrypted items and
16057 adjust auto-save inhibitions accordingly.
16058
16059 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
16060 according to whether there are or aren't any plain-text topics
16061 pending encryption.
16062
16063 (allout-inhibit-auto-save-info-for-decryption):
16064 Adjust buffer-saved-size and some allout state to inhibit auto-saves
16065 if there are plain-text topics pending encryption.
16066
16067 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
16068 buffer-saved-size and some allout state to not inhibit auto-saves
16069 if there are no longer any plain-text topics pending encryption.
16070
16071 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
16072 No longer provide for exemption of the current topic.
16073
16074 2011-07-04 Juri Linkov <juri@jurta.org>
16075
16076 Add 7z operations to delete and save changed members (bug#8968).
16077 * arc-mode.el (archive-7z-expunge, archive-7z-update):
16078 New defcustoms.
16079 (archive-7z-write-file-member): New function.
16080 (archive-7z-summarize): Fix the number of dashes in the
16081 listing output.
16082
16083 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16084
16085 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
16086 (bug#8958).
16087
16088 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
16089
16090 * bindings.el: Ignore next-buffer and previous-buffer in
16091 minibuffer-local-map.
16092
16093 * font-lock.el (font-lock-builtin-face): Change light background
16094 color to dark slate blue (Bug#6693).
16095
16096 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
16097
16098 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
16099
16100 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16101
16102 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
16103 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16104 Add switch-to-buffer.
16105
16106 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16107
16108 * isearch.el (isearch-search-fun-function): Clarify further the
16109 meaning of the function returned.
16110
16111 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
16112
16113 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
16114
16115 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
16116 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
16117 Use it.
16118 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
16119 `tramp-default-remote-path' does not exist.
16120 (tramp-send-command-and-read): New optional argument NOERROR.
16121 (tramp-open-connection-setup-interactive-shell)
16122 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
16123 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
16124 (tramp-process-sentinel): Flush also process' connection property.
16125 (tramp-sh-handle-start-file-process): Do not set process
16126 sentinel. It is done now ...
16127 (tramp-maybe-open-connection): ... here. (Bug#8929)
16128
16129 2011-07-04 MON KEY <monkey@sandpframing.com>
16130
16131 * play/animate.el (animate-string): Doc fixes and allow changing
16132 the buffer name (bug#5417).
16133
16134 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16135
16136 * play/animate.el (animation-buffer-name): Rename from *animate*.
16137
16138 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
16139
16140 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
16141 This is simpler and helps future-proof the code.
16142 (timer-until): Use time-subtract and float-time.
16143 (timer--time-less-p): Use time-less-p.
16144
16145 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16146
16147 * type-break.el (timep): Use the value of `float-time' to avoid a
16148 byte-compiler warning.
16149
16150 * server.el (server-eval-and-print): Return any result, even nil.
16151
16152 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
16153
16154 * type-break.el: Accept time formats that the builtins accept.
16155 (timep, type-break-time-difference): Accept any format that
16156 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
16157 This is simpler and helps future-proof the code.
16158 (type-break-time-difference): Round rather than ignoring
16159 subseconds components.
16160
16161 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16162
16163 * info.el (Info-apropos-matches): Make non-interactive, since it
16164 doesn't seem to do anything useful as a command (bug#8829).
16165
16166 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
16167
16168 * frame.el (frame-background-mode, frame-set-background-mode):
16169 Move from faces.el.
16170 (frame-default-terminal-background): New function.
16171
16172 * custom.el (custom-push-theme): Don't record faces in `changed'
16173 theme; this doesn't work correctly for per-frame face settings.
16174 (disable-theme): Use face-set-after-frame-default to reset faces.
16175 (custom--frame-color-default): New function.
16176
16177 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16178
16179 * dired.el (dired-flagging-regexp): Remove unused variable
16180 (bug#8769).
16181
16182 2011-03-29 Kevin Ryde <user42@zip.com.au>
16183
16184 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16185 `perl-Test2' extend to match possible "fail #N" rep count
16186 (bug#8377).
16187
16188 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16189
16190 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
16191 `smtpmail-via-smtp' now returns the error instead of nil.
16192
16193 * isearch.el (isearch-search-fun-function): Clarify the doc string
16194 (bug#8101).
16195
16196 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
16197
16198 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
16199 unnecessary spaces (bug#8987).
16200
16201 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16202
16203 * net/network-stream.el (open-network-stream): Use the
16204 :end-of-capability command thoughout.
16205
16206 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
16207
16208 * net/network-stream.el (open-network-stream): Add the
16209 :end-of-capability command parameter, used by pop3.el.
16210
16211 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16212
16213 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
16214
16215 * fringe.el (fringe-query-style): Remove redundant text " (type ?
16216 for list)" (bug#6475).
16217
16218 * files.el (file-expand-wildcards): Ignore non-readable
16219 sub-directories while trying to find matches instead of signaling
16220 an error (bug#6297).
16221
16222 * man.el (Man-reference-regexp): Allow matching possible
16223 word-wrapped references (bug#6289).
16224
16225 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
16226 for consistency with the other vc buffers (bug#6197).
16227 (vc-checkin): Ditto.
16228
16229 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
16230
16231 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
16232
16233 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16234
16235 * custom.el (defcustom): Clarify that :set is only used in the
16236 Customize user interface (bug#6089).
16237
16238 * progmodes/flymake.el (flymake-mode): If the buffer isn't
16239 associated with a file, refuse to run instead of erroring out
16240 (bug#6084).
16241
16242 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
16243 the doc string, since it appears that using `fill-column' always
16244 controls the width (bug#7845).
16245
16246 * simple.el (shell-command-on-region): Say where the error output
16247 went if `shell-command-default-error-buffer' is set (bug#6857).
16248
16249 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
16250
16251 * allout.el (allout-yank-processing): Adjust cursor position for
16252 backwards-deleted space.
16253
16254 (allout-rebullet-heading): Register changes with
16255 allout-exposure-changed-hook, so the modified topic is properly
16256 decorated.
16257
16258 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16259
16260 * minibuffer.el (completion-in-region): Document PREDICATE
16261 (bug#7136).
16262
16263 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
16264 of keyword/argument pairs (bug#6904).
16265
16266 * replace.el (multi-occur):
16267 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
16268
16269 2011-07-02 Drew Adams <drew.adams@oracle.com>
16270
16271 * dired.el (dired-mark-if): Make the message about whether it's
16272 marking or unmarking clearer (bug#8523).
16273
16274 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16275
16276 * disp-table.el (display-table-print-array): New function.
16277 (describe-display-table): Use it to print the vectors more pretty
16278 (Bug#8859).
16279
16280 2011-07-02 Martin Rudalics <rudalics@gmx.at>
16281
16282 * window.el (window-state-get-1): Don't assign clone numbers.
16283 Add clone-of item to list of window parameters.
16284 (window-state-put-2): Don't process clone numbers.
16285 (display-buffer-alist): Fix doc-string.
16286
16287 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
16288
16289 * subr.el (remq): Don't allocate if it's not needed.
16290 (keymap--menu-item-binding, keymap--menu-item-with-binding)
16291 (keymap--merge-bindings): New functions.
16292 (keymap-canonicalize): Use them to refine the canonicalization.
16293 * minibuffer.el (minibuffer-local-completion-map)
16294 (minibuffer-local-must-match-map): Move initialization from C.
16295 (minibuffer-local-filename-completion-map): Move initialization from C;
16296 don't inherit from anything here.
16297 (minibuffer-local-filename-must-match-map): Make obsolete.
16298 (completing-read-default): Use make-composed-keymap to combine
16299 minibuffer-local-filename-completion-map with either
16300 minibuffer-local-must-match-map or
16301 minibuffer-local-filename-completion-map.
16302
16303 2011-07-01 Glenn Morris <rgm@gnu.org>
16304
16305 * type-break.el (type-break-time-sum): Use dolist.
16306
16307 * textmodes/flyspell.el (flyspell-word-search-backward):
16308 Replace CL function.
16309
16310 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
16311
16312 * mouse.el (mouse--strip-first-event): New function.
16313 (function-key-map): Use it to map fringe clicks to normal clicks
16314 by default.
16315
16316 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
16317 (vc-bzr-revision-completion-table): Add support for annotate and date.
16318
16319 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
16320 inherit from parent.
16321
16322 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
16323
16324 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
16325 (dired-show-file-type): Doc fixup (bug#8818).
16326
16327 * dired.el (dired-mode): Fix up the doc string as suggested by
16328 Drew Adams (bug#8817).
16329
16330 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
16331 cookie, since the manual says that it should be possible to add
16332 this function to `find-file-hook' (bug#8709).
16333
16334 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
16335
16336 * progmodes/cfengine.el: Moved all cfengine3.el functionality
16337 here. Noted Ted Zlatanov as the maintainer.
16338 (cfengine-common-settings, cfengine-common-syntax): New functions
16339 to set up common things between `cfengine-mode' and
16340 `cfengine3-mode'.
16341 (cfengine3-mode): New mode.
16342 (cfengine3-defuns cfengine3-defuns-regex
16343 (cfengine3-class-selector-regex cfengine3-category-regex)
16344 (cfengine3-vartypes cfengine3-font-lock-keywords)
16345 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
16346 (cfengine3-indent-line): Add from cfengine3.el.
16347
16348 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
16349
16350 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
16351
16352 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
16353
16354 2011-07-01 Martin Rudalics <rudalics@gmx.at>
16355
16356 * window.el (same-window-buffer-names, same-window-regexps)
16357 (same-window-p, special-display-frame-alist)
16358 (special-display-popup-frame, special-display-function)
16359 (special-display-buffer-names, special-display-regexps)
16360 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
16361 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
16362 (split-window-preferred-function, split-height-threshold)
16363 (split-width-threshold, even-window-heights)
16364 (display-buffer-mark-dedicated, window-splittable-p)
16365 (split-window-sensibly, window-safely-shrinkable-p):
16366 Un-obsolete.
16367 (display-buffer): Don't spread args with function specifier
16368 because special-display-popup-frame won't like it.
16369
16370 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
16371
16372 Time-stamp simplifications and fixes.
16373 These improve accuracy slightly, and future-proof the code
16374 against some potential changes to current-time format.
16375
16376 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
16377 by using time-since and float-time.
16378
16379 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
16380 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
16381 + NNN microseconds".
16382
16383 * type-break.el (type-break-time-sum): Rewrite using time-add.
16384
16385 * play/hanoi.el (hanoi-current-time-float): Remove.
16386 All uses replaced by float-time.
16387
16388 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
16389 This yields a more-accurate answer.
16390 (rng-time-to-float): Remove; no longer needed.
16391
16392 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
16393
16394 * calendar/timeclock.el (timeclock-seconds-to-time):
16395 Defalias to seconds-to-time, since they're the same thing.
16396
16397 * emacs-lisp/elp.el (elp-elapsed-time):
16398 * emacs-lisp/benchmark.el (benchmark-elapse):
16399 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
16400
16401 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
16402
16403 * window.el (bury-buffer): Don't iconify the only frame.
16404 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
16405 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
16406
16407 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
16408
16409 * eshell/em-smart.el (eshell-smart-display-navigate-list):
16410 Add mouse-yank-primary.
16411
16412 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
16413
16414 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
16415
16416 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
16417
16418 * emacs-lisp/find-func.el (find-library--load-name): New fun.
16419 (find-library-name): Use it to find relative load names when provided
16420 absolute file name (bug#8803).
16421
16422 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
16423
16424 * textmodes/flyspell.el (flyspell-word): Consider words that
16425 differ only in case as potential doublons (bug#5687).
16426
16427 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
16428 Remove two rather uninteresting debugging-like messages to make
16429 debbugs.el more silent.
16430
16431 * comint.el (comint-password-prompt-regexp): Accept "Response" as
16432 a password-like phrase.
16433
16434 2011-06-30 Masatake YAMATO <yamato@redhat.com>
16435
16436 * progmodes/cc-guess.el: New file.
16437
16438 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
16439
16440 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
16441 derived from `c-basic-common-init'.
16442
16443 * progmodes/cc-mode.el (top-level): Require cc-guess.
16444 (c-basic-common-init): Use `cc-choose-style-for-mode'.
16445
16446 2011-06-30 Lawrence Mitchell <wence@gmx.li>
16447
16448 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
16449
16450 2011-06-30 Alan Mackenzie <acm@muc.de>
16451
16452 * progmodes/cc-engine.el (c-guess-continued-construct):
16453 Correct the handling of template-args-cont, particularly for when font
16454 lock is disabled. Name this case as "CASE G".
16455
16456 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
16457
16458 * allout.el (allout-yank-processing): Fix injection of extra space
16459 between bullet and non-whitespace character in first topic when
16460 pasting, ensuring that the actual spacing in the pasted topic
16461 following the bullet char is preserved. This extra space was
16462 causing pasted encrypted topics to get a decrypted status even
16463 when the content was actually still encrypted. Now the decryption
16464 status from before the paste is preserved.
16465
16466 (allout-flag-region): Set all allout overlays so they evaporate
16467 when reduced to zero length (evanescent), to prevent overlay
16468 leakage.
16469
16470 2011-06-30 Glenn Morris <rgm@gnu.org>
16471
16472 * w32-fns.el (w32-charset-info-alist): Declare.
16473
16474 * find-dired.el (find-grep-options): Simplify.
16475
16476 * term/ns-win.el (ns-set-resource): Declare.
16477
16478 * ses.el (row, col): Declare dynamic variables honestly.
16479
16480 * textmodes/reftex-parse.el (index-tags): Declare.
16481
16482 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
16483
16484 * cus-edit.el (customize-push-and-save): New function.
16485
16486 * files.el (hack-local-variables-confirm): Use it.
16487
16488 * custom.el (load-theme): New arg NO-CONFIRM.
16489 Use customize-push-and-save (Bug#8720).
16490 (custom-enabled-themes): Doc fix.
16491
16492 * cus-theme.el (customize-create-theme)
16493 (custom-theme-merge-theme): Callers to load-theme changed.
16494
16495 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
16496
16497 * thingatpt.el (thing-at-point-short-url-regexp): Require that
16498 short URLs have at least one dot in them (bug #7614).
16499
16500 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
16501 nil, because using a pty is apparently too slow (bug #895).
16502
16503 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
16504
16505 * mail/sendmail.el (sendmail-query-once): New function.
16506 (sendmail-query-once-function): New variable.
16507
16508 2011-06-29 Glenn Morris <rgm@gnu.org>
16509
16510 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
16511
16512 * ses.el (top-level): Require cl when compiling.
16513 (ses-set-localvars): Fix error statement.
16514 Call it at compile time to silence a storm of warnings.
16515
16516 2011-06-29 Martin Rudalics <rudalics@gmx.at>
16517
16518 * window.el (normalize-live-buffer): Rename to
16519 window-normalize-buffer.
16520 (normalize-live-frame): Rename to window-normalize-frame.
16521 (normalize-any-window): Rename to window-normalize-any-window.
16522 (normalize-live-window): Rename to window-normalize-live-window.
16523 (make-window-atom): Rename to window-make-atom.
16524 (window-resize-reset): Rename to window--resize-reset.
16525 (window-resize-reset-1): Rename to window--resize-reset-1.
16526 (resize-mini-window): Rename to window--resize-mini-window.
16527 (resize-subwindows-skip-p): Rename to
16528 window--resize-subwindows-skip-p.
16529 (resize-subwindows-normal): Rename to
16530 window--resize-subwindows-normal.
16531 (resize-subwindows): Rename to window--resize-subwindows.
16532 (resize-other-windows): Rename to window--resize-siblings.
16533 (resize-this-window): Rename to window--resize-this-window.
16534 (resize-root-window): Rename to window--resize-root-window.
16535 (resize-root-window-vertically): Rename to
16536 window--resize-root-window-vertically.
16537 (normalize-buffer-to-display): Rename to
16538 window-normalize-buffer-to-display.
16539 (normalize-buffer-to-switch-to): Rename to
16540 window-normalize-buffer-to-switch-to.
16541 Correspondingly update all callers of the functions listed
16542 above.
16543 (display-buffer-alist, display-buffer-normalize-arguments)
16544 (display-buffer-normalize-options, display-buffer)
16545 (display-buffer-alist-set): Use "function" instead of
16546 "fun-with-args".
16547
16548 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
16549
16550 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
16551 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
16552 debbugs.gnu.org. Mention acknowledgment email.
16553
16554 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
16555
16556 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
16557 buffer multibyteness, since it shouldn't matter.
16558
16559 2011-06-28 Martin Rudalics <rudalics@gmx.at>
16560
16561 * window.el (display-buffer-in-side-window): Handle dedicated
16562 windows as in display-buffer-reuse-window.
16563 (display-buffer-normalize-alist): Use value of override
16564 specifier.
16565 (display-buffer-normalize-specifiers): Use value of
16566 other-window-means-other-frame specifier.
16567 (display-buffer-alist): Rewrite some texts in widgets.
16568 (display-buffer): Spread arguments when calling function
16569 specified by fun-with-args.
16570
16571 2011-06-28 Deniz Dogan <deniz@dogan.se>
16572
16573 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
16574 Unnest `let'.
16575
16576 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
16577 selectors (Bug#5732).
16578 (css-proprietary-nmstart-re): Use `regexp-opt'.
16579
16580 2011-06-27 Jari Aalto <jari.aalto@cante.net>
16581
16582 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
16583 (eshell-ls-date-format): New defcustom.
16584 (eshell-ls-file): Use it.
16585
16586 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
16587
16588 * help-fns.el (describe-variable): Fix message for terminal-local vars.
16589
16590 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
16591
16592 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
16593 (ange-ftp-make-tmp-name): New arg.
16594 (ange-ftp-file-local-copy): Use it.
16595
16596 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
16597
16598 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
16599 no-conversion (Bug#8870).
16600
16601 2011-06-27 Martin Rudalics <rudalics@gmx.at>
16602
16603 * window.el (window-right, window-left, window-child)
16604 (window-child-count, window-last-child)
16605 (window-iso-combination-p, walk-window-tree-1)
16606 (window-atom-check-1, window-tree-1, delete-window)
16607 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
16608 new naming conventions - window-vchild, window-hchild,
16609 window-next and window-prev are now called window-top-child,
16610 window-left-child, window-next-sibling and window-prev-sibling
16611 respectively.
16612 (resize-window-reset): Rename to window-resize-reset.
16613 (resize-window-reset-1): Rename to window-resize-reset-1.
16614 (resize-window): Rename to window-resize.
16615 (window-min-height, window-min-width)
16616 (resize-mini-window, resize-this-window, resize-root-window)
16617 (resize-root-window-vertically, adjust-window-trailing-edge)
16618 (enlarge-window, shrink-window, maximize-window)
16619 (minimize-window, delete-window, quit-restore-window)
16620 (split-window, balance-windows, balance-windows-area-adjust)
16621 (balance-windows-area, window-state-put-2)
16622 (display-buffer-even-window-sizes, display-buffer-set-height)
16623 (display-buffer-set-width, set-window-text-height)
16624 (fit-window-to-buffer): Rename all "resize-window" prefixed
16625 calls to use the "window-resize" prefix convention.
16626 (display-buffer-alist): Fix symbol for label specifier.
16627 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
16628 corresponding specifier.
16629 Reported by Juanma Barranquero <lekktu@gmail.com>.
16630
16631 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
16632
16633 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
16634 convention.
16635 (ses-call-printer): Does not pass an empty string to formatter when the
16636 cell is empty to keep from barking printer Calc math-format-value.
16637
16638 2011-06-27 Richard Stallman <rms@gnu.org>
16639
16640 * battery.el (battery-mode-line-limit): New variable.
16641 (battery-update): Handle it.
16642
16643 * mail/rmailmm.el (rmail-mime-process-multipart):
16644 Handle truncated messages.
16645
16646 2011-06-27 Glenn Morris <rgm@gnu.org>
16647
16648 * progmodes/flymake.el (flymake-err-line-patterns):
16649 Allow for column numbers in the ant/javac pattern. (Bug#8866)
16650
16651 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
16652
16653 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
16654 (ses--clean-!, ses--clean-_): New functions.
16655 (ses-range): Add configurability of readout order, and conversion
16656 to Calc vector.
16657
16658 * ses.el (ses-repair-cell-reference-all): New function.
16659 (ses-cell-symbol): Set macro as safe, so that it can be used in
16660 formulas.
16661
16662 * ses.el: Update cycle detection algorithm.
16663 (ses-localvars): Add ses--Dijkstra-attempt-nb and
16664 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
16665 (ses-set-localvars): New function.
16666 (ses-make-cell): Add property-list as a cell element.
16667 (ses-cell-property-get-fun, ses-cell-property-get)
16668 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
16669 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
16670 New functions.
16671 (ses-cell-property-set, ses-cell-property-pop)
16672 (ses-cell-property-get-handle): New macro.
16673 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
16674 New aliases, used for code readability.
16675 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
16676 cycle detection.
16677 (ses-self-reference-early-detection): New defcustom.
16678 (ses-formula-references): Robustify against self-referring cells.
16679 (ses-mode): Use ses-set-localvars.
16680 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
16681 before lauching the update processing.
16682 (ses-initialize-Dijkstra-attempt): New function.
16683 (ses-recalculate-cell): Update for cycle detection based on
16684 Dijkstra algorithm.
16685
16686 * ses.el: Fix commenting and indenting convention.
16687
16688 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
16689
16690 * bs.el (bs-cycle-next): Complete last change.
16691
16692 2011-06-27 Drew Adams <drew.adams@oracle.com>
16693
16694 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
16695
16696 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
16697
16698 * net/network-stream.el (network-stream-open-starttls):
16699 Don't re-get capabilities unless we've reestablished connection.
16700 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
16701
16702 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
16703 to binary to possibly avoid line encoding issues on Windows (among
16704 other things).
16705
16706 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
16707
16708 * net/network-stream.el (open-network-stream): Return an :error
16709 saying what the problem was, if possible.
16710
16711 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
16712 server.
16713
16714 * net/network-stream.el (network-stream-open-starttls): If we
16715 wanted to use STARTTLS, and the server offered it, but we weren't
16716 able to because we had no STARTTLS support, then close the connection.
16717 (open-network-stream): Return an :error element, if present.
16718
16719 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
16720
16721 * hl-line.el (hl-line-sticky-flag): Doc fix.
16722 (global-hl-line-sticky-flag): New option (Bug#8323).
16723 (global-hl-line-highlight): Obey it.
16724
16725 * vc/vc.el (vc-revert-show-diff): Default to t.
16726
16727 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
16728
16729 * allout-widgets.el (allout-widgets-post-command-business):
16730 Stop decorating intermediate isearch matches. They're not being
16731 undecorated when an isearch is continued past, and isearch
16732 automatically collapses them. This leads to "widget leaks", where
16733 decorated items accumulate in collapsed areas. Lines with lots of
16734 hidden widgets can slow down cursor travel, substantially.
16735 Too much complicated machinery would be needed to ensure undecoration,
16736 so we're doing without this nicety.
16737
16738 (allout-widgets-tally-string): Don't try to do a hash-table-count
16739 of allout-widgets-tally when it's nil. This eliminates spurious "Error
16740 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
16741 *Messages* when allout-widgets-maintain-tally is t.
16742
16743 2011-06-26 Martin Rudalics <rudalics@gmx.at>
16744
16745 * window.el (display-buffer-normalize-argument): Rename to
16746 display-buffer-normalize-arguments. Handle special meaning of
16747 LABEL argument. Respect special-display-function when popping up
16748 a new frame. Fix code searching for a window showing the buffer
16749 on another frame.
16750 (display-buffer-normalize-specifiers):
16751 Call display-buffer-normalize-arguments.
16752 (display-buffer-in-window): Don't undedicate the window if its
16753 buffer remains the same.
16754 Reported by Drew Adams <drew.adams@oracle.com>.
16755 (display-buffer-alist): Add choice for same-window macro
16756 specfier.
16757 (display-buffer): Mention special meaning of LABEL argument in
16758 doc-string. Fix quoting. Don't pop up a new frame even as
16759 fallback.
16760
16761 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
16762
16763 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
16764 avoid deleting the current window in some cases (bug#8911).
16765
16766 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
16767
16768 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
16769 (Bug#8934)
16770
16771 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
16772
16773 * net/network-stream.el (network-stream-open-starttls):
16774 Use built-in TLS support if `gnutls-available-p' is true.
16775 (network-stream-open-tls): Ditto.
16776
16777 2011-06-26 Leo Liu <sdl.web@gmail.com>
16778
16779 * register.el (registerv): New struct.
16780 (registerv-make): New function.
16781 (jump-to-register, describe-register-1, insert-register):
16782 Support the jump-func, print-func and insert-func slot of a registerv
16783 struct. (Bug#8415)
16784
16785 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
16786
16787 * vc/vc.el (vc-revert-show-diff): New defcustom.
16788 (vc-diff-internal): New arg specifying diff buffer.
16789 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
16790 reuse an existing *vc-diff* buffer (Bug#8927).
16791
16792 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
16793
16794 2011-06-26 Glenn Morris <rgm@gnu.org>
16795
16796 * progmodes/f90.el (f90-critical-indent): New option.
16797 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
16798 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
16799 (f90-mode): Doc fix.
16800 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
16801 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
16802 (f90-beginning-of-block, f90-next-block, f90-indent-region)
16803 (f90-match-end): Handle block, critical.
16804
16805 2011-06-25 Glenn Morris <rgm@gnu.org>
16806
16807 * calendar/diary-lib.el (diary-included-files): Doc fix.
16808 (diary-include-files): New function, extracted from
16809 diary-include-other-diary-files and diary-mark-included-diary-files.
16810 (diary-include-other-diary-files, diary-mark-included-diary-files):
16811 Just call diary-include-files.
16812 (diary-mark-entries): Reset diary-included-files on first call.
16813
16814 * calendar/diary-lib.el (diary-mark-entries)
16815 (diary-mark-included-diary-files):
16816 Visit included diary-files in temp buffers.
16817
16818 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
16819 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
16820 (f90-start-block-re, f90-imenu-generic-expression)
16821 (f90-looking-at-program-block-start, f90-no-block-limit):
16822 Add support for submodules.
16823
16824 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
16825 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
16826
16827 2011-06-25 Eli Zaretskii <eliz@gnu.org>
16828
16829 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
16830 buffer-file-type before setting its value, to avoid disastrous
16831 global effects on decoding files for DOS/Windows systems. (Bug#8780)
16832
16833 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
16834
16835 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
16836
16837 * ses.el (ses-unload-function):
16838 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
16839
16840 * proced.el (proced-unload-function):
16841 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
16842
16843 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
16844
16845 * server.el (server-create-window-system-frame): Add parameters arg.
16846 (server-process-filter): Doc fix. Handle frame-parameters.
16847
16848 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
16849
16850 Fix bug#8730, bug#8781.
16851
16852 * loadhist.el (unload--set-major-mode): New function.
16853 (unload-feature): Use it.
16854
16855 * progmodes/python.el (python-after-info-look): Add autoload cookie.
16856 (python-unload-function): New function.
16857
16858 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
16859
16860 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
16861
16862 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
16863
16864 * net/browse-url.el (browse-url-firefox-program): Add icecat to
16865 the candidates list.
16866
16867 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
16868
16869 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
16870
16871 2011-06-23 Richard Stallman <rms@gnu.org>
16872
16873 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
16874 (rmail-variables): Set next-error-move-function.
16875 (rmail-what-message): Take argument POS.
16876 (rmail-next-error-move): New function.
16877
16878 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
16879
16880 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
16881 messages for adjacent non-terminals.
16882
16883 2011-06-23 Richard Stallman <rms@gnu.org>
16884
16885 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
16886 (rmail-show-message-1): Preserve buffer modified flag.
16887 (rmail-start-mail): Don't specify use of rmail-mail-return;
16888 that's done by mail-bury now.
16889 (rmail-mail-return): Handle arg NEWBUF.
16890
16891 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
16892
16893 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
16894 SIZE is a number.
16895
16896 2011-06-23 Martin Rudalics <rudalics@gmx.at>
16897
16898 * window.el (get-lru-window, get-mru-window)
16899 (get-largest-window): Never return a minibuffer window.
16900 (display-buffer-pop-up-window): Fix a bug that could lead to
16901 reusing the minibuffer window.
16902 (display-buffer): Pass original specifier argument to
16903 display-buffer-function instead of the normalized one.
16904 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
16905
16906 2011-06-22 Leo Liu <sdl.web@gmail.com>
16907
16908 * minibuffer.el (completing-read-function)
16909 (completing-read-default): Move from minibuf.c.
16910
16911 2011-06-22 Richard Stallman <rms@gnu.org>
16912
16913 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
16914 to Rmail even if not started by a special Rmail command.
16915
16916 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
16917 Copy the buffer currently showing just one message.
16918
16919 2011-06-22 Roland Winkler <winkler@gnu.org>
16920
16921 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
16922 (bibtex-clean-entry): First delete the old key so that a
16923 customized algorithm for generating the new key does not get
16924 confused by the old key.
16925 (bibtex-url): Obey regexp of first step.
16926 (bibtex-search-entries): Do not use add-to-list with local
16927 list-var.
16928
16929 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
16930
16931 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
16932 stored a user name, then query for the password first, instead of
16933 waiting for SMTP to give an error message and the trying again.
16934
16935 2011-06-22 Lawrence Mitchell <wence@gmx.li>
16936
16937 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
16938 BUFFER in call-process.
16939
16940 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
16941
16942 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
16943 QUIT twice.
16944 (smtpmail-try-auth-methods): Require user name and password from
16945 auth-source.
16946
16947 2011-06-22 Martin Rudalics <rudalics@gmx.at>
16948
16949 * window.el (display-buffer-default-specifiers)
16950 (display-buffer-alist): Remove entries for pop-up-frame-alist.
16951 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
16952 (split-window): Normalize SIDE argument (Bug#8916).
16953
16954 * frame.el (pop-up-frame-alist, pop-up-frame-function)
16955 (special-display-frame-alist, special-display-popup-frame):
16956 Remove duplicate declarations. These are now in window.el.
16957
16958 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
16959
16960 * mail/smtpmail.el (smtpmail-via-smtp):
16961 Set :use-starttls-if-possible so that we always use STARTTLS if the
16962 server supports it. SMTP servers that support STARTTLS commonly
16963 require it.
16964
16965 * net/network-stream.el (network-stream-open-starttls): Support
16966 upgrading to STARTTLS always, even if we don't have built-in support.
16967 (open-network-stream): Add the :always-query-capabilities keyword.
16968
16969 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
16970 upgrades with `open-network-stream', and rely solely on
16971 auth-source for all credentials. Big changes throughout the file,
16972 but in particular:
16973 (smtpmail-auth-credentials): Remove.
16974 (smtpmail-starttls-credentials): Remove.
16975 (smtpmail-via-smtp): Check for servers saying they want AUTH after
16976 MAIL FROM, too.
16977
16978 * net/network-stream.el (network-stream-open-starttls):
16979 Provide support for client certificates both for external and built-in
16980 STARTTLS.
16981 (auth-source): Require.
16982 (open-network-stream): Document the :client-certificate keyword.
16983 (network-stream-certificate): Change cert-cert to cert and
16984 cert-key to key.
16985
16986 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
16987
16988 * net/tramp-cache.el (top): Don't load the persistency file when
16989 "emacs -Q" has been called.
16990
16991 2011-06-21 Tim Harper <timcharper@gmail.com>
16992
16993 * term/ns-win.el (ns-initialize-window-system):
16994 Set application-specific `ApplePressAndHoldEnabled' system
16995 resource to NO as it is not yet supported by the NS port.
16996
16997 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
16998
16999 * misc.el (list-dynamic-libraries--refresh): Compute header here...
17000 (list-dynamic-libraries): ...not here.
17001
17002 2011-06-21 Leo Liu <sdl.web@gmail.com>
17003
17004 * subr.el (sha1): Implement sha1 using secure-hash.
17005
17006 2011-06-21 Martin Rudalics <rudalics@gmx.at>
17007
17008 * window.el (display-buffer-alist): In default value do not
17009 enforce searching a window on any but the selected frame.
17010 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
17011 (display-buffer-select-window): Remove function.
17012 (display-buffer-in-window): When a window on another frame gets
17013 reused, do not select it any more but just raise its frame if
17014 necessary (Bug#8851) and (Bug#8856).
17015 (display-buffer-normalize-options): Handle pop-up-frames related
17016 options more faithfully.
17017 (pop-to-buffer): Don't rely on `display-buffer' selecting the
17018 window if it is on another frame.
17019 (display-buffer-alist, display-buffer-default-specifiers):
17020 Don't make new frame unsplittable by default.
17021 (display-buffer-normalize-argument): Fix doc-string typo and use
17022 'same-frame-other-window instead of 'other-window when associating
17023 with display-buffer-macro-specifiers.
17024
17025 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
17026
17027 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
17028 New functions.
17029 (5x5-mode-map, 5x5-mode-menu): Bind them.
17030 (5x5-draw-grid): Tweak the solver's rendering.
17031
17032 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17033
17034 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
17035 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
17036
17037 2011-06-21 Drew Adams <drew.adams@oracle.com>
17038
17039 * menu-bar.el: Use function variable instead of switch-to-buffer.
17040 (menu-bar-select-buffer-function): New variable.
17041 (menu-bar-update-buffers): Use it (bug#8876).
17042
17043 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17044
17045 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
17046 variable's status.
17047
17048 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
17049
17050 * x-dnd.el (x-dnd-version-from-flags)
17051 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
17052 and long as number (Bug#8899).
17053 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
17054
17055 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
17056
17057 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
17058 (completion-try-completion, completion-all-completions): Compute the
17059 metadata argument if it's missing; make it optional (bug#8795).
17060
17061 * wid-edit.el: Use lex-bind and move towards completion-at-point.
17062 (widget-complete): Use new :completion-function property.
17063 (widget-completions-at-point): New function.
17064 (default): Use :completion-function instead of :complete.
17065 (widget-default-completions): Rename from widget-default-complete;
17066 Rewrite.
17067 (widget-string-complete, widget-file-complete, widget-color-complete):
17068 Remove functions.
17069 (file, symbol, function, variable, coding-system, color):
17070 * international/mule-cmds.el (default-input-method, charset)
17071 (language-info-custom-alist):
17072 * cus-edit.el (face): Use new property :completions.
17073
17074 * progmodes/pascal.el (pascal-completions-at-point): New function.
17075 (pascal-mode): Use it.
17076 (pascal-mode-map): Use completion-at-point.
17077 (pascal-toggle-completions): Make obsolete.
17078 (pascal-complete-word, pascal-show-completions):
17079 * progmodes/octave-mod.el (octave-complete-symbol):
17080 Redefine as obsolete alias.
17081 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
17082 Signal absence of completion info for old Octave,
17083 (inferior-octave-complete): Redefine as obsolete alias.
17084 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
17085 (meta-completions-at-point): Rename from meta-complete-symbol and
17086 adapt it for use on completion-at-point-functions.
17087 (meta-common-mode): Use it.
17088 (meta-looking-at-backward, meta-match-buffer): Remove.
17089 (meta-complete-symbol): Redefine as obsolete alias.
17090 (meta-common-mode-map): Use completion-at-point.
17091 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
17092 (makefile-mode-map): Use completion-at-point.
17093 (makefile-completions-at-point): Rename from makefile-complete and
17094 adapt it for use on completion-at-point-functions.
17095 (makefile-mode): Use it.
17096 (makefile-complete): Redefine as obsolete alias.
17097
17098 2011-06-20 Deniz Dogan <deniz@dogan.se>
17099
17100 * net/rcirc.el: Delete trailing whitespaces once and for all.
17101
17102 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
17103
17104 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
17105
17106 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
17107
17108 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
17109
17110 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
17111
17112 2011-06-19 Martin Rudalics <rudalics@gmx.at>
17113
17114 * window.el (display-buffer-other-window-means-other-frame):
17115 Call display-buffer-normalize-alist.
17116 (display-buffer-normalize-specifiers-1): Rename to
17117 display-buffer-normalize-argument. New argument other-frame.
17118 Rewrite.
17119 (display-buffer-normalize-specifiers-2): Rename to
17120 display-buffer-normalize-options.
17121 (display-buffer-normalize-alist-1): New function.
17122 (display-buffer-normalize-specifiers-3): Rename to
17123 display-buffer-normalize-alist.
17124 Call display-buffer-normalize-alist-1.
17125 (display-buffer-normalize-options-inhibit): New variable.
17126 (display-buffer-normalize-specifiers): Rewrite calling
17127 display-buffer-normalize-alist,
17128 display-buffer-normalize-argument, and
17129 display-buffer-normalize-options. Don't call the latter if
17130 display-buffer-normalize-options-inhibit is non-nil.
17131 (frame-auto-delete): New option.
17132 (window-deletable-p): Use frame-auto-delete.
17133 (window-list-no-nils, window-state-ignored-parameters)
17134 (window-state-get-1, window-state-get, window-state-put-list)
17135 (window-state-put-1, window-state-put-2, window-state-put):
17136 New functions.
17137 (display-buffer-normalize-options): Move special-display-p group
17138 after pop-up-frame group (Bug#8851) and (Bug#8856).
17139
17140 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
17141
17142 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
17143 groups (Bug#8776).
17144 (rx-submatch-n): New function.
17145 (rx): Document it.
17146
17147 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
17148 (Bug#8768).
17149
17150 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
17151
17152 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
17153
17154 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
17155 anytime existing face settings are present (Bug#8889).
17156
17157 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
17158 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
17159 Remove unused argument.
17160
17161 2011-06-18 Martin Rudalics <rudalics@gmx.at>
17162
17163 * window.el (display-buffer-default-specifiers):
17164 Remove pop-up-frame. Add pop-up-window-min-height,
17165 pop-up-window-min-width, and another reuse-window specifier
17166 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
17167 (display-buffer-normalize-specifiers-2):
17168 Handle split-height-threshold and split-width-threshold also when
17169 pop-up-windows is unset. Add a reuse-window specifier for the
17170 case popping up a new window fails.
17171 (special-display-popup-frame): Remove double quoting.
17172 (display-buffer-normalize-specifiers-1): Fix thinko.
17173
17174 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
17175
17176 * shell.el (shell-completion-vars): Set pcomplete-termination-string
17177 according to comint-completion-addsuffix.
17178
17179 * pcomplete.el: Convert to lexical binding and fix bug#8819.
17180 (pcomplete-suffix-list): Mark as obsolete.
17181 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
17182 pcomplete-seen in the closure.
17183 (pcomplete-comint-setup): Setup completion-at-point as well.
17184 (pcomplete--entries): New function.
17185 (pcomplete--env-regexp): New var.
17186 (pcomplete-entries): Rewrite to work with partial-completion and
17187 without relying on pcomplete-suffix-list.
17188 (pcomplete-pare-list): Remove, unused.
17189
17190 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17191
17192 * window.el (display-buffer-alist): Set pop-up-window-min-height
17193 and pop-up-window-min-width in default value. Reported by
17194 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
17195 other-window-means-other-frame.
17196 (display-buffer-macro-specifiers): Comment out entry for
17197 other-window specifier.
17198 (display-buffer-other-window-means-other-frame): New function.
17199 (display-buffer-normalize-specifiers-1): New arguments
17200 buffer-name and label. Treat other-window case specially.
17201 (display-buffer-normalize-specifiers-2): Treat other-window case
17202 specially.
17203 (display-buffer-normalize-specifiers-3): New function.
17204 (display-buffer-normalize-specifiers):
17205 Call display-buffer-normalize-specifiers-3.
17206
17207 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17208
17209 * window.el (same-window-p): Fix two typos introduced when
17210 adding with-no-warnings.
17211 (display-buffer-normalize-specifiers-1): Don't check
17212 pop-up-frames for 'unset initialization.
17213 (display-buffer-normalize-specifiers-2): Major rewrite using
17214 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
17215 (pop-up-frames, display-buffer-reuse-frames)
17216 (display-buffer-mark-dedicated): Don't initialize to 'unset.
17217 Suggested by David Engster <deng@randomsample.de>.
17218 (even-window-heights): Initialize to 'unset.
17219 (display-buffer-alist-set): Handle new 'unset initializations.
17220 (display-buffer-macro-specifiers): Don't pop up a new frame in the
17221 other window case.
17222
17223 2011-06-16 Martin Rudalics <rudalics@gmx.at>
17224
17225 * window.el (display-buffer-normalize-specifiers-1):
17226 Respect current value of pop-up-frames for most reasonable values of
17227 second argument of display-buffer (Bug#8865).
17228 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
17229 (switch-to-buffer-other-window-same-frame)
17230 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
17231 Adams (Bug#8875).
17232 (display-buffer): Don't check noninteractive when calling
17233 display-buffer-pop-up-frame.
17234 (display-buffer-pop-up-frame): Never pop up a frame in
17235 noninteractive mode (Bug#8857).
17236 (enlarge-window, shrink-window): Don't report an error when the
17237 window can't be resized as requested (Bug#8862).
17238
17239 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17240
17241 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
17242
17243 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
17244
17245 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
17246
17247 2011-06-15 Alan Mackenzie <acm@muc.de>
17248
17249 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
17250 for declarators, disable knr checking to speed up for normal files.
17251 2: Refactor, replacing a sequence of nested if forms by a cond form.
17252
17253 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
17254
17255 * net/network-stream.el (open-network-stream): Add the keyword
17256 :always-query-capabilities for the case where you want to force a
17257 `plain' network connection, but the protocol still requires the
17258 capabilitiy command (i.e., SMTP and EHLO).
17259
17260 * subr.el (process-live-p): Rename from `process-alive-p' for
17261 consistency with other `-live-p' functions.
17262
17263 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17264
17265 * window.el (same-window-buffer-names, same-window-regexps)
17266 (special-display-frame-alist, special-display-popup-frame)
17267 (special-display-function, special-display-buffer-names)
17268 (special-display-regexps, pop-up-frame-alist)
17269 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
17270 (pop-up-windows, split-window-preferred-function)
17271 (split-height-threshold, split-width-threshold, even-window-heights)
17272 (display-buffer-mark-dedicated): Don't encourage the use of
17273 display-buffer-alist from Elisp code.
17274
17275 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
17276
17277 * progmodes/python.el (python-mode): Derive from prog-mode.
17278 * progmodes/ps-mode.el (ps-mode):
17279 * progmodes/mixal-mode.el (mixal-mode):
17280 * progmodes/cfengine.el (cfengine-mode):
17281 * progmodes/ld-script.el (ld-script-mode): Likewise.
17282
17283 2011-06-15 Martin Rudalics <rudalics@gmx.at>
17284
17285 * window.el (display-buffer-alist): Trim default value to avoid
17286 popping up a new frame (Bug#8857) or reusing an arbitrary window
17287 on another frame.
17288 (display-buffer): Do not fall back on popping up a new frame in
17289 batch mode (Bug#8857).
17290
17291 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
17292
17293 * cus-theme.el (describe-theme-1): Use custom-theme-p.
17294 (custom-theme-summary): New function.
17295 (customize-themes): Use it.
17296
17297 2011-06-13 Glenn Morris <rgm@gnu.org>
17298
17299 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
17300
17301 2011-06-13 Martin Rudalics <rudalics@gmx.at>
17302
17303 * help.el (help-window): Remove variable.
17304 (help-window-point-marker, temp-buffer-max-height)
17305 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
17306 (help-print-return-message): Don't set help-window.
17307 (resize-temp-buffer-window): Rewrite cod eand doc-string.
17308 (help-window-setup-finish): Remove.
17309 (help-window-display-message, help-window-setup)
17310 (with-help-window): Major rewrite based on new
17311 display-buffer-window variable.
17312
17313 * help-mode.el (help-mode-finish): Remove help-window related
17314 code.
17315
17316 * view.el (view-exits-all-viewing-windows): Remove reference to
17317 view-return-to-alist in doc-string.
17318 (view-return-to-alist): Make obsolete.
17319 (view-buffer): Call pop-to-buffer-same-window and remove
17320 undo-window code.
17321 (view-buffer-other-window): Call pop-to-buffer-other-window and
17322 simplify code. Ignore second argument.
17323 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
17324 simplify code. Ignore second argument.
17325 (view-return-to-alist-update): Make obsolete.
17326 (view-mode-enter): Rename second argument to QUIT-RESTORE.
17327 Rewrite using quit-restore window parameters.
17328 (view-mode-exit): Rename second argument to EXIT-ONLY.
17329 Rewrite using quit-restore-window.
17330 (View-exit, View-exit-and-edit, View-leave, View-quit)
17331 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
17332 appropriate arguments.
17333 (view-end-message): Use quit-restore window parameter.
17334
17335 * window.el (display-buffer-function): Rewrite doc-string.
17336 (display-buffer-window, display-buffer-alist): New variables.
17337 (display-buffer-split-specifiers)
17338 (display-buffer-side-specifiers)
17339 (display-buffer-macro-specifiers): New constants.
17340 (display-buffer-even-window-sizes, display-buffer-set-height)
17341 (display-buffer-set-width, display-buffer-select-window)
17342 (display-buffer-in-window, display-buffer-reuse-window)
17343 (display-buffer-split-window-1, display-buffer-split-window)
17344 (display-buffer-split-atom-window, display-buffer-pop-up-window)
17345 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
17346 (display-buffer-in-side-window, normalize-buffer-to-display)
17347 (display-buffer-normalize-specifiers-1)
17348 (display-buffer-normalize-specifiers-2)
17349 (display-buffer-normalize-specifiers, display-buffer-frame):
17350 New functions.
17351 (display-buffer): Major rewrite.
17352 (display-buffer-other-window, display-buffer-other-frame)
17353 (pop-to-buffer, switch-to-buffer-other-window)
17354 (switch-to-buffer-other-frame): Rewrite.
17355 (display-buffer-same-window, display-buffer-same-frame)
17356 (display-buffer-same-frame-other-window)
17357 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
17358 (pop-to-buffer-other-window)
17359 (pop-to-buffer-same-frame-other-window)
17360 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
17361 (switch-to-buffer-other-window-same-frame): New functions.
17362 (same-window-p, special-display-p): Rewrite disabling warnings.
17363 Make obsolete.
17364 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
17365 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
17366 Make obsolete
17367 (same-window-buffer-names, same-window-regexps)
17368 (special-display-frame-alist, special-display-popup-frame)
17369 (special-display-function, special-display-buffer-names)
17370 (special-display-regexps, pop-up-frame-alist)
17371 (pop-up-frame-function, split-window-preferred-function)
17372 (split-height-threshold, split-width-threshold)
17373 (even-window-heights): Make obsolete.
17374
17375 2011-06-12 Glenn Morris <rgm@gnu.org>
17376
17377 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
17378 Misc simplifications.
17379
17380 2011-06-12 Martin Rudalics <rudalics@gmx.at>
17381
17382 * window.el (window-safely-shrinkable-p): Restore function which
17383 was inadvertently removed in change from 2011-06-11. Declare as
17384 obsolete.
17385
17386 * calendar/calendar.el (calendar-generate-window):
17387 Use window-iso-combined-p instead of combination of one-window-p and
17388 window-safely-shrinkable-p.
17389
17390 2011-06-12 Glenn Morris <rgm@gnu.org>
17391
17392 * progmodes/fortran.el (fortran-mode-syntax-table):
17393 * progmodes/f90.el (f90-mode-syntax-table):
17394 Set % to punctuation. (Bug#8820)
17395 (f90-find-tag-default): Remove, no longer needed.
17396
17397 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
17398
17399 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
17400
17401 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
17402
17403 * image.el (image-animated-p): Return animation delay in seconds.
17404 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
17405 (image-animate-timeout): Remove DELAY argument. Don't assume
17406 every subimage has the same delay; get it from image-animated-p.
17407 (image-animate): Caller changed.
17408
17409 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
17410
17411 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
17412 to ignored backtrace functions.
17413
17414 2011-06-11 Glenn Morris <rgm@gnu.org>
17415
17416 * calendar/appt.el (appt-disp-window-function): Doc fix.
17417 (appt-check): Handle overlapping appointments. (Bug#8337)
17418
17419 2011-06-11 Martin Rudalics <rudalics@gmx.at>
17420
17421 * window.el (window-tree-1, window-tree): New functions, moving
17422 the latter to window.el.
17423 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
17424 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
17425 (bw-refresh-edges): Remove.
17426 (balance-windows-1, balance-windows-2): New functions.
17427 (balance-windows): Rewrite in terms of window tree functions,
17428 balance-windows-1 and balance-windows-2.
17429 (bw-adjust-window): Remove.
17430 (balance-windows-area-adjust): New function with functionality of
17431 bw-adjust-window but using resize-window.
17432 (set-window-text-height): Rewrite doc-string.
17433 Use normalize-live-window and resize-window.
17434 (enlarge-window-horizontally, shrink-window-horizontally):
17435 Rename argument to DELTA.
17436 (window-buffer-height): New function.
17437 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
17438 Rewrite using new window resize routines.
17439 (kill-buffer-and-window, mouse-autoselect-window-select):
17440 Use ignore-errors instead of condition-case.
17441 (quit-window): Call delete-frame instead of delete-windows-on
17442 for the only buffer on frame.
17443
17444 2011-06-10 Martin Rudalics <rudalics@gmx.at>
17445
17446 * loadup.el (top-level): Load window before files for the sake
17447 of replace-buffer-in-windows.
17448
17449 * files.el (read-buffer-to-switch)
17450 (switch-to-buffer-other-window)
17451 (switch-to-buffer-other-frame, display-buffer-other-frame):
17452 Move to window.el.
17453
17454 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
17455 (previous-buffer): Move to window.el.
17456
17457 * bindings.el (unbury-buffer): Move to window.el.
17458
17459 * window.el (delete-other-windows-vertically): Move after
17460 definition of delete-other-windows.
17461 (other-window, delete-windows-on, replace-buffer-in-windows):
17462 Move here from window.c.
17463 (record-window-buffer, unrecord-window-buffer)
17464 (set-window-buffer-start-and-point, switch-to-prev-buffer)
17465 (switch-to-next-buffer): New functions.
17466 (get-next-valid-buffer, last-buffer, next-buffer): Move here
17467 from simple.el. Call switch-to-next-buffer.
17468 (previous-buffer): Move here from simple.el.
17469 Call switch-to-prev-buffer.
17470 (bury-buffer): Move here from buffer.c. Switch to previous
17471 buffer when window cannot be deleted.
17472 (unbury-buffer): Move here from bindings.el.
17473 (ctl-x-map): Move binding for other-window from window.c to
17474 here.
17475 (read-buffer-to-switch, switch-to-buffer-other-window)
17476 (switch-to-buffer-other-frame): Move here from files.el.
17477 (normalize-buffer-to-switch-to): New functions.
17478 (switch-to-buffer): Move here from buffer.c.
17479 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
17480
17481 2011-06-10 Martin Rudalics <rudalics@gmx.at>
17482
17483 * window.el (window-min-height, window-min-width): Move here
17484 from window.c. Add defcustoms and rewrite doc-strings.
17485 (resize-mini-window, resize-window): New functions.
17486 (adjust-window-trailing-edge, enlarge-window, shrink-window):
17487 Move here from window.c.
17488 (maximize-window, minimize-window): New functions.
17489 (delete-window, delete-other-windows, split-window): Move here
17490 from window.c.
17491 (window-split-min-size): New function.
17492 (split-window-keep-point): Mention split-window-above-each-other
17493 instead of split-window-vertically.
17494 (split-window-above-each-other, split-window-vertically):
17495 Rename split-window-vertically to split-window-above-each-other
17496 and provide defalias for old definition.
17497 (split-window-side-by-side, split-window-horizontally):
17498 Rename split-window-horizontally to split-window-side-by-side
17499 and provide defalias for the old definition.
17500 (ctl-x-map): Move bindings for delete-window,
17501 delete-other-windows and enlarge-window here from window.c.
17502 Replace bindings for split-window-vertically and
17503 split-window-horizontally by bindings for
17504 split-window-above-each-other and split-window-side-by-side.
17505
17506 * cus-start.el (all): Remove entries for window-min-height and
17507 window-min-width. Add entries for window-splits and
17508 window-nest.
17509
17510 2011-06-09 Glenn Morris <rgm@gnu.org>
17511
17512 * calendar/appt.el (appt-mode-line): New function.
17513 (appt-check, appt-disp-window): Use it.
17514
17515 * files.el (hack-one-local-variable-eval-safep):
17516 Allow minor-modes with explicit +/-1 arguments.
17517
17518 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
17519
17520 * term/xterm.el (xterm): Add defgroup.
17521 (xterm-extra-capabilities): Add defcustom to supply known xterm
17522 capabilities, skip querying them, or query them (default).
17523 (terminal-init-xterm): Use it.
17524 (terminal-init-xterm-modify-other-keys): New function to set up
17525 modifyOtherKeys support to simplify `terminal-init-xterm'.
17526
17527 2011-06-09 Martin Rudalics <rudalics@gmx.at>
17528
17529 * window.el (resize-window-reset, resize-window-reset-1)
17530 (resize-subwindows-skip-p, resize-subwindows-normal)
17531 (resize-subwindows, resize-other-windows, resize-this-window)
17532 (resize-root-window, resize-root-window-vertically)
17533 (window-deletable-p, window-or-subwindow-p)
17534 (frame-root-window-p): New functions.
17535
17536 2011-06-09 Glenn Morris <rgm@gnu.org>
17537
17538 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
17539 (ange-ftp-get-files): Use it.
17540
17541 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
17542
17543 * mail/sendmail.el (mail-recover-1, mail-recover):
17544 * files.el (recover-file, recover-session):
17545 Handle dired-listing-switches not being just a single short option.
17546
17547 2011-06-09 Glenn Morris <rgm@gnu.org>
17548
17549 * calendar/appt.el (appt-display-message, appt-disp-window):
17550 Handle lists of appointments.
17551
17552 2011-06-08 Martin Rudalics <rudalics@gmx.at>
17553
17554 * window.el (one-window-p): Move down in code.
17555 Rewrite doc-string.
17556 (window-current-scroll-bars): Rewrite doc-string.
17557 Normalize live window argument.
17558 (walk-windows, get-window-with-predicate, count-windows):
17559 Rewrite doc-string. Use window-list-1.
17560 (window-in-direction-2, window-in-direction, get-mru-window):
17561 New functions.
17562
17563 2011-06-08 Reuben Thomas <rrt@sc3d.org>
17564
17565 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
17566 Doc fix (Bug#8713).
17567
17568 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
17569
17570 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
17571
17572 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
17573
17574 * loadhist.el (unload-feature-special-hooks):
17575 Add `comint-output-filter-functions'.
17576
17577 2011-06-08 Ivan Kanis <gnu@kanis.fr>
17578
17579 * calendar/appt.el (appt-check): Move some initializations into the let.
17580
17581 2011-06-08 Martin Rudalics <rudalics@gmx.at>
17582
17583 * window.el (window-height): Defalias to window-total-height.
17584 (window-width): Defalias to window-body-width.
17585
17586 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
17587
17588 * image-mode.el (image-toggle-animation): New command.
17589 (image-mode-map): Bind it to RET.
17590 (image-mode): Update message.
17591 (image-toggle-display-image): Avoid a spurious cache flush.
17592 (image-transform-rotation): Doc fix.
17593 (image-transform-properties): Return quickly in the normal case.
17594 (image-animate-loop): Rename from image-animate-max-time.
17595
17596 * image.el (image-animate-max-time): Move to image-mode.el.
17597 (create-animated-image): Remove unnecessary function.
17598 (image-animate): Rename from image-animate-start. New arg.
17599 (image-animate-stop): Remove; just use image-animate-timer.
17600 (image-animate-timer): Use car-safe.
17601 (image-animate-timeout): Rename argument.
17602
17603 2011-06-07 Martin Rudalics <rudalics@gmx.at>
17604
17605 * window.el (get-lru-window, get-largest-window): Move here from
17606 window.c. Rename first argument to ALL-FRAMES.
17607 Rephrase doc-strings.
17608 (get-buffer-window-list): Rewrite using window-list-1.
17609 Rephrase doc-string.
17610 (window-safe-min-height, window-safe-min-width): New constants.
17611 (window-size-ignore, window-min-size, window-min-size-1)
17612 (window-sizable, window-sizable-p, window-size-fixed-1)
17613 (window-size-fixed-p, window-min-delta-1, window-min-delta)
17614 (window-max-delta-1, window-max-delta, window-resizable)
17615 (window-resizable-p, window-total-height, window-total-width)
17616 (window-body-width): New functions.
17617 (window-full-height-p, window-full-width-p): Rewrite using
17618 window-total-size.
17619 (window-body-height): Rewrite using window-body-size.
17620
17621 2011-06-06 Martin Rudalics <rudalics@gmx.at>
17622
17623 * window.el (window-right, window-left, window-child)
17624 (window-child-count, window-last-child, window-any-p)
17625 (normalize-live-buffer, normalize-live-frame)
17626 (normalize-any-window, normalize-live-window)
17627 (window-iso-combination-p, window-iso-combined-p)
17628 (window-iso-combinations)
17629 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
17630 (windows-with-parameter, window-with-parameter)
17631 (window-atom-root, make-window-atom, window-atom-check-1)
17632 (window-atom-check, window-side-check, window-check):
17633 New functions.
17634 (ignore-window-parameters, window-sides, window-sides-vertical)
17635 (window-sides-slots): New variables.
17636 (window-size-fixed): Move down in code. Minor doc-string fix.
17637
17638 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
17639
17640 * comint.el (comint-dynamic-complete-as-filename)
17641 (comint-dynamic-complete-filename): Correctly call
17642 completion-in-region.
17643
17644 2011-06-05 Deniz Dogan <deniz@dogan.se>
17645
17646 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
17647 in last change.
17648
17649 2011-06-05 Deniz Dogan <deniz@dogan.se>
17650
17651 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
17652 (rcirc): Use it to prompt for encryption.
17653
17654 2011-06-05 Roland Winkler <winkler@gnu.org>
17655
17656 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
17657 (bibtex-search-entries): New command bound to C-c C-a.
17658 (bibtex-display-entries): New function.
17659
17660 2011-06-05 Roland Winkler <winkler@gnu.org>
17661
17662 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
17663 (bibtex-insert-kill): After yanking insert newline if necessary.
17664 (bibtex-initialize): Call bibtex-string-files-init only once.
17665 (bibtex-mode): Do not call easy-menu-add.
17666 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
17667 (bibtex-yank): Set arg properly if nil.
17668
17669 2011-06-05 Roland Winkler <winkler@gnu.org>
17670
17671 * textmodes/bibtex.el (bibtex-search-entry-globally):
17672 New variable.
17673 (bibtex-search-entry): Use it.
17674
17675 2011-06-05 Roland Winkler <winkler@gnu.org>
17676
17677 * textmodes/bibtex.el (bibtex-entry-format): New option
17678 sort-fields.
17679 (bibtex-format-entry, bibtex-reformat): Honor this option.
17680 (bibtex-parse-entry): Return fields in proper order.
17681
17682 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
17683
17684 * doc-view.el (doc-view-remove-if): Move computation of result out
17685 of `dolist' to silence misleading lexical-binding warning.
17686
17687 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
17688
17689 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
17690 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
17691
17692 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
17693
17694 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
17695 "SunOS 5.10".
17696
17697 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
17698
17699 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
17700 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
17701 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
17702 (tramp-parse-putty):
17703 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
17704 (tramp-completion-function-alist-ssh)
17705 (tramp-completion-function-alist-telnet)
17706 (tramp-completion-function-alist-su)
17707 (tramp-completion-function-alist-putty): Set `tramp-autoload'
17708 cookie.
17709
17710 * net/tramp-ftp.el:
17711 * net/tramp-sh.el:
17712 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
17713 load "tramp.el" `tramp-set-completion-function'.
17714
17715 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
17716
17717 * shell.el: Require and use pcomplete.
17718 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
17719 (shell-completion-vars): Set pcomplete-default-completion-function.
17720
17721 2011-06-04 Deniz Dogan <deniz@dogan.se>
17722
17723 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
17724 `memq' (Bug#8799).
17725
17726 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
17727
17728 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
17729
17730 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
17731
17732 * bs.el (bs--mark-unmark, bs--nth-wrapper):
17733 * mpc.el (mpc-select-extend, mpc-songpointer-context):
17734 * vc/log-view.el (log-view-beginning-of-defun):
17735 * vc/smerge-mode.el (smerge-apply-resolution-patch)
17736 (smerge-refine-forward, smerge-refine-chopup-region):
17737 Silence warning for unused `dotimes' counter variables.
17738
17739 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
17740
17741 * net/tramp.el (tramp-with-progress-reporter): Rename from
17742 with-progress-reporter. Use `declare'.
17743 * net/tramp-smb.el:
17744 * net/tramp-sh.el:
17745 * net/tramp-gvfs.el: Update all uses.
17746
17747 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
17748
17749 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
17750 buffer isn't killed before making it current.
17751
17752 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
17753
17754 Silence various byte-compiler warnings.
17755 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
17756 `access-type' and new obsolescence format.
17757 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
17758 new format.
17759 (byte-compile-check-variable): New `access-type' argument.
17760 Only warn if the access-type is obsolete.
17761 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
17762 (byte-compile-variable-set): Adjust callers.
17763 * help-fns.el (describe-variable): Adjust to new obsolescence format.
17764 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
17765 setting it as obsolete.
17766 * simple.el (minibuffer-completing-symbol):
17767 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
17768 access as obsolete.
17769 * minibuffer.el (minibuffer-completing-file-name): Don't make it
17770 obsolete yet.
17771 * international/quail.el (quail-mouse-choose-completion): Remove unused
17772 code referring to obsolete var.
17773 (quail-choose-completion-string): Remove.
17774 * server.el (server-clients-with, server-kill-buffer-query-function)
17775 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
17776 * proced.el (proced-send-signal):
17777 * emacs-lisp/lisp.el (lisp-complete-symbol):
17778 Replace completion-annotate-function with completion-extra-properties.
17779
17780 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
17781
17782 * simple.el (goto-line): Use read-number.
17783 (overriding-map-is-bound): Remove.
17784 (saved-overriding-map): Change default.
17785 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
17786 Take the map as argument.
17787 (universal-argument, negative-argument, digit-argument): Use it.
17788 (restore-overriding-map): Adjust.
17789 (do-auto-fill): Use fill-forward-paragraph.
17790 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
17791
17792 * minibuffer.el (minibuffer-inactive-mode-map): New var.
17793 (minibuffer-inactive-mode): New major mode.
17794 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
17795 the *Messages* buffer" hack.
17796 (mouse-popup-menubar): Don't burp if the event is a normal key.
17797
17798 Miscellaneous tweaks.
17799 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
17800 lexical scoping as in subr.el's dolist and dotimes.
17801 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
17802 Silence compiler warning.
17803 * thingatpt.el (forward-whitespace): Trivial coding style fix.
17804 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
17805 * international/ccl.el (ccl-compile): Trivial simplification.
17806 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
17807 * emacs-lisp/testcover.el (testcover-end): Remove spurious
17808 `printflag' argument.
17809 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
17810 Purecopy the whole obsolescence data.
17811
17812 2011-06-01 Leo Liu <sdl.web@gmail.com>
17813
17814 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
17815 improve doc-string as suggested by Marco Pessotto
17816 <melmothx@gmail.com>.
17817 (rcirc-print): Fix last change.
17818
17819 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
17820
17821 * minibuffer.el (complete-with-action): Return nil for the metadata and
17822 boundaries of non-functional tables.
17823 (completion-table-dynamic): Return nil for the metadata.
17824 (completion-table-with-terminator): Add default case, using
17825 complete-with-action.
17826 (completion--metadata): New function.
17827 (completion-all-sorted-completions, minibuffer-completion-help): Use it
17828 to try and avoid pathological performance problems.
17829 (completion--embedded-envvar-table): Return `category' metadata.
17830
17831 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
17832
17833 * subr.el (process-alive-p): New tiny convenience function.
17834
17835 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
17836
17837 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
17838 content but also its previous major mode.
17839
17840 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
17841
17842 * emacs-lisp/debug.el (debug): Restore the previous content of the
17843 *Backtrace* buffer when we exit with C-M-c.
17844
17845 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
17846
17847 * minibuffer.el: Add metadata method to completion tables.
17848 (completion-category-overrides): New defcustom.
17849 (completion-metadata, completion--field-metadata)
17850 (completion-metadata-get, completion--styles)
17851 (completion--cycle-threshold): New functions.
17852 (completion-try-completion, completion-all-completions):
17853 Add `metadata' argument to choose completion-styles.
17854 (completion--do-completion): Use metadata to choose cycling.
17855 (completion-all-sorted-completions): Use metadata for sorting.
17856 Remove :completion-cycle-penalty which is not needed any more.
17857 (completion--try-word-completion): Add `metadata' argument.
17858 (minibuffer-completion-help): Check metadata for annotation function
17859 and sorting.
17860 (completion-file-name-table): Return `category' metadata.
17861 (minibuffer-completing-file-name): Make obsolete.
17862 * simple.el (minibuffer-completing-symbol): Make obsolete.
17863 * icomplete.el (icomplete-completions): Pass new `metadata' param to
17864 completion-try-completion.
17865
17866 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
17867
17868 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
17869
17870 2011-05-30 Leo Liu <sdl.web@gmail.com>
17871
17872 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
17873 (rcirc-print): Decode all incoming messages (bug#8744).
17874 (rcirc-decode-coding-system): Allow value nil for automatic coding
17875 system detection.
17876
17877 2011-06-01 Glenn Morris <rgm@gnu.org>
17878
17879 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
17880
17881 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
17882
17883 * image.el (image-animate-max-time): Allow nil and t values.
17884 Default to nil.
17885 (create-animated-image): Doc fix.
17886 (image-animate-start): Remove second arg; just use
17887 image-animate-max-time.
17888 (image-animate-timeout): Doc fix. Args changed.
17889
17890 * image-mode.el (image-toggle-display-image): Ensure that the
17891 image spec passed to the animate timer is the same object as in
17892 the buffer's display property (Bug#6981).
17893 (image-transform-properties): Doc fix.
17894
17895 * image.el (image-animate-max-time): Default to nil.
17896
17897 2011-05-29 Martin Rudalics <rudalics@gmx.at>
17898
17899 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
17900 entire buffer list (Bug#8184).
17901
17902 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
17903
17904 * image.el (imagemagick-types-inhibit)
17905 (imagemagick-register-types): Doc fix.
17906
17907 2011-05-29 Deniz Dogan <deniz@dogan.se>
17908
17909 * net/rcirc.el (rcirc): Use the user's stored encryption method by
17910 default.
17911
17912 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
17913
17914 * select.el: Don't perform clipboard-manager saving in hooks;
17915 leave the hooks empty.
17916
17917 2011-05-28 Leo Liu <sdl.web@gmail.com>
17918
17919 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
17920 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
17921 (occur-edit-mode): New major mode (Bug#8463).
17922 (occur-after-change-function): New function.
17923 (occur-engine): Give Occur tags a read-only property.
17924
17925 2011-05-28 Kevin Ryde <user42@zip.com.au>
17926
17927 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
17928
17929 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
17930
17931 * bindings.el (help-echo): Make the initial non-indicator dash
17932 empty on graphical terminals (Bug#7295).
17933
17934 * files.el (auto-mode-alist): Move config rule after the
17935 in-stripping one (Bug#8547).
17936
17937 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
17938
17939 * startup.el (normal-splash-screen): Remove gratuitous mode-line
17940 setting (Bug#8740).
17941
17942 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
17943
17944 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
17945 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
17946 (Bug#8539).
17947
17948 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
17949
17950 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
17951
17952 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
17953
17954 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
17955 (hs-hide-block-at-point, hs-find-block-beginning)
17956 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
17957 (Bug#8279).
17958
17959 2011-05-28 Glenn Morris <rgm@gnu.org>
17960
17961 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
17962
17963 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
17964
17965 * help-fns.el (describe-function-1): If the function is a derived
17966 major mode, print the parent mode.
17967
17968 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
17969 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
17970
17971 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
17972
17973 * minibuffer.el (completion--capf-wrapper): Check applicability before
17974 returning non-nil for non-exclusive completion data.
17975 * progmodes/etags.el (tags-completion-at-point-function):
17976 * info-look.el (info-lookup-completions-at-point): Mark as
17977 non-exclusive.
17978 (info-complete): Adjust accordingly.
17979
17980 * info-look.el: Convert to lexical-binding and completion-at-point.
17981 (info-lookup-completions-at-point): New function.
17982 (info-complete): Use it and completion-in-region.
17983
17984 2011-05-28 Drew Adams <drew.adams@oracle.com>
17985
17986 * isearch.el: Let M-e start with point at the first mismatched char.
17987 (isearch-fail-pos): New function.
17988 (isearch-edit-string): Use it.
17989
17990 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
17991
17992 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
17993
17994 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
17995
17996 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
17997 traversal functions for avl-trees.
17998 (avl-tree--stack): New struct.
17999 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
18000 (avl-tree-enter): Add optional `updatefun' arg.
18001 (avl-tree--do-enter): Add optional `updatefun' arg.
18002 Change return value.
18003 (avl-tree-delete): Add optional `test' and `nilflag' args.
18004 (avl-tree--do-delete): Add `test' and `nilflag' args.
18005 Change return value.
18006 (avl-tree-member): Add optional `nilflag'
18007 (avl-tree-member-p): New function.
18008 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
18009 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
18010 (avl-tree-stack-empty-p): New functions.
18011
18012 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
18013 avl-tree--del-balance1 and make it work both ways.
18014 (avl-tree--del-balance2): Remove.
18015 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
18016 make it work both ways.
18017 (avl-tree--enter-balance2): Remove.
18018 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
18019 New macros.
18020 (avl-tree--mapc, avl-tree-map): Add direction argument.
18021
18022 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
18023
18024 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
18025
18026 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
18027
18028 * select.el: Support clipboard managers with built-in function
18029 x-clipboard-manager-save, via delete-frame-functions and
18030 kill-emacs-hook.
18031 (xselect-convert-to-targets): Add MULTIPLE target to list.
18032 (xselect-convert-to-save-targets): New function.
18033
18034 2011-05-27 Kenichi Handa <handa@m17n.org>
18035
18036 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
18037 let-binding rfc2047-encode-encoded-words to nil.
18038
18039 2011-05-27 Glenn Morris <rgm@gnu.org>
18040
18041 * mail/emacsbug.el: Don't require url-util.
18042
18043 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
18044
18045 * files.el (set-auto-mode):
18046 Also respect mode: entries at the end of the file. (Bug#8586)
18047
18048 2011-05-26 Glenn Morris <rgm@gnu.org>
18049
18050 * files.el (hack-local-variables-prop-line, hack-local-variables):
18051 Downcase mode names, as seems to be traditional.
18052 (hack-local-variables, hack-local-variables-apply): Doc fixes.
18053
18054 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
18055 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
18056
18057 2011-05-25 Julien Danjou <julien@danjou.info>
18058
18059 * textmodes/rst.el (rst-define-level-faces): Do not define face
18060 symbol if it is already defined.
18061
18062 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
18063
18064 * play/5x5.el (5x5-new-game, 5x5-randomize):
18065 Reset 5x5-solver-output to nil when a new grid is cast.
18066 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
18067 these debugging traces, as defmacro breaks the compiled code.
18068
18069 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18070
18071 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18072
18073 2011-05-24 Leo Liu <sdl.web@gmail.com>
18074
18075 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
18076 (vc-bzr-sha1): Adapt.
18077
18078 * sha1.el: Remove. Function `sha1' is now builtin.
18079
18080 * bindings.el: Provide sha1 feature.
18081
18082 2011-05-24 Kenichi Handa <handa@m17n.org>
18083
18084 * mail/sendmail.el: Require `rfc2047'.
18085 (mail-insert-from-field): Do not perform RFC2047 encoding.
18086 (mail-encode-header): New function.
18087 (sendmail-send-it): Set buffer-file-coding-system of the work
18088 buffer to the return value of select-message-coding-system.
18089 Call mail-encode-header.
18090
18091 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
18092
18093 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
18094
18095 * mail/supercite.el (sc-default-cite-frame):
18096 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
18097
18098 2011-05-24 Glenn Morris <rgm@gnu.org>
18099
18100 * progmodes/python.el (brm-menu): Declare.
18101
18102 * emulation/viper.el (viper-set-hooks): Declare.
18103
18104 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
18105 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
18106 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
18107 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
18108 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
18109 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
18110
18111 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
18112
18113 Add an :exit-function for completion-at-point.
18114
18115 * minibuffer.el (completion--done): New fun.
18116 (completion--do-completion): Use it. New arg `expect-exact'.
18117 (minibuffer-complete, minibuffer-complete-word): Don't output message,
18118 since completion--do-completion does it for us now.
18119 (minibuffer-force-complete): Use completion--done and
18120 completion--replace. Handle sole-completion case with more care.
18121 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
18122 (completion-extra-properties): New var.
18123 (completion-annotate-function): Make obsolete.
18124 (minibuffer-completion-help): Adjust accordingly.
18125 Use completion-list-insert-choice-function.
18126 (completion-at-point, completion-help-at-point):
18127 Bind completion-extra-properties.
18128 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
18129 * simple.el (completion-list-insert-choice-function): New var.
18130 (completion-setup-function): Preserve it.
18131 (choose-completion): Pay attention to it, shuffle the code a bit.
18132 (choose-completion-string): New arg `insert-function'.
18133
18134 * textmodes/bibtex.el: Convert to lexical binding.
18135 (bibtex-mode-map): Use completion-at-point.
18136 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
18137 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
18138 (bibtex-complete): Define as obsolete alias.
18139 (bibtex-complete-internal): Remove.
18140 (bibtex-format-entry): Remove unused sub-group in regexp.
18141 * shell.el (shell--command-completion-data)
18142 (shell-environment-variable-completion):
18143 * pcomplete.el (pcomplete-completions-at-point):
18144 * comint.el (comint--complete-file-name-data): Use :exit-function
18145 instead of completion-table-with-terminator so it also works for
18146 choose-completion.
18147
18148 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18149
18150 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
18151
18152 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
18153 (bug#8710).
18154
18155 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
18156
18157 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
18158
18159 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
18160 customization variable and implement: If non-nil, auto-fill will
18161 be inhibited while on topic's header line.
18162
18163 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
18164
18165 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
18166 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
18167 always have a solution in grid size = 5 cases.
18168 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
18169 (5x5-solver-output, 5x5-log-buffer): New vars.
18170 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
18171 Make these variables buffer local to achieve 5x5 multi-session-ness.
18172 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
18173 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
18174 (5x5-solve-suggest): New funs.
18175 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
18176 randomize a grid so that we ensure that there is always a solution.
18177 (5x5-make-random-grid): Allow other movement than flipping.
18178
18179 2011-05-23 Kevin Ryde <user42@zip.com.au>
18180
18181 * emacs-lisp/advice.el (ad-read-advised-function):
18182 Use `function-called-at-point' as the default, if it has
18183 advice and passes PREDICATE.
18184
18185 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18186
18187 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
18188 byte-compile-lambda if it's actually a lambda.
18189
18190 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
18191 Fix function quoting. Use backquote better.
18192
18193 2011-05-22 Yuanle Song <sylecn@gmail.com>
18194
18195 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
18196 matching (Bug#8516).
18197
18198 2011-01-22 Jari Aalto <jari.aalto@cante.net>
18199
18200 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
18201 different face (Bug#8178).
18202
18203 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
18204
18205 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
18206 defface (Bug#8144).
18207
18208 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
18209
18210 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
18211 funcall as well (bug#8712). Warn when performing those conversions.
18212 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
18213
18214 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
18215
18216 2011-05-22 Glenn Morris <rgm@gnu.org>
18217
18218 * files.el (hack-local-variables-prop-line): Small simplifications.
18219 (hack-local-variables, hack-local-variables-prop-line):
18220 If MODE-ONLY, return the mode, rather than just `t'.
18221
18222 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
18223
18224 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
18225
18226 2011-05-21 Glenn Morris <rgm@gnu.org>
18227
18228 * files.el (hack-local-variables-prop-line, hack-local-variables):
18229 If only interested in the mode, don't bother doing the other stuff.
18230
18231 * image-mode.el (image-after-revert-hook):
18232 Redraw all frames on which the image is visible. (Bug#8567)
18233
18234 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
18235
18236 * wid-edit.el (widget-checklist-match-inline):
18237 Fix 2011-04-19 change. (Bug#8649)
18238
18239 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
18240
18241 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
18242 Also allow singlespace after single-letter capitals followed by a dot.
18243
18244 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
18245 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
18246
18247 2011-05-20 Nix <nix@esperi.org.uk>
18248
18249 * files.el (basic-save-buffer-2):
18250 Fix handling of break-hardlink-on-save with non-existent files.
18251
18252 2011-05-19 Deniz Dogan <deniz@dogan.se>
18253
18254 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
18255 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
18256
18257 2011-05-19 Glenn Morris <rgm@gnu.org>
18258
18259 * progmodes/f90.el (f90-type-def-re):
18260 Handle "type, bind(c)". (Bug#8691)
18261
18262 * emacs-lisp/autoload.el (batch-update-autoloads):
18263 Set autoload-excludes by parsing loadup.el rather than Makefiles.
18264
18265 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
18266
18267 * net/tramp.el (tramp-process-actions): Set "first-password-request"
18268 property for the correct connection in case of multihops.
18269
18270 2011-05-18 Glenn Morris <rgm@gnu.org>
18271
18272 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
18273 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
18274
18275 Rationalize calendar handling of day and month abbrev-arrays.
18276 * calendar/calendar.el (calendar-customized-p): New function.
18277 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
18278 (calendar-day-name-array, calendar-month-name-array): Doc fix.
18279 Add :set function.
18280 (calendar-abbrev-length, calendar-day-abbrev-array)
18281 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
18282 (calendar-day-abbrev-array, calendar-month-abbrev-array):
18283 Elements may no longer be nil.
18284 (calendar-day-name, calendar-month-name):
18285 Update for changed nature of abbrev arrays.
18286 * calendar/diary-lib.el (diary-name-pattern):
18287 Update for changed nature of abbrev arrays.
18288 (diary-mark-entries-1): Update calendar-make-alist calls.
18289 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
18290 * calendar/cal-html.el (cal-html-day-abbrev-array):
18291 Simply inherit from calendar-day-abbrev-array.
18292
18293 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
18294
18295 * progmodes/grep.el (grep-mode): Disable default
18296 compilation-directory-matcher setting (bug#8684).
18297
18298 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
18299
18300 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
18301 instead of "head" and "tail". There were problems with SunOS 5.9,
18302 and it performs better.
18303
18304 2011-05-17 Glenn Morris <rgm@gnu.org>
18305
18306 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
18307
18308 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
18309 Replace obsolete function.
18310
18311 * shell.el (pcomplete-parse-arguments-function): Declare.
18312
18313 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
18314 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
18315 (appt-check): Doc fixes.
18316 (appt-disp-window-function, appt-delete-window-function):
18317 Remove needless special case in custom :type.
18318 (appt-display-count): Default to 0, not nil.
18319 (appt-check): Reset appt-display-count to 0, not nil.
18320
18321 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
18322
18323 * progmodes/python.el (python-font-lock-keywords):
18324 Add the Python 3.X keyword "nonlocal" (bug#8639).
18325
18326 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
18327
18328 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
18329
18330 2011-05-16 Kevin Ryde <user42@zip.com.au>
18331
18332 * info-look.el (makefile-automake-mode): New setups, looking in
18333 automake manual, then makefile-mode.
18334 (makefile-mode): Remove automake manual, have it just in
18335 makefile-automake-mode since there's various things different or
18336 not relevant to plain make.
18337 (makefile-mode): Remove "other-modes" non-existent automake-mode,
18338 believe a hypothetical automake-mode would go to makefile-mode,
18339 not the other way around.
18340
18341 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
18342
18343 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
18344 hunk-end tags (Bug#8672).
18345
18346 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
18347 vc-annotate-show-diff-revision-at-line (Bug#8671).
18348
18349 2011-05-14 Glenn Morris <rgm@gnu.org>
18350
18351 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
18352 in the middle of an existing one with multiple authors. (Bug#8645)
18353 (change-log-font-lock-keywords): Also handle multiple author lines
18354 with leading tabs. (Bug#8644)
18355
18356 * calendar/appt.el (appt-check): Rename some local variables.
18357 Some simplification/reordering.
18358
18359 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
18360 (feedmail-sendmail-f-doesnt-sell-me-out)
18361 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
18362 (feedmail-debug-sit-for, feedmail-queue-express-hook)
18363 (feedmail-queue-runner-message-sender): Set :version.
18364 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
18365 (bbdb-dwim-net-address, vm-mail): Declare.
18366 (feedmail-binmail-gnulinuxish-template):
18367 Rename from feedmail-binmail-linuxish-template.
18368 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
18369 Use insert-buffer-substring.
18370
18371 2011-05-14 Bill Carpenter <bill@carpenter.org>
18372
18373 * mail/feedmail.el (feedmail-patch-level): Increase.
18374 (feedmail-debug): New custom group.
18375 (feedmail-confirm-outgoing-timeout)
18376 (feedmail-sendmail-f-doesnt-sell-me-out)
18377 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
18378 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
18379 (feedmail-sender-line, feedmail-from-line)
18380 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
18381 (feedmail-spray-this-address)
18382 (feedmail-spray-address-fiddle-plex-list)
18383 (feedmail-queue-use-send-time-for-date)
18384 (feedmail-queue-use-send-time-for-message-id)
18385 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
18386 (feedmail-buffer-eating-function):
18387 Doc fixes.
18388 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
18389 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
18390 (feedmail-message-action-scroll-down): New functions.
18391 (feedmail-queue-directory, feedmail-queue-draft-directory):
18392 Use expand-file-name.
18393 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
18394 Remove C-v help entry.
18395 (feedmail-queue-buffer-file-name): New variable.
18396 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
18397 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
18398 (feedmail-message-action-send-strong, feedmail-message-action-edit)
18399 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
18400 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
18401 (feedmail-message-action-toggle-spray)
18402 (feedmail-run-the-queue-no-prompts)
18403 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
18404 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
18405 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
18406 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
18407 (feedmail-envelope-deducer, feedmail-fiddle-from)
18408 (feedmail-fiddle-sender, feedmail-default-date-generator)
18409 (feedmail-fiddle-date, feedmail-fiddle-message-id)
18410 (feedmail-fiddle-spray-address)
18411 (feedmail-fiddle-list-of-spray-fiddle-plexes)
18412 (feedmail-fiddle-list-of-fiddle-plexes)
18413 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
18414 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
18415 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
18416 Change default. Doc fix.
18417 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
18418 (feedmail-binmail-linuxish-template): New constant.
18419 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
18420 Respect feedmail-sendmail-f-doesnt-sell-me-out.
18421 (feedmail-send-it): Add debug call.
18422 Use feedmail-queue-buffer-file-name, and
18423 feedmail-send-it-immediately-wrapper.
18424 (feedmail-message-action-send): Add debug call.
18425 Use feedmail-send-it-immediately-wrapper.
18426 (feedmail-queue-express-to-queue): Add debug call.
18427 Run feedmail-queue-express-hook.
18428 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
18429 (feedmail-message-action-help-blat):
18430 Rename from feedmail-queue-send-edit-prompt-help-first.
18431 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
18432 Check line-endings. Handle errors better.
18433 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
18434 Doc fix. Add debug call.
18435 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
18436 Use feedmail-queue-send-edit-prompt-inner.
18437 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
18438 (feedmail-queue-send-edit-prompt-inner): New function, extracted
18439 from feedmail-queue-send-edit-prompt.
18440 (feedmail-queue-send-edit-prompt-help)
18441 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
18442 (feedmail-tidy-up-slug): Add debug call.
18443 Respect feedmail-queue-slug-suspect-regexp.
18444 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
18445 (feedmail-dump-message-to-queue): Add debug call.
18446 Expand queue-directory.
18447 (feedmail-dump-message-to-queue): Change message slightly.
18448 Use feedmail-say-chatter.
18449 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
18450 (feedmail-send-it-immediately-wrapper): New function.
18451 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
18452 Insert empty string rather than newline. Handle full-frame case.
18453 Use catch/throw. Use feedmail-say-chatter.
18454 (feedmail-fiddle-from): Try mail-host-address.
18455 (feedmail-default-message-id-generator): Doc fix.
18456 Bind system-time-locale. Handle missing end.
18457 (feedmail-fiddle-x-mailer): Add debug call.
18458 Handle feedmail-x-mailer-line being nil.
18459 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
18460 Add debug call. Use buffer-substring-no-properties.
18461 (feedmail-say-debug, feedmail-say-chatter): New functions.
18462 (feedmail-find-eoh): Give an explicit error.
18463
18464 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
18465
18466 * net/newst-treeview.el (newsticker-treeview-face): Change default
18467 family from helvetica to sans.
18468 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
18469 etc/images/newsticker.
18470
18471 * net/newst-reader.el (newsticker-feed-face): Change default
18472 family from helvetica to sans.
18473
18474 * net/newst-plainview.el (newsticker-new-item-face)
18475 (newsticker-old-item-face, newsticker-immortal-item-face)
18476 (newsticker-obsolete-item-face, newsticker-date-face)
18477 (newsticker-statistics-face): Change default family from
18478 helvetica to sans.
18479 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
18480 etc/images/newsticker.
18481
18482 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
18483 (newsticker--process-auto-mark-filter-match): Tell user about
18484 auto-marking.
18485
18486 2011-05-13 Didier Verna <didier@xemacs.org>
18487
18488 Common Lisp indentation improvements on defmethod and lambda-lists.
18489 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
18490 TODO entries.
18491 (lisp-lambda-list-keyword-parameter-indentation)
18492 (lisp-lambda-list-keyword-parameter-alignment)
18493 (lisp-lambda-list-keyword-alignment): New customizable user options.
18494 (lisp-indent-defun-method): Improve docstring.
18495 (extended-loop-p): Fix comment.
18496 (lisp-indent-lambda-list-keywords-regexp): New variable.
18497 (lisp-indent-lambda-list): New function.
18498 (lisp-indent-259): Use it.
18499 (lisp-indent-defmethod): Support for more than one
18500 method qualifier and properly indent methods lambda-lists.
18501 (defgeneric): Provide a missing common-lisp-indent-function property.
18502
18503 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
18504
18505 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
18506 bounds for the empty string (bug#8667).
18507
18508 2011-05-13 Glenn Morris <rgm@gnu.org>
18509
18510 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
18511
18512 * mail/sendmail.el (sendmail-program): Try executable-find first.
18513 (sendmail-send-it): `sendmail-program' cannot be unbound.
18514
18515 * calendar/appt.el (appt-make-list): Simplify.
18516 (appt-time-msg-list): Doc fix.
18517 (appt-check): Change mode-line message at the time of the appointment.
18518
18519 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
18520
18521 * progmodes/ld-script.el (ld-script-keywords)
18522 (ld-script-builtins): Update keywords list.
18523
18524 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
18525
18526 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
18527
18528 * shell.el (shell-completion-vars): New function.
18529 (shell-mode):
18530 * simple.el (read-shell-command): Use it.
18531 (blink-matching-open): No need for " [...]" in minibuffer-message.
18532
18533 2011-05-12 Glenn Morris <rgm@gnu.org>
18534
18535 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
18536 (appt-check): Simplify.
18537
18538 2011-05-12 Eli Zaretskii <eliz@gnu.org>
18539
18540 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
18541 literal "/dev/null".
18542
18543 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
18544
18545 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
18546 Fix typo.
18547
18548 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
18549
18550 * progmodes/which-func.el (which-function):
18551 Use add-log-current-defun instead of add-log-current-defun-function,
18552 which might not be defined (Bug#8260).
18553
18554 2011-05-12 Glenn Morris <rgm@gnu.org>
18555
18556 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
18557 Let byte-compile-initial-macro-environment always take precedence.
18558
18559 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
18560
18561 * net/rcirc.el: Add support for SSL/TLS connections.
18562 (rcirc-server-alist): New field `encryption'.
18563 (rcirc): Check `encryption' settings.
18564 (rcirc-connect): New arg `encryption'. Use open-network-stream.
18565 Merge make-local-variable into `set'.
18566 (rcirc--connection-open-p): New function.
18567 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
18568 the process is not a network process (e.g. running gnutls-cli).
18569 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
18570 Make rcirc-(en|de)code-coding-system local here.
18571 (rcirc-mode): Merge make-local-variable into `set'.
18572 (rcirc-parent-buffer): Make permanent buffer-local.
18573 (rcirc-multiline-minor-mode): Don't do it here.
18574 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
18575 there's no server buffer.
18576
18577 2011-05-11 Glenn Morris <rgm@gnu.org>
18578
18579 * newcomment.el (comment-kill): Prefix "unused" local.
18580
18581 * term/w32console.el (get-screen-color): Declare.
18582
18583 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
18584 Handle symbol elements of byte-compile-initial-macro-environment.
18585
18586 2011-05-10 Leo Liu <sdl.web@gmail.com>
18587
18588 * bookmark.el (bookmark-bmenu-mode-map):
18589 Bind bookmark-bmenu-search to `/'.
18590
18591 * mail/footnote.el: Convert to utf-8 encoding.
18592 (footnote-unicode-string, footnote-unicode-regexp): New variable.
18593 (Footnote-unicode): New function.
18594 (footnote-style-alist): Add unicode style to the list.
18595 (footnote-style): Doc fix.
18596
18597 2011-05-10 Jim Meyering <meyering@redhat.com>
18598
18599 Fix doubled-word typos.
18600 * international/quail.el (quail-insert-kbd-layout): and and -> and
18601 * kermit.el: and and -> and
18602 * net/ldap.el (ldap-search-internal): to to -> to
18603 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
18604 * progmodes/js.el (js-mode): and and -> and
18605 * textmodes/artist.el (artist-move-to-xy): at at -> at
18606 (artist-draw-region-trim-line-endings): if if -> if
18607 And Safetyc -> Safety.
18608 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
18609
18610 2011-05-10 Glenn Morris <rgm@gnu.org>
18611 Stefan Monnier <monnier@iro.umontreal.ca>
18612
18613 * files.el (hack-one-local-variable-eval-safep):
18614 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
18615
18616 2011-05-10 Glenn Morris <rgm@gnu.org>
18617
18618 * calendar/diary-lib.el (diary-list-entries-hook)
18619 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
18620 (diary-nongregorian-marking-hook, diary-list-entries)
18621 (diary-include-other-diary-files, diary-mark-entries)
18622 (diary-mark-included-diary-files): Doc fixes.
18623
18624 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
18625
18626 * misc.el: Require tabulated-list.el during compilation.
18627
18628 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
18629
18630 * progmodes/compile.el (compilation-start):
18631 Run compilation-filter-hook for the async case too.
18632 (compilation-filter-hook): Doc fix.
18633
18634 2011-05-09 Deniz Dogan <deniz@dogan.se>
18635
18636 * wdired.el: Remove outdated installation comment. Fix usage
18637 comment.
18638
18639 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
18640
18641 * misc.el: Implement new command `list-dynamic-libraries'.
18642 (list-dynamic-libraries--loaded-only-p): New variable.
18643 (list-dynamic-libraries--refresh): New function.
18644 (list-dynamic-libraries): New command.
18645
18646 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
18647
18648 * progmodes/compile.el (compilation-error-regexp-alist-alist):
18649 Fix the ant regexp to handle end-line and end-column info from jikes.
18650 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
18651 higher priority to avoid clobbering by gnu.
18652
18653 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
18654
18655 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
18656 if the face has existing theme settings (Bug#8454).
18657
18658 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
18659
18660 * progmodes/perl-mode.el (perl-imenu-generic-expression):
18661 Only match variables declared via `my' or `our' (Bug#8261).
18662
18663 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
18664 special file names `.' and `..' (Bug#8259).
18665
18666 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
18667
18668 * progmodes/grep.el (grep-mode-font-lock-keywords):
18669 Remove buffer-changing entries.
18670 (grep-filter): New function.
18671 (grep-mode): Add it to compilation-filter-hook.
18672
18673 * progmodes/compile.el (compilation-filter-hook)
18674 (compilation-filter-start): New defvars.
18675 (compilation-filter): Call compilation-filter-hook prior to
18676 updating the process mark.
18677
18678 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
18679
18680 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
18681
18682 2011-05-07 Eli Zaretskii <eliz@gnu.org>
18683
18684 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
18685 mailclient-send-it even if window-system is nil. (Bug#8595)
18686
18687 * term/w32console.el (terminal-init-w32console):
18688 Call get-screen-color and use its output to set the frame
18689 background-mode. (Bug#8597)
18690
18691 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
18692
18693 Make bytecomp.el understand that defmethod defines funs (bug#8631).
18694 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
18695 New functions.
18696 (defgeneric, eieio--defmethod): Use them.
18697 (eieio-defgeneric): Remove.
18698 (defmethod): Call defgeneric in a way visible to the byte-compiler.
18699
18700 2011-05-07 Glenn Morris <rgm@gnu.org>
18701
18702 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
18703 Use let rather than let*.
18704 (timeclock-find-discrep): Remove unused local.
18705
18706 * calendar/diary-lib.el (diary-comment-start): Doc fix.
18707
18708 * calendar/appt.el (appt-time-msg-list): Doc fix.
18709
18710 2011-05-06 Noah Friedman <friedman@splode.com>
18711
18712 * apropos.el (apropos-print-doc): Only use
18713 emacs-lisp-docstring-fill-column when it is bound to an integer,
18714 per that variable's documentation.
18715
18716 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
18717
18718 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
18719 and warnings are not silently discarded (e.g. use -d instead of -P).
18720
18721 2011-05-06 Glenn Morris <rgm@gnu.org>
18722
18723 * calendar/appt.el (appt-message-warning-time): Doc fix.
18724 (appt-warning-time-regexp): New option.
18725 (appt-make-list): Respect appt-message-warning-time.
18726
18727 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
18728 New options.
18729 (diary-add-to-list): Strip comments from the displayed string.
18730 (diary-mode): Set comment-start and comment-end.
18731
18732 * vc/diff-mode.el (smerge-refine-subst): Declare.
18733 (diff-refine-hunk): Don't require smerge-mode when compiling.
18734
18735 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
18736
18737 * simple.el (list-processes): Return nil as the docstring says.
18738
18739 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
18740
18741 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
18742 to "".
18743 (ange-ftp-write-region, ange-ftp-insert-file-contents)
18744 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
18745 determining of binary transfer. (Bug#7383)
18746
18747 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
18748
18749 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
18750 Fix port computation bug. (Bug#8618)
18751
18752 2011-05-05 Glenn Morris <rgm@gnu.org>
18753
18754 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
18755
18756 * simple.el (shell-dynamic-complete-functions)
18757 (comint-dynamic-complete-functions): Declare.
18758
18759 * net/network-stream.el (gnutls-negotiate):
18760 * simple.el (tabulated-list-print): Fix declarations.
18761
18762 * progmodes/gud.el (syntax-symbol, syntax-point):
18763 Remove unnecessary and incorrect declarations.
18764
18765 * emacs-lisp/check-declare.el (check-declare-scan):
18766 Handle byte-compile-initial-macro-environment in bytecomp.el.
18767
18768 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
18769
18770 Fix earlier half-done eieio-defmethod change (bug#8338).
18771 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
18772 Streamline and change calling convention.
18773 (defmethod): Adjust accordingly and simplify.
18774 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
18775 new eieio--defmethod.
18776 (slot-boundp): Minor CSE simplification.
18777
18778 2011-05-05 Milan Zamazal <pdm@zamazal.org>
18779
18780 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
18781 (glasses-make-readable): Use glasses-separate-capital-groups.
18782
18783 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
18784
18785 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
18786 (warning-series): Doc fix.
18787 (display-warning): Don't try to create the buffer if we just found it.
18788
18789 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
18790
18791 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
18792 (autoload-find-generated-file): New function.
18793 (generate-file-autoloads): Bind generated-autoload-file to
18794 buffer-file-name.
18795 (update-file-autoloads, update-directory-autoloads):
18796 Use autoload-find-generated-file. If called interactively, prompt for
18797 output file (Bug#7989).
18798 (batch-update-autoloads): Doc fix.
18799
18800 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
18801
18802 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
18803
18804 2011-05-04 Glenn Morris <rgm@gnu.org>
18805
18806 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
18807 function, so it follows changes in calendar-date-style.
18808 (diary-fancy-date-matcher): New function.
18809 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
18810 (diary-fancy-font-lock-fontify-region-function):
18811 Use diary-fancy-date-pattern as a function.
18812
18813 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
18814 non-numbers for `year' etc pseudo-variables. (Bug#8583)
18815
18816 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
18817
18818 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
18819 instead of positional arguments. Allow :keylist and :crlfiles
18820 arguments.
18821 (open-gnutls-stream): Call it.
18822
18823 * net/network-stream.el (network-stream-open-starttls): Adjust to
18824 call `gnutls-negotiate' with :process and :hostname arguments.
18825
18826 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
18827
18828 * minibuffer.el (completion--message): New function.
18829 (completion--do-completion, minibuffer-complete)
18830 (minibuffer-force-complete, minibuffer-complete-word): Use it.
18831 (completion--do-completion): Don't ignore completion-auto-help when in
18832 icomplete-mode.
18833
18834 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
18835 internal encoding (e.g. tibetan zero is not whitespace).
18836 (global-whitespace-mode): Prefer save-current-buffer.
18837 (whitespace-trailing-regexp): Remove useless save-match-data.
18838 (whitespace-empty-at-bob-regexp): Minor simplification.
18839
18840 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
18841
18842 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
18843
18844 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
18845
18846 * textmodes/ispell.el (ispell-add-per-file-word-list):
18847 Use `concat' to create string for insertion.
18848
18849 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
18850
18851 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
18852 Avoid open-line which runs post-self-insert-hook.
18853 (bibtex-fill-entry): Remove unused `end' var.
18854
18855 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
18856
18857 * textmodes/ispell.el (ispell-add-per-file-word-list):
18858 Protect against `nil' value of `comment-start' (Bug#8579).
18859
18860 2011-05-03 Leo Liu <sdl.web@gmail.com>
18861
18862 * isearch.el (isearch-yank-pop): New command.
18863 (isearch-mode-map): Bind it to `M-y'.
18864 (isearch-forward): Mention it.
18865
18866 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
18867
18868 * simple.el (minibuffer-complete-shell-command): Remove.
18869 (minibuffer-local-shell-command-map): Use completion-at-point.
18870 (read-shell-command): Setup completion vars here instead.
18871 (read-expression-map): Bind TAB to symbol completion.
18872
18873 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
18874 error directly rather via storing it into `results'.
18875
18876 2011-05-02 Leo Liu <sdl.web@gmail.com>
18877
18878 * vc/diff.el: Fix description.
18879
18880 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
18881
18882 * server.el (server-eval-at): New function.
18883
18884 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
18885
18886 * net/network-stream.el (open-network-stream): Take a :nowait
18887 parameter and pass it on to `make-network-process'.
18888 (network-stream-open-plain): Ditto.
18889
18890 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
18891
18892 * faces.el (face-spec-set-match-display): Don't match toolkit
18893 options on terminal frames.
18894
18895 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
18896
18897 * progmodes/pascal.el: Use lexical binding.
18898 (pascal-mode-map): Remove author preferences.
18899
18900 * pcomplete.el (pcomplete-std-complete): Don't abuse
18901 completion-at-point.
18902
18903 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
18904
18905 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
18906 removing code that has been dead since 1991 or so.
18907
18908 * startup.el (command-line): When warning about "_emacs", use a
18909 delayed warning to allow the user to filter it out.
18910
18911 2011-04-28 Deniz Dogan <deniz@dogan.se>
18912
18913 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
18914 user has not joined.
18915
18916 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
18917
18918 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
18919 aren't any completions at point.
18920
18921 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
18922
18923 * subr.el (display-delayed-warnings): New function.
18924 (delayed-warnings-hook): New variable.
18925
18926 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
18927
18928 * minibuffer.el (completion-at-point, completion-help-at-point):
18929 Don't presume that a given completion-at-point-function will always
18930 use the same calling convention.
18931
18932 * pcomplete.el (pcomplete-completions-at-point):
18933 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
18934 pcomplete-seen is non-nil.
18935 (pcomplete-comint-setup): Also recognize the new comint/shell
18936 completion functions.
18937 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
18938 pcomplete-seen is non-nil.
18939
18940 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
18941
18942 * calendar/icalendar.el (diary-lib): Add require statement.
18943 (icalendar--create-uid): Read out a uid from a text-property on
18944 the first character in the entry. This allows for code to add its
18945 own uid to the entry.
18946 (icalendar--convert-float-to-ical): Add export of
18947 `diary-float'-entries save for those with the optional DAY
18948 argument.
18949
18950 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
18951
18952 * subr.el (shell-quote-argument): Use alternate escaping strategy
18953 when we spot a variable reference in a string.
18954
18955 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
18956
18957 * cus-start.el (all): Define customization for debug-on-event.
18958
18959 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
18960
18961 * subr.el (shell-quote-argument): Escape correctly under Windows.
18962
18963 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
18964
18965 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
18966
18967 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
18968
18969 * net/tramp.el (tramp-process-actions): Add POS argument.
18970 Delete region between POS and (pos).
18971
18972 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
18973 Use `nil' position in `tramp-process-actions' call.
18974 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
18975
18976 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
18977 position in `tramp-process-actions' call.
18978
18979 * net/trampver.el: Update release number.
18980
18981 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
18982
18983 * custom.el (defcustom): Obey lexical-binding.
18984
18985 Fix octave-inf completion problems reported by Alexander Klimov.
18986 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
18987 Inherit from octave-mode-syntax-table.
18988 (inferior-octave-mode): Set info-lookup-mode.
18989 (inferior-octave-completion-at-point): New function.
18990 (inferior-octave-complete): Use it and completion-in-region.
18991 (inferior-octave-dynamic-complete-functions): Use it as well, and use
18992 comint-filename-completion.
18993 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
18994 symbol elements which shouldn't be word elements.
18995 (octave-font-lock-keywords, octave-beginning-of-defun)
18996 (octave-function-header-regexp): Adjust regexps accordingly.
18997 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
18998
18999 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
19000
19001 * net/gnutls.el (gnutls-errorp): Declare before first use.
19002
19003 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
19004
19005 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
19006 verify-error, and verify-hostname-error parameters. Check whether
19007 default trustfile exists before going to use it. Add missing
19008 argument to gnutls-message-maybe call. Return value.
19009 Reported by Claudio Bley <claudio.bley@gmail.com>.
19010 (open-gnutls-stream): Add usage example.
19011
19012 * net/network-stream.el (network-stream-open-starttls): Give host
19013 parameter to `gnutls-negotiate'.
19014 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
19015 * subr.el (shell-quote-argument): Escape correctly under Windows.
19016
19017 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
19018
19019 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
19020 Use correct match group (bug#8438).
19021
19022 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19023
19024 * emacs-lisp/package.el (package-built-in-p): Fix typo.
19025 (package-menu--generate): New arg specifying packages to show.
19026 (package-menu-refresh, package-menu-execute, list-packages):
19027 Callers changed.
19028 (package-show-package-list): New function, replacing deleted
19029 package--list-packages (renamed because it is non-internal).
19030
19031 * finder.el (finder-list-matches): Use package-show-package-list
19032 instead of deleted package--list-packages.
19033
19034 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
19035 Based on a previous implementation by Juanma Barranquero (Bug#8366).
19036 (vc-annotate-mode-map): Bind it to RET.
19037
19038 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
19039
19040 * progmodes/etags.el (next-file): Don't use set-buffer to change
19041 buffers (Bug#8478).
19042
19043 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19044
19045 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
19046
19047 * apropos.el (apropos-label-face): Avoid variable-pitch face.
19048 (apropos-accumulator): Doc fix.
19049 (apropos-function, apropos-macro, apropos-command)
19050 (apropos-variable, apropos-face, apropos-group, apropos-widget)
19051 (apropos-plist): Add face property.
19052 (apropos-symbols-internal): Fix indentation.
19053 (apropos-print): Simplify help, and recognize apropos-multi-type.
19054 (apropos-print-doc): Use button-type-get to extract the button's
19055 face property. Fill docstring (Bug#8352).
19056
19057 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
19058
19059 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
19060
19061 * play/mpuz.el (mpuz-silent): Doc fix.
19062 (mpuz-mode-map): Use mapc.
19063 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
19064 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
19065 Fix typos in docstrings.
19066
19067 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
19068 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
19069
19070 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
19071
19072 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
19073
19074 * minibuffer.el (completion--do-completion): Avoid the "Next char
19075 not unique" prompt if icomplete-mode is enabled (Bug#5849).
19076
19077 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
19078 mouse-2 into unread-command-events, it is interpreted correctly.
19079
19080 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
19081 (image-toggle-display): Doc fix.
19082
19083 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
19084
19085 * textmodes/page.el (what-page): Use line-number-at-pos to
19086 calculate line number (Bug#6825).
19087
19088 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19089
19090 * eshell/esh-mode.el (find-tag-interactive): Declare function.
19091 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
19092 Pass argument NO-DEFAULT to `find-tag-interactive'.
19093
19094 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19095
19096 Lexical-binding cleanup.
19097
19098 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
19099 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
19100 * progmodes/ada-prj.el (ada-prj-initialize-values)
19101 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
19102 (ada-prj-show-value):
19103 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
19104 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
19105 (antlr-invalidate-context-cache, antlr-options-menu-filter)
19106 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
19107 * progmodes/bug-reference.el (bug-reference-push-button):
19108 * progmodes/fortran.el (fortran-line-length):
19109 * progmodes/glasses.el (glasses-change):
19110 * progmodes/octave-mod.el (octave-fill-paragraph):
19111 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
19112 (python-pdbtrack-grub-for-buffer, python-sentinel):
19113 * progmodes/sql.el (sql-save-connection):
19114 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
19115 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
19116 Mark unused parameters.
19117
19118 * progmodes/compile.el (compilation--flush-directory-cache)
19119 (compilation--flush-parse, compile-internal): Mark unused parameters.
19120 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
19121 (compilation-next-error-function): Remove unused variable `timestamp'.
19122
19123 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
19124 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
19125
19126 * progmodes/dcl-mode.el (dcl-end-of-command):
19127 Remove unused variable `start'.
19128 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
19129 (dcl-option-value-basic, dcl-option-value-offset)
19130 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
19131 Mark unused parameters.
19132 (dcl-save-local-variable): Remove unused variable `val'.
19133 (mode): Declare.
19134
19135 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
19136 Mark unused parameters.
19137 (delphi-ignore-changes): Move before first use.
19138 (delphi-charset-token-at): Remove unused variable `start'.
19139 (delphi-else-start): Remove unused variable `if-count'.
19140 (delphi-comment-block-start, delphi-comment-block-end):
19141 Remove unused variable `kind'.
19142 (delphi-indent-line): Remove unused variable `new-point'.
19143
19144 * progmodes/ebrowse.el (ebrowse-files-list)
19145 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
19146 Mark unused parameters. Don't quote `lambda'.
19147 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
19148 Don't quote `lambda'.
19149 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
19150 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
19151 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
19152 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
19153 Use `ignore-errors'.
19154 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
19155 (ebrowse-view/find-file-and-search-pattern)
19156 (ebrowse-view/find-member-declaration/definition):
19157 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
19158 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
19159 Rename parameter PREFIX-ARG to PREFIX.
19160 (ebrowse-tags-read-name): Remove unused variables `start' and
19161 `member-info'.
19162 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
19163 to `tags-file'.
19164
19165 * progmodes/etags.el (local-find-tag-hook): Declare.
19166 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
19167 Mark unused parameters.
19168
19169 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
19170 (executable-interpret): Mark unused parameter.
19171
19172 * progmodes/flymake.el (flymake-process-sentinel)
19173 (flymake-after-change-function)
19174 (flymake-create-temp-with-folder-structure)
19175 (flymake-get-include-dirs-dot): Mark unused parameters.
19176 (flymake-safe-delete-directory): Remove unused variable `err'.
19177
19178 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
19179 (speedbar-timer-fn, speedbar-line-text)
19180 (speedbar-change-expand-button-char, speedbar-delete-subblock)
19181 (speedbar-center-buffer-smartly): Declare functions.
19182 (gdb-find-watch-expression): Remove unused variable `array'.
19183 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
19184 (gdb-starting): Mark unused parameters.
19185 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
19186 (gdb-table-string): Remove unused variable `res'.
19187 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
19188 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
19189 (gdb-display-buffer): Remove unused variable `cur-size'.
19190
19191 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
19192 allow lexical-binding compilation.
19193 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
19194 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
19195 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
19196 Mark unused parameters.
19197 (gud-gdb-marker-filter): Remove unused variable `match'.
19198 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
19199 lambda expressions and funcall them, instead of using `fset'.
19200
19201 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
19202 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
19203
19204 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
19205 variable `header-beg'; use `let'.
19206
19207 * progmodes/icon.el (indent-icon-exp): Remove unused variables
19208 `restart', `last-sexp' and `at-do'.
19209
19210 * progmodes/js.el (js--debug): Mark unused parameter.
19211 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
19212 (js--splice-into-items): Remove unused variable `item'.
19213 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
19214
19215 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
19216 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
19217 (makefile-complete): Remove unused variable `try'.
19218 (makefile-fill-paragraph, makefile-match-function-end):
19219 Mark unused parameters.
19220
19221 * progmodes/octave-inf.el (inferior-octave-complete):
19222 Remove unused variable `proc'.
19223 (inferior-octave-output-digest): Mark unused parameter.
19224
19225 * progmodes/perl-mode.el (perl-calculate-indent):
19226 Remove unused variable `err'.
19227
19228 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
19229 (prolog-indent-line): Mark unused parameters.
19230 (prolog-indent-line): Remove unused variable `beg'.
19231
19232 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
19233 (reporter-dont-compact-list): Declare.
19234
19235 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
19236 Remove unused variable `char'.
19237 (sh-debug): Mark unused parameter.
19238 (sh-get-indent-info): Remove unused variable `start'.
19239 (sh-calculate-indent): Remove unused variable `var'.
19240
19241 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
19242 (simula-electric-keyword): Remove unused variable `null'.
19243 (simula-search-backward, simula-search-forward): Remove unused
19244 variables `begin' and `end'.
19245
19246 * progmodes/vera-mode.el (vera-guess-basic-syntax):
19247 Remove unused variable `pos'.
19248 (vera-electric-tab, vera-comment-uncomment-region):
19249 Mark unused parameters.
19250 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
19251
19252 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
19253
19254 * emacs-lisp/package.el (package--builtins, package-alist)
19255 (package-load-descriptor, package-built-in-p, package-activate)
19256 (define-package, package-installed-p)
19257 (package-compute-transaction, package-buffer-info)
19258 (package--push): Doc fix. Distinguish more clearly between
19259 version strings and version lists.
19260
19261 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
19262
19263 Lexical-binding cleanup.
19264
19265 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
19266 (5x5-make-mutate-best):
19267 * play/fortune.el (fortune-in-buffer):
19268 * play/gomoku.el (gomoku-init-display):
19269 * play/solitaire.el (solitaire, solitaire-do-check):
19270 * play/tetris.el (tetris-default-update-speed-function):
19271 Mark unused parameters.
19272
19273 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
19274 (bubbles--shift): Remove unused variable `char-org'.
19275 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
19276 (bubbles--show-images): Remove unused variable `char'.
19277
19278 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
19279 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
19280 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
19281 (decipher-analyze-buffer): Use ?\s.
19282 (decipher-make-checkpoint): Remove unused variable `mapping'.
19283
19284 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
19285
19286 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
19287 Remove unused variable `result'; use `let'.
19288
19289 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
19290 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
19291 (gametree-children-shown-p, gametree-compute-reduced-score):
19292 Use `ignore-errors'.
19293
19294 * play/handwrite.el (ps-lpr-switches): Declare.
19295 (handwrite): Remove unused variables `pmin' and `lastp'.
19296
19297 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
19298
19299 * play/landmark.el (landmark-init-display)
19300 (landmark-update-naught-weights): Mark unused parameters.
19301 (landmark-y): Remove unused variable `noise'. Simplify.
19302 (landmark-human-plays): Remove unused variable `score'.
19303
19304 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
19305 (mpuz-try-proposal): Remove unused variable `game'.
19306
19307 * play/zone.el (life-patterns): Declare.
19308
19309 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
19310
19311 * vc/vc.el (ediff-vc-internal): Declare function.
19312
19313 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
19314
19315 * shell.el: Use lexical-binding and std completion UI.
19316 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
19317 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
19318 comint-preoutput-filter-functions rather than on
19319 comint-output-filter-functions.
19320 (shell-command-completion, shell--command-completion-data)
19321 (shell-filename-completion, shell-environment-variable-completion)
19322 (shell-c-a-p-replace-by-expanded-directory): New functions.
19323 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
19324 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
19325 (shell-dynamic-complete-environment-variable): Use them.
19326 (shell-dynamic-complete-as-environment-variable)
19327 (shell-dynamic-complete-as-command): Remove.
19328 (shell-match-partial-variable): Match past point.
19329 * comint.el: Clean up use of completion-at-point-functions.
19330 (comint-completion-at-point): New function.
19331 (comint-mode): Use it completion-at-point-functions.
19332 (comint-dynamic-complete): Make it obsolete.
19333 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
19334 (comint-c-a-p-replace-by-expanded-history): New function.
19335 (comint-dynamic-complete-functions)
19336 (comint-replace-by-expanded-history): Use it.
19337 * minibuffer.el (completion-table-with-terminator): Allow dynamic
19338 termination strings. Try harder to avoid second try-completion.
19339 (completion-in-region-mode-map): Disable bindings that don't work yet.
19340
19341 * comint.el: Use lexical-binding. Require CL.
19342 (comint-dynamic-complete-functions): Use comint-filename-completion.
19343 (comint-completion-addsuffix): Tweak custom type.
19344 (comint-filename-completion, comint--common-suffix)
19345 (comint--common-quoted-suffix, comint--table-subvert)
19346 (comint--complete-file-name-data): New functions.
19347 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
19348 (comint-dynamic-list-filename-completions): Use them.
19349 (comint-dynamic-simple-complete): Make obsolete.
19350
19351 * minibuffer.el (completion-in-region-mode):
19352 Keep completion-in-region-mode--predicate global.
19353 (completion-in-region--postch):
19354 Assume completion-in-region-mode--predicate is not null.
19355
19356 * progmodes/flymake.el (flymake-start-syntax-check-process):
19357 Obey `dir'. Simplify.
19358
19359 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
19360 we're in VC after all.
19361
19362 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
19363
19364 * vc/vc.el (vc-diff-build-argument-list-internal)
19365 (vc-version-ediff, vc-ediff): New commands.
19366 (vc-version-diff): Use vc-diff-build-argument-list-internal.
19367
19368 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
19369
19370 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
19371 add sanity check.
19372
19373 * obsolete/erc-hecomplete.el: Make obsolete.
19374 * obsolete/: Standardize obsolescence info in the header.
19375
19376 2011-04-20 Glenn Morris <rgm@gnu.org>
19377
19378 * calendar/solar.el (solar-horizontal-coordinates):
19379 Use the longitude argument rather than `calendar-longitude'.
19380 (solar-date-next-longitude): Remove unused locals.
19381
19382 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19383
19384 * whitespace.el: New version 13.2.1.
19385
19386 2011-04-20 felix <EmacsWiki> (tiny change)
19387
19388 * whitespace.el (global-whitespace-mode): Keep highlight when
19389 switching between major modes on a file.
19390
19391 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
19392
19393 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
19394 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
19395 multi-line comments as well.
19396
19397 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
19398
19399 Lexical-binding cleanup.
19400
19401 * arc-mode.el (archive-mode-revert):
19402 * cmuscheme.el (scheme-interactively-start-process):
19403 * custom.el (custom-initialize-delay):
19404 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
19405 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
19406 * emacs-lock.el (emacs-lock-clear-sentinel):
19407 * ezimage.el (defezimage):
19408 * follow.el (follow-avoid-tail-recenter):
19409 * fringe.el (set-fringe-mode-1):
19410 * generic-x.el (bat-generic-mode-compile):
19411 * help-mode.el (help-info-variable, help-do-xref)
19412 (help-mode-revert-buffer):
19413 * help.el (view-emacs-todo):
19414 * iswitchb.el (iswitchb-completion-help):
19415 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
19416 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
19417 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
19418 * locate.el (locate-update):
19419 * longlines.el (longlines-encode-region)
19420 (longlines-after-change-function):
19421 * outline.el (outline-isearch-open-invisible):
19422 * ps-def.el (declare-function, charset-dimension, char-width)
19423 (encode-char):
19424 * ps-mule.el (ps-mule-plot-string):
19425 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
19426 (recentf-edit-list-select, recentf-edit-list-validate)
19427 (recentf-open-files-action):
19428 * rect.el (delete-whitespace-rectangle-line)
19429 (rectangle-number-line-callback):
19430 * register.el (window-configuration-to-register)
19431 (frame-configuration-to-register):
19432 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
19433 * select.el (xselect-convert-to-string, xselect-convert-to-length)
19434 (xselect-convert-to-targets, xselect-convert-to-delete)
19435 (xselect-convert-to-filename, xselect-convert-to-charpos)
19436 (xselect-convert-to-lineno, xselect-convert-to-colno)
19437 (xselect-convert-to-os, xselect-convert-to-host)
19438 (xselect-convert-to-user, xselect-convert-to-class)
19439 (xselect-convert-to-name, xselect-convert-to-integer)
19440 (xselect-convert-to-atom, xselect-convert-to-identity):
19441 * subr.el (declare, ignore, process-kill-without-query)
19442 (text-clone-maintain):
19443 * terminal.el (te-get-char, te-tic-sentinel):
19444 * tool-bar.el (tool-bar-make-keymap):
19445 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
19446 * type-break.el (type-break-mode, type-break-noninteractive-query):
19447 * view.el (View-back-to-mark):
19448 * wid-browse.el (widget-browse-action, widget-browse-widget)
19449 (widget-browse-widgets, widget-browse-sexp):
19450 * widget.el (define-widget-keywords):
19451 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
19452 Mark unused parameters.
19453
19454 * align.el (align-adjust-col-for-rule): Mark unused parameter.
19455 (align-areas): Remove unused variable `look'.
19456 (align-region): Remove unused variables `real-end' and `pos-list'.
19457
19458 * apropos.el (apropos-score-doc): Remove unused variable `i'.
19459
19460 * bindings.el (mode-line-modified, mode-line-remote):
19461 Mark unused parameters.
19462 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
19463
19464 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
19465 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
19466
19467 * comint.el (comint-history-isearch-pop-state)
19468 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
19469 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
19470 (comint-substitute-in-file-name): Doc fix.
19471
19472 * completion.el (cmpl-statistics-block): Mark unused parameter.
19473 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
19474 (save-completions-to-file, load-completions-from-file):
19475 Remove unused local variable `e'.
19476
19477 * composite.el (compose-chars): Remove unused variable `len'.
19478 (lgstring-insert-glyph): Remove unused variable `g'.
19479 (compose-glyph-string): Remove unused variables `ascent',
19480 `descent', `lbearing' and `rbearing'.
19481 (compose-glyph-string-relative): Remove unused variables
19482 `lbearing', `rbearing' and `wadjust'.
19483 (compose-gstring-for-graphic): Remove unused variables `header',
19484 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
19485 (compose-gstring-for-terminal): Remove unused variables `header'
19486 and `nchars'. Use `let', not `let*'.
19487
19488 * cus-edit.el (Custom-set, Custom-save, custom-reset)
19489 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
19490 (Custom-buffer-done, custom-buffer-create-internal)
19491 (custom-browse-visibility-action, custom-browse-group-tag-action)
19492 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
19493 (widget-magic-mouse-down-action, custom-toggle-parent)
19494 (custom-add-parent-links, custom-toggle-hide-variable)
19495 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
19496 (custom-toggle-hide-face, face, hook, custom-group-link-action)
19497 (custom-face-menu-create, custom-variable-menu-create, get)
19498 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
19499 (custom-reset-standard-save-and-update): Remove unused variable `value'.
19500 (customize-apropos): Remove unused variable `tests'.
19501 (custom-group-value-create): Remove unused variable `hidden-p'.
19502 (sort-fold-case): Declare.
19503
19504 * cus-theme.el (custom-reset-standard-faces-list)
19505 (custom-reset-standard-variables-list): Declare.
19506 (customize-create-theme, custom-theme-revert, custom-theme-write)
19507 (custom-theme-choose-mode, customize-themes, custom-theme-save):
19508 Mark unused parameters.
19509
19510 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
19511
19512 * delim-col.el (delimit-columns-max): Move defvar before first use.
19513
19514 * descr-text.el (describe-char-categories): Don't quote `lambda'.
19515 (describe-char): Don't quote `lambda'. Mark unused parameter.
19516
19517 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
19518 (auto-insert): Declare.
19519 (desktop-restore-file-buffer): Rename desktop-* parameters;
19520 mark unused ones.
19521 (desktop-create-buffer): Rename desktop-* parameters and bind them.
19522 (desktop-buffer): Rename desktop-* parameters.
19523
19524 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
19525 (dframe-reposition-frame-xemacs, dframe-help-echo)
19526 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
19527 Mark unused parameters.
19528
19529 * dired-aux.el (backup-extract-version-start, overwrite-query)
19530 (overwrite-backup-query, rename-regexp-query)
19531 (rename-non-directory-query): Declare.
19532 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
19533 (dired-add-entry): Remove unused variable `orig-file-name'.
19534 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
19535 Use parameter PRESERVE-TIME instead of accessing dynamic variable
19536 `dired-copy-preserve-time' directly.
19537 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
19538 (dired-insert-subdir-newpos): Rename unused variable `pos'.
19539
19540 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
19541 (dired-virtual-revert, dired-make-relative-symlink):
19542 Mark unused parameters.
19543 (manual-program): Declare.
19544 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
19545 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
19546 wrapped in `with-no-warnings' to avoid replacing one warning by another.
19547
19548 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
19549
19550 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
19551
19552 * echistory.el (electric-history-in-progress, Helper-return-blurb):
19553 Declare.
19554
19555 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
19556
19557 * electric.el (Electric-command-loop): Rename parameter
19558 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
19559
19560 * expand.el (expand-in-literal): Remove unused variable `here'.
19561
19562 * facemenu.el (facemenu-add-new-color):
19563 Remove unused variable `docstring'.
19564
19565 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
19566 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
19567 (face-attr-construct): Mark unused parameter. Doc fix.
19568 (read-color): Remove unused variable `hex-string'.
19569
19570 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
19571 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
19572 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
19573 (display-buffer-other-frame): Remove unused variable `old-window'.
19574 (kill-buffer-hook): Declare.
19575 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
19576 Mark unused parameters.
19577 (after-find-file): Pass 1 to `auto-save-mode', not t.
19578
19579 * files-x.el (auto-insert): Declare.
19580 (modify-file-local-variable-prop-line): Remove unused variable `val'.
19581
19582 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
19583 variable `buf'. Mark unused parameter.
19584 (find-lisp-insert-directory): Mark unused parameter.
19585
19586 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
19587 (format-encode-region): Remove unused variables `cur-buf' and `result'.
19588 (format-common-tail): Remove, unused.
19589 (format-deannotate-region): Remove unused variable `loc'.
19590 (format-annotate-region): Remove unused variable `p'.
19591 (format-annotate-single-property-change): Remove unused variables
19592 `default' and `tail'.
19593
19594 * forms.el (read-file-filter): Declare.
19595 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
19596
19597 * frame.el (frame-creation-function-alist): Mark unused parameter.
19598 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
19599
19600 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
19601 Remove unused parameters.
19602 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
19603 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
19604
19605 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
19606 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
19607 (hfy-prepare-tag-map): Mark unused parameters.
19608 (htmlfontify-buffer): Use `called-interactively-p'.
19609
19610 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
19611 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
19612 (ibuffer-do-occur): Mark unused parameters.
19613 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
19614 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
19615
19616 * ibuffer.el: Don't quote `lambda'.
19617 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
19618 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
19619 Mark unused parameters.
19620
19621 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
19622 (ido-completing-read): Mark unused parameters.
19623 (ido-copy-current-word): Mark unused parameters;
19624 remove unused variable `name'.
19625 (ido-sort-merged-list): Remove unused parameter `dirs'.
19626
19627 * ielm.el (ielm-input-sender): Mark unused parameter.
19628 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
19629 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
19630 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
19631 `ielm-string' as a dynamic variable accessible from the IELM prompt.
19632 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
19633
19634 * image-dired.el (image-dired-display-thumbs): Remove unused
19635 variables `curr-file' and `count'.
19636 (image-dired-remove-tag): Remove unused variable `start'.
19637 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
19638 variable `curr-file'
19639 (image-dired-rotate-original): Remove unused variable `temp-file'.
19640 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
19641 Remove unused variable `file'.
19642 (image-dired-gallery-generate): Remove unused variable `curr'.
19643 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
19644
19645 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
19646
19647 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
19648
19649 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
19650
19651 * isearch.el (minibuffer-history-symbol): Declare.
19652 (isearch-edit-string): Remove unused variable `err'.
19653 (isearch-message-prefix, isearch-message-suffix):
19654 Mark unused parameters.
19655
19656 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
19657
19658 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
19659
19660 * makesum.el (double-column): Remove unused variable `cnt'.
19661
19662 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
19663 (ido-ignore-item-temp-list): Declare.
19664
19665 * mouse-drag.el (mouse-drag-throw): Remove unused variables
19666 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
19667 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
19668 (mouse-drag-drag): Remove unused variables `mouse-delta' and
19669 `mouse-col-delta'.
19670
19671 * mouse-sel.el (mouse-extend-internal):
19672 Remove unused variable `orig-window-frame'.
19673
19674 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
19675 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
19676 Move declarations before first use.
19677 (pcomplete-opt): Mark unused parameters; doc fix.
19678
19679 * proced.el (proced-revert): Mark unused parameter.
19680 (proced-send-signal): Remove unused variable `err'.
19681
19682 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
19683 Rename parameter PREFIX-ARG to ARG.
19684 (ps-basic-plot-string, ps-basic-plot-whitespace):
19685 Mark unused parameters.
19686
19687 * replace.el (replace-count): Define.
19688 (occur-revert-function): Mark unused parameters.
19689 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
19690 (isearch-case-fold-search, isearch-string): Declare.
19691 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
19692 bind `case-fold-search'. Remove unused variables `beg' and `end',
19693 and simplify.
19694 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
19695 COUNT and bind `replace-count'.
19696 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
19697 to COUNT.
19698
19699 * savehist.el (print-readably, print-string-length): Declare.
19700
19701 * shadowfile.el (shadow-expand-cluster-in-file-name):
19702 Remove unused variable `cluster'.
19703 (shadow-copy-file): Remove unused variable `i'.
19704 (shadow-noquery, shadow-clusters, shadow-site-cluster)
19705 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
19706 (shadow-define-literal-group, shadow-define-regexp-group)
19707 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
19708
19709 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
19710 (shell): Use `called-interactively-p'.
19711 (shell-directory-tracker): Remove unused variable `chdir-failure'.
19712
19713 * simple.el (compilation-context-lines, comint-file-name-quote-list)
19714 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
19715 (delete-backward-char): Remove unused variable `ocol'.
19716 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
19717 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
19718 (event-apply-hyper-modifier, event-apply-shift-modifier)
19719 (event-apply-control-modifier, event-apply-meta-modifier):
19720 Mark unused parameters.
19721 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
19722 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
19723
19724 * speedbar.el (speedbar-ignored-directory-expressions)
19725 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
19726 (speedbar-find-file, speedbar-dir-follow)
19727 (speedbar-directory-buttons-follow, speedbar-tag-find)
19728 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
19729 (speedbar-buffers-line-directory, speedbar-buffer-click):
19730 Mark unused parameters.
19731 (speedbar-tag-file): Remove unused variable `mode'.
19732 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
19733
19734 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
19735
19736 * talk.el (talk): Remove unused variable `display'.
19737
19738 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
19739 (tar-write-region-annotate): Mark unused parameter.
19740
19741 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
19742 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
19743 Declare them, wrapped in `with-no-warnings' to avoid replacing one
19744 warning by another.
19745
19746 * time-stamp.el (time-stamp-string-preprocess):
19747 Remove unused variable `require-padding'.
19748
19749 * tree-widget.el (widget-glyph-enable): Declare.
19750 (tree-widget-action): Mark unused parameter.
19751
19752 * w32-fns.el (x-get-selection): Mark unused parameter.
19753 (autoload-make-program, generated-autoload-file): Declare.
19754
19755 * wdired.el (wdired-revert): Mark unused parameters.
19756 (wdired-xcase-word): Remove unused variable `err'.
19757
19758 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
19759 (whitespace-help-scroll): Remove unused variable `data-help'.
19760
19761 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
19762 (widget-image-insert, widget-after-change, default)
19763 (widget-default-format-handler, widget-default-notify)
19764 (widget-default-prompt-value, widget-info-link-action)
19765 (widget-url-link-action, widget-function-link-action)
19766 (widget-variable-link-action, widget-file-link-action)
19767 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
19768 (widget-field-prompt-internal, widget-field-action, widget-field-match)
19769 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
19770 (widget-insert-button-action, widget-delete-button-action, visibility)
19771 (widget-documentation-link-action, widget-documentation-string-action)
19772 (widget-const-prompt-value, widget-regexp-match, symbol)
19773 (widget-coding-system-prompt-value)
19774 (widget-key-sequence-value-to-external, sexp)
19775 (widget-sexp-value-to-internal, character, vector, cons)
19776 (widget-choice-prompt-value, widget-boolean-prompt-value)
19777 (widget-color--choose-action): Mark unused parameters.
19778 (widget-item-match-inline, widget-choice-match-inline)
19779 (widget-checklist-match, widget-checklist-match-inline)
19780 (widget-group-match): Rename parameter VALUES to VALS.
19781 (widget-field-value-set): Remove unused variable `size'.
19782 (widget-color-action): Remove unused variables `value' and `start'.
19783
19784 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
19785 variable `dir'. Doc fix.
19786 (windmove-find-other-window): Don't pass it.
19787
19788 * window.el (count-windows): Mark unused parameter.
19789 (bw-adjust-window): Remove unused variable `err'.
19790
19791 * woman.el (woman-file-name): Remove unused variable `default'.
19792 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
19793 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
19794 (global-font-lock-mode): Declare.
19795 (woman-decode-region): Mark unused parameter.
19796 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
19797
19798 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
19799 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
19800 (x-dnd-handle-moz-url): Remove unused variable `title'.
19801 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
19802
19803 * xml.el (xml-parse-tag, xml-parse-attlist):
19804 Remove unused variable `pos'.
19805
19806 2011-04-19 Glenn Morris <rgm@gnu.org>
19807
19808 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
19809 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
19810 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
19811 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
19812 * calendar/cal-html.el (cal-html-insert-minical):
19813 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
19814 (calendar-mark-date-pattern):
19815 Prefix "unused" locals.
19816
19817 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
19818 optional argument `style'.
19819
19820 * calendar/appt.el (appt-make-list):
19821 * calendar/cal-china.el (calendar-chinese-date-string):
19822 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
19823 (diary-hebrew-yahrzeit):
19824 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
19825 * calendar/calendar.el (calendar-generate-window):
19826 * calendar/time-date.el (time-to-days):
19827 Remove unused local variables.
19828
19829 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
19830
19831 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
19832 glyphless-char-display table.
19833 (tabulated-list-glyphless-char-display): New var.
19834
19835 2011-04-18 Sam Steingold <sds@gnu.org>
19836
19837 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
19838 to acknowledgments.
19839
19840 2011-04-17 Glenn Morris <rgm@gnu.org>
19841
19842 * calendar/diary-lib.el (diary-sexp-entry):
19843 * calendar/holidays.el (holiday-sexp):
19844 Set debug-on-error rather than the removed stack-trace-on-error.
19845
19846 2011-04-16 Glenn Morris <rgm@gnu.org>
19847
19848 * progmodes/f90.el: Use lexical-binding.
19849 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
19850
19851 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
19852
19853 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
19854 (mail-mode): Setup mailalias completion here instead.
19855 * mail/mailalias.el: Use lexical-binding.
19856 (pattern, mailalias-done): Declare dynamic.
19857 (mail-completion-at-point-function): New function, from mail-complete.
19858 (mail-complete): Use it.
19859 (mail-completion-expand): New function.
19860 (mail-get-names): Use it.
19861 (mail-directory, mail-directory-process, mail-directory-stream):
19862 Don't use `pattern' for lexically bound arg.
19863
19864 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
19865
19866 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
19867 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
19868 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
19869
19870 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
19871 (byte-save-window-excursion, byte-temp-output-buffer-setup)
19872 (byte-interactive-p): Define them again, for use when inlining
19873 old code.
19874
19875 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
19876
19877 * loadup.el: Use `string-to-number', not `string-to-int'.
19878
19879 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
19880
19881 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
19882 gud-gdb-complete-command.
19883 (gud-gdb-completions): New function, from gud-gdb-complete-command.
19884 (gud-gdb-completion-at-point): New function.
19885 (gud-gdb-completions): Remove.
19886
19887 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
19888
19889 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
19890 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
19891 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
19892 whether `executable-find' is bound.
19893
19894 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
19895
19896 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
19897
19898 * minibuffer.el (completion-in-region-mode-predicate)
19899 (completion-in-region-mode--predicate): New vars.
19900 (completion-in-region, completion-in-region--postch)
19901 (completion-in-region-mode): Use them.
19902 (completion--capf-wrapper): Also return the hook function.
19903 (completion-at-point, completion-help-at-point):
19904 Adjust and provide a predicate.
19905
19906 Preserve arg names for advice of subr and lexical functions (bug#8457).
19907 * help-fns.el (help-function-arglist): Consolidate the subr and
19908 new-byte-code cases. Add argument `preserve-names' to extract names
19909 from the docstring when needed.
19910 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
19911 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
19912 (ad-arglist): Use help-function-arglist's new arg.
19913 (ad-definition-type): Use cond.
19914
19915 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
19916
19917 * autorevert.el (auto-revert-handler):
19918 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
19919 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
19920 Don't quote lambda.
19921
19922 * image-mode.el (image-transform-set-scale):
19923 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
19924
19925 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
19926
19927 * net/network-stream.el (network-stream-open-starttls): Only do
19928 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
19929 Upgrades via gnutls-cli are too slow to be done opportunistically.
19930
19931 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
19932
19933 * dframe.el (dframe-current-frame): Remove spurious quote.
19934
19935 2011-04-12 Glenn Morris <rgm@gnu.org>
19936
19937 * calendar/cal-tex.el (cal-tex-end-document):
19938 Try to automatically use latin1 input if needed.
19939
19940 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
19941 Don't try to cons a mark onto an empty element.
19942
19943 2011-04-11 Leo Liu <sdl.web@gmail.com>
19944
19945 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
19946 buffers.
19947 (ido-kill-buffer-at-head): Support killing virtual buffers.
19948
19949 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
19950
19951 * minibuffer.el (completion-show-inline-help): New var.
19952 (completion--do-completion, minibuffer-complete)
19953 (minibuffer-force-complete, minibuffer-complete-word):
19954 Inhibit minibuffer messages if completion-show-inline-help is nil.
19955
19956 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
19957 to avoid interference from inline help (Bug#5849).
19958
19959 2011-04-10 Leo Liu <sdl.web@gmail.com>
19960
19961 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
19962 Fix typo.
19963
19964 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
19965
19966 * image-mode.el (image-toggle-display-image): Signal an error if
19967 not in Image mode.
19968 (image-transform-mode, image-transform-resize)
19969 (image-transform-set-rotation): Doc fix.
19970 (image-transform-set-resize): Delete.
19971 (image-transform-set-scale, image-transform-fit-to-height)
19972 (image-transform-fit-to-width): Handle image-toggle-display-image
19973 and image-transform-resize directly.
19974
19975 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
19976
19977 * doc-view.el (doc-view-fit-width-to-window)
19978 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
19979 New functions for fitting the shown image to the Emacs window size.
19980 (doc-view-mode-map): Add bindings for the new functions.
19981
19982 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
19983
19984 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
19985 Fix typo in docstring.
19986
19987 2011-04-08 Eli Zaretskii <eliz@gnu.org>
19988
19989 * files.el (file-size-human-readable): Produce one digit after
19990 decimal, like "ls -lh" does.
19991
19992 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
19993 the file size representation.
19994
19995 * simple.el (list-processes): If async subprocesses are not
19996 available, error out with a clear error message.
19997
19998 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
19999
20000 * help.el (help-form-show): New function, to be called from C.
20001 Put help-form output in a buffer named differently than *Help*.
20002
20003 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20004
20005 * files.el (file-size-human-readable): New function.
20006
20007 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
20008 computing the representation inline. Don't require `cl'.
20009
20010 2011-04-08 Glenn Morris <rgm@gnu.org>
20011
20012 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
20013
20014 * net/browse-url.el (browse-url-firefox):
20015 Test system-type, not system-configuration.
20016
20017 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
20018 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
20019 Use log-edit-empty-buffer-p. (Bug#7598)
20020
20021 * net/rlogin.el (rlogin-process-connection-type): Simplify.
20022 (rlogin-mode-map): Initialize in the defvar.
20023 (rlogin): Use ignore-errors.
20024
20025 * replace.el (occur-mode-map): Some fixes for menu items.
20026
20027 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
20028
20029 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
20030
20031 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20032
20033 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
20034 issuing unused warnings.
20035
20036 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
20037 macro directly.
20038
20039 * simple.el: Lisp reimplement of list-processes. Based on an
20040 earlier reimplementation by Leo Liu, but using tabulated-list.el.
20041 (process-menu-mode): New major mode.
20042 (list-processes--refresh, list-processes):
20043 (process-menu-visit-buffer): New functions.
20044
20045 * files.el (save-buffers-kill-emacs): Don't assume any return
20046 value of list-processes, which is undocumented anyway.
20047
20048 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20049
20050 * emacs-lisp/tabulated-list.el: New file.
20051
20052 * emacs-lisp/package.el: Use Tabulated List mode.
20053 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
20054 (package-menu-mode): Derive from tabulated-list-mode. Set up the
20055 table format using Tabulated List mode variables.
20056 (package--push): New macro, replacing package-list-maybe-add.
20057 (package-menu--generate): Use package--push. Renamed from
20058 package--generate-package-list.
20059 (package-menu-refresh, list-packages): Use it.
20060 (package-menu--print-info): Rename from package-print-package.
20061 Return insertion data instead of inserting it directly.
20062 (package-menu-describe-package, package-menu-execute):
20063 Use tabulated-list-get-id.
20064 (package-menu-mark-delete, package-menu-mark-install)
20065 (package-menu-mark-unmark, package-menu-backup-unmark)
20066 (package-menu-mark-obsolete-for-deletion):
20067 Use tabulated-list-put-tag.
20068 (package--list-packages, package-menu-revert)
20069 (package-menu-get-package, package-menu-get-version)
20070 (package-menu-sort-by-column): Functions deleted.
20071 (package-menu-package-list, package-menu-sort-key): Vars deleted.
20072 (package-menu--status-predicate, package-menu--version-predicate)
20073 (package-menu--name-predicate)
20074 (package-menu--description-predicate): Handle arguments in the
20075 Tabulated List format.
20076 (package-list-packages-no-fetch): Call list-packages.
20077
20078 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
20079
20080 * files.el (after-find-file-from-revert-buffer): Remove variable.
20081 (after-find-file): Don't bind it.
20082 (revert-buffer-in-progress-p): New variable.
20083 (revert-buffer): Bind it.
20084 Pass nil for `after-find-file-from-revert-buffer'.
20085
20086 * saveplace.el (save-place-find-file-hook): Use new variable
20087 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
20088
20089 2011-04-06 Glenn Morris <rgm@gnu.org>
20090
20091 * Makefile.in (AUTOGEN_VCS): New variable.
20092 (autoloads): Use $AUTOGEN_VCS.
20093
20094 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
20095 * calendar/calendar.el (calendar-mode-map):
20096 Check for toolkit scroll bars. (Bug#8305)
20097
20098 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20099
20100 * minibuffer.el (completion-in-region--postch)
20101 (completion-in-region-mode): Remove unnecessary messages.
20102
20103 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
20104
20105 * font-lock.el (font-lock-refresh-defaults):
20106 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
20107 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
20108
20109 * info.el (Info-directory-list, Info-read-node-name-2)
20110 (Info-split-parameter-string): Doc fixes.
20111 (Info-virtual-nodes): Reflow docstring.
20112 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
20113 (Info-apropos-toc-nodes, info-finder, Info-get-token)
20114 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
20115 Fix typos in docstrings.
20116 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
20117 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
20118 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
20119 (Info-restore-desktop-buffer): Mark unused parameters.
20120 (Info-directory-find-file, Info-directory-find-node)
20121 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
20122 (Info-virtual-index-find-node, Info-apropos-find-file)
20123 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
20124 Mark unused parameters; fix typos in docstrings.
20125 (Info-virtual-index): Remove unused local variable `nodename'.
20126
20127 2011-04-05 Deniz Dogan <deniz@dogan.se>
20128
20129 * net/rcirc.el: Update my e-mail address.
20130 (rcirc-mode-map): Remove M-o binding.
20131
20132 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20133
20134 * startup.el (command-line): Save the cursor's theme-face
20135 directly, instead of using face-override-spec.
20136
20137 * custom.el (load-theme): Minor optimization in assigning faces.
20138
20139 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20140
20141 * help-fns.el (describe-variable): Complete all variables having
20142 documentation, including keywords.
20143 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
20144
20145 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20146
20147 Convert to lexical-binding.
20148
20149 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
20150 (bs--get-marked-string, bs--get-modified-string)
20151 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
20152 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
20153 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
20154
20155 * ehelp.el (electric-help-execute-extended)
20156 (electric-help-ctrl-x-prefix):
20157 * hexl.el (hexl-revert-buffer-function):
20158 * linum.el (linum-after-change, linum-after-scroll):
20159 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
20160
20161 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
20162
20163 2011-04-04 Daiki Ueno <ueno@unixuser.org>
20164
20165 * epa-dired.el:
20166 * epa-mail.el:
20167 * epa-hook.el:
20168 * epa-file.el:
20169 * epa.el:
20170 * epg.el: Use lexical binding.
20171
20172 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
20173
20174 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
20175
20176 * textmodes/flyspell.el (flyspell-word): Recognize default
20177 dictionary case for flyspell-mark-duplications-exceptions.
20178 Use regexp matching for languages.
20179 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
20180 default dictionary (Bug#7926).
20181
20182 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
20183
20184 * emacs-lisp/package.el (package--with-work-buffer):
20185 Recognize https URLs.
20186
20187 * net/network-stream.el: Move from gnus/proto-stream.el.
20188 Change prefix to network-stream throughout.
20189 (open-protocol-stream): Merge into open-network-stream, leaving
20190 open-protocol-stream as an alias. Handle nil BUFFER args.
20191
20192 * subr.el (open-network-stream): Move to net/network-stream.el.
20193
20194 2011-04-02 Glenn Morris <rgm@gnu.org>
20195
20196 * find-dired.el (find-exec-terminator): New option.
20197 (find-ls-option): Test for -ls support.
20198 (find-ls-subdir-switches): Test for -b in find-ls-option.
20199 (find-dired, find-grep-dired): Doc fixes.
20200 (find-dired): Use find-exec-terminator.
20201
20202 * find-dired.el (find-ls-option, find-ls-subdir-switches)
20203 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
20204 (find-name-arg): Remove purecopy.
20205
20206 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
20207 (grep-compute-defaults): Check for `-exec COMMAND +' support.
20208 Set grep-find-use-xargs, grep-find-command, and grep-find-template
20209 accordingly. Don't add the null-device if not needed.
20210
20211 * files.el (save-some-buffers): Doc fix.
20212
20213 2011-04-02 Eli Zaretskii <eliz@gnu.org>
20214
20215 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
20216
20217 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
20218
20219 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
20220 Use `dolist' rather than `mapcar'.
20221
20222 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
20223
20224 Add lexical binding.
20225
20226 * subr.el (apply-partially): Use new closures rather than CL.
20227 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
20228 (dolist, dotimes): Use slightly different expansion for lexical code.
20229 (functionp): Move to C.
20230 (letrec): New macro.
20231 (with-wrapper-hook): Use it and apply-partially instead of CL.
20232 (eval-after-load): Preserve lexical-binding.
20233 (save-window-excursion, with-output-to-temp-buffer): Turn them
20234 into macros.
20235
20236 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
20237
20238 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
20239 than the arglist.
20240 (help-add-fundoc-usage): Don't add `Not documented'.
20241 (help-function-arglist): Handle closures, subroutines, and new
20242 byte-code-functions.
20243 (help-make-usage): Remove leading underscores.
20244 (describe-function-1): Handle closures.
20245 (describe-variable): Use special-variable-p for completion.
20246
20247 * files.el (lexical-binding): Declare safe.
20248
20249 * emacs-lisp/pcase.el: Don't use destructuring-bind.
20250 (pcase--memoize): Rename from pcase-memoize. Change weakness.
20251 (pcase): Add `let' pattern.
20252 Change memoization so it actually works.
20253 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
20254 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
20255 <let>: New case.
20256
20257 * emacs-lisp/macroexp.el: Use lexical binding.
20258 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
20259 Don't convert ' to #' without checking that it's indeed quoting
20260 a lambda.
20261
20262 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
20263 Use eval-sexp-add-defvars.
20264 (eval-sexp-add-defvars): New fun.
20265
20266 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
20267
20268 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
20269 Don't autoload.
20270 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
20271 than the internal `byte-compile-lambda'.
20272 (defmethod): Don't hide code under quotes.
20273 (eieio-defmethod): New `code' argument.
20274
20275 * emacs-lisp/eieio-comp.el: Remove.
20276
20277 * emacs-lisp/edebug.el (edebug-eval-defun)
20278 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
20279 (edebug-toggle): Avoid `eval'.
20280
20281 * emacs-lisp/disass.el (disassemble-internal): Handle new
20282 `closure' objects.
20283 (disassemble-1): Handle new byte codes.
20284
20285 * emacs-lisp/cl.el (pushnew): Silence warning.
20286
20287 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
20288 (cl-byte-compile-throw): Remove.
20289 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
20290
20291 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
20292 closures.
20293
20294 * emacs-lisp/cconv.el: New file.
20295
20296 * emacs-lisp/bytecomp.el: Use lexical binding instead of
20297 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
20298 (byte-compile-initial-macro-environment):
20299 Handle declare-function here.
20300 (byte-compile--lexical-environment): New var.
20301 (byte-stack-ref, byte-stack-set, byte-discardN)
20302 (byte-discardN-preserve-tos): New lap codes.
20303 (byte-interactive-p): Don't use any more.
20304 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
20305 New macros.
20306 (byte-compile-lapcode): Use them and handle new lap codes.
20307 (byte-compile-obsolete): Remove.
20308 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
20309 (byte-compile-arglist-warn): Check late def of inlinable funs.
20310 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
20311 since they should have been expanded by now.
20312 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
20313 (byte-compile-from-buffer): Remove unused second arg.
20314 (byte-compile-preprocess): New function.
20315 (byte-compile-toplevel-file-form): New function to distinguish
20316 file-form calls from outside from file-form calls from hunk-handlers.
20317 (byte-compile-file-form): Simplify.
20318 (byte-compile-file-form-defsubst): Remove.
20319 (byte-compile-file-form-defmumble): Simplify now that
20320 byte-compile-lambda always returns a byte-code-function.
20321 (byte-compile): Preprocess.
20322 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
20323 Remove, not used any more.
20324 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
20325 (byte-compile-make-args-desc): New funs.
20326 (byte-compile-lambda): Handle lexical functions. Always return
20327 a byte-code-function.
20328 (byte-compile-reserved-constants): New var, to make up room for
20329 closed-over variables.
20330 (byte-compile-constants-vector): Obey it.
20331 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
20332 (byte-compile-macroexpand-declare-function): New function.
20333 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
20334 byte-code-functions.
20335 (byte-compile-form): Check obsolescence here.
20336 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
20337 (byte-compile-variable-ref): Remove.
20338 (byte-compile-dynamic-variable-op): New fun.
20339 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
20340 (byte-compile-variable-set): New funs.
20341 (byte-compile-discard): Add 2 args.
20342 (byte-compile-stack-ref, byte-compile-stack-set)
20343 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
20344 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
20345 macroexpand-all instead.
20346 (byte-compile-quote-form): Remove.
20347 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
20348 (byte-compile-bind, byte-compile-unbind): New funs.
20349 (byte-compile-let): Handle let* and lexical binding.
20350 (byte-compile-let*): Remove.
20351 (byte-compile-catch, byte-compile-unwind-protect)
20352 (byte-compile-track-mouse, byte-compile-condition-case):
20353 Handle a new :fun-body form, used for lexical scoping.
20354 (byte-compile-save-window-excursion)
20355 (byte-compile-with-output-to-temp-buffer): Remove.
20356 (byte-compile-defun): Simplify.
20357 (byte-compile-stack-adjustment): New fun.
20358 (byte-compile-out): Use it.
20359 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
20360
20361 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
20362 handler any more.
20363
20364 * emacs-lisp/byte-opt.el: Use lexical binding.
20365 (byte-inline-lapcode): Remove (to bytecomp).
20366 (byte-compile-inline-expand): Pay attention to inlining to/from
20367 lexically bound code.
20368 (byte-compile-unfold-lambda): Don't handle byte-code-functions
20369 any more.
20370 (byte-optimize-form-code-walker): Don't handle save-window-excursion
20371 any more and don't call compiler-macros.
20372 (byte-compile-splice-in-already-compiled-code): Remove.
20373 (byte-code): Don't inline any more.
20374 (disassemble-offset): Receive `bytes' as argument rather than via
20375 dynamic scoping.
20376 (byte-compile-tag-number): Declare before first use.
20377 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
20378 `return' even if make-spliceable.
20379 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
20380 obsolete interactive-p.
20381 (byte-optimize-lapcode): Optimize new lap-codes.
20382 Don't trip up on new form of `byte-constant' lap code.
20383
20384 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
20385
20386 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
20387
20388 * custom.el (custom-initialize-default, custom-declare-variable):
20389 Use `defvar'.
20390
20391 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
20392 New variables.
20393 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
20394 (COMPILE_FIRST): Add macroexp and cconv.
20395 * makefile.w32-in: Mirror changes in Makefile.in.
20396
20397 * vc/cvs-status.el:
20398 * vc/diff-mode.el:
20399 * vc/log-edit.el:
20400 * vc/log-view.el:
20401 * vc/smerge-mode.el:
20402 * textmodes/bibtex-style.el:
20403 * textmodes/css-mode.el:
20404 * startup.el:
20405 * uniquify.el:
20406 * minibuffer.el:
20407 * newcomment.el:
20408 * reveal.el:
20409 * server.el:
20410 * mpc.el:
20411 * emacs-lisp/smie.el:
20412 * doc-view.el:
20413 * dired.el:
20414 * abbrev.el: Use lexical binding.
20415
20416 2011-04-01 Eli Zaretskii <eliz@gnu.org>
20417
20418 * info.el (info-display-manual): New function.
20419
20420 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
20421
20422 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
20423
20424 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
20425
20426 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
20427 an entry for that server in rcirc-authinfo. (Bug#8385)
20428
20429 2011-03-31 Glenn Morris <rgm@gnu.org>
20430
20431 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
20432
20433 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
20434
20435 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
20436
20437 * progmodes/python.el (python-default-interpreter)
20438 (python-python-command-args, python-jython-command-args)
20439 (python-which-shell, python-which-args, python-which-bufname)
20440 (python-file-queue, python-comint-output-filter-function)
20441 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
20442 variables and functions.
20443
20444 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
20445
20446 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
20447 (completion-in-region-mode): New minor mode.
20448 (completion-in-region): Use it.
20449 (completion-in-region--data, completion-in-region-mode-map): New vars.
20450 (completion-in-region--postch): New function.
20451 (completion--capf-misbehave-funs, completion--capf-safe-funs):
20452 New vars.
20453 (completion--capf-wrapper): New function.
20454 (completion-at-point): Use it to track well-behavedness of
20455 hook functions.
20456 (completion-help-at-point): New command.
20457
20458 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
20459
20460 * vc/add-log.el (add-change-log-entry): Don't use whitespace
20461 syntax class to search for whitespace on a single line
20462 (Message-ID: <4D938140.4030905@redhat.com>).
20463
20464 2011-03-30 Leo Liu <sdl.web@gmail.com>
20465
20466 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
20467 New commands.
20468 (edit-abbrevs-map): Bind them here.
20469 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
20470
20471 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
20472
20473 * allout.el (allout-hide-by-annotation, allout-flag-region):
20474 Reduce possibility of overlay leakage by making them volatile.
20475
20476 * allout-widgets.el (allout-widgets-tally): Define as nil so the
20477 hash is not shared between buffers. Mode initialization is
20478 responsible for giving it a useful starting value.
20479 (allout-item-span): Reduce possibility of overlay leakage by
20480 making them volatile.
20481 (allout-widgets-count-buttons-in-region): Add diagnostic function
20482 for tracking down button overlay leaks.
20483
20484 2011-03-29 Leo Liu <sdl.web@gmail.com>
20485
20486 * ido.el (ido-read-internal): Use the default history var
20487 minibuffer-history if no HISTORY is specified.
20488
20489 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
20490
20491 * net/imap.el (imap-shell-open, imap-process-connection-type):
20492 Use imap-process-connection-type for 'shell' streams as well as
20493 Kerberos, SSL, other subprocesses.
20494
20495 2011-03-28 Leo Liu <sdl.web@gmail.com>
20496
20497 * abbrev.el (abbrev-table-empty-p): New function.
20498 (prepare-abbrev-list-buffer): Place empty abbrev tables after
20499 nonempty ones. (Bug#5937)
20500
20501 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
20502
20503 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
20504
20505 2011-03-27 Leo Liu <sdl.web@gmail.com>
20506
20507 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
20508 for foreground and background colors.
20509 (ansi-color-make-color-map): Adapt.
20510
20511 2011-03-25 Leo Liu <sdl.web@gmail.com>
20512
20513 * midnight.el (midnight-time-float): Remove. Note it calculates
20514 the microsecond component incorrectly and seconds-to-time does the
20515 same job.
20516 Remove redundant (require 'timer).
20517
20518 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
20519 (ido-completions): Remove unused arguments. (Bug#8329)
20520
20521 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
20522
20523 * minibuffer.el (completion--flush-all-sorted-completions):
20524 Remove itself from hook.
20525 (completion-at-point): Let the functions perform the completion
20526 immediately and return nil or t.
20527 * comint.el (comint-dynamic-complete-functions): Now identical to
20528 completion-at-point-functions.
20529 (comint-dynamic-list-input-ring): Remove unused var `index'.
20530 (comint--match-partial-filename, comint--unquote&expand-filename):
20531 New funs, split from comint-match-partial-filename.
20532 (comint-dynamic-complete): Use completion-at-point.
20533 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
20534
20535 2011-03-24 Drew Adams <drew.adams@oracle.com>
20536
20537 * thingatpt.el: Support `defun'.
20538
20539 2011-03-23 Leo Liu <sdl.web@gmail.com>
20540
20541 * abbrevlist.el: Move to obsolete/abbrevlist.el.
20542
20543 * help-mode.el (help-mode-finish): Tweak regexp.
20544
20545 2011-03-23 Glenn Morris <rgm@gnu.org>
20546
20547 * eshell/esh-opt.el (eshell-eval-using-options):
20548 Do not bind unused local variable `eshell-option-stub'.
20549
20550 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
20551
20552 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
20553
20554 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
20555 keymap variable in `with-no-warnings' to avoid a warning when the
20556 keymap has been already `defconst'ed.
20557
20558 2011-03-22 Leo Liu <sdl.web@gmail.com>
20559
20560 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
20561 encode all chars in abbrevs; otherwise use emacs-mule or
20562 utf-8-emacs. (Bug#8308)
20563
20564 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
20565
20566 * simple.el (backward-delete-char-untabify):
20567 Avoid warning about using `delete-backward-char'.
20568
20569 * image.el (image-type-file-name-regexps): Make it variable.
20570 `imagemagick-register-types' modifies it, and the user may want
20571 to add new extensions for known image types.
20572 (imagemagick-register-types): Throw error if not using ImageMagick.
20573
20574 2011-03-22 Leo Liu <sdl.web@gmail.com>
20575
20576 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
20577 located before rcirc-prompt-end-marker.
20578 (rcirc-complete): Error if point is not after rcirc prompt.
20579 Handle the case when table is nil.
20580 (rcirc-user-authenticated): Define to fix compiler warning.
20581
20582 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
20583
20584 * custom.el (custom--inhibit-theme-enable): Make it affect only
20585 custom-theme-set-variables and custom-theme-set-faces.
20586 (provide-theme): Ignore custom--inhibit-theme-enable.
20587 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
20588 (custom-enabling-themes): Delete variable.
20589 (enable-theme): Accept only loaded themes as arguments.
20590 Ignore the special custom-enabled-themes variable.
20591 (custom-enabled-themes): Forbid themes from setting this.
20592 Eliminate use of custom-enabling-themes.
20593 (custom-push-theme): Quote "changed" custom var entry.
20594
20595 2011-03-21 Leo Liu <sdl.web@gmail.com>
20596
20597 * ido.el (ido-read-internal): Add ido-selected to history instead
20598 of user input.
20599
20600 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
20601
20602 * subr.el (deferred-action-list, deferred-action-function):
20603 Mark obsolete.
20604
20605 2011-03-21 Leo Liu <sdl.web@gmail.com>
20606
20607 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
20608 change on 2011-02-13 (bug#8309).
20609
20610 * minibuffer.el (read-file-name-function): Change default value.
20611 (read-file-name--defaults): Rename from read-file-name-defaults.
20612 (read-file-name-default): Rename from read-file-name.
20613 (read-file-name): Call read-file-name-function.
20614
20615 2011-03-21 Glenn Morris <rgm@gnu.org>
20616
20617 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
20618 Doc fixes.
20619
20620 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
20621
20622 * cus-theme.el: Add missing provide statement.
20623 (customize-create-theme): Extract theme value correctly.
20624 (custom-theme-visit-theme): Autoload.
20625 (customize-create-theme): Prompt before inserting default faces.
20626
20627 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
20628
20629 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
20630 units and musical notes.
20631
20632 2011-03-20 Leo Liu <sdl.web@gmail.com>
20633
20634 * ido.el (ido-read-internal): Use completing-read-default.
20635 (ido-completing-read): Fix compatibility with completing-read.
20636
20637 2011-03-20 Christian Ohler <ohler@gnu.org>
20638
20639 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
20640 (ert-delete-all-tests): Use `called-interactively-p' rather than
20641 `interactive-p'.
20642 (ert--make-xrefs-region): Respect END.
20643
20644 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
20645
20646 * dired-aux.el (dired-create-directory): Signal an error if the
20647 directory already exists (Bug#8246).
20648
20649 * facemenu.el (list-colors-display): Call list-faces-display
20650 inside with-help-window.
20651 (list-colors-print): Use display property to align the final
20652 column, instead of checking window-width.
20653
20654 2011-03-19 Eli Zaretskii <eliz@gnu.org>
20655
20656 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
20657 windows-nt systems.
20658 (emerge-protect-metachars): Quote correctly for ms-dos and
20659 windows-nt systems.
20660
20661 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
20662
20663 * info.el (info-initialize): Replace all uses of `:' with
20664 path-separator for compatibility with non-Unix systems.
20665 Cache quoting of path-separator. (Bug#8258)
20666
20667 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
20668
20669 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
20670 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
20671 (mouse-avoidance-mode): Fix typos in docstrings.
20672
20673 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
20674
20675 * startup.el (package-subdirectory-regexp): Move from package.el.
20676 Omit \\` and \\', and let callers add them.
20677
20678 * emacs-lisp/package.el (package-strip-version)
20679 (package-load-all-descriptors): Add \\` and \\' to
20680 package-subdirectory-regexp before using it.
20681 (package-untar-buffer): New arg DIR; ensure that file untars only
20682 into this expected directory. Remove superfluous delete-region.
20683 (package-unpack): Caller changed.
20684 (package-tar-file-info): Use package-subdirectory-regexp.
20685
20686 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
20687
20688 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
20689 diff-mode-shared-map (bug#8284).
20690 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
20691
20692 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
20693
20694 * calendar/time-date.el (format-seconds): Use assoc instead of
20695 assoc-string, since assoc-string doesn't exist in XEmacs.
20696
20697 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
20698
20699 * custom.el (custom-known-themes): Reflow docstring.
20700 (custom-theme-load-path): Fix typo in docstring.
20701 (load-theme): Fix typo in error message.
20702 (custom-available-themes, custom-variable-theme-value):
20703 Use `let', not `let*'.
20704
20705 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
20706
20707 * calc/README: Mention inclusion of musical notes.
20708
20709 * calc/calc-units.el (calc-lu-quant): Rename from
20710 `calc-logunits-quantity'.
20711 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
20712 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
20713 (calc-db): Rename from `calc-dblevel'.
20714 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
20715 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
20716 (calc-np): Rename from `calc-nplevel'.
20717 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
20718 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
20719 (calc-lu-plus): Rename from `calc-logunits-add'.
20720 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
20721 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
20722 (calc-lu-minus): Rename from `calc-logunits-sub'.
20723 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
20724 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
20725 (calc-lu-times): Rename from `calc-logunits-mul'.
20726 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
20727 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
20728 (calc-lu-divide): Rename from `calc-logunits-div'.
20729 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
20730 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
20731
20732 * calc/calc-ext.el (calc-init-extensions): Update the names of the
20733 functions being autoloaded.
20734
20735 * calc/calc.el (calc-lu-power-reference): Rename from
20736 `calc-logunits-power-reference'.
20737 (calc-lu-field-reference): Rename from
20738 `calc-logunits-field-reference'.
20739
20740 * calc/calc-help.el (calc-l-prefix-help):
20741 Mention musical note functions.
20742
20743 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
20744
20745 * minibuffer.el (completion-all-sorted-completions):
20746 Use :completion-cycle-penalty text property if present.
20747
20748 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
20749
20750 * allout.el (allout-yank-processing): Adjust for new rebulleting
20751 regime so bullet being yanked is used without prompting the user
20752 for a choice.
20753
20754 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
20755
20756 * startup.el (command-line): Warn the user that _emacs is deprecated.
20757
20758 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
20759
20760 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
20761 (delphi-verbose, delphi-comment-face, delphi-string-face)
20762 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
20763 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
20764 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
20765 (delphi-new-comment-line, delphi-font-lock-defaults)
20766 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
20767 Fix typos in docstrings.
20768
20769 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
20770
20771 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
20772 Invert the roles of character and string values for INSTEAD, so a
20773 string is used for the more common case of a defaulting prompt.
20774
20775 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
20776
20777 * progmodes/ruby-mode.el (ruby-backward-sexp):
20778 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
20779 * play/gamegrid.el (gamegrid-make-face):
20780 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
20781 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
20782 * notifications.el (notifications-notify):
20783 * net/xesam.el (xesam-search-engines):
20784 * net/quickurl.el (quickurl-list-insert):
20785 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
20786
20787 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
20788
20789 * startup.el (command-line): Update package subdirectory regexp.
20790
20791 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
20792
20793 * allout.el (allout-abbreviate-flattened-numbering)
20794 (allout-mode-deactivate-hook): Fix up obsolescence "date".
20795
20796 * subr.el (read-char-choice): Only show the cursor after the prompt,
20797 not after the answer.
20798
20799 2011-03-15 Kevin Ryde <user42@zip.com.au>
20800
20801 * help-fns.el (variable-at-point): Skip leading quotes, if any
20802 (bug#8253).
20803
20804 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
20805
20806 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
20807 warning message.
20808
20809 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
20810
20811 * shell.el (shell): When called interactively, offer to change the
20812 shell file name on remote hosts.
20813
20814 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
20815
20816 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
20817 integration for LDAP parameters. The host, base, user or binddn,
20818 and secret tokens can be specified in a netrc file, for instance.
20819 This is optional because an `auth-source' parameter must be
20820 specified in the search attributes.
20821
20822 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
20823
20824 * help.el (describe-mode): Link to the mode's definition (bug#8185).
20825
20826 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
20827
20828 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
20829 into declaration. Remove redundant and harmful binding.
20830
20831 2011-03-12 Eli Zaretskii <eliz@gnu.org>
20832
20833 * files.el (file-ownership-preserved-p): Pass `integer' as an
20834 explicit 2nd argument to `file-attributes'. If the file's owner
20835 is the Administrators group on Windows, and the current user is
20836 Administrator, consider that a match.
20837
20838 * server.el (server-ensure-safe-dir): Consider server directory
20839 safe on MS-Windows if its owner is the Administrators group while
20840 the current Emacs user is Administrator. Use `=' to compare
20841 numerical UIDs, since they could be integers or floats.
20842
20843 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
20844
20845 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
20846
20847 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
20848
20849 Sync with Tramp 2.2.1.
20850
20851 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
20852
20853 * net/trampver.el: Update release number.
20854
20855 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
20856
20857 * progmodes/compile.el (compilation--previous-directory): Fix up
20858 various nil/dead-marker mismatches (bug#8014).
20859 (compilation-directory-properties, compilation-error-properties):
20860 Don't call it at a position past the one we're about to change.
20861
20862 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
20863 Disable obsolescence warnings in the file that declares it.
20864
20865 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
20866
20867 * allout-widgets.el (allout-widgets-tally):
20868 Initialize allout-widgets-tally as a hash table rather than nil to
20869 prevent mode-line redisplay warnings. Also, clarify the module
20870 description and fix a comment typo.
20871
20872 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
20873
20874 * help-fns.el (describe-variable): Don't complete keywords.
20875 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
20876
20877 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
20878
20879 * emacs-lisp/package.el (package-version-join): Impose a standard
20880 string representation for pre/alpha/beta version lists.
20881 (package-unpack-single): Standardize the directory name by passing
20882 it through package-version-join.
20883 (package-strip-rcs-id): Accept any version string that does not
20884 signal an error in version-to-list.
20885
20886 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
20887
20888 * simple.el (delete-trailing-whitespace): Return nil for the
20889 benefit of `write-file-functions'.
20890
20891 2011-03-10 Glenn Morris <rgm@gnu.org>
20892
20893 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
20894
20895 * vc/vc-git.el (vc-git-program): New option.
20896 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
20897 (vc-git--call): Use it.
20898
20899 * eshell/esh-util.el (eshell-condition-case): Doc fix.
20900
20901 * cus-edit.el (Custom-newline): If no button at point, look
20902 for a subgroup button at start-of-line. (Bug#2298)
20903
20904 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
20905
20906 2011-03-10 Julien Danjou <julien@danjou.info>
20907
20908 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
20909 `cursor-type' is nil.
20910
20911 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
20912
20913 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
20914
20915 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
20916
20917 * allout.el: Change so yank of distinctive-bullet items
20918 preserves the existing header prefix, rebulleting it if necessary,
20919 rather than replacing it. This is necessary for proper operation
20920 of cooperative addons like allout-widgets.
20921 (allout-make-topic-prefix, allout-rebullet-heading):
20922 Change SOLICIT arg to INSTEAD, and interpret additionally a string
20923 value as alternate bullet to be used, instead of prompting the user
20924 for a bullet character.
20925
20926 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
20927
20928 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
20929 Do not use `tramp-file-name-port', because this returns also
20930 `tramp-default-port'.
20931
20932 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
20933
20934 * net/rcirc.el (rcirc-handler-001): Remove useless
20935 with-rcirc-process-buffer.
20936 (rcirc-check-auth-status): Swap arguments to string-match.
20937
20938 2011-03-09 Glenn Morris <rgm@gnu.org>
20939
20940 * shell.el (shell-mode):
20941 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
20942
20943 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
20944 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
20945
20946 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
20947
20948 * emacs-lisp/package.el (package-refresh-contents)
20949 (package-menu-execute): Use condition-case-no-debug.
20950
20951 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
20952
20953 * simple.el (shell-command-to-string): Use `process-file'.
20954
20955 * emacs-lisp/package.el (package-tar-file-info): Handle also
20956 remote files.
20957
20958 * emacs-lisp/package-x.el (package-upload-buffer-internal):
20959 Use `equal' for upload base check.
20960
20961 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
20962
20963 * textmodes/texinfo.el (texinfo-environments):
20964 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
20965
20966 2011-03-08 Glenn Morris <rgm@gnu.org>
20967
20968 * cus-start.el (cursor-in-non-selected-windows):
20969 Fix :set quoting oddness. (Bug#8192)
20970
20971 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
20972 in some setf expressions. (Bug#2159)
20973
20974 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
20975
20976 * custom.el (custom-available-themes): Return themes in
20977 alphabetical order.
20978
20979 See ChangeLog.15 for earlier changes.
20980
20981 ;; Local Variables:
20982 ;; coding: utf-8
20983 ;; End:
20984
20985 Copyright (C) 2011-2012 Free Software Foundation, Inc.
20986
20987 This file is part of GNU Emacs.
20988
20989 GNU Emacs is free software: you can redistribute it and/or modify
20990 it under the terms of the GNU General Public License as published by
20991 the Free Software Foundation, either version 3 of the License, or
20992 (at your option) any later version.
20993
20994 GNU Emacs is distributed in the hope that it will be useful,
20995 but WITHOUT ANY WARRANTY; without even the implied warranty of
20996 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20997 GNU General Public License for more details.
20998
20999 You should have received a copy of the GNU General Public License
21000 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.