Fix pgx in .gdbinit when CHECK_LISP_OBJECT_TYPE is defined.
[bpt/emacs.git] / lisp / ChangeLog
1 2012-11-23 Juri Linkov <juri@jurta.org>
2
3 * wdired.el: Revert 2012-10-17 change partly and replace it with
4 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
5 (wdired-finish-edit): Add marks for new file names to
6 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
7 after `revert-buffer'.
8 (wdired-do-renames): Remove calls to `dired-remove-file',
9 `dired-add-file', `dired-add-entry'. (Bug#11795)
10
11 2012-11-21 Alan Mackenzie <acm@muc.de>
12
13 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
14
15 Fix bugs in the state cache. Enhance a debugging mechanism.
16 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
17 "brace at column zero" strategy for C++.
18 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
19 (c-parse-state-point): New variable.
20 (c-record-parse-state-state): Record old parse state with
21 `copy-tree'. Record previous value of point.
22 (c-debug-parse-state-double-cons): New debugging function.
23 (c-debug-parse-state): Call the above new function.
24 (c-toggle-parse-state-debug): Output a confirmatory message.
25
26 * progmodes/cc-mode.el (c-before-change, c-after-change): Call
27 c-invalidate-state-cache from `c-before-change' instead of
28 `c-after-change'.
29
30 2012-11-20 Daniel Colascione <dancol@dancol.org>
31
32 * term/w32-win.el (cygwin-convert-path-from-windows): Accomodate
33 rename of cygwin_convert_path* to cygwin_convert_file_name*.
34 This change is a backport from trunk.
35
36 2012-11-20 Eli Zaretskii <eliz@gnu.org>
37
38 * simple.el (line-move): Don't call line-move-partial if
39 scroll-conservatively is in effect. (Bug#12927)
40
41 2012-11-20 Michael Albinus <michael.albinus@gmx.de>
42
43 * net/trampver.el (tramp-version): Downgrade to 2.2.6-24.3, in
44 order to distinguish from trunk.
45
46 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
47
48 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't accept
49 non-symbols for compiler macros (yet).
50
51 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
52 Fallback on completion-at-point rather than
53 pcomplete-expand-and-complete, and only if pcomplete actually failed.
54 (eshell-cmpl-initialize): Setup completion-at-point.
55
56 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
57
58 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
59
60 2012-11-19 Michael Albinus <michael.albinus@gmx.de>
61
62 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
63 are remote, check out-of-band property for both.
64
65 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
66
67 * window.el (switch-to-buffer): Re-add the warning that was lost in the
68 code rewrite.
69
70 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
71
72 More minor time fixes.
73 * calendar/time-date.el: Commentary fix.
74 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
75 too much other code depends on (0 0) time stamps.
76 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
77 Add a couple of FIXME comments.
78
79 Minor cleanup for times as lists of four integers.
80 * files.el (dir-locals-directory-cache):
81 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
82 Doc fixes.
83 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
84 * ps-bdf.el (bdf-file-newer-than-time):
85 Process four-integers time stamps, not two. Doc fixes.
86
87 2012-11-18 Glenn Morris <rgm@gnu.org>
88
89 * image.el (insert-image, insert-sliced-image): Doc fix.
90
91 2012-11-17 Chong Yidong <cyd@gnu.org>
92
93 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
94 (Bug#12810).
95
96 2012-11-17 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
97
98 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
99 response when the target file is in a subdirectory (Bug#12757).
100
101 2012-11-17 Chong Yidong <cyd@gnu.org>
102
103 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
104
105 2012-11-17 Glenn Morris <rgm@gnu.org>
106
107 * woman.el (woman-non-underline-faces):
108 * emacs-lisp/cl-lib.el (face-underline-p):
109 Use set-face-underline rather than the alias set-face-underline-p.
110
111 * window.el (with-temp-buffer-window): Doc fix.
112 * subr.el (with-output-to-temp-buffer):
113 Add doc xref to with-temp-buffer-window.
114
115 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
116
117 * emacs-lisp/cl-lib.el: Set more meaningful version number.
118
119 2012-11-16 Martin Rudalics <rudalics@gmx.at>
120
121 * window.el (enlarge-window, shrink-window): Don't mention return
122 value in doc-string (Bug#12896).
123 (window--display-buffer): Don't resize frames - it won't work
124 with all window managers and defeat pop-up-frame-alist.
125 (display-buffer-alist): In doc-string explain that CONDITION can
126 be a function and which arguments are passed to it (Bug#12854).
127 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
128 expressions (Bug#12854).
129 (display-buffer): Pass ACTION argument to
130 display-buffer-assq-regexp.
131
132 2012-11-16 Glenn Morris <rgm@gnu.org>
133
134 * window.el (fit-frame-to-buffer-bottom-margin)
135 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
136
137 * faces.el (face-underline-p): Use face-attribute-specified-or.
138
139 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
140
141 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
142
143 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
144
145 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
146
147 2012-11-15 Glenn Morris <rgm@gnu.org>
148
149 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
150 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
151
152 * faces.el (face-underline-p): Doc fix. Handle :underline being
153 things other than `t' (a string, a list).
154 (face-inverse-video-p): Doc fix.
155 (set-face-underline): Rename it back from set-face-underline-p.
156 Doc fix. Allow interactive input of values other than t.
157 (read-face-attribute): Apply formatting to :underline,
158 since like :box and :stipple it can take list values.
159
160 * term.el (ansi-term): Don't let C-x escape-char binding
161 clobber the more standard C-c binding. (Bug#12842)
162
163 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
164
165 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
166 (bug#12879).
167
168 2012-11-14 Glenn Morris <rgm@gnu.org>
169
170 * subr.el (set-temporary-overlay-map): Doc fix.
171
172 2012-11-13 Martin Rudalics <rudalics@gmx.at>
173
174 * window.el (record-window-buffer)
175 (display-buffer-record-window): When copying the markers to
176 window-point preserve window-point-insertion-type. (Bug#12588)
177
178 2012-11-13 Glenn Morris <rgm@gnu.org>
179
180 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
181 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
182 Use new names for hooks rather than obsolete aliases.
183
184 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
185
186 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
187
188 2012-11-12 Wolfgang Jenkner <wjenkner@inode.at>
189
190 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
191 39 and 49. This fixes bug#12792. Also, treat unimplemented
192 parameters as 0, thereby restoring the behavior of revisions prior
193 to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
194
195 2012-11-12 Fabián Ezequiel Gallina <fgallina@cuca>
196
197 Fix end-of-defun misbehavior.
198 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
199 python-beginning-of-defun-function. Handle nested defuns
200 correctly.
201 (python-nav-end-of-defun): Rename from
202 python-end-of-defun-function. Ensure forward movement.
203 (python-info-current-defun): Reimplement to work as intended
204 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
205 parent defuns as soon as possible.
206
207 2012-11-12 Glenn Morris <rgm@gnu.org>
208
209 * progmodes/flymake.el (flymake-error-bitmap)
210 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
211 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
212
213 2012-11-12 Dmitry Gutov <dgutov@yandex.ru>
214
215 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
216 backward, always stop at indentation. Reverts the change from
217 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
218
219 2012-11-11 Glenn Morris <rgm@gnu.org>
220
221 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
222 Add ibuffer-filter-by-derived-mode.
223
224 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
225 the same name shadowing each other.
226
227 * window.el (with-temp-buffer-window): Doc tweak.
228
229 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
230
231 * help.el (temp-buffer-max-height):
232 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
233 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
234
235 2012-11-10 Leo Liu <sdl.web@gmail.com>
236
237 * ido.el (ido-set-matches-1): Fix split-string args to avoid
238 performance issue. (Bug#12796)
239
240 2012-11-10 Glenn Morris <rgm@gnu.org>
241
242 * term.el (term-default-fg-color, term-default-bg-color):
243 Make obsolete, rather than just saying "deprecated" in the doc.
244
245 * term.el (term): Rename from `term-face'.
246 (term-current-face, ansi-term-color-vector)
247 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
248 Update all users.
249
250 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
251
252 * server.el (server-create-window-system-frame): Improve comment.
253
254 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
255
256 * server.el (server-create-window-system-frame): Handle Nextstep
257 specially (Bug#12780).
258
259 2012-11-08 Glenn Morris <rgm@gnu.org>
260
261 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
262 Unautoload, and make obsolete. (Bug#7449)
263
264 2012-11-08 Chong Yidong <cyd@gnu.org>
265
266 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
267 rename from diff-remove-trailing-whitespace (Bug#12831).
268
269 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
270
271 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
272 miscompilation of trace.el.
273
274 2012-11-08 Glenn Morris <rgm@gnu.org>
275
276 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
277
278 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
279
280 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
281 (bug#12812).
282
283 2012-11-07 Chong Yidong <cyd@gnu.org>
284
285 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
286 a defcustom with an appropriate :set function.
287 (minibuffer-default--in-prompt-regexps): New function.
288
289 2012-11-07 Glenn Morris <rgm@gnu.org>
290
291 * emacs-lisp/cl.el (define-setf-expander, defsetf)
292 (define-modify-macro): Doc fixes.
293
294 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
295 (gv-define-simple-setter): Update doc of `fix-return'.
296
297 2012-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
298
299 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
300 twice when `fix-return' is set (bug#12813).
301
302 * emacs-lisp/cl.el (defsetf): Pass the third arg to
303 gv-define-simple-setter (bug#12812).
304
305 2012-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
306
307 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
308 (bug#12756).
309
310 2012-11-06 Glenn Morris <rgm@gnu.org>
311
312 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
313
314 2012-11-05 Glenn Morris <rgm@gnu.org>
315
316 * emacs-lisp/cl-extra.el (cl-prettyexpand):
317 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
318 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
319 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
320
321 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
322
323 2012-11-03 Glenn Morris <rgm@gnu.org>
324
325 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
326 Rename handler properties back from cl-- to cl-. (Bug#12788)
327
328 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
329
330 2012-11-03 Eli Zaretskii <eliz@gnu.org>
331
332 * term/pc-win.el: Don't load term/internal from here.
333
334 * loadup.el: Load term/internal from here.
335
336 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
337
338 * progmodes/python.el (inferior-python-mode): Fix hang in
339 jit-lock (Bug#12645).
340
341 2012-11-03 Martin Rudalics <rudalics@gmx.at>
342
343 * window.el (switch-to-visible-buffer)
344 (switch-to-buffer-preserve-window-point): Fix doc-strings.
345
346 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
347
348 * play/gomoku.el (gomoku-display-statistics): Update mode line
349 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
350
351 2012-10-31 Martin Rudalics <rudalics@gmx.at>
352
353 * window.el (quit-restore-window): If the window has been
354 created on an existing frame and ended up as the sole window on
355 that frame, do not delete it (Bug#12764).
356
357 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
358
359 * progmodes/sh-script.el (sh--inside-noncommand-expression):
360 Rename from sh--inside-arithmetic-expression, handle more cases
361 (bug#11263).
362
363 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
364 (sh-font-lock-open-heredoc): Use it (bug#12770).
365
366 2012-10-30 Glenn Morris <rgm@gnu.org>
367
368 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
369
370 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
371
372 2012-10-29 Chong Yidong <cyd@gnu.org>
373
374 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
375 function key is stored in a keyboard macro (Bug#4894).
376
377 * thingatpt.el (number-at-point): Apply a thing-at-point property.
378
379 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
380
381 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
382 header comments".
383 (diff-unified->context, diff-context->unified)
384 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
385
386 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
387
388 * files.el (find-alternate-file): Only ask one question (bug#12487).
389
390 2012-10-29 Chong Yidong <cyd@gnu.org>
391
392 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
393 Suggested by Dan Nicolaescu (Bug#6326).
394
395 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
396
397 * startup.el (fancy-about-screen): Don't message (Bug#12680).
398
399 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
400
401 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
402
403 * face-remap.el (face-remap-add-relative): Handle the case where a
404 face-remapping-alist entry is a cons cell (Bug#12762).
405
406 2012-10-29 Kevin Ryde <user42@zip.com.au>
407
408 * woman.el (woman-parse-numeric-value): Handle picas correctly
409 (Bug#12639).
410
411 2012-10-29 Glenn Morris <rgm@gnu.org>
412
413 * emacs-lisp/cl.el (defsetf): Doc fix.
414
415 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
416
417 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
418 syntax to the matching opener, if any (bug#12547).
419 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
420 matching open as a "case-(".
421 (sh-smie-rc-grammar): Add a corresponding rule for it.
422
423 2012-10-28 Daniel Hackney <dan@haxney.org>
424
425 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
426 "PKGNAME-autoloads.el" in case we created it.
427
428 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
429
430 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
431 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
432 (completion--twq-all): Disable too-strict assertions.
433
434 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
435
436 2012-10-27 Eli Zaretskii <eliz@gnu.org>
437
438 * profiler.el (profiler-report-make-entry-part): Fix help-echo
439 text to match the real keybindings.
440
441 2012-10-27 Juri Linkov <juri@jurta.org>
442
443 * wdired.el (wdired-keep-marker-rename): New defcustom.
444 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
445 (Bug#11795)
446
447 * dired.el (dired-keep-marker-rename): Add reference to
448 `wdired-keep-marker-rename' in the docstring.
449 Add default character value ?R to display initially in
450 Customization UI instead of ?@.
451
452 2012-10-27 Martin Rudalics <rudalics@gmx.at>
453
454 * window.el (display-buffer): In doc-string describe
455 window-height and window-width alist entries.
456
457 * time.el (display-time-world): Restore fit-window-to-buffer
458 behavior.
459
460 2012-10-27 Chong Yidong <cyd@gnu.org>
461
462 * subr.el (insert-buffer-substring-as-yank): Doc fix.
463
464 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
465
466 * minibuffer.el (completion-category-overrides): New completion
467 category `bookmark' (bug#11131).
468
469 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
470
471 * emacs-lisp/advice.el (ad-assemble-advised-definition):
472 Silence bogus compiler warnings for ad-do-it.
473
474 * bookmark.el (bookmark-completing-read): Set the completion category
475 to `bookmark' (bug#11131).
476
477 2012-10-26 Bastien <bzg@altern.org>
478 Stefan Monnier <monnier@iro.umontreal.ca>
479
480 * face-remap.el: Use lexical-binding.
481 (text-scale-adjust): Improve docstring. Use itself for the temporary
482 overlay-map bindings, so as to repeat the "Use..." message each time.
483
484 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
485
486 * emacs-lisp/macroexp.el (macroexp--expand-all):
487 Obey byte-compile-warning-enabled-p (bug#12486).
488
489 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
490 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
491
492 2012-10-26 Martin Rudalics <rudalics@gmx.at>
493
494 * mouse.el (mouse-drag-line): Move last form into preceding when
495 clause (Bug#12731).
496
497 * help.el (resize-temp-buffer-window): Fix doc-string.
498
499 2012-10-25 David Engster <deng@randomsample.de>
500
501 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
502 Remove. This feature is already integrated in imenu.
503
504 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
505 always loaded. Require `speedbar' unconditionally.
506
507 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
508
509 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
510
511 * minibuffer.el (minibuffer-force-complete): Fix thinko.
512
513 * net/ldap.el (ldap-search-internal): The official ldif format starts
514 with a "version: 1" header (bug#12724).
515
516 * emacs-lisp/package.el (package-installed-p): Warn if not ready
517 (bug#12721).
518
519 2012-10-25 Glenn Morris <rgm@gnu.org>
520
521 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
522
523 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
524
525 * minibuffer.el (minibuffer-force-complete): Use one more marker
526 for the temporary-overlay-map command (bug#12619).
527
528 2012-10-24 Chong Yidong <cyd@gnu.org>
529
530 * time.el (display-time-world-mode): Derive from special-mode.
531 (display-time-world): Use display-buffer (Bug#12708).
532 (display-time-world-mode-map): Variable deleted.
533 (display-time-world-display): Wrap the final delete-char inside
534 inhibit-read-only.
535
536 2012-10-24 Chong Yidong <cyd@gnu.org>
537
538 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
539 Doc fix.
540
541 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
542
543 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
544
545 * minibuffer.el (completion--all-sorted-completions-location): New var.
546 (completion--cache-all-sorted-completions)
547 (completion--flush-all-sorted-completions): Use it.
548 (completion-in-region, completion-in-region--postch)
549 (completion-at-point, completion-help-at-point): Use markers in
550 completion-in-region--data (bug#12619).
551
552 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
553
554 * progmodes/compile.el (compilation-start): Try to handle common
555 quoting of `cd' argument (bug#12640).
556
557 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
558 (bug#12671).
559
560 2012-10-23 Glenn Morris <rgm@gnu.org>
561
562 * progmodes/gud.el (gud-menu-map):
563 Check gdb-active-process is bound. (Bug#12358)
564
565 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
566
567 * repeat.el (repeat): Set real-this-command (bug#12232).
568
569 * htmlfontify.el (hfy-post-html-hook):
570 * filesets.el (filesets-cache-fill-content-hook):
571 * arc-mode.el (archive-extract-hook):
572 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
573 * net/rcirc.el (rcirc-sentinel-functions)
574 (rcirc-receive-message-functions, rcirc-activity-functions)
575 (rcirc-print-functions):
576 * net/dbus.el (dbus-event-error-functions):
577 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
578 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
579 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
580 * term/sun.el (sun-raw-prefix-hooks):
581 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
582
583 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
584
585 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
586 Set `tramp-chunksize' to 1. This improves the performance.
587 (tramp-smb-wait-for-output): Add timeout to
588 `tramp-accept-process-output' calls.
589
590 2012-10-23 Chong Yidong <cyd@gnu.org>
591
592 * faces.el (font-list-limit): Define as an obsolete variable.
593
594 * startup.el (command-line):
595 * cus-start.el: Don't refer to font-list-limit.
596
597 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
598
599 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
600
601 * subr.el (internal-temp-output-buffer-show): Rename from
602 temp-output-buffer-show, since previously compiled files expect this name.
603
604 2012-10-23 Glenn Morris <rgm@gnu.org>
605
606 * image.el (image-type-from-file-name): If multiple types match,
607 return the first one that is supported. (Bug#9045)
608
609 2012-10-22 Glenn Morris <rgm@gnu.org>
610
611 * image.el (imagemagick-enabled-types): Doc fix.
612
613 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
614
615 * progmodes/which-func.el (which-func-current): The hash-table may have
616 an explicit nil (bug#12338).
617
618 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
619
620 * electric.el (electric-pair-delete-selection-self-insert-function):
621 Rename to electric-pair-will-use-region, return a boolean.
622 (electric-pair-mode): Adjust accordingly. Don't require delsel.
623
624 * delsel.el (delete-selection-helper): Use a function instead of a hook.
625 (delete-selection-pre-hook): Use use-region-p.
626 (delete-selection-self-insert-function): Remove.
627 (self-insert-command): Obey self-insert-uses-region-functions.
628 (self-insert-iso): Revert to previous setting, since we don't actually
629 know what that command does.
630 (delete-selection-self-insert-hooks): Remove.
631
632 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
633
634 * delsel.el (delete-selection-helper): New function, extracted from
635 delete-selection-pre-hook.
636 (delete-selection-pre-hook): Use it.
637 (delete-selection-self-insert-function): New function.
638 (delete-selection-self-insert-hooks): New hook.
639 (self-insert-command, self-insert-iso): Use it.
640 * electric.el (electric-pair-syntax): New function, extracted from
641 electric-pair-post-self-insert-function.
642 (electric-pair-post-self-insert-function): Use it.
643 (electric-pair-delete-selection-self-insert-function): New function.
644 (electric-pair-mode): Require delsel and setup
645 delete-selection-self-insert-hooks (bug#11520).
646
647 2012-10-20 Chong Yidong <cyd@gnu.org>
648
649 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
650 no changes to show (Bug#12586).
651
652 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
653 list explicitly (Bug#12571).
654
655 2012-10-20 Arne Jørgensen <arne@arnested.dk>
656
657 * progmodes/flymake.el (flymake-create-temp-inplace):
658 Use file-truename.
659
660 2012-10-20 Eli Zaretskii <eliz@gnu.org>
661
662 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
663
664 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
665
666 * calc/calc-units.el (math-extract-units): Properly extract powers
667 of units.
668
669 2012-10-20 Daniel Colascione <dancol@dancol.org>
670
671 * frame.el (make-frame): Set x-display-name as we used to in order
672 to unbreak creating an X11 frame from an Emacs daemon started
673 without a display.
674
675 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
676
677 * minibuffer.el (minibuffer-force-complete): Make the next completion use
678 the same completion-field (bug@12221).
679
680 2012-10-19 Martin Rudalics <rudalics@gmx.at>
681
682 * emacs-lisp/debug.el (debug): Record height of debugger window
683 also when debugger will be back (Bug#8789).
684
685 2012-10-18 Chong Yidong <cyd@gnu.org>
686
687 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
688 Convert to defcustom.
689 (gdb-get-source-file): Don't bind pop-up-windows.
690
691 * progmodes/gud.el (gud-display-line): Don't specially re-use
692 other frames for the gdb-mi case (Bug#12648).
693
694 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
695
696 * emacs-lisp/advice.el: Clean up commentary a bit.
697 (ad-do-advised-functions, ad-with-originals): Use `declare'.
698 (byte-code-function-p): Never redefine.
699
700 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
701
702 2012-10-18 Glenn Morris <rgm@gnu.org>
703
704 * dired.el (dired-sort-toggle): Some ls implementations only allow
705 a single option string. (Bug#12666)
706
707 * minibuffer.el (completion-cycle-threshold): Doc fix.
708
709 2012-10-17 Kenichi Handa <handa@gnu.org>
710
711 * international/mule.el (set-keyboard-coding-system):
712 Recover input meta mode when the new coding system doesn not use 8-bit.
713 Supply TERMINAL arg to set-input-meta-mode.
714
715 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
716
717 * wdired.el (wdired-old-marks): New variable.
718 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
719 (wdired-do-renames): Move point with renamed file and don't lose
720 mark status (Bug#11795).
721
722 2012-10-16 Juri Linkov <juri@jurta.org>
723
724 * replace.el (query-replace-help): Mention multi-buffer replacement
725 keys in the Help message. (Bug#12655)
726
727 2012-10-15 Chong Yidong <cyd@gnu.org>
728
729 * emacs-lisp/byte-run.el (defsubst): Doc fix.
730
731 2012-10-14 Eli Zaretskii <eliz@gnu.org>
732
733 * window.el (display-buffer): Doc fix.
734
735 * progmodes/compile.el (compilation-error-regexp-alist-alist):
736 Adjust the msft regexp to the output of Studio 2010, and move msft
737 before edg-1. See the discussion on emacs-devel,
738 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
739 for the details.
740
741 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
742
743 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
744 (oset): Move uses of object-class-fast macro after its definition.
745
746 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
747
748 2012-10-13 Chong Yidong <cyd@gnu.org>
749
750 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
751 enabled, re-enable it (Bug#11963).
752
753 2012-10-13 Martin Rudalics <rudalics@gmx.at>
754
755 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
756 non-nil, restore window configuration (Bug#12623).
757
758 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
759
760 * help-fns.el (describe-variable, describe-function-1):
761 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
762
763 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
764
765 2012-10-12 Glenn Morris <rgm@gnu.org>
766
767 * mail/rmailsum.el (rmail-header-summary):
768 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
769
770 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
771
772 * progmodes/python.el (python-mode-map):
773 Replace subtitute-key-definition with proper command remapping.
774 (python-nav--up-list): Fix behavior for blocks on the same level.
775
776 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
777
778 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
779
780 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
781 changes to the format of load-history.
782
783 * international/mule-cmds.el (read-char-by-name): Move let-binding of
784 completion-ignore-case in case that var is buffer-local (bug#12615).
785
786 2012-10-11 Kenichi Handa <handa@gnu.org>
787
788 * international/eucjp-ms.el: Re-generated.
789
790 2012-10-10 Kenichi Handa <handa@gnu.org>
791
792 * select.el (xselect--encode-string): If a coding is specified for
793 selection, and that is compatible with COMPOUND_TEXT, use it.
794
795 2012-10-10 Martin Rudalics <rudalics@gmx.at>
796
797 * window.el (switch-to-buffer-preserve-window-point): New option.
798 (switch-to-buffer):
799 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
800
801 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
802
803 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
804 Don't document nil as a useful value (bug#12583).
805
806 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
807
808 * net/tramp.el (tramp-debug-message):
809 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
810 (with-tramp-progress-reporter): Rename from
811 `tramp-with-progress-reporter'.
812 (with-tramp-file-property, with-tramp-connection-property):
813 Move from tramp-cache.el, rename from `with-file-property' and
814 `with-connection-property', respectively.
815
816 * net/tramp-cache.el: Remove `with-file-property' and
817 `with-connection-property'.
818
819 * net/tramp.el:
820 * net/tramp-gvfs.el:
821 * net/tramp-sh.el:
822 * net/tramp-smb.el: Adapt callees.
823
824 * net/trampver.el: Update release number.
825
826 2012-10-09 Glenn Morris <rgm@gnu.org>
827
828 * w32-fns.el (set-message-beep):
829 * term/w32-win.el (set-message-beep): Update declarations.
830
831 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
832
833 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
834 (mode-line-widen, mode-line-input-method-map)
835 (mode-line-coding-system-map, mode-line-remote)
836 (mode-line-unbury-buffer, mode-line-bury-buffer)
837 (mode-line-next-buffer, mode-line-previous-buffer):
838 Replace save-selected-window+select-window => with-selected-window.
839
840 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
841 * progmodes/cc-vars.el (bq-process): Remove, unused.
842
843 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
844
845 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
846
847 Implemented `backward-up-list'-like navigation.
848 * progmodes/python.el (python-nav-up-list)
849 (python-nav-backward-up-list): New functions.
850 (python-mode-map): Define substitute key for backward-up-list to
851 python-nav-backward-up-list.
852
853 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
854
855 * progmodes/python.el (python-fill-paragraph): Rename from
856 python-fill-paragraph-function. Fixed fill-paragraph for
857 decorators (Bug#12605).
858
859 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
860
861 * progmodes/python.el (python-shell-output-filter): Handle extra
862 carriage return in OSX (Bug#12409).
863
864 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
865
866 Fix shell handling of unbalanced quotes and parens in output.
867 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
868 (python-syntax-propertize-function): Use it.
869 (python-shell-output-syntax-table): New var.
870 (inferior-python-mode): Prevent unbalanced parens/quotes from
871 previous output mess with current input context.
872
873 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
874
875 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
876 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
877
878 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
879
880 * ffap.el (ffap-replace-file-component): Support Tramp file name
881 syntax, not only ange-ftp's one.
882
883 2012-10-08 Glenn Morris <rgm@gnu.org>
884
885 * cus-start.el (message-log-max): Set :version.
886
887 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
888
889 2012-10-08 Martin Rudalics <rudalics@gmx.at>
890
891 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
892 the minibuffer window (Bug#10851).
893
894 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
895
896 Enhancements on forward-sexp movement.
897 * progmodes/python.el (python-nav-beginning-of-statement)
898 (python-nav-end-of-statement): Return point-marker.
899 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
900 (python-info-current-symbol)
901 (python-info-statement-starts-block-p): Rename from
902 python-info-beginning-of-block-p.
903 (python-info-statement-ends-block-p): Rename from
904 python-info-end-of-block-p.
905 (python-info-beginning-of-statement-p)
906 (python-info-end-of-statement-p)
907 (python-info-beginning-of-block-p, python-info-end-of-block-p):
908 New functions.
909
910 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
911
912 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
913 frame-selected-windows.
914
915 2012-10-08 Daniel Colascione <dancol@dancol.org>
916
917 * battery.el (battery-status-function): Check for
918 w32-battery-status itself, not system-time windows-nt.
919
920 * frame.el: Require cl-lib.
921 (display-format-alist): New variable mapping frame types to
922 functions that initialize them.
923 (window-system-for-display): New function: interprets
924 display-format-alist.
925 (make-frame-on-display): Remove existing display-selection logic
926 and just forward to make-frame, which will now DTRT.
927 (make-frame): Restructure to use window-system-for-display to
928 figure out how to create a frame on a given display.
929 (display-mouse-p): Look for frame-type w32, not a particular
930 system-type.
931
932 * loadup.el: Load w32 lisp code when we have the w32 feature.
933
934 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
935 system-type windows-nt.
936
937 * server.el (server-create-window-system-frame): Look for window
938 type.
939 (server-proces-filter): Only force a window system when windows-nt
940 _and_ w32. Explain why.
941
942 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
943 of window systems we configure for the mode.
944
945 * startup.el (command-line): Mark window system is initialized
946 after we've done it.
947
948 * common-win.el (x-select-text): Look for w32, not windows-nt.
949
950 * ns-win.el: Require cl-lib. Add ourselves to
951 display-format-alist.
952 (ns-initialize-window-system): Assert we're not initialized twice.
953
954 * w32-win.el: Enable lexical binding; require cl-lib; add
955 ourselves to display-format-alist.
956 (w32-handle-dropped-file): Convert incoming dropped files from
957 Windows paths to Cygwin ones before passing them on to the rest of
958 Emacs.
959 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
960 (w32-initialize-window-system): Assert we're not initialized twice.
961
962 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
963 (x-initialize-window-system): Assert we're not initialized twice.
964
965 * w32-common-fns.el: New File.
966 (w32-version, w32-using-nt, w32-get-clipboard-data)
967 (w32-set-clipboard-data, x-set-selection, x-get-selection)
968 (w32-charset-info-alist, x-last-selected, text)
969 (x-get-selection-value, x-selection-value): Move here.
970
971 * w32-fns.el: Require w32-common-fns.
972 (w32-version, w32-using-nt, w32-get-clipboard-data)
973 (w32-set-clipboard-data, x-set-selection, x-get-selection)
974 (w32-charset-info-alist, x-last-selected, text)
975 (x-get-selection-value, x-selection-value): Move to
976 w32-common-fns.
977
978 * w32-vars.el:
979 (w32-allow-system-shell, w32-system-shells): Define only in
980 non-cygwin case.
981
982 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
983
984 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
985 (read-passwd): Remove a few more potential sources of leaks.
986
987 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
988
989 * progmodes/python.el (inferior-python-mode)
990 (python-shell-make-comint): Fix initialization of local
991 variables copied from parent buffer.
992
993 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
994
995 * term/ns-win.el (ns-read-file-name): Update declaration to match
996 nsfns.m.
997 (ns-respond-to-change-font): Change fontsize separatly so we are sure
998 it is set when font is acted upon.
999
1000 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1001
1002 Enhancements to indentation.
1003 * progmodes/python.el (python-indent-context): Give priority to
1004 inside-string context. Make comments indentation markers.
1005 (python-indent-region): Do not mess with strings, unless it's the
1006 enclosing set of quotes.
1007
1008 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1009
1010 * window.el (internal--before-save-selected-window)
1011 (internal--after-save-selected-window): New functions extracted from
1012 save-selected-window. Make sure we return the `alist' we construct.
1013 (save-selected-window): Use them.
1014
1015 * textmodes/tex-mode.el (tex-recenter-output-buffer):
1016 Use with-selected-window.
1017
1018 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
1019 forms that define macros (bug#12593).
1020
1021 2012-10-07 Kenichi Handa <handa@gnu.org>
1022
1023 * international/mule-conf.el (compound-text-with-extensions):
1024 Add :mime-charset property as x-ctext.
1025
1026 2012-10-07 Stefan Merten <smerten@oekonux.de>
1027
1028 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1029 (rst-indent-literal-normal, rst-indent-literal-minimized)
1030 (rst-indent-comment): Correct :version tag.
1031 (rst-official-cvs-rev): Correct version string.
1032
1033 2012-10-07 Glenn Morris <rgm@gnu.org>
1034
1035 * mail/rmailmm.el (rmail-mime-process-multipart):
1036 Do not confuse a multipart message with an epilogue
1037 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
1038
1039 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1040
1041 Fix shell output retrieval and comint-prompt-regexp init.
1042 * progmodes/python.el (inferior-python-mode):
1043 (python-shell-make-comint): Fix initialization of
1044 comint-prompt-regexp from copied file local variables.
1045 (python-shell-fetched-lines): Remove var.
1046 (python-shell-output-filter-in-progress): Rename from
1047 python-shell-fetch-lines-in-progress.
1048 (python-shell-output-filter-buffer): Rename from
1049 python-shell-fetch-lines-string.
1050 (python-shell-fetch-lines-filter): Delete function.
1051 (python-shell-output-filter): New function.
1052 (python-shell-send-string-no-output): Use them.
1053
1054 2012-10-07 Glenn Morris <rgm@gnu.org>
1055
1056 * hi-lock.el (hi-lock-process-phrase):
1057 Try to make it less fragile. (Bug#7161)
1058
1059 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
1060
1061 2012-10-06 Glenn Morris <rgm@gnu.org>
1062
1063 * ehelp.el (electric-help-mode): Use help-mode rather than
1064 non-existent mode `help'.
1065 (electric-help-map): Use button-buffer-map. (Bug#10917)
1066
1067 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
1068 (reftex-create-bibtex-footer): Fix custom types.
1069
1070 * progmodes/sh-script.el (sh-indent-after-continuation):
1071 Add explicit :group.
1072
1073 * textmodes/rst.el (rst-preferred-decorations)
1074 (rst-shift-basic-offset): Clarify obsolescence versions.
1075
1076 * profiler.el (profiler): Add missing group :version tag.
1077 * avoid.el (mouse-avoidance-banish-position):
1078 * proced.el (proced-renice-command):
1079 * calc/calc.el (calc-ensure-consistent-units):
1080 * calendar/icalendar.el (icalendar-import-format-uid):
1081 * net/tramp.el (tramp-save-ad-hoc-proxies):
1082 * progmodes/bug-reference.el (bug-reference-bug-regexp):
1083 * progmodes/flymake.el (flymake-error-bitmap)
1084 (flymake-warning-bitmap, flymake-fringe-indicator-position):
1085 * progmodes/sh-script.el (sh-indent-after-continuation):
1086 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
1087 (verilog-before-save-font-hook, verilog-after-save-font-hook):
1088 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
1089 (vhdl-array-index-record-field-in-sensitivity-list)
1090 (vhdl-indent-comment-like-next-code-line):
1091 * textmodes/reftex-vars.el (reftex-ref-style-alist)
1092 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
1093 (reftex-cite-key-separator, reftex-create-bibtex-header)
1094 (reftex-create-bibtex-footer):
1095 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1096 (rst-indent-literal-normal, rst-indent-literal-minimized)
1097 (rst-indent-comment): Add missing custom :version tags.
1098
1099 * calendar/timeclock.el (timeclock-modeline-display):
1100 Add missing obsolete alias for renamed user option.
1101
1102 * strokes.el (strokes-modeline-string):
1103 * emulation/crisp.el (crisp-mode-modeline-string):
1104 * eshell/esh-mode.el (eshell-status-in-modeline):
1105 Aliases to defcustoms must come before the defcustom.
1106
1107 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
1108 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
1109 (cal-tex-cursor-week-monday): Doc fixes.
1110 (cal-tex-cursor-week2-summary): Doc fix.
1111 Rename from cal-tex-cursor-week-at-a-glance.
1112
1113 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
1114 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
1115
1116 * calendar/calendar.el (calendar-mode-map):
1117 Add cal-tex-cursor-week2-summary.
1118
1119 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
1120
1121 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
1122
1123 * subr.el (read-passwd-map): New var.
1124 (read-passwd): Use `read-string' again.
1125 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
1126
1127 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
1128
1129 * register.el (append-to-register, prepend-to-register):
1130 Deactivate mark, as does `copy-to-register' (bug#12389).
1131
1132 2012-10-06 Chong Yidong <cyd@gnu.org>
1133
1134 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
1135
1136 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
1137
1138 * international/characters.el: Fix simple mistake ((car chars) ->
1139 elt), delete duplicated code.
1140
1141 2012-10-06 Glenn Morris <rgm@gnu.org>
1142
1143 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
1144
1145 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
1146
1147 * color.el (color-hsl-to-rgb): Fix incorrect results for
1148 small and large hue values. (Bug#12559)
1149
1150 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
1151
1152 Enhancements to docstring formatting when filling paragraphs.
1153 * progmodes/python.el (python-fill-docstring-style): Rename from
1154 python-fill-string-style. Added new style.
1155 (python-fill-string): Use new style. Better checks for
1156 docstrings.
1157
1158 2012-10-05 Glenn Morris <rgm@gnu.org>
1159
1160 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
1161
1162 * color.el (color-name-to-rgb, color-rgb-to-hex)
1163 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1164 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1165 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1166 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1167
1168 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
1169
1170 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
1171
1172 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
1173 to get the correct size across symlinks.
1174
1175 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
1176
1177 2012-10-04 Juri Linkov <juri@jurta.org>
1178
1179 * replace.el (query-replace-interactive): Declare obsolete.
1180 (query-replace-read-from): Add the last incremental search string
1181 to the list of default values accessible via M-n.
1182 (map-query-replace-regexp): Use `read-regexp'.
1183 (query-replace, query-replace-regexp, query-replace-regexp-eval)
1184 (map-query-replace-regexp, replace-string, replace-regexp):
1185 Fix docstrings to replace mentions of `query-replace-interactive'
1186 with alternatives. (Bug#12526)
1187
1188 2012-10-04 Juri Linkov <juri@jurta.org>
1189
1190 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
1191 (dired-pop-to-buffer): Declare obsolete.
1192 (dired-mark-pop-up): Doc fix.
1193
1194 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
1195
1196 Allow user to set docstring style for fill-paragraph.
1197 * progmodes/python.el
1198 (python-fill-comment-function, python-fill-string-function)
1199 (python-fill-decorator-function, python-fill-paren-function):
1200 Remove :safe for defcustoms.
1201 (python-fill-string-style): New defcustom
1202 (python-fill-paragraph-function): Enhance context detection.
1203 (python-fill-string): Honor python-fill-string-style settings.
1204
1205 2012-10-04 Martin Rudalics <rudalics@gmx.at>
1206
1207 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
1208 after setting its buffer (Bug#10805).
1209
1210 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
1211
1212 Fix cornercase for string syntax.
1213 * progmodes/python.el (python-syntax-propertize-function):
1214 Simplify and enhance the regexp for unescaped quotes. Now it also
1215 matches quotes in weird situations like the single quote in
1216 "something\"'".
1217 (python-syntax-stringify): Simplify num-quotes detecting code.
1218
1219 2012-10-03 Glenn Morris <rgm@gnu.org>
1220
1221 * help-macro.el (three-step-help):
1222 Revert 2012-09-29 change. (Bug#12567)
1223
1224 2012-10-03 Martin Rudalics <rudalics@gmx.at>
1225
1226 * menu-bar.el (kill-this-buffer): Don't do anything when
1227 `menu-frame' is not alive or visible (Bug#8184).
1228
1229 * emacs-lisp/debug.el (debug): When quitting the debugger window
1230 restore current buffer (Bug#12502).
1231
1232 2012-10-02 Chong Yidong <cyd@gnu.org>
1233
1234 * progmodes/hideif.el (hif-lookup, hif-defined):
1235 Handle semantic-c-takeover-hideif.
1236
1237 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
1238
1239 Change sampling interval units from ms to ns.
1240 * profiler.el (profiler-sampling-interval): Change units
1241 from ms to ns, multiplying the default by 1000000 so that
1242 it remains 1 ms.
1243 (profiler-report-cpu-line-format): Give enough room for
1244 the maximum counters on 64-bit hosts.
1245 (profiler-report-render-calltree-1): Call them "CPU samples",
1246 not "Time (ms)", since they are not milliseconds now (and
1247 never really were).
1248
1249 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
1250
1251 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
1252 Fix querying BBDB for entries without a last name (Bug#11580).
1253
1254 2012-10-02 Chong Yidong <cyd@gnu.org>
1255
1256 * emacs-lisp/eieio.el: Restore Version header.
1257
1258 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1259
1260 * vc/diff-mode.el (diff--auto-refine-data): New var.
1261 (diff-hunk): Use it to delay refinement.
1262 (diff-mode): Remove overlays when we turn off font-lock.
1263
1264 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
1265 (table-initialize-table-fixed-width-mode)
1266 (table-set-table-fixed-width-mode): Remove functions.
1267 (table-command-list): Move initialization into declaration.
1268 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
1269 (table-with-cache-buffer): Use `declare'.
1270 (table-span-cell): Simplify via CSE.
1271 (table-fixed-width-mode): Use define-minor-mode.
1272 (table-call-interactively, table-funcall, table-apply): Remove.
1273 (table-function): New function, to replace them.
1274
1275 * bookmark.el (bookmark-search-pattern): Remove var.
1276 (bookmark-read-search-input): Remove function.
1277 (bookmark-bmenu-search): Reimplement using a minibuffer.
1278
1279 * faces.el (modeline): Remove obsolete face name.
1280
1281 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
1282 and give a non-nil default value.
1283 (add-change-log-entry): Simplify accordingly.
1284
1285 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
1286
1287 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
1288 (vc-git-log-edit-toggle-amend): New function.
1289 (vc-git-log-edit-toggle-signoff): New function.
1290 (vc-git-log-edit-mode): New major mode.
1291 (vc-git-log-edit-mode-map): Keymap for it.
1292 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
1293
1294 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
1295 header names.
1296 (log-edit-toggle-header): New function.
1297 (log-edit-extract-headers): Accept function values in HEADERS alist.
1298
1299 2012-10-01 David Engster <deng@randomsample.de>
1300
1301 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
1302 from symbol property and change message to be more consistent with
1303 Emacs proper.
1304 (eieio-describe-generic): Add filename for each implementation.
1305 Fix indices for generic and normal methods.
1306 (eieio-method-def, eieio-class-def): New buttons.
1307 (eieio-help-find-method-definition)
1308 (eieio-help-find-class-definition): New functions.
1309 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
1310 class, constructor and method definitions.
1311
1312 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
1313 information in symbol property.
1314 (scoped-class): Remove.
1315 (eieio-slot-name-index, call-next-method): Check if it is bound.
1316
1317 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
1318
1319 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
1320 (eieio-custom-mode): New major mode.
1321 (eieio-customize-object): Use it.
1322
1323 2012-10-01 Eric Ludlam <zappo@gnu.org>
1324
1325 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
1326 specifying the expected class, and whether subclassing is allowed.
1327 (eieio-persistent-convert-list-to-object):
1328 (eieio-persistent-validate/fix-slot-value)
1329 (eieio-persistent-slot-type-is-class-p): New functions.
1330 (eieio-named::slot-missing): Doc fix.
1331
1332 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
1333 Stop using unused publd variable.
1334
1335 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
1336 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
1337 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
1338 (eieio-speedbar-handle-click): Do not specify a class for the
1339 method. Fixes method invocation order problems with EDE.
1340
1341 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1342
1343 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
1344 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
1345
1346 2012-10-01 Karl Fogel <kfogel@red-bean.com>
1347
1348 * bookmark.el (bookmark-version-control): Give tags in the
1349 :type choices (Bug#12309), and improve doc string.
1350 (bookmark-write-file): Bind `print-circle' to `t' to allow
1351 circular custom bookmark types. (Bug#12503)
1352
1353 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
1354
1355 Revert the FOLLOW-SYMLINKS change for file-attributes.
1356 * files.el (remote-file-name-inhibit-cache, after-find-file):
1357 * time.el (display-time-file-nonempty-p): Undo last change.
1358
1359 * profiler.el (profiler-sampling-interval): Change default back to 1.
1360 See Stefan Monnier in
1361 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
1362
1363 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
1364
1365 Shell output catching a la gud-gdb.
1366 * progmodes/python.el (python-shell-fetch-lines-in-progress)
1367 (python-shell-fetch-lines-string, python-shell-fetched-lines):
1368 New Vars.
1369 (python-shell-fetch-lines-filter): New function.
1370 (python-shell-send-string-no-output): Use them.
1371
1372 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
1373
1374 * profiler.el (profiler-sampling-interval): Rename from
1375 profiler-sample-interval.
1376 (profiler-sampling-interval): Default to 10.
1377 (profiler-find-profile): New command (was profiler-find-log).
1378 (profiler-find-profile-other-window): New command.
1379 (profiler-find-profile-other-frame): New command.
1380 (profiler-profile): Introduce API-level data structure.
1381
1382 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1383
1384 file-attributes has a new optional arg FOLLOW-SYMLINKS.
1385 * files.el (remote-file-name-inhibit-cache):
1386 * time.el (display-time-file-nonempty-p): Use it.
1387 * files.el (after-find-file): Don't chase links before calling
1388 file-exists-p, as file-exists-p already does the right thing.
1389
1390 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
1391
1392 Merge from standalone RefTeX repository.
1393
1394 The following ChangeLog entries are shortened versions of the
1395 original ones with file paths adapted. A not so strongly edited
1396 version of the original ChangeLog can be found in the commit log.
1397
1398 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
1399 (reftex-arg-cite): Use `reftex-cite-key-separator'.
1400 Correctly handle new value type returned by `reftex-citation'.
1401
1402 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
1403 that entries with whitespace at various places are found.
1404 Doc fix. Include entries that are cross-referenced from cited entries.
1405 Include @String definitions in the resulting bib file. Add header
1406 and footer defined in `reftex-create-bibtex-header' and
1407 `reftex-create-bibtex-footer'.
1408 (reftex-do-citation): Make it possible again to insert
1409 non-existent entries. Save match data when asking for optional
1410 arguments. Return all keys, not just the first one.
1411 (reftex-all-used-citation-keys): Fix regexp to correctly extract
1412 all citations in the same line.
1413 (reftex-parse-bibtex-entry): Accept additional optional argument
1414 `raw' and keep quotes or braces if it is non-nil. Match fields
1415 containing hyphens besides word constituents.
1416 (reftex-get-string-refs): New function.
1417 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
1418 and ask if it should be reread in case it did.
1419 (reftex-pop-to-bibtex-entry)
1420 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
1421 entries with spaces or tabs in front of arguments.
1422 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
1423 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
1424 Match entries containing numbers and symbol constituents.
1425 (reftex-do-citation, reftex-figure-out-cite-format):
1426 Use `reftex-cite-key-separator'.
1427
1428 * textmodes/reftex-dcr.el: Move provide statement to end of file.
1429 (reftex-mouse-view-crossref): Explain why point is set.
1430
1431 * textmodes/reftex-global.el: Whitespace changes.
1432
1433 * textmodes/reftex-index.el: Move provide statement to end of
1434 file.
1435 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
1436 (reftex-index-visit-phrases-buffer): Set marker when visiting
1437 buffer. This allows for returning from the phrases file to the
1438 file one was just editing instead of the file where the last
1439 phrases was added from.
1440 (reftex-index-phrases-syntax-table): New variable. Give ?\"
1441 punctuation syntax as it usually is not used as string quote in
1442 TeX-related modes and may occur unmatched. The change also
1443 prevents fontification of quoted content.
1444 (reftex-index-phrases-mode): Use it.
1445
1446 * textmodes/reftex-parse.el (reftex-parse-from-file):
1447 Move backward one char if a `\' was matched after a section macro.
1448 (reftex-parse-from-file): Use beginning of match instead of end as
1449 bound.
1450
1451 * textmodes/reftex-ref.el: Adapt creation of
1452 `reftex-<package>-<macro>' functions to new structure of
1453 `reftex-ref-style-alist'.
1454 (reftex-reference): Use `reftex-ref-style-list' function.
1455 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
1456 reference macro if `reftex-ref-macro-prompt' is non-nil.
1457 (reftex-reference): Pass refstyle to `reftex-format-special'.
1458 Determine reference macro by looking at
1459 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
1460 Use only one special format function.
1461 (reftex-varioref-vref, reftex-fancyref-fref)
1462 (reftex-fancyref-Fref): Remove definitions. The functions are now
1463 generated from `reftex-ref-style-alist'.
1464 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
1465 Remove.
1466 (reftex-format-special): New function.
1467
1468 * textmodes/reftex-sel.el
1469 (reftex-select-cycle-ref-style-internal): Adapt to new structure
1470 of `reftex-ref-style-alist'. Remove code for testing macro type.
1471 (reftex-select-toggle-varioref)
1472 (reftex-select-toggle-fancyref): Remove.
1473 (reftex-select-cycle-ref-style-internal)
1474 (reftex-select-cycle-ref-style-forward)
1475 (reftex-select-cycle-ref-style-backward): New functions.
1476 (reftex-select-label-map): Use `v' and `V' for general cycling
1477 through reference styles. Add `p' for switching between number
1478 and page reference types.
1479
1480 * textmodes/reftex-toc.el (reftex-re-enlarge):
1481 Call `enlarge-window' only if there is something to do because in Emacs
1482 the horizontal version throws an error even if the parameter is 0.
1483
1484 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
1485 (reftex-plug-into-AUCTeX): Doc fix.
1486 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
1487 string. Adapt to new name.
1488 (reftex-ref-style-alist): Change structure so that it is not
1489 possible to use multiple different package names within a style.
1490 Remove the symbols for symbols for macro type distinction.
1491 Add characters for macro selection.
1492 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
1493 (reftex-create-bibtex-footer): New variables.
1494 (reftex-format-ref-function): Mention third argument of special
1495 format function.
1496 (reftex-ref-style-alist, reftex-ref-style-default-list):
1497 New variables.
1498 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
1499 to new implementation. Mark as obsolete. Add compatibility code
1500 for honoring the variable values in case they are set.
1501 (reftex-cite-format-builtin, reftex-bibliography-commands):
1502 Add support for ConTeXt.
1503 (reftex-format-ref-function, reftex-format-cite-function):
1504 Fix custom type.
1505 (reftex-cite-key-separator): New variable.
1506
1507 * textmodes/reftex.el (reftex-syntax-table-for-bib)
1508 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
1509 `reftex-syntax-table' because parens have to retain their paren
1510 syntax in order for parsing of BibTeX entries like @book(...) to
1511 work.
1512 (reftex-in-comment): Do not error out if `comment-start-skip' is
1513 not set. Deal correctly with escaped comment characters.
1514 (reftex-tie-multifile-symbols): Add doc string.
1515 Initialize `reftex-ref-style-list'.
1516 (reftex-untie-multifile-symbols): Add doc string.
1517 (reftex-add-index-macros): Doc fix.
1518 (reftex-ref-style-activate, reftex-ref-style-toggle)
1519 (reftex-ref-style-list): New functions.
1520 (reftex-mode-menu): Use them. Adapt to new structure of
1521 `reftex-ref-style-alist'.
1522 (reftex-select-with-char): Kill the RefTeX Select buffer when
1523 done.
1524 (reftex-remove-if): New function.
1525 (reftex-erase-all-selection-and-index-buffers)
1526 (reftex-mode-menu): Reference styles are now computed from
1527 `reftex-ref-style-alist'. Fix typo.
1528 (reftex-report-bug): New function.
1529 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
1530 algorithms with O(n log n). Introduce optional argument SORT (not
1531 yet used).
1532
1533 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
1534
1535 Enhancements for triple-quote string syntax.
1536 * progmodes/python.el (python-syntax-propertize-function):
1537 Match both quote cases in one regexp.
1538 (python-syntax-stringify): Handle matches properly.
1539
1540 2012-09-30 Juri Linkov <juri@jurta.org>
1541
1542 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
1543 to nil around the call to `insert' to prevent
1544 directory time modification by lock_file. (Bug#2295)
1545 * tar-mode.el (tar-summarize-buffer): Idem.
1546
1547 2012-09-30 Juri Linkov <juri@jurta.org>
1548
1549 * facemenu.el (list-colors-sort): Add option "Luminance".
1550 (list-colors-sort-key): Implement it.
1551
1552 * vc/diff-mode.el (diff-refine-removed):
1553 * vc/ediff-init.el (ediff-fine-diff-A):
1554 * vc/smerge-mode.el (smerge-refined-removed):
1555 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
1556
1557 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
1558
1559 * term/ns-win.el (x-file-dialog): New function.
1560
1561 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
1562
1563 * ido.el (ido-max-directory-size): Default to nil; the current
1564 default is small for POSIX systems, and impractical on Windows 7
1565 now that lstat returns directory sizes for NTFS.
1566
1567 2012-09-30 Martin Rudalics <rudalics@gmx.at>
1568
1569 In buffer display functions handle window-height/window-width
1570 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
1571 * window.el (window--display-buffer): New argument ALIST.
1572 Obey window-height and window-width alist entries.
1573 (window--try-to-split-window): New argument ALIST.
1574 Bind window-combination-limit to t when the window's size shall be
1575 changed and window-combination-limit equals `window-size'.
1576 (display-buffer-in-atom-window)
1577 (display-buffer-in-major-side-window)
1578 (display-buffer-in-side-window, display-buffer-same-window)
1579 (display-buffer-reuse-window, display-buffer-pop-up-frame)
1580 (display-buffer-pop-up-window, display-buffer-below-selected)
1581 (display-buffer-at-bottom, display-buffer-in-previous-window)
1582 (display-buffer-use-some-window): Adjust all callers of
1583 window--display-buffer and window--try-to-split-window.
1584 (fit-frame-to-buffer): New option.
1585 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
1586 is non-nil.
1587 (display-buffer-in-major-side-window): Evaluate window-height /
1588 window-width alist entries.
1589
1590 * help.el (temp-buffer-resize-frames)
1591 (temp-buffer-resize-regexps): Remove options.
1592 (temp-buffer-resize-mode): Adjust doc-string.
1593 (resize-temp-buffer-window): Don't consult
1594 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
1595 temp-buffer-resize-frames.
1596
1597 * dired.el (dired-mark-pop-up):
1598 Call display-buffer-below-selected with a fit-window-to-buffer alist
1599 entry.
1600
1601 2012-09-30 Chong Yidong <cyd@gnu.org>
1602
1603 * server.el (server-host): Document the security implications.
1604 (server-auth-key): Doc fix.
1605
1606 * startup.el (initial-buffer-choice): Doc fix.
1607
1608 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
1609
1610 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
1611 restriction change.
1612
1613 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
1614
1615 * help-fns.el (help-fns--obsolete): Fix last change.
1616
1617 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
1618
1619 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
1620 (minor-mode-map-alist): Remove redundant code.
1621
1622 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
1623 visited in a buffer.
1624 (cvs-insert-visited-file): New function.
1625 (find-file-hook): Use it.
1626
1627 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
1628
1629 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
1630 chose face.
1631 (log-edit-empty-buffer-p): Don't require a space after a header.
1632
1633 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
1634
1635 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
1636
1637 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
1638 a proper minor-mode.
1639
1640 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
1641
1642 2012-09-29 Glenn Morris <rgm@gnu.org>
1643
1644 * winner.el (winner-mode): Remove variable (let define-minor-mode
1645 handle it).
1646 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
1647 Doc fixes.
1648 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
1649 (winner-mode): Use define-minor-mode.
1650
1651 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
1652 the full definition in loaddefs, rather than duplicating it.
1653
1654 * help-macro.el (three-step-help): No need to autoload defcustom.
1655
1656 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
1657 (inferior-lisp-program, inferior-lisp-load-command)
1658 (inferior-lisp-prompt, inferior-lisp-mode-hook):
1659 No need to autoload defcustoms.
1660
1661 * hippie-exp.el (hippie-expand-try-functions-list)
1662 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
1663 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
1664 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
1665 (hippie-expand-only-buffers): No need to autoload defcustoms.
1666 * progmodes/vhdl-mode.el (vhdl-line-expand):
1667 Explicitly load hippie-exp, so it does not get autoloaded
1668 while hippie-expand-try-functions-list is let-bound.
1669
1670 2012-09-28 Glenn Morris <rgm@gnu.org>
1671
1672 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
1673
1674 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
1675 Only "cl.el" counts as cl these days.
1676
1677 2012-09-28 Juri Linkov <juri@jurta.org>
1678
1679 Display archive errors in the echo area instead of inserting
1680 to the file buffer.
1681
1682 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
1683 to STDERR-TEST that can be a regexp matching a successful output.
1684 Create a temporary file and redirect stderr to it. Search for
1685 STDERR-TEST in the stderr output and display it in the echo area
1686 if no match is found.
1687 (archive-extract-by-file): New function like
1688 `archive-extract-by-stdout' but extracting archives to files
1689 and looking for successful matches in stdout. Function body is
1690 mostly copied from `archive-rar-extract'.
1691 (archive-rar-extract): Use `archive-extract-by-file'.
1692 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
1693
1694 2012-09-28 Leo Liu <sdl.web@gmail.com>
1695
1696 * pcomplete.el (pcomplete-show-completions):
1697 Use minibuffer-message to make pcomplete usable in minibuffer.
1698
1699 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
1700
1701 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1702
1703 * type-break.el: Use lexical-binding.
1704 (type-break-mode): Use define-minor-mode.
1705
1706 * emacs-lisp/pcase.el (pcase--mark-used): New.
1707 (pcase--u1): Use it (bug#12512).
1708
1709 * custom.el (load-theme): Set buffer-file-name so the load is recorded
1710 in load-history with the right file name.
1711
1712 2012-09-28 Tassilo Horn <tsdh@gnu.org>
1713
1714 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
1715 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
1716 (doc-view-get-bounding-box): Make bounding box slicing work for
1717 ODF and DVI documents.
1718
1719 2012-09-28 Glenn Morris <rgm@gnu.org>
1720
1721 * type-break.el (type-break-mode, type-break-interval)
1722 (type-break-good-rest-interval, type-break-keystroke-threshold):
1723 No need to autoload.
1724 (type-break-good-rest-interval, type-break-keystroke-threshold):
1725 Add :set-after.
1726
1727 2012-09-28 Chong Yidong <cyd@gnu.org>
1728
1729 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
1730 Add :version tag.
1731
1732 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
1733
1734 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
1735
1736 2012-09-27 Glenn Morris <rgm@gnu.org>
1737
1738 * faces.el (x-display-name): Declare (for without-x builds).
1739
1740 * linum.el (linum-format): Don't autoload it. Improve :type.
1741
1742 * progmodes/tcl.el: Don't require outline when compiling.
1743 (outline-regexp, outline-level): Declare.
1744 * textmodes/sgml-mode.el: Don't require outline when compiling.
1745 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
1746
1747 * term.el (term-ansi-reset):
1748 Try setting term-ansi-face-already-done to nil. (Bug#11785)
1749
1750 * vc/vc.el (vc-next-action): Only gripe about committing read-only
1751 files for RCS and SCCS. (Bug#9781)
1752
1753 2012-09-27 Chong Yidong <cyd@gnu.org>
1754
1755 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
1756 change; value should be t.
1757
1758 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
1759
1760 * image-mode.el: Use lexical-binding.
1761 (image-mode-winprops): Use t to stand for the window of
1762 a buffer that's not displayed.
1763 * doc-view.el (doc-view-new-window-function): Handle the new
1764 t in winprops.
1765 (doc-view-enlarge): Make it a real nop if the size is not changed.
1766 (doc-view-display): Handle the case where the buffer is not (yet?)
1767 displayed in any window.
1768 (doc-view-saved-settings): New var.
1769 (doc-view-mode): Use it.
1770 (doc-view-fallback-mode): Set it.
1771
1772 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
1773 Set lexical-binding.
1774 (minibuffer-eldef-shorten-default): New var.
1775 (minibuffer-default-in-prompt-regexps): Use it for new default.
1776 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
1777
1778 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
1779
1780 * international/uni-bidi.el:
1781 * international/uni-category.el:
1782 * international/uni-name.el:
1783 * international/uni-numeric.el: Regenerate.
1784
1785 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
1786 Stefan Monnier <monnier@iro.umontreal.ca>
1787
1788 * profiler.el: New file.
1789
1790 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
1791
1792 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
1793 (testcover-reinstrument): Simplify with CSE.
1794
1795 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
1796
1797 * window.el (temp-buffer-window-setup): Fix typo in docstring.
1798
1799 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
1800
1801 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
1802 (verilog-auto-input, verilog-auto-insert-lisp)
1803 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
1804 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
1805 (verilog-auto-unused, verilog-auto-wire)
1806 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
1807 newline. Reported by Andrew Jones.
1808 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
1809 Reported by Brad Dobbie.
1810 (verilog-batch-delete-trailing-whitespace):
1811 Create verilog-batch-delete-trailing-whitespace.
1812 Reported by Brad Dobbie.
1813 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
1814 parameters from another module. Reported by Dan Katz.
1815 (verilog-auto, verilog-auto-assign-modport)
1816 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
1817 AUTOINOUTMODPORT for UVM interface module shell generation.
1818 Reported by Brad Dobbie.
1819 (verilog-auto-inst-interfaced-ports): Make default nil, as more
1820 standard behavior.
1821 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
1822 Reported by Matt Martin.
1823
1824 2012-09-25 Martin Rudalics <rudalics@gmx.at>
1825
1826 * window.el (window--resize-child-windows): When resizing child
1827 windows proportionally, process them in reverse order to
1828 preserve the "when splitting a window the new one gets the odd
1829 line" behavior.
1830 (window--resize-root-window-vertically): When resizing the
1831 minibuffer window try to affect only windows at the bottom of the
1832 frame. (Bug#12419)
1833
1834 2012-09-25 Chong Yidong <cyd@gnu.org>
1835
1836 * subr.el (declare): Doc fix.
1837
1838 * help-fns.el (help-fns--obsolete): Handle macros properly.
1839
1840 2012-09-25 Chong Yidong <cyd@gnu.org>
1841
1842 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
1843 this function obsolete.
1844
1845 * calendar/cal-x.el (calendar-two-frame-setup)
1846 (calendar-only-one-frame-setup, calendar-one-frame-setup):
1847 * calendar/calendar.el (american-calendar, european-calendar)
1848 (calendar-for-loop):
1849 * comint.el (comint-dynamic-simple-complete)
1850 (comint-dynamic-complete-as-filename, comint-unquote-filename):
1851 * desktop.el (desktop-load-default):
1852 * dired-x.el (dired-omit-here-always)
1853 (dired-hack-local-variables, dired-default-directory):
1854 * emacs-lisp/derived.el (derived-mode-class):
1855 * emacs-lisp/timer.el (timer-set-time-with-usecs):
1856 * emacs-lock.el (toggle-emacs-lock):
1857 * epa.el (epa-display-verify-result):
1858 * epg.el (epg-sign-keys, epg-start-sign-keys)
1859 (epg-passphrase-callback-function):
1860 * eshell/esh-util.el (eshell-for):
1861 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
1862 (eshell-add-to-window-buffer-names):
1863 * files.el (locate-file-completion):
1864 * imenu.el (imenu-example--create-c-index)
1865 (imenu-example--create-lisp-index)
1866 (imenu-example--lisp-extract-index-name)
1867 (imenu-example--name-and-position):
1868 * international/mule-cmds.el (princ-list):
1869 * international/mule-diag.el (decode-codepage-char):
1870 * international/mule-util.el (detect-coding-with-priority):
1871 * iswitchb.el (iswitchb-read-buffer):
1872 * mail/mailalias.el (mail-complete):
1873 * mail/sendmail.el (mail-sent-via):
1874 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
1875 (mouse-major-mode-menu):
1876 * password-cache.el (password-read-and-add):
1877 * pcomplete.el (pcomplete-parse-comint-arguments):
1878 * progmodes/sh-script.el (sh-maybe-here-document):
1879 * replace.el (query-replace-regexp-eval):
1880 * savehist.el (savehist-load):
1881 * simple.el (choose-completion-delete-max-match):
1882 * term.el (term-dynamic-simple-complete):
1883 * vc/ediff-init.el (ediff-check-version):
1884 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
1885 * vc/vc.el (vc-diff-switches-list):
1886 * view.el (view-return-to-alist-update): Likewise.
1887
1888 * subr.el (eval-next-after-load, makehash, insert-string)
1889 (assoc-ignore-representation, assoc-ignore-case): Use declare to
1890 mark obsolete.
1891 (mode-line-inverse-video): Variable deleted.
1892
1893 * international/mule-util.el (string-to-sequence): Remove.
1894
1895 * calendar/calendar.el (calendar-version):
1896 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
1897 (icalendar-convert-diary-to-ical):
1898 * cus-edit.el (custom-mode):
1899 * ansi-color.el (ansi-color-unfontify-region):
1900 * international/latin1-disp.el (latin1-char-displayable-p):
1901 * progmodes/cwarn.el (turn-on-cwarn-mode):
1902 * progmodes/which-func.el (which-func-update-1):
1903 Use define-obsolete-function-alias.
1904
1905 * net/newst-backend.el (newsticker-cache-filename):
1906 * net/newst-treeview.el (newsticker-groups-filename):
1907 Fix incorrect obsolescence declaration.
1908
1909 * allout.el (allout-passphrase-hint-string): Likewise.
1910 (allout-init): Use a declare form to mark obsolete.
1911
1912 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
1913 this applies to functions.
1914
1915 * iswitchb.el (iswitchb-read-buffer): Move code of
1916 iswitchb-define-mode-map here, and delete that obsolete function.
1917
1918 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
1919 font-lock-reference-face.
1920
1921 2012-09-25 Glenn Morris <rgm@gnu.org>
1922
1923 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
1924 Doc fixes.
1925
1926 * eshell/em-term.el (eshell-term-name):
1927 Default to term-term-name. (Bug#12485)
1928
1929 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
1930
1931 * progmodes/python.el (python-shell-send-buffer): Better handling
1932 of "if __name__ == '__main__':" conditionals when sending the buffer.
1933
1934 2012-09-24 Glenn Morris <rgm@gnu.org>
1935
1936 * eshell/esh-cmd.el (eshell-find-alias-function):
1937 Tighten up file-name regexp. (Bug#12499)
1938
1939 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
1940
1941 Enhancements for triple-quote string syntax.
1942 * progmodes/python.el (python-quote-syntax): Remove.
1943 (python-syntax-propertize-function): New value.
1944 (python-syntax-count-quotes, python-syntax-stringify):
1945 New functions.
1946
1947 2012-09-24 Chong Yidong <cyd@gnu.org>
1948
1949 * mail/supercite.el (sc-version): Remove obsolete function.
1950 (sc-describe): Don't mark as obsolete, since it is bound.
1951 (sc-submit-bug-report): Remove.
1952
1953 * vc/log-edit.el (cvs-changelog-full-paragraphs)
1954 (cvs-commit-buffer-require-final-newline): Remove.
1955 (log-edit-require-final-newline)
1956 (log-edit-changelog-full-paragraphs): Default to t.
1957
1958 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
1959 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
1960 * vc/vc.el (vc-checkout-carefully): Likewise.
1961
1962 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
1963 (emerge-version): Remove.
1964
1965 * progmodes/compile.el (compile-internal): Remove.
1966 (compilation-parse-errors-function): Fix typo.
1967
1968 * international/mule.el (set-char-table-default): Remove.
1969 (set-coding-priority, make-coding-system, generic-char-p)
1970 (charset-list, charset-bytes, charset-id): Use declare to mark
1971 functions as obsolete.
1972
1973 * vc/pcvs-defs.el (cvs-buffer-name-alist)
1974 (cvs-invert-ignore-marks): Remove references to obsolete vars.
1975 * vc/vc-hooks.el (vc-default-registered): Don't use
1976 vc-master-templates.
1977
1978 * font-lock.el (font-lock-reference-face):
1979 Use define-obsolete-variable-alias.
1980
1981 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
1982 * calendar/calendar.el (calendar-font-lock-keywords):
1983 * calendar/diary-lib.el (diary-font-lock-keywords)
1984 (diary-fancy-font-lock-keywords):
1985 * textmodes/reftex-sel.el (reftex-insert-docstruct):
1986 * textmodes/reftex-index.el (reftex-insert-index):
1987 * textmodes/reftex-cite.el (reftex-format-bib-entry):
1988 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
1989 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
1990 * progmodes/prolog.el (prolog-font-lock-keywords):
1991 * progmodes/idlwave.el (idlwave-idl-keywords):
1992 * progmodes/ada-mode.el (ada-font-lock-keywords):
1993 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
1994
1995 2012-09-24 Glenn Morris <rgm@gnu.org>
1996
1997 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
1998
1999 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
2000
2001 * progmodes/python.el (python-indent-line): More consistent cursor
2002 movement behavior.
2003
2004 2012-09-23 Stefan Merten <smerten@oekonux.de>
2005
2006 * textmodes/rst.el: Fix compiler warning.
2007
2008 2012-09-23 Roland Winkler <winkler@gnu.org>
2009
2010 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
2011 Transcribe also LaTeX hyphenation.
2012 (bibtex-reformat): Bug fix. Do not quote twice the elements of
2013 bibtex-reformat-previous-options.
2014
2015 2012-09-23 Roland Winkler <winkler@gnu.org>
2016
2017 * proced.el (proced-renice-command): New variable.
2018 (proced-marked-processes): New function.
2019 (proced-with-processes-buffer): New macro.
2020 (proced-send-signal): Use them.
2021 (proced-renice): New command bound to r.
2022
2023 2012-09-23 Roland Winkler <winkler@gnu.org>
2024
2025 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
2026 ibuffer-saved-filter-groups has one element, shortcut the call of
2027 completing-read. (Bug#12331)
2028
2029 2012-09-23 Chong Yidong <cyd@gnu.org>
2030
2031 * bindings.el (mode-line-toggle-read-only):
2032 * bs.el (bs-toggle-readonly):
2033 * buff-menu.el (Buffer-menu-toggle-read-only):
2034 * dired.el (dired-toggle-read-only):
2035 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
2036
2037 2012-09-23 Chong Yidong <cyd@gnu.org>
2038
2039 * image.el (image-type-available-p): Adapt to init-image-library
2040 argument changes.
2041
2042 2012-09-22 Juri Linkov <juri@jurta.org>
2043
2044 * dired.el (dired-mode-map): Add [remap read-only-mode] for
2045 `dired-toggle-read-only'. (Bug#12462)
2046
2047 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2048
2049 * subr.el (temp-output-buffer-show): New function.
2050 (with-output-to-temp-buffer): Call temp-output-buffer-show
2051 instead of internal-temp-output-buffer-show.
2052
2053 2012-09-22 Chong Yidong <cyd@gnu.org>
2054
2055 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
2056 (Bug#12462).
2057
2058 * repeat.el (repeat): Doc fix (Bug#12348).
2059
2060 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
2061 (Bug#10909).
2062
2063 * simple.el (shell-command-on-region): Doc fix.
2064 (read-only-mode): Doc fix.
2065
2066 2012-09-22 Eli Zaretskii <eliz@gnu.org>
2067
2068 * emacs-lisp/timer.el (run-with-idle-timer)
2069 (timer-activate-when-idle): Warn against reinvoking an idle timer
2070 from within its own timer action. (Bug#12447)
2071
2072 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2073
2074 * cus-start.el (window-combination-limit): Add new optional
2075 values.
2076 * window.el (temp-buffer-window-show)
2077 (window--try-to-split-window): Handle new values of
2078 window-combination-limit (Bug#1806).
2079 (split-window): Test window-combination-limit for t instead of
2080 non-nil.
2081 (display-buffer-at-bottom): New buffer display action function.
2082 * help.el (temp-buffer-resize-regexps): New option.
2083 (temp-buffer-resize-mode): Rewrite doc-string.
2084 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
2085 Don't resize reused window. Suggested by Glenn Morris.
2086
2087 2012-09-22 Stefan Merten <smerten@oekonux.de>
2088
2089 * textmodes/rst.el: Revamp section title faces.
2090 (rst-official-version)
2091 (rst-package-emacs-version-alist): Sync with official version
2092 V1.4.0.
2093 (rst-faces-defaults, rst-set-level-default)
2094 (rst-level-face-max, rst-level-face-base-color)
2095 (rst-level-face-base-light, rst-level-face-format-light)
2096 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
2097 (rst-adornment-faces-alist): Match new setup.
2098 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
2099 (rst-level-5, rst-level-6): New faces.
2100
2101 2012-09-22 Chong Yidong <cyd@gnu.org>
2102
2103 * simple.el (undo): Handle indirect buffers (Bug#8207).
2104
2105 2012-09-21 Leo Liu <sdl.web@gmail.com>
2106
2107 IDO: Disable match re-ordering for buffer switching.
2108 * ido.el (ido-buffer-disable-smart-matches): New variable.
2109 (ido-set-matches-1): Use it. (Bug#2042)
2110
2111 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
2112
2113 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
2114 Fix 2011-05-17 change. (Bug#12418)
2115
2116 2012-09-21 Leo Liu <sdl.web@gmail.com>
2117
2118 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
2119
2120 2012-09-21 Glenn Morris <rgm@gnu.org>
2121
2122 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
2123 Be more robust about locating simple.el.
2124
2125 2012-09-21 Glenn Morris <rgm@gnu.org>
2126
2127 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
2128
2129 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
2130
2131 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
2132
2133 2012-09-20 Juri Linkov <juri@jurta.org>
2134
2135 * replace.el (query-replace-read-from): Use `read-regexp' instead
2136 of `read-from-minibuffer' when `regexp-flag' is non-nil.
2137 (occur-read-primary-args): Use `read-regexp' instead of
2138 `read-string'.
2139 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
2140 `read-from-minibuffer'.
2141 * isearch.el (isearch-occur): Use `read-regexp' instead of
2142 `read-string'.
2143 * dired.el (dired-read-regexp): Use `read-regexp' instead of
2144 `read-from-minibuffer'.
2145 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
2146 of `read-string'. (Bug#7567)
2147
2148 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
2149 and allow accepting a list of strings prepended to a list of
2150 standard default values. Doc fix. (Bug#12321)
2151
2152 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
2153
2154 * replace.el (read-regexp): Don't add ": " when PROMPT already
2155 ends with a colon and space. (Bug#12321)
2156
2157 2012-09-20 Tassilo Horn <tsdh@gnu.org>
2158
2159 * doc-view.el (doc-view-display): Better fix for the cl-assertion
2160 error.
2161
2162 2012-09-20 Stefan Merten <smerten@oekonux.de>
2163
2164 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
2165 Fixes feature request bug#11711.
2166 (rst-mode): Create `imenu-create-index-function'.
2167 (rst-get-stripped-line): Delete after refactoring.
2168 (rst-section-tree, rst-section-tree-rec)
2169 (rst-section-tree-point): Refactor and document properly.
2170 (rst-imenu-find-adornments-for-position)
2171 (rst-imenu-convert-cell, rst-imenu-create-index):
2172 New function.
2173
2174 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2175
2176 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
2177 (macroexp--expand-all): Use it.
2178 (macroexp--funcall-and-return): Remove by folding it into its sole
2179 caller (macroexp--warn-and-return).
2180 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
2181 Use macroexp--obsolete-warning.
2182
2183 * calc/calc.el: Fix last change by removing the whole chunk, since it
2184 was only needed back when Calc was not bundled.
2185
2186 2012-09-20 Martin Rudalics <rudalics@gmx.at>
2187
2188 * emacs-lisp/debug.el (debug): Restore assignment to
2189 debugger-old-buffer removed on 2012-09-08.
2190
2191 2012-09-20 Juri Linkov <juri@jurta.org>
2192
2193 * dired-aux.el (dired-diff): Remove (require 'diff) since
2194 `diff-latest-backup-file' is now autoloaded.
2195
2196 2012-09-20 Chong Yidong <cyd@gnu.org>
2197
2198 * vc/diff.el (diff-latest-backup-file): Autoload.
2199
2200 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2201
2202 * calc/calc.el: Remove redundant autoload shape check.
2203 (sel-mode): Don't defvar.
2204 (calc-get-stack-element): Add `sel-mode' arg instead.
2205 (calc-top, calc-top-list): Pass it this additional argument.
2206 * calc/calc-store.el (calc-store-map):
2207 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
2208 (calc-map-equation, calc-outer-product, calc-inner-product):
2209 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
2210
2211 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
2212
2213 2012-09-19 Juri Linkov <juri@jurta.org>
2214
2215 * dired-aux.el (dired-diff): Add (require 'diff) because
2216 `diff-latest-backup-file' is not autoloaded.
2217 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
2218 of `dired-get-filename' to t to not report error when there is
2219 no default file on the current line.
2220
2221 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2222
2223 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
2224 macroexp--eval-if-compile.
2225 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
2226 (macroexp--expand-all): Use them (bug#12371).
2227
2228 * doc-view.el (doc-view-guess-paper-size)
2229 (doc-view-scale-bounding-box): Fix unbound `caddr'.
2230
2231 2012-09-19 Tassilo Horn <tsdh@gnu.org>
2232
2233 New feature: set optimal slice from BoundingBox information.
2234 * doc-view.el (doc-view-mode-map): Add keybinding.
2235 (doc-view-menu): Add menu entry.
2236 (doc-view-set-slice): Adapt docstring.
2237 (doc-view-get-bounding-box, doc-view-guess-paper-size)
2238 (doc-view-scale-bounding-box)
2239 (doc-view-set-slice-from-bounding-box): New functions.
2240 (doc-view-paper-sizes): New defvar.
2241
2242 2012-09-19 Glenn Morris <rgm@gnu.org>
2243
2244 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
2245 (byte-compile-log-warning): Autoload. (Bug#12371)
2246
2247 * calendar/calendar.el (calendar-american-month-header)
2248 (calendar-european-month-header, calendar-iso-month-header)
2249 (calendar-month-header): New options.
2250 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
2251 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
2252
2253 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
2254
2255 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
2256
2257 2012-09-18 Juri Linkov <juri@jurta.org>
2258
2259 * dired-aux.el (dired-diff): Restore original functionality of
2260 getting the default value, but keep new feature of using the
2261 latest existing backup file (`diff-latest-backup-file').
2262
2263 2012-09-18 Juri Linkov <juri@jurta.org>
2264
2265 * dired.el (dired-mark): If the region is active in Transient Mark
2266 mode, mark all files in the active region. Doc fix.
2267 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
2268 Doc fix. (Bug#10624)
2269
2270 2012-09-18 Juri Linkov <juri@jurta.org>
2271
2272 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
2273 attributes for M-n are pulled from the file at point.
2274 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
2275 Suggested by Drew Adams. (Bug#10624)
2276
2277 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
2278
2279 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
2280 whitespace after "end".
2281 (ruby-do-end-to-brace): Collapse block to one line if it fits
2282 within fill-column.
2283
2284 2012-09-18 Martin Rudalics <rudalics@gmx.at>
2285
2286 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
2287 value.
2288 (debug): Don't remove debugger window when debugger is expected
2289 to be back.
2290
2291 2012-09-18 Chong Yidong <cyd@gnu.org>
2292
2293 * custom.el (defface): Doc fix.
2294
2295 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
2296
2297 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
2298
2299 * progmodes/compile.el (compilation-start): Use compilation-always-kill
2300 to initialize query-on-exit; then test that instead (bug#12288).
2301
2302 2012-09-17 Stefan Merten <smerten@oekonux.de>
2303
2304 * textmodes/rst.el: Add support for `testcover'.
2305 (rst-defcustom-testcover, rst-testcover-add-compose)
2306 (rst-testcover-add-1value): New functions.
2307 (rst-portable-mark-active-p): Replace by `use-region-p'.
2308 (rst-update-section, rst-classify-adornment)
2309 (rst-find-title-line): Mark `1value' forms.
2310 (rst-classify-adornment): Remove superfluous form.
2311 (rst-update-section, rst-get-adornments-around)
2312 (rst-adornment-complete-p, rst-get-next-adornment)
2313 (rst-adjust, rst-promote-region)
2314 (rst-display-adornments-hierarchy, rst-straighten-adornments)
2315 (rst-find-pfx-in-region, rst-section-tree-rec)
2316 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
2317 (rst-toc-node, rst-toc, rst-forward-section)
2318 (rst-iterate-leftmost-paragraphs)
2319 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
2320 (rst-bullet-list-region)
2321 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
2322 (rst-compile-find-conf, rst-compile)
2323 (rst-repeat-last-character): Fix style.
2324
2325 2012-09-17 Chong Yidong <cyd@gnu.org>
2326
2327 * comint.el (comint--complete-file-name-data): Don't add a space
2328 if the status is `sole'; that adds a gratuitous space in the
2329 completion-cycling case (Bug#12092).
2330
2331 * pcomplete.el (pcomplete-completions-at-point): Likewise.
2332
2333 2012-09-17 Richard Stallman <rms@gnu.org>
2334
2335 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
2336 only in the mime-shown mode, not in raw mode.
2337 (rmail-mime): Toggle off mime by displaying the message without
2338 mime processing. (Bug#12305)
2339
2340 * mail/rmail.el (rmail-retry-failure):
2341 Turn off mime processing first. (Bug#12037)
2342
2343 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
2344
2345 2012-09-17 Chong Yidong <cyd@gnu.org>
2346
2347 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
2348 (shell-dynamic-complete-functions): Convert to defcustom.
2349 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
2350
2351 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
2352 * comint.el (comint-prompt-read-only):
2353 * custom.el (defcustom):
2354 * hi-lock.el (hi-lock-mode):
2355 * ibuffer.el (ibuffer-formats):
2356 * ielm.el (ielm-prompt-read-only):
2357 * novice.el (disable-command):
2358 * saveplace.el (toggle-save-place):
2359 * speedbar.el (speedbar-supported-extension-expressions):
2360 * startup.el (auto-save-list-file-prefix, init-file-user)
2361 (after-init-hook, inhibit-startup-echo-area-message):
2362 * strokes.el (strokes-help):
2363 * time-stamp.el (time-stamp):
2364 * calendar/calendar.el (calendar, diary-file):
2365 * calendar/diary-lib.el (diary-mail-entries, diary)
2366 (diary-list-entries-hook):
2367 * calendar/holidays.el (holidays, calendar-holidays):
2368 * calendar/lunar.el (lunar-phases):
2369 * calendar/solar.el (sunrise-sunset):
2370 * emulation/edt.el (edt-load-keys):
2371 * emulation/viper.el (viper-mode):
2372 * eshell/em-alias.el (eshell-command-aliases-list):
2373 * eshell/esh-util.el (eshell-convert-numeric-arguments):
2374 * international/ogonek.el (ogonek-information):
2375 * net/tramp-cmds.el (tramp-bug):
2376 * net/quickurl.el (quickurl-reread-hook-postfix):
2377 * play/decipher.el (decipher-font-lock-keywords):
2378 * progmodes/cc-styles.el (c-set-style):
2379 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
2380 * progmodes/inf-lisp.el (inferior-lisp-prompt):
2381 * progmodes/octave-mod.el (octave-mode):
2382 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
2383 * progmodes/verilog-mode.el (verilog-read-defines):
2384 * textmodes/two-column.el (2C-mode): Likewise.
2385
2386 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
2387
2388 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
2389 that holds many addresses.
2390
2391 2012-09-16 Chong Yidong <cyd@gnu.org>
2392
2393 * align.el (align-areas): Call the indication function with
2394 positions instead of markers for arguments (Bug#12343).
2395
2396 * files.el (parse-colon-path): Use split-string (Bug#12351).
2397
2398 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
2399 (display-buffer-function): Mark as obsolete.
2400
2401 * progmodes/compile.el (compilation-parse-errors): Accept list
2402 values similar to font-lock-keywords (Bug#12136).
2403 Suggested by Oleksandr Manzyuk.
2404 (compilation-error-regexp-alist): Doc fix.
2405
2406 2012-09-15 Glenn Morris <rgm@gnu.org>
2407
2408 * version.el (emacs-bzr-version-bzr): New function.
2409 (emacs-bzr-get-version): Add optional EXTERNAL argument.
2410
2411 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
2412 checkouts, check the parent dirstate matches the branch.
2413 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
2414 empty string.
2415
2416 * version.el (emacs-bzr-version): Doc fix.
2417 (emacs-bzr-version-dirstate): New function.
2418 (emacs-bzr-get-version): For lightweight checkouts, if the parent
2419 is local try and check that it matches the branch. If not, just
2420 use dirstate information. (Bug#12441)
2421
2422 2012-09-14 Juri Linkov <juri@jurta.org>
2423
2424 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
2425 (Bug#12399)
2426
2427 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2428
2429 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
2430
2431 * emacs-lisp/edebug.el: Miscellaneous cleanup.
2432 Remove obsolete byte-compiler hack that tried to silence some warnings.
2433 (edebug-submit-bug-report): Remove.
2434 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
2435 Remove aliases, use the un-prefixed name instead.
2436 (edebug-pop-to-buffer): Consider other frames.
2437 (edebug-original-read):: Make it more obvious that it's always defined.
2438 (edebug--make-form-data-entry, edebug--form-data-name)
2439 (edebug--form-data-begin, edebug--form-data-end): Rename from the
2440 single-dashed name, and implement with cl-defstruct.
2441 (edebug-set-form-data-entry): Use the standard accessors.
2442 (edebug-make-top-form-data-entry): Use push.
2443 (edebug-no-match): Drop useless `funcall'.
2444 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
2445 to functions.
2446 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
2447 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
2448 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
2449 (easy-menu-define, with-custom-print): Remove redundant specs.
2450 (edebug-outside-overriding-local-map)
2451 (edebug-outside-overriding-terminal-local-map): Remove, unused.
2452 (edebug--display): Bind unread-command-events directly to nil rather
2453 than binding it to unread-command-events and later setting it to nil.
2454 (edebug--display): Kill edebug-eval-buffer here...
2455 (edebug--recursive-edit): ...rather than here.
2456 Bind standard-output and standard-input.
2457 (edebug-eval): Check cl-macroexpand-all is fboundp.
2458 (edebug-temp-display-freq-count): Fix last change.
2459
2460 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
2461 * subr.el (noreturn, 1value): Add `debug' spec.
2462 * emacs-lisp/advice.el: Require cl-lib.
2463 (ad-copy-tree): Remove, use copy-tree instead.
2464 (ad-dolist): Remove use dolist or cl-dolist instead.
2465 (ad-do-return): Remove, use cl-return instead.
2466 (defadvice): Add `debug' spec.
2467
2468 2012-09-13 Juri Linkov <juri@jurta.org>
2469
2470 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
2471 (Bug#12399)
2472
2473 2012-09-13 Glenn Morris <rgm@gnu.org>
2474
2475 * calc/calc.el (math-compose-expr):
2476 * calc/calc-ext.el (math-compose-expr):
2477 * progmodes/cc-defs.el (cl-macroexpand-all):
2478 * progmodes/cc-langs.el (delete-duplicates, mapcan)
2479 (cl-macroexpand-all): Update declarations.
2480
2481 * vc/vc.el: No need to require ediff.
2482 (ediff-load-version-control): Declare.
2483 (ediff-vc-internal): Fix declaration.
2484 (vc-version-ediff): Require ediff.
2485
2486 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
2487
2488 Use a more backwards-compatible timer format (Bug#12430).
2489 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
2490 being right after USECS, as that better supports old code that
2491 inadvisedly looked directly at the timer vector.
2492
2493 2012-09-13 Kenichi Handa <handa@gnu.org>
2494
2495 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
2496 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
2497 `coding-priority' property of these language environment.
2498
2499 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
2500
2501 Fix glitches caused by addition of psec to timers (Bug#12430).
2502 * image.el (image-animate-timer):
2503 * time.el (display-time-world-timer):
2504 Use timer--function and timer--args rather than raw access to
2505 timer vector.
2506
2507 2012-09-13 Glenn Morris <rgm@gnu.org>
2508
2509 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
2510 If not compiling a file, try using load-file-name.
2511
2512 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
2513
2514 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
2515 Fix last change.
2516 (edebug-update-eval-list): Use `push'.
2517
2518 * emacs-lisp/edebug.el: Use lexical-binding.
2519 Remove the "edebug-" prefix from non-dynamically-scoped variables.
2520 Mark unused args with underscore.
2521 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
2522 (edebug-form-data): Use defvar-local.
2523 (edebug-make-before-and-after-form, edebug-make-after-form):
2524 Use backquote.
2525 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
2526 Not dynamically scoped any more.
2527 (edebug--enter-trace): Add arguments `function' and `args'.
2528 Rename from edebug-enter-trace.
2529 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
2530 (edebug--update-coverage): Add `after-index' and `value' args.
2531 Rename from edebug-update-coverage.
2532 (edebug-slow-after): Call it accordingly.
2533 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
2534 edebug-recursive-edit.
2535 (edebug--display): Call it accordingly. Add args `value',
2536 `offset-index', and `arg-mode'. Rename from edebug-display.
2537 (edebug-debugger, edebug): Call it accordingly.
2538 (edebug-eval-display-list): Use dolist.
2539
2540 2012-09-12 Juri Linkov <juri@jurta.org>
2541
2542 * info.el (Info-search): Don't check for isearch-mode and
2543 isearch-regexp before let-binding search-spaces-regexp to
2544 Info-search-whitespace-regexp.
2545 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
2546 search-whitespace-regexp if isearch-lax-whitespace or
2547 isearch-regexp-lax-whitespace is non-nil.
2548 (Info-mode): Don't set local variable search-whitespace-regexp.
2549 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
2550
2551 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2552
2553 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
2554 (debugger-env-macro): Remove support for unread-command-char.
2555
2556 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
2557 the temporary map re-appearing on emulation-mode-map-alists.
2558
2559 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
2560 since 22.1.
2561
2562 * ehelp.el (with-electric-help): Accept functions in
2563 electric-help-form-to-execute.
2564 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
2565 And replace unread-command-char -> unread-command-events.
2566
2567 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
2568
2569 Sync with Tramp 2.2.6.
2570
2571 * net/tramp.el (tramp-accept-process-output): Don't use
2572 JUST-THIS-ONE in the XEmacs case.
2573
2574 * net/trampver.el: Update release number.
2575
2576 2012-09-12 Martin Rudalics <rudalics@gmx.at>
2577
2578 * emacs-lisp/debug.el (debugger-previous-window-height):
2579 New variable.
2580 (debug): When debugger-jumping-flag is non-nil try to restore
2581 height of debugger window. (Bug#8789)
2582
2583 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2584
2585 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
2586 overriding-local-map and pre/post-command-hook here.
2587 (edebug-recursive-edit): Do it here instead (bug#12345).
2588 (edebug-outside-unread-command-char): Remove all uses of
2589 unread-command-char.
2590
2591 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
2592 inhibit-debugger is bound instead.
2593
2594 2012-09-11 Bastien Guerry <bzg@gnu.org>
2595
2596 * subr.el (set-temporary-overlay-map): Add a docstring.
2597 (Bug#12346)
2598
2599 2012-09-11 Bastien Guerry <bzg@gnu.org>
2600
2601 * minibuffer.el (completion-table-subvert): Fix docstring.
2602 (Bug#12347)
2603
2604 2012-09-11 Bastien Guerry <bzg@gnu.org>
2605
2606 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
2607
2608 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
2609
2610 * progmodes/sql.el: Version 3.1
2611 (sql-db2-escape-newlines): New variable.
2612 (sql-escape-newlines-filter): Use it.
2613
2614 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
2615
2616 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
2617
2618 2012-09-10 Dan Nicolaescu <dann@gnu.org>
2619
2620 * vc/diff-mode.el (diff-mode-menu):
2621 Bind diff-remove-trailing-whitespace.
2622
2623 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2624
2625 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
2626 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
2627 (emacs-lisp-byte-code-mode): New functions.
2628 (eval-sexp-add-defvars): Don't skip defvars in column >0.
2629 (eval-defun-2): Remove bogus interactive spec.
2630 (lisp-indent-line): Remove redundant whole-exp code, now done in
2631 indent-according-to-mode.
2632 (save-match-data): Remove redundant indent data.
2633
2634 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
2635 Use `declare'.
2636
2637 2012-09-09 Juri Linkov <juri@jurta.org>
2638
2639 * replace.el (replace-regexp-lax-whitespace): New defcustom.
2640 (replace-lax-whitespace, query-replace-regexp)
2641 (query-replace-regexp-eval, replace-regexp): Doc fix.
2642 (perform-replace, replace-highlight): Let-bind
2643 isearch-lax-whitespace to replace-lax-whitespace and
2644 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
2645
2646 * isearch.el (isearch-query-replace): Let-bind
2647 replace-lax-whitespace to isearch-lax-whitespace and
2648 replace-regexp-lax-whitespace to
2649 isearch-regexp-lax-whitespace. (Bug#10885)
2650
2651 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
2652
2653 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
2654
2655 2012-09-09 Alan Mackenzie <acm@muc.de>
2656
2657 * progmodes/cc-engine.el (c-state-cache-init):
2658 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
2659 (c-record-parse-state-state):
2660 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
2661
2662 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
2663
2664 * register.el (register-separator): Rename from
2665 separator-register. All uses changed. Doc fix.
2666 (register): Fix version.
2667
2668 2012-09-09 Chong Yidong <cyd@gnu.org>
2669
2670 * replace.el (query-replace-map): Bind four new symbols for
2671 requesting window scrolling.
2672
2673 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
2674 query-replace-map (Bug#8948).
2675
2676 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
2677
2678 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
2679 since they are now in query-replace-map.
2680
2681 * window.el (scroll-other-window-down): Make the arg optional.
2682
2683 2012-09-09 Chong Yidong <cyd@gnu.org>
2684
2685 * files.el (hack-local-variables-confirm): Use quit-window to kill
2686 the *Local Variables* buffer.
2687
2688 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
2689
2690 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
2691 not just expect to be at its beginning. Adjust callees.
2692 Succeed when do-end block has no space before the pipe character.
2693 (ruby-brace-to-do-end): When the original block is one-liner,
2694 convert to multiline. Reindent the result.
2695
2696 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
2697
2698 * register.el (register): New group.
2699 (separator-register): New user option.
2700 (increment-register): Route it to `append-to-register', if
2701 register contains text. Implication is that `C-x r +' can now be
2702 used for appending to a text register (bug#12217).
2703 (append-to-register, prepend-to-register): Add separator based on
2704 `separator-register'.
2705
2706 2012-09-08 Alan Mackenzie <acm@muc.de>
2707
2708 AWK Mode: make auto-newline work when there's "==" in the pattern.
2709 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
2710 correctly.
2711 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
2712 Test more rigorously for "=" token.
2713
2714 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
2715
2716 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
2717 Only fail when reached LIMIT.
2718
2719 2012-09-08 Chong Yidong <cyd@gnu.org>
2720
2721 * dired.el (dired-mode-map): Don't bind M-=.
2722
2723 * dired-aux.el (dired-diff): Use backup file as default.
2724
2725 2012-09-08 Drew Adams <drew.adams@oracle.com>
2726
2727 * subr.el (add-to-history): Fix delete usage (Bug#12314).
2728
2729 2012-09-08 Chong Yidong <cyd@gnu.org>
2730
2731 * subr.el (syntax-after, syntax-class): Doc fix.
2732
2733 2012-09-08 Martin Rudalics <rudalics@gmx.at>
2734
2735 * window.el (display-buffer-in-previous-window): New buffer
2736 display action function.
2737
2738 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
2739 (debugger-previous-window): New variable.
2740 (debug): Rewrite using display-buffer-in-previous-window,
2741 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
2742
2743 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2744
2745 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
2746
2747 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
2748
2749 * progmodes/python.el (python-shell-send-string):
2750 When default-directory is remote, create temp file on remote
2751 filesystem.
2752 (python-shell-send-file): When file is remote, pass local view of
2753 file paths to remote Python interpreter. (Bug#12340)
2754
2755 2012-09-07 Chong Yidong <cyd@gnu.org>
2756
2757 * window.el (switch-to-buffer): Doc fix (Bug#12181).
2758
2759 * files.el (after-find-file): Don't fail on a read-only buffer if
2760 require-final-newline is `visit' or `visit-save' (Bug#11156).
2761
2762 * subr.el (read-char-choice): Allow quitting via ESC ESC.
2763
2764 * userlock.el (ask-user-about-supersession-threat):
2765 Use read-char-choice (Bug#12093).
2766
2767 2012-09-07 Chong Yidong <cyd@gnu.org>
2768
2769 * subr.el (buffer-narrowed-p): New function.
2770
2771 * ses.el (ses-widen):
2772 * simple.el (count-words--buffer-message):
2773 * net/browse-url.el (browse-url-of-buffer): Use it.
2774
2775 * simple.el (count-words-region): Don't signal an error if there
2776 is a non-nil prefix arg and the mark is not set.
2777
2778 * help.el (describe-key-briefly): Allow the message to be seen
2779 when invoked from the minibuffer (Bug#7014).
2780
2781 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
2782
2783 * progmodes/ruby-mode.el (ruby-end-of-defun)
2784 (ruby-beginning-of-defun): Simplify, allow indentation before
2785 block beginning and end keywords.
2786 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
2787 (ruby-end-of-defun): Expect that the point is at the beginning of
2788 the defun.
2789
2790 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2791
2792 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
2793 (bug#12367).
2794 (cl--make-usage-args): Strip _ from argument names.
2795
2796 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2797
2798 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
2799 obsolete alias speedbar-key-map.
2800 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
2801 (vhdl-index-menu-init): Don't use obsolete variable
2802 font-lock-maximum-size.
2803
2804 2012-09-06 Chong Yidong <cyd@gnu.org>
2805
2806 * frame.el (window-system-version): Mark as obsolete.
2807
2808 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
2809 of obsolete variable speedbar-key-map.
2810
2811 2012-09-06 Juri Linkov <juri@jurta.org>
2812
2813 * replace.el (replace-lax-whitespace): New defcustom.
2814 (query-replace, query-replace-regexp, query-replace-regexp-eval)
2815 (replace-string, replace-regexp): Mention it in docstrings.
2816 (perform-replace, replace-highlight): Let-bind
2817 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
2818 to the values of replace-lax-whitespace and regexp-flag.
2819 Don't let-bind search-whitespace-regexp. (Bug#10885)
2820
2821 * isearch.el (isearch-query-replace): Let-bind
2822 replace-lax-whitespace instead of let-binding
2823 replace-search-function and replace-re-search-function.
2824 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
2825 and isearch-regexp-lax-whitespace to lazy-highlight variables.
2826 (isearch-toggle-symbol): Set isearch-regexp to nil
2827 in isearch-word mode (like in isearch-toggle-word).
2828
2829 2012-09-06 Juri Linkov <juri@jurta.org>
2830
2831 * replace.el (replace-search-function)
2832 (replace-re-search-function): Set default values to nil.
2833 (perform-replace): Let-bind isearch-related variables based on
2834 replace-related values, call `isearch-search-fun' and let-bind
2835 the result to `search-function'. Remove code that sets
2836 `search-function' and `search-string' separately for
2837 `delimited-flag'.
2838 (replace-highlight): Add new argument `delimited-flag' and
2839 rename other arguments to the names used in `perform-replace'.
2840 Let-bind `isearch-word' to the argument `delimited-flag'.
2841 (Bug#10885, bug#10887)
2842
2843 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
2844
2845 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
2846 ruby-beginning-of-indent, simplify, allow all keywords to have
2847 indentation before them.
2848 (ruby-beginning-of-indent): Adjust for above. Search until the
2849 found point is not inside a string or comment.
2850 (ruby-font-lock-keywords): Allow symbols to start with "@"
2851 character, give them higher priority than variables.
2852 (ruby-syntax-propertize-function)
2853 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
2854 matchers. Expression expansions are not comments when inside a
2855 string, and there comment syntax status is irrelevant.
2856 (ruby-match-expression-expansion): New function. Check that
2857 expression expansion is inside a string, and it's not escaped.
2858 (ruby-font-lock-keywords): Use it.
2859
2860 2012-09-05 Martin Rudalics <rudalics@gmx.at>
2861
2862 * help.el (temp-buffer-max-height): New default value.
2863 (temp-buffer-resize-frames): New option.
2864 (resize-temp-buffer-window): Optionally resize frame.
2865
2866 * window.el (fit-frame-to-buffer-bottom-margin): New option.
2867 (fit-frame-to-buffer): New function.
2868
2869 2012-09-05 Glenn Morris <rgm@gnu.org>
2870
2871 * emulation/cua-rect.el (cua--init-rectangles):
2872 * textmodes/picture.el (picture-mode-map):
2873 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
2874 like forward-char and backward-char. (Bug#12317)
2875
2876 2012-09-05 Leo Liu <sdl.web@gmail.com>
2877
2878 * progmodes/flymake.el (flymake-warning-re): New variable.
2879 (flymake-parse-line): Use it.
2880
2881 2012-09-05 Glenn Morris <rgm@gnu.org>
2882
2883 * calendar/holidays.el (holiday-christian-holidays):
2884 Rename an entry. (Bug#12289)
2885
2886 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2887
2888 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
2889 (bug#12222).
2890
2891 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2892
2893 * loadup.el: Load macroexp. Remove hack.
2894 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
2895 (macroexp--expand-all): Use it to get better warnings.
2896 (macroexp--backtrace, macroexp--trim-backtrace-frame)
2897 (internal-macroexpand-for-load): New functions.
2898 (macroexp--pending-eager-loads): New var.
2899 (emacs-startup-hook): New hack to replace one in loadup.el.
2900 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
2901 (cl--compiler-macro-cXXr): Move to top, before they can be used.
2902 (cl-psetf): Simplify.
2903 (cl-defstruct): Add indent rule.
2904
2905 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
2906
2907 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
2908 over `user-mail-address' for the SMTP MAIL FROM envelope.
2909 (smtpmail-via-smtp): Ditto.
2910
2911 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
2912
2913 * progmodes/ruby-mode.el: Clean up keybindings.
2914 (ruby-mode-map): Don't bind ruby-electric-brace,
2915 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
2916 backward-kill-word, reindent-then-newline-and-indent.
2917 (ruby-mark-defun): Remove.
2918 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
2919 (ruby-mode): Set local beginning-of-defun-function and
2920 end-of-defun-function values.
2921
2922 2012-09-03 Martin Rudalics <rudalics@gmx.at>
2923
2924 * window.el (temp-buffer-window-setup-hook)
2925 (temp-buffer-window-show-hook): New hooks.
2926 (temp-buffer-window-setup, temp-buffer-window-show)
2927 (with-temp-buffer-window): New functions.
2928 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
2929 (special-display-popup-frame): Make sure the window used shows BUFFER.
2930
2931 * help.el (temp-buffer-resize-mode): Fix doc-string.
2932 (resize-temp-buffer-window): New optional argument WINDOW.
2933
2934 * files.el (recover-file, save-buffers-kill-emacs):
2935 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
2936
2937 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
2938
2939 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
2940 remote definition of `default-directory', ensure we can connect.
2941
2942 2012-09-02 Juri Linkov <juri@jurta.org>
2943
2944 Toggle whitespace matching mode with M-s SPC.
2945 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
2946
2947 * isearch.el (search-whitespace-regexp): Doc fix.
2948 Remove cons cell customization.
2949 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
2950 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
2951 New variables.
2952 (isearch-forward, isearch-forward-regexp): Doc fix.
2953 (isearch-toggle-lax-whitespace): New command.
2954 (search-forward-lax-whitespace, search-backward-lax-whitespace)
2955 (re-search-forward-lax-whitespace)
2956 (re-search-backward-lax-whitespace): New functions.
2957 (isearch-whitespace-regexp): Remove function.
2958 (isearch-query-replace): Let-bind replace-search-function and
2959 replace-re-search-function.
2960 (isearch-occur): Let-bind search-spaces-regexp according to the
2961 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
2962 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
2963 condition for C-q SPC.
2964 (isearch-search-fun-default): Use new functions mentioned above.
2965 (isearch-search-forward, isearch-search-backward): Remove functions.
2966 (isearch-search): Don't let-bind search-spaces-regexp.
2967 (isearch-lazy-highlight-space-regexp): Remove variable.
2968 (isearch-lazy-highlight-lax-whitespace)
2969 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
2970 (isearch-lazy-highlight-new-loop): Use them.
2971 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
2972
2973 2012-09-02 Chong Yidong <cyd@gnu.org>
2974
2975 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
2976
2977 2012-09-02 Glenn Morris <rgm@gnu.org>
2978
2979 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
2980
2981 2012-09-01 Glenn Morris <rgm@gnu.org>
2982
2983 * term.el: Tidy up menu definitions.
2984 (term-mode-map): Use easymenu for In/Out, Complete menus.
2985 (term-pager-break-map): Initialize in the defvar.
2986 (term-terminal-menu, term-signals-menu): Define with easymenu.
2987 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
2988 (term-pager-menu): New, extracted from term-process-pager.
2989 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
2990 (term-update-mode-line): Propertize line/char and page items.
2991 (term-process-pager): Move keymap initialization elsewhere.
2992
2993 2012-09-01 Martin Rudalics <rudalics@gmx.at>
2994
2995 * window.el (switch-to-prev-buffer): Handle additional values of
2996 BURY-OR-KILL argument. Don't switch in minibuffer window.
2997 (switch-to-next-buffer): Don't switch in minibuffer window.
2998 (quit-restore-window): New function based on quit-window.
2999 Handle additional values of former KILL argument.
3000 (quit-window): Call quit-restore-window with appropriate
3001 interpretation of KILL argument.
3002 (display-buffer-below-selected): New buffer display action
3003 function.
3004
3005 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
3006
3007 * minibuffer.el (completion-at-point-functions): Complete docstring
3008 (bug#12254).
3009
3010 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
3011
3012 Better seed support for (random).
3013 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
3014 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
3015 * play/mpuz.el, play/tetris.el, play/zone.el:
3016 * calc/calc-comb.el (math-init-random-base):
3017 * play/blackbox.el (bb-init-board):
3018 * play/life.el (life):
3019 * server.el (server-use-tcp):
3020 * type-break.el (type-break):
3021 Remove unnecessary call to (random t).
3022 * net/sasl.el (sasl-unique-id-function):
3023 Change (random t) to (random), now that the latter is more random.
3024 * play/life.el (life-initialized): Remove no-longer-needed var.
3025
3026 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
3027
3028 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
3029 Consider frame's buffer predicate when choosing the buffer.
3030 (Bug#12081)
3031
3032 2012-08-30 Richard Stallman <rms@gnu.org>
3033
3034 * simple.el (special-mode-map): Delete binding for `z'.
3035
3036 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
3037
3038 * progmodes/compile.el (compilation-always-kill): Doc fix.
3039
3040 2012-08-30 Chong Yidong <cyd@gnu.org>
3041
3042 * window.el (display-buffer-reuse-frames): Make the obsolescence
3043 message more informative.
3044
3045 2012-08-30 Glenn Morris <rgm@gnu.org>
3046
3047 * paren.el (show-paren-delay):
3048 Add a :set function. Doc fix. (Bug#12297)
3049
3050 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
3051
3052 * progmodes/compile.el (compilation-always-kill): New var.
3053 (compilation-start): Use it.
3054
3055 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
3056
3057 * simple.el (read-only-mode): Move from files.el for bootstrapping.
3058 * files.el (read-only-mode): Move to simple.el.
3059
3060 * files.el (read-only-mode): New minor mode.
3061 (toggle-read-only): Use it and mark obsolete.
3062 (find-file--read-only):
3063 * vc/vc.el (vc-next-action, vc-checkout):
3064 * vc/vc-cvs.el (vc-cvs-checkout):
3065 * obsolete/vc-mcvs.el (vc-mcvs-update):
3066 * ffap.el (ffap--toggle-read-only): Update callers.
3067
3068 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
3069
3070 * eshell/esh-ext.el (eshell-external-command): Do not examine
3071 remote shell scripts.
3072 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
3073
3074 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
3075 "/usr/local/sbin".
3076
3077 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3078
3079 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
3080
3081 2012-08-28 Leo Liu <sdl.web@gmail.com>
3082
3083 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
3084 completion-at-point. (Bug#12220)
3085
3086 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
3087
3088 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
3089
3090 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3091
3092 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
3093 be buffer-local; add delete-trailing-whitespace (bug#12259).
3094
3095 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
3096
3097 * progmodes/hideif.el (hif-compress-define-list):
3098 Fix typo. (Bug#11951)
3099
3100 2012-08-28 Dan Nicolaescu <dann@gnu.org>
3101
3102 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
3103 buffer local setting.
3104
3105 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
3106 rcirc-encode-coding-system.
3107
3108 2012-08-28 Leo Liu <sdl.web@gmail.com>
3109
3110 * net/rcirc.el (rcirc-split-message): New function.
3111 (rcirc-send-message): Use it. (Bug#12051)
3112
3113 2012-08-28 Juri Linkov <juri@jurta.org>
3114
3115 * info.el (Info-fontify-node): Hide empty lines at the end of
3116 the node. (Bug#12272)
3117
3118 2012-08-27 Drew Adams <drew.adams@oracle.com>
3119
3120 * dired.el (dired-pop-to-buffer): Make window start at beginning
3121 of buffer (Bug#12281).
3122
3123 2012-08-26 Chong Yidong <cyd@gnu.org>
3124
3125 * window.el (special-display-regexps, special-display-frame-alist)
3126 (special-display-buffer-names, special-display-function)
3127 (display-buffer-reuse-frames): Mark as obsolete.
3128
3129 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
3130
3131 * help.el (help-print-return-message): Don't treat
3132 display-buffer-reuse-frames specially.
3133
3134 2012-08-26 Chong Yidong <cyd@gnu.org>
3135
3136 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
3137 New variable, replacing gdb-frame-parameters.
3138 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
3139 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
3140 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
3141 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
3142 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
3143 the functions directly with gdb-display-buffer-other-frame-action.
3144 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
3145 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
3146 (gdb-display-stack-buffer, gdb-display-locals-buffer)
3147 (gdb-display-registers-buffer): Define directly.
3148 (def-gdb-display-buffer): Macro deleted.
3149 (gdb-display-buffer): Remove second and third args, callers don't
3150 use them. Defer to the default display-buffer behavior, apart
3151 from making windows dedicated.
3152 (gdb-setup-windows): Don't call display-buffer unnecessarily.
3153
3154 * progmodes/gud.el (gud-display-line): Just use display-buffer.
3155
3156 * window.el (display-buffer-pop-up-frame): Handle a
3157 pop-up-frame-parameters alist entry.
3158 (display-buffer): Document it.
3159
3160 2012-08-26 Chong Yidong <cyd@gnu.org>
3161
3162 * isearch.el (search-whitespace-regexp): Make string and nil
3163 values apply to both ordinary and regexp search. Allow a cons
3164 cell value to distinguish between the two.
3165 (isearch-whitespace-regexp, isearch-search-forward)
3166 (isearch-search-backward): New functions.
3167 (isearch-occur, isearch-search-fun-default, isearch-search)
3168 (isearch-lazy-highlight-new-loop): Use them.
3169 (isearch-forward, isearch-forward-regexp): Doc fix.
3170
3171 2012-08-26 Chong Yidong <cyd@gnu.org>
3172
3173 * faces.el (help-argument-name): Always inherit from italic
3174 (Bug#12213).
3175
3176 2012-08-25 Martin Rudalics <rudalics@gmx.at>
3177
3178 * window.el (window--even-window-heights): Even heights when
3179 WINDOW and the selected window form a vertical combination.
3180 (display-buffer-use-some-window): Provide that window used gets
3181 sized back by quit-window. (Bug#11880) and (Bug#12091)
3182
3183 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
3184
3185 Fix file time stamp problem with bzr and CVS (Bug#12001).
3186 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
3187 in the file's time stamp, since the version control system loses
3188 that information.
3189
3190 2012-08-22 Juri Linkov <juri@jurta.org>
3191
3192 * info.el (Info-fontify-node): Hide the suffix of the
3193 Info file name in the header line. (Bug#12187)
3194
3195 2012-08-22 Glenn Morris <rgm@gnu.org>
3196
3197 * calendar/cal-tex.el (cal-tex-weekly-common):
3198 Restore leading blank page.
3199
3200 2012-08-22 Le Wang <l26wang@gmail.com> (tiny change)
3201
3202 * misc.el (forward-to-word, backward-to-word): Activate or extend
3203 the region under `shift-select-mode'. (Bug#12231)
3204
3205 2012-08-22 Bastien Guerry <bzg@gnu.org>
3206
3207 * progmodes/executable.el (executable-prefix): Set to "#!" instead
3208 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
3209 gives details on why the space is never needed.
3210
3211 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3212
3213 * window.el (walk-window-tree, window-with-parameter):
3214 New optional argument MINIBUF to control whether these functions
3215 should run on the minibuffer window.
3216 (window-at-side-list): Don't operate on minibuffer window.
3217 (window-in-direction): Simplify and rewrite doc-string.
3218 (window--size-ignore): Rename to window--size-ignore-p.
3219 Update callers.
3220 (display-buffer-in-atom-window, window--major-non-side-window)
3221 (window--major-side-window, display-buffer-in-major-side-window)
3222 (delete-side-window, display-buffer-in-side-window):
3223 New functions.
3224 (window--side-check, window-deletable-p, delete-window)
3225 (delete-other-windows, split-window): Handle side windows and
3226 atomic windows appropriately.
3227 (window--display-buffer): Call display-buffer-record-window also
3228 when the window buffer did not change.
3229
3230 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
3231
3232 * help-fns.el (help-fns--key-bindings):
3233 Abbreviate non-symbol remap targets. (Bug#12174)
3234
3235 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3236
3237 * dired.el (dired-mark-remembered): Don't clobber point.
3238 (Bug#11795)
3239
3240 2012-08-22 Glenn Morris <rgm@gnu.org>
3241
3242 * progmodes/bug-reference.el (bug-reference): New custom group.
3243 (bug-reference-bug-regexp): Make it a defcustom.
3244
3245 2012-08-22 Daiki Ueno <ueno@unixuser.org>
3246
3247 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
3248 (js-paren-indent-offset, js-square-indent-offset)
3249 (js-curly-indent-offset): Add :safe (Bug#12257).
3250
3251 2012-08-22 Edward O'Connor <hober0@gmail.com>
3252
3253 * json.el (json-key-format): Add error properties.
3254 (json-encode-key): New function.
3255 (json-encode-hash-table, json-encode-alist, json-encode-plist):
3256 Use json-encode-key.
3257
3258 2012-08-22 Glenn Morris <rgm@gnu.org>
3259
3260 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
3261 (cal-tex-leftday, cal-tex-rightday): Remove functions.
3262 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
3263 Update for above change.
3264
3265 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
3266
3267 * cus-face.el (custom-face-attributes): Fix customize type for the
3268 :underline attribute. (Bug#11805)
3269
3270 2012-08-21 Martin Rudalics <rudalics@gmx.at>
3271
3272 * window.el (window-point-1, set-window-point-1): Remove.
3273 (window-in-direction, record-window-buffer)
3274 (set-window-buffer-start-and-point, split-window-below)
3275 (window--state-get-1, display-buffer-record-window):
3276 Replace calls to window-point-1 and set-window-point-1 by calls to
3277 window-point and set-window-point respectively.
3278
3279 2012-08-21 Glenn Morris <rgm@gnu.org>
3280
3281 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
3282 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
3283 Use it.
3284
3285 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
3286 (cal-tex-shortday): New function.
3287 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
3288 (cal-tex-cursor-filofax-daily): Use the above.
3289
3290 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
3291 New functions.
3292 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3293 (cal-tex-cursor-filofax-week): Use them.
3294
3295 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
3296 New constants.
3297 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3298 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
3299
3300 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
3301 (cal-tex-end-document): Don't rely on buffer name.
3302
3303 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
3304 Use cal-tex-vspace.
3305 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
3306 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
3307 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
3308 Use cal-tex-arg.
3309
3310 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
3311 (cal-tex-cursor-week, cal-tex-cursor-week2)
3312 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
3313 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3314 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
3315 (cal-tex-insert-preamble, cal-tex-b-document)
3316 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
3317 Improve cal-tex-cmd usage.
3318
3319 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
3320 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
3321 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
3322 (cal-tex-weekly-paper): New function.
3323 (cal-tex-cursor-week, cal-tex-cursor-week2)
3324 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
3325 (cal-tex-cursor-day): Use it.
3326
3327 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
3328 (cal-tex-cursor-filofax-week): Remove leading blank page.
3329
3330 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3331 Add autoload cookie. For now at least, don't use color, since
3332 no other cal-tex function does.
3333
3334 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
3335 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3336 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
3337
3338 2012-08-21 Juri Linkov <juri@jurta.org>
3339
3340 * info.el (Info-file-attributes): New variable.
3341 (info-insert-file-contents): Add file attributes to
3342 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
3343 `Info-toc-nodes' when previous modtime of the Info file is less
3344 than new modtime.
3345 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
3346 of info.el. (Bug#12230)
3347
3348 2012-08-20 Glenn Morris <rgm@gnu.org>
3349
3350 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
3351 * calendar/holidays.el (calendar-holiday-list):
3352 Report errors with display-warning rather than beep'n'sleep.
3353
3354 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
3355
3356 * net/tramp.el (tramp-accept-process-output): Accept only output
3357 from PROC. Otherwise, process filters and sentinels might be
3358 confused. (Bug#12145)
3359
3360 2012-08-20 Chong Yidong <cyd@gnu.org>
3361
3362 * descr-text.el (describe-text-properties-1): Use overlays-in to
3363 report on empty overlays (Bug#3322).
3364
3365 2012-08-20 Glenn Morris <rgm@gnu.org>
3366
3367 * mail/rmailout.el (rmail-output-read-file-name):
3368 Trap and report errors in rmail-output-file-alist elements.
3369
3370 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
3371 since most non-font-lock faces are not also variables).
3372
3373 2012-08-20 Edward Reingold <reingold@iit.edu>
3374
3375 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3376 New function. (Bug12160)
3377
3378 2012-08-19 Glenn Morris <rgm@gnu.org>
3379
3380 * mail/rmailout.el (rmail-output-read-file-name):
3381 Fix previous change (when the alist is nil or does not match).
3382
3383 2012-08-19 Chong Yidong <cyd@gnu.org>
3384
3385 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
3386 (Bug#12228).
3387
3388 2012-08-18 Chong Yidong <cyd@gnu.org>
3389
3390 * simple.el (yank-handled-properties): New defcustom.
3391 (yank-excluded-properties): Add font-lock-face and category.
3392 (yank): Doc fix.
3393
3394 * subr.el (remove-yank-excluded-properties):
3395 Obey yank-handled-properties. The special handling of font-lock-face
3396 and category is now done this way, instead of being hard-coded.
3397 (insert-for-yank-1): Remove font-lock-face handling.
3398 (yank-handle-font-lock-face-property)
3399 (yank-handle-category-property): New function.
3400
3401 2012-08-17 Glenn Morris <rgm@gnu.org>
3402
3403 * mail/rmailout.el (rmail-output-read-file-name):
3404 Check rmail-output-file-alist against the full message body
3405 in the correct rmail buffer. (Bug#12214)
3406
3407 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
3408
3409 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3410 Eliminate superfluous prompt. (Bug#12203)
3411
3412 2012-08-17 Chong Yidong <cyd@gnu.org>
3413
3414 * mouse.el (mouse-appearance-menu): If x-select-font returns a
3415 font spec, set the font directly (Bug#3228).
3416
3417 2012-08-17 Martin Rudalics <rudalics@gmx.at>
3418
3419 * window.el (delete-window): Fix last fix.
3420
3421 2012-08-16 Martin Rudalics <rudalics@gmx.at>
3422
3423 * window.el (window-valid-p): Move to window.c.
3424 (window-child, window-child-count, window-last-child)
3425 (window-normalize-window, window-combined-p)
3426 (window-combinations, window-atom-root, window-min-size)
3427 (window-sizable, window-sizable-p, window-size-fixed-p)
3428 (window-min-delta, window-max-delta, window--resizable)
3429 (window--resizable-p, window-resizable, window-total-size)
3430 (window-full-height-p, window-full-width-p, window-body-size)
3431 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
3432 (minimize-window, window-deletable-p, delete-window)
3433 (delete-other-windows, set-window-buffer-start-and-point)
3434 (next-buffer, previous-buffer, split-window, balance-windows-2)
3435 (set-window-text-height, window-buffer-height)
3436 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
3437 (truncated-partial-width-window-p): Minor code adjustments.
3438 In doc-strings state whether the argument window has to denote a
3439 live, valid or any window.
3440
3441 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
3442
3443 * progmodes/subword.el (subword-forward-function)
3444 (subword-backward-function, subword-forward-regexp)
3445 (subword-backward-regexp): New variables.
3446 (subword-forward, subword-forward-internal, subword-backward-internal):
3447 Use new variables, eg so that different "word" definitions
3448 can be easily used. (Bug#11411)
3449
3450 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3451
3452 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
3453 for composite selectors.
3454 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
3455 operation just because we can't find a previous revision.
3456
3457 2012-08-15 Chong Yidong <cyd@gnu.org>
3458
3459 * frame.el (set-frame-font): Accept font objects.
3460
3461 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3462
3463 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
3464
3465 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
3466
3467 * man.el (Man-overstrike-face, Man-underline-face)
3468 (Man-reverse-face): Remove variables.
3469 (Man-overstrike, Man-underline, Man-reverse): New faces.
3470 (Man-fontify-manpage): Use them instead of the variables.
3471 (Man-cleanup-manpage): Comment change.
3472 (Man-ansi-color-map): New variable.
3473 (Man-fontify-manpage): Use it.
3474 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
3475
3476 Implement ANSI SGR parameters 22-27 (bug#12146).
3477 * ansi-color.el (ansi-colors): Doc fix.
3478 (ansi-color-context, ansi-color-context-region): Doc fix.
3479 (ansi-color--find-face): New function.
3480 (ansi-color-apply, ansi-color-apply-on-region): Use it.
3481 Rename the local variable `face' to `codes' since it is now a list of
3482 ansi codes. Doc fix.
3483 (ansi-color-get-face): Remove.
3484 (ansi-color-parse-sequence): New function, derived from
3485 ansi-color-get-face.
3486 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
3487 codes 22-27.
3488
3489 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
3490
3491 * subr.el (read-passwd): Allow use from a minibuffer.
3492
3493 2012-08-14 Eli Zaretskii <eliz@gnu.org>
3494
3495 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
3496 inside comments and strings as identifiers.
3497
3498 * progmodes/gud.el (gud-tooltip-print-command): Quote the
3499 expression to evaluate. This allows to evaluate expressions with
3500 embedded whitespace.
3501 (gud-tooltip-tips): Add a blank before the newline in the
3502 message-box text, for the benefit of message-box emulation on
3503 MS-Windows.
3504
3505 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
3506 messages from GDB, pop them up in a tooltip to give feedback to
3507 user.
3508 (gdb-tooltip-print-1): Quote the expression to evaluate.
3509 This allows to evaluate expressions with embedded whitespace.
3510 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
3511 if the TTY name is nil or empty (which happens when communicating
3512 with the inferior via pipes, e.g. on MS-Windows).
3513 (gdb-internals): If GDB sends a "&\n" empty debugging message,
3514 don't send that to the GUD buffer.
3515
3516 2012-08-14 Glenn Morris <rgm@gnu.org>
3517
3518 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
3519 Optimize away setq-default with no args, as for setq. (Bug#12195)
3520
3521 2012-08-14 Chong Yidong <cyd@gnu.org>
3522
3523 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
3524
3525 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
3526 (Bug#12085).
3527
3528 2012-08-14 Glenn Morris <rgm@gnu.org>
3529
3530 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
3531
3532 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
3533
3534 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
3535 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
3536 Use cached shell name.
3537
3538 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
3539
3540 * progmodes/python.el (python-shell-send-string):
3541 (python-shell-send-setup-code): Do not use `format' with `message'.
3542
3543 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
3544
3545 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
3546 (ruby-percent-literal-beg-re): New constant.
3547 (ruby-syntax-general-delimiters-goto-beg): Rename to
3548 `ruby-syntax-enclosing-percent-literal', improve literal type check.
3549 (ruby-syntax-propertize-general-delimiters): Rename to
3550 `ruby-syntax-propertize-percent-literal', it's a shorter and more
3551 popular term. Adjust comments everywhere.
3552 (ruby-syntax-propertize-percent-literal): Only propertize when not
3553 inside a simple string or comment. When the literal is unclosed,
3554 leave the text after it unpropertized.
3555 (ruby-syntax-methods-before-regexp): New constant.
3556 (ruby-syntax-propertize-function): Use it to recognize regexps.
3557 Don't look at the text after regexp, just use the whitelist.
3558
3559 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
3560
3561 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
3562 non-nil always load the compiled file if it exists. (Bug#12197)
3563
3564 2012-08-14 Chong Yidong <cyd@gnu.org>
3565
3566 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
3567 (hi-lock-set-pattern): When deciding whether to use font lock or
3568 overlays, look at font-lock-mode instead of font-lock-fontified
3569 (Bug#12168).
3570 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
3571 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
3572
3573 2012-08-14 Daiki Ueno <ueno@unixuser.org>
3574
3575 * subr.el (internal--after-with-selected-window): Fix typo
3576 (Bug#12193).
3577
3578 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
3579
3580 Use `completion-table-dynamic' for completion functions.
3581 * progmodes/python.el
3582 (python-shell-completion--do-completion-at-point)
3583 (python-shell-completion--get-completions):
3584 Remove functions.
3585 (python-shell-completion-complete-at-point): New function.
3586 (python-completion-complete-at-point): Use it.
3587
3588 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
3589
3590 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
3591 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
3592
3593 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
3594
3595 * subr.el (function-get): Refine `autoload' arg so it can also
3596 autoload functions for gv.el (bug#12191).
3597 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
3598 autoloads macros.
3599
3600 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
3601 Prefer pcase-let over destructuring-bind.
3602 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
3603 Also, remove whitespace as we go, rather than after accumulating the
3604 various places.
3605
3606 * subr.el (internal--before-with-selected-window)
3607 (internal--after-with-selected-window): Fix typo seleted->selected.
3608 (with-selected-window): Adjust callers.
3609 Reported by Dmitry Gutov <dgutov@yandex.ru>.
3610
3611 2012-08-13 Bastien Guerry <bzg@gnu.org>
3612
3613 * window.el (special-display-popup-frame): Minor docstring
3614 enhancement. (Bug#12172)
3615
3616 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
3617
3618 * tar-mode.el (tar-header-data-end): Only ignore size for files of
3619 type 1-6.
3620 (tar-header-block-summarize, tar-get-descriptor): Handle pax
3621 extended headers.
3622
3623 * files.el (hack-local-variables-filter): Remove useless eval.
3624
3625 2012-08-13 Martin Rudalics <rudalics@gmx.at>
3626
3627 * subr.el (with-selected-window): Fix last change.
3628
3629 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3630
3631 * subr.el (internal--before-with-seleted-window)
3632 (internal--after-with-seleted-window): New functions.
3633 (with-selected-window): Use them, to replace dependency on
3634 tty-top-frame.
3635
3636 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
3637
3638 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
3639 binding for `newline'.
3640 (ruby-move-to-block): When moving backward, stop at block opening,
3641 not indentation.
3642 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
3643 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
3644 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
3645 `ruby-toggle-block'.
3646
3647 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3648
3649 * ibuffer.el (ibuffer-do-toggle-read-only):
3650 * dired.el (dired-toggle-read-only):
3651 * buff-menu.el (Buffer-menu-toggle-read-only):
3652 * bindings.el (mode-line-toggle-read-only):
3653 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
3654
3655 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
3656
3657 * descr-text.el (describe-char): Put the overlays over the
3658 "displayed as" character.
3659
3660 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
3661
3662 * calc/calc-units.el (math-default-units-table): Give an
3663 initial value.
3664 (math-put-default-units): Add options to put composite units and
3665 unit systems in the default units table.
3666 (calc-convert-units): Send composite units to
3667 `math-put-default-units' when appropriate.
3668
3669 2012-08-11 Glenn Morris <rgm@gnu.org>
3670
3671 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
3672
3673 * tutorial.el (help-with-tutorial):
3674 * emacs-lisp/copyright.el (copyright-update-directory):
3675 * emacs-lisp/autoload.el (autoload-find-generated-file)
3676 (autoload-find-file): Disable local eval: (for insurance).
3677
3678 * files.el (hack-local-variables-filter): If an eval: form is not
3679 known to be safe, and enable-local-variables is :safe, then ignore
3680 the form totally, as is done for non-eval forms. (Bug#12155)
3681 This is CVE-2012-3479.
3682
3683 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
3684
3685 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
3686 (rx-form): Simplify.
3687
3688 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
3689
3690 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
3691 ?, _, and : are symbol constituents, ! is not (but kinda should be).
3692 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
3693 (ruby-syntax-propertize-function): Adjust for changes in
3694 `ruby-syntax-propertize-heredoc'.
3695
3696 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
3697
3698 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
3699 binding (use `M-;' instead).
3700 (ruby-singleton-class-p): New function.
3701 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
3702
3703 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
3704
3705 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
3706
3707 2012-08-10 Chong Yidong <cyd@gnu.org>
3708
3709 * progmodes/python.el (python-shell-get-process-name): Don't mess
3710 with same-window-buffer-names.
3711
3712 * eshell/eshell.el (eshell-add-to-window-buffer-names)
3713 (eshell-remove-from-window-buffer-names): Make obsolete.
3714 (eshell-buffer-name, eshell-unload-hook): Don't use them.
3715 (eshell): Just use pop-to-buffer-same-window instead.
3716
3717 2012-08-10 Chong Yidong <cyd@gnu.org>
3718
3719 * bindings.el: Bind M-= back to count-words-region.
3720
3721 * simple.el (count-words-region): Accept a prefix arg for acting
3722 on the entire buffer.
3723 (count-words--buffer-message): New helper function.
3724
3725 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
3726
3727 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
3728 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
3729 (event-start, event-end): Use posn-at-point to return a more
3730 informative posn.
3731 (posnp): New function.
3732 * mouse.el (popup-menu-normalize-position): Use it.
3733
3734 2012-08-10 Masatake YAMATO <yamato@redhat.com>
3735
3736 * mouse.el (popup-menu-normalize-position): New function.
3737 (popup-menu): Use `popup-menu-normalize-position' to normalize
3738 the form for POSITION argument.
3739
3740 * term/x-win.el (x-menu-bar-open):
3741 Use the value returend from (posn-at-point) as position
3742 passed to `popup-menu'.
3743
3744 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
3745
3746 * calc/calccomp.el (math-compose-expr): Add extra argument
3747 indicating that parentheses should be put around products in
3748 denominators. Give multiplication precedence over division during
3749 composition.
3750
3751 2012-08-09 Chong Yidong <cyd@gnu.org>
3752
3753 * man.el (Man-switches, Man-sed-command, Man-awk-command)
3754 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
3755 (Man-untabify-command, manual-program): Convert to defcustom
3756 (Bug#10429).
3757
3758 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
3759
3760 * descr-text.el (describe-char): Don't insert extra newlines
3761 (Bug#10127).
3762
3763 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
3764 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
3765
3766 * align.el (align-region): Delete temporary markers (Bug#10047).
3767 Plus some code cleanups.
3768
3769 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
3770
3771 * progmodes/python.el (python-pdbtrack-tracked-buffer)
3772 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
3773 (python-shell-internal-last-output): Use make-local-variable
3774 instead of make-variable-buffer-local.
3775
3776 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
3777
3778 * progmodes/python.el: Enhancements to forward-sexp.
3779 (python-nav-forward-sexp): Rename from
3780 python-nav-forward-sexp-function.
3781 (python-nav--forward-sexp, python-nav--backward-sexp):
3782 New functions.
3783
3784 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
3785
3786 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
3787 modes and simplification modes.
3788
3789 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
3790
3791 * delsel.el (delete-selection-pre-hook): Don't propagate the
3792 file-supersession signals (bug#12161).
3793
3794 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3795
3796 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
3797 (cl-map-extents): Add compatibility aliases (bug#12135).
3798
3799 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
3800
3801 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
3802 tests by `ignore-error'.
3803 (tramp-find-shell): Open also a new shell, when cache is already
3804 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
3805
3806 2012-08-08 Juri Linkov <juri@jurta.org>
3807
3808 * bookmark.el: Add `defaults' property to the bookmark record.
3809 (bookmark-current-buffer): Doc fix.
3810 (bookmark-make-record): Add `defaults' property with default values
3811 to the bookmark record.
3812 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
3813 with `bookmark-insert-current-bookmark'.
3814 (bookmark-set): Get `defaults' property from the bookmark record
3815 and use it in `read-from-minibuffer'.
3816 (bookmark-insert-current-bookmark): Remove function.
3817
3818 * info.el (Info-bookmark-make-record): Add `defaults' property
3819 with values of canonical Info node name, the current Info file
3820 name and the current Info node name. (Bug#12107)
3821
3822 2012-08-08 Juri Linkov <juri@jurta.org>
3823
3824 * files.el (basic-save-buffer): Use `buffer-name' as the default
3825 of `read-file-name' when buffer is not visiting a file (bug#12128).
3826
3827 2012-08-08 Juri Linkov <juri@jurta.org>
3828
3829 * info.el (Info-isearch-search): Doc fix.
3830 (Info-search): Change search-failed message from "initial node" to
3831 "end of node" (bug#12078).
3832 (Info-isearch-search): Change `isearch-string-state' to
3833 `isearch--state-string'.
3834
3835 2012-08-08 Glenn Morris <rgm@gnu.org>
3836
3837 * language/persian.el: Remove file.
3838 * language/misc-lang.el: Move unique part of persian.el here.
3839 * loadup.el: Remove language/persian.
3840
3841 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
3842
3843 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
3844
3845 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
3846
3847 * progmodes/python.el Fixed defsubst warning.
3848 (python-syntax-context) Rename from python-info-ppss-context.
3849 (python-syntax-context-type): Rename from
3850 python-info-ppss-context-type.
3851 (python-syntax-comment-or-string-p): Rename from
3852 python-info-ppss-comment-or-string-p.
3853
3854 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
3855
3856 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
3857
3858 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
3859
3860 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
3861 a defcustom that is quoted with backquote.
3862
3863 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
3864 Fix handling of interactive spec when the body uses return.
3865 (math-do-arg-check, math-define-function-body): Use backquote forms.
3866 * calc/calc-ext.el (math-defcache): Likewise.
3867 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
3868 * allout.el (allout-new-exposure): Likewise.
3869 * calc/calcalg2.el (math-tracing-integral): Likewise.
3870 * info.el (Info-last-menu-item): Likewise.
3871 * emulation/vip.el (vip-loop): Likewise.
3872 * textmodes/artist.el (artist-funcall): Likewise.
3873 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
3874 Construct menu-item directly.
3875
3876 * progmodes/autoconf.el (font-lock-syntactic-keywords):
3877 Don't declare.
3878
3879 2012-08-07 Chong Yidong <cyd@gnu.org>
3880
3881 * simple.el (deactivate-mark): Preserve text properties when
3882 saving the primary selection (Bug#8384).
3883
3884 2012-08-07 Kevin Ryde <user42@zip.com.au>
3885
3886 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
3887 (woman-parse-numeric-value): On a bad .IP line, issue a warning
3888 and continue processing (Bug#12110).
3889
3890 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
3891
3892 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
3893 syntax-propertize-function (bug#10095).
3894
3895 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
3896
3897 * help-fns.el (help-fns--key-bindings, help-fns--signature)
3898 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
3899 describe-function-1.
3900 (describe-function-1): Use them. Move compiler macro after sig.
3901 (help-fns--compiler-macro): Use function-get. Assume we're already in
3902 standard-output. Adjust layout to new call order.
3903
3904 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
3905 re-binding a symbol that has a symbol-macro (bug#12119).
3906
3907 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
3908
3909 * language/persian.el: New file. (Bug#11812)
3910 * loadup.el: Add language/persian.el.
3911
3912 2012-08-06 Chong Yidong <cyd@gnu.org>
3913
3914 * window.el (window--maybe-raise-frame): New function.
3915 (window--display-buffer): Split off from here.
3916 (display-buffer-reuse-window, display-buffer-pop-up-frame)
3917 (display-buffer-pop-up-window, display-buffer-use-some-window):
3918 Obey an inhibit-switch-frame action alist entry.
3919 (display-buffer): Update doc.
3920
3921 * replace.el (occur-after-change-function): Avoid losing focus by
3922 using the inhibit-switch-frame display parameter (Bug#12139).
3923
3924 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
3925
3926 Make internal shell process buffer names start with space.
3927 * progmodes/python.el (python-shell-make-comint): Add optional
3928 argument INTERNAL.
3929 (run-python-internal): Use it.
3930 (python-shell-internal-get-or-create-process): Check for new
3931 internal buffer names.
3932
3933 2012-08-06 Glenn Morris <rgm@gnu.org>
3934
3935 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
3936 Do less getting and setting of environment variables.
3937
3938 2012-08-05 Chong Yidong <cyd@gnu.org>
3939
3940 * proced.el (proced): Add substitution string to docstring to
3941 trigger autoloading of the proced library on C-h f (Bug#1768).
3942
3943 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
3944 Don't show defvars which have no second argument (Bug#8638).
3945
3946 * imenu.el (imenu-generic-expression): Move documentation here
3947 from imenu--generic-function.
3948 (imenu--generic-function): Refer to imenu-generic-expression.
3949
3950 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
3951
3952 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
3953 indentation declaration.
3954 (viper-loop): Add indentation declaration (Bug#7025).
3955
3956 2012-08-05 Chong Yidong <cyd@gnu.org>
3957
3958 * help-fns.el (describe-variable): Add hyperlink for
3959 directory-local variables files. Improve buffer-local and
3960 permanent-local reporting; suggested by MON KEY (Bug#6644).
3961
3962 * help-mode.el (help-dir-local-var-def): New button type.
3963
3964 * files.el (kill-buffer-hook): Provide a defvar.
3965
3966 2012-08-05 Glenn Morris <rgm@gnu.org>
3967
3968 * eshell/esh-ext.el (eshell/addpath):
3969 Also update eshell-path-env. (Bug#12013)
3970
3971 2012-08-05 Chong Yidong <cyd@gnu.org>
3972
3973 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
3974
3975 * fringe.el (fringe-styles): Add docstring.
3976 (fringe--check-mode): New function.
3977 (set-fringe-mode, set-fringe-style): Use it.
3978 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
3979
3980 * files.el (set-auto-mode): Fix invalid setq call.
3981
3982 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3983
3984 * isearch.el: Misc simplification; use defstruct.
3985 (isearch-mode-map): Dense maps now work like sparse ones.
3986 (isearch--state): New defstruct.
3987 (isearch-string-state, isearch-message-state, isearch-point-state)
3988 (isearch-success-state, isearch-forward-state)
3989 (isearch-other-end-state, isearch-word-state, isearch-error-state)
3990 (isearch-wrapped-state, isearch-barrier-state)
3991 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
3992 replaced by defstruct's accessors.
3993 (isearch--set-state): Rename from isearch-top-state and change
3994 calling convention.
3995 (isearch-push-state): Use new isearch--get-state.
3996 (isearch-toggle-word): Disable regexp when enabling word.
3997 (isearch-message-prefix): Remove unused arg _c-q-hack.
3998 (isearch-message-suffix): Remove unused arg _ellipsis.
3999
4000 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
4001
4002 * simple.el (list-processes--refresh): For a server use :host or
4003 :local as the address.
4004 (list-processes): Doc fix.
4005
4006 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
4007
4008 * lisp/mpc.el: Support password in host argument.
4009 (mpc--proc-connect): Parse and use new password element.
4010 Set mpc-proc variable instead of returning process.
4011 (mpc-proc): Adjust accordingly.
4012
4013 2012-08-03 Eli Zaretskii <eliz@gnu.org>
4014
4015 * whitespace.el (whitespace-display-mappings): Use Unicode
4016 codepoints, instead of emacs-mule codepoints. See
4017 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
4018 for the details.
4019
4020 * files.el (file-truename): Don't skip symlink-chasing part on
4021 windows-nt. Incorporate the resolution of 8+3 short aliases on
4022 Windows into the loop that recursively chases symlinks.
4023 Compare directory and its parent case-insensitively on MS-Windows and
4024 MS-DOS.
4025
4026 2012-08-03 Chong Yidong <cyd@gnu.org>
4027
4028 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
4029
4030 * sort.el (sort-regexp-fields): Doc fix.
4031
4032 2012-08-03 Tassilo Horn <tsdh@gnu.org>
4033
4034 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
4035 labels regex position point at the expected place.
4036
4037 2012-08-03 MON KEY <monkey@sandpframing.com>
4038
4039 * net/imap.el (imap-interactive-login, imap-authenticate)
4040 (imap-mailbox-lsub, imap-mailbox-list)
4041 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
4042 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
4043 (imap-parse-response): Doc fix.
4044
4045 2012-08-03 João Távora <joaotavora@gmail.com>
4046
4047 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
4048 if sexp scanning does not move point (Bug#5734).
4049
4050 2012-08-02 Tassilo Horn <tsdh@gnu.org>
4051
4052 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
4053 Add listings, minted, and ctable packages.
4054 (reftex-label-alist-builtin): Move listings, minted, and ctable
4055 entries before LaTeX.
4056 (reftex-label-alist): Docfix.
4057
4058 2012-08-02 Bastien Guerry <bzg@gnu.org>
4059
4060 * replace.el (occur): Fix docstring (bug#12122).
4061
4062 2012-08-02 Glenn Morris <rgm@gnu.org>
4063
4064 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
4065
4066 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
4067
4068 Obsolete alias inactivate-current-input-method-function (Bug#10150).
4069 * international/mule-cmds.el: Create
4070 inactivate-current-input-method-function as an obsolete alias for
4071 deactivate-current-input-method-function. See Katsumi Yamaoka in
4072 <http://bugs.gnu.org/10150#46>.
4073
4074 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
4075
4076 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
4077 of nested `if's.
4078
4079 2012-08-01 Glenn Morris <rgm@gnu.org>
4080
4081 * progmodes/autoconf.el (autoconf-definition-regexp):
4082 Add AH_TEMPLATE, adjust submatch numbering.
4083 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
4084 (autoconf-current-defun-function): Update for above change.
4085 (autoconf-current-defun-function): First skip to end of current word.
4086
4087 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
4088
4089 * calendar/cal-html.el (cal-html-insert-agenda-days):
4090 Fix typo. (Bug#12018)
4091
4092 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4093
4094 Shell processes: enhancements to startup and CEDET compatibility.
4095 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
4096 (python-shell-make-comint): accept-process-output at startup.
4097 (run-python-internal): Set inferior-python-mode-hook to nil.
4098 (python-shell-internal-get-or-create-process): call sit-for.
4099 (python-preoutput-result): Add obsolete alias.
4100 (python-shell-internal-send-string): Use it.
4101 (python-shell-send-setup-code): Remove call to
4102 accept-process-output.
4103
4104 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
4105
4106 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
4107 (Bug#12108)
4108
4109 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
4110
4111 * calc-mode.el (calc-basic-simplification-mode): Rename from
4112 `calc-limited-simplification-mode'.
4113 (calc-alg-simplification-mode): New function.
4114 (calc-set-simplify-mode): Adjust message.
4115
4116 * calc.el (calc-set-mode-line): Adjust mode line display for
4117 basic simplification mode.
4118
4119 * calc-help.el (calc-m-prefix-help): Update help message.
4120
4121 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
4122 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
4123
4124 2012-07-31 Bastien Guerry <bzg@gnu.org>
4125
4126 * man.el (man): Fix comment. (bug#12101)
4127
4128 2012-07-31 Martin Rudalics <rudalics@gmx.at>
4129
4130 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
4131 Don't return a non-nil value when no suitable buffer was found.
4132
4133 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4134
4135 * progmodes/python.el (run-python-internal): Disable font lock for
4136 internal shells.
4137
4138 2012-07-30 Stefan Merten <smerten@oekonux.de>
4139
4140 * textmodes/rst.el: Silence `checkdoc-ispell'.
4141 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
4142 (rst-official-version, rst-official-cvs-rev)
4143 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
4144 (rst-mode-map): New key binding.
4145
4146 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4147
4148 Update .PHONY listings in makefiles.
4149 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
4150 autoloads, update-subdirs, updates, bzr-update, update-authors,
4151 compile-onefile, compile-calc, backup-compiled-files,
4152 compile-after-backup, compile-one-process, mh-autoloads,
4153 bootstrap-clean, distclean, maintainer-clean.
4154
4155 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
4156
4157 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
4158 (calc-set-mode-line): Don't display "AlgSimp ".
4159
4160 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
4161 (calc-lim-simplify-mode): New function.
4162 (calc-set-simplify-mode): Default to 'alg.
4163 (calc-default-simplify-mode): Make algebraic simplifications
4164 the default.
4165
4166 * calc/calc-ext.el (calc-init-extensions): Remove binding for
4167 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
4168
4169 * calc/calc-help.el (calc-m-prefix-help): Change messages to
4170 indicate new simplification modes.
4171
4172 * calc/README: Mention new default simplification mode.
4173
4174 * calc/calc.el (math-normalize-error): New variable.
4175 (math-normalize): Set `math-normalize-error' to t
4176 when there's an error.
4177
4178 * calc/calc-alg.el (math-simplify): Don't simplify when
4179 `math-normalize' returns an error.
4180
4181 2012-07-29 Eli Zaretskii <eliz@gnu.org>
4182
4183 * international/mule-cmds.el (set-locale-environment): Revert last
4184 change, since display-graphic-p returns nil when this function is
4185 called during startup. Instead...
4186
4187 * term/w32console.el (terminal-init-w32console): ...setup the
4188 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
4189
4190 2012-07-29 Juri Linkov <juri@jurta.org>
4191
4192 * simple.el (goto-line): Don't display default line number in the
4193 prompt because it should be displayed by `read-number' (bug#9952).
4194 Add the current line number to the defaults of `goto-line' to
4195 allow its easier modification by users with `M-n' (bug#9201).
4196
4197 * subr.el (read-number): Support multiple default values like in
4198 other minibuffer reading functions. Replace `read' with
4199 `string-to-number' for consistency with `number-to-string'.
4200
4201 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4202
4203 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
4204 * emulation/viper-init.el (viper-deactivate-input-method-action):
4205 Rename from viper-inactivate-input-method-action.
4206 (viper-deactivate-input-method):
4207 Rename from viper-inactivate-input-method.
4208 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
4209 * international/mule-cmds.el (deactivate-input-method):
4210 Rename from inactivate-input-method.
4211 Also run input-method-deactivate-hook.
4212 (deactivate-current-input-method-function):
4213 Rename from inactivate-current-input-method-function.
4214 (input-method-deactivate-hook): New hook.
4215 (input-method-inactivate-hook): Mark obsolete.
4216 (inactivate-input-method): Mark obsolete.
4217
4218 * international/quail.el (quail-activate):
4219 Also run quail-deactivate-hook.
4220 (quail-deactivate): Rename from quail-inactivate.
4221 * international/robin.el (robin-activate):
4222 Also run robin-deactivate-hook.
4223 (robin-deactivate): Rename from robin-inactivate.
4224
4225 2012-07-29 Chong Yidong <cyd@gnu.org>
4226
4227 * simple.el (indicate-copied-region): New function.
4228 (kill-ring-save): Split off from here.
4229
4230 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
4231 (kill-rectangle): Set deactivate-mark to t on read-only error.
4232
4233 * register.el (copy-to-register, copy-rectangle-to-register):
4234 Deactivate the mark, and use indicate-copied-region (Bug#10056).
4235 (append-to-register, prepend-to-register): Call indicate-copied-region.
4236
4237 2012-07-29 Juri Linkov <juri@jurta.org>
4238
4239 * simple.el (async-shell-command-buffer): New defcustom.
4240 (shell-command): Use it. (Bug#4719)
4241
4242 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4243
4244 * international/mule-cmds.el (set-locale-environment): In a
4245 console session on MS-Windows, set up keyboard and terminal
4246 encoding from the OEM codepage, not the ANSI codepage.
4247 (Bug#12055)
4248
4249 2012-07-28 Chong Yidong <cyd@gnu.org>
4250
4251 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
4252 gdb-get-location.
4253
4254 2012-07-28 Leo Liu <sdl.web@gmail.com>
4255
4256 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
4257 the alist (bug#12029).
4258
4259 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4260
4261 * makefile.w32-in (custom-deps, finder-data, updates, compile)
4262 (compile-always, compile-first)
4263 ($(lisp)/calendar/cal-loaddefs.el)
4264 ($(lisp)/calendar/diary-loaddefs.el)
4265 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4266 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
4267 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
4268 instead of on update-subdirs.
4269 (bootstrap-clean): Delete $(lisp)/subdirs.el.
4270
4271 2012-07-28 Chong Yidong <cyd@gnu.org>
4272
4273 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
4274 directory if vc-deduce-backend returns nil (Bug#7350).
4275
4276 * simple.el (delete-trailing-lines): New option.
4277 (delete-trailing-whitespace): Obey it (Bug#11879).
4278
4279 2012-07-28 David Engster <deng@randomsample.de>
4280
4281 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
4282 Explanation of new 'symbol-qnames feature in doc-strings.
4283 (xml-maybe-do-ns): Return expanded names as plain symbols if
4284 'symbol-qnames was provided in XML-NS argument (Bug#11916).
4285 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
4286
4287 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4288
4289 Consistent completion in inferior python with emacs -nw.
4290 * progmodes/python.el (inferior-python-mode): replace "<tab>"
4291 binding in inferior-python-mode-map with "\t".
4292 (python-shell-completion-complete-at-point)
4293 (python-completion-complete-at-point): Remove interactive spec.
4294
4295 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4296
4297 * calc/calccomp.el (math-compose-expr): Undo previous change.
4298
4299 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4300
4301 * progmodes/python.el (python-mode-map): Add keybinding for
4302 run-python.
4303 (python-shell-make-comint): Fix pop-to-buffer call.
4304 (run-python): Autoload. New arg SHOW.
4305 (python-shell-get-or-create-process): Do not pop python process
4306 buffer.
4307
4308 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
4309
4310 * notifications.el (notifications-on-action-signal)
4311 (notifications-on-closed-signal): Use also the bus address for the map.
4312 (notifications-notify, notifications-close-notification)
4313 (notifications-get-capabilities): Add optional argument BUS.
4314
4315 2012-07-27 Tassilo Horn <tsdh@gnu.org>
4316
4317 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
4318 Add support for the lstlisting and minted environments, and for the
4319 ctable macro.
4320 * textmodes/reftex.el (reftex-compile-variables): Also recognize
4321 labels written in keyvals syntax.
4322
4323 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4324
4325 * calc/calccomp.el (math-compose-expr): Use parentheses when
4326 there is a product in the denominator of a fraction.
4327
4328 2012-07-26 Eli Zaretskii <eliz@gnu.org>
4329
4330 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
4331 ($(lisp)/calendar/diary-loaddefs.el)
4332 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4333 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
4334 Fixes failures in parallel bootstrap because subdirs.el is being
4335 rewritten while the autoload files are built at the same time,
4336 which needs to load subdirs.el.
4337
4338 2012-07-26 Martin Rudalics <rudalics@gmx.at>
4339
4340 * mouse.el (popup-menu): Fix doc-string and re-indent code.
4341 (mouse-drag-line): Don't exit tracking when a switch-frame or
4342 switch-window event occurs (Bug#12006).
4343
4344 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4345
4346 * mouse.el (popup-menu): Fix last change.
4347
4348 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4349
4350 Autoload from Lisp with more care. Follow aliases when looking for
4351 function properties.
4352 * subr.el (autoloadp): New function.
4353 (symbol-file): Use it.
4354 (function-get): New function.
4355 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
4356 autoload-do-load.
4357 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
4358 (lisp-indent-function):
4359 * emacs-lisp/gv.el (gv-get):
4360 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
4361 * emacs-lisp/byte-opt.el (byte-optimize-form):
4362 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
4363 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
4364 Use function-get.
4365 * emacs-lisp/cl.el: Don't propagate function properties any more.
4366
4367 * speedbar.el (speedbar-add-localized-speedbar-support):
4368 * emacs-lisp/disass.el (disassemble-internal):
4369 * desktop.el (desktop-load-file):
4370 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
4371 (describe-function-1):
4372 * emacs-lisp/find-func.el (find-function-noselect):
4373 * emacs-lisp/elp.el (elp-instrument-function):
4374 * emacs-lisp/advice.el (ad-has-proper-definition):
4375 * apropos.el (apropos-safe-documentation, apropos-macrop):
4376 * emacs-lisp/debug.el (debug-on-entry):
4377 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
4378 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
4379 * calc/calc.el (name): Use autoloadp & autoload-do-load.
4380
4381 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
4382
4383 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
4384 function, not an obsolete variable (Bug#12046).
4385
4386 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
4387
4388 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
4389
4390 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
4391
4392 * emacs-lisp/pp.el (pp-display-expression): Select old selected
4393 window only if it is still live (Bug#12034).
4394
4395 2012-07-25 Martin Rudalics <rudalics@gmx.at>
4396
4397 * subr.el (redirect-frame-focus): Add advertised calling
4398 convention (Bug#12030).
4399
4400 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
4401
4402 Prefer typical American spelling for "acknowledgment".
4403 * vc/add-log.el (change-log-acknowledgment): Rename from
4404 change-log-acknowledgement, with an alias for the old name.
4405
4406 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
4407
4408 * calc-alg.el (math-simplify-divide): Don't cross multiply
4409 in an equation when the lhs is a variable.
4410
4411 2012-07-24 Julien Danjou <julien@danjou.info>
4412
4413 * net/netrc.el (netrc-find-service-number, netrc-store-data):
4414 Remove, unused.
4415
4416 2012-07-23 Eli Zaretskii <eliz@gnu.org>
4417
4418 * startup.el (command-line): Don't display an empty user name in
4419 the error message about non-existent home directory, when
4420 init-file-user was set to an empty string. See
4421 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
4422 for the details and context.
4423
4424 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
4425
4426 * ses.el (ses-cell-formula-aset): New macro.
4427 (ses-cell-references-aset): New macro.
4428 (ses-cell-p): New function.
4429 (ses-rename-cell): Do no longer rely on complex operations like
4430 ses-cell-set-formula or ses-set-cell to change the cell and handle
4431 the undo at the same time, but rather use lower level new macros
4432 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
4433 the undo directly. Refresh the mode line.
4434
4435 2012-07-21 Leo Liu <sdl.web@gmail.com>
4436
4437 * progmodes/cc-cmds.el (c-defun-name):
4438 Use match-string-no-properties instead for consistency.
4439
4440 2012-07-20 Leo Liu <sdl.web@gmail.com>
4441
4442 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
4443 (Bug#7879)
4444
4445 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
4446
4447 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
4448
4449 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
4450 * progmodes/bug-reference.el, misearch.el: Provide themselves
4451 (bug#11915).
4452
4453 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
4454 of narrowed buffer (bug#11966).
4455
4456 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
4457
4458 * ses.el (ses-rename-cell): Set new name also in reference list of
4459 cells of which the renamed cell depends.
4460
4461 2012-07-20 Masatake YAMATO <yamato@redhat.com>
4462
4463 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
4464 to check whether menu-bar is shown or not. If not shown,
4465 show the menu-bar as a popup menu instead of using tmm.
4466 * mouse.el (popup-menu): Accept `point' as `position' argument.
4467
4468 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
4469
4470 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
4471 up inside string symbol literal (bug#11923).
4472
4473 2012-07-20 Eli Zaretskii <eliz@gnu.org>
4474
4475 * startup.el (fancy-startup-text): Read the whole tutorial, not
4476 just its first 256 bytes. Prevents gibberish in display of the
4477 tutorial title.
4478
4479 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
4480
4481 Drop idle buffer compaction due to an absence of the
4482 proved efficiency.
4483 * compact.el: Remove.
4484
4485 2012-07-19 Sam Steingold <sds@gnu.org>
4486
4487 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
4488 vc-bzr-pull & vc-bzr-merge-branch.
4489 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
4490 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
4491 for consistency with compilation-error-regexp-alist.
4492 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
4493 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
4494 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
4495 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
4496
4497 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
4498
4499 * emacs-lisp/chart.el: Use lexical-binding.
4500 (chart-emacs-storage): Don't hardcode the list of entries.
4501
4502 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
4503
4504 Next round of tweaks caused by Fgarbage_collect changes.
4505 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
4506
4507 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
4508
4509 Compact buffers when idle.
4510 * compact.el: New file.
4511
4512 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
4513
4514 * subr.el (eventp): Presume that if it looks vaguely like an event,
4515 it's an event (bug#10190).
4516
4517 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
4518
4519 Enhancements to ppss related code (thanks Stefan).
4520 * progmodes/python.el (python-indent-context)
4521 (python-indent-calculate-indentation, python-indent-dedent-line)
4522 (python-indent-electric-colon, python-nav-forward-block)
4523 (python-mode-abbrev-table)
4524 (python-info-assignment-continuation-line-p): Simplify checks
4525 for ppss context.
4526 (python-info-continuation-line-p): Cleanup.
4527 (python-info-ppss-context): Do not catch 'quote.
4528 (python-info-ppss-context-type)
4529 (python-info-ppss-comment-or-string-p): Simplify.
4530
4531 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
4532
4533 * progmodes/python.el: Enhancements to eldoc support.
4534 (python-info-current-symbol): New function.
4535 (python-eldoc-at-point): Use python-info-current-symbol.
4536 (python-info-current-defun): Fix cornercase on first defun scan.
4537 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
4538 and signal error when no inferior python process is available.
4539
4540 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
4541
4542 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
4543 assume it's always t.
4544 (vc-git-registered): Remove caching, the function is only called
4545 once.
4546 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
4547
4548 2012-07-18 Chong Yidong <cyd@gnu.org>
4549
4550 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
4551
4552 * simple.el (count-words): Report on narrowing (Bug#9959).
4553
4554 * bindings.el: Bind M-= to count-words.
4555
4556 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
4557
4558 2012-07-18 Masatake YAMATO <yamato@redhat.com>
4559
4560 * progmodes/sh-script.el (sh-imenu-generic-expression):
4561 Capture a function with `function' keyword and without parentheses
4562 like "function FOO" (bug#11856).
4563
4564 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
4565
4566 * window.el (split-window-sensibly): Make WINDOW argument
4567 optional.
4568
4569 2012-07-18 Chong Yidong <cyd@gnu.org>
4570
4571 * subr.el (keyboard-translate): Doc fix (Bug#7261).
4572
4573 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
4574 and make C-x 8 RET exit isearch (Bug#11439).
4575
4576 * international/iso-transl.el: Move isearch-mode-map key
4577 definitions to isearch.el.
4578
4579 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
4580
4581 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
4582 (eieio-defclass): Use gv-define-setter when possible.
4583
4584 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
4585
4586 Reflect recent changes in Fgarbage_collect.
4587 * emacs-lisp/chart.el (chart-emacs-storage): Change to
4588 reflect new format of data returned by Fgarbage_collect.
4589
4590 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
4591
4592 New utility functions + python-info-ppss-context fix (Bug#11910).
4593 * progmodes/python.el (python-info-beginning-of-block-statement-p)
4594 (python-info-ppss-comment-or-string-p): New functions.
4595 (python-info-ppss-context): Small fix for string check.
4596
4597 2012-07-17 Juri Linkov <juri@jurta.org>
4598
4599 * dired-aux.el (dired-do-async-shell-command): Doc fix.
4600 (dired-do-async-shell-command): Don't add `*' at the end of the
4601 command (Bug#11815).
4602 (dired-do-shell-command): Doc fix.
4603 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
4604 Join the individual commands using either "&" or ";" as the
4605 separator depending on the values of these trailing characters.
4606 At the end re-add the trailing "&". (Bug#10598)
4607
4608 * simple.el (async-shell-command): Sync the interactive spec with
4609 `shell-command'. Doc fix.
4610 (shell-command): Doc fix.
4611
4612 2012-07-17 Juri Linkov <juri@jurta.org>
4613
4614 * descr-text.el (describe-char): Fix format args. (Bug#10129)
4615
4616 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
4617
4618 Final renames and doc fixes for movement commands (bug#11899).
4619 * progmodes/python.el (python-nav-beginning-of-statement):
4620 Rename from python-nav-statement-start.
4621 (python-nav-end-of-statement): Rename from
4622 python-nav-statement-end.
4623 (python-nav-beginning-of-block): Rename from
4624 python-nav-block-start.
4625 (python-nav-end-of-block): Rename from python-nav-block-end.
4626
4627 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
4628
4629 * progmodes/python.el (python-shell-send-string-no-output):
4630 Allow accept-process-output to quit, keeping shell process ready for
4631 future interactions (Bug#11868).
4632
4633 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
4634
4635 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
4636
4637 * emacs-lisp/elint.el (elint-find-args-in-code):
4638 Use help-function-arglist, so as to handle lexical byte-code.
4639
4640 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
4641 change (bug#11826).
4642
4643 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
4644
4645 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
4646 Avoid spuriously marking the buffer as modified because of c-is-sws.
4647
4648 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
4649 as not-a-comment (bug#11946).
4650
4651 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
4652 for uninterned vars.
4653
4654 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
4655 Use read-event since we don't really want to read chars but bytes.
4656
4657 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
4658 $$..$$ but also $..$ using regexps (bug#11953).
4659 Use tex-verbatim for \url and \path.
4660 (tex-font-lock-keywords): Define as defconst like the others.
4661 (tex-common-initialization): Don't use font-lock-syntax-table any more.
4662
4663 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
4664
4665 * international/mule-cmds.el (ucs-insert): Make it an obsolete
4666 alias for insert-char.
4667
4668 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
4669
4670 * progmodes/python.el: Simplified imenu implementation.
4671 (python-nav-jump-to-defun): Remove command.
4672 (python-mode-map): Use `imenu' instead.
4673 (python-nav-list-defun-positions-cache)
4674 (python-imenu-include-defun-type, python-imenu-make-tree)
4675 (python-imenu-subtree-root-label, python-imenu-index-alist):
4676 Remove vars.
4677 (python-nav-list-defun-positions, python-nav-read-defun)
4678 (python-imenu-tree-assoc, python-imenu-make-element-tree)
4679 (python-imenu-make-tree, python-imenu-create-index):
4680 Remove functions.
4681 (python-mode): Update to interact with imenu by setting
4682 `imenu-extract-index-name-function' only.
4683
4684 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
4685
4686 * progmodes/python.el: Enhancements to navigation commands.
4687 (python-nav-backward-sentence)
4688 (python-nav-forward-sentence): Remove.
4689 (python-nav-backward-statement, python-nav-forward-statement)
4690 (python-nav-statement-start, python-nav-statement-end)
4691 (python-nav-backward-block, python-nav-forward-block)
4692 (python-nav-block-start, python-nav-block-end)
4693 (python-nav-forward-sexp-function)
4694 (python-info-current-line-comment-p)
4695 (python-info-current-line-empty-p): New functions.
4696 (python-indent-context): Use `python-nav-statement-start'.
4697
4698 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
4699
4700 * eshell/em-ls.el (eshell/ls): Use `apply'.
4701
4702 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
4703 multi-hops, instead of Tramp internals.
4704
4705 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
4706
4707 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
4708 when F1 and F2 are located on different hosts.
4709
4710 2012-07-14 Chong Yidong <cyd@gnu.org>
4711
4712 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
4713 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
4714 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
4715 (xterm-mouse--read-event-sequence-1000)
4716 (xterm-mouse--read-event-sequence-1006): New functions. For old
4717 mouse protocol, handle M-mouse-X events correctly.
4718 (xterm-mouse-event): New arg specifying mouse protocol.
4719 (turn-on-xterm-mouse-tracking-on-terminal)
4720 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
4721 sequence to toggle extended coordinates on newer XTerms.
4722 This appears to be harmless on terminals which do not support this.
4723
4724 2012-07-14 Leo Liu <sdl.web@gmail.com>
4725
4726 Add fringe bitmap indicators for flymake. (Bug#11253)
4727 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
4728 (flymake-make-overlay): New arg BITMAP.
4729 (flymake-error-bitmap, flymake-warning-bitmap)
4730 (flymake-fringe-indicator-position): New user variables.
4731
4732 * fringe.el: New bitmap exclamation-mark.
4733
4734 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
4735
4736 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
4737 also (Bug#7879).
4738
4739 2012-07-14 Chong Yidong <cyd@gnu.org>
4740
4741 * electric.el (electric-pair-post-self-insert-function): Fix pair
4742 insertion in empty-region case (Bug#11520).
4743
4744 2012-07-14 Chong Yidong <cyd@gnu.org>
4745
4746 * bindings.el: Consolidate ctl-x-r-map bindings.
4747 Bind copy-rectangle-as-kill to C-x r w.
4748
4749 * rect.el, register.el: Move bindings to bindings.el.
4750
4751 2012-07-14 Reuben Thomas <rrt@sc3d.org>
4752
4753 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
4754
4755 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
4756
4757 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
4758
4759 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
4760
4761 * bindings.el (top): Use `mapc' instead of `mapcar'.
4762
4763 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
4764
4765 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
4766
4767 * progmodes/sql.el (sql-comint): Suppress the check for program on
4768 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
4769 (Bug#11908)
4770
4771 2012-07-13 Chong Yidong <cyd@gnu.org>
4772
4773 * bindings.el: Assign a non-nil permanent-local property to
4774 per-buffer variables which lack a default value (Bug#11930).
4775
4776 * help-fns.el (describe-variable): In the "automatically becomes
4777 local" notice, take note of permanent-local variables.
4778
4779 2012-07-13 Chong Yidong <cyd@gnu.org>
4780
4781 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
4782 to allow printing the message when called from Lisp.
4783
4784 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4785 Remove toggle-read-only.
4786
4787 * bs.el (bs-toggle-readonly):
4788 * buff-menu.el (Buffer-menu-toggle-read-only):
4789 Remove with-no-warnings around toggle-read-only.
4790
4791 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
4792 Remove with-no-warnings around toggle-read-only.
4793 (ffap-read-only, ffap-read-only-other-window)
4794 (ffap-read-only-other-frame): Callers changed.
4795
4796 * help-mode.el: Don't require view package.
4797 (help-mode-finish): Set buffer-read-only instead of calling
4798 toggle-read-only.
4799
4800 * bindings.el (mode-line-toggle-read-only):
4801 * dired.el (dired-toggle-read-only):
4802 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
4803 with non-nil second arg.
4804
4805 * emacs-lisp/eieio-custom.el (eieio-customize-object):
4806 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
4807 directly.
4808
4809 2012-07-12 Eli Zaretskii <eliz@gnu.org>
4810
4811 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
4812 not incf.
4813
4814 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
4815
4816 More CL cleanups and reduction of use of cl.el.
4817 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
4818 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
4819 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
4820 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
4821 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
4822 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
4823 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
4824 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
4825 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
4826 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
4827 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
4828 * eshell/em-cmpl.el, eshell/em-banner.el:
4829 * calendar/parse-time.el: Use cl-lib.
4830 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
4831 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
4832 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
4833 * term/ns-win.el, term.el, shell.el, ps-samp.el:
4834 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
4835 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
4836 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
4837 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
4838 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
4839 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
4840 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
4841 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
4842 `lambda' rather than with `quote'.
4843 (eshell-do-opt): Adjust accordingly.
4844 (eshell-process-option): Simplify.
4845 * eshell/esh-var.el:
4846 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
4847 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
4848 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
4849 to `pcase--dontcare'.
4850 * emacs-lisp/cl.el (labels): Mark obsolete.
4851 (cl--letf, letf): Move to cl-lib.
4852 (cl--letf*, letf*): Remove.
4853 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
4854 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
4855 (cl-progv): Rewrite.
4856 (cl--letf, cl-letf): Move from cl.el.
4857 (cl-letf*): New macro.
4858 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
4859
4860 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
4861
4862 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
4863
4864 2012-07-11 Chong Yidong <cyd@gnu.org>
4865
4866 * vc/log-edit.el (log-edit-vc-backend): New variable.
4867 (log-edit): Doc fix.
4868
4869 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
4870 argument of log-edit to set up all local variables.
4871 (vc-start-logentry): New optional arg specifying VC backend.
4872
4873 * vc/vc.el (vc-checkin): Use it.
4874 (vc-deduce-fileset): Handle Log Edit buffers.
4875 (vc-diff): Make first argument optional too.
4876
4877 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
4878
4879 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
4880
4881 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
4882 command, just in case. The function is not needed anymore.
4883 (eshell-external-command): Do not call `eshell-remote-command'.
4884
4885 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
4886
4887 Reduce use of (require 'cl).
4888 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
4889 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
4890 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
4891 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
4892 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
4893 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
4894 * battery.el, avoid.el, abbrev.el: Use cl-lib.
4895 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
4896 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
4897 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
4898 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
4899 * calculator.el, autorevert.el, apropos.el: Don't require CL.
4900 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
4901 (byte-compile-unfold-bcf, byte-compile-check-variable):
4902 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
4903 (byte-compile-nilconstp):
4904 * emacs-lisp/autoload.el (make-autoload): Use pcase.
4905 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
4906
4907 * emacs-lisp/gv.el (cond): Make it a valid place.
4908 (if): Simplify slightly.
4909
4910 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
4911 (pcase--self-quoting-p): New function.
4912 (pcase--u1): Use it.
4913
4914 2012-07-10 Glenn Morris <rgm@gnu.org>
4915
4916 * emacs-lisp/authors.el (authors-fixed-entries):
4917 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
4918
4919 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
4920
4921 Rename configure.in to configure.ac (Bug#11603).
4922 * emacs-lisp/authors.el (authors-canonical-file-name):
4923 * progmodes/autoconf.el (autoconf-mode):
4924 Prefer configure.ac to configure.in.
4925
4926 2012-07-08 Chong Yidong <cyd@gnu.org>
4927
4928 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
4929 Implement the mouse-1-click-follows-link handling properly.
4930
4931 * info.el (Info-link-keymap): Use follow-link mechanism for
4932 header-line links (Bug#374).
4933
4934 * simple.el (deactivate-mark): Do not set the primary selection
4935 if another program has acquired it (Bug#11772).
4936
4937 2012-07-07 Kevin Ryde <user42@zip.com.au>
4938
4939 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
4940 (woman-decode-region): Replace escaped-escapes without destroying
4941 bold or underline (Bug#11552).
4942 (woman2-process-escapes): Handle nofill regions (Bug#11591).
4943
4944 2012-07-07 Chong Yidong <cyd@gnu.org>
4945
4946 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
4947 (interprogram-cut-function, interprogram-paste-function):
4948 Mention that we typically mean the clipboard.
4949
4950 2012-07-06 Glenn Morris <rgm@gnu.org>
4951
4952 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
4953
4954 * files.el (toggle-read-only): Restrict message to interactive use.
4955
4956 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
4957
4958 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
4959
4960 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
4961
4962 2012-07-06 Glenn Morris <rgm@gnu.org>
4963
4964 * Makefile.in (compile-one-process): Rename from "recompile".
4965
4966 * Makefile.in (bzr-update): "compile" is the same as "recompile
4967 autoloads", but parallelizable, so use that instead.
4968
4969 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
4970
4971 * window.el (quit-window): Always restore window height when
4972 it's saved in quit-restore parameter (Bug#11810).
4973
4974 2012-07-06 Glenn Morris <rgm@gnu.org>
4975
4976 * simple.el (kill-whole-line): Doc tweak.
4977
4978 2012-07-06 Eli Zaretskii <eliz@gnu.org>
4979
4980 * files.el (file-relative-name): Compare file names
4981 case-insensitively if on MS-Windows or MS-DOS, or if
4982 read-file-name-completion-ignore-case is non-nil. Don't use
4983 case-fold-search for this purpose. (Bug#11827)
4984
4985 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
4986
4987 * calendar/cal-dst.el (calendar-current-time-zone):
4988 Return calendar-current-time-zone-cache if non-nil.
4989
4990 2012-07-17 Masatake YAMATO <yamato@redhat.com>
4991 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
4992
4993 * calendar/cal-dst.el (calendar-current-time-zone):
4994 Return calendar-current-time-zone-cache if non-nil.
4995
4996 2012-07-06 Glenn Morris <rgm@gnu.org>
4997
4998 * Makefile.in (cvs-update): Remove old alias.
4999
5000 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
5001
5002 Sync with Tramp 2.2.6-pre.
5003
5004 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
5005 compatible declaration.
5006
5007 * net/tramp-cmds.el (tramp-append-tramp-buffers):
5008 Protect `list-load-path-shadows' call.
5009
5010 * net/tramp-compat.el (top): Require packages, which aren't
5011 autoloaded anymore for XEmacs. Protect call of
5012 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
5013 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
5014 it hurts at least for SXEmacs.
5015 (tramp-compat-temporary-file-directory): In XEmacs, there is no
5016 standard-value for `temporary-file-directory'.
5017
5018 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
5019 Redirect stderr to /dev/null.
5020 (tramp-sh-handle-write-region): uid and gid can be floats.
5021 Reported by Russell Sim <russell.sim@gmail.com>.
5022 (tramp-sh-handle-vc-registered): Hide errors.
5023 (tramp-vc-file-name-handler): Use dummy results for `process-file'
5024 and `start-file-process'.
5025 (tramp-maybe-open-connection): Check also whether `non-essential'
5026 is bound.
5027
5028 2012-07-04 Chong Yidong <cyd@gnu.org>
5029
5030 * xml.el (xml--parse-buffer): Use xml-syntax-table.
5031 (xml-parse-tag): Likewise, and avoid changing entity tables.
5032 (xml-syntax-table): Define from scratch, making sure not to give
5033 x2000 and other Unicode spaces whitespace syntax, since those are
5034 not spaces in XML.
5035 (xml-parse-fragment): Delete unused function.
5036 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
5037 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
5038 (xml-entity-ref, xml-pe-reference-re)
5039 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
5040 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
5041 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
5042 (xml-entity-value-re): Use syntax references in regexps where
5043 possible; no need to define inside a let-binding.
5044 (xml-parse-dtd): Use xml-pe-reference-re.
5045 (xml-entity-or-char-ref-re): New defconst.
5046 (xml-parse-string, xml-substitute-special): Use it.
5047
5048 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
5049
5050 * files.el (locate-dominating-file): Allow `name' to be a predicate.
5051 (find-file--read-only): New function.
5052 (find-file-read-only, find-file-read-only-other-window)
5053 (find-file-read-only-other-frame): Use it.
5054 (insert-file-contents-literally): Don't `fset'.
5055 (get-free-disk-space): Use locate-dominating-file.
5056
5057 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
5058 function is already compiled.
5059
5060 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
5061
5062 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
5063
5064 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
5065 files on the same host.
5066
5067 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
5068
5069 * help-fns.el (describe-function-1): Only call
5070 help-fns--autoloaded-p when we have a file name. (Bug#11848)
5071
5072 2012-07-03 Chong Yidong <cyd@gnu.org>
5073
5074 * xml.el: Protect parser against XML bombs.
5075 (xml-entity-expansion-limit): New variable.
5076 (xml-parse-string, xml-substitute-special): Use it.
5077 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
5078
5079 2012-07-03 Glenn Morris <rgm@gnu.org>
5080
5081 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5082 Allow linking to specific messages in debbugs reports (eg 123#5).
5083
5084 2012-07-02 Chong Yidong <cyd@gnu.org>
5085
5086 * xml.el: Fix entity and character reference expansion, allowing
5087 them to expand into markup as per XML spec.
5088 (xml-default-ns): New variable.
5089 (xml-entity-alist): Use XML spec definitions for lt and amp.
5090 (xml-parse-region): Make first two arguments optional.
5091 Discard text properties.
5092 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
5093 All callers changed.
5094 (xml-parse-tag): Call xml-parse-tag-1. For backward
5095 compatibility, this function should not modify buffer contents.
5096 (xml-parse-tag-1): Fix opening-tag regexp.
5097 (xml-parse-string): Rewrite, handling entity and character
5098 references properly.
5099 (xml--entity-replacement-text): Signal an error if a parameter
5100 entity is undefined.
5101
5102 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
5103
5104 * comint.el (comint-output-filter): Filter out repeated prompts.
5105
5106 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
5107 and file-name-absolute-p.
5108 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
5109 internal calls.
5110
5111 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
5112
5113 Spelling fixes.
5114 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
5115 Rename from byte-compile--refiy-function. All uses changed.
5116
5117 2012-07-01 Chong Yidong <cyd@gnu.org>
5118
5119 * xml.el (xml--parse-buffer): New function. Move most of
5120 xml-parse-region here.
5121 (xml-parse-region): Copy region into a temporary buffer, since
5122 parameter entity substitution requires changing buffer contents.
5123 Use xml--parse-buffer.
5124 (xml-parse-file): Use xml--parse-buffer.
5125 (xml-parse-dtd): Make parameter entity substitution work right.
5126 Use proper regexps for ELEMENT declarations (Bug#7172).
5127
5128 2012-06-30 Glenn Morris <rgm@gnu.org>
5129
5130 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
5131
5132 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
5133 Remove outdated and unnecessary dbus declarations.
5134
5135 2012-06-30 Eli Zaretskii <eliz@gnu.org>
5136
5137 * emacs-lisp/timer.el (timer-until): Subtract results of
5138 float-time, instead of taking float-time of the result of
5139 time-subtract, since float-time signals an error for negative time
5140 arguments.
5141
5142 2012-06-30 Chong Yidong <cyd@gnu.org>
5143
5144 * xml.el (xml-*-re): Convert defvars into defconsts, and
5145 eval-and-compile them so eval-and-compile works on derivatives.
5146 (xml--entity-replacement-text): Use eval-and-comple.
5147
5148 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
5149
5150 * vc/vc-git.el (vc-git-registered): Use cache property
5151 `git-registered'.
5152 (vc-git-mode-line-string): Call `vc-working-revision' instead of
5153 `vc-git-working-revision' in order to benefit from the cache.
5154 (vc-git-root): Use cache property `git-root'. (Bug#11757)
5155
5156 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
5157
5158 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
5159 removed (likely outside Emacs). (Bug#11757)
5160
5161 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5162
5163 * emacs-lisp/cl-lib.el: Require macroexp.
5164
5165 2012-06-30 Chong Yidong <cyd@gnu.org>
5166
5167 * xml.el: Implement XML parameter entities.
5168 (xml-parameter-entity-alist): New variable.
5169 (xml-parse-region, xml-parse-fragment): Preserve previous values
5170 of xml-entity-alist and xml-parameter-entity-alist, so that
5171 repeated calls on different documents do not change them.
5172 (xml-parse-tag): Fix doctype regexp.
5173 (xml--entity-replacement-text): New function.
5174 (xml-parse-dtd): Use it. Don't handle system entities; doing that
5175 properly requires url retrieval which is unimplemented.
5176 (xml-escape-string): Doc fix.
5177
5178 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5179
5180 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
5181
5182 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5183
5184 * fringe.el (fringe-mode): Doc fix.
5185
5186 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
5187
5188 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
5189 is non-nil.
5190 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
5191 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
5192
5193 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
5194
5195 * calendar/cal-dst.el (calendar-current-time-zone):
5196 Return calendar-current-time-zone-cache if non-nil.
5197
5198 2012-06-29 Masatake YAMATO <yamato@redhat.com>
5199
5200 * progmodes/which-func.el (which-func-format):
5201 Add mouse-face. (Bug#11698)
5202
5203 2012-06-29 Leo Liu <sdl.web@gmail.com>
5204
5205 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
5206
5207 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5208
5209 * minibuffer.el (minibuffer-confirm-exit-commands):
5210 Add completion-at-point (bug#11725).
5211
5212 2012-06-29 Glenn Morris <rgm@gnu.org>
5213
5214 * progmodes/f90.el (f90-font-lock-keywords-2):
5215 Add some preprocessor elements. (Bug#10499)
5216
5217 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5218
5219 * progmodes/cperl-mode.el (cperl-update-syntaxification):
5220 Use syntax-propertize (bug#11739).
5221
5222 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
5223
5224 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
5225
5226 2012-06-28 Julien Danjou <julien@danjou.info>
5227
5228 * term.el (term-handle-colors-array): Use a set of new faces to
5229 color the terminal. Also uses :inverse-video property.
5230 (term-default-fg-color): Set to nil by default, deprecate in favor
5231 of `term-face'.
5232 (term-default-bg-color): Set to nil by default, deprecate in favor
5233 of `term-face'.
5234 (term-current-face): Use `term-face' by default.
5235 (term-bold-attribute): Variable deleted.
5236
5237 2012-06-28 Glenn Morris <rgm@gnu.org>
5238
5239 * simple.el (completion-list-mode-finish):
5240 Don't use toggle-read-only. (Since completion-list-mode has
5241 a special mode-class, it wasn't doing anything extra anyway.)
5242
5243 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
5244
5245 Make inlining of other-mode interpreted functions work (bug#11799).
5246 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
5247 (byte-compile): Use it to fix compilation of lexical-binding closures.
5248 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
5249 function, if needed.
5250
5251 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5252
5253 * help-mode.el (help-make-xrefs): Don't just withstand
5254 cyclic-variable-indirection but any error in documentation-property.
5255
5256 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
5257 memory use.
5258 * bindings.el (bindings--define-key): New function.
5259 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
5260 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
5261 * bindings.el: Use it to purecopy define-key bindings.
5262
5263 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
5264
5265 * emacs-lisp/cl.el (flet): Mark obsolete.
5266 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
5267 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
5268 * progmodes/js.el (js-c-fill-paragraph):
5269 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
5270 (ebrowse-switch-member-buffer-to-derived-class):
5271 * play/5x5.el (5x5-solver): Use cl-flet.
5272
5273 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
5274 (cl--symbol-function): New macro.
5275 (cl--letf, cl--letf*): Use it.
5276
5277 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
5278 Strip "toggle-" if any.
5279
5280 2012-06-27 Glenn Morris <rgm@gnu.org>
5281
5282 * info.el (Info-default-directory-list): Move here from paths.el.
5283 * paths.el: Remove file, which is now empty.
5284 * loadup.el: No longer load "paths".
5285
5286 * custom.el (custom-initialize-delay): Doc fix.
5287
5288 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
5289 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
5290 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
5291 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
5292 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
5293 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
5294 * eshell/eshell.el (eshell-defgroup): Remove alias.
5295
5296 2012-06-27 Chong Yidong <cyd@gnu.org>
5297
5298 * help.el (help-enable-auto-load): New variable.
5299
5300 * help-fns.el (help-fns--autoloaded-p): New function.
5301 (describe-function-1): Refer to a function as "autoloaded" if it
5302 was autoloaded at any time in the past. Perform autoloading if
5303 help-enable-auto-load is non-nil.
5304
5305 2012-06-26 Eli Zaretskii <eliz@gnu.org>
5306
5307 * makefile.w32-in (compile, compile-always): Depend on
5308 update-subdirs, not on subdirs.el. Otherwise, several different
5309 sub-targets of 'bootstrap' running in parallel could
5310 simultaneously write to subdirs.el, producing a garbled file.
5311
5312 2012-06-26 Sam Steingold <sds@gnu.org>
5313
5314 * files.el (file-name-base): New convenience function.
5315 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
5316 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
5317 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
5318 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
5319 * textmodes/ispell.el, textmodes/reftex-ref.el:
5320 * textmodes/tex-mode.el: Use it.
5321 Did not touch cedet and org because they are maintained elsewhere.
5322
5323 2012-06-26 Martin Rudalics <rudalics@gmx.at>
5324
5325 * calendar/calendar.el (calendar-exit): Don't try to delete or
5326 iconify last frame. See:
5327 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
5328
5329 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
5330
5331 * server.el (server-process-filter): Remember dir in the
5332 process's `server-client-directory' properties.
5333
5334 2012-06-24 Chong Yidong <cyd@gnu.org>
5335
5336 * xml.el (xml-parse-tag): Correctly handle comment embedded in
5337 non-tag text.
5338
5339 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
5340
5341 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
5342
5343 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5344
5345 * help-fns.el (describe-variable): Don't croak when doc is not found.
5346 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
5347 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
5348 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
5349 * emacs-lisp/smie.el (smie-next-sexp): CSE.
5350 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
5351 ((lambda ..) ..).
5352 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
5353
5354 2012-06-23 Chong Yidong <cyd@gnu.org>
5355
5356 * info.el (Info-mouse-follow-link): Accept symbol values of
5357 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
5358 (Info-fontify-node): Use Info-link-keymap for all navigation
5359 buttons, with link-args property to perform the desired action.
5360 (Info-link-keymap): Doc fix.
5361 (Info-next-link-keymap, Info-prev-link-keymap)
5362 (Info-up-link-keymap): Delete now-unused keymaps.
5363
5364 2012-06-23 Chong Yidong <cyd@gnu.org>
5365
5366 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
5367
5368 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
5369 system abbrevs.
5370
5371 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
5372
5373 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5374
5375 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
5376 (bug#11719).
5377
5378 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
5379 the requote function doesn't work properly (bug#11714).
5380
5381 2012-06-23 Glenn Morris <rgm@gnu.org>
5382
5383 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
5384
5385 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5386
5387 Further GV/CL cleanups.
5388 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
5389 gv-expander.
5390 (gv--defun-declaration): New function.
5391 (defun-declarations-alist): Use it.
5392 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
5393 (gv-place): Autoload.
5394 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
5395 original definition of dotimes and dolist.
5396 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
5397 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
5398 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
5399 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
5400 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
5401 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
5402 to the function's definition.
5403 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
5404 * window.el:
5405 * files.el:
5406 * faces.el:
5407 * env.el: Don't use CL.
5408
5409 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
5410
5411 Support higher-resolution time stamps (Bug#9000).
5412
5413 * calendar/time-date.el (with-decoded-time-value): New arg
5414 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
5415 (encode-time-value): New optional arg PICO. New type 3.
5416 (time-to-seconds) [!float-time]: Support the new picoseconds
5417 component if it's used.
5418 (seconds-to-time, time-subtract, time-add):
5419 Support ps-resolution time stamps as well.
5420
5421 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
5422 (timerp): Timer vectors now have length 9, not 8.
5423 (timer--time): Support new-style (4-part) time stamps.
5424 (timer-next-integral-multiple-of-time): Time stamps now have
5425 picosecond resolution, so take a bit more care about rounding.
5426 (timer-relative-time, timer-inc-time): New optional arg psecs.
5427 (timer-set-time-with-usecs): Set psecs to 0.
5428 (timer--activate): Check psecs component, too.
5429
5430 * proced.el (proced-time-lessp): Support ps-resolution stamps.
5431
5432 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5433
5434 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
5435 Move the non-essential binding to the post/pre-command-hook where it is
5436 more obviously correct.
5437
5438 * subr.el (read-passwd): Don't use a history at all.
5439 * savehist.el (savehist-save): Remove password saved accidentally
5440 because of the above bug.
5441
5442 2012-06-22 Bastien Guerry <bzg@gnu.org>
5443
5444 * files.el (toggle-read-only): Display a message telling whether
5445 the buffer is read-only or not (bug#11726).
5446
5447 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5448
5449 * emacs-lisp/gv.el: New file.
5450 * subr.el (push, pop): Extend to generalized variables.
5451 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
5452 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
5453 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
5454 gv-define-simple-setter, and gv-define-expander.
5455 Remove setf-methods defined in gv. Rename cl-setf -> setf.
5456 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
5457 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
5458 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
5459 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
5460 gv-letplace.
5461 (cl-defstruct): Don't define setf-method any more.
5462 * emacs-lisp/cl.el (flet): Don't autoload.
5463 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
5464 (define-setf-expander, defsetf, define-modify-macro)
5465 (cl-struct-setf-expander): Move from cl-lib.el.
5466 * emacs-lisp/syntax.el:
5467 * emacs-lisp/ewoc.el:
5468 * emacs-lisp/smie.el:
5469 * emacs-lisp/cconv.el:
5470 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
5471 (timer--time): Use gv-define-simple-setter.
5472 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
5473 to avoid coding-system problems in subr.el. Adjust all users.
5474 (macroexp--maxsize, macroexp-small-p): New functions.
5475 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
5476 * scroll-bar.el (scroll-bar-mode):
5477 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
5478 (normal-erase-is-backspace-mode): Don't use the `eq' place.
5479 * winner.el (winner-configuration, winner-make-point-alist)
5480 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
5481 * files.el (locate-file-completion-table): Avoid list*.
5482
5483 2012-06-22 Chong Yidong <cyd@gnu.org>
5484
5485 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
5486 (dired-create-files): Doc fix (Bug#11329).
5487 (dired-do-copy): Doc fix (Bug#11334).
5488 (dired-mark-read-string): Doc fix (Bug#11553).
5489
5490 * dired.el (dired-recursive-copies, dired-recursive-deletes):
5491 Doc fix (Bug#11326).
5492 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
5493 (dired-dwim-target): Doc fix.
5494
5495 * wdired.el (wdired-mode): Doc fix.
5496
5497 2012-06-22 Glenn Morris <rgm@gnu.org>
5498
5499 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
5500 (pcmpl-rpm-cache-stamp-file): New constant.
5501 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
5502 (pcmpl-rpm-packages): Optionally cache list of packages.
5503
5504 * pcmpl-rpm.el (pcmpl-rpm): New group.
5505 (pcmpl-rpm-query-options): New option.
5506 (pcmpl-rpm-packages): No need to inline it.
5507 Use pcmpl-rpm-query-options.
5508
5509 * calendar/calendar.el (calendar-in-read-only-buffer):
5510 Avoid some needless mode changes.
5511
5512 2012-06-21 Chong Yidong <cyd@gnu.org>
5513
5514 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
5515 (desktop-path): Remove . from the default value (Bug#10977).
5516 (desktop-read): Use user-emacs-directory if desktop-path is nil.
5517
5518 2012-06-20 Chong Yidong <cyd@gnu.org>
5519
5520 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
5521
5522 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
5523
5524 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
5525 (bug#11201).
5526
5527 2012-06-20 Chong Yidong <cyd@gnu.org>
5528
5529 * term.el (term-window-width): Handle the case of a missing right
5530 fringe (Bug#8837).
5531 (term-check-size): Use window-text-height (Bug#5445).
5532 (term-mode): Use define-derived-mode. Minor cleanups.
5533 Set font-lock-defaults (Bug#7692).
5534 (term-move-columns, term-insert-char, term-emulate-terminal)
5535 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
5536
5537 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
5538
5539 * net/ange-ftp.el (ange-ftp-get-passwd):
5540 Bind `enable-recursive-minibuffers'.
5541 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
5542
5543 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
5544
5545 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
5546
5547 2012-06-19 Glenn Morris <rgm@gnu.org>
5548
5549 * progmodes/python.el (python-mode): Derive from prog-mode.
5550
5551 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
5552
5553 * emulation/edt.el (edt-default-menu-bar-update-buffers)
5554 (edt-user-menu-bar-update-buffers): New functions.
5555 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
5556
5557 2012-06-19 Chong Yidong <cyd@gnu.org>
5558
5559 * subr.el (with-selected-window): Preserve the selected window's
5560 terminal's top-frame (Bug#4702).
5561
5562 * window.el (save-selected-window): Likewise.
5563
5564 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5565
5566 * progmodes/python.el (python-rx-constituents): Move backquote.
5567 (python-skeleton-define, python-define-auxiliary-skeleton):
5568 Use `declare'.
5569
5570 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
5571
5572 * minibuffer.el (read-file-name-default): Revert the patch from
5573 2012-06-17.
5574
5575 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5576
5577 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
5578 (pcase--u1, pcase--q1): Don't use apply-partially.
5579
5580 2012-06-18 Glenn Morris <rgm@gnu.org>
5581
5582 * progmodes/python.el (python-proc, python-buffer)
5583 (python-send-receive, python-send-string): Fix obsolete versions.
5584
5585 2012-06-18 Martin Rudalics <rudalics@gmx.at>
5586
5587 * window.el (special-display-p): Completely remove stringp
5588 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
5589
5590 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
5591
5592 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
5593
5594 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
5595
5596 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
5597 * net/tramp-sh.el (tramp-maybe-open-connection):
5598 Throw if `non-essential' is non-nil.
5599
5600 2012-06-17 Martin Rudalics <rudalics@gmx.at>
5601
5602 * window.el (special-display-p): Signal an error if BUFFER-NAME
5603 is not a string (Bug#11713).
5604
5605 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
5606
5607 * progmodes/python.el (python-info-beginning-of-backslash):
5608 Rename from python-info-beginning-of-backlash, as a spelling fix.
5609
5610 2012-06-17 Chong Yidong <cyd@gnu.org>
5611
5612 * term.el (term-emulate-terminal): If term-check-size is called,
5613 move point to the process mark without resetting point (Bug#4635).
5614
5615 2012-06-17 Glenn Morris <rgm@gnu.org>
5616
5617 * international/mule-cmds.el (mule-menu-keymap)
5618 (set-language-environment, set-locale-environment): Doc tweaks.
5619
5620 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
5621
5622 * cus-face.el (custom-face-attributes): Add wave-style underline
5623 attribute.
5624 * faces.el (set-face-attribute): Update docstring to describe
5625 wave-style underline attribute.
5626
5627 2012-06-16 Chong Yidong <cyd@gnu.org>
5628
5629 * term/xterm.el (terminal-init-xterm): Discard input before
5630 querying background mode (Bug#10959).
5631
5632 2012-06-16 Stefan Merten <smerten@oekonux.de>
5633
5634 * textmodes/rst.el: Added and corrected some comments.
5635 (rst-re-alist-def): Improve symbol syntax.
5636 (rst-mode-syntax-table): Correct syntax entries.
5637 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
5638 (rst-official-version, rst-official-cvs-rev): Update version
5639 information.
5640
5641 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
5642
5643 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
5644 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
5645
5646 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
5647
5648 * progmodes/python.el: New python.el merge.
5649 (python-guess-indent): Obsolete var.
5650 (python-indent-guess-indent-offset): New defcustom.
5651 (python-indent): Obsolete var.
5652 (python-indent-offset): New defcustom.
5653 (python-python-command, python-jython-command): Delete var.
5654 (python-shell-interpreter): New defcustom.
5655 (python-pdbtrack-do-tracking-p): Delete var.
5656 (python-pdbtrack-activate): New defcustom.
5657 (python-use-skeletons): Obsolete var.
5658 (python-skeleton-autoinsert): New defcustom.
5659 (inferior-python-filter-regexp, python-continuation-offset)
5660 (python-honour-comment-indentation, python-indent-string-contents)
5661 (python-jython-packages, python-mode-hook)
5662 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
5663 (python-shell-prompt-alist)
5664 (python-source-modes): Delete defcustoms.
5665 (python-check-buffer-name, python-eldoc-setup-code)
5666 (python-eldoc-string-code, python-ffap-setup-code)
5667 (python-ffap-string-code, python-fill-comment-function)
5668 (python-fill-decorator-function, python-fill-paren-function)
5669 (python-fill-string-function, python-imenu-include-defun-type)
5670 (python-imenu-make-tree, python-imenu-subtree-root-label)
5671 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
5672 (python-shell-compilation-regexp-alist)
5673 (python-shell-completion-module-string-code)
5674 (python-shell-completion-pdb-string-code)
5675 (python-shell-completion-setup-code)
5676 (python-shell-completion-string-code)
5677 (python-shell-enable-font-lock, python-shell-exec-path)
5678 (python-shell-extra-pythonpaths)
5679 (python-shell-internal-buffer-name, python-shell-interpreter-args)
5680 (python-shell-process-environment)
5681 (python-shell-prompt-block-regexp)
5682 (python-shell-prompt-output-regexp)
5683 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
5684 (python-shell-send-setup-max-wait, python-shell-setup-codes)
5685 (python-shell-virtualenv-path): New defcustoms.
5686 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
5687 (inferior-python-mode-syntax-table, python--prompt-regexp)
5688 (python-buffer, python-command python-python-command)
5689 (python-default-template, python-imports, python-indent-index)
5690 (python-indent-list, python-indent-list-length)
5691 (python-mode-running, python-pdbtrack-is-tracking-p)
5692 (python-preoutput-continuation, python-preoutput-leftover)
5693 (python-preoutput-result, python-preoutput-skip-next-prompt)
5694 (python-prev-dir/file, python-recursing)
5695 (python-saved-check-command, python-version-checked)
5696 (python-which-func-length-limit)
5697 (view-return-to-alist): Delete vars.
5698 (python-check-custom-command, python-dotty-syntax-table)
5699 (python-imenu-index-alist, python-indent-current-level)
5700 (python-indent-dedenters, python-indent-levels)
5701 (python-nav-beginning-of-defun-regexp)
5702 (python-nav-list-defun-positions-cache)
5703 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
5704 (python-shell-internal-buffer)
5705 (python-skeleton-available): New vars.
5706 (def-python-skeleton): Delete macro.
5707 (python-skeleton-define): New macro.
5708 (python-define-auxiliary-skeleton, python-rx): New macros.
5709 (python-insert-class): Delete command.
5710 (python-skeleton-class): New command.
5711 (python-insert-def): Delete command.
5712 (python-skeleton-def): New command.
5713 (python-insert-for): Delete command.
5714 (python-skeleton-for): New command.
5715 (python-insert-if): Delete command.
5716 (python-skeleton-if): New command.
5717 (python-insert-try/except, python-insert-try/finally): Delete commands.
5718 (python-skeleton-try): New command.
5719 (python-insert-while): Delete command.
5720 (python-skeleton-while): New command.
5721 (python-backspace): Delete command.
5722 (python-indent-dedent-line-backspace): New command.
5723 (python-electric-colon): Delete command.
5724 (python-indent-electric-colon): New command.
5725 (python-guess-indent): Delete command.
5726 (python-indent-guess-indent-offset): New command.
5727 (python-shift-left): Delete command.
5728 (python-indent-shift-left): New command.
5729 (python-shift-right): Delete command.
5730 (python-indent-shift-right): New command.
5731 (python-find-function): Delete command.
5732 (python-nav-jump-to-defun): New command.
5733 (python-next-statement): Delete command.
5734 (python-nav-forward-sentence): New command.
5735 (python-previous-statement): Delete command.
5736 (python-nav-backward-sentence): New command.
5737 (python-fill-paragraph): Delete command.
5738 (python-fill-paragraph-function): New command.
5739 (python-send-buffer): Delete command.
5740 (python-shell-send-buffer): New command.
5741 (python-send-defun): Delete command.
5742 (python-shell-send-defun): New command.
5743 (python-send-region, python-send-region-and-go): Delete commands.
5744 (python-shell-send-region)
5745 (python-shell-switch-to-shell): New commands.
5746 (python-send-string): Delete command.
5747 (python-shell-send-string): New command.
5748 (python-switch-to-python): Delete command.
5749 (python-shell-switch-to-shell): New command.
5750 (python-describe-symbol): Delete command.
5751 (python-eldoc-at-point): New command.
5752 (python--set-prompt-regexp, python-args-to-list)
5753 (python-after-info-look, python-check-version)
5754 (python-check-comint-prompt, python-find-imports)
5755 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
5756 (python-unload-function, python-expand-template)
5757 (python-maybe-jython, python-preoutput-filter)
5758 (python-pdbtrack-get-source-buffer)
5759 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
5760 (python-pdbtrack-toggle-stack-tracking)
5761 (python-pdbtrack-track-stack-file, python-initial-text)
5762 (python-first-word, python-comment-line-p, python-send-command)
5763 (python-setup-brm, python-sentinel, python-set-proc)
5764 (python-skip-out, python-input-filter, python-outdent-p)
5765 (python-outline-level, python-backslash-continuation-line-p)
5766 (python-end-of-block, python-end-of-statement, python-mark-block)
5767 (python-beginning-of-block, python-beginning-of-statement)
5768 (python-blank-line-p, python-beginning-of-string)
5769 (python-open-block-statement-p): Delete functions.
5770 (python-indent-line, python-indent-line-1): Delete functions.
5771 (python-indent-line): New function.
5772 (python-indentation-levels): Delete function.
5773 (python-indent-calculate-levels): New function.
5774 (python-proc): Delete function.
5775 (python-shell-get-process): New function.
5776 (python-send-receive): Delete function.
5777 (python-shell-send-string-no-output): New function.
5778 (python-module-path): Delete function.
5779 (python-ffap-module-path): New function.
5780 (python-completion-at-point)
5781 (python-symbol-completions): Delete functions.
5782 (python-completion-complete-at-point): New function.
5783 (python-load-file): Delete function.
5784 (python-shell-send-file): New function.
5785 (python-calculate-indentation): Delete function.
5786 (python-indent-calculate-indentation): New function.
5787 (python-skip-comments/blanks): Delete function.
5788 (python-util-forward-comment): New function.
5789 (python-continuation-line-p): Delete function.
5790 (python-info-continuation-line-p): New function.
5791 (python-which-func, python-current-defun): Delete function.
5792 (python-info-current-defun): New function.
5793 (python-beginning-of-defun): Delete function.
5794 (python-nav-beginning-of-defun): New function.
5795 (python-close-block-statement-p)
5796 (python-block-end-p): Delete function.
5797 (python-info-closing-block): New function.
5798 (python-comint-output-filter-function)
5799 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
5800 (python-fill-comment, python-fill-decorator, python-fill-paren)
5801 (python-fill-string, python-imenu-make-element-tree)
5802 (python-imenu-make-tree, python-imenu-tree-assoc)
5803 (python-indent-context, python-indent-dedent-line)
5804 (python-indent-line-function)
5805 (python-indent-post-self-insert-function)
5806 (python-indent-toggle-levels)
5807 (python-info-assignment-continuation-line-p)
5808 (python-info-beginning-of-backlash)
5809 (python-info-block-continuation-line-p)
5810 (python-info-closing-block-message)
5811 (python-info-line-ends-backslash-p)
5812 (python-info-looking-at-beginning-of-defun)
5813 (python-info-ppss-context, python-info-ppss-context-type)
5814 (python-nav-list-defun-positions, python-nav-read-defun)
5815 (python-nav-sentence-end, python-nav-sentence-start)
5816 (python-pdbtrack-comint-output-filter-function)
5817 (python-pdbtrack-set-tracked-buffer)
5818 (python-shell-calculate-exec-path)
5819 (python-shell-calculate-process-environment)
5820 (python-shell-completion--do-completion-at-point)
5821 (python-shell-completion--get-completions)
5822 (python-shell-completion-complete-at-point)
5823 (python-shell-completion-complete-or-indent)
5824 (python-shell-get-or-create-process)
5825 (python-shell-get-process-name)
5826 (python-shell-internal-get-or-create-process)
5827 (python-shell-internal-get-process-name)
5828 (python-shell-internal-send-string, python-shell-make-comint)
5829 (python-shell-parse-command, python-shell-send-setup-code)
5830 (python-skeleton-add-menu-items)
5831 (python-util-clone-local-variables, python-util-position)
5832 (run-python-internal, python-indentation-levels)
5833 (python-nav-beginning-of-defun)
5834 (python-completion-complete-at-point): New functions.
5835 (run-python): Change arguments. New API requirements.
5836
5837 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5838
5839 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
5840 (bug#11649).
5841
5842 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
5843 (macroexp--expand-all): Use it.
5844
5845 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
5846 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
5847 Use `cl-function' instead.
5848
5849 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
5850
5851 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
5852 Suggested by Stefan Monnier while discussing bug#11657.
5853
5854 2012-06-14 Sam Steingold <sds@gnu.org>
5855
5856 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
5857
5858 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
5859
5860 * play/doctor.el (doctor-doc): Remove parameter and use
5861 doctor-sent instead of sent.
5862 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
5863
5864 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5865
5866 * files.el: Require cl-lib.
5867 (file-name-non-special): Replace case -> cl-case.
5868
5869 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
5870
5871 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
5872 mapping from #' to function*.
5873
5874 2012-06-13 Chong Yidong <cyd@gnu.org>
5875
5876 * mouse.el (mouse-drag-track): Do not set the mark if the user
5877 releases the mouse without selecting anything (Bug#11588).
5878
5879 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5880
5881 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
5882 as well (bug#11646).
5883
5884 * loadup.el: Count byte-code functions as well.
5885
5886 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
5887 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
5888
5889 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
5890 (bug#11649). Add cl-defun and cl-defmacro.
5891
5892 2012-06-13 Drew Adams <drew.adams@oracle.com>
5893
5894 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
5895 Fix last change.
5896
5897 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
5898
5899 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
5900 Otherwise, it blocks in batch mode.
5901
5902 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
5903
5904 * help-mode.el (bookmark-make-record-default): Declare.
5905
5906 2012-06-13 Chong Yidong <cyd@gnu.org>
5907
5908 * emacs-lisp/package.el (list-packages): Compute a list of
5909 packages that are newly-available since the last list-packages
5910 invocation.
5911 (package-menu--new-package-list): New var.
5912 (package-menu--generate, package-menu--print-info)
5913 (package-menu--status-predicate, package-menu-mark-install):
5914 Handle new status label "new".
5915
5916 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
5917
5918 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
5919 conversion to backquotes.
5920
5921 2012-06-12 Chong Yidong <cyd@gnu.org>
5922
5923 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
5924 Rename from gud-inhibit-global-bindings.
5925
5926 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
5927
5928 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
5929 hook from nxml-glyph-set-hook.
5930
5931 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
5932 declaration.
5933
5934 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
5935
5936 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
5937 Convert to defcustom.
5938
5939 2012-06-12 Drew Adams <drew.adams@oracle.com>
5940
5941 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
5942 New functions.
5943 (help-mode): Use them.
5944
5945 2012-06-11 Glenn Morris <rgm@gnu.org>
5946
5947 * progmodes/fortran.el (fortran-font-lock-keywords-3):
5948 Use preprocessor face for directives.
5949 (fortran-directive-re): Doc fix.
5950
5951 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
5952
5953 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
5954 conversion to backquotes (bug#11652).
5955
5956 Fix compiler-expansion of CL's cXXr functions (bug#11673).
5957 * emacs-lisp/cl-lib.el (cl--defalias): New function.
5958 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
5959 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
5960 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
5961 (cl-ninth, cl-tenth): Mark them as inlinable.
5962 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
5963 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
5964 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
5965 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
5966 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
5967 (cl-list*, cl-adjoin): Don't put an autoload manually.
5968 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
5969 (cl--compiler-macro-list*): Add autoload cookie.
5970 (cl--compiler-macro-cXXr): New function.
5971
5972 * help-fns.el (help-fns--compiler-macro): New function extracted from
5973 describe-function-1; follow aliases and use `compiler-macro' property.
5974 (describe-function-1): Use it.
5975
5976 2012-06-11 Chong Yidong <cyd@gnu.org>
5977
5978 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
5979 is uninstalled, if imagemagick is installed.
5980
5981 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
5982
5983 * emacs-lisp/cl-lib.el: Use lexical-binding.
5984 (cl-map-extents, cl-maclisp-member): Remove.
5985 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
5986 (cl--set-substring, cl--block-wrapper, cl--block-throw)
5987 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
5988 * emacs-lisp/cl-extra.el: Use lexical-binding.
5989 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
5990 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
5991 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
5992 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
5993 * emacs-lisp/cl-seq.el: Use lexical-binding.
5994 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
5995 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
5996 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
5997 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
5998 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
5999 CL's internals.
6000
6001 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
6002
6003 Sync with Tramp 2.2.6-pre.
6004
6005 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
6006 `print-length' and `print-level' to nil, in order to avoid
6007 truncation. Reported by Christopher Schmidt
6008 <christopher@ristopher.com>.
6009
6010 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
6011
6012 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
6013 New defmacro.
6014 (tramp-compat-copy-directory): Add optional argument
6015 COPY-CONTENTS. It is not handled yet.
6016
6017 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
6018 (tramp-ftp-file-name-p): Simplify.
6019
6020 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
6021 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
6022 connection vector.
6023
6024 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
6025 (tramp-methods): Do not use `tramp-password-end-of-line'.
6026 (tramp-completion-function-alist-putty): Handle UNIX case.
6027 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
6028 (tramp-do-file-attributes-with-stat)
6029 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
6030 gid as real numbers. They could run out of integer range on cygwin.
6031 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
6032 (tramp-sh-handle-expand-file-name): Handle hops.
6033 (tramp-open-connection-setup-interactive-shell):
6034 Use `tramp-cleanup'. Move check for busyboxes ...
6035 (tramp-find-shell): ... here. Simplify implementation.
6036 Set "remote-shell" property also for alternative shells.
6037 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
6038 If failing, a regular file would be written otherwise.
6039 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
6040 (tramp-find-inline-encoding): Cache the coding commands in the
6041 process cache. Apply test command on the remote side, if defined.
6042 (tramp-find-inline-compress): Cache the compress commands in the
6043 process cache.
6044 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
6045 when requested. Handle hops.
6046 (tramp-current-connection): New defvar.
6047 (tramp-maybe-open-connection): Use `tramp-cleanup'.
6048 Throw `suppress', if there was a failed connection shortly before.
6049 Handle user interrupt. (Bug#10187)
6050 (tramp-get-inline-compress, tramp-get-inline-coding):
6051 Read connection properties from the process cache.
6052
6053 * net/tramp-smb.el (tramp-smb-server-version)
6054 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
6055 New defconsts.
6056 (tramp-smb-prompt): Extend for powershell prompt.
6057 (tramp-smb-file-name-handler-alist): Add handlers for
6058 `process-file', `shell-command' and `start-file-process'.
6059 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
6060 (tramp-smb-winexe-shell-command-switch): New defcustoms.
6061 (tramp-smb-file-name-p): Simplify.
6062 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
6063 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
6064 (tramp-smb-shell-quote-argument): New defuns.
6065 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
6066 Implement using "tar". By this, time-stamps are preserved.
6067 (tramp-smb-handle-copy-file): Handle also the case of directories.
6068 (tramp-smb-do-file-attributes-with-stat)
6069 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
6070 Use `tramp-get-connection-buffer').
6071 (tramp-smb-handle-rename-file): Use "rename", when source and
6072 target are on the same share.
6073 (tramp-smb-maybe-open-connection): Handle wrong passwords.
6074 Use `tramp-smb-server-version'.
6075 (tramp-smb-wait-for-output): Remove prompt.
6076
6077 * net/tramp.el (top): Require 'cl.
6078 (tramp-methods, tramp-rsh-end-of-line):
6079 Remove `tramp-password-end-of-line' from docstring.
6080 (tramp-save-ad-hoc-proxies): New defcustom.
6081 (tramp-completion-function-alist): Adapt docstring.
6082 (tramp-default-password-end-of-line): Remove defcustom.
6083 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
6084 (tramp-user-regexp, tramp-file-name-regexp-unified)
6085 (tramp-file-name-regexp-url): Extend regexp by hop separator.
6086 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
6087 (tramp-remote-file-name-spec-regexp): New defconst.
6088 (tramp-file-name-structure): Extend structure for hops.
6089 (tramp-get-method-parameter): Move up.
6090 (tramp-file-name-p, tramp-dissect-file-name)
6091 (with-parsed-tramp-file-name): Handle hops.
6092 (tramp-file-name-hop): New defun.
6093 (tramp-make-tramp-file-name): New optional arg HOP.
6094 (tramp-message-show-progress-reporter-message): New defvar.
6095 (tramp-with-progress-reporter): Use it. We cannot use
6096 `tramp-message-show-message' here, because this suppresses also
6097 error buffers.
6098 (tramp-error-with-buffer): Suppress buffer view, if
6099 `tramp-message-show-message' is nil.
6100 Use `tramp-get-connection-buffer'.
6101 (tramp-cleanup): New defun.
6102 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
6103 (tramp-file-name-handler): If `debug-on-error' is set, propagate
6104 an error unchanged.
6105 (tramp-completion-handle-file-name-all-completions): Handle hops.
6106 Fix an error when called from ido.
6107 (tramp-completion-dissect-file-name): Use better local variable
6108 name. Add hop to the vector.
6109 (tramp-handle-insert-file-contents): Use progress-reporter for the
6110 whole scenario.
6111 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
6112 to `t'.
6113 (tramp-check-for-regexp): Simplify search.
6114 (tramp-enter-password): Remove it. Move implementation ...
6115 (tramp-action-password): ... here.
6116 (tramp-mode-string-to-int, tramp-local-host-p)
6117 (tramp-make-tramp-temp-file, tramp-read-passwd)
6118 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
6119 Set tramp-autoload cookie.
6120
6121 * net/trampver.el: Update release number.
6122
6123 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6124 Michael Albinus <michael.albinus@gmx.de>
6125
6126 * net/tramp.el (tramp-set-completion-function): Fix docstring.
6127 (tramp-parse-group, tramp-parse-file)
6128 (tramp-parse-shostkeys-sknownhosts): New defuns.
6129 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
6130 (tramp-parse-shosts-group, tramp-parse-sconfig)
6131 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
6132 (tramp-parse-sknownhosts, tramp-parse-hosts)
6133 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
6134 Use them.
6135 (tramp-parse-passwd-group, tramp-parse-netrc-group)
6136 (tramp-parse-putty-group): Don't narrow.
6137 (tramp-parse-putty): Make a loop.
6138 (tramp-file-name-handler): Catch the `suppress' signal.
6139
6140 2012-06-11 Chong Yidong <cyd@gnu.org>
6141
6142 * image.el (imagemagick-register-types): Put the ImageMagick entry
6143 at the end of image-type-file-name-regexps.
6144
6145 2012-06-11 Johan Bockgård <bojohan@gnu.org>
6146
6147 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
6148 (pcase, pcase-let*, pcase-dolist): Use them.
6149
6150 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6151
6152 * emacs-lisp/pcase.el (pcase--let*): New function.
6153 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
6154 (pcase--expand): Use macroexp-let².
6155
6156 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6157
6158 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
6159 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
6160 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
6161 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
6162 * emacs-lisp/derived.el: Use pcase instead of `cl'.
6163 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
6164
6165 2012-06-10 Glenn Morris <rgm@gnu.org>
6166
6167 * mail/rmail.el (rmail-yank-current-message): Leave point at
6168 correct position. (Bug#11660)
6169
6170 2012-06-10 Chong Yidong <cyd@gnu.org>
6171
6172 * allout-widgets.el: Fix code header.
6173
6174 2012-06-10 Chong Yidong <cyd@gnu.org>
6175
6176 * cus-edit.el (customize-changed-options-previous-release):
6177 Bump to 24.1.
6178
6179 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
6180
6181 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
6182
6183 2012-06-09 Chong Yidong <cyd@gnu.org>
6184
6185 * ebuff-menu.el (electric-buffer-list): Preserve header line.
6186
6187 2012-06-09 Martin Rudalics <rudalics@gmx.at>
6188
6189 * window.el (special-display-popup-frame): Don't use
6190 window--display-buffer (Bug#11651).
6191
6192 2012-06-09 Eli Zaretskii <eliz@gnu.org>
6193
6194 Fix parallel builds: make sure loaddefs.el is not being written
6195 while Lisp files are compiled.
6196 (compile): Don't depend on 'mh-autoloads'.
6197 (compile-CMD, compile-SH): Depend on 'autoloads'.
6198 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
6199
6200 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
6201
6202 2012-06-09 Chong Yidong <cyd@gnu.org>
6203
6204 * face-remap.el (face-remap-add-relative, face-remap-set-base)
6205 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
6206 Doc fixes (Bug#11225).
6207
6208 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
6209
6210 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
6211 a function if there's a clear indication that it has a compiler-macro.
6212 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
6213 (macro-declarations-alist): Add arglist to declaration functions.
6214 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
6215 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
6216 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
6217 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
6218 Also add autoload to find the compiler macro.
6219 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
6220 (cl--compiler-macro-member, cl--compiler-macro-assoc)
6221 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
6222 (cl--compiler-macro-get): New functions, replacing calls to
6223 cl-define-compiler-macro.
6224 (cl-typep) [compiler-macro]: Use macroexp-let².
6225
6226 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
6227
6228 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
6229 string properly, fixes Bug#11473.
6230
6231 2012-06-08 Chong Yidong <cyd@gnu.org>
6232
6233 * faces.el (set-face-attribute): Doc fix.
6234 (modify-face): Don't use :bold and :italic.
6235 (error, warning, success): Tweak definitions.
6236
6237 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
6238 (custom-modified, custom-set, custom-changed, custom-themed)
6239 (custom-saved, custom-button, custom-button-mouse)
6240 (custom-button-pressed, custom-state, custom-comment-tag)
6241 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
6242 (custom-group-subtitle): Use new-style face specs.
6243 (custom-invalid-face, custom-rogue-face, custom-modified-face)
6244 (custom-set-face, custom-changed-face, custom-saved-face)
6245 (custom-button-face, custom-button-pressed-face)
6246 (custom-documentation-face, custom-state-face)
6247 (custom-comment-face, custom-comment-tag-face)
6248 (custom-variable-tag-face, custom-variable-button-face)
6249 (custom-face-tag-face, custom-group-tag-face-1)
6250 (custom-group-tag-face): Remove obsolete face alias.
6251
6252 * epa.el (epa-validity-high, epa-validity-medium)
6253 (epa-validity-low, epa-mark, epa-field-name, epa-string)
6254 (epa-field-name, epa-field-body):
6255 * font-lock.el (font-lock-comment-face, font-lock-string-face)
6256 (font-lock-keyword-face, font-lock-builtin-face)
6257 (font-lock-function-name-face, font-lock-variable-name-face)
6258 (font-lock-type-face, font-lock-constant-face):
6259 * ido.el (ido-first-match, ido-only-match, ido-subdir)
6260 (ido-virtual, ido-indicator, ido-incomplete-regexp):
6261 * speedbar.el (speedbar-button-face, speedbar-file-face)
6262 (speedbar-directory-face, speedbar-tag-face)
6263 (speedbar-selected-face, speedbar-highlight-face)
6264 (speedbar-separator-face):
6265 * whitespace.el (whitespace-newline, whitespace-space)
6266 (whitespace-hspace, whitespace-tab, whitespace-trailing)
6267 (whitespace-line, whitespace-space-before-tab)
6268 (whitespace-space-after-tab, whitespace-indentation)
6269 (whitespace-empty):
6270 * emulation/cua-base.el (cua-global-mark):
6271 * eshell/em-prompt.el (eshell-prompt):
6272 * net/newst-plainview.el (newsticker-new-item-face)
6273 (newsticker-old-item-face, newsticker-immortal-item-face)
6274 (newsticker-obsolete-item-face, newsticker-date-face)
6275 (newsticker-statistics-face, newsticker-default-face):
6276 * net/newst-reader.el (newsticker-feed-face)
6277 (newsticker-extra-face, newsticker-enclosure-face):
6278 * net/newst-treeview.el (newsticker-treeview-face)
6279 (newsticker-treeview-new-face, newsticker-treeview-old-face)
6280 (newsticker-treeview-immortal-face)
6281 (newsticker-treeview-obsolete-face)
6282 (newsticker-treeview-selection-face):
6283 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
6284 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
6285 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
6286 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
6287 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
6288 (nxml-outline-active-indicator, nxml-outline-ellipsis):
6289 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
6290 (mpuz-text):
6291 * progmodes/vera-mode.el (vera-font-lock-number)
6292 (vera-font-lock-function, vera-font-lock-interface):
6293 * textmodes/table.el (table-cell): Use new-style face specs, and
6294 don't use the old :bold and :italic attributes.
6295
6296 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
6297 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
6298 (ebrowse-member-class, ebrowse-progress): Likewise.
6299 (ebrowse-tree-mark-face, ebrowse-root-class-face)
6300 (ebrowse-file-name-face, ebrowse-default-face)
6301 (ebrowse-member-attribute-face, ebrowse-member-class-face)
6302 (ebrowse-progress-face): Remove obsolete faces.
6303
6304 * progmodes/flymake.el (flymake-errline, flymake-warnline):
6305 Inherit from error and warning faces respectively.
6306
6307 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
6308 Likewise.
6309 (flyspell-incorrect-face, flyspell-duplicate-face):
6310 Remove obsolete aliases.
6311
6312 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
6313
6314 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6315 Avoid infloop.
6316
6317 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6318
6319 * startup.el (argv, argi): Make lexically scoped.
6320 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
6321 * emacs-lisp/cl-macs.el: Use lexical-binding.
6322 Rename cl-bind-* to cl--bind-*.
6323 * files.el: Don't require `cl' since it doesn't use it.
6324 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
6325
6326 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
6327
6328 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
6329 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
6330 instead of calling external sort utility.
6331 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
6332
6333 2012-06-08 Eli Zaretskii <eliz@gnu.org>
6334
6335 * descr-text.el (describe-char): Mention how to insert the
6336 character, if the current input method doesn't support it.
6337 See the discussion in this thread for the details:
6338 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
6339
6340 2012-06-08 Sam Steingold <sds@gnu.org>
6341
6342 * bindings.el (global-map): Bind XF86Forward to next-buffer and
6343 XF86Back to previous-buffer.
6344 (minibuffer-local-map): Bind them to next-history-element and
6345 previous-history-element respectively.
6346 * help-mode.el (help-mode-map): Bind them to help-go-forward and
6347 help-go-back respectively.
6348 * info.el (Info-mode-map): Bind them to Info-history-forward and
6349 Info-history-back respectively.
6350 These are the keys next to Up on the ThinkPad keyboard.
6351
6352 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6353
6354 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
6355 * emacs-lisp/cl-macs.el: Provide itself.
6356 (cl--labels-convert-cache): New var.
6357 (cl--labels-convert): New function.
6358 (cl-flet, cl-labels): New implementation with new semantics, relying on
6359 lexical-binding.
6360 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
6361 (cl-closure-vars, cl--function-convert-cache)
6362 (cl--function-convert): Move from cl-macs.el.
6363 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
6364 rename by removing the "cl-" prefix.
6365 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
6366
6367 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6368
6369 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
6370 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
6371 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
6372 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
6373 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
6374 (cl-hash-table-count): Add old compatibility aliases.
6375
6376 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
6377 Use macroexpand-all-environment instead.
6378 (cl--old-macroexpand): New var.
6379 (cl--sm-macroexpand): New function.
6380 (cl-symbol-macrolet): Use it during macro expansion.
6381 (cl--function-convert-cache): New var.
6382 (cl--function-convert): New function, extracted from
6383 cl-macroexpand-all.
6384 (cl-lexical-let): Use it.
6385
6386 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
6387 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
6388 (cl-member): Remove old alias.
6389
6390 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
6391 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
6392 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
6393 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
6394 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
6395 (cl-macroexpand-cmacs): Remove var.
6396 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
6397 Use macroexpand-all instead.
6398
6399 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6400
6401 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
6402 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
6403 (macroexp-copyable-p): New functions and macros.
6404 * emacs-lisp/edebug.el (edebug-unwrap):
6405 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
6406 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
6407 (pcase--let*): Remove.
6408 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
6409 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
6410 macroexp-const-p instead.
6411 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
6412
6413 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
6414 instead of "cl-" for internal definitions. Use macroexp-const-p.
6415 (cl-old-bc-file-form): Remove var.
6416 (cl-const-exprs-p): Remove fun.
6417 (cl-labels, cl-macrolet): Use backquote.
6418 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
6419 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
6420 (cl-define-setf-expander): Rename from cl-define-setf-method.
6421 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
6422
6423 * international/mule-cmds.el: Don't require CL.
6424 (view-hello-file): Don't use `letf'.
6425
6426 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6427
6428 * tmm.el (tmm-prompt): Use string-prefix-p.
6429 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
6430 (tmm-add-prompt): Use minibuffer-completion-help.
6431 (tmm-delete-map): Remove.
6432
6433 * subr.el (kbd): Make it its own function.
6434
6435 2012-06-07 Stefan Merten <smerten@oekonux.de>
6436
6437 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
6438 Silence compiler warnings. Fix versions.
6439 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
6440 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
6441 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
6442 (rst-package-emacs-version-alist): Correct Emacs version to
6443 represent major merge with upstream.
6444 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
6445
6446 2012-06-06 Glenn Morris <rgm@gnu.org>
6447
6448 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
6449 Only print environment variables if set.
6450
6451 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6452
6453 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
6454 (macroexp--cons): Rename from maybe-cons.
6455 (macroexp--accumulate): Rename from macroexp-accumulate.
6456 (macroexp--all-forms): Rename from macroexpand-all-forms.
6457 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
6458 (macroexp--expand-all): Rename from macroexpand-all-1.
6459
6460 2012-06-06 Sam Steingold <sds@gnu.org>
6461
6462 * calendar/calendar.el (calendar-in-read-only-buffer):
6463 Call `special-mode' to enable the standard read-only keybindings.
6464
6465 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6466
6467 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
6468 with "loading" messages (bug#11635).
6469
6470 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
6471
6472 * files.el (enable-remote-dir-locals): New option.
6473 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
6474
6475 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6476 Ensure, that the temp directory is local.
6477
6478 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
6479 `temporary-file-directory'.
6480
6481 * progmodes/python.el (python-send-region): Ensure, that the
6482 temporary file is created also in the remote case.
6483
6484 2012-06-06 Glenn Morris <rgm@gnu.org>
6485
6486 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
6487 (vc-rcs-update-changelog): Use it.
6488
6489 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
6490
6491 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
6492 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
6493 (vc-sccs-diff): Replace use of the external vcdiff script.
6494
6495 2012-06-05 Glenn Morris <rgm@gnu.org>
6496
6497 * ledit.el: Move to obsolete/.
6498
6499 2012-06-05 Sam Steingold <sds@gnu.org>
6500
6501 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
6502 patch (Bug#11140).
6503
6504 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6505
6506 * emacs-lisp/cust-print.el: Move to obsolete.
6507
6508 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
6509 compiler-macro expansion.
6510
6511 Add native compiler-macro support.
6512 * emacs-lisp/macroexp.el (macroexpand-all-1):
6513 Support compiler-macros directly. Properly follow aliases and apply
6514 the compiler macros more thoroughly.
6515 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
6516 macroexpand now properly follows aliases.
6517 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
6518 (cl-compiler-macroexpand): Use new prop.
6519 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
6520
6521 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
6522
6523 2012-06-05 Martin Rudalics <rudalics@gmx.at>
6524
6525 * window.el (get-lru-window, get-mru-window, get-largest-window):
6526 New argument NOT-SELECTED to avoid picking the selected window.
6527 (window--display-buffer-1, window--display-buffer-2): Replace by
6528 new function window--display-buffer
6529 (display-buffer-same-window, display-buffer-reuse-window)
6530 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
6531 Use window--display-buffer.
6532 (display-buffer-use-some-window): Remove temporary dedication
6533 hack by calling get-lru-window and get-largest-window with
6534 NOT-SELECTED argument non-nil. Call window--display-buffer.
6535
6536 2012-06-05 Glenn Morris <rgm@gnu.org>
6537
6538 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
6539 Replace external vcdiff script.
6540
6541 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
6542
6543 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
6544
6545 2012-06-04 Chong Yidong <cyd@gnu.org>
6546
6547 * image.el (imagemagick-types-inhibit): Revert last change.
6548 Add INFO and M.
6549 (imagemagick-enabled-types): Remove CIN and EPS*.
6550
6551 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
6552
6553 * emacs-lisp/cl-lib.el: Rename from cl.el.
6554 * emacs-lisp/cl.el: New compatibility file.
6555 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
6556 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
6557 to obey the "cl-" prefix.
6558 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
6559
6560 2012-06-03 Glenn Morris <rgm@gnu.org>
6561
6562 * emacs-lisp/authors.el (authors-aliases): Addition.
6563
6564 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
6565 Fix :version.
6566
6567 2012-06-03 Stefan Merten <smerten@oekonux.de>
6568
6569 * textmodes/rst.el: Add comments.
6570 (rst-transition, rst-adornment): New faces.
6571 (rst-adornment-faces-alist): Make default safe to reevaluate.
6572 Fixes
6573 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
6574 Improve customization tags.
6575 (rst-define-level-faces): Clarify meaning.
6576
6577 2012-06-03 Chong Yidong <cyd@gnu.org>
6578
6579 * progmodes/compile.el (compilation-mode-line-fail)
6580 (compilation-mode-line-run, compilation-mode-line-exit):
6581 New faces.
6582 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
6583
6584 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
6585
6586 * progmodes/which-func.el (which-func-update-ediff-windows):
6587 New function. Use it in ediff-select-hook (Bug#11478).
6588
6589 2012-06-03 Chong Yidong <cyd@gnu.org>
6590
6591 * bindings.el: Remove explicit help text from format-mode-line.
6592 It is now supplied by mode-line-default-help-echo.
6593 (mode-line-front-space, mode-line-end-spaces)
6594 (mode-line-misc-info): New variables.
6595 (mode-line-modes, mode-line-position): Move the default value to
6596 the variable definition.
6597 (mode-line-default-help-echo): New defcustom.
6598 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
6599 (mode-line-modified-help-echo): New functions.
6600 (mode-line-mule-info, mode-line-modified): Use them.
6601 (mode-line-eol-desc, propertized-buffer-identification):
6602 Consistency fixes for help text.
6603 (mode-line-coding-system-map): Allow using mouse-3 to invoke
6604 set-buffer-file-coding-system (Bug#289).
6605 (mode-line-mule-info-help-echo): Update help text.
6606
6607 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6608
6609 * simple.el (execute-extended-command): Set real-this-command
6610 (bug#11506).
6611
6612 2012-06-02 Chong Yidong <cyd@gnu.org>
6613
6614 Remove incorrect uses of "modeline" in comments, docstrings, and
6615 function/variable names (Bug#10329).
6616
6617 * cus-edit.el (mode-line):
6618 * dframe.el (dframe-mouse-hscroll):
6619 * emacs-lisp/re-builder.el:
6620 * emacs-lisp/easy-mmode.el (define-minor-mode):
6621 * frame.el (set-frame-name):
6622 * help.el (lookup-minor-mode-from-indicator):
6623 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
6624 * progmodes/cc-cmds.el (c-toggle-auto-newline)
6625 (c-toggle-hungry-state):
6626 * progmodes/antlr-mode.el (antlr-language-alist):
6627 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
6628 * progmodes/vhdl-mode.el (vhdl-mode):
6629 * progmodes/which-func.el (which-func, which-func-cleanup-function):
6630 * term/ns-win.el (ns-face-at-pos):
6631 * term/sup-mouse.el (sup-mouse-report):
6632 * textmodes/flyspell.el (flyspell-mode-line-string):
6633 * textmodes/ispell.el (ispell-highlight-face):
6634 * textmodes/reftex-global.el:
6635 * vc/vc-arch.el (vc-arch-mode-line-string):
6636 * vc/vc-cvs.el (vc-cvs-mode-line-string):
6637 * vc/vc-git.el (vc-git-mode-line-string):
6638 * vc/vc-hooks.el (vc-display-status)
6639 (vc-default-mode-line-string):
6640 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
6641
6642 * ansi-color.el (ansi-color-faces-vector): Change default faces.
6643
6644 * dired.el (dired-sort-set-mode-line): Rename from
6645 dired-sort-set-modeline. All callers changed.
6646
6647 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
6648 eshell-status-in-modeline.
6649
6650 * foldout.el (foldout-mode-line-string): Rename from
6651 foldout-modeline-string. All callers changed.
6652 (foldout-update-mode-line): Rename from foldout-update-modeline.
6653
6654 * subr.el (redraw-modeline): Make into obsolete alias.
6655
6656 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
6657 timeclock-modeline-display. Make old name an alias.
6658 (timeclock-update-mode-line): Likewise. All callers changed.
6659 (timeclock-mode-line-display): No need to check before using
6660 add-hook.
6661 (timeclock-relative, timeclock-day-over-hook)
6662 (timeclock-use-elapsed, timeclock-mode-string)
6663 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
6664
6665 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
6666 crisp-mode-modeline-string.
6667
6668 * play/solitaire.el (solitaire-build-mode-line): Rename from
6669 solitaire-build-modeline. All callers changed.
6670
6671 * play/zone.el (zone-hiding-mode-line): Rename from
6672 zone-hiding-modeline. All callers changed.
6673 (zone): Remove unusued `modeline-hidden-level' property.
6674
6675 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
6676 xscheme-modeline-initialize. All callers changed.
6677
6678 * strokes.el (strokes-lighter): Rename from
6679 strokes-modeline-string.
6680
6681 * textmodes/sgml-mode.el (html-face-tag-alist)
6682 (html-tag-face-alist): Use mode-line face instead of obsolete
6683 alias modeline.
6684
6685 2012-06-02 Stefan Merten <smerten@oekonux.de>
6686
6687 * textmodes/rst.el: Always require `cl'.
6688 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
6689
6690 2012-06-02 Chong Yidong <cyd@gnu.org>
6691
6692 * image.el (imagemagick-enabled-types): Rename from
6693 imagemagick-types-enable. Add many more types.
6694 (imagemagick-types-inhibit): Change default to nil.
6695 (imagemagick-filter-types): Caller changed.
6696
6697 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6698
6699 * emacs-lisp/cl-macs.el: Use backquotes.
6700 (cl-transform-function-property): Use eval-and-compile rather than
6701 abusing `require'.
6702 (defstruct): Use declare-function instead of with-no-warnings.
6703
6704 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
6705 (byte-compile-output-docform): Re-add the print-circle bindings.
6706 (byte-compile-fix-header): Use #$ just because it's shorter.
6707 (byte-compile-output-file-form): Remove defun/defmacro.
6708
6709 2012-06-01 Martin Rudalics <rudalics@gmx.at>
6710
6711 * simple.el (choose-completion): Remove now obsolete binding for
6712 owindow.
6713
6714 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
6715
6716 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
6717 in order to avoid "Stack overflow in regexp matcher".
6718
6719 2012-05-31 Glenn Morris <rgm@gnu.org>
6720
6721 * image.el: For clarity, call imagemagick-register-types at
6722 top-level, rather than relying on a custom :initialize.
6723 (imagemagick-types-enable): New option. (Bug#11557)
6724 (imagemagick-filter-types): New function. (Bug#7406)
6725 (imagemagick-register-types): Use imagemagick-filter-types.
6726 If disabling support, remove elements altogether rather
6727 than using an impossible regexp.
6728 (imagemagick-types-inhibit): Give it the default init function.
6729
6730 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6731
6732 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
6733 Handle arbitrary file name lengths (Bug#11585).
6734
6735 2012-05-31 Martin Rudalics <rudalics@gmx.at>
6736
6737 * desktop.el (desktop-read): Clear previous and next buffers for
6738 all windows and bury *Messages* buffer (bug#11556).
6739
6740 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6741
6742 Add `declare' for `defun'. Align `defmacro's with it.
6743 * emacs-lisp/easy-mmode.el (define-minor-mode)
6744 (define-globalized-minor-mode): Don't autoload the var definitions.
6745 * emacs-lisp/byte-run.el: Use lexical-binding.
6746 (defun-declarations-alist, macro-declarations-alist): New vars.
6747 (defmacro, defun): Use them.
6748 (make-obsolete, define-obsolete-function-alias)
6749 (make-obsolete-variable, define-obsolete-variable-alias):
6750 Use `declare'.
6751 (macro-declaration-function): Mark obsolete.
6752 * emacs-lisp/autoload.el: Use lexical-binding.
6753 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
6754
6755 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6756
6757 * textmodes/ispell.el (ispell-with-no-warnings):
6758 Define as a macro.
6759 (ispell-kill-ispell, ispell-change-dictionary):
6760 Use `called-interactively-p' for Emacs instead of obsolete
6761 `interactive-p'.
6762
6763 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6764
6765 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
6766 (macro-declaration-function): Move var from C code.
6767 (macro-declaration-function): Define function with defalias.
6768 * emacs-lisp/macroexp.el (macroexpand-all-1):
6769 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
6770 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
6771 defun/defmacro any more.
6772 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
6773 Provide fallback for unknown arglist.
6774 (byte-compile-arglist-warn): Change calling convention.
6775 (byte-compile-output-file-form): Move print-vars binding.
6776 (byte-compile-output-docform): Simplify accordingly.
6777 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
6778 (byte-compile-defmacro-declaration): Remove.
6779 (byte-compile-file-form-defmumble): Generalize to defalias.
6780 (byte-compile-output-as-comment): Return byte-positions.
6781 Simplify callers accordingly.
6782 (byte-compile-lambda): Use `assert'.
6783 (byte-compile-defun, byte-compile-defmacro): Remove.
6784 (byte-compile-file-form-defalias):
6785 Use byte-compile-file-form-defmumble.
6786 (byte-compile-defalias-warn): Remove.
6787
6788 2012-05-29 Stefan Merten <smerten@oekonux.de>
6789
6790 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
6791 possible. Fix authors. Improve comments. Improve loading of `cl'.
6792
6793 (rst-mode-abbrev-table): Merge definition.
6794 (rst-mode): Make sure `font-lock-defaults' is buffer local.
6795 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
6796
6797 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
6798
6799 * calendar/icalendar.el
6800 (icalendar-export-region): Export UID properly.
6801
6802 2012-05-29 Leo Liu <sdl.web@gmail.com>
6803 * calendar/icalendar.el (icalendar-import-format):
6804 Add `icalendar-import-format-uid' (Bug#11525).
6805 (icalendar-import-format-uid): New.
6806 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
6807 Export UID.
6808
6809 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
6810
6811 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
6812 different alternative patterns.
6813 (pcase-codegen): Be more careful to preserve identity.
6814 (pcase--u1): Don't forget to mark vars as used.
6815
6816 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
6817 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
6818 (byte-compile-from-buffer): ...rather than here.
6819
6820 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
6821 functions from byte-compile-function-environment.
6822
6823 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
6824
6825 * window.el (window-deletable-p): Avoid deleting the root window
6826 of a frame with an active minibuffer.
6827
6828 2012-05-29 Martin Rudalics <rudalics@gmx.at>
6829
6830 * simple.el (choose-completion): Use quit-window (Bug#11567).
6831
6832 2012-05-29 Chong Yidong <cyd@gnu.org>
6833
6834 * whitespace.el (whitespace-cleanup): Fix usage of
6835 whitespace-empty-at-bob-regexp (Bug#11492).
6836
6837 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
6838
6839 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
6840 revert (Bug#11488).
6841
6842 2012-05-29 Juri Linkov <juri@jurta.org>
6843
6844 * isearch.el (isearch-mode-map): Bind `M-s _' to
6845 `isearch-toggle-symbol'. Bind `M-s c' to
6846 `isearch-toggle-case-fold'.
6847 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
6848 (isearch-forward): Add `M-s _' to the docstring.
6849 (isearch-forward-symbol, isearch-toggle-case-fold)
6850 (isearch-symbol-regexp): New functions. (Bug#11381)
6851
6852 2012-05-29 Juri Linkov <juri@jurta.org>
6853
6854 * isearch.el (isearch-word): Add docstring. (Bug#11381)
6855 (isearch-occur, isearch-search-and-update): If `isearch-word' is
6856 a function, call it to get the regexp.
6857 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
6858 property `isearch-message-prefix' instead of the string "word ".
6859 (isearch-search-fun-default): For the case of `isearch-word',
6860 return a lambda that calls re-search-forward/re-search-backward
6861 with a regexp returned by `word-search-regexp' or by the function
6862 in `isearch-word'.
6863
6864 2012-05-29 Juri Linkov <juri@jurta.org>
6865
6866 * isearch.el (isearch-search-fun-default): New function.
6867 (isearch-search-fun): Move default part to the new function
6868 `isearch-search-fun-default'.
6869 (isearch-search-fun-function): Set the default value to
6870 `isearch-search-fun-default'. (Bug#11381)
6871
6872 * comint.el (comint-history-isearch-end):
6873 Use `isearch-search-fun-default'.
6874 (comint-history-isearch-search): Use `isearch-search-fun-default'
6875 and remove spacial case for `isearch-word'.
6876 (comint-history-isearch-wrap): Remove spacial case for
6877 `isearch-word'.
6878
6879 * hexl.el (hexl-isearch-search-function):
6880 Use `isearch-search-fun-default'.
6881
6882 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
6883 Use `word-search-regexp' for `isearch-word'.
6884
6885 * misearch.el (multi-isearch-search-fun):
6886 Use `isearch-search-fun-default'.
6887
6888 * simple.el (minibuffer-history-isearch-search):
6889 Use `isearch-search-fun-default' and remove spacial case for
6890 `isearch-word'.
6891 (minibuffer-history-isearch-wrap): Remove spacial case for
6892 `isearch-word'.
6893
6894 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
6895 Remove spacial case for `isearch-word'.
6896 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
6897
6898 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6899
6900 Decrease XEmacs incompatibilities.
6901 * textmodes/flyspell.el (flyspell-check-pre-word-p):
6902 Use `string-match'.
6903 (flyspell-delete-region-overlays): Use alternative definition for
6904 XEmacs.
6905 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
6906 (flyspell-word): Use `process-kill-without-query' if XEmacs.
6907 (flyspell-mode-on): Use `interactive-p' if XEmacs.
6908 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
6909 `define-obsolete-face-alias' under XEmacs, but old method.
6910
6911 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
6912 `with-no-warnings' definition or Emacs alias.
6913 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
6914 (ispell-word): Do not use `region-p' if XEmacs.
6915
6916 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6917
6918 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
6919 Check for `ispell-dictionary-base-alist' instead of full
6920 `ispell-dictionary-alist'.
6921 (ispell-init-process): Show spellchecker when starting new Ispell
6922 process.
6923
6924 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
6925
6926 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
6927 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
6928
6929 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
6930
6931 * version.el (motif-version-string, gtk-version-string)
6932 (ns-version-string): Declare.
6933
6934 2012-05-27 Juri Linkov <juri@jurta.org>
6935
6936 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
6937 after the `eval-defun-1' specialcaseing
6938 like in `edebug-eval-defun' (bug#10181).
6939
6940 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
6941 like in `eval-defun-1'.
6942
6943 2012-05-27 Eli Zaretskii <eliz@gnu.org>
6944
6945 * mail/sendmail.el (mail-yank-region):
6946 Recognize rmail-yank-current-message in addition to insert-buffer.
6947 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
6948 a *mail* buffer created through rmail-start-mail with sendmail as
6949 mail-user-agent.
6950
6951 2012-05-27 Chong Yidong <cyd@gnu.org>
6952
6953 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
6954 Default to 256 (Bug#11267).
6955
6956 * help.el (describe-mode): Doc fix.
6957
6958 2012-05-26 Glenn Morris <rgm@gnu.org>
6959
6960 * w32-fns.el (w32-init-info): Remove.
6961 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
6962
6963 * info.el (info-initialize): For self-contained NS builds, put the
6964 included info/ directory at the front. (Bug#2791)
6965
6966 * paths.el (Info-default-directory-list): Make it a defcustom,
6967 mainly so that we can use custom-initialize-delay.
6968
6969 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
6970
6971 * subr.el (buffer-has-markers-at): Mark obsolete.
6972
6973 * subr.el (lambda): Use declare.
6974
6975 * emacs-lisp/lisp-mode.el (lambda):
6976 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
6977
6978 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
6979
6980 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
6981
6982 2012-05-26 Glenn Morris <rgm@gnu.org>
6983
6984 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
6985
6986 2012-05-25 Glenn Morris <rgm@gnu.org>
6987
6988 * paths.el: Remove no-byte-compile.
6989 * loadup.el: No need to load paths.el uncompiled.
6990
6991 * image.el (imagemagick-types-inhibit): Doc fix.
6992
6993 * version.el: Remove no-byte-compile and associated formatting.
6994 * loadup.el: No need to load version.el uncompiled. AFAICS, this
6995 is ancient code from when there was an "inc-vers.el".
6996
6997 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6998
6999 * progmodes/gdb-mi.el: Minor style changes.
7000 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
7001 Turn into minor modes.
7002 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
7003 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
7004 (gdb-shell): Remove unneeded let-binding.
7005 (gdb-get-many-fields): Eliminate O(n²) behavior.
7006
7007 2012-05-25 Eli Zaretskii <eliz@gnu.org>
7008
7009 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
7010 platforms that don't link in fontset.c.
7011
7012 2012-05-25 Juri Linkov <juri@jurta.org>
7013
7014 Use the same diff color scheme as in modern VCSes (bug#10181).
7015
7016 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
7017 to avoid confusion with `diff-added' that now uses green colors.
7018 (diff-removed): Use shades of red.
7019 (diff-added): Use shades of green.
7020 (diff-changed): Leave just the yellow color.
7021 (diff-use-changed-face): New variable.
7022 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
7023 how to highlight context diff changes.
7024 (diff-refine-change): Use shades of yellow.
7025 (diff-refine-removed): New face that uses shades of red.
7026 (diff-refine-added): New face that uses shades of green.
7027 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
7028 `diff-refine-removed' in the call to `smerge-refine-subst'
7029 depending on the value of `diff-use-changed-face'.
7030
7031 * vc/smerge-mode.el (smerge-mine): Use shades of red.
7032 (smerge-other): Use shades of green.
7033 (smerge-base): Use shades of yellow.
7034 (smerge-refined-change): Empty face.
7035 (smerge-refined-removed): New face that uses shades of red.
7036 (smerge-refined-added): New face that uses shades of green.
7037 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
7038 args `props-r' and `props-a', and use them. Doc fix.
7039 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
7040 on its value use different faces `smerge-refined-change',
7041 `smerge-refined-removed', `smerge-refined-added' in the call to
7042 `smerge-refine-subst'.
7043
7044 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
7045 Add face condition `min-colors 88' with shades of red.
7046 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
7047 `min-colors 88' with shades of green.
7048 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
7049 `min-colors 88' with shades of yellow.
7050
7051 2012-05-24 Glenn Morris <rgm@gnu.org>
7052
7053 * paths.el (prune-directory-list, remote-shell-program): Move to...
7054 * files.el (prune-directory-list, remote-shell-program): ...here.
7055 For the latter, delay initialization, prefer ssh, just search PATH.
7056
7057 * paths.el (term-file-prefix): Move to faces.el (the only user).
7058 * faces.el (term-file-prefix): Move here, make it a defcustom.
7059
7060 * paths.el (news-directory, news-path, news-inews-program):
7061 Move to gnus/nnspool.el.
7062
7063 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
7064
7065 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
7066 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
7067 Make the latter a defcustom, with a delayed initialization.
7068
7069 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
7070 These were deleted from Gnus itself late 2010.
7071
7072 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
7073
7074 * progmodes/which-func.el (which-func-ff-hook):
7075 Check against user-error, not error.
7076
7077 * emacs-lisp/edebug.el (top): Do not load or set up loading of
7078 cl-specs.el, which no longer exists.
7079
7080 2012-05-22 Glenn Morris <rgm@gnu.org>
7081
7082 * info.el (info-emacs-bug): New command.
7083 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
7084 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
7085
7086 2012-05-21 Glenn Morris <rgm@gnu.org>
7087
7088 * makefile.w32-in (update-subdirs-SH):
7089 * Makefile.in (update-subdirs): Update for moved update-subdirs.
7090
7091 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
7092
7093 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
7094
7095 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7096 Simplify Maven regexp, and make sure the file can't start with a space
7097 (bug#11517).
7098
7099 2012-05-21 Glenn Morris <rgm@gnu.org>
7100
7101 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
7102 Scrap superfluous subshells.
7103
7104 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
7105
7106 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
7107 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
7108
7109 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
7110
7111 * calc/calc.el (calc-ensure-consistent-units): New variable.
7112
7113 * calc/calc-units.el (math-consistent-units-p)
7114 (math-check-unit-consistency): New functions.
7115 (calc-quick-units, calc-convert-units):
7116 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
7117 is non-nil.
7118 (calc-extract-units): Fix typo.
7119
7120 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7121
7122 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
7123
7124 * textmodes/flyspell.el: Commenting style, plus code simplifications.
7125 (flyspell-default-deplacement-commands): Don't spell check after
7126 repeated window/frame switches (e.g. triggered by mouse-movement).
7127 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
7128 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
7129 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
7130 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
7131 Remove unused vars.
7132 (flyspell-get-casechars, flyspell-get-not-casechars):
7133 Simplify; Don't bother removing a ] just to add it back.
7134 * textmodes/ispell.el (ispell-program-name): Use executable-find.
7135
7136 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7137
7138 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
7139 New functions.
7140 (math-function-table): Add support for more C functions.
7141
7142 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7143
7144 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7145 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7146 Protect delay handling for otherchars against empty otherchars.
7147
7148 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7149
7150 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
7151 their respective macro declarations.
7152 * skeleton.el (define-skeleton):
7153 * progmodes/compile.el (define-compilation-mode):
7154 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
7155 (define-ibuffer-filter):
7156 * emacs-lisp/generic.el (define-generic-mode):
7157 * emacs-lisp/easy-mmode.el (define-minor-mode)
7158 (define-globalized-minor-mode):
7159 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
7160 * emacs-lisp/byte-run.el (defsubst):
7161 * custom.el (deftheme): Add doc-string metadata.
7162
7163 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7164
7165 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
7166
7167 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7168
7169 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
7170
7171 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
7172 * emacs-lisp/cl-macs.el: Idem.
7173 * emacs-lisp/cl-specs.el: Remove.
7174
7175 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7176
7177 Minor renaming of internal CL functions and variables.
7178 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
7179 (cl--position): Rename from cl-position.
7180 (cl--delete-duplicates): Rename from cl-delete-duplicates.
7181 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
7182 (cl--random-state): Rename from *random-state*.
7183
7184 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7185
7186 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
7187 parens around the arg list (bug#11499).
7188
7189 2012-05-17 Juri Linkov <juri@jurta.org>
7190
7191 * isearch.el (word-search-regexp, word-search-backward)
7192 (word-search-forward, word-search-backward-lax)
7193 (word-search-forward-lax): Move functions from search.c
7194 (bug#10145, bug#11381).
7195
7196 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7197
7198 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7199 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7200 Delay for otherchars as for normal word components.
7201
7202 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
7203
7204 * minibuffer.el (completion--sifn-requote): Fix last change.
7205 (minibuffer-local-must-match-filename-map):
7206 Move define-obsolete-variable-alias before its var.
7207
7208 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7209
7210 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
7211
7212 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
7213 behavior.
7214 (completion--string-equal-p): New function.
7215 (completion--twq-all): Use it to get better assertion failure data.
7216
7217 Only handle ".." and '..' quoting in shell-mode (bug#11466).
7218 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
7219 (shell--requote-argument): New functions.
7220 (shell-completion-vars): Use them.
7221 (shell--parse-pcomplete-arguments): Rename from
7222 shell-parse-pcomplete-arguments.
7223 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
7224 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
7225 Obey comint-file-name-quote-list.
7226
7227 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
7228 (smie-indent-keyword): Use it.
7229
7230 2012-05-14 Stefan Merten <smerten@oekonux.de>
7231
7232 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
7233
7234 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7235
7236 * net/rlogin.el (rlogin-mode-map): Fix last change.
7237
7238 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
7239
7240 * mail/smtpmail.el (smtpmail-send-command): Send the command and
7241 the following \r\n using a single `process-send-string', since the
7242 Lotus SMTP server refuses to accept any commands if they are sent
7243 with two `process-send-string's (Bug#11444).
7244
7245 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7246
7247 * shell.el (shell-parse-pcomplete-arguments):
7248 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
7249
7250 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7251
7252 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
7253 (image-transform-scale, image-transform-right-angle-fudge): New vars.
7254 (image-transform-width, image-transform-fit-width): New functions.
7255 (image-transform-properties): Use them.
7256 (image-transform-check-size): New function.
7257 (image-toggle-display-image): Use it (for testing).
7258 (image-transform-set-rotation): Reduce angle mod 360.
7259 Delete obsolete comment.
7260
7261 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7262
7263 * image-mode.el: Fix scaling (bug#11399).
7264 (image-transform-resize): Doc fix.
7265 (image-transform-properties): Default scale is 1 and height should
7266 be an integer.
7267
7268 2012-05-13 Johan Bockgård <bojohan@gnu.org>
7269
7270 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
7271 than hard-coding `car', to fix misbehavior when moving forward.
7272
7273 2012-05-13 Chong Yidong <cyd@gnu.org>
7274
7275 * emacs-lisp/tabulated-list.el (tabulated-list-format)
7276 (tabulated-list-entries, tabulated-list-padding)
7277 (tabulated-list-sort-key): Make permanent-local.
7278
7279 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
7280 (electric-buffer-list): Put electric buffer menu
7281 command descriptions in this docstring, instead of the docstring
7282 of electric-buffer-menu-mode. Code cleanups.
7283 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
7284 Electric-buffer-menu-mode.
7285 (electric-buffer-update-highlight): Minor code cleanup.
7286
7287 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
7288
7289 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
7290 (Bug#11447)
7291
7292 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
7293
7294 Move define-obsolete-variable-alias before the var's definition.
7295 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
7296 * tooltip.el (tooltip-hook):
7297 * textmodes/reftex-toc.el (reftex-toc-map):
7298 * textmodes/reftex-sel.el (reftex-select-label-map)
7299 (reftex-select-bib-map):
7300 * textmodes/reftex-index.el (reftex-index-map)
7301 (reftex-index-phrases-map):
7302 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
7303 * progmodes/meta-mode.el (meta-mode-map):
7304 * novice.el (disabled-command-hook):
7305 * loadhist.el (unload-hook-features-list):
7306 * frame.el (blink-cursor):
7307 * files.el (find-file-not-found-hooks, write-file-hooks)
7308 (write-contents-hooks):
7309 * emulation/tpu-edt.el (GOLD-map):
7310 * emacs-lock.el (emacs-lock-from-exiting):
7311 * emacs-lisp/generic.el (generic-font-lock-defaults):
7312 * emacs-lisp/chart.el (chart-map):
7313 * dos-fns.el (register-name-alist):
7314 * dired-x.el (dired-omit-files-p):
7315 * desktop.el (desktop-enable):
7316 * cus-edit.el (custom-mode-hook):
7317 * buff-menu.el (buffer-menu-mode-hook):
7318 * bookmark.el (bookmark-read-annotation-text-func)
7319 (bookmark-exit-hooks):
7320 * allout.el (allout-mode-deactivate-hook)
7321 (allout-exposure-change-hook, allout-structure-added-hook)
7322 (allout-structure-deleted-hook, allout-structure-shifted-hook):
7323 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
7324 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
7325 comes before the corresponding variable's definition.
7326
7327 2012-05-12 Chong Yidong <cyd@gnu.org>
7328
7329 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
7330 (Buffer-menu-mouse-select): Restore function (Bug#11459).
7331 (Buffer-menu-mode-map): Bind it.
7332 (Buffer-menu--pretty-name): Add a mouse-face property.
7333
7334 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
7335
7336 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
7337 (prolog-upper-case-string, prolog-lower-case-string)
7338 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
7339 (prolog-use-smie, prolog-smie-grammar): New vars.
7340 (prolog-smie-forward-token, prolog-smie-backward-token)
7341 (prolog-smie-rules): New funs.
7342 (prolog-comment-indent): Remove.
7343 (prolog-mode-variables): Use default comment indentation instead.
7344 Setup SMIE.
7345 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
7346 (prolog-mode): Don't call them any more.
7347 (prolog-electric-colon, prolog-electric-dash)
7348 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
7349
7350 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
7351
7352 * minibuffer.el (completion--twq-all): Again, allow case differences.
7353
7354 * term.el: Move keymap initialization code to be more idiomatic.
7355 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
7356 (term-terminal-menu): Move initialization into declaration.
7357 (term-escape-char): Let the user set it in her .emacs.
7358
7359 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
7360 Provide SMIE-based indentation (not enabled by default yet).
7361 (sh-mode-map): Don't bind electric keys.
7362 Use electric-pair-mode instead of skeleton-pair.
7363 (sh-assignment-regexp): Fit within 80 columns.
7364 (sh-indent-supported): Specify actual shell name instead of boolean.
7365 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
7366 (sh-maybe-here-document): Use it. Make obsolete.
7367 (sh-electric-here-document-mode) New minor mode.
7368 (sh-mode): Use it. Don't set sh-indent-supported-here here.
7369 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
7370 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
7371 (sh-smie-rc-grammar, sh-use-smie): New vars.
7372 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
7373 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
7374 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
7375 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
7376 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
7377 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
7378 (sh-set-shell): Use smie-setup if requested.
7379
7380 * term.el (term-set-escape-char): Properly set term-escape-char.
7381 See http://stackoverflow.com/questions/10524656.
7382
7383 2012-05-10 Chong Yidong <cyd@gnu.org>
7384
7385 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
7386 Use url-generic-parse-url, and handle host names and Windows
7387 filenames properly.
7388 (ffap-url-unwrap-remote): Use url-generic-parse-url.
7389 (ffap-url-unwrap-remote): Accept list values, specifying a list of
7390 URL schemes to work on.
7391 (ffap--toggle-read-only): New function.
7392 (ffap-read-only, ffap-read-only-other-window)
7393 (ffap-read-only-other-frame): Use it.
7394 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
7395 necessary for ffap-url-unwrap-remote.
7396
7397 2012-05-10 Dave Abrahams <dave@boostpro.com>
7398
7399 * cus-start.el (create-lockfiles): Add it.
7400
7401 2012-05-09 Chong Yidong <cyd@gnu.org>
7402
7403 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
7404 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
7405
7406 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7407
7408 * shell.el (shell-completion-vars): Fix last change (bug#11348).
7409
7410 2012-05-09 Chong Yidong <cyd@gnu.org>
7411
7412 * ansi-color.el (ansi-color-process-output): Check for validity of
7413 comint-last-output-start before using it. This avoids a bad
7414 interaction with gdb-mi's input/output buffer.
7415
7416 2012-05-09 Glenn Morris <rgm@gnu.org>
7417
7418 * files.el (dir-locals-read-from-file):
7419 Mention dir-locals in any error message.
7420
7421 2012-05-09 Chong Yidong <cyd@gnu.org>
7422
7423 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
7424 package (Bug#11410).
7425
7426 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
7427 variables into description.
7428
7429 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7430
7431 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
7432 shell-delimiter-argument-list (bug#11348).
7433 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
7434
7435 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
7436
7437 * textmodes/rst.el: Silence byte-compiler warnings.
7438 (rst-re-alist, rst-reset-section-caches): Move around.
7439 (rst-re): Use `characterp', not `char-valid-p'.
7440 (font-lock-beg, font-lock-end): Declare.
7441
7442 * progmodes/idlw-shell.el (specs): Remove reference to deleted
7443 variable `idlwave-shell-activate-alt-keybindings' and simplify.
7444
7445 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
7446
7447 2012-05-08 Glenn Morris <rgm@gnu.org>
7448
7449 * files.el (auto-mode-alist): Treat ".make" like ".mk".
7450
7451 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7452
7453 * vc/log-edit.el: Add GNU coding standards highlighting.
7454 (log-edit-font-lock-gnu-style)
7455 (log-edit-font-lock-gnu-keywords): New vars.
7456 (log-edit-font-lock-keywords): New fun.
7457 (log-edit-mode): Don't fold case in font-lock.
7458 (log-edit-font-lock-keywords): Do not assume case-folding.
7459
7460 * imenu.el: Misc cleanup. Make docstrings out of comments.
7461 Use lexical-binding.
7462 (imenu--index-alist, imenu--last-menubar-index-alist)
7463 (imenu-menubar-modified-tick): Use defvar-local.
7464 (imenu--split-menu): Remove unused var.
7465 (imenu--cleanup-seen): Declare as global.
7466 (imenu--cleanup): Use dolist.
7467
7468 * subr.el (defvar-local): Add debug spec and doc-string position.
7469
7470 2012-05-08 Glenn Morris <rgm@gnu.org>
7471
7472 * language/burmese.el, language/cham.el, language/czech.el:
7473 * language/english.el, language/georgian.el, language/greek.el:
7474 * language/japanese.el, language/khmer.el, language/korean.el:
7475 * language/lao.el, language/misc-lang.el, language/romanian.el:
7476 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
7477 * language/thai.el, language/utf-8-lang.el:
7478 Remove no-byte-compile setting.
7479
7480 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
7481
7482 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7483
7484 * progmodes/make-mode.el (makefile-browse):
7485 Remove unnecessary interactive. (Bug#11324)
7486
7487 2012-05-07 Glenn Morris <rgm@gnu.org>
7488
7489 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
7490
7491 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
7492
7493 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7494
7495 * loadup.el: Preload newcomment.el.
7496 * newcomment.el: Move autoload-only code to toplevel.
7497
7498 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
7499 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
7500 Handle new :right-align column property.
7501 (tabulated-list-print-col): Idem, plus use `display' text-property to
7502 try and preserve alignment for variable pitch fonts.
7503
7504 2012-05-07 Chong Yidong <cyd@gnu.org>
7505
7506 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
7507 (tabulated-list-use-header-line): New var.
7508 (tabulated-list-init-header): Use it.
7509 (tabulated-list-print-fake-header): New function.
7510 (tabulated-list-print): Use it.
7511 (tabulated-list-sort-button-map): Add non-header-line commands.
7512 (tabulated-list-init-header): Add column name property to basic
7513 labels as well.
7514 (tabulated-list-col-sort): Handle non-header-line button case.
7515 (tabulated-list--sort-by-column-name): Fix a corner case.
7516
7517 * buff-menu.el (list-buffers--refresh):
7518 Handle Buffer-menu-use-header-line.
7519
7520 2012-05-06 Chong Yidong <cyd@gnu.org>
7521
7522 * buff-menu.el: Convert to Tabulated List mode.
7523 (Buffer-menu-buffer+size-width): Make obsolete.
7524 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
7525 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
7526 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
7527 documentation into docstring of buffer-menu.
7528 (Buffer-menu-toggle-files-only): Add an informative message.
7529 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
7530 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
7531 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
7532 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
7533 (Buffer-menu-execute, Buffer-menu-select)
7534 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
7535 (Buffer-menu-bury): Use Tabulated List machinery.
7536 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
7537 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
7538 Delete.
7539 (list-buffers--refresh): New function.
7540 (list-buffers-noselect): Use it.
7541 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
7542 (Buffer-menu--pretty-file-name): New helper functions.
7543
7544 * loadup.el: Preload tabulated-list.
7545
7546 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
7547 tabulated-list-sort-column.
7548 (tabulated-list-init-header): Add the initial aligning space even
7549 if tabulated-list-padding is zero.
7550
7551 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
7552
7553 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
7554 whose cdr is not a cons cell correctly (bug#11038).
7555
7556 2012-05-06 Chong Yidong <cyd@gnu.org>
7557
7558 * emacs-lisp/tabulated-list.el (tabulated-list-format):
7559 Accept additional plist in column descriptors.
7560 (tabulated-list-init-header): Obey it.
7561 (tabulated-list-get-entry): New function.
7562 (tabulated-list-put-tag): Use it. Use string-width instead of
7563 length.
7564 (tabulated-list--column-number): New function.
7565 (tabulated-list-print): Use it.
7566 (tabulated-list-print-col): New function.
7567 Set `tabulated-list-column-name' property on each column's text.
7568 (tabulated-list-print-entry): Use it.
7569 (tabulated-list-delete-entry, tabulated-list-set-col):
7570 New functions.
7571 (tabulated-list-sort-column): New command (Bug#11337).
7572
7573 * buff-menu.el (list-buffers): Move C-x C-b binding from
7574 buff-menu.el to bindings.el.
7575
7576 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
7577 :advertised-binding feature.
7578
7579 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
7580
7581 * progmodes/compile.el (compilation-internal-error-properties):
7582 Calculate start position correctly when end-col is set but
7583 end-line is not (Bug#11382).
7584
7585 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
7586
7587 * man.el (Man-unindent): Use text-property-default-nonsticky to
7588 prevent untabify from inheriting face properties (Bug#11408).
7589
7590 2012-05-05 Stefan Merten <smerten@oekonux.de>
7591
7592 * textmodes/rst.el: Major merge with upstream development up to
7593 Docutils SVN r7399 / rst.el V1.2.1.
7594
7595 Clarify maintainership and authors.
7596
7597 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
7598 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
7599 (rst-official-version, rst-official-cvs-rev, rst-version)
7600 (rst-package-emacs-version-alist): New functions and variables
7601 for version information.
7602
7603 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
7604 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
7605 (rst-mode-syntax-table, rst-mode): New and corrected functions
7606 and variables representing reStructuredText features.
7607
7608 (rst-re): New function for reStructuredText regexes. Use in
7609 many places.
7610
7611 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
7612 (rst-mode-map): Rebind keys.
7613
7614 (rst-mode-lazy, rst-font-lock-keywords)
7615 (rst-font-lock-extend-region)
7616 (rst-font-lock-extend-region-internal)
7617 (rst-font-lock-extend-region-extend)
7618 (rst-font-lock-find-unindented-line-limit)
7619 (rst-font-lock-find-unindented-line-match)
7620 (rst-adornment-level, rst-font-lock-adornment-level)
7621 (rst-font-lock-adornment-match)
7622 (rst-font-lock-handle-adornment-pre-match-form)
7623 (rst-font-lock-handle-adornment-matcher): Major revision of
7624 font-locking. Integrate with other code. Use `jit-lock-mode'.
7625
7626 (rst-preferred-adornments, rst-adjust-hook)
7627 (rst-new-adornment-down, rst-preferred-bullets)
7628 (rst-preferred-bullets, rst-indent, rst-indent-width)
7629 (rst-indent-field, rst-indent-literal-normal)
7630 (rst-indent-literal-minimized, rst-indent-comment): Change,
7631 extend and improve customization.
7632
7633 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
7634 (rst-normalize-cursor-position, rst-get-decoration)
7635 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
7636 (rst-rstrip, rst-toc-insert-find-delete-contents)
7637 (rst-shift-fill-region, rst-compute-bullet-tabs)
7638 (rst-debug-print-tabs, rst-debug-mark-found)
7639 (rst-shift-region-guts, rst-shift-region-right)
7640 (rst-shift-region-left, rst-use-char-classes)
7641 (rst-font-lock-keywords-function)
7642 (rst-font-lock-indentation-point)
7643 (rst-font-lock-find-unindented-line-begin)
7644 (rst-font-lock-find-unindented-line-end)
7645 (rst-font-lock-find-unindented-line)
7646 (rst-font-lock-adornment-point, rst-font-lock-level)
7647 (rst-adornment-level-alist): Remove functions and variables.
7648
7649 (rst-compare-adornments, rst-get-adornment-match)
7650 (rst-suggest-new-adornment, rst-get-adornments-around)
7651 (rst-adornment-complete-p, rst-get-next-adornment)
7652 (rst-adjust-adornment, rst-display-adornments-hierarchy)
7653 (rst-straighten-adornments): Standardize function names to
7654 use "adornment" instead of "decoration". Correct callers.
7655 Similar standardizing in many places.
7656
7657 (rst-update-section, rst-adjust, rst-promote-region)
7658 (rst-enumerate-region, rst-bullet-list-region)
7659 (rst-repeat-last-character): Correct use of `interactive'.
7660
7661 (rst-classify-adornment, rst-find-all-adornments)
7662 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
7663 (rst-find-leftmost-column, rst-repeat-last-character):
7664 Refactor functions.
7665
7666 (rst-find-title-line, rst-reset-section-caches)
7667 (rst-get-adornments-around, rst-adjust-adornment-work)
7668 (rst-arabic-to-roman, rst-roman-to-arabic)
7669 (rst-insert-list-pos, rst-insert-list-new-item)
7670 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
7671 New functions.
7672
7673 (rst-all-sections, rst-section-hierarchy)
7674 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
7675 New variables.
7676
7677 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
7678 configuration instead of only buffer. Change where necessary.
7679
7680 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
7681 (rst-shift-region, rst-adaptive-fill): New functions for
7682 indentation and filling.
7683
7684 (rst-comment-line-break, rst-comment-indent)
7685 (rst-comment-insert-comment, rst-comment-region)
7686 (rst-uncomment-region): New functions for handling comments.
7687
7688 (rst-compile): Quote shell arguments.
7689
7690 (rst-compile-pdf-preview, rst-compile-slides-preview):
7691 Delete temporary files after use.
7692
7693 2012-05-05 Glenn Morris <rgm@gnu.org>
7694
7695 * calendar/cal-html.el: Optionally include holidays in the output.
7696 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
7697 (cal-html-holidays): New option.
7698 (cal-html-css-default): Add holiday entry.
7699 (holiday-in-range): Autoload it.
7700 (cal-html-htmlify-entry): Add optional class argument.
7701 (cal-html-htmlify-list): Add optional holidays argument.
7702 (cal-html-insert-agenda-days): Include holidays in the output.
7703 (cal-html-one-month): Maybe include holidays.
7704
7705 * calendar/holidays.el (holiday-in-range):
7706 Move here from cal-tex-list-holidays.
7707 * calendar/cal-tex.el (cal-tex-list-holidays):
7708 Make it an obsolete alias for holiday-in-range. Update all callers.
7709
7710 2012-05-05 Chong Yidong <cyd@gnu.org>
7711
7712 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
7713 Nextstep.
7714
7715 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
7716
7717 * files.el (file-auto-mode-skip): New var.
7718 (set-auto-mode-1): Use it.
7719
7720 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7721
7722 * repeat.el: Use lexical-binding.
7723 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
7724 (repeat-undo-count): Remove.
7725 (repeat):
7726 * progmodes/octave-mod.el (octave-abbrev-start):
7727 * progmodes/f90.el (f90-abbrev-start):
7728 * face-remap.el (text-scale-adjust):
7729 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
7730
7731 * emacs-lisp/pcase.el (pcase--let*): New function.
7732 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
7733 a bit more.
7734 (pcase--split-pred): Be more clever about ruling out overlap between
7735 a predicate and some constant pattern.
7736 (pcase--q1): Use `null' instead of (eq foo nil).
7737
7738 * subr.el (setq-local, defvar-local): New macros.
7739 (kbd): Redefine as an alias.
7740 (with-selected-window): Leave unrelated frames alone.
7741 (set-temporary-overlay-map): New function.
7742
7743 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7744
7745 * subr.el (user-error): New function.
7746 * window.el (switch-to-buffer):
7747 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
7748 (smerge-match-conflict):
7749 * simple.el (previous-matching-history-element)
7750 (next-matching-history-element, goto-history-element, undo-more)
7751 (undo-start):
7752 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
7753 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
7754 (next-file, tags-loop-scan, list-tags, complete-tag):
7755 * progmodes/compile.el (compilation-loop):
7756 * mouse.el (mouse-minibuffer-check):
7757 * man.el (Man-bgproc-sentinel, Man-goto-page):
7758 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
7759 (Info-history-forward, Info-follow-reference, Info-menu)
7760 (Info-extract-menu-item, Info-extract-menu-counting)
7761 (Info-forward-node, Info-backward-node, Info-next-menu-item)
7762 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
7763 (Info-next-reference, Info-prev-reference, Info-index)
7764 (Info-index-next, Info-follow-nearest-node)
7765 (Info-copy-current-node-name):
7766 * imenu.el (imenu--make-index-alist)
7767 (imenu-default-create-index-function, imenu-add-to-menubar):
7768 * files.el (basic-save-buffer, recover-file):
7769 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7770 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
7771 (checkdoc-message-text, checkdoc-defun):
7772 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
7773 * cus-edit.el (customize-changed-options, customize-rogue)
7774 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
7775 (custom-variable-mark-to-reset-standard)
7776 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
7777 (custom-file):
7778 * completion.el (check-completion-length):
7779 * comint.el (comint-search-arg)
7780 (comint-previous-matching-input-string-position)
7781 (comint-previous-matching-input)
7782 (comint-replace-by-expanded-history-before-point, comint-send-input)
7783 (comint-copy-old-input, comint-backward-matching-input)
7784 (comint-goto-process-mark, comint-set-process-mark):
7785 * calendar/calendar.el (calendar-cursor-to-date): Use it.
7786 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
7787
7788 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7789
7790 * dabbrev.el (dabbrev--ignore-case-p): New function.
7791 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
7792 Use it.
7793
7794 * files.el (automount-dir-prefix): Mark as obsolete.
7795
7796 2012-05-04 Glenn Morris <rgm@gnu.org>
7797
7798 * patcomp.el, play/bruce.el: Move to obsolete/.
7799
7800 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
7801
7802 Fix minor Y10k bugs.
7803 * arc-mode.el (archive-unixdate):
7804 * autoinsert.el (auto-insert-alist):
7805 * calc/calc-forms.el (math-this-year):
7806 * emacs-lisp/copyright.el (copyright-current-year)
7807 (copyright-update-year, copyright):
7808 * tar-mode.el (tar-clip-time-string):
7809 * time.el (display-time-update):
7810 Don't assume years have 4 digits.
7811
7812 2012-05-04 Chong Yidong <cyd@gnu.org>
7813
7814 * dos-w32.el (file-name-buffer-file-type-alist)
7815 (direct-print-region-use-command-dot-com):
7816 * ffap.el (ffap-menu-regexp):
7817 * find-file.el (ff-special-constructs):
7818 * follow.el (follow-debug):
7819 * forms.el (forms--debug):
7820 * iswitchb.el (iswitchb-all-frames):
7821 * ido.el (ido-all-frames):
7822 * emacs-lisp/timer.el (timer-max-repeats):
7823 * mail/feedmail.el (feedmail-mail-send-hook)
7824 (feedmail-mail-send-hook-queued):
7825 * mail/footnote.el (footnote-signature-separator):
7826 * mail/mailabbrev.el (mail-alias-separator-string)
7827 (mail-abbrev-mode-regexp):
7828 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
7829 * progmodes/idlwave.el (idlwave-libinfo-file)
7830 (idlwave-default-completion-case-is-down)
7831 (idlwave-library-routines): Convert defvars to defcustoms.
7832
7833 * mail/rmail.el (rmail-decode-mime-charset):
7834 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
7835 (idlwave-shell-fix-inserted-breaks)
7836 (idlwave-shell-activate-alt-keybindings)
7837 (idlwave-shell-use-breakpoint-glyph):
7838 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
7839
7840 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7841
7842 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
7843
7844 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
7845
7846 * progmodes/verilog-mode.el (font-lock-keywords):
7847 Fix mis-highligting auto. Reported by Craig Barner.
7848 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
7849 defines from global name space. Reported by Dan Dever.
7850 (verilog-auto-reset, verilog-auto-reset-widths)
7851 (verilog-auto-tieoff): Support using unbased numbers for
7852 AUTORESET and AUTOTIEOFF.
7853 (verilog-submit-bug-report): Update variable list.
7854 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
7855 parenthesis from not matching. Reported by Michael Rytting.
7856 (verilog-auto-template-lint): Fix hash error when linting modules
7857 with no used templates.
7858 (verilog-warn, verilog-warn-error)
7859 (verilog-warn-fatal): When non-interactive report multiple
7860 warnings before exiting. Suggested by Brad Dobbie.
7861 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
7862 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
7863 to report unused template errors. Reported by Brad Dobbie.
7864 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
7865 nets, bug438. Reported by Vns Blore.
7866 (verilog-auto-inout-module, verilog-auto-reg)
7867 (verilog-read-decls, verilog-read-sub-decls-sig)
7868 (verilog-signals-edit-wire-reg, verilog-signals-with):
7869 Fix passing of Verilog data types in ANSI input/output ports
7870 such as "output logic" into the AUTOs. Special case "wire" and
7871 "reg" for backwards compatibility presuming Verilog 2001.
7872 (verilog-auto-ascii-enum): Add "auto enum" as alias.
7873 (verilog-preprocess): Fix replication of preprocess output.
7874 Reported by Brad Dobbie.
7875 (verilog-auto-inst-interfaced-ports):
7876 Create verilog-auto-inst-interfaced-ports, bug429.
7877 Reported by Julian Gorfajn.
7878 (verilog-after-save-font-hook)
7879 (verilog-before-save-font-hook): New variable.
7880 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
7881 (verilog-save-font-mods): Wrap disabling fontification, reported
7882 by David Rogoff.
7883 (verilog-do-indent, verilog-pretty-declarations-auto)
7884 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
7885 Reported by Pierre-David Pfister.
7886 (verilog-set-auto-endcomments): Fix endtask auto comments outside
7887 of class declarations, bug292. Reported by Kevin Heilman.
7888 (verilog-read-decls): Fix 'parameter type' not appearing in
7889 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
7890 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
7891 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
7892 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
7893 Reported by David Kravitz.
7894
7895 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
7896
7897 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
7898 assignment with tests in ifs and for loops.
7899 (verilog-extended-complete-re, verilog-complete-reg): Change so
7900 that DPI inport functions don't look like fuction declarations.
7901 (verilog-pretty-expr): Don't line up assignment
7902 operations to the test and increment in if and for loops
7903 (verilog-extended-complete-re, verilog-complete-reg): Change so
7904 that DPI inport functions don't look like fuction declarations.
7905
7906 2012-05-03 Kenichi Handa <handa@m17n.org>
7907
7908 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
7909 decoding, and show a warning message without signaling an error
7910 (Bug#11282).
7911
7912 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7913
7914 * emacs-lisp/bytecomp.el
7915 (byte-compile-file-form-custom-declare-variable): Compile all elements,
7916 since cconv.el might have introduced :fun-body, internal-make-closure,
7917 and friends for bytecomp to handle (bug#11391).
7918 * custom.el (defcustom): Avoid ((λ ..) ..).
7919
7920 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
7921
7922 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
7923
7924 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
7925
7926 * notifications.el (dbus-debug):
7927 * term/linux.el (gpm-mouse-enable):
7928 * term/screen.el (xterm-register-default-colors): Declare.
7929
7930 2012-05-02 Chong Yidong <cyd@gnu.org>
7931
7932 * cus-start.el (gc-cons-percentage, exec-suffixes)
7933 (dos-display-scancodes, dos-hyper-key, dos-super-key)
7934 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
7935 (make-cursor-line-fully-visible, void-text-area-pointer)
7936 (font-list-limit): Add customization data.
7937
7938 * allout.el (allout-exposure-change-functions)
7939 (allout-structure-added-functions)
7940 (allout-structure-deleted-functions)
7941 (allout-structure-shifted-functions): Rename abnormal hooks from
7942 *-hook, and convert to defcustoms.
7943 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
7944 Convert to defcustoms.
7945 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
7946
7947 * allout-widgets.el: Hook callers changed.
7948
7949 2012-05-02 Eli Zaretskii <eliz@gnu.org>
7950
7951 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
7952 the yanked message in preference to the default value of
7953 buffer-file-coding-system.
7954
7955 2012-05-02 Martin Rudalics <rudalics@gmx.at>
7956
7957 * window.el (display-buffer--action-function-custom-type):
7958 Fix entry.
7959
7960 2012-05-02 Alan Mackenzie <acm@muc.de>
7961
7962 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
7963
7964 2012-05-01 Glenn Morris <rgm@gnu.org>
7965
7966 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
7967
7968 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
7969
7970 * cus-edit.el (custom-variable-documentation): Simplify with format.
7971
7972 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7973 Stefan Monnier <monnier@iro.umontreal.ca>
7974
7975 * simple.el (suggest-key-bindings, execute-extended-command):
7976 Move from keyboard.c.
7977
7978 2012-05-01 Chong Yidong <cyd@gnu.org>
7979
7980 * follow.el: Eliminate advice.
7981 (set-process-filter, process-filter, sit-for): Advice deleted.
7982 (follow-mode-off-hook): Obsolete hook removed.
7983 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
7984 Vars deleted.
7985 (follow-auto): Use a :set function.
7986 (follow-mode): Rewritten. Don't advise process filters.
7987 (follow-switch-to-current-buffer-all, follow-scroll-up)
7988 (follow-scroll-down): Assume follow-mode is bound.
7989 (follow-comint-scroll-to-bottom)
7990 (follow-align-compilation-windows): New functions.
7991 (follow--window-sorter): New function.
7992 (follow-all-followers): Use it to explicitly sort windows by their
7993 positions; don't make assumptions about next-window order.
7994 (follow-windows-start-end, follow-delete-other-windows-and-split)
7995 (follow-calc-win-start): Doc fix.
7996 (follow-windows-aligned-p, follow-select-if-visible): Don't call
7997 vertical-motion unnecessarily.
7998 (follow-adjust-window): New function.
7999 (follow-post-command-hook): Use it.
8000 (follow-call-set-process-filter, follow-call-process-filter)
8001 (follow-intercept-process-output, follow-tidy-process-filter-alist)
8002 (follow-stop-intercept-process-output, follow-generic-filter):
8003 Functions deleted.
8004 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
8005 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
8006 New functions, replacing advice on scroll-bar-* commands.
8007 (follow-mwheel-scroll): New function (Bug#4112).
8008
8009 * comint.el (comint-adjust-point): New function.
8010 (comint-postoutput-scroll-to-bottom): Use it.
8011 Call follow-comint-scroll-to-bottom for Follow mode buffers.
8012
8013 2012-05-01 Glenn Morris <rgm@gnu.org>
8014
8015 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
8016 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
8017 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
8018 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
8019 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
8020 Remove no-byte-compile setting.
8021
8022 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
8023
8024 * minibuffer.el (completion-table-with-quoting): Fix compatibility
8025 all-completions code to not return a number in the last cdr.
8026
8027 2012-04-30 Leo Liu <sdl.web@gmail.com>
8028
8029 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
8030 read-only error.
8031
8032 2012-04-29 Chong Yidong <cyd@gnu.org>
8033
8034 * follow.el (follow-calc-win-end): Rewrite to handle partial
8035 screen lines correctly (Bug#8390).
8036 (follow-avoid-tail-recenter): Minor cleanup.
8037
8038 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
8039
8040 Avoid the obsolete `assoc' package.
8041 * speedbar.el (speedbar-refresh): Avoid adelete.
8042 (speedbar-file-lists): Simplify and avoid aput.
8043 * man.el (Man--sections, Man--refpages): New vars, replacing
8044 Man-sections-alist and Man-refpages-alist.
8045 (Man-build-section-alist, Man-build-references-alist):
8046 Use them; avoid aput.
8047 (Man--last-section, Man--last-refpage): New vars.
8048 (Man-follow-manual-reference): Use them.
8049 Use the `default' arg of completing-read.
8050 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
8051
8052 2012-04-27 Chong Yidong <cyd@gnu.org>
8053
8054 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
8055
8056 * startup.el (x-apply-session-resources): New function.
8057
8058 * term/ns-win.el (ns-initialize-window-system):
8059 * term/w32-win.el (w32-initialize-window-system):
8060 * term/x-win.el (x-initialize-window-system): Use it to properly
8061 set menu-bar-mode and other vars from X resources, even if the
8062 initial frame is not a window-system frame (Bug#2299).
8063
8064 * subr.el (read-key): Avoid running filter function when setting
8065 up temporary tool bar entries (Bug#9922).
8066
8067 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8068
8069 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
8070 (Bug#11344)
8071
8072 2012-04-27 Chong Yidong <cyd@gnu.org>
8073
8074 * select.el (xselect--encode-string): New function, split from
8075 xselect-convert-to-string.
8076 (xselect-convert-to-string): Use it.
8077 (xselect-convert-to-filename, xselect-convert-to-os)
8078 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
8079 returned strings are properly encoded (Bug#11315).
8080
8081 2012-04-27 Chong Yidong <cyd@gnu.org>
8082
8083 * simple.el (delete-active-region): Move to killing custom group.
8084
8085 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8086
8087 * progmodes/which-func.el (which-func-current): Quote %
8088 characters for mode-line processing.
8089
8090 2012-04-27 Chong Yidong <cyd@gnu.org>
8091
8092 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
8093 reaching eob (Bug#11286).
8094
8095 2012-04-27 Eli Zaretskii <eliz@gnu.org>
8096
8097 * progmodes/gdb-mi.el (gdb-control-level): New variable.
8098 (gdb): Make it buffer-local and init to zero.
8099 (gdb-control-commands-regexp): New variable.
8100 (gdb-send): Don't wrap in "-interpreter-exec console" if
8101 gdb-control-level is positive. Increment gdb-control-level
8102 whenever the command matches gdb-control-commands-regexp, and
8103 decrement it each time the command is "end". (Bug#11279)
8104
8105 2012-04-27 Martin Rudalics <rudalics@gmx.at>
8106
8107 * window.el (adjust-window-trailing-edge, enlarge-window)
8108 (shrink-window, window-resize):
8109 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
8110 windows (Bug#11276).
8111
8112 2012-04-27 Chong Yidong <cyd@gnu.org>
8113
8114 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
8115 fix "missing prefix" warning. All callers changed.
8116
8117 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
8118
8119 * emacs-lisp/assoc.el: Move to obsolete/.
8120
8121 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8122
8123 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
8124
8125 * term/ns-win.el (ns-define-service):
8126 * progmodes/pascal.el (pascal-goto-defun):
8127 * progmodes/js.el (js--read-tab):
8128 * progmodes/etags.el (tags-lazy-completion-table):
8129 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
8130 * emacs-lisp/ewoc.el (ewoc--wrap):
8131 * emacs-lisp/assoc.el (aput, adelete, amake):
8132 * doc-view.el (doc-view-convert-current-doc):
8133 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
8134
8135 2012-04-26 Chong Yidong <cyd@gnu.org>
8136
8137 * image.el (image-type-from-buffer): Only return supported image
8138 type (Bug#9045).
8139
8140 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
8141 value, for symmetry with diff-end-of-hunk.
8142 (diff-split-hunk, diff-find-source-location)
8143 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
8144 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
8145 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
8146 compute the relevant hunk or file properly (Bug#6005).
8147 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
8148
8149 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8150
8151 * vc/vc-mtn.el:
8152 * vc/vc-hg.el:
8153 * vc/vc-git.el:
8154 * vc/vc-dir.el:
8155 * vc/vc-cvs.el:
8156 * vc/vc-bzr.el:
8157 * vc/vc-arch.el:
8158 * vc/vc.el: Replace lexical-let by lexical-binding.
8159 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
8160 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
8161 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
8162
8163 2012-04-26 Chong Yidong <cyd@gnu.org>
8164
8165 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
8166 (diff-mode-shared-map): Bind it to / and [remap undo].
8167
8168 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
8169 (ediff-window-setup-function): Use it as the default, to set up
8170 windows based on whether the current frame is graphical (Bug#2138).
8171 (ediff-choose-window-setup-function-automatically): Make obsolete.
8172
8173 * vc/ediff-init.el: Always define ediff-pixel-width/height.
8174
8175 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8176
8177 * ffap.el: Remove old code for obsolete package.
8178 (ffap-complete-as-file-p): Remove.
8179
8180 Use completion-table-with-quoting for comint and pcomplete.
8181 * comint.el (comint--unquote&requote-argument)
8182 (comint--unquote-argument, comint--requote-argument): New functions.
8183 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
8184 (comint-quote-filename): Use regexp-opt-charset.
8185 (comint--common-suffix, comint--common-quoted-suffix)
8186 (comint--table-subvert): Remove.
8187 (comint-unquote-function, comint-requote-function): New vars.
8188 (comint--complete-file-name-data): Use them with
8189 completion-table-with-quoting.
8190 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
8191 * pcomplete.el (pcomplete-arg-quote-list)
8192 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
8193 (pcomplete-unquote-argument-function): Default to non-nil.
8194 (pcomplete-unquote-argument): Simplify.
8195 (pcomplete--common-quoted-suffix): Remove.
8196 (pcomplete-requote-argument-function): New var.
8197 (pcomplete--common-suffix): New function.
8198 (pcomplete-completions-at-point): Use completion-table-with-quoting
8199 and completion-table-subvert.
8200
8201 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
8202 (minibuffer--double-dollars): Preserve properties.
8203 (completion--sifn-requote): New function.
8204 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
8205
8206 * minibuffer.el: Add support for completion of quoted/escaped data.
8207 (completion-table-with-quoting, completion-table-subvert): New funs.
8208 (completion--twq-try, completion--twq-all): New functions.
8209 (completion--nth-completion): New function.
8210 (completion-try-completion, completion-all-completions): Use it.
8211
8212 2012-04-25 Leo Liu <sdl.web@gmail.com>
8213
8214 * progmodes/python.el (python-pdbtrack-get-source-buffer):
8215 Use compilation-message if available to find real filename.
8216
8217 2012-04-25 Chong Yidong <cyd@gnu.org>
8218
8219 * vc/diff-mode.el (diff-setup-whitespace): New function.
8220 (diff-mode): Use it.
8221
8222 * vc/diff.el (diff-sentinel):
8223 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
8224 Whitespace mode variables based on diff style (Bug#8612).
8225
8226 2012-04-25 Leo Liu <sdl.web@gmail.com>
8227
8228 * progmodes/python.el (python-send-region): Add suffix .py to the
8229 temp file.
8230
8231 * files.el (auto-mode-alist): Use javascript-mode instead.
8232
8233 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
8234
8235 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
8236
8237 * net/soap-client.el (soap-resolve-references-for-sequence-type)
8238 (soap-resolve-references-for-array-type): Hack to prevent self
8239 references, see Bug#9.
8240 (soap-parse-envelope): Report the contents of the 'detail' node
8241 when receiving a fault reply.
8242 (soap-parse-envelope): Report the contents of the entire 'detail' node.
8243
8244 * net/soap-inspect.el (soap-sample-value-for-simple-type)
8245 (soap-inspect-simple-type): New function.
8246
8247 * net/soap-client.el (soap-simple-type): New struct.
8248 (soap-default-xsd-types, soap-default-soapenc-types)
8249 (soap-decode-basic-type, soap-encode-basic-type):
8250 support unsignedInt and double basic types.
8251 (soap-resolve-references-for-simple-type)
8252 (soap-parse-simple-type, soap-encode-simple-type): New function.
8253 (soap-parse-schema): Parse xsd:simpleType declarations.
8254
8255 * net/soap-client.el (soap-default-xsd-types)
8256 (soap-default-soapenc-types): Add integer, byte and anyURI types.
8257 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
8258 the local name of "soapenc:Array".
8259 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
8260 decoding integer, byte and anyURI xsd types.
8261
8262 2012-04-25 Chong Yidong <cyd@gnu.org>
8263
8264 * cus-edit.el (custom-buffer-create-internal): Update header text.
8265
8266 2012-04-25 Eli Zaretskii <eliz@gnu.org>
8267
8268 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
8269 settings on 'system-type', not on 'window-system'. On MS-Windows,
8270 set interactive-mode on in GDB.
8271
8272 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8273
8274 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
8275 (ruby-syntax-propertize-regexp): Remove.
8276 (ruby-syntax-propertize-function): Split regexp into chunks.
8277 Match following code directly.
8278
8279 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
8280
8281 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
8282 (ruby-syntax-propertize-regexp): New function.
8283 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
8284 by a special keyword.
8285
8286 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
8287 (ruby-syntax-general-delimiters-goto-beg)
8288 (ruby-syntax-propertize-general-delimiters): New functions.
8289 (ruby-syntax-propertize-function): Use them to handle GDL.
8290 (ruby-font-lock-keywords): Move old handling of GDL...
8291 (ruby-font-lock-syntactic-keywords): .. to here.
8292 (ruby-calculate-indent): Adjust indentation for GDL.
8293
8294 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
8295
8296 * notifications.el (top): Remove unneeded declarations.
8297 (notifications-specification-version): Change to "1.2".
8298 (notifications-interface, notifications-notify-method)
8299 (notifications-close-notification-method): Fix docstring.
8300 (notifications-get-capabilities-method): New defconst.
8301 (notifications-notify): Add :action-items, :resident and
8302 :transient hints. Change "image_data" to "image-data" and
8303 "image_path" to "image-path".
8304 (notifications-get-capabilities): New defun.
8305
8306 2012-04-24 Leo Liu <sdl.web@gmail.com>
8307
8308 * progmodes/python.el: Move hideshow setup to the end.
8309
8310 2012-04-24 Martin Rudalics <rudalics@gmx.at>
8311
8312 * window.el (handle-select-window): Clear echo area since this is
8313 no more done by read_char (Bug#11304).
8314
8315 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8316
8317 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
8318 and `/ M' to filter-derived-mode.
8319 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
8320 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
8321 (ibuffer-mark-by-mode): Use default rather than initial-input.
8322 (ibuffer-filter-by-derived-mode): Autoload and require-match.
8323
8324 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
8325
8326 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
8327 (ibuffer-filter-by-derived-mode): New filter.
8328 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
8329
8330 2012-04-23 Andreas Politz <politza@fh-trier.de>
8331
8332 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
8333
8334 2012-04-23 Chong Yidong <cyd@gnu.org>
8335
8336 * cus-edit.el (customize-apropos, customize-apropos-options):
8337 Disable matching of non-option variables (Bug#11176).
8338 (customize-option, customize-option-other-window)
8339 (customize-changed-options): Doc fix.
8340 (customize-apropos-options, customize-apropos-faces)
8341 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
8342
8343 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
8344 Fix word list splitting (Bug#11132).
8345 (apropos-symbol, apropos-keybinding, apropos-label)
8346 (apropos-property, apropos-function-button)
8347 (apropos-variable-button, apropos-misc-button): New faces.
8348 (apropos-symbol-face, apropos-keybinding-face)
8349 (apropos-label-face, apropos-property-face, apropos-match-face):
8350 Variables removed (Bug#8396).
8351 (apropos-library-button, apropos-format-plist, apropos-print)
8352 (apropos-print-doc, apropos-describe-plist): Callers changed.
8353
8354 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
8355
8356 * net/xesam.el (xesam-mode-map): Use let-bound map in
8357 initialization. (Bug#11292)
8358
8359 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8360
8361 Preserve ispell session localwords when switching back to
8362 original buffer.
8363
8364 * textmodes/ispell.el (ispell-buffer-session-localwords):
8365 New buffer-local variable to hold buffer session localwords.
8366 (ispell-kill-ispell): Add option 'clear to delete session
8367 localwords.
8368 (ispell-command-loop, ispell-change-dictionary)
8369 (ispell-buffer-local-words): Preserve session localwords when
8370 needed.
8371
8372 * textmodes/flyspell.el (flyspell-process-localwords)
8373 (flyspell-do-correct): Preserve session localwords when needed.
8374
8375 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8376
8377 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
8378 using obsolete `translation-table-for-input'.
8379 (ispell-word, ispell-process-line, ispell-complete-word):
8380 Use plain `insert' instead of removed `ispell-insert-word'.
8381
8382 2012-04-22 Chong Yidong <cyd@gnu.org>
8383
8384 * cus-edit.el (custom-variable-menu)
8385 (custom-variable-reset-saved, custom-face-menu)
8386 (custom-face-reset-saved): If there is no saved value, make the
8387 "reset-saved" operation bring back the default (Bug#9509).
8388 (custom-face-state): Properly detect themed faces.
8389
8390 * faces.el (face-spec-set): Stop supporting deprecated form of
8391 third arg.
8392
8393 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
8394
8395 Move functions from C to Lisp. Make non-blocking method calls
8396 the default. Implement further D-Bus standard interfaces.
8397
8398 * net/dbus.el (dbus-message-internal): Declare function.
8399 Remove unneeded function declarations.
8400 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
8401 (dbus-message-type-method-return, dbus-message-type-error)
8402 (dbus-message-type-signal): Declare variables. Remove local
8403 definitions.
8404 (dbus-interface-dbus, dbus-interface-peer)
8405 (dbus-interface-introspectable, dbus-interface-properties)
8406 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
8407 Adapt docstring.
8408 (dbus-interface-objectmanager): New defconst.
8409 (dbus-call-method, dbus-call-method-asynchronously)
8410 (dbus-send-signal, dbus-method-return-internal)
8411 (dbus-method-error-internal, dbus-register-service)
8412 (dbus-register-signal, dbus-register-method): New defuns, moved
8413 from dbusbind.c
8414 (dbus-call-method-handler, dbus-setenv)
8415 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
8416 New defuns.
8417 (dbus-call-method-non-blocking): Make it an obsolete function.
8418 (dbus-unregister-object, dbus-unregister-service)
8419 (dbus-handle-event, dbus-register-property)
8420 (dbus-property-handler): Obey the new structure of
8421 `bus-registered-objects'.
8422 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
8423 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
8424 Use `dbus-call-method'.
8425
8426 2012-04-22 Chong Yidong <cyd@gnu.org>
8427
8428 * cus-edit.el (custom-commands, custom-reset-menu)
8429 (Custom-reset-standard): Tweak labels.
8430 (custom-reset-button-menu): Change default to t.
8431 (custom-buffer-create-internal): For the custom-reset-button-menu
8432 case, put the revert button first.
8433 (custom-group-subtitle): New face.
8434 (custom-group-value-create): Align docstring to a specific column.
8435
8436 * wid-edit.el (widget-documentation-link-add): Don't handle
8437 indentation in this function.
8438 (widget-documentation-string-indent-to): New function.
8439 (widget-documentation-string-value-create): Use it.
8440
8441 * autorevert.el (auto-revert):
8442 * epg-config.el (epg):
8443 * ibuffer.el (ibuffer):
8444 * mpc.el (mpc):
8445 * ses.el (ses):
8446 * eshell/eshell.el (eshell):
8447 * net/ange-ftp.el (ange-ftp):
8448 * progmodes/ebnf2ps.el (postscript):
8449 * progmodes/flymake.el (flymake):
8450 * progmodes/prolog.el (prolog):
8451 * progmodes/verilog-mode.el (verilog-mode):
8452 * progmodes/which-func.el (which-func):
8453 * term/xterm.el (xterm):
8454 * textmodes/picture.el (picture):
8455 * textmodes/tildify.el (tildify):
8456 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
8457 customization buffers.
8458
8459 2012-04-22 Alan Mackenzie <acm@muc.de>
8460
8461 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
8462 Adding a ) can hide the resulting (..) from searches. Fix it.
8463 Bound the backward search to the position of the existing (.
8464
8465 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
8466
8467 * progmodes/verilog-mode.el (verilog-mode): Check whether
8468 which-func-modes is t before adding verilog-mode.
8469 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
8470
8471 2012-04-21 Leo Liu <sdl.web@gmail.com>
8472
8473 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
8474
8475 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
8476
8477 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
8478 filling of the last column of a table (Bug#5635).
8479 (woman-find-next-control-line): New arg, specifying an additional
8480 regexp component for the control line.
8481 (woman2-roff-buffer): Use it.
8482 (woman-break-table): New function.
8483 (woman2-TS): Use it.
8484
8485 2012-04-21 Chong Yidong <cyd@gnu.org>
8486
8487 * woman.el (woman-set-buffer-display-table, woman-decode-region)
8488 (woman-horizontal-escapes, woman-negative-vertical-space)
8489 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
8490 (WoMan-warn-ignored): Use ?\s instead of ?\ .
8491
8492 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8493
8494 * minibuffer.el (completion-file-name-table): Complete user names.
8495
8496 2012-04-20 Leo Liu <sdl.web@gmail.com>
8497
8498 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
8499 and pcase-let*.
8500
8501 2012-04-20 Chong Yidong <cyd@gnu.org>
8502
8503 * server.el (server-execute): Respect initial-buffer-choice if it
8504 is a string and there are no files to open (Bug#2825).
8505 (server-create-window-system-frame, server-create-tty-frame):
8506 Don't switch buffers here.
8507 (server-process-filter): Only try to open a window system frame if
8508 compiled with graphical support (Bug#8314).
8509
8510 2012-04-20 Dan Nicolaescu <dann@gnu.org>
8511
8512 * battery.el (battery-echo-area-format): Display remaining time
8513 for sysfs backend too (Bug#11269).
8514 (battery-linux-sysfs): Fix conditional for the charge.
8515
8516 2012-04-20 Chong Yidong <cyd@gnu.org>
8517
8518 * progmodes/gdb-mi.el (gdb): Revert previous change.
8519 (gdb-inferior-io--init-proc): New function.
8520 (gdb-init-1): Use it.
8521 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
8522 responsible for allocating a new pty and hooking it to gdb when
8523 the old pty gets an EIO due to process exit.
8524 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
8525 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
8526 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
8527
8528 2012-04-20 Eli Zaretskii <eliz@gnu.org>
8529
8530 * window.el (window-min-size, window-sizable, window-min-delta)
8531 (window-max-delta, window--resizable, window-resizable)
8532 (window-total-size, window-full-height-p, window-full-width-p)
8533 (window-in-direction, window--resize-mini-window, window-resize)
8534 (window--resize-child-windows-normal)
8535 (window--resize-child-windows, window--resize-siblings)
8536 (window--resize-this-window, adjust-window-trailing-edge)
8537 (enlarge-window, shrink-window): Doc fixes.
8538
8539 2012-04-20 Chong Yidong <cyd@gnu.org>
8540
8541 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
8542 New function to call delete-process on the gdb-inferior buffer's pty.
8543 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
8544 pty process (Bug#11273).
8545 (gdb-update): New arg to suppress talking to the gdb process.
8546 (gdb-done-or-error): Use it.
8547 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
8548 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
8549 sentinel not being called.
8550
8551 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
8552
8553 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
8554
8555 2012-04-20 Glenn Morris <rgm@gnu.org>
8556
8557 * net/network-stream.el (open-network-stream): Doc fix.
8558
8559 2012-04-20 Chong Yidong <cyd@gnu.org>
8560
8561 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
8562
8563 2012-04-20 Alan Mackenzie <acm@muc.de>
8564
8565 Ensure searching for keywords is case sensitive.
8566
8567 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
8568 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
8569 (c-defun-name, c-mark-function, c-cpp-define-name)
8570 (c-comment-indent, c-scan-conditionals, c-indent-defun)
8571 (c-context-line-break): Bind case-fold-search to nil.
8572
8573 * progmodes/cc-mode.el (c-font-lock-fontify-region):
8574 Bind case-fold-search to nil.
8575
8576 2012-04-20 Chong Yidong <cyd@gnu.org>
8577
8578 * mail/sendmail.el (mail-bury): Call return action with the right
8579 Rmail buffer (Bug#11242).
8580
8581 * server.el (server-process-filter): Handle corner case where both
8582 tty and nowait options are present (Bug#11102).
8583
8584 2012-04-20 Eli Zaretskii <eliz@gnu.org>
8585
8586 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
8587 (top level): Put into the executable the ident-style '$Id:' tag on
8588 windows-nt as well.
8589
8590 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
8591
8592 * electric.el (electric-indent-post-self-insert-function): Check that
8593 electric-indent-mode is enabled in current buffer.
8594
8595 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
8596
8597 * imenu.el (imenu-progress-message): Restore; it is "used" in
8598 erc/erc-imenu.el and net/snmp-mode.el.
8599
8600 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
8601
8602 * avoid.el (mouse-avoidance-mode): Mark unused arg.
8603 (mouse-avoidance-nudge-mouse): Remove unused binding.
8604
8605 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
8606
8607 * descr-text.el (describe-char):
8608 * progmodes/python.el (python-describe-symbol):
8609 Don't call `toggle-read-only', set `buffer-read-only'.
8610
8611 * imenu.el (imenu-default-goto-function): Mark unused args.
8612 (imenu-progress-message): Remove obsolete macro; all callers changed.
8613
8614 * subr.el (keymap-canonicalize): Remove unused binding.
8615 (read-passwd): Mark unused arg.
8616
8617 * tutorial.el (tutorial--display-changes): Remove unused binding.
8618 (tutorial--save-tutorial-to): Remove unused variable.
8619
8620 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
8621 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
8622 (package-generate-autoloads, package-menu--generate)
8623 (package-menu--find-upgrades): Remove unused bindings.
8624
8625 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
8626 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
8627 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
8628 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
8629 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
8630 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
8631 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
8632 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
8633 (cua-delete-char-rectangle): Mark unused args.
8634 (cua-align-rectangle): Remove unused binding.
8635
8636 * mail/rmail.el (compilation--message->loc)
8637 (epa--find-coding-system-for-mime-charset): Declare.
8638
8639 * net/dbus.el (dbus-register-service): Declare.
8640 (dbus-name-owner-changed-handler): Remove unused binding.
8641
8642 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
8643 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
8644 (nxml-scan-backward-within): Mark unused arg.
8645 (nxml-dynamic-markup-word): Remove unused binding.
8646
8647 * mouse.el (mouse-menu-major-mode-map):
8648 * emacs-lisp/authors.el (authors-scan-change-log)
8649 (authors-add-to-author-list):
8650 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
8651 * emacs-lisp/smie.el (smie-auto-fill):
8652 * mail/sendmail.el (mail-bury):
8653 * mail/unrmail.el (unrmail):
8654 * net/tls.el (open-tls-stream):
8655 * textmodes/picture.el (picture-mouse-set-point):
8656 Remove unused bindings.
8657
8658 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
8659
8660 * net/tramp.el (tramp-action-password): Let-bind
8661 `enable-recursive-minibuffers' to t.
8662
8663 2012-04-18 Sam Steingold <sds@gnu.org>
8664
8665 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
8666 instead of 'string to accommodate values like [f11].
8667 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
8668 * progmodes/gdb-mi.el: Likewise.
8669
8670 2012-04-18 Leo Liu <sdl.web@gmail.com>
8671
8672 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
8673 current buffer.
8674 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
8675 LOCAL is nil.
8676
8677 2012-04-18 Chong Yidong <cyd@gnu.org>
8678
8679 * simple.el (line-move): Use forward-line if in batch mode
8680 (Bug#11053).
8681
8682 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
8683
8684 * files.el (after-find-file): Do not try to add a final newline if
8685 the buffer is read-only (Bug#11156).
8686
8687 2012-04-17 Richard Stallman <rms@gnu.org>
8688
8689 * mail/rmail.el (rmail-start-mail):
8690 Pass (rmail-mail-return...) for the return-action.
8691 Pass (rmail-yank-current-message...) for the yank-action.
8692 (rmail-yank-current-message): New function.
8693 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
8694 (rmail-reply): Likewise.
8695 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
8696
8697 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
8698 buffer, not the last. Reject temp buffers. Use the rmail-mode
8699 buffer, not newbuf.
8700
8701 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
8702
8703 * server.el (server-ensure-safe-dir): Simplify.
8704
8705 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8706
8707 * emacs-lisp/smie.el: Provide smarter auto-filling.
8708 (smie-auto-fill): New function.
8709 (smie-setup): Use it.
8710
8711 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
8712
8713 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
8714
8715 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
8716 (comment-indent): Use it.
8717
8718 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
8719
8720 * ses.el: The overall change is to add cell renaming, that is
8721 setting fancy names for cell symbols other than name matching
8722 "\\`[A-Z]+[0-9]+\\'" regexp .
8723 (ses-localvars): Add ses--renamed-cell-symb-list.
8724 (ses-create-cell-variable): New defun.
8725 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
8726 (ses-relocate-formula): Relocate formulas only for cells the
8727 symbols of which are not renamed, i.e. symbols whose names do not
8728 match regexp "\\`[A-Z]+[0-9]+\\'".
8729 (ses-relocate-all): Relocate values only for cells the symbols of
8730 which are not renamed.
8731 (ses-load): Create cells variables as the (ses-cell ...) are read,
8732 in order to check row col consistency with cell symbol name only
8733 for cells that are not renamed.
8734 (ses-replace-name-in-formula): New defun.
8735 (ses-rename-cell): New defun.
8736
8737 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
8738
8739 * progmodes/perl-mode.el (perl-indent-parens-as-block):
8740 New option (bug#11118).
8741 (perl-calculate-indent): Respect it.
8742
8743 2012-04-17 Glenn Morris <rgm@gnu.org>
8744
8745 * dired-aux.el (dired-mark-read-string): Doc fix.
8746
8747 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
8748
8749 * dired-aux.el (dired-mark-read-string): Offer optional completion.
8750 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
8751
8752 2012-04-17 Glenn Morris <rgm@gnu.org>
8753
8754 * mouse.el (mouse-drag-track):
8755 * speedbar.el (speedbar-frame-mode):
8756 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
8757
8758 2012-04-16 Leo Liu <sdl.web@gmail.com>
8759
8760 * progmodes/python.el: Trivial cleanup.
8761
8762 2012-04-16 Glenn Morris <rgm@gnu.org>
8763
8764 * vc/vc.el (vc-string-prefix-p):
8765 * vc/pcvs-util.el (cvs-string-prefix-p):
8766 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
8767 * mpc.el (mpc-string-prefix-p):
8768 Make all of these into obsolete aliases for string-prefix-p.
8769 Update callers.
8770 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
8771
8772 * textmodes/two-column.el: Move custom options to the start.
8773 (frame-width): Remove compat definition.
8774 (2C-associate-buffer, 2C-dissociate):
8775 Use with-current-buffer rather than save-excursion.
8776 (2C-dissociate): Force a mode-line update.
8777 (2C-autoscroll): Use ignore-errors.
8778
8779 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
8780 Autoload trivia.
8781
8782 * emacs-lisp/cl-extra.el (*random-state*):
8783 Remove unnecessary declaration.
8784
8785 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
8786
8787 * play/cookie1.el (cookie-snarf):
8788 Give an explicit error if input file cannot be read.
8789
8790 * play/yow.el (yow-file): Use expand-file-name rather than concat.
8791
8792 * progmodes/perl-mode.el (c-macro-expand):
8793 Remove unnecessary autoload (it is in loaddefs.el).
8794
8795 * textmodes/picture.el (picture-desired-column)
8796 (picture-update-desired-column): Convert comments to doc-strings.
8797 (picture-substitute): Remove function.
8798 (picture-mode-map): Initialize in the defvar.
8799
8800 * woman.el: Remove eval-after-load for tar-mode.
8801 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
8802 (woman-tar-extract-file): Autoload it.
8803
8804 * frame.el (automatic-hscrolling): Make this alias obsolete.
8805
8806 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8807
8808 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
8809 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
8810 (ispell-dictionary-base-alist): Revert to original XEmacs
8811 friendly version for default. [:alpha:] will be added in
8812 `ispell-set-spellchecker-params' if needed.
8813
8814 2012-04-16 Chong Yidong <cyd@gnu.org>
8815
8816 * image.el (imagemagick--file-regexp): New variable.
8817 (imagemagick-register-types): Use it.
8818 (imagemagick-types-inhibit): Add :set function. Allow new value
8819 of t to inhibit all types.
8820
8821 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
8822 so we can preload it.
8823
8824 * loadup.el (fboundp): Preload regexp-opt, needed by
8825 imagemagick-register-types.
8826
8827 2012-04-15 Chong Yidong <cyd@gnu.org>
8828
8829 * frame.el (scrolling): Remove nearly unused customization group.
8830
8831 * scroll-all.el (scroll-all-mode): Move to windows group.
8832
8833 2012-04-15 Chong Yidong <cyd@gnu.org>
8834
8835 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
8836
8837 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8838
8839 Avoid the use of ((lambda ...) ...) in lexical-binding code.
8840 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
8841
8842 2012-04-15 Glenn Morris <rgm@gnu.org>
8843
8844 * simple.el (process-file-side-effects): Doc fix.
8845
8846 2012-04-15 Glenn Morris <rgm@gnu.org>
8847
8848 * international/mule-cmds.el (set-language-environment): Doc fix.
8849
8850 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
8851
8852 * server.el (server-auth-key, server-generate-key): Doc fixes.
8853 (server-get-auth-key): Doc fix. Use `string-match-p'.
8854 (server-start): Reflow docstring.
8855
8856 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
8857
8858 * server.el (server-generate-key): `called-interactively-p'
8859 requires a parameter.
8860
8861 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
8862
8863 * server.el (server-auth-key): New variable.
8864 (server-generate-key, server-get-auth-key): New function.
8865 (server-start): Use the new variable and functions to allow
8866 setting a permanent server key (bug#9423).
8867
8868 2012-04-14 Leo Liu <sdl.web@gmail.com>
8869
8870 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
8871
8872 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
8873
8874 Spelling fixes.
8875 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
8876 Emacs uses American spelling.
8877
8878 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
8879
8880 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
8881 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
8882 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
8883 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
8884
8885 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8886
8887 * progmodes/which-func.el (which-func-modes): Change default.
8888
8889 2012-04-14 Kim F. Storm <storm@cua.dk>
8890
8891 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
8892 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
8893
8894 2012-04-14 Chong Yidong <cyd@gnu.org>
8895
8896 * custom.el (custom-theme-set-variables): Doc fix.
8897
8898 2012-04-14 Glenn Morris <rgm@gnu.org>
8899
8900 * international/mule.el (set-auto-coding-for-load): Doc fix.
8901
8902 2012-04-14 Alan Mackenzie <acm@muc.de>
8903
8904 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
8905 imenu work again for Objective C Mode. Correct the *-index values,
8906 these having been disturbed by a previous change in 2011-08.
8907
8908 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
8909 Correct two search limits.
8910
8911 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8912
8913 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
8914
8915 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
8916
8917 * international/characters.el: Fix sorting.
8918
8919 2012-04-14 Eli Zaretskii <eliz@gnu.org>
8920
8921 * international/characters.el: Add more missing Latin case pairs.
8922
8923 2012-04-14 Glenn Morris <rgm@gnu.org>
8924
8925 * files.el (dir-locals-set-class-variables): Doc fix.
8926
8927 2012-04-14 Eli Zaretskii <eliz@gnu.org>
8928
8929 * international/characters.el: Add set-case-syntax-pair call for
8930 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
8931 counterpart. (Bug#11209)
8932
8933 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
8934
8935 2012-04-14 Glenn Morris <rgm@gnu.org>
8936
8937 * calendar/holidays.el (calendar-check-holidays): Doc fix.
8938
8939 2012-04-14 Eli Zaretskii <eliz@gnu.org>
8940
8941 * textmodes/ispell.el (ispell-dictionary-base-alist):
8942 Add data for Hebrew.
8943
8944 2012-04-14 Chong Yidong <cyd@gnu.org>
8945
8946 * net/rcirc.el (rcirc-cmd-quit):
8947 Revert 2012-03-18 change (Bug#11192).
8948
8949 2012-04-14 Glenn Morris <rgm@gnu.org>
8950
8951 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
8952
8953 2012-04-14 Eli Zaretskii <eliz@gnu.org>
8954
8955 * minibuffer.el (completion-in-region-mode-map):
8956 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
8957
8958 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
8959
8960 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
8961
8962 2012-04-13 Masatake YAMATO <yamato@redhat.com>
8963
8964 * minibuffer.el (minibuffer-local-filename-syntax): New variable
8965 to allow `C-M-f' and `C-M-b' to move to the nearest path
8966 separator (bug#9511).
8967
8968 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
8969
8970 * avoid.el: Require cl when compiling. And also move the
8971 `provide' to the end.
8972
8973 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8974
8975 * avoid.el (mouse-avoidance-banish-position): New variable.
8976 (mouse-avoidance-banish-destination): Use it (bug#10165).
8977
8978 2012-04-13 Leo Liu <sdl.web@gmail.com>
8979
8980 * progmodes/which-func.el (which-func-modes): Add objc-mode.
8981
8982 2012-04-13 Ken Brown <kbrown@cornell.edu>
8983
8984 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
8985 this is no longer needed now that cygstart understands file:// URLs.
8986 (browse-url-filename-alist): For the same reason, don't modify
8987 file:// URLs on Cygwin.
8988
8989 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
8990
8991 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
8992 the region on shift if the binding is already shifted (bug#11221).
8993
8994 2012-04-12 Glenn Morris <rgm@gnu.org>
8995
8996 * mail/mailpost.el: Move to obsolete/.
8997
8998 2012-04-12 Drew Adams <drew.adams@oracle.com>
8999
9000 * imenu.el (imenu--generic-function): Ignore invisible definitions
9001 (bug#10123).
9002
9003 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
9004
9005 * hexl.el (hexl-bits): New variable.
9006 (hexl-options): Mention the variable in the doc string.
9007 (hexl-rulerise, hexl-line-displen): New functions.
9008 (hexl-mode): Mention the new variable.
9009 (hexl-mode, hexl-current-address, hexl-current-address):
9010 Use the displen.
9011 (hexl-ascii-start-column): New function.
9012 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
9013 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
9014
9015 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9016
9017 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
9018 '("-i" ENCODING), in 2 separate command-line arguments, to specify
9019 the encoding, as expected by hunspell.
9020
9021 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
9022
9023 * battery.el (battery--linux-sysfs-regexp): New const.
9024 (battery-status-function): Use it. Remove yeeloong special case.
9025 (battery-yeeloong-sysfs): Remove.
9026 (battery-echo-area-format): Remove yeeloong special case.
9027
9028 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9029
9030 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
9031 Reported by Noah Friedman.
9032
9033 * subr.el (read-passwd): Use read-string.
9034
9035 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9036
9037 * vcursor.el (vcursor-move): Increase the priority of the overlay
9038 (bug#9663).
9039
9040 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
9041
9042 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
9043 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
9044
9045 2012-04-11 William Stevenson <yhvh2000@gmail.com>
9046
9047 * textmodes/artist.el (artist-mode): Convert artist-mode to use
9048 define-minor-mode (bug#10760).
9049
9050 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
9051
9052 * progmodes/grep.el (rgrep): Tweak the find command line so
9053 that directories matching `grep-find-ignored-files' won't be
9054 pruned (bug#10351).
9055
9056 2012-04-11 Chong Yidong <cyd@gnu.org>
9057
9058 * startup.el (command-line): Remove support for long-obsolete
9059 variable font-lock-face-attributes.
9060
9061 2012-04-11 Glenn Morris <rgm@gnu.org>
9062
9063 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
9064
9065 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9066
9067 * window.el (window--state-get-1): Obey window-point-insertion-type.
9068
9069 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
9070
9071 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
9072 to previous function when point is on the first character of a
9073 function. Take care of that in `narrow-to-defun' (bug#6157).
9074
9075 2012-04-11 Glenn Morris <rgm@gnu.org>
9076
9077 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
9078 not just file-errors.
9079
9080 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
9081 (vc-bzr-sha1): Use internal sha1.
9082
9083 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9084
9085 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
9086
9087 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
9088
9089 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
9090 that start in the middle of the line (bug#10496).
9091
9092 2012-04-10 Dan Nicolaescu <dann@gnu.org>
9093
9094 * battery.el (battery-linux-proc-acpi): Only one battery is
9095 discharged at a time, but that seems to confuse battery.el when
9096 computing `rate-type' for the battery not being discharged
9097 (bug#10332).
9098
9099 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
9100
9101 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
9102
9103 * international/quail.el: Use dolist and simplify.
9104 (quail-define-package, quail-update-keyboard-layout)
9105 (quail-define-rules): Use dolist.
9106 (quail-insert-kbd-layout, quail-get-translation): CSE.
9107
9108 * tmm.el: Use dolist, remove left over hook.
9109 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
9110 Use dolist.
9111 (calendar-load-hook): Don't mess with it.
9112
9113 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
9114 Use derived-mode-p. Run the diff asynchronously.
9115
9116 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9117
9118 * obsolete/mouse-sel.el: Add an Obsolete-since header.
9119
9120 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
9121
9122 * misc.el: Display absolute path of loaded DLLs (bug#10424).
9123 (list-dynamic-libraries--loaded): New function.
9124 (list-dynamic-libraries--refresh): Use it.
9125
9126 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
9127
9128 * progmodes/python.el (python-fill-paragraph):
9129 Make python-fill-region in a multiline string work when font-lock is
9130 disabled (bug#7018).
9131
9132 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
9133
9134 * language/european.el (cp775): Add oem/legacy (en)coding on
9135 DOS/MS Windows for the Baltic languages. There are still plenty
9136 of texts written in this encoding/codepage (bug#6519).
9137
9138 2012-04-10 Glenn Morris <rgm@gnu.org>
9139
9140 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
9141 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
9142
9143 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
9144
9145 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
9146 next-line "n" and previous-line "p" in order to make recentf more
9147 consistent with ibuffer, dired or org-mode (bug#9387).
9148
9149 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9150
9151 * image.el (put-image): Return the overlay created instead of the
9152 optional input string (bug#7834). Note that this may break code
9153 that is (for some reason or other) depending on `put-image'
9154 returning the string.
9155
9156 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
9157
9158 * simple.el (zap-to-char): Allow zapping using input methods
9159 (bug#1580).
9160
9161 * textmodes/fill.el (fill-region): Leave point and mark where they
9162 were before filling (bug#5399).
9163
9164 2012-04-09 Glenn Morris <rgm@gnu.org>
9165
9166 * version.el (emacs-bzr-get-version):
9167 Handle lightweight checkouts of local branches.
9168
9169 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
9170
9171 * international/characters.el: Recover lost case pairs. (Bug#11209)
9172
9173 2012-04-09 Chong Yidong <cyd@gnu.org>
9174
9175 * custom.el (custom-variable-p): Return nil for non-symbol
9176 arguments instead of signaling an error.
9177 (user-variable-p): Obsolete alias for custom-variable-p.
9178
9179 * apropos.el (apropos-variable):
9180 * files-x.el (read-file-local-variable):
9181 * simple.el (set-variable):
9182 * woman.el (woman-mini-help):
9183 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
9184
9185 2012-04-09 Glenn Morris <rgm@gnu.org>
9186
9187 * startup.el (normal-top-level): Don't look for leim-list.el
9188 in places where it will not be found. (Bug#910)
9189
9190 * international/mule-cmds.el (set-default-coding-systems):
9191 * files.el (normal-mode):
9192 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
9193 This function was removed with ucs-tables.el in 2008.
9194
9195 2012-04-08 Eli Zaretskii <eliz@gnu.org>
9196
9197 * textmodes/ispell.el (ispell-check-version): For hunspell, set
9198 ispell-encoding8-command to "-i", without a trailing space.
9199 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
9200 separate command-line arguments, to specify the encoding, since
9201 that's how hunspell expects it.
9202
9203 2012-04-08 Glenn Morris <rgm@gnu.org>
9204
9205 * loadup.el: Load bindings before cus-start.
9206 This reduces somewhat the number of "rogue" settings in emacs -Q.
9207
9208 2012-04-07 Glenn Morris <rgm@gnu.org>
9209
9210 * version.el (emacs-bzr-get-version): New function.
9211 (emacs-bzr-version): New variable.
9212 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
9213 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
9214
9215 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9216
9217 * international/uni-bidi.el, international/uni-category.el:
9218 * international/uni-combining.el, international/uni-decimal.el:
9219 * international/uni-decomposition.el, international/uni-digit.el:
9220 * international/uni-lowercase.el, international/uni-mirrored.el:
9221 * international/uni-name.el, international/uni-numeric.el:
9222 * international/uni-titlecase.el, international/uni-uppercase.el:
9223 Update for Unicode 6.1.
9224
9225 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9226
9227 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
9228
9229 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
9230
9231 * window.el (shrink-window): Mention the `window-min-height'
9232 variable in the doc string.
9233
9234 2012-04-05 Bastien Guerry <bzg@altern.org>
9235
9236 * color.el (color-lighten-name): Fix typo.
9237
9238 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9239
9240 * server.el (server--on-display-p): New function.
9241 (server--on-display-p): Use it.
9242
9243 2012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
9244
9245 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
9246 (bug#11145).
9247
9248 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9249
9250 * comint.el (comint--common-quoted-suffix): Check string boundary
9251 before comparing (bug#11158).
9252 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
9253
9254 2012-04-04 Chong Yidong <cyd@gnu.org>
9255
9256 * minibuffer.el (completion-extra-properties): Doc fix.
9257
9258 * subr.el (delayed-warnings-hook): Doc fix.
9259
9260 2012-04-04 Daiki Ueno <ueno@unixuser.org>
9261
9262 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
9263 selection (Bug#11159).
9264 (epa-insert-keys): Inform that the default public key will be
9265 exported if no key is selected.
9266
9267 2012-04-04 Richard Stallman <rms@gnu.org>
9268
9269 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
9270
9271 2012-04-03 Chong Yidong <cyd@gnu.org>
9272
9273 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
9274 mail-insert-file, not its obsolete alias mail-attach-file.
9275
9276 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
9277
9278 * notifications.el (notifications-notify): Fix docstring.
9279
9280 2012-04-02 Glenn Morris <rgm@gnu.org>
9281
9282 * emacs-lisp/authors.el (authors-aliases): Another addition.
9283
9284 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
9285
9286 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
9287 `tramp-compat-call-process' instead of `tramp-local-call-process'.
9288 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
9289
9290 2012-04-01 Chong Yidong <cyd@gnu.org>
9291
9292 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
9293 Handle root directory properly.
9294 (copy-directory): Caller changed.
9295
9296 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9297 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
9298
9299 2012-03-31 Glenn Morris <rgm@gnu.org>
9300
9301 * term/xterm.el (xterm-extra-capabilities): Doc fix.
9302
9303 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
9304
9305 * calendar/calendar.el (calendar-window-list)
9306 (calendar-hide-window): Restore. (Bug#11140)
9307 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
9308
9309 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
9310
9311 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9312
9313 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9314 Check if file is a symlink (Bug#10489).
9315
9316 * files.el (copy-directory): Likewise.
9317
9318 2012-03-30 Chong Yidong <cyd@gnu.org>
9319
9320 * image.el (imagemagick-types-inhibit)
9321 (imagemagick-register-types): Doc fix.
9322
9323 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9324
9325 * textmodes/ispell.el (ispell-get-extended-character-mode):
9326 Disable extended-char-mode for hunspell. hunspell does not support it
9327 and treats ~word as ordinary words in pipe mode.
9328
9329 2012-03-30 Glenn Morris <rgm@gnu.org>
9330
9331 * tutorial.el (help-with-tutorial): Ensure local variables don't
9332 happen to make the buffer read-only. (Bug#11127)
9333
9334 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
9335
9336 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
9337 (perl-calculate-indent): Return `noindent' in strings.
9338
9339 2012-03-28 Sam Steingold <sds@gnu.org>
9340
9341 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
9342 instead of the broken adhockery which does not prevent calendar
9343 buffers from being displayed at random after exit.
9344 (calendar-window-list, calendar-hide-window): Remove the broken
9345 adhockery.
9346
9347 2012-03-28 Glenn Morris <rgm@gnu.org>
9348
9349 * replace.el (query-replace-map): Doc fix.
9350
9351 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
9352
9353 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
9354 contents. (Bug#11109)
9355
9356 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
9357
9358 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
9359 (bug#11077).
9360 (avl-tree--check, avl-tree--check-node): New funs.
9361
9362 2012-03-27 Martin Rudalics <rudalics@gmx.at>
9363
9364 * window.el (switch-to-visible-buffer): New option.
9365 (switch-to-prev-buffer, switch-to-next-buffer):
9366 Observe switch-to-visible-buffer. Make sure that checking for a window
9367 showing a buffer already is done on the same frame.
9368
9369 2012-03-27 Glenn Morris <rgm@gnu.org>
9370
9371 * startup.el (mail-host-address): Doc fix.
9372
9373 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9374
9375 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
9376 than 197 variables.
9377
9378 2012-03-26 Ami Fischman <ami@fischman.org>
9379
9380 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
9381
9382 2012-03-26 Glenn Morris <rgm@gnu.org>
9383
9384 * files.el (save-buffers-kill-emacs): Doc fix.
9385
9386 * startup.el (normal-top-level, command-line, command-line-1):
9387 Give them doc strings.
9388
9389 2012-03-25 Eli Zaretskii <eliz@gnu.org>
9390
9391 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
9392 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
9393
9394 2012-03-25 Chong Yidong <cyd@gnu.org>
9395
9396 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
9397 theme if it was previously enabled before (Bug#11031).
9398
9399 * cus-theme.el (custom-theme-write-faces): Retrieve current face
9400 spec with custom-face-get-current-spec if its :shown-value is not
9401 determined yet (Bug#9337).
9402 (customize-create-theme, custom-theme-revert): Doc fixes.
9403
9404 * button.el (button-at): Minor addition to docstring.
9405
9406 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
9407
9408 * vc/vc.el (vc-merge): Fix a prompt.
9409
9410 2012-03-24 Chong Yidong <cyd@gnu.org>
9411
9412 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
9413 point (Bug#9623).
9414
9415 * button.el (button-at): Minor addition to docstring.
9416
9417 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
9418
9419 * newcomment.el (comment-choose-indent): No space after BOL.
9420
9421 2012-03-22 Sam Steingold <sds@gnu.org>
9422
9423 * window.el (switch-to-prev-buffer): Revert last patch because the
9424 bug turned out to be an advertised feature (Elisp manual 28.14).
9425
9426 2012-03-22 Glenn Morris <rgm@gnu.org>
9427
9428 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
9429 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
9430
9431 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
9432
9433 * net/network-stream.el (network-stream-open-starttls): Make error
9434 message under Windows be less misleading.
9435
9436 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
9437
9438 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
9439 understands (bug#9942).
9440
9441 2012-03-22 Chong Yidong <cyd@gnu.org>
9442
9443 * simple.el (end-of-visible-line): Handle return value of
9444 next-single-property-change properly (Bug#9371).
9445
9446 2012-03-22 Kenichi Handa <handa@m17n.org>
9447
9448 * international/quail.el (quail-insert-kbd-layout): Fix previous
9449 change. To avoid unwanted bidi reordering, use
9450 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
9451
9452 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
9453
9454 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
9455 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
9456 (ruby-beginning-of-indent): Be more careful with the difference
9457 between word-boundary and symbol boundary.
9458 (ruby-mode-syntax-table): Make : a symbol constituent.
9459
9460 2012-03-21 Andreas Politz <politza@fh-trier.de>
9461
9462 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
9463
9464 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
9465
9466 * progmodes/etags.el (tags-completion-at-point-function):
9467 Improve last fix.
9468
9469 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
9470
9471 2012-03-21 Sam Steingold <sds@gnu.org>
9472
9473 * progmodes/etags.el (tags-completion-at-point-function):
9474 Avoid the error when point is inside the pattern.
9475
9476 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
9477
9478 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
9479 line (Bug#10855).
9480
9481 2012-03-21 Drew Adams <drew.adams@oracle.com>
9482
9483 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
9484
9485 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
9486
9487 * ido.el (ido-set-current-directory, ido-read-internal)
9488 (ido-choose-completion-string, ido-completion-help): Handle nil
9489 value of ido-completion-buffer (Bug#11008).
9490
9491 2012-03-21 Sam Steingold <sds@gnu.org>
9492
9493 * window.el (switch-to-prev-buffer): Do not switch to a visible
9494 window previous buffer, just like with the frame previous buffers.
9495
9496 2012-03-21 Chong Yidong <cyd@gnu.org>
9497
9498 * faces.el (make-face, make-empty-face, copy-face):
9499 * face-remap.el (face-remap-add-relative, face-remap-set-base):
9500 Doc fixes.
9501
9502 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
9503
9504 * wid-edit.el (widget-complete-field): Remove (bug#11051).
9505 (widget-complete): Remove broken use of it.
9506
9507 2012-03-20 Chong Yidong <cyd@gnu.org>
9508
9509 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
9510 Use string-width and truncate-string-width to handle arbitrary
9511 characters.
9512
9513 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
9514
9515 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
9516 to draw rectangles, not squares. (Regression introduced by revno
9517 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
9518
9519 2012-03-18 Chong Yidong <cyd@gnu.org>
9520
9521 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
9522 it is not yet defined (for temacs).
9523
9524 2012-03-18 Leo Liu <sdl.web@gmail.com>
9525
9526 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
9527 prefix.
9528
9529 2012-03-17 Eli Zaretskii <eliz@gnu.org>
9530
9531 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
9532 (ispell-choices-win-default-height, ispell-silently-savep)
9533 (ispell-dictionary-alist, ispell-encoding8-command)
9534 (ispell-check-version, ispell-aspell-find-dictionary)
9535 (ispell-valid-dictionary-list, ispell-words-keyword)
9536 (ispell-get-word, ispell-internal-change-dictionary)
9537 (ispell-region, ispell-skip-region-list)
9538 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
9539 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
9540 (ispell-message-text-end, ispell-message)
9541 (ispell-buffer-local-parsing): Doc fix.
9542
9543 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
9544
9545 * htmlfontify.el: Add support for code block fontification for ODT
9546 export (Bug #9914).
9547 (hfy-optimisations): Define new option
9548 `body-text-only'
9549 (hfy-fontify-buffer): Honor above setting.
9550 (hfy-begin-span, hfy-end-span): New routines factored out form
9551 `hfy-fontify-buffer'.
9552 (hfy-begin-span-handler, hfy-end-span-handler): New variables
9553 that permit insertion of custom tags.
9554 (hfy-fontify-buffer): Use above handlers.
9555 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
9556 (hfy-face-to-css): Re-defined to be a variable.
9557 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
9558 over multiple runs. This is made possible by having the caller let
9559 bind a special variable `hfy-user-sheet-assoc'.
9560 (htmlfontify-string): New defun.
9561 (hfy-compile-face-map): Make sure that the last char in the
9562 buffer is correctly fontified.
9563 (hfy-face-resolve-face): Whitespace only change.
9564
9565 2012-03-17 Eli Zaretskii <eliz@gnu.org>
9566
9567 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
9568 message more clear.
9569
9570 2012-03-16 Leo Liu <sdl.web@gmail.com>
9571
9572 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
9573
9574 2012-03-16 Alan Mackenzie <acm@muc.de>
9575
9576 Further optimise the handling of large macros.
9577
9578 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
9579 limit to a call of `c-literal-limits'.
9580 (c-determine-+ve-limit): New function.
9581 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
9582 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
9583 In CASE 5B, restrict a search limit to 500.
9584 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
9585
9586 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
9587 Restrict macro bounds to +-500 from after-change's BEG END.
9588
9589 2012-03-16 Leo Liu <sdl.web@gmail.com>
9590
9591 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
9592
9593 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
9594
9595 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
9596 `special-mode' setting of `buffer-read-only'. (Bug#11010)
9597
9598 2012-03-16 Glenn Morris <rgm@gnu.org>
9599
9600 * view.el (view-buffer, view-buffer-other-window)
9601 (view-buffer-other-frame): Doc fixes re special mode-class.
9602
9603 * subr.el (eval-after-load): If named feature is provided not from
9604 a file, run after-load forms. (Bug#10946)
9605
9606 * calendar/calendar.el (calendar-insert-at-column):
9607 Handle non-unit-width characters a bit better. (Bug#10978)
9608
9609 2012-03-15 Chong Yidong <cyd@gnu.org>
9610
9611 * emacs-lisp/ring.el (ring-extend): New function.
9612 (ring-insert+extend): Extend the ring correctly (Bug#11019).
9613
9614 * comint.el (comint-read-input-ring)
9615 (comint-add-to-input-history): Grow comint-input-ring lazily.
9616
9617 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9618
9619 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
9620 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
9621
9622 * imenu.el: Fix multiple inheritance breakage (bug#9199).
9623 (imenu-add-to-menubar): Don't add a redundant index.
9624 (imenu-update-menubar): Handle a dynamically composed keymap.
9625
9626 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
9627
9628 * mail/sendmail.el (mail-encode-header):
9629 Bind rfc2047-encode-encoded-words to nil.
9630
9631 2012-03-13 Glenn Morris <rgm@gnu.org>
9632
9633 * calendar/calendar.el (calendar-string-spread):
9634 Handle non-unit-width characters a bit better. (Bug#10978)
9635
9636 2012-03-13 Leo Liu <sdl.web@gmail.com>
9637
9638 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
9639 directory and file as argument (Bug#10822).
9640
9641 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
9642
9643 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
9644 For dynamically generated code, follow $PC.
9645 (gdb-disassembly-handler-custom): Handle no function name case.
9646
9647 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
9648
9649 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
9650 * emulation/ws-mode.el (ws-query-replace):
9651 * sort.el (sort-regexp-fields):
9652 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
9653
9654 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9655
9656 * dabbrev.el: Fix cycle completion order (bug#10963).
9657 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
9658 (dabbrev-completion): Don't use an obarray; provide
9659 a cycle-sort-function.
9660
9661 2012-03-12 Leo Liu <sdl.web@gmail.com>
9662
9663 * simple.el (kill-new): Use equal-including-properties for comparison.
9664 (kill-do-not-save-duplicates): Doc fix.
9665
9666 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9667
9668 * dabbrev.el: Fix cycle completion (bug#10963).
9669 Use lexical binding and wrap to 80 columns.
9670 (dabbrev-completion): Delay computing the list of completions.
9671
9672 2012-03-12 Kenichi Handa <handa@m17n.org>
9673
9674 * international/quail.el (quail-insert-kbd-layout): Surround each
9675 row by LRO and PDF instead of inserting many LRMs. Pad the left
9676 and right of each non-spacing marks. Insert invisible space
9677 between lower and upper characters to prevent composition.
9678
9679 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9680
9681 * minibuffer.el (minibuffer-complete): Don't get confused when the
9682 function is run twice via different commands (bug#10958).
9683 (complete-with-action): Fix docstring.
9684
9685 2012-03-12 Chong Yidong <cyd@gnu.org>
9686
9687 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
9688 (nxml-completion-at-point-function): New function.
9689 (nxml-mode): Use it.
9690 (nxml-bind-meta-tab-to-complete-flag): Default to t.
9691
9692 * emacs-lisp/package.el (package-unpack, package-unpack-single):
9693 Load generated autoloads file before byte compiling (Bug#10970).
9694 (package--make-autoloads-and-compile): New helper fun.
9695
9696 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
9697
9698 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
9699
9700 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
9701
9702 * autorevert.el (auto-revert-handler): Ensure, that
9703 file-readable-p is applied only for local files or in
9704 auto-revert-tail-mode.
9705
9706 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
9707
9708 * server.el (server-eval-at): Handle non-tcp connections.
9709 Decode result string.
9710
9711 * server.el (server-msg-size): New constant.
9712 (server-reply-print): New function.
9713 (server-eval-and-print): Use it.
9714 (server-eval-at): Use server-quote-arg and server-unquote-arg.
9715 Handle -print-nonl.
9716
9717 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
9718
9719 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
9720 (Bug#10987).
9721
9722 2012-03-11 Chong Yidong <cyd@gnu.org>
9723
9724 * simple.el (goto-line): Doc fix (Bug#9938).
9725
9726 * subr.el (save-window-excursion): Doc fix (Bug#9979).
9727
9728 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
9729 when finished (Bug#10963).
9730
9731 2012-03-11 Martin Rudalics <rudalics@gmx.at>
9732
9733 * window.el (split-window-below): Fix bug in case where
9734 split-window-keep-point is nil (Bug#10971).
9735
9736 2012-03-11 Juri Linkov <juri@jurta.org>
9737
9738 * replace.el (replace-highlight): Set isearch-word to nil
9739 unconditionally. (Bug#10887)
9740
9741 2012-03-10 Eli Zaretskii <eliz@gnu.org>
9742
9743 * net/mairix.el (mairix-replace-invalid-chars): Rename from
9744 mairix-replace-illegal-chars; all callers changed. Don't remove
9745 ^, ~, and = characters: they are meaningful in mairix search specs.
9746 (mairix-widget-create-query): Add usage information about mairix
9747 search forms: negating words, searching for substrings, etc.
9748
9749 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
9750
9751 * international/fontset.el (font-encoding-alist): Add an entry for
9752 ksx1001 (Bug#5667).
9753
9754 2012-03-10 Richard Stallman <rms@gnu.org>
9755
9756 * mail/sendmail.el (mail-encode-header):
9757 Set rfc2047-encode-encoded-words.
9758
9759 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
9760
9761 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
9762 view buffer means not swapped.
9763 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
9764 (rmail-write-region-annotate): Error if real text has disappeared.
9765
9766 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
9767
9768 2012-03-10 Chong Yidong <cyd@gnu.org>
9769
9770 * emulation/cua-rect.el (cua--init-rectangles):
9771 * emulation/cua-base.el (cua--init-keymaps):
9772 Add delete-forward-char to remappings (Bug#9666).
9773
9774 2012-03-10 Martin Rudalics <rudalics@gmx.at>
9775
9776 * speedbar.el (speedbar-unhighlight-one-tag-line):
9777 Avoid unhighlighting due to frame switching (Bug#10275).
9778
9779 2012-03-10 Chong Yidong <cyd@gnu.org>
9780
9781 * minibuffer.el (completion-in-region, completion-help-at-point):
9782 Give the completion field overlay a high priority (Bug#6830).
9783
9784 * dired.el (dired-goto-file): Recognize absolute file name
9785 listings (Bug#7126).
9786 (dired-goto-file-1): New helper function.
9787 (dired-toggle-read-only): Inhibit warnings.
9788
9789 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
9790
9791 * net/dbus.el (dbus-property-handler): Return empty array if
9792 there are no properties.
9793
9794 2012-03-09 Leo Liu <sdl.web@gmail.com>
9795
9796 * savehist.el (savehist-printable): Stricter check for string
9797 value (Bug#10937).
9798
9799 2012-03-09 Eli Zaretskii <eliz@gnu.org>
9800
9801 * mail/smtpmail.el (smtpmail-send-it):
9802 Bind coding-system-for-write to *-unix, so that FCC files are kept in
9803 valid mbox format.
9804
9805 2012-03-09 Glenn Morris <rgm@gnu.org>
9806
9807 * files.el (dir-locals-find-file):
9808 Don't check result is regular, readable.
9809 (dir-locals-read-from-file): Demote errors.
9810
9811 2012-03-08 Eli Zaretskii <eliz@gnu.org>
9812
9813 * international/quail.el (quail-insert-kbd-layout):
9814 Insert invisible LRM characters before each character in a keyboard
9815 layout cell, to prevent their reordering by bidi display engine.
9816 For details, see the discussion in
9817 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
9818
9819 2012-03-08 Alan Mackenzie <acm@muc.de>
9820
9821 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
9822 the starting position; make it extend the marked region when
9823 invoked repeatedly - all under appropriate circumstances.
9824 Fixes bugs #5525, #10906.
9825
9826 2012-03-08 Glenn Morris <rgm@gnu.org>
9827
9828 * files.el (locate-dominating-file, dir-locals-find-file):
9829 Undo 2012-03-06 change.
9830
9831 2012-03-07 Eli Zaretskii <eliz@gnu.org>
9832
9833 * international/quail.el (quail-help):
9834 Force bidi-paragraph-direction be left-to-right. See discussion in
9835 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
9836 for the reason.
9837
9838 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
9839
9840 Avoid superfluous registering of signals. (Bug#10807)
9841
9842 * notifications.el (notifications-on-action-object)
9843 (notifications-on-close-object): New defvars.
9844 (notifications-on-action-signal, notifications-on-closed-signal):
9845 Unregister the signal if not needed any longer.
9846 (notifications-notify): Register `notifications-action-signal' or
9847 `notifications-closed-signal', if :on-action or :on-close has been
9848 passed as argument.
9849
9850 2012-03-07 Chong Yidong <cyd@gnu.org>
9851
9852 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
9853 non-X platforms.
9854
9855 2012-03-06 Glenn Morris <rgm@gnu.org>
9856
9857 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
9858 (x-disown-selection-internal, x-get-selection-internal):
9859 Doc fix (add arglist signatures). (Bug#10783)
9860
9861 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
9862
9863 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
9864 Handle breakpoints with no "type".
9865
9866 2012-03-06 Glenn Morris <rgm@gnu.org>
9867
9868 * files.el (locate-dominating-file): Add optional predicate argument.
9869 (dir-locals-find-file): Make use of above change.
9870
9871 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
9872
9873 * info.el (Info-insert-dir): Also try "dir.gz".
9874
9875 2012-03-06 Glenn Morris <rgm@gnu.org>
9876
9877 * files.el (dir-locals-find-file):
9878 Ignore non-readable or non-regular files. (Bug#10928)
9879
9880 * files.el (locate-dominating-file): Doc fix.
9881
9882 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
9883
9884 * calendar/calendar.el (calendar-set-mode-line):
9885 `getenv' returns a string. (Bug#10951)
9886
9887 2012-03-05 Leo Liu <sdl.web@gmail.com>
9888
9889 * simple.el (backward-delete-char-untabify): Constrain point to
9890 field (Bug#10939).
9891
9892 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
9893
9894 2012-03-05 Chong Yidong <cyd@gnu.org>
9895
9896 * simple.el (count-words): If called from Lisp, return the word
9897 count, for symmetry with `count-lines'. Arglist changed.
9898 (count-words--message): Args changed. Consolidate counting code
9899 from count-words and count-words-region.
9900 (count-words-region): Caller changed.
9901 (count-lines-region): Make it an obsolete alias.
9902
9903 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
9904
9905 * saveplace.el (save-place-to-alist)
9906 (save-place-ignore-files-regexp): Allow value nil to disable this
9907 feature.
9908
9909 2012-03-04 Chong Yidong <cyd@gnu.org>
9910
9911 * faces.el (face-spec-reset-face): For the default face, reset the
9912 attributes to default values (Bug#10748).
9913
9914 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
9915
9916 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
9917 previous patch: Check `message-send-mail-function', and not the
9918 default function (bug#10897).
9919
9920 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
9921
9922 * notifications.el (notifications-on-action-signal)
9923 (notifications-on-closed-signal): Check for unique service name of
9924 incoming event. Fix error in removing entry.
9925 (top): Register for signals with wildcard service name.
9926 (notifications-notify): Use daemon unique service name for map entries.
9927
9928 2012-03-04 Chong Yidong <cyd@gnu.org>
9929
9930 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
9931
9932 2012-03-04 Glenn Morris <rgm@gnu.org>
9933
9934 * abbrev.el (copy-abbrev-table, abbrev-table-p)
9935 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
9936 (expand-abbrev, define-abbrev-table): Doc fixes.
9937
9938 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
9939
9940 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
9941 `message-default-send-mail-function' and not `send-mail-function'
9942 when doing the prompting for `sendmail-query-once' before sending
9943 in Message buffers (bug#10897).
9944
9945 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
9946 This is inconsistent with all the other stream functions, which leave
9947 the setting up to the higher levels (if so wanted) (bug#10931).
9948
9949 2012-03-02 Alan Mackenzie <acm@muc.de>
9950
9951 Depessimize the handling of very large macros.
9952
9953 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
9954 (c-macro-cache-syntactic): New variables to implement a one
9955 element macro cache.
9956 (c-invalidate-macro-cache): New function.
9957 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
9958 Adapt to use the new cache.
9959 (c-state-safe-place): Use better the cache of safe positions.
9960 (c-state-semi-nonlit-pos-cache)
9961 (c-state-semi-nonlit-pos-cache-limit):
9962 New variables for...
9963 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
9964 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
9965 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
9966 Use c-state-semi-safe-place.
9967
9968 * progmodes/cc-langs.el (c-get-state-before-change-functions):
9969 Add c-invalidate-macro-cache to the C, C++, Obj entries.
9970
9971 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
9972
9973 * jka-compr.el (jka-compr-call-process):
9974 Apply `file-accessible-directory-p' only when the default directory is
9975 not remote.
9976
9977 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
9978
9979 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
9980 access of FILE2, if FILE1 does not exist.
9981
9982 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
9983 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
9984
9985 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
9986 Add "PAGER=" to `process-environment'.
9987
9988 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
9989
9990 * progmodes/sql.el: Bug fix
9991 (sql-get-login-ext): Save login values in globals.
9992 (sql-get-login): Use new version of `sql-get-login-ext'.
9993 (sql-interactive-mode): Set global `sql-connection' to nil.
9994 (sql-connect): Set global values for connection.
9995 (sql-product-interactive): Save global values as buffer local.
9996
9997 2012-02-29 Leo Liu <sdl.web@gmail.com>
9998
9999 * abbrev.el (define-abbrevs): Reset sys to nil.
10000
10001 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10002
10003 * files.el (file-equal-p): Rename from `files-equal-p'.
10004 Return nil when one or both files don't exist.
10005 (file-subdir-of-p): Now only top directory must exists,
10006 return nil if it doesn't.
10007 (copy-directory): No need to test with `file-subdir-of-p' after
10008 creating dir.
10009 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
10010 to `file-equal-p'.
10011
10012 2012-02-28 Glenn Morris <rgm@gnu.org>
10013
10014 * shell.el (shell-mode):
10015 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
10016 * play/landmark.el (landmark-font-lock-face-O):
10017 * play/handwrite.el (handwrite):
10018 * play/gomoku.el (gomoku-O):
10019 * net/browse-url.el (browse-url-browser-display):
10020 * international/mule.el (define-charset):
10021 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
10022 * filesets.el (filesets-find-file-delay):
10023 * eshell/em-xtra.el (eshell-xtra):
10024 * eshell/em-unix.el (eshell-grep):
10025 * emulation/viper.el (viper-mode):
10026 * emacs-lisp/regexp-opt.el (regexp-opt-group):
10027 * emacs-lisp/easymenu.el (easy-menu-define):
10028 * calendar/timeclock.el (timeclock-use-display-time):
10029 * bs.el (bs-mode):
10030 * bookmark.el (bookmark-save-flag):
10031 Doc fix (standardize possessive apostrophe usage).
10032
10033 2012-02-27 Chong Yidong <cyd@gnu.org>
10034
10035 * emulation/viper-cmd.el (viper-intercept-ESC-key):
10036 Fix key-binding lookup for ESC key (Bug#9146).
10037
10038 * font-lock.el (font-lock-specified-p): Rename from
10039 font-lock-spec-present. Callers changed.
10040
10041 2012-02-27 Daniel Hackney <dan@haxney.org>
10042
10043 * emacs-lisp/package.el (package-compute-transaction):
10044 Handle holding a package version to t in package-load-list.
10045
10046 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
10047
10048 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
10049 (tramp-get-inode, tramp-get-device): Use cached values.
10050
10051 2012-02-26 Alan Mackenzie <acm@muc.de>
10052
10053 Check there is a font-lock specification before doing initial
10054 fontification.
10055
10056 * font-core.el (font-lock-mode): Move the conditional from
10057 :after-hook to font-lock-initial-fontify.
10058 (font-lock-default-function): Move the check for a specification
10059 to font-lock-spec-present.
10060
10061 * font-lock.el (font-lock-initial-fontify): Call ...
10062 (font-lock-spec-present): New function.
10063
10064 2012-02-26 Jim Blandy <jimb@red-bean.com>
10065
10066 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
10067 (gdb-send): Apply it to the operand of the '-interpreter-exec
10068 console' command, so that we can pass arguments with (say) quotes
10069 in them. Store exact string sent in gdb-debug-log (Bug#10765).
10070
10071 2012-02-26 Chong Yidong <cyd@gnu.org>
10072
10073 * help-fns.el (describe-function-1): Clarify description of
10074 remapping (Bug#10844).
10075
10076 * files.el (files-equal-p): Doc fix.
10077 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
10078 and quit the loop once a mismatch is found.
10079
10080 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
10081
10082 * bs.el (bs--show-with-configuration): Don't throw an error
10083 if the window cannot be split; otherwise, subsequent calls to
10084 bs-show fail, restoring a stale window config. (Bug#10882)
10085
10086 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
10087
10088 * term/ns-win.el (global-map): Bind ns-drag-file to
10089 ns-find-file (Bug#5855, Bug#10050).
10090
10091 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
10092
10093 * calendar/parse-time.el (parse-time-string): Allow extractor to
10094 return nil.
10095
10096 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
10097
10098 * net/tramp.el (tramp-file-name-for-operation):
10099 Add `files-equal-p' and `file-subdir-of-p'.
10100
10101 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
10102 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
10103 Add COPY-CONTENTS argument.
10104
10105 2012-02-25 Chong Yidong <cyd@gnu.org>
10106
10107 Add custom groups for VC backends, for consistency with vc-bzr.
10108
10109 * vc/vc-arch.el (vc-arch):
10110 * vc/vc-cvs.el (vc-cvs):
10111 * vc/vc-git.el (vc-git):
10112 * vc/vc-hg.el (vc-hg):
10113 * vc/vc-mtn.el (vc-mtn):
10114 * vc/vc-rcs.el (vc-rcs):
10115 * vc/vc-sccs.el (vc-sccs):
10116 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
10117 All relevant defcustoms reassigned.
10118
10119 2012-02-25 Chong Yidong <cyd@gnu.org>
10120
10121 * newcomment.el (comment-styles): Add autoload (Bug#10868).
10122
10123 * term/x-win.el (x-initialize-window-system): Reduce default for
10124 x-selection-timeout to 5 seconds (Bug#8869).
10125
10126 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10127
10128 * files.el (files-equal-p, file-subdir-of-p): New functions.
10129 (copy-directory): Error when trying to copy a directory on itself.
10130 Add missing copy-contents arg to tramp handler.
10131 * dired-aux.el (dired-copy-file-recursive): Same.
10132 (dired-create-files): Modify destination when source is equal to
10133 dest when copying files.
10134 Return also when dest is a subdir of source. (Bug#10489)
10135
10136 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
10137
10138 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
10139 (Bug#10874)
10140
10141 2012-02-23 Alan Mackenzie <acm@muc.de>
10142
10143 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
10144 parameter "after-hook:" to allow the expansion to run code after
10145 the execution of the mode hooks.
10146
10147 * font-lock.el (font-lock-initial-fontify): New function extracted
10148 from font-lock-mode-internal.
10149
10150 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
10151 :after-hook.
10152
10153 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10154
10155 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
10156 (completion--cache-all-sorted-completions): New function.
10157 (completion-all-sorted-completions): Use it.
10158 (completion--do-completion, minibuffer-force-complete):
10159 Use it to re-instate the flush hook.
10160
10161 * icomplete.el (icomplete-completions): Replace last fix with a better
10162 one (bug#10850).
10163
10164 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
10165
10166 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
10167 when it might call us back infinitely (bug#10797).
10168
10169 2012-02-23 Glenn Morris <rgm@gnu.org>
10170
10171 * minibuffer.el (completion-category-overrides): Doc fix.
10172
10173 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10174
10175 * minibuffer.el (completion-table-with-context): Fix inf-loop.
10176 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
10177
10178 2012-02-23 Glenn Morris <rgm@gnu.org>
10179
10180 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
10181 (authors-obsolete-files-regexps, authors-ignored-files)
10182 (authors-ambiguous-files, authors-renamed-files-alist):
10183 Add more entries.
10184
10185 2012-02-23 Juri Linkov <juri@jurta.org>
10186
10187 * isearch.el (isearch-occur): Sync interactive spec with occur's
10188 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
10189
10190 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
10191
10192 2012-02-22 Juri Linkov <juri@jurta.org>
10193
10194 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
10195 (ucs-insert): Doc fix. Check for hex digits in the string.
10196 Don't display `nil' in the error message. (Bug#10857)
10197
10198 2012-02-22 Alan Mackenzie <acm@muc.de>
10199
10200 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
10201
10202 2012-02-22 Glenn Morris <rgm@gnu.org>
10203
10204 * ffap.el (ffap-c-path):
10205 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
10206
10207 2012-02-22 Chong Yidong <cyd@gnu.org>
10208
10209 * custom.el (load-theme): Doc fix.
10210
10211 2012-02-22 Glenn Morris <rgm@gnu.org>
10212
10213 * dired-x.el (dired-guess-shell-alist-default):
10214 Remove escape sequences from nroff output. (Bug#172)
10215
10216 2012-02-21 Glenn Morris <rgm@gnu.org>
10217
10218 * vc/emerge.el (emerge-defvar-local):
10219 Set `permanent-local' property rather than unused `preserved'.
10220
10221 * textmodes/picture.el (picture-delete-char): New alias.
10222 (picture-mode-map): Use it. (Bug#10860)
10223 (picture-mode): Doc fix.
10224
10225 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
10226
10227 * newcomment.el (uncomment-region-default): Remove unused binding.
10228
10229 2012-02-21 Glenn Morris <rgm@gnu.org>
10230
10231 * textmodes/picture.el (picture-motion, picture-motion-reverse)
10232 (picture-self-insert, picture-tab-chars): Doc fix.
10233 (picture-mode-map): Fix C-a, C-e.
10234
10235 2012-02-20 Glenn Morris <rgm@gnu.org>
10236
10237 * emacs-lisp/authors.el (authors-aliases): Add another entry.
10238
10239 2012-02-20 Leo Liu <sdl.web@gmail.com>
10240
10241 * icomplete.el (icomplete-completions): Check FROM arg before
10242 passing to substring (Bug#10850).
10243
10244 2012-02-19 Chong Yidong <cyd@gnu.org>
10245
10246 * comint.el: Require ansi-color.
10247 (comint-output-filter-functions): Add ansi-color-process-output.
10248
10249 * ansi-color.el: Don't set comint-output-filter-functions; it is
10250 now in the initial value defined in comint.el.
10251 (ansi-color-apply-face-function): New variable.
10252 (ansi-color-apply-on-region): Use it.
10253 (ansi-color-apply-overlay-face): New function.
10254
10255 * shell.el (shell): No need to require ansi-color.
10256 (shell-mode): Use ansi-color-apply-face-function to highlight
10257 color escapes using font-lock-face property (Bug#10835).
10258
10259 2012-02-19 Chong Yidong <cyd@gnu.org>
10260
10261 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
10262 mode-line formats (Bug#10839).
10263
10264 2012-02-18 Glenn Morris <rgm@gnu.org>
10265
10266 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
10267
10268 * mail/undigest.el (unforward-rmail-message): Doc fix.
10269
10270 * saveplace.el (save-place-ignore-files-regexp): Add :version.
10271
10272 2012-02-18 Eli Zaretskii <eliz@gnu.org>
10273
10274 * international/characters.el (script-list): Sync with the latest
10275 Unicode Character Database.
10276
10277 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
10278
10279 * international/titdic-cnv.el: Remove duplicate coding tag.
10280 * language/cham.el: Likewise.
10281 * language/tai-viet.el: Likewise.
10282
10283 2012-02-18 Glenn Morris <rgm@gnu.org>
10284
10285 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
10286 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
10287 (calendar-bahai-all-holidays-flag, calendar-other-dates):
10288 * calendar/diary-lib.el (diary-abbreviated-year-flag):
10289 * calendar/holidays.el (holiday-bahai-holidays)
10290 (calendar-holidays, list-holidays):
10291 Use utf-8 Bahá'í in doc-strings, menus, etc.
10292
10293 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
10294
10295 * saveplace.el (save-place-ignore-files-regexp): New variable
10296 allowing for excluding files from saving their location of point.
10297 The default value matches the temporary commit message editing
10298 files from Git, SVN, Bazaar, and Mercurial.
10299 (save-place-to-alist): Use it.
10300
10301 2012-02-17 Lawrence Mitchell <wence@gmx.li>
10302 Stefan Monnier <monnier@iro.umontreal.ca>
10303
10304 * newcomment.el (uncomment-region-default): Don't leave extra space
10305 when an arg is provided (bug#8150).
10306
10307 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
10308
10309 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
10310
10311 2012-02-17 Glenn Morris <rgm@gnu.org>
10312
10313 * net/socks.el: Require network-stream. (Bug#10599)
10314
10315 2012-02-17 Kenichi Handa <handa@m17n.org>
10316
10317 * international/charprop.el:
10318 * international/uni-name.el:
10319 * international/uni-old-name.el:
10320 * international/uni-comment.el: Regenerate.
10321
10322 2012-02-16 Glenn Morris <rgm@gnu.org>
10323
10324 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
10325 Interactively in calendar buffer, give an error if not on a date.
10326
10327 2012-02-15 Glenn Morris <rgm@gnu.org>
10328
10329 * shell.el (shell-delimiter-argument-list):
10330 Revert 2011-02-17 change. (Bug#8027)
10331
10332 2012-02-15 Chong Yidong <cyd@gnu.org>
10333
10334 * minibuffer.el (completion-at-point-functions): Doc fix.
10335
10336 * custom.el (defcustom): Doc fix; note use of defvar.
10337
10338 2012-02-15 Glenn Morris <rgm@gnu.org>
10339
10340 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
10341 Doc fixes.
10342
10343 2012-02-14 Glenn Morris <rgm@gnu.org>
10344
10345 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
10346
10347 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
10348
10349 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
10350 way the ports list is computed.
10351 (smtpmail-query-smtp-server): Prompt the user for a port number if
10352 we can't connect to any of the standard ports (bug#10810).
10353
10354 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
10355
10356 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
10357
10358 2012-02-13 Glenn Morris <rgm@gnu.org>
10359
10360 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
10361
10362 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
10363
10364 * net/gnutls.el (gnutls-trustfiles): New variable.
10365 (gnutls-negotiate): Use it.
10366
10367 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
10368
10369 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
10370 does its stuff if Gnus is running.
10371
10372 2012-02-13 Alan Mackenzie <acm@muc.de>
10373
10374 Fix a loop in c-set-fl-decl-start.
10375
10376 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
10377 c-backward-syntactic-ws actually moves backwards.
10378
10379 2012-02-13 Leo Liu <sdl.web@gmail.com>
10380
10381 * net/rcirc.el (rcirc-markup-attributes): Move point to the
10382 beginning so that all \C-o chars are removed.
10383
10384 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
10385
10386 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
10387
10388 2012-02-12 Alan Mackenzie <acm@muc.de>
10389
10390 Fix infinite loop with long macros.
10391 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
10392
10393 2012-02-12 Chong Yidong <cyd@gnu.org>
10394
10395 * window.el (display-buffer): Doc fix (Bug#10785).
10396
10397 2012-02-12 Glenn Morris <rgm@gnu.org>
10398
10399 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10400 (x-disown-selection-internal, x-get-selection-internal):
10401 Sync docs with the xselect.c versions.
10402
10403 * allout-widgets.el: Add missing license notice.
10404
10405 2012-02-11 Glenn Morris <rgm@gnu.org>
10406
10407 * select.el (x-get-selection-internal, x-own-selection-internal)
10408 (x-disown-selection-internal):
10409 * x-dnd.el (x-get-selection-internal): Update declarations.
10410
10411 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
10412
10413 * window.el (window-sides-slots):
10414 * tool-bar.el (tool-bar-position):
10415 * term/xterm.el (xterm-extra-capabilities):
10416 * ses.el (ses-self-reference-early-detection):
10417 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
10418 (verilog-auto-wire-type)
10419 (verilog-auto-delete-trailing-whitespace)
10420 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
10421 (verilog-auto-tieoff-declaration):
10422 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
10423 (sql-oracle-statement-starters, sql-oracle-scan-on):
10424 * progmodes/prolog.el (prolog-align-comments-flag)
10425 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
10426 (prolog-left-indent-regexp, prolog-paren-indent-p)
10427 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
10428 (prolog-types, prolog-mode-specificators)
10429 (prolog-determinism-specificators, prolog-directives)
10430 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
10431 (prolog-electric-dot-flag)
10432 (prolog-electric-dot-full-predicate-template)
10433 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
10434 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
10435 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
10436 (prolog-program-switches, prolog-prompt-regexp)
10437 (prolog-debug-on-string, prolog-debug-off-string)
10438 (prolog-trace-on-string, prolog-trace-off-string)
10439 (prolog-zip-on-string, prolog-zip-off-string)
10440 (prolog-use-standard-consult-compile-method-flag)
10441 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
10442 (prolog-imenu-max-lines, prolog-info-predicate-index)
10443 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
10444 (prolog-char-quote-workaround):
10445 * progmodes/cc-vars.el (c-defun-tactic):
10446 * net/tramp.el (tramp-encoding-command-interactive)
10447 (tramp-local-end-of-line):
10448 * net/soap-client.el (soap-client):
10449 * net/netrc.el (netrc-file):
10450 * net/gnutls.el (gnutls):
10451 * minibuffer.el (completion-category-overrides)
10452 (completion-cycle-threshold)
10453 (completion-pcm-complete-word-inserts-delimiters):
10454 * man.el (Man-name-local-regexp):
10455 * mail/feedmail.el (feedmail-display-full-frame):
10456 * international/characters.el (glyphless-char-display-control):
10457 * eshell/em-ls.el (eshell-ls-date-format):
10458 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
10459 (lisp-lambda-list-keyword-parameter-indentation)
10460 (lisp-lambda-list-keyword-parameter-alignment):
10461 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
10462 * dired-x.el (dired-omit-verbose):
10463 * cus-theme.el (custom-theme-allow-multiple-selections):
10464 * calc/calc.el (calc-highlight-selections-with-faces)
10465 (calc-lu-field-reference, calc-lu-power-reference)
10466 (calc-note-threshold):
10467 * battery.el (battery-mode-line-limit):
10468 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
10469 (archive-7z-update):
10470 * allout.el (allout-prefixed-keybindings)
10471 (allout-unprefixed-keybindings)
10472 (allout-inhibit-auto-fill-on-headline)
10473 (allout-flattened-numbering-abbreviation):
10474 * allout-widgets.el (allout-widgets-auto-activation)
10475 (allout-widgets-icons-dark-subdir)
10476 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
10477 (allout-widgets-theme-dark-background)
10478 (allout-widgets-theme-light-background)
10479 (allout-widgets-item-image-properties-emacs)
10480 (allout-widgets-item-image-properties-xemacs)
10481 (allout-widgets-run-unit-tests-on-load)
10482 (allout-widgets-time-decoration-activity)
10483 (allout-widgets-hook-error-post-time)
10484 (allout-widgets-track-decoration):
10485 Add missing :version tags to new defcustoms and defgroups.
10486
10487 * progmodes/sql.el (sql-ansi-statement-starters)
10488 (sql-oracle-statement-starters): Add custom type.
10489
10490 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
10491 (prolog-system-version): Give it a type.
10492
10493 2012-02-11 Eli Zaretskii <eliz@gnu.org>
10494
10495 * term/pc-win.el (x-select-text, x-selection-owner-p)
10496 (x-own-selection-internal, x-disown-selection-internal)
10497 (x-get-selection-internal): Sync doc strings and argument lists
10498 with xselect.c, common-win.el and x-win.el. (Bug#10783)
10499
10500 2012-02-11 Leo Liu <sdl.web@gmail.com>
10501
10502 * progmodes/python.el (python-end-of-statement): Fix infinite
10503 loop. (Bug#10788)
10504
10505 2012-02-10 Glenn Morris <rgm@gnu.org>
10506
10507 * international/mule-cmds.el (unify-8859-on-encoding-mode)
10508 (unify-8859-on-decoding-mode): Properly mark as obsolete.
10509
10510 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
10511
10512 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
10513 about SMTP before checking the From header.
10514
10515 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
10516 into own function for reuse by emacsbug.el.
10517
10518 2012-02-10 Leo Liu <sdl.web@gmail.com>
10519
10520 * subr.el (condition-case-unless-debug): Rename from
10521 condition-case-no-debug. All callers changed.
10522 (with-demoted-errors): Fix caller.
10523
10524 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
10525 * nxml/rng-valid.el (rng-do-some-validation):
10526 * emacs-lisp/package.el (package-refresh-contents)
10527 (package-menu-execute):
10528 * desktop.el (desktop-create-buffer):
10529 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
10530
10531 2012-02-10 Glenn Morris <rgm@gnu.org>
10532
10533 * textmodes/bibtex.el:
10534 Add missing :version tags for new/changed defcustoms.
10535
10536 * files.el (remote-file-name-inhibit-cache): Doc fixes.
10537
10538 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
10539
10540 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
10541 (smtpmail-via-smtp): Use it, or fall back on the From address.
10542 (smtpmail-send-it): Ditto.
10543
10544 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
10545
10546 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
10547 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
10548 (byte-compile-tmp-var): New const.
10549 (byte-compile-defvar): Use it to minimize .elc size.
10550 Just use `defvar' rather than simulate it (bug#10761).
10551
10552 2012-02-09 Glenn Morris <rgm@gnu.org>
10553
10554 * files.el (rename-uniquely): Doc fix. (Bug#3806)
10555
10556 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
10557 Add :version tags.
10558
10559 * progmodes/compile.el (compilation-error-screen-columns)
10560 (compilation-first-column, compilation-filter-start): Doc fixes.
10561
10562 * vc/log-view.el (log-view-toggle-entry-display):
10563 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
10564
10565 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
10566 (report-emacs-bug-can-use-xdg-email):
10567 (report-emacs-bug-insert-to-mailer): Doc fixes.
10568 (report-emacs-bug): Message fix.
10569
10570 * net/browse-url.el (browse-url-can-use-xdg-open)
10571 (browse-url-xdg-open): Doc fixes.
10572
10573 * electric.el (electric-indent-mode, electric-pair-mode)
10574 (electric-layout-rules, electric-layout-mode): Doc fixes.
10575 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
10576
10577 2012-02-08 Martin Rudalics <rudalics@gmx.at>
10578
10579 * server.el (server-unselect-display): Don't inadvertently kill
10580 the current buffer. (Bug#10729)
10581
10582 2012-02-08 Glenn Morris <rgm@gnu.org>
10583
10584 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
10585 (sql-list-table): Doc fixes.
10586
10587 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
10588 Comment out (does nothing).
10589
10590 * completion.el (dynamic-completion-mode):
10591 * dirtrack.el (dirtrack-debug-mode):
10592 * electric.el (electric-layout-mode):
10593 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
10594 * face-remap.el (text-scale-mode, buffer-face-mode):
10595 * iimage.el (iimage-mode):
10596 * image-mode.el (image-transform-mode):
10597 * minibuffer.el (completion-in-region-mode):
10598 * scroll-lock.el (scroll-lock-mode):
10599 * simple.el (next-error-follow-minor-mode):
10600 * tar-mode.el (tar-subfile-mode):
10601 * tooltip.el (tooltip-mode):
10602 * vcursor.el (vcursor-use-vcursor-map):
10603 * wid-browse.el (widget-minor-mode):
10604 * emulation/tpu-edt.el (tpu-edt-mode):
10605 * emulation/tpu-extras.el (tpu-cursor-free-mode):
10606 * international/iso-ascii.el (iso-ascii-mode):
10607 * language/thai-util.el (thai-word-mode):
10608 * mail/supercite.el (sc-minor-mode):
10609 * net/goto-addr.el (goto-address-mode):
10610 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
10611 * progmodes/cwarn.el (cwarn-mode):
10612 * progmodes/flymake.el (flymake-mode):
10613 * progmodes/glasses.el (glasses-mode):
10614 * progmodes/hideshow.el (hs-minor-mode):
10615 * progmodes/pascal.el (pascal-outline-mode):
10616 * textmodes/enriched.el (enriched-mode):
10617 * vc/smerge-mode.el (smerge-mode):
10618 Doc fixes (minor mode argument).
10619
10620 2012-02-07 Eli Zaretskii <eliz@gnu.org>
10621
10622 * ls-lisp.el (ls-lisp-sanitize): New function.
10623 (ls-lisp-insert-directory): Use it to fix or remove any elements
10624 in file-alist with missing attributes. (Bug#4673)
10625
10626 2012-02-07 Alan Mackenzie <acm@muc.de>
10627
10628 Fix spurious recognition of c-in-knr-argdecl.
10629
10630 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
10631 putative K&R region.
10632
10633 2012-02-07 Alan Mackenzie <acm@muc.de>
10634
10635 * progmodes/cc-engine.el (c-forward-objc-directive):
10636 Prevent looping in "#pragma mark @implementation".
10637
10638 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
10639
10640 * notifications.el (notifications-on-closed-signal): Make `reason'
10641 optional. (Bug#10744)
10642
10643 2012-02-07 Glenn Morris <rgm@gnu.org>
10644
10645 * emacs-lisp/easy-mmode.el (define-minor-mode):
10646 Doc fixes for the macro and the mode it defines.
10647
10648 * image.el (imagemagick-types-inhibit): Doc fix.
10649
10650 * cus-start.el (imagemagick-render-type): Add it.
10651
10652 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
10653
10654 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
10655 Set the default at load time, too, so that `font-lock-fontify-buffer'
10656 can be called without setting up the entire mode first. This fixes
10657 a bug in `mm-inline-text' with C MIME parts.
10658
10659 2012-02-06 Chong Yidong <cyd@gnu.org>
10660
10661 * simple.el (list-processes--refresh): Delete exited processes
10662 (Bug#8094).
10663
10664 * comint.el (comint-next-prompt): next-single-char-property-change
10665 and prev-single-char-property-change never return nil (Bug#8657).
10666
10667 * custom.el (defcustom): Doc fix (Bug#9711).
10668
10669 2012-02-05 Chong Yidong <cyd@gnu.org>
10670
10671 * cus-edit.el (custom-variable-reset-backup): Quote the value
10672 before storing it in the customized-value property (Bug#6712).
10673 (custom-display): Add a customization type tag.
10674 (custom-buffer-create-internal): Improve tooltip message.
10675
10676 * wid-edit.el (widget-field-value-get): New optional arg to
10677 suppress trailing whitespace truncation.
10678 (character): Use it (Bug#2689).
10679
10680 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
10681
10682 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
10683 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
10684
10685 2012-02-05 Chong Yidong <cyd@gnu.org>
10686
10687 * cus-edit.el (custom-variable-value-create): For mismatched
10688 types, show the current value (Bug#7600).
10689
10690 * custom.el (defcustom): Doc fix.
10691
10692 2012-02-05 Glenn Morris <rgm@gnu.org>
10693
10694 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
10695
10696 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
10697
10698 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
10699 (pp-buffer): Use `ignore-errors', `looking-at-p'.
10700 (pp-last-sexp): Use `looking-at-p'.
10701
10702 2012-02-04 Glenn Morris <rgm@gnu.org>
10703
10704 * files.el (revert-buffer):
10705 Doc fix (mention revert-buffer-in-progress-p).
10706
10707 * emacs-lisp/ert-x.el (ert-simulate-command):
10708 Check deferred-action-list (which is obsolete) is bound.
10709
10710 * subr.el (with-wrapper-hook): Doc fixes.
10711
10712 * simple.el (filter-buffer-substring-functions)
10713 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
10714
10715 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
10716
10717 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
10718 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
10719
10720 2012-02-04 Leo Liu <sdl.web@gmail.com>
10721
10722 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
10723
10724 2012-02-04 Glenn Morris <rgm@gnu.org>
10725
10726 * image.el (image-extension-data): Add obsolete alias.
10727
10728 * isearch.el (isearch-update): Doc fix.
10729
10730 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
10731
10732 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
10733
10734 2012-02-03 Glenn Morris <rgm@gnu.org>
10735
10736 * image.el (image-animated-p): Doc fix. Use image-animated-types.
10737 (image-animate-timeout): Doc fix.
10738
10739 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
10740
10741 2012-02-02 Glenn Morris <rgm@gnu.org>
10742
10743 * server.el (server-auth-dir): Doc fix.
10744 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
10745
10746 * subr.el (run-mode-hooks): Doc fix.
10747
10748 2012-02-02 Juri Linkov <juri@jurta.org>
10749
10750 * image-mode.el (image-toggle-display-image): Remove tautological
10751 `major-mode' from the `derived-mode-p' test.
10752
10753 2012-02-02 Kenichi Handa <handa@m17n.org>
10754
10755 * composite.el (compose-region): Cancel previous change.
10756
10757 2012-02-02 Kenichi Handa <handa@m17n.org>
10758
10759 * composite.el (compose-region, compose-string): Signal error for
10760 a null string component (Bug#6988).
10761
10762 2012-02-01 Chong Yidong <cyd@gnu.org>
10763
10764 * view.el (view-buffer-other-window, view-buffer-other-frame):
10765 Handle special modes like view-buffer (Bug#10650).
10766 (view-buffer): Simplify.
10767
10768 * frame.el (set-frame-font): Tweak meaning of third argument.
10769
10770 * dynamic-setting.el (font-setting-change-default-font):
10771 Use set-frame-font (Bug#9982).
10772
10773 2012-02-01 Glenn Morris <rgm@gnu.org>
10774
10775 * progmodes/compile.el (compilation-internal-error-properties):
10776 Respect compilation-first-column in the "*compilation*" buffer.
10777
10778 * emacs-lisp/easy-mmode.el (define-minor-mode):
10779 Relax :variable's test for a named function.
10780
10781 2012-01-31 Alan Mackenzie <acm@muc.de>
10782
10783 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
10784 off by one error.
10785
10786 2012-01-31 Chong Yidong <cyd@gnu.org>
10787
10788 * frame.el (set-frame-font): New arg ALL-FRAMES.
10789
10790 * menu-bar.el (menu-set-font): Use set-frame-font.
10791
10792 * faces.el (face-spec-reset-face): Don't apply unspecified
10793 attribute values to the default face.
10794
10795 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
10796
10797 * progmodes/cwarn.el (cwarn): Remove dead link.
10798 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
10799 Remove * from defcustom docstrings.
10800 (turn-on-cwarn-mode): Make obsolete.
10801 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
10802 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
10803
10804 2012-01-31 Glenn Morris <rgm@gnu.org>
10805
10806 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
10807 Fix :variable handling of mode a symbol not equal to modefun.
10808 Allow named functions to be used as the cdr of :variable.
10809
10810 2012-01-30 Glenn Morris <rgm@gnu.org>
10811
10812 * emacs-lisp/authors.el (authors-fixed-entries):
10813 Remove reference to deleted file rnewspost.el.
10814
10815 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
10816
10817 * window.el (window-with-parameter): Remove unused variable `windows'.
10818 (window--side-check): Remove unused variable `code'.
10819 (window--resize-siblings): Remove unused variable `first'.
10820 (adjust-window-trailing-edge): Remove unused variable `failed'.
10821 (window-deletable-p, window--delete): Remove unused variable `buffer'.
10822 Use `let', not `let*'.
10823 (balance-windows-2): Remove unused variable `found'.
10824 (window--state-put-2): Remove unused variable `splits'.
10825 (window-state-put): Remove unused variable `selected'.
10826 (same-window-p): Use `string-match-p'.
10827 (display-buffer-assq-regexp): Remove unused variable `value'.
10828 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
10829 Mark argument ALIST as ignored.
10830 (pop-to-buffer): Remove unused variable `old-window'.
10831
10832 2012-01-29 Eli Zaretskii <eliz@gnu.org>
10833
10834 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
10835 and .lzma compressed files.
10836
10837 2012-01-29 Chong Yidong <cyd@gnu.org>
10838
10839 * frame.el (window-system-default-frame-alist): Doc fix.
10840
10841 * dynamic-setting.el (font-setting-change-default-font): Don't
10842 change the default face if SET-FONT argument is non-nil (Bug#9982).
10843
10844 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
10845
10846 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
10847
10848 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
10849
10850 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
10851 breakpoints in files outside current directory (Bug#6098).
10852
10853 2012-01-29 Chong Yidong <cyd@gnu.org>
10854
10855 * progmodes/python.el: Require ansi-color at top-level.
10856
10857 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
10858 Define and use in Emacs Lisp mode (Bug#9360).
10859 (lisp-mode-abbrev-table): Add doc.
10860 (lisp-mode-variables): Don't set local-abbrev-table.
10861 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
10862
10863 2012-01-28 Roland Winkler <winkler@gnu.org>
10864
10865 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
10866
10867 2012-01-28 Roland Winkler <winkler@gnu.org>
10868
10869 * textmodes/bibtex.el (bibtex-entry-alist): New function.
10870 (bibtex-set-dialect): Use it. Either set global values of
10871 dialect-dependent variables or bind these variables buffer-locally
10872 (Bug#10254).
10873 (bibtex-mode): Call bibtex-set-dialect via
10874 hack-local-variables-hook.
10875 (bibtex-dialect): Update docstring.
10876 Add safe-local-variable predicate.
10877 (bibtex-entry-alist, bibtex-field-alist): Initialize via
10878 bibtex-set-dialect.
10879 (bibtex-mode-map): Define menu for each dialect.
10880 (bibtex-entry): Fix docstring.
10881
10882 2012-01-28 Chong Yidong <cyd@gnu.org>
10883
10884 * eshell/esh-arg.el (eshell-quote-argument): New function.
10885
10886 * eshell/esh-ext.el (eshell-invoke-batch-file):
10887 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
10888 first arg to eshell-parse-command (Bug#10523).
10889
10890 2012-01-28 Drew Adams <drew.adams@oracle.com>
10891
10892 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
10893 `default-directory' is non-nil.
10894
10895 2012-01-28 Eli Zaretskii <eliz@gnu.org>
10896
10897 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
10898 line that displays system-configuration-options. (Bug#9924)
10899
10900 2012-01-28 Drew Adams <drew.adams@oracle.com>
10901
10902 * descr-text.el (describe-char): Show information about POS, in
10903 addition to information about the character at POS. Improve and
10904 update the doc string. Change "code point" to "code point in
10905 charset", to avoid confusion with the character's Unicode code
10906 point shown above that. (Bug#10129)
10907
10908 2012-01-28 Eli Zaretskii <eliz@gnu.org>
10909
10910 * descr-text.el (describe-char): Show the raw character, not only
10911 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
10912 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
10913 for the reasons.
10914
10915 2012-01-28 Phil Hagelberg <phil@hagelb.org>
10916
10917 * emacs-lisp/package.el (package-install):
10918 Run package-refresh-contents if there is no archive yet (Bug#9798).
10919
10920 2012-01-28 Chong Yidong <cyd@gnu.org>
10921
10922 * emacs-lisp/package.el (package-maybe-load-descriptor):
10923 New function, split from package-maybe-load-descriptor.
10924 (package-maybe-load-descriptor): Use it.
10925 (package-download-transaction): Fully load required packages
10926 inside the loop, so that `require' calls work (Bug#10593).
10927 (package-install): No need to call package-initialize now.
10928
10929 2012-01-28 Chong Yidong <cyd@gnu.org>
10930
10931 * simple.el (deactivate-mark): Doc fix (Bug#8614).
10932
10933 * tooltip.el (tooltip-mode): Doc fix.
10934 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
10935
10936 * frame.el (set-cursor-color): Doc fix (Bug#352).
10937
10938 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
10939 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
10940
10941 * cus-edit.el (custom-buffer-create-internal): Fix search button
10942 action (Bug#10542).
10943 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
10944
10945 2012-01-27 Eduard Wiebe <usenet@pusto.de>
10946
10947 * dired.el (dired-mark-files-regexp):
10948 Include any subdirectory components. (Bug#10445)
10949
10950 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
10951
10952 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
10953 Handle [host]:port syntax. (Bug#10533)
10954
10955 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
10956
10957 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
10958
10959 2012-01-26 Glenn Morris <rgm@gnu.org>
10960
10961 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
10962 * term.el (term-raw-escape-map): Use Control-X-prefix.
10963 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
10964
10965 2012-01-25 Martin Rudalics <rudalics@gmx.at>
10966
10967 * window.el (window-state-get, window--state-get-1): Don't deal
10968 with fixed-sizeness of windows. Simplify code.
10969
10970 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
10971
10972 * window.el (window--state-get-1, window--state-put-2):
10973 Don't save and restore the mark.
10974
10975 2012-01-25 Chong Yidong <cyd@gnu.org>
10976
10977 * custom.el (custom-variable-p): Doc fix.
10978
10979 2012-01-25 Glenn Morris <rgm@gnu.org>
10980
10981 * dired.el (dired-goto-file): Handle some of the more common
10982 characters that `ls -b' escapes. (Bug#10596)
10983
10984 * progmodes/compile.el (compilation-next-error-function):
10985 Respect compilation-first-column in the "*compilation*" buffer.
10986 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
10987
10988 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
10989
10990 2012-01-24 Glenn Morris <rgm@gnu.org>
10991
10992 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
10993
10994 2012-01-24 Julien Danjou <julien@danjou.info>
10995
10996 * color.el (color-rgb-to-hsl): Fix value computing.
10997 (color-hue-to-rgb): New function.
10998 (color-hsl-to-rgb): New function.
10999 (color-clamp, color-saturate-hsl, color-saturate-name)
11000 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
11001 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
11002
11003 2012-01-24 Glenn Morris <rgm@gnu.org>
11004
11005 * vc/vc-rcs.el (vc-rcs-create-tag):
11006 * vc/vc-sccs.el (vc-sccs-create-tag):
11007 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
11008
11009 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
11010
11011 * eshell/esh-util.el (eshell-read-hosts-file):
11012 Skip comment lines. (Bug#10549)
11013
11014 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
11015
11016 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
11017
11018 * subr.el (display-delayed-warnings): Doc fix.
11019 (collapse-delayed-warnings): New function to collapse identical
11020 adjacent warnings.
11021 (delayed-warnings-hook): Add it.
11022
11023 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
11024
11025 * net/tramp.el (tramp-action-login): Set connection property "login-as".
11026
11027 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
11028 (tramp-default-user-alist): Don't add "pscp".
11029 (tramp-do-copy-or-rename-file-out-of-band): Use connection
11030 property "login-as", if set. (Bug#10530)
11031
11032 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
11033
11034 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
11035 "plink1" and "psftp". (Bug#10530)
11036
11037 2012-01-21 Kenichi Handa <handa@m17n.org>
11038
11039 * international/mule-cmds.el (prefer-coding-system): Show a
11040 warning message if the default value of file-name-coding-system
11041 was not changed.
11042
11043 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11044
11045 * windmove.el (windmove-reference-loc):
11046 Fix windmove-reference-loc miscalculation.
11047
11048 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
11049
11050 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
11051 default unit.
11052
11053 2012-01-21 Glenn Morris <rgm@gnu.org>
11054
11055 * international/mule.el (auto-coding-alist): Add .tbz.
11056
11057 * files.el (local-enable-local-variables): Doc fix.
11058 (inhibit-local-variables-regexps): Rename from
11059 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
11060 Doc fix. Add some extensions from auto-coding-alist.
11061 (inhibit-local-variables-suffixes):
11062 Rename from inhibit-first-line-modes-suffixes. Doc fix.
11063 (inhibit-local-variables-p):
11064 New function, extracted from set-auto-mode-1.
11065 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
11066 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
11067 (hack-local-variables): Doc fix. Make the mode-only case
11068 respect enable-local-variables and friends.
11069 Respect inhibit-local-variables-regexps for file-locals, but
11070 not for directory-locals.
11071 (set-visited-file-name):
11072 Take account of inhibit-local-variables-regexps.
11073 Whether it applies may change as the file name is changed.
11074 * jka-cmpr-hook.el (jka-compr-install):
11075 * jka-compr.el (jka-compr-uninstall):
11076 Update for inhibit-first-line-modes-suffixes name change.
11077
11078 2012-01-20 Martin Rudalics <rudalics@gmx.at>
11079
11080 * help-macro.el (make-help-screen): Temporarily restore original
11081 binding for minor-mode-map-alist (Bug#10454).
11082
11083 2012-01-19 Julien Danjou <julien@danjou.info>
11084
11085 * color.el (color-name-to-rgb): Use the white color to find the max
11086 color component value and return correctly computed values.
11087 (color-name-to-rgb): Add missing float conversion for max value.
11088
11089 2012-01-19 Martin Rudalics <rudalics@gmx.at>
11090
11091 * window.el (window--state-get-1, window-state-get): Do not use
11092 special state value for window-persistent-parameters.
11093 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
11094 (window--state-put-2): Reset all window parameters to nil before
11095 assigning values of persistent parameters.
11096
11097 2012-01-18 Alan Mackenzie <acm@muc.de>
11098
11099 Eliminate sluggishness and hangs in fontification of "semicolon
11100 deserts".
11101
11102 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
11103 Change value 10000 -> 3000.
11104 (c-state-safe-place): Reformulate so it doesn't stack up an
11105 infinite number of wrong entries in c-state-nonlit-pos-cache.
11106 (c-determine-limit-get-base, c-determine-limit): New functions to
11107 determine backward search limits disregarding literals.
11108 (c-find-decl-spots): Amend commenting.
11109 (c-cheap-inside-bracelist-p): New function which detects "={".
11110
11111 * progmodes/cc-fonts.el
11112 (c-make-font-lock-BO-decl-search-function): Give a limit to a
11113 backward search.
11114 (c-font-lock-declarations): Fix an occurrence of point being
11115 undefined. Check additionally for point being in a bracelist or
11116 near a macro invocation without a semicolon so as to avoid a
11117 fruitless time consuming search for a declarator. Give a more
11118 precise search limit for declarators using the new
11119 c-determine-limit.
11120
11121 2012-01-18 Glenn Morris <rgm@gnu.org>
11122
11123 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
11124 (set-auto-mode): Doc fixes.
11125
11126 2012-01-17 Glenn Morris <rgm@gnu.org>
11127
11128 * isearch.el (search-nonincremental-instead): Fix doc typo.
11129
11130 * dired.el (dired-insert-directory): Handle newlines in directory name.
11131 (dired-build-subdir-alist): Unescape newlines in directory name.
11132
11133 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
11134
11135 * net/tramp.el (tramp-local-end-of-line): New defcustom.
11136 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
11137 (tramp-action-terminal): Use it. (Bug#10530)
11138
11139 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
11140
11141 * minibuffer.el (completion--replace): Strip properties (bug#10062).
11142
11143 2012-01-16 Martin Rudalics <rudalics@gmx.at>
11144
11145 * window.el (window-state-ignored-parameters): Remove variable.
11146 (window--state-get-1): Rename argument MARKERS to IGNORE.
11147 Handle persistent window parameters. Make copy of clone-of
11148 parameter only if requested. (Bug#10348)
11149 (window--state-put-2): Install a window parameter only if it has
11150 a non-nil value or an existing parameter shall be overwritten.
11151
11152 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
11153
11154 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
11155
11156 2012-01-14 Eli Zaretskii <eliz@gnu.org>
11157
11158 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
11159 don't pass the (nil) value of `upnode' to string-match.
11160
11161 2012-01-14 Chong Yidong <cyd@gnu.org>
11162
11163 * startup.el (command-line): Fix X resource class for cursorColor.
11164 Fix values recognized by the cursorBlink resource.
11165
11166 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
11167
11168 * epg.el (epg--make-temp-file): Avoid permission race condition
11169 when running on old Emacs versions (bug#10403).
11170
11171 2012-01-14 Glenn Morris <rgm@gnu.org>
11172
11173 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
11174
11175 2012-01-13 Alan Mackenzie <acm@muc.de>
11176
11177 Fix filling for when filladapt mode is enabled.
11178
11179 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
11180 c-mask-paragraph, pass in `fill-paragraph' rather than
11181 `fill-region-as-paragraph'. (This is a reversion of a previous
11182 change.)
11183 * progmodes/cc-mode.el (c-basic-common-init):
11184 Make fill-paragraph-handle-comment buffer local and set it to nil.
11185
11186 2012-01-13 Glenn Morris <rgm@gnu.org>
11187
11188 * dired.el (dired-switches-escape-p): New function.
11189 (dired-insert-directory): Use dired-switches-escape-p.
11190 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
11191
11192 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
11193
11194 2012-01-12 Glenn Morris <rgm@gnu.org>
11195
11196 * mail/sendmail.el (mail-mode): Update paragraph-separate for
11197 changes in adaptive-fill-regexp. (Bug#10276)
11198
11199 2012-01-11 Alan Mackenzie <acm@muc.de>
11200
11201 Fix Emacs bug #10463 - put `widen's around the critical spots.
11202
11203 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
11204 widen around each invocation of c-state-pp-to-literal. Remove an
11205 unused let variable.
11206
11207 2012-01-11 Glenn Morris <rgm@gnu.org>
11208
11209 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
11210 Doc fix.
11211
11212 2012-01-10 Chong Yidong <cyd@gnu.org>
11213
11214 * net/network-stream.el (network-stream-open-starttls):
11215 Avoid emitting a confusing error message when the server gives a bad
11216 response to the capability command.
11217
11218 2012-01-10 Glenn Morris <rgm@gnu.org>
11219
11220 * mail/unrmail.el (unrmail): Tweak previous change.
11221
11222 2012-01-09 Chong Yidong <cyd@gnu.org>
11223
11224 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
11225
11226 2012-01-08 Alan Mackenzie <acm@muc.de>
11227
11228 Optimise font locking in long enum definitions.
11229
11230 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
11231 arm to a cond form to handle enums.
11232 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
11233 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
11234
11235 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
11236
11237 * files.el (move-file-to-trash): Preserve default file modes on error.
11238 (Bug#10401)
11239
11240 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11241
11242 * faces.el (set-face-attribute): Clarify the meaning of the nil
11243 frame (bug#10294).
11244
11245 * subr.el (with-selected-frame): Mention that the selected frame
11246 is restored (bug#9980).
11247
11248 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
11249 (bug#9759).
11250
11251 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
11252 (password-read): Don't autoload unused function.
11253
11254 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
11255
11256 * progmodes/which-func.el (which-func-mode): Turn into a
11257 non-interactive function and mark as obsolete (bug#10428).
11258
11259 2012-01-06 Chong Yidong <cyd@gnu.org>
11260
11261 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
11262 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
11263 functions, along with 1 and -1.
11264
11265 2012-01-06 Eli Zaretskii <eliz@gnu.org>
11266
11267 * time.el (display-time-load-average)
11268 (display-time-default-load-average): Doc fixes. See the thread
11269 starting at
11270 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
11271 for the details.
11272
11273 2012-01-06 Glenn Morris <rgm@gnu.org>
11274
11275 * mail/unrmail.el (unrmail): Give an explicit error if the input file
11276 has no messages. (Bug#10377)
11277
11278 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
11279 than Info-edit. (Bug#10385)
11280
11281 * time.el (display-time-load-average, display-time-next-load-average):
11282 Doc fixes.
11283
11284 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
11285 local setting of buffer-read-only to the input buffer. (Bug#10419)
11286
11287 * calendar/calendar.el (calendar-mode):
11288 Locally set scroll-margin to 0. (Bug#10379)
11289
11290 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
11291
11292 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
11293
11294 2012-01-05 Glenn Morris <rgm@gnu.org>
11295
11296 * eshell/em-unix.el (diff-no-select): Autoload it.
11297 (eshell/diff): Use diff-no-select. (Bug#10420)
11298
11299 2012-01-05 Chong Yidong <cyd@gnu.org>
11300
11301 * shell.el (shell-dynamic-complete-functions): Revert last change.
11302 (shell-command-completion-function): New function.
11303 (shell-completion-vars): Use it to implement
11304 shell-completion-execonly (Bug#10417).
11305
11306 * custom.el (enable-theme): Don't set custom-safe-themes.
11307
11308 * cus-theme.el (custom-theme-merge-theme):
11309 Ignore custom-enabled-themes and custom-safe-themes.
11310
11311 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
11312
11313 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
11314 first prompt in `sql-interacive-mode'.
11315 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
11316 keywords.
11317 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
11318 (sql-product-interactive): Bug fix: Set `sql-buffer' in
11319 context of original buffer. Invoke `sql-login-hook'.
11320
11321 2012-01-04 Eli Zaretskii <eliz@gnu.org>
11322
11323 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
11324 letters in cite-prefix.
11325
11326 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11327
11328 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
11329
11330 2012-01-03 Chong Yidong <cyd@gnu.org>
11331
11332 * shell.el (shell-dynamic-complete-functions):
11333 Put pcomplete-completions-at-point, so as to try
11334 comint-filename-completion first (Bug#10417).
11335
11336 2012-01-02 Richard Stallman <rms@gnu.org>
11337
11338 * battery.el (battery-status-function):
11339 Detect when to use battery-yeeloong-sysfs.
11340 (battery-echo-area-format): Add string for Yeeloong.
11341 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
11342 (battery-yeeloong-sysfs): New function.
11343
11344 2012-01-02 Chong Yidong <cyd@gnu.org>
11345
11346 * dirtrack.el (dirtrack-list): Eliminate unused third element.
11347 (dirtrack): Merge code for handling relative filenames in prompt
11348 from shell-dir-cookie-watcher.
11349 (dirtrack-debug-message): New arg to avoid excess format calls.
11350
11351 * shell.el (shell-dir-cookie-re): Variable deleted.
11352 (shell-dir-cookie-watcher): Function deleted.
11353 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
11354 with dirtrack-mode.
11355
11356 2012-01-01 Eli Zaretskii <eliz@gnu.org>
11357
11358 * term/w32-win.el (dynamic-library-alist) <gnutls>:
11359 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
11360 libgnutls-26.dll.
11361
11362 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
11363
11364 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
11365
11366 2011-12-31 Eli Zaretskii <eliz@gnu.org>
11367
11368 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
11369 headers of non-MIME messages, when rmail-enable-mime is non-nil.
11370
11371 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
11372
11373 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
11374 also for alternative shells.
11375 (tramp-open-connection-setup-interactive-shell): Check, whether
11376 the shell is a busybox.
11377 (tramp-send-command): Don't suppress multiple prompts for
11378 busyboxes, it hurts.
11379
11380 2011-12-28 Chong Yidong <cyd@gnu.org>
11381
11382 * progmodes/gdb-mi.el (gdb-get-source-file-list)
11383 (gdb-get-source-file): Move mode line update to
11384 gdb-get-source-file (Bug#10087).
11385
11386 2011-12-25 Chong Yidong <cyd@gnu.org>
11387
11388 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
11389 gud-gdb-marker-filter without taking it as an argument.
11390 (gud-gdb-run-command-fetch-lines): Caller changed.
11391 (gud-gdb-completion-function): New variable.
11392 (gud-gdb-completion-at-point): Use it.
11393 (gud-gdb-completions-1): Split from gud-gdb-completions.
11394
11395 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
11396 function as separate arguments.
11397 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
11398 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
11399 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
11400 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
11401 (gdb-stopped, def-gdb-auto-update-trigger)
11402 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
11403 (gdb-get-changed-registers, gdb-get-main-selected-frame):
11404 Callers changed.
11405 (gud-gdbmi-completions): New function.
11406 (gdb): Use it for generating the completion table.
11407
11408 2011-12-24 Alan Mackenzie <acm@muc.de>
11409
11410 Introduce a mechanism to widen the region used in context font
11411 locking. Use this to protect declarations from losing their contexts.
11412
11413 * progmodes/cc-langs.el (c-before-font-lock-functions):
11414 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
11415 (c-before-context-fontification-functions): New defvar, a list of
11416 functions to be run just before context (etc.) font locking.
11417
11418 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
11419 New, functionality extracted from
11420 c-neutralize-syntax-in-and-mark-CPP.
11421 (c-in-after-change-fontification): New variable.
11422 (c-after-change): Set c-in-after-change-fontification.
11423 (c-set-fl-decl-start): Rejig its interface, so it can be called
11424 from both after-change and context fontifying.
11425 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
11426 New functions.
11427 (c-standard-font-lock-fontify-region-function): New variable.
11428 (c-font-lock-fontify-region): New function.
11429
11430 2011-12-24 Juri Linkov <juri@jurta.org>
11431
11432 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
11433 (Bug#10348)
11434
11435 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
11436
11437 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
11438 existence of source file. (Bug#10325)
11439
11440 2011-12-23 Alan Mackenzie <acm@muc.de>
11441
11442 Fix unstable fontification inside templates.
11443
11444 * progmodes/cc-langs.el (c-before-font-lock-functions):
11445 Newly created from the singular version. The (c c++ objc) entry now
11446 additionally has c-set-fl-decl-start. The other languages (apart
11447 from AWK) have that as a single entry.
11448
11449 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
11450 The functionality for "local" declarations has been extracted to
11451 c-set-fl-decl-start.
11452
11453 * progmodes/cc-mode.el (c-common-init, c-after-change):
11454 Changes due to pluralisation of c-before-font-lock-functions.
11455 (c-set-fl-decl-start): New function, extracted from
11456 c-font-lock-enclosing-decls and enhanced.
11457
11458 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
11459
11460 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
11461
11462 2011-12-22 Juri Linkov <juri@jurta.org>
11463
11464 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
11465
11466 2011-12-22 Chong Yidong <cyd@gnu.org>
11467
11468 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
11469
11470 2011-12-21 Drew Adams <drew.adams@oracle.com>
11471
11472 * files.el (file-remote-p): Fix docstring. (Bug#10319)
11473
11474 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11475
11476 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
11477
11478 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
11479
11480 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
11481 highlighting and support. Fix up comments for capitalization.
11482 (cfengine-mode-debug): New var.
11483 (cfengine3-mode): Change the modeline indicator to "CFE3".
11484 (cfengine3-font-lock-keywords): Improve defun highlighting.
11485 (cfengine2-actions): Rename from `cfengine-actions'.
11486 (cfengine2-font-lock-keywords): Rename from
11487 `cfengine-font-lock-keywords'.
11488 (cfengine2-imenu-expression): Rename from
11489 `cfengine-imenu-expression'.
11490 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
11491 (cfengine2-beginning-of-defun): Rename from
11492 `cfengine-beginning-of-defun'.
11493 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
11494 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
11495 (cfengine2-mode): Rename from `cfengine-mode'. Change the
11496 modeline indicator to "CFE2".
11497 (cfengine-mode): Defalias to `cfengine-auto-mode'.
11498 (cfengine-mode-abbrevs): Mark obsolete.
11499
11500 2011-12-21 Chong Yidong <cyd@gnu.org>
11501
11502 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
11503 filename argument.
11504
11505 2011-12-20 Martin Rudalics <rudalics@gmx.at>
11506
11507 * window.el (window-normalize-buffer-to-display): Remove.
11508 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
11509
11510 2011-12-19 Chong Yidong <cyd@gnu.org>
11511
11512 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
11513 Don't signal an error in a predicate function; return non-nil.
11514 (vc-dir-mark-file): Move the error here.
11515 (vc-dir-mark-unmark): If acting on the region, keep going if one
11516 of the entries cannot be marked/unmarked.
11517 (vc-dir-mark-all-files): If current entry is a directory, mark
11518 only child files, as documented.
11519
11520 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
11521
11522 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
11523 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
11524 addition.
11525
11526 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
11527
11528 * term/ns-win.el (ns-get-selection-internal)
11529 (ns-store-selection-internal): Declare.
11530 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
11531 Declare as obsolete.
11532 (ns-get-pasteboard, ns-paste-secondary):
11533 Use ns-get-selection-internal.
11534 (ns-set-pasteboard, ns-copy-including-secondary):
11535 Use ns-store-selection-internal.
11536
11537 2011-12-17 Chong Yidong <cyd@gnu.org>
11538
11539 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
11540 (vc-deduce-fileset): Doc fix.
11541
11542 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
11543
11544 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
11545
11546 2011-12-13 Sam Steingold <sds@gnu.org>
11547
11548 * man.el (Man-getpage-in-background): When running under a
11549 window-system, ignore $MANWIDTH and $COLUMNS.
11550
11551 2011-12-15 Kenichi Handa <handa@m17n.org>
11552
11553 * language/ethio-util.el: Change coding tag to utf-8-emacs.
11554 (setup-ethiopic-environment-internal): Comment out key-binding for
11555 ethio-toggle-punctuation.
11556
11557 2011-12-13 Alan Mackenzie <acm@muc.de>
11558
11559 Add the switch statement to AWK Mode.
11560
11561 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
11562 "default" to the keywords regexp.
11563
11564 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
11565 expression as the rest.
11566 (c-nonlabel-token-key): Allow string literals for AWK.
11567 Refactor for the other modes.
11568
11569 Large brace-block initialisation makes CC Mode slow: Fix.
11570 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
11571 routines. Limit backward searching in c-font-lock-enclosing.decl.
11572
11573 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
11574 pp-state and literal type in addition to the limits.
11575 (c-state-safe-place): New defun, extracted from c-state-literal-at.
11576 (c-state-literal-at): Use the above new defun.
11577 (c-slow-in-literal, c-fast-in-literal): Remove.
11578 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
11579
11580 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
11581 being in a literal. Add a limit for backward searching.
11582
11583 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
11584 c-slow-in-literal.
11585
11586 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
11587
11588 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
11589
11590 2011-12-13 Martin Rudalics <rudalics@gmx.at>
11591
11592 * window.el (delete-other-windows): Use correct frame in call to
11593 window-with-parameter.
11594
11595 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
11596
11597 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
11598 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
11599 (makefile-gmake-statements, makefile-makepp-statements):
11600 Use it and add new makepp keywords.
11601 (makefile-makepp-font-lock-keywords): Add new patterns.
11602 (makefile-match-function-end): Match new [...] and [[...]].
11603
11604 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
11605
11606 * ses.el (ses-call-printer-return, ses-cell-property-get)
11607 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
11608 (ses-create-cell-variable, ses-reset-header-string)
11609 (ses-cell-set-formula, ses-repair-cell-reference-all)
11610 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
11611 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
11612 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
11613 (ses-aset-with-undo, ses-load, ses-truncate-cell)
11614 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
11615 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
11616 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
11617 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
11618 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
11619 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
11620 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
11621 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
11622
11623 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
11624
11625 * ses.el: The overall change is to add cell renaming, that is
11626 setting fancy names for cell symbols other than name matching
11627 "\\`[A-Z]+[0-9]+\\'" regexp .
11628 (ses-create-cell-variable): New defun.
11629 (ses-relocate-formula): Relocate formulas only for cells the
11630 symbols of which are not renamed, i.e. symbols whose names do not
11631 match regexp "\\`[A-Z]+[0-9]+\\'".
11632 (ses-relocate-all): Relocate values only for cells the symbols of
11633 which are not renamed.
11634 (ses-load): Create cells variables as the (ses-cell ...) are read,
11635 in order to check row col consistency with cell symbol name only
11636 for cells that are not renamed.
11637 (ses-replace-name-in-formula): New defun.
11638 (ses-rename-cell): New defun.
11639
11640 2011-12-11 Chong Yidong <cyd@gnu.org>
11641
11642 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
11643 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
11644
11645 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
11646
11647 * window.el (other-window): Fix docstring.
11648
11649 2011-12-10 Eli Zaretskii <eliz@gnu.org>
11650
11651 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
11652 `from' or `to' address before taking its substring.
11653 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
11654 encoded name is chopped in the middle of the encoded string, and
11655 thus displayed encoded.
11656
11657 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
11658
11659 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
11660
11661 2011-12-10 Eli Zaretskii <eliz@gnu.org>
11662
11663 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
11664 to use texinfo-update-node and commands that call it if the
11665 Texinfo file uses @node lines without next/prev/up pointers.
11666 Correct outdated description about texinfo-master-menu.
11667 (texinfo-all-menus-update, texinfo-master-menu)
11668 (texinfo-update-node, texinfo-every-node-update)
11669 (texinfo-multiple-files-update): Doc fix. Warn against updating
11670 all the @node lines.
11671 (texinfo-master-menu): Only call texinfo-update-node if the prefix
11672 argument is numeric. Explain better in the doc string what the
11673 function really does.
11674 (texinfo-insert-master-menu-list): Improve the error message
11675 displayed if there's no menu in the Top node.
11676 (Bug#2975) See also this thread:
11677 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
11678
11679 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
11680
11681 * speedbar.el (speedbar-supported-extension-expressions):
11682 Add .adb and .ads, commonly used for Ada source code (bug#10256).
11683
11684 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
11685
11686 * printing.el (pr-mode-alist):
11687 * simple.el (filter-buffer-substring-functions)
11688 (completion-list-insert-choice-function):
11689 * window.el (window-with-parameter, window-atom-root)
11690 (window-sides-slots, window-size-fixed, window-min-delta)
11691 (window-max-delta, window--resize-mini-window)
11692 (window--resize-child-windows-normal, window-tree)
11693 (delete-other-windows, quit-window, split-window)
11694 (display-buffer-record-window, special-display-buffer-names)
11695 (special-display-regexps, special-display-popup-frame)
11696 (same-window-p, split-window-sensibly)
11697 (display-buffer-overriding-action, display-buffer-alist)
11698 (display-buffer-base-action, display-buffer, switch-to-buffer)
11699 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
11700 (fit-window-to-buffer, recenter-positions)
11701 (mouse-autoselect-window-state, mouse-autoselect-window-select):
11702 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
11703 and remove unneeded backslashes in docstrings.
11704
11705 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
11706
11707 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
11708
11709 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
11710 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
11711 end in ".mk".
11712 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
11713 when reading the makefile (bug#10116).
11714
11715 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
11716
11717 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
11718 (bug#10116).
11719
11720 2011-12-06 Glenn Morris <rgm@gnu.org>
11721
11722 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
11723
11724 2011-12-06 Chong Yidong <cyd@gnu.org>
11725
11726 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
11727
11728 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
11729
11730 * textmodes/table.el (table-shorten-cell): Fix typo.
11731
11732 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
11733
11734 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
11735
11736 2011-12-05 Eli Zaretskii <eliz@gnu.org>
11737
11738 * descr-text.el (describe-char): Fix display of strong
11739 right-to-left characters and directional embeddings and overrides.
11740
11741 * simple.el (what-cursor-position): Fix display of codepoints of
11742 strong right-to-left characters.
11743
11744 2011-12-05 Chong Yidong <cyd@gnu.org>
11745
11746 * faces.el (read-color): Doc fix.
11747
11748 2011-12-05 Glenn Morris <rgm@gnu.org>
11749
11750 * align.el (align--set-marker): Add doc-string.
11751 Don't try to move something that is not a marker. (Bug#10216)
11752
11753 2011-12-04 Glenn Morris <rgm@gnu.org>
11754
11755 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
11756 overly zealous deletion of trailing whitespace.
11757
11758 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
11759
11760 * server.el (server-delete-client): On Windows, do not try to delete
11761 the only terminal.
11762 (server-process-filter): On Windows, treat requests for a tty frame as
11763 if they were for a GUI frame if the running server is in GUI mode.
11764
11765 2011-12-03 Glenn Morris <rgm@gnu.org>
11766
11767 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
11768
11769 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
11770
11771 * electric.el: Streamline electric-indent's hook.
11772 (electric-indent-chars): Revert to simple list.
11773 (electric-indent-functions): New var.
11774 (electric-indent-post-self-insert-function): Use it.
11775
11776 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
11777 there's no inferior buffer (bug#10196).
11778 (prolog-consult-compile): Don't use toggle-read-only.
11779
11780 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
11781
11782 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
11783 interrupt. (Bug#10187)
11784
11785 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
11786
11787 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
11788 (bug#9160).
11789
11790 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
11791 (bug#10191).
11792
11793 2011-12-02 Juri Linkov <juri@jurta.org>
11794
11795 * info.el (Info-search): Display "end of manual" when Isearch
11796 reaches the end of single-file Info manual. (Bug#9918)
11797
11798 2011-12-02 Eli Zaretskii <eliz@gnu.org>
11799
11800 * isearch.el (isearch-message-prefix): Run the input method part
11801 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
11802
11803 2011-12-02 Juri Linkov <juri@jurta.org>
11804
11805 * isearch.el (isearch-occur): Use `word-search-regexp' for
11806 `isearch-word'.
11807 (isearch-search-and-update): Add condition for `isearch-word' and
11808 call `word-search-regexp'. (Bug#10145)
11809
11810 2011-12-01 Glenn Morris <rgm@gnu.org>
11811
11812 * eshell/em-hist.el (eshell-hist-initialize):
11813 Handle eshell-history-size nil and HISTSIZE set or unset.
11814 (eshell-history-file-name, eshell-history-size): Fix custom type.
11815
11816 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
11817
11818 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
11819
11820 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
11821
11822 * progmodes/verilog-mode.el (verilog-pretty-expr):
11823 Rework verilog-pretty-expr to handle new assignment operators in system
11824 verilog, such as += *= and the like.
11825 (verilog-assignment-operator-re): Regular expression to find the
11826 assigment operator in a verilog assignment.
11827 (verilog-assignment-operation-re): Regular expression to find an
11828 assignment statement for pretty-expr.
11829 (verilog-in-attribute-p): Query returns true if point is in an
11830 attribute context; used to skip these for expression line up from
11831 pretty-expr.
11832 (verilog-in-parameter-p): Query returns true if point is in an
11833 parameter definition context; used to skip these for expression
11834 line up from pretty-expr.
11835 (verilog-in-parenthesis-p): Query returns true if point is in a
11836 parenthetical expression, specifically ( ) but not [ ] or { };
11837 used by pretty-expr.
11838 (verilog-just-one-space): If there is no space, don't add one.
11839 (verilog-get-lineup-indent-2): Specifically skip just attribute
11840 contexts for expression lineup, rather than skipping all
11841 parenthetical expressions.
11842 (verilog-calculate-indent): Fix comment, and fix indent.
11843 (verilog-do-indent): Indent declarations in lists (suggested by
11844 Joachim Lechner).
11845 (verilog-mode-abbrev-table): Populate abbrev mode with the various
11846 skeleton items.
11847 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
11848 by Alain Mellan).
11849
11850 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
11851
11852 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
11853 parameters with embedded comments. Reported by Ray Stevens.
11854 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
11855 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
11856 Reported by Tim Holt.
11857 (verilog-auto): Fix AUTOing a upper module then AUTOing module
11858 instantiated by upper module causing wrong expansion until AUTOed a
11859 second time. Reported by K C Buckenmaier.
11860 (verilog-diff-auto): Fix showing .* as a difference when
11861 `verilog-auto-star-save' off. Reported by Dan Dever.
11862 (verilog-auto-reset, verilog-read-always-signals)
11863 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
11864 temporary signals in reset list if
11865 verilog-auto-reset-blocking-in-non is nil, and match assignment
11866 style to each signal's assignment type, bug381.
11867 Reported by Thomas Esposito.
11868 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
11869 (verilog-uvm-statement-re): Support UVM indentation and
11870 highlighting, with old OVM keywords only.
11871 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
11872 Support AUTOTIEOFF creating non-wire data types.
11873 Suggested by Jonathan Greenlaw.
11874 (verilog-auto-insert-lisp, verilog-delete-to-paren)
11875 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
11876 (verilog-inject-sense, verilog-read-inst-pins)
11877 (verilog-read-sub-decls, verilog-read-sub-decls-line):
11878 Fix mismatching parenthesis inside commented out code when deleting
11879 AUTOINST, bug383. Reported by Jonathan Greenlaw.
11880 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
11881 non-numeric vector width. Reported by Alex Reed.
11882 (verilog-auto-ascii-enum): Add "onehot" option to work around not
11883 detecting signals with parameter widths. Reported by Alex Reed.
11884 (verilog-auto-delete-trailing-whitespace):
11885 With `verilog-auto-delete-trailing-whitespace' remove trailing
11886 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
11887 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
11888 Fix verilog-scan-cache corruption when running user AUTO expansion
11889 hooks that call indentation routines.
11890 (verilog-simplify-range-expression): Fix typo ignoring lower case
11891 identifiers.
11892 (verilog-delete-auto): Fix delete-autos to also remove user created
11893 automatics, as long as they start with AUTO.
11894 (verilog-batch-diff-auto, verilog-diff-auto)
11895 (verilog-diff-function): Add `verilog-diff-auto' and bind to
11896 "C-c?" to report differences in AUTO expansion, ignoring spaces.
11897 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
11898 (verilog-in-paren-quick, verilog-re-search-backward-quick)
11899 (verilog-re-search-forward-quick, verilog-syntax-ppss):
11900 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
11901 is disabled and its cache will get corrupt, causing AUTOS not to
11902 expand. Instead use only -quick functions.
11903 (verilog-scan-region): Fix scanning over escaped quotes.
11904 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
11905 (verilog-re-search-backward-quick)
11906 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
11907 related functions now ignore strings, to fix misparsing of strings
11908 with magic comments embedded in them.
11909 (verilog-read-auto-template):
11910 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
11911 Reported by Brad Dobbie.
11912 (verilog-read-auto-template):
11913 Fix 'verilog-auto-inst-template-numbers' with comments.
11914 Reported by Brad Dobbie.
11915 (verilog-auto-inst, verilog-auto-inst-param)
11916 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
11917 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
11918 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
11919 debugging templates without merge conflicts, bug357.
11920 Reported by Brad Dobbie.
11921 (verilog-read-auto-template):
11922 Fix verilog-auto-inst-template-numbers with multiple templates.
11923 Reported by Brad Dobbie.
11924 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
11925 abbrevs so user won't be asked to save.
11926 (verilog-read-auto-lisp-present): Fix to start at beginning of
11927 buffer in case called outside of verilog-auto.
11928 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
11929 to "X-2". Reported by Matthew Myers.
11930 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
11931 all inputs from module templates. Reported by Leith Johnson.
11932 (verilog-module-inside-filename-p): Fix locating programs as with
11933 modules.
11934 (verilog-auto-inst-port): Fix vl-width expressions when using
11935 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
11936 (verilog-decls-get-regs, verilog-decls-get-signals,
11937 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
11938 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
11939 verilog-read-decls): Combine reg and wire structures into one var
11940 structure to represent SystemVerilog concepts.
11941 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
11942 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
11943 (verilog-auto-wire-type, verilog-insert-definition):
11944 Add verilog-auto-wire-type and AUTOLOGIC to support using
11945 SystemVerilog "logic" keyword instead of "wire"/"reg".
11946 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
11947 to declares outputs that also have assignments (presumably in an
11948 ifdef or generate if so there's not a driver conflict).
11949 Reported by Matthew Myers.
11950 (verilog-auto-declare-nettype, verilog-insert-definition):
11951 Add verilog-auto-declare-nettype to fix declarations using
11952 `default_nettype none. Reported by Julian Gorfajn.
11953 (verilog-read-always-signals-recurse, verilog-read-decls)
11954 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
11955 malformed end statement, bug325. Reported by Joshua Wise and
11956 Andrew Drake.
11957 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
11958 (verilog-inst-comment-re): Fix not deleting Interfaced comment
11959 when expanding .* in interfaces, bug320.
11960 Reported by Pierre-David Pfister.
11961 (verilog-read-module-name): Fix import statements between module
11962 name and open parenthesis, bug317.
11963 Reported by Pierre-David Pfister.
11964 (verilog-simplify-range-expression): Fix simplification of
11965 multiplications inside AUTOWIRE connections, bug303.
11966 (verilog-auto-inst-port): Support parameter expansion in
11967 multidimensional arrays.
11968 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
11969 after "assert property". Reported by Julian Gorfajn.
11970 (verilog-simplify-range-expression): Fix "couldn't merge" errors
11971 with multiplication, bug303.
11972 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
11973 Reported by Jan Frode Lonnum.
11974
11975 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
11976
11977 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
11978 (hfy-shell-file-name, hfy-shell):
11979 * international/fontset.el (x-decompose-font-name): Fix typos.
11980
11981 2011-11-29 Ken Brown <kbrown@cornell.edu>
11982
11983 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
11984 (gdb-version): Remove defvar.
11985 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
11986 (gdb-gud-context-command, gdb-non-stop-handler)
11987 (gdb-current-context-command, gdb-stopped): Use it.
11988 (gdb-init-1): Enable pretty printing here.
11989 (gdb-non-stop-handler): Don't enable pretty-printing here.
11990 Check to see if the target supports non-stop mode; if not, turn off
11991 non-stop mode. Use the following.
11992 (gdb-check-target-async): New defun.
11993 (gud-watch, gdb-stopped): Fix whitespace.
11994 (gdb-get-source-file): Don't try to display the source file if
11995 `gdb-main-file' is nil.
11996
11997 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
11998
11999 * align.el: Try to generate fewer markers (bug#10047).
12000 (align--set-marker): New macro.
12001 (align-region): Use it.
12002
12003 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12004
12005 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
12006
12007 2011-11-29 Chong Yidong <cyd@gnu.org>
12008
12009 * indent.el (indent-for-tab-command, indent-according-to-mode):
12010 Doc fix.
12011 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
12012
12013 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
12014
12015 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
12016 aware of remote file names. (Bug#10124)
12017
12018 2011-11-29 Chong Yidong <cyd@gnu.org>
12019
12020 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
12021
12022 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12023
12024 * files.el (find-file): Don't use force-same-window (bug#10144).
12025 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
12026 use pop-to-buffer if the selected window can't be used.
12027 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
12028
12029 2011-11-28 Eli Zaretskii <eliz@gnu.org>
12030
12031 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
12032 special-mode-map.
12033
12034 2011-11-28 Chong Yidong <cyd@gnu.org>
12035
12036 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
12037
12038 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
12039
12040 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
12041 gdb-get-source-file-list on gdb-create-source-file-list.
12042
12043 2011-11-26 Eli Zaretskii <eliz@gnu.org>
12044
12045 * whitespace.el (whitespace-newline): Use a different foreground
12046 color for 16-color light-background displays.
12047
12048 2011-11-24 Chong Yidong <cyd@gnu.org>
12049
12050 * window.el (display-buffer--special-action): Doc fix.
12051
12052 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
12053
12054 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
12055 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
12056 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
12057 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
12058 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
12059 (avl-tree-stack-first):
12060 * emacs-lisp/cconv.el (cconv--analyse-use):
12061 * net/gnutls.el (gnutls-negotiate): Fix typos.
12062
12063 2011-11-24 Glenn Morris <rgm@gnu.org>
12064
12065 * lpr.el (lpr-windows-system, lpr-lp-system):
12066 * mail/binhex.el (binhex-begin-line):
12067 * progmodes/grep.el (grep-history, grep-find-history):
12068 * textmodes/flyspell.el:
12069 * vc/pcvs-defs.el (cvs-global-menu):
12070 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
12071 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
12072 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
12073
12074 * net/tls.el: Fix case of "GnuTLS".
12075
12076 * paths.el (rmail-file-name): Format doc-string for make-docfile.
12077
12078 * version.el (emacs-build-system): Give it a doc-string.
12079
12080 2011-11-24 Juri Linkov <juri@jurta.org>
12081
12082 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
12083
12084 2011-11-24 Glenn Morris <rgm@gnu.org>
12085
12086 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
12087 if called on a non-mime message just toggle the headers. (Bug#8006)
12088
12089 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
12090
12091 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
12092 (allout-lead-with-comment-string, allout-structure-deleted-hook)
12093 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
12094 (allout-rebullet-heading, allout-open-sibtopic)
12095 (allout-toggle-current-subtree-encryption)
12096 (allout-toggle-subtree-encryption, allout-encrypt-string)
12097 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
12098 (allout-distinctive-bullets-string, allout-auto-activation):
12099 * window.el (window-normalize-buffer-to-display):
12100 * progmodes/verilog-mode.el (verilog-batch-indent):
12101 * textmodes/bibtex.el (bibtex-field-braces-opt)
12102 (bibtex-field-strings-opt):
12103 * vc/cvs-status.el (cvs-tree-merge):
12104 Fix typos.
12105
12106 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
12107
12108 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
12109 `non-essential' to t, in order to avoid remote connections.
12110
12111 2011-11-23 Eli Zaretskii <eliz@gnu.org>
12112
12113 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12114 On MS-DOS and MS-Windows, compare with loaddefs.el
12115 case-insensitively.
12116
12117 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
12118
12119 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
12120
12121 2011-11-23 Glenn Morris <rgm@gnu.org>
12122
12123 * paths.el (rmail-file-name): Reformat the doc-string so that it
12124 is picked up.
12125
12126 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
12127 (rmail-auto-file): Ignore case in the "special" field names,
12128 as mail-fetch-field does for all others.
12129
12130 * mail/rmail.el (rmail-forward):
12131 * mail/rmailkwd.el (rmail-set-label):
12132 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
12133 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
12134
12135 * mail/rmail.el (rmail-current-message): Doc fix.
12136
12137 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
12138
12139 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
12140
12141 * server.el (server-eval-and-print): Allow C-g (bug#6585).
12142
12143 2011-11-22 Glenn Morris <rgm@gnu.org>
12144
12145 * mail/rmailmm.el (test-rmail-mime-handler)
12146 (test-rmail-mime-bulk-handler)
12147 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
12148
12149 2011-11-21 Juri Linkov <juri@jurta.org>
12150
12151 * calc/calc.el (calc-read-key-sequence):
12152 Let-bind `input-method-function' to nil. (Bug#10018)
12153
12154 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12155
12156 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
12157 Tell the caller that the next line needs recomputation, even
12158 though it doesn't start a sexp (bug#10094).
12159
12160 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
12161
12162 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
12163
12164 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12165
12166 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
12167 Use force-same-window.
12168
12169 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12170
12171 * descr-text.el (describe-char-unicode-data):
12172 * json.el (json-string-escape):
12173 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
12174 (Footnote-unicode, Footnote-style-p):
12175 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
12176
12177 2011-11-20 Chong Yidong <cyd@gnu.org>
12178
12179 * window.el (replace-buffer-in-windows): Restore interactive spec.
12180
12181 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12182
12183 * electric.el (electric-indent-mode): Fix last change (too optimistic).
12184
12185 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
12186 (byte-compile-global-not-obsolete-vars): New var.
12187 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
12188 Use it.
12189 (byte-compile-warn-obsolete): Align text with the one in *Help*.
12190
12191 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12192
12193 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
12194 * progmodes/pascal.el (electric-pascal-equal):
12195 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
12196 * xml.el (xml-substitute-special): Fix typos.
12197
12198 2011-11-20 Glenn Morris <rgm@gnu.org>
12199
12200 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
12201 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
12202 Doc fixes.
12203 (rmail-decode-mime-charset): Mark as obsolete.
12204
12205 * mail/rmailsum.el (rmail-message-regexp-p-1):
12206 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
12207 Before using mime functions, check they are set. (Bug#10077)
12208
12209 2011-11-19 Juri Linkov <juri@jurta.org>
12210
12211 * info.el (Info-finder-find-node): Use `package--builtins' instead
12212 of `package-alist'. Use node names formed by the pattern "Keyword "
12213 and the keyword name.
12214
12215 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12216
12217 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
12218
12219 2011-11-19 Juri Linkov <juri@jurta.org>
12220
12221 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
12222 that calls `revert-buffer' on all Info buffers. (Bug#9915)
12223 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
12224 `old-history', `old-history-forward'. Add let-binding
12225 `window-selected'. Remove calls to `kill-buffer',
12226 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
12227 before calling `Info-find-node', so `Info-find-node-2' will reread
12228 the Info file. Restore window positions only when `window-selected'
12229 is non-nil.
12230
12231 2011-11-19 Juri Linkov <juri@jurta.org>
12232
12233 * isearch.el (isearch-lazy-highlight-new-loop):
12234 Remove condition `(not isearch-error)'. (Bug#9918)
12235
12236 * misearch.el (multi-isearch-search-fun): Add condition
12237 `(not bound)' to ignore lazy-highlighting search.
12238 Add the search-failed message "end of multi" when the end of
12239 multi-sequence is reached. Uncapitalize the search-failed
12240 message "Repeat for next buffer".
12241
12242 * info.el (Info-search): Add the search-failed message
12243 "end of the manual" when the end of the manual is reached
12244 in Isearch mode.
12245
12246 2011-11-19 Juri Linkov <juri@jurta.org>
12247
12248 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
12249 Use non-destructive `remove' instead of `delete' because
12250 `Info-history-list' stored to `Info-isearch-initial-history-list' in
12251 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
12252
12253 2011-11-19 Juri Linkov <juri@jurta.org>
12254
12255 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
12256 to nil instead of binding `search-ring' and `regexp-search-ring'.
12257 (Bug#9185)
12258
12259 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12260
12261 * simple.el (line-move): Force movement by logical lines for any
12262 hscrolled window, not only when auto-hscroll-mode is on.
12263 (line-move-visual): Update doc string to that effect. (Bug#10076)
12264
12265 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12266
12267 * language/european.el (macintosh): Define as alias for mac-roman.
12268
12269 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12270
12271 * mail/rmailmm.el (rmail-mime-display-header)
12272 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
12273 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
12274 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
12275 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
12276 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
12277 of a raw aref.
12278 (rmail-mime-entity-segment): To get past the tagline, move forward
12279 2 more lines, to account for the 2 empty lines that precede and
12280 follow the line with the buttons.
12281 (rmail-mime-update-tagline): Move one more line, to get past the
12282 empty line that follows the buttons in the tagline. (Bug#9520)
12283
12284 2011-11-19 Martin Rudalics <rudalics@gmx.at>
12285
12286 * window.el (window-max-delta-1, window-min-delta-1)
12287 (window-min-size-1, window-state-get-1, window-state-put-1)
12288 (window-state-put-2): Use "window--" prefix.
12289
12290 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
12291
12292 * emacs-lisp/smie.el: Improve warnings and conflict detection.
12293 (smie-warning-count): New var.
12294 (smie-set-prec2tab): Use it.
12295 (smie-bnf->prec2): Improve warnings. Add docstring.
12296 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
12297 (smie-bnf--set-class): New function.
12298 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
12299 corner case.
12300
12301 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
12302 (compilation-error-properties, compilation-move-to-column):
12303 Handle compilation-first-column while in the target buffer.
12304
12305 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
12306 Don't hardcode point-min==1.
12307
12308 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
12309 (eshell-rewrite-for-command): Remove workaround.
12310 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
12311 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
12312 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
12313
12314 * files-x.el (modify-file-local-variable): Obey commenting conventions.
12315
12316 2011-11-17 Glenn Morris <rgm@gnu.org>
12317
12318 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12319 Ignore buffer-local generated-autoload-file if it is the same
12320 as the global value. (Bug#10049)
12321
12322 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
12323
12324 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
12325 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
12326 (reftex-toc-previous-heading, reftex-toc-max-level)
12327 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
12328 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
12329 (reftex-toc-do-promote, reftex-toc-promote-prepare)
12330 (reftex-toc-promote-action, reftex-toc-extract-section-number)
12331 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
12332 (reftex-toc-rename-label, reftex-toc-visit-location)
12333 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
12334 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
12335 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
12336 leaving "*toc*" only for references to the buffer.
12337
12338 2011-11-17 Martin Rudalics <rudalics@gmx.at>
12339
12340 * window.el (window-resize, delete-window, split-window):
12341 Replace window-splits by window-combination-resize.
12342 * cus-start.el (window-splits): Replace by window-combination-resize.
12343
12344 2011-11-17 Glenn Morris <rgm@gnu.org>
12345
12346 * progmodes/sh-script.el (sh-font-lock-keywords-var):
12347 Make bash entry derive from sh entry, not shell entry.
12348
12349 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
12350
12351 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
12352 local file name.
12353
12354 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12355
12356 * menu-bar.el (menu-bar-file-menu):
12357 * printing.el (pr-ps-utility):
12358 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
12359 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
12360 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
12361 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
12362 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
12363 (icalendar--convert-cyclic-to-ical)
12364 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
12365 (icalendar--convert-ical-to-diary)
12366 (icalendar--convert-recurring-to-diary)
12367 (icalendar--convert-non-recurring-all-day-to-diary)
12368 (icalendar-import-format-sample):
12369 * progmodes/idlw-shell.el (idlwave-shell-mode):
12370 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
12371 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
12372 (vhdl-ps-print-init): Fix typos.
12373
12374 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
12375
12376 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
12377 FSF and collapse date sequence, obscure author/maintainer email address
12378 better, remove extra version line, track relocation of author's webpage.
12379
12380 * progmodes/python.el (python-pdbtrack-input-prompt)
12381 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
12382 regular python pdb prompts. Adjustments shamelessly taken exactly as
12383 suggested in EmacsWiki page (tiny change):
12384 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
12385
12386 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12387
12388 * expand.el (expand-pos, expand-index, expand-point):
12389 Remove redundant info from docstring.
12390 (expand-add-abbrevs): Doc fix.
12391 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
12392 (expand-sample-perl-mode-expand-list): Fix typos.
12393
12394 * net/dbus.el (dbus-event-member-name):
12395 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
12396 * term/pc-win.el (msdos-create-frame-with-faces):
12397 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
12398
12399 2011-11-16 Martin Rudalics <rudalics@gmx.at>
12400
12401 * window.el (split-window, window-state-get-1)
12402 (window-state-put-1, window-state-put-2): Rename occurrences of
12403 window-nest to window-combination-limit.
12404 * cus-start.el (window-nest): Rename to window-combination-limit.
12405
12406 2011-11-16 Chong Yidong <cyd@gnu.org>
12407
12408 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
12409 regexp (Bug#10033).
12410
12411 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
12412
12413 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
12414 `completing-read' will remove *Completions* and will preserve
12415 current-buffer for us.
12416 (tmm-add-prompt): Users of *Completions* will always (re)set its
12417 major mode.
12418 (tmm-old-comp-map): Remove.
12419
12420 2011-11-16 Glenn Morris <rgm@gnu.org>
12421
12422 * mail/rmailedit.el: Require rmailmm when compiling.
12423 (rmail-old-mime-state): New declaration.
12424 (rmail-edit-current-message): If editing a mime message,
12425 edit the "raw" message from the mbox buffer.
12426 (rmail-cease-edit): Handle mime messages. (Bug#9840)
12427
12428 2011-11-15 Glenn Morris <rgm@gnu.org>
12429
12430 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
12431 which wasn't being used. Add optional arg to force given state.
12432 (rmail-mime): Add optional arg to force given state.
12433
12434 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
12435
12436 * allout.el (allout-encryption-plaintext-sanitization-regexps):
12437 * frame.el (display-mm-dimensions-alist):
12438 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
12439 (outline-move-subtree-down):
12440 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
12441 (newsticker--treeview-do-get-node):
12442 * net/quickurl.el (quickurl-list-buffer-name):
12443 * progmodes/dcl-mode.el (dcl-mode):
12444 * progmodes/gdb-mi.el (gdb-mapcar*):
12445 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
12446
12447 2011-11-15 Glenn Morris <rgm@gnu.org>
12448
12449 * mail/rmail.el (rmail-file-coding-system): It's only ever used
12450 in a boolean sense, so just make it a boolean, and fix the doc.
12451 (rmail-show-mime-function, rmail-mime-feature)
12452 (rmail-require-mime-maybe): Doc fixes.
12453 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
12454
12455 * mail/rmailmm.el (rmail-show-mime): Doc fix.
12456
12457 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
12458
12459 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
12460 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
12461 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
12462 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
12463
12464 2011-11-15 Glenn Morris <rgm@gnu.org>
12465
12466 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
12467 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
12468 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
12469 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
12470 (rmail-mime, rmail-show-mime): Doc fixes.
12471
12472 * term/ns-win.el (mode-line-frame-identification):
12473 Leave it alone. (Bug#10051)
12474
12475 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
12476
12477 * mail/rmailout.el (rmail-output-to-rmail-buffer):
12478 Handle empty buffers. (Bug#9978)
12479
12480 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
12481
12482 * international/mule.el (define-charset):
12483 * mail/rmailmm.el (rmail-mime-find-header-encoding):
12484 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
12485 * progmodes/verilog-mode.el (verilog-backward-token):
12486 * textmodes/ispell.el (lookup-words):
12487 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
12488
12489 2011-11-14 Glenn Morris <rgm@gnu.org>
12490
12491 * progmodes/executable.el
12492 (executable-make-buffer-file-executable-if-script-p):
12493 Handle file-modes returning nil.
12494
12495 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
12496 message - not necessary, and causes problems. (Bug#9831)
12497
12498 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
12499
12500 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
12501
12502 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
12503 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
12504 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
12505
12506 2011-11-12 Martin Rudalics <rudalics@gmx.at>
12507
12508 * window.el (window-resize, delete-window): Use window-splits
12509 variable instead of function.
12510 (window-state-get-1, window-state-put-2, window-state-put):
12511 Don't deal with windows' splits status.
12512
12513 2011-11-12 Glenn Morris <rgm@gnu.org>
12514
12515 * apropos.el (apropos-do-all, apropos-library, apropos-value)
12516 (apropos-documentation): Doc fixes.
12517
12518 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
12519
12520 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
12521 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
12522
12523 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
12524
12525 * electric.el (electric-indent-post-self-insert-function): Make it
12526 possible for a char to only indent in some circumstances.
12527 (electric-indent-mode): Simplify.
12528
12529 2011-11-11 Martin Rudalics <rudalics@gmx.at>
12530
12531 * window.el (windows-with-parameter): Remove unused function.
12532 (windows-at-side): Rename to window-at-side-list.
12533 (window-check, window-atom-check, window-atom-check-1)
12534 (window-side-check, window-size-ignore, window-size-fixed-1)
12535 (window-in-direction-2): Prefix with "window--".
12536 (window-tree-1): Rename to window--subtree, fix doc-string.
12537
12538 2011-11-11 Glenn Morris <rgm@gnu.org>
12539
12540 * subr.el (eval-after-load): If FILE is already loaded,
12541 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
12542
12543 2011-11-10 Glenn Morris <rgm@gnu.org>
12544
12545 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
12546 Call svn via vc-svn-command rather than vc-do-command.
12547 (vc-svn-command): Add --non-interactive. (Bug#9993)
12548 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
12549
12550 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
12551 Add toggle-read-only. (Bug#7292)
12552 * files.el (toggle-read-only): Mention that it should only
12553 be used interactively. (Bug#10006)
12554
12555 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
12556
12557 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12558 Adjust regexp for OCaml warnings.
12559
12560 * electric.el (electric-pair-post-self-insert-function): Let user
12561 turn it off buffer-locally (bug#9932).
12562
12563 * progmodes/python.el (python-beginning-of-statement):
12564 Rewrite (bug#2703).
12565
12566 * progmodes/compile.el: Better handle TABs (bug#9749).
12567 (compilation-internal-error-properties)
12568 (compilation-next-error-function): Obey the target buffer's
12569 compilation-error-screen-columns.
12570
12571 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
12572
12573 * progmodes/meta-mode.el: Remove obsolete comments.
12574 (meta-right-comment-regexp, meta-ignore-comment-regexp):
12575 Fix typos in docstrings.
12576
12577 2011-11-09 Martin Rudalics <rudalics@gmx.at>
12578
12579 * window.el (window-size-fixed-p): Rewrite doc-string.
12580 (window-resizable-p): Rename to window--resizable-p. Update callers.
12581 (window--resizable): New function. Make all callers of
12582 window-resizable call window--resizable instead.
12583 (window-resizable): Rewrite in terms of window--resizable.
12584
12585 2011-11-08 Glenn Morris <rgm@gnu.org>
12586
12587 * progmodes/delphi.el (delphi-mode-syntax-table):
12588 Let define-derived-mode define a proper syntax table. (Bug#9994)
12589
12590 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
12591
12592 * window.el: Stay away from defsubst.
12593 (window-list-no-nils): Remove.
12594 (window-state-get-1, window-state-get): Use backquote instead.
12595
12596 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12597
12598 * emacs-lisp/find-func.el (find-function-read):
12599 Fix incorrect use of default argument in `completing-read'.
12600
12601 2011-11-08 Martin Rudalics <rudalics@gmx.at>
12602
12603 * window.el (display-buffer-function, special-display-function):
12604 Mention display-buffer-record-window but do not mention
12605 help-setup parameter in doc-strings.
12606 (window-min-delta): Fix doc-string typo.
12607
12608 2011-11-08 Chong Yidong <cyd@gnu.org>
12609
12610 * window.el (window-total-height, window-total-width): Doc fix.
12611 (window-body-size): Move from C.
12612 (window-body-height, window-body-width): Move to C.
12613
12614 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
12615
12616 * window.el: Make special-display like display-buffer-alist (bug#9532).
12617 (display-buffer--special-action): New function, morphed
12618 from display-buffer--special.
12619 (display-buffer): Use it to handle special-display-buffers at higher
12620 priority (just after display-buffer-alist).
12621 (display-buffer-fallback-action, display-buffer--other-frame-action)
12622 (pop-to-buffer-same-window): Remove display-buffer--special.
12623
12624 2011-11-07 Glenn Morris <rgm@gnu.org>
12625
12626 * calendar/cal-menu.el (cal-menu-set-date-title):
12627 Do nothing if not in a calendar. (Bug#9976)
12628
12629 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
12630
12631 * files.el (find-file): Always use selected-window.
12632
12633 2011-11-07 Martin Rudalics <rudalics@gmx.at>
12634
12635 * window.el (window-combinations): Make WINDOW argument
12636 mandatory. Rewrite doc-string.
12637 (walk-window-subtree, window-atom-check, window-min-delta)
12638 (window-max-delta, window--resize-this-window)
12639 (window--resize-root-window-vertically, window-tree)
12640 (balance-windows, window-state-put): Rewrite doc-strings as to
12641 not mention the term "subwindow".
12642 (window--resize-subwindows-skip-p): Rename to
12643 window--resize-child-windows-skip-p.
12644 (window--resize-subwindows-normal): Rename to
12645 window--resize-child-windows-normal.
12646 (window--resize-subwindows): Rename to
12647 window--resize-child-windows.
12648 (window-or-subwindow-p): Rename to window--in-subtree-p.
12649
12650 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
12651
12652 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
12653 Ensure that mbox format messages end in two newlines (Bug#9974).
12654
12655 2011-11-06 Chong Yidong <cyd@gnu.org>
12656
12657 * window.el (window-combination-p): Function deleted; its
12658 side-effect is not used in any existing code.
12659 (window-combinations, window-combined-p): Call window-*-child
12660 directly.
12661
12662 2011-11-05 Chong Yidong <cyd@gnu.org>
12663
12664 * window.el (window-valid-p): Rename from window-any-p.
12665 (window-size-ignore, window-state-get): Callers changed.
12666 (window-normalize-window): Rename from window-normalize-any-window.
12667 New arg LIVE-ONLY, replacing window-normalize-live-window.
12668 (window-normalize-live-window): Delete.
12669 (window-combination-p, window-combined-p, window-combinations)
12670 (walk-window-subtree, window-atom-root, window-min-size)
12671 (window-sizable, window-sizable-p, window-size-fixed-p)
12672 (window-min-delta, window-max-delta, window-resizable)
12673 (window-resizable-p, window-full-height-p, window-full-width-p)
12674 (window-current-scroll-bars, window-point-1, set-window-point-1)
12675 (window-at-side-p, window-in-direction, window-resize)
12676 (adjust-window-trailing-edge, maximize-window, minimize-window)
12677 (window-deletable-p, delete-window, delete-other-windows)
12678 (record-window-buffer, unrecord-window-buffer)
12679 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
12680 (quit-window, split-window, window-state-put)
12681 (set-window-text-height, fit-window-to-buffer)
12682 (shrink-window-if-larger-than-buffer): Callers changed.
12683
12684 2011-11-04 Eli Zaretskii <eliz@gnu.org>
12685
12686 * mail/rmail.el (rmail-simplified-subject): Decode subject with
12687 rfc2047-decode-string.
12688 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
12689 warnings.
12690
12691 * window.el (window-body-height, window-body-width): Mention in
12692 the doc string that the return values are in frame's canonical
12693 units. (Bug#9949)
12694
12695 2011-11-03 Alan Mackenzie <acm@muc.de>
12696
12697 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
12698 change in cc-engine.el.
12699
12700 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
12701
12702 * window.el (switch-to-buffer): Use `force-same-window' interactively.
12703
12704 2011-11-02 Martin Rudalics <rudalics@gmx.at>
12705
12706 * window.el (quit-window): Call unrecord-window-buffer after
12707 showing another buffer in the window. (Bug#9937)
12708 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
12709
12710 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
12711
12712 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
12713 Accept status with more than 9 shelves. (Bug#9935)
12714 Reported by Colin D Bennett <colin@gibibit.com>.
12715
12716 2011-11-01 Martin Rudalics <rudalics@gmx.at>
12717
12718 * help.el (with-help-window): Don't reference
12719 temp-buffer-show-specifiers in doc-string.
12720
12721 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
12722
12723 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
12724 menu-item.
12725
12726 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12727
12728 * whitespace.el: New version 13.2.2.
12729 (whitespace-newline-mode): Disable properly. Reported by Sarah
12730 <EmacsWiki>.
12731
12732 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
12733
12734 * net/newst-treeview.el: Remove "Time-stamp".
12735 (newsticker--group-manage-orphan-feeds): Do not call
12736 newsticker--treeview-tree-update.
12737 (newsticker-treeview-update, newsticker-treeview):
12738 Call newsticker--treeview-tree-update if necessary.
12739
12740 2011-10-30 Martin Rudalics <rudalics@gmx.at>
12741
12742 * window.el (window-iso-combination-p, window-iso-combined-p)
12743 (window-iso-combinations): Remove "iso-" infix.
12744 Suggested by Chong Yidong.
12745 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
12746 (window-max-delta-1, window-resize, window--resize-siblings)
12747 (window--resize-this-window, adjust-window-trailing-edge)
12748 (split-window, balance-windows-1)
12749 (shrink-window-if-larger-than-buffer):
12750 * calendar/calendar.el (calendar-generate-window):
12751 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
12752
12753 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
12754
12755 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
12756 in place (bug#9907).
12757 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
12758 (eshell-rewrite-if-command, eshell-rewrite-for-command)
12759 (eshell-structure-basic-command, eshell-rewrite-while-command)
12760 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
12761 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
12762 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
12763 (eshell-do-pipelines-synchronously, eshell-eval-command):
12764 Use backquotes and prefer setq to set.
12765 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
12766 (eshell-macrop): Use functionp.
12767 (eshell-do-eval): Handle multiple expressions in `while' body.
12768
12769 2011-10-30 Chong Yidong <cyd@gnu.org>
12770
12771 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
12772 instead of set-mark (Bug#9810).
12773
12774 2011-10-30 Chong Yidong <cyd@gnu.org>
12775
12776 * window.el (split-window-below, split-window-right): Rename from
12777 split-window-above-each-other and split-window-side-by-side
12778 respectively. All callers changed.
12779 (split-window-sensibly, split-window-sensibly): Use them.
12780 (split-window-keep-point): Doc fix.
12781
12782 * isearch.el: Add isearch-scroll property to split-window-below
12783 and split-window-right.
12784
12785 * follow.el (follow-mode):
12786 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
12787 * progmodes/ada-xref.el (ada-gdb-application):
12788 * emulation/vip.el (vip-buffer-in-two-windows):
12789 * image-dired.el (image-dired-dired-with-window-configuration):
12790 * dired-x.el (dired-do-find-marked-files):
12791 * dired.el (dired-pop-to-buffer):
12792 * bs.el (bs--show-with-configuration):
12793 * vc/emerge.el (emerge-setup-windows):
12794 * textmodes/two-column.el (2C-two-columns):
12795 * textmodes/reftex-toc.el (reftex-toc):
12796 * progmodes/gdb-mi.el (gdb-setup-windows):
12797 * progmodes/fortran.el (fortran-window-create):
12798 * net/newst-treeview.el (newsticker--treeview-window-init):
12799 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
12800 * emulation/tpu-edt.el (tpu-gold-map):
12801 * emulation/crisp.el (crisp-mode-map):
12802 * calendar/calendar.el (calendar-basic-setup): Callers changed.
12803
12804 2011-10-29 Chong Yidong <cyd@gnu.org>
12805
12806 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
12807
12808 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
12809
12810 * textmodes/flyspell.el (flyspell-word): Fix char offset for
12811 forged Ispell output (Bug#7904).
12812
12813 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
12814
12815 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12816
12817 * doc-view.el: Avoid ugly errors about not finding nil.
12818 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
12819 (doc-view-dvipdf-program, doc-view-unoconv-program)
12820 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
12821 Avoid nil or absolute file name as default value.
12822 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
12823
12824 2011-10-28 Alan Mackenzie <acm@muc.de>
12825
12826 * progmodes/cc-defs.el (c-version): -> 5.32.2.
12827
12828 2011-10-28 Alan Mackenzie <acm@muc.de>
12829
12830 Amend the handling of c-beginning/end-of-defun in nested declaration
12831 scopes.
12832
12833 * progmodes/cc-vars.el (c-defun-tactic): Move here from
12834 cc-langs.el. Change it to a defcustom.
12835
12836 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
12837 cc-vars.el.
12838
12839 * progmodes/cc-engine.el (c-beginning-of-statement-1):
12840 Prevent "class foo : bar" being spuriously recognized as a label.
12841
12842 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
12843 Add parameter `inclusive' (to include enclosing braces in the region).
12844 (c-widen-to-enclosing-decl-scope): New function.
12845 (c-while-widening-to-decl-block): New macro.
12846 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
12847 outward for defun boundaries, and correspondingly change symbol
12848 `respect-enclosure' to `go-outward'.
12849 (c-declaration-limits): Change algorithm to report only the "innermost"
12850 defun's boundaries.
12851
12852 2011-10-28 Deniz Dogan <deniz@dogan.se>
12853
12854 * net/rcirc.el (rcirc-mode): Use hard newlines.
12855
12856 2011-10-28 Alan Mackenzie <acm@muc.de>
12857
12858 Amend to indent and fontify macros "which include their own semicolon"
12859 correctly, using the "virtual semicolon" mechanism.
12860
12861 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
12862
12863 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
12864 Recode to scan one line at a time rather than having \n and \r
12865 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
12866 (c-forward-label): Amend for virtual semicolons.
12867 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
12868
12869 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
12870 of the new C macros.
12871
12872 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
12873 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
12874 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
12875 (c-opt-cpp-macro-define): Make into a full language variable.
12876 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
12877 AWK Mode (including \n, \r) removed, no longer needed.
12878
12879 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
12880 Invoke c-make-macro-with-semi-re.
12881
12882 * progmodes/cc-vars.el (c-macro-with-semi-re):
12883 (c-macro-names-with-semicolon): New variables.
12884 (c-make-macro-with-semi-re): New function.
12885
12886 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12887
12888 * vc/log-edit.el: Fill empty field rather than adding new one.
12889 (log-edit-add-field): New function.
12890 (log-edit-insert-changelog): Use it.
12891
12892 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
12893
12894 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
12895
12896 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12897
12898 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
12899 (gdb--check-interpreter): New function.
12900 (gdb): Use it.
12901
12902 2011-10-27 Glenn Morris <rgm@gnu.org>
12903
12904 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
12905 (least-positive-float, least-negative-float)
12906 (least-positive-normalized-float, least-negative-normalized-float)
12907 (float-epsilon, float-negative-epsilon):
12908 Remove unnecessary declarations.
12909
12910 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
12911 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
12912 (least-positive-float, least-negative-float)
12913 (least-positive-normalized-float, least-negative-normalized-float)
12914 (float-epsilon, float-negative-epsilon): Add doc-strings,
12915 based on those in cl.texi.
12916
12917 * files.el (set-visited-file-name): If the major-mode changed,
12918 reload the local variables. (Bug#9796)
12919
12920 2011-10-27 Chong Yidong <cyd@gnu.org>
12921
12922 * subr.el (change-major-mode-after-body-hook): New hook.
12923 (run-mode-hooks): Run it.
12924
12925 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
12926 Use change-major-mode-before-body-hook.
12927
12928 * simple.el (fundamental-mode):
12929 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
12930 change introducing fundamental-mode-hook.
12931
12932 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
12933
12934 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
12935
12936 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
12937
12938 * ido.el (ido-file-name-all-completions-1): Do not require
12939 tramp.el explicitly. (Bug#7583)
12940
12941 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
12942
12943 * progmodes/octave-mod.el:
12944 * progmodes/octave-inf.el: Update maintainer.
12945
12946 2011-10-26 Chong Yidong <cyd@gnu.org>
12947
12948 * subr.el (with-wrapper-hook): Rewrite doc.
12949
12950 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
12951
12952 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
12953 filenames "/method:foo:". (Bug#9793)
12954
12955 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
12956
12957 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
12958 (bug#9865).
12959
12960 2011-10-24 Glenn Morris <rgm@gnu.org>
12961
12962 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
12963
12964 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
12965
12966 * notifications.el: Add the requirement of a running D-Bus session
12967 bus to the Commentary.
12968
12969 2011-10-24 Juri Linkov <juri@jurta.org>
12970
12971 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
12972 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
12973 (Bug#9364)
12974
12975 2011-10-24 Juri Linkov <juri@jurta.org>
12976
12977 * info.el (Info-following-node-name-re): Add newline to the list
12978 of allowed characters for leading space. (Bug#9824)
12979
12980 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
12981
12982 * progmodes/octave-inf.el (inferior-octave-mode-map):
12983 Fix C-c C-h binding.
12984 * progmodes/octave-mod.el (octave-help): Remove.
12985
12986 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
12987
12988 Sync with Tramp 2.2.3.
12989
12990 * net/tramp-cache.el (top): Pacify byte-compiler using
12991 `init-file-user' and `site-run-file'.
12992
12993 * net/trampver.el: Update release number.
12994
12995 2011-10-23 Chong Yidong <cyd@gnu.org>
12996
12997 * files.el (toggle-read-only): Remove obsolete comment about
12998 version control.
12999
13000 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
13001 for toggle-read-only. Note that this hasn't called vc-next-action
13002 since 2008-05-02, though it wasn't documented at the time.
13003
13004 * vc/ediff-init.el (ediff-toggle-read-only-function):
13005 Use toggle-read-only.
13006
13007 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
13008
13009 Fix bug #9560, sporadic wrong indentation; improve instrumentation
13010 of c-parse-state.
13011
13012 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
13013 correct faulty logical expression.
13014 (c-parse-state-state, c-record-parse-state-state):
13015 (c-replay-parse-state-state): New defvar/defuns.
13016 (c-debug-parse-state): Use new functions.
13017
13018 2011-10-22 Martin Rudalics <rudalics@gmx.at>
13019
13020 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
13021 last fix. Use window-in-direction correctly.
13022
13023 2011-10-21 Chong Yidong <cyd@gnu.org>
13024
13025 * progmodes/idlwave.el (idlwave-mode):
13026 * progmodes/vera-mode.el (vera-mode): No need to set
13027 require-final-newline; that's done in prog-mode.
13028 Suggested by Stefan Monnier.
13029
13030 2011-10-21 Martin Rudalics <rudalics@gmx.at>
13031
13032 * mouse.el (mouse-drag-window-above)
13033 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
13034 (mouse-drag-mode-line-1, mouse-drag-header-line)
13035 (mouse-drag-vertical-line-rightward-window): Remove.
13036 (mouse-drag-line): New function.
13037 (mouse-drag-mode-line, mouse-drag-header-line)
13038 (mouse-drag-vertical-line): Call mouse-drag-line.
13039 * window.el (window-at-side-p, windows-at-side): New functions.
13040
13041 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
13042
13043 * tar-mode.el (tar-grind-file-mode):
13044 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
13045
13046 2011-10-21 Chong Yidong <cyd@gnu.org>
13047
13048 * progmodes/idlwave.el (idlwave-mode):
13049 * progmodes/vera-mode.el (vera-mode):
13050 Use mode-require-final-newline.
13051
13052 2011-10-20 Glenn Morris <rgm@gnu.org>
13053
13054 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
13055
13056 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
13057
13058 * emulation/cua-base.el (cua-set-mark): Fix case of string.
13059
13060 2011-10-20 Chong Yidong <cyd@gnu.org>
13061
13062 * emulation/cua-base.el (cua-mode):
13063 * mail/footnote.el (footnote-mode):
13064 * mail/mailabbrev.el (mail-abbrevs-mode):
13065 * net/xesam.el (xesam-minor-mode):
13066 * progmodes/bug-reference.el (bug-reference-mode):
13067 * progmodes/cap-words.el (capitalized-words-mode):
13068 * progmodes/compile.el (compilation-minor-mode)
13069 (compilation-shell-minor-mode):
13070 * progmodes/gud.el (gud-tooltip-mode):
13071 * progmodes/hideif.el (hide-ifdef-mode):
13072 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
13073 * progmodes/subword.el (subword-mode):
13074 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
13075 * progmodes/which-func.el (which-function-mode):
13076 * term/tvi970.el (tvi970-set-keypad-mode):
13077 * term/vt100.el (vt100-wide-mode):
13078 * textmodes/flyspell.el (flyspell-mode):
13079 * textmodes/ispell.el (ispell-minor-mode):
13080 * textmodes/nroff-mode.el (nroff-electric-mode):
13081 * textmodes/paragraphs.el (use-hard-newlines):
13082 * textmodes/refill.el (refill-mode):
13083 * textmodes/reftex.el (reftex-mode):
13084 * textmodes/rst.el (rst-minor-mode):
13085 * textmodes/sgml-mode.el (html-autoview-mode)
13086 (sgml-electric-tag-pair-mode):
13087 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
13088 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
13089 * emulation/crisp.el (crisp-mode):
13090 * emacs-lisp/eldoc.el (eldoc-mode):
13091 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
13092 minor mode behavior.
13093
13094 2011-10-19 Juri Linkov <juri@jurta.org>
13095
13096 * descr-text.el (describe-char): Add #x2010 and #x2011 to
13097 the list of hard-coded chars with escape-glyph face.
13098
13099 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
13100
13101 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
13102
13103 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
13104
13105 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
13106 running process.
13107
13108 2011-10-19 Glenn Morris <rgm@gnu.org>
13109
13110 * vc/vc-bzr.el (vc-bzr-after-dir-status):
13111 Ignore ignored files. (Bug#9726)
13112
13113 2011-10-19 Chong Yidong <cyd@gnu.org>
13114
13115 Doc fix for minor modes, stating that an omitted argument enables
13116 the mode unconditionally when called from Lisp.
13117
13118 * abbrev.el (abbrev-mode):
13119 * allout.el (allout-mode):
13120 * autoinsert.el (auto-insert-mode):
13121 * autoarg.el (autoarg-mode, autoarg-kp-mode):
13122 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
13123 (global-auto-revert-mode):
13124 * battery.el (display-battery-mode):
13125 * composite.el (global-auto-composition-mode)
13126 (auto-composition-mode):
13127 * delsel.el (delete-selection-mode):
13128 * desktop.el (desktop-save-mode):
13129 * dired-x.el (dired-omit-mode):
13130 * dirtrack.el (dirtrack-mode):
13131 * doc-view.el (doc-view-minor-mode):
13132 * double.el (double-mode):
13133 * electric.el (electric-indent-mode, electric-pair-mode):
13134 * emacs-lock.el (emacs-lock-mode):
13135 * epa-hook.el (auto-encryption-mode):
13136 * follow.el (follow-mode):
13137 * font-core.el (font-lock-mode):
13138 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
13139 * help.el (temp-buffer-resize-mode):
13140 * hilit-chg.el (highlight-changes-mode)
13141 (highlight-changes-visible-mode):
13142 * hi-lock.el (hi-lock-mode):
13143 * hl-line.el (hl-line-mode, global-hl-line-mode):
13144 * icomplete.el (icomplete-mode):
13145 * ido.el (ido-everywhere):
13146 * image-file.el (auto-image-file-mode):
13147 * image-mode.el (image-minor-mode):
13148 * iswitchb.el (iswitchb-mode):
13149 * jka-cmpr-hook.el (auto-compression-mode):
13150 * linum.el (linum-mode):
13151 * longlines.el (longlines-mode):
13152 * master.el (master-mode):
13153 * mb-depth.el (minibuffer-depth-indicate-mode):
13154 * menu-bar.el (menu-bar-mode):
13155 * minibuf-eldef.el (minibuffer-electric-default-mode):
13156 * mouse-sel.el (mouse-sel-mode):
13157 * msb.el (msb-mode):
13158 * mwheel.el (mouse-wheel-mode):
13159 * outline.el (outline-minor-mode):
13160 * paren.el (show-paren-mode):
13161 * recentf.el (recentf-mode):
13162 * reveal.el (reveal-mode, global-reveal-mode):
13163 * rfn-eshadow.el (file-name-shadow-mode):
13164 * ruler-mode.el (ruler-mode):
13165 * savehist.el (savehist-mode):
13166 * scroll-all.el (scroll-all-mode):
13167 * scroll-bar.el (scroll-bar-mode):
13168 * server.el (server-mode):
13169 * shell.el (shell-dirtrack-mode):
13170 * simple.el (auto-fill-mode, transient-mark-mode)
13171 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
13172 (line-number-mode, column-number-mode, size-indication-mode)
13173 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
13174 * strokes.el (strokes-mode):
13175 * time.el (display-time-mode):
13176 * t-mouse.el (gpm-mouse-mode):
13177 * tool-bar.el (tool-bar-mode):
13178 * tooltip.el (tooltip-mode):
13179 * type-break.el (type-break-mode-line-message-mode)
13180 (type-break-query-mode):
13181 * view.el (view-mode):
13182 * whitespace.el (whitespace-mode, whitespace-newline-mode)
13183 (global-whitespace-mode, global-whitespace-newline-mode):
13184 * xt-mouse.el (xterm-mouse-mode): Doc fix.
13185
13186 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13187 Fix autogenerated docstring.
13188
13189 2011-10-19 Juri Linkov <juri@jurta.org>
13190
13191 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
13192 by checking environment variables "DESKTOP_SESSION" and
13193 "XDG_CURRENT_DESKTOP". (Bug#9779)
13194
13195 2011-10-19 Juri Linkov <juri@jurta.org>
13196
13197 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
13198 (browse-url-chromium-program, browse-url-chromium-arguments):
13199 New defcustoms.
13200 (browse-url-default-browser): Check for `browse-url-chromium' and
13201 call `browse-url-chromium-program'.
13202 (browse-url-chromium): New command. (Bug#9779)
13203
13204 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
13205
13206 * facemenu.el (list-colors-duplicates): On Windows, detect more
13207 duplicates by assuming that only colors matching "^System" are
13208 special "system colors". (Bug#9722)
13209
13210 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13211
13212 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
13213 to distinguish the author from the committer.
13214
13215 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
13216
13217 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
13218
13219 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
13220
13221 * international/mule.el (sgml-html-meta-auto-coding-function):
13222 Add support for detecting encoding in HTML5 specified only as
13223 <meta charset="UTF-8">. Implementation just makes http-equiv and
13224 content-type parts from HTML4 encoding string optional. (Bug#9716)
13225
13226 2011-10-18 Glenn Morris <rgm@gnu.org>
13227
13228 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
13229
13230 2011-10-18 Chong Yidong <cyd@gnu.org>
13231
13232 * faces.el (cursor): Doc fix.
13233
13234 2011-10-17 Chong Yidong <cyd@gnu.org>
13235
13236 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
13237
13238 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
13239
13240 * dirtrack.el (dirtrack): Support shell buffers with path
13241 prefixes, e.g. tramp-based remote shells. (Bug#9647)
13242
13243 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
13244
13245 * json.el: Bump version to 1.3 and note change in History.
13246 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
13247
13248 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13249
13250 * comint.el (comint-insert-input, comint-send-input)
13251 (comint-get-old-input-default, comint-backward-matching-input)
13252 (comint-next-prompt): Use nil instead of `input' for field property of
13253 past user input (bug#114).
13254
13255 * minibuffer.el (completion--replace): Inherit surrounding properties
13256 (bug#114).
13257 (minibuffer-complete-and-exit): Use it.
13258
13259 * comint.el (comint--table-subvert): Quote the all-completions output
13260 (bug#9160).
13261
13262 2011-10-17 Martin Rudalics <rudalics@gmx.at>
13263
13264 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
13265
13266 * menu-bar.el (menu-bar-file-menu): Add entry for making new
13267 window on right of selected. (Bug#9350) Reword other window
13268 entries and separate them from frame entries.
13269
13270 2011-10-15 Glenn Morris <rgm@gnu.org>
13271
13272 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
13273 Doc fixes.
13274
13275 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
13276
13277 * net/network-stream.el (network-stream-open-starttls):
13278 Improve detection of failure due to lack of TLS support.
13279
13280 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
13281 putting the input text in front and in bold.
13282
13283 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13284
13285 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
13286
13287 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
13288 empty buffer.
13289
13290 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
13291 unread-command-events rather than pushing yet-another event.
13292
13293 2011-10-14 Eli Zaretskii <eliz@gnu.org>
13294
13295 * mail/sendmail.el (sendmail-query-once): Improve the wording of
13296 the explanation of the possible choices. Make the options passed
13297 to completing-read shorter.
13298
13299 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13300
13301 * textmodes/flyspell.el (flyspell-large-region): Make sure
13302 extended character mode is used if defined (Bug#1339).
13303
13304 2011-10-13 Eli Zaretskii <eliz@gnu.org>
13305
13306 * simple.el (what-cursor-position): Fix the display of the
13307 character info for LRE, LRO, RLE, and RLO characters by appending
13308 an invisible PDF.
13309
13310 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
13311
13312 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
13313 even in case of error; add debug spec; simplify data flow.
13314 (with-timeout-handler): Remove.
13315
13316 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
13317
13318 Fix Bug#6019, Bug#9315.
13319
13320 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
13321 complete `buffer-file-name', the local file name part could look
13322 remotely (for example on VMS).
13323
13324 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
13325 `tramp-run-real-handler'.
13326 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
13327 already quoted by '"'.
13328
13329 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
13330 Let `file-name-handler-alist' be nil, the local file name part
13331 could look remotely (for example on VMS).
13332
13333 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
13334
13335 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
13336 from here...
13337 (flyspell-post-command-hook): ...to here.
13338
13339 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13340
13341 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
13342 if not needed.
13343 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
13344 using completion. Protect against "slow" callers.
13345 Remove the "message hack".
13346
13347 2011-10-11 Juri Linkov <juri@jurta.org>
13348
13349 * isearch.el (isearch-lazy-highlight-word): New variable.
13350 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
13351 Use it. (Bug#9727)
13352
13353 2011-10-11 Glenn Morris <rgm@gnu.org>
13354
13355 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
13356 like f90-previous-statement does.
13357
13358 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13359
13360 * eshell/eshell.el (eshell-command): History should be saved
13361 only in interactive use, to avoid error.
13362
13363 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13364
13365 * minibuffer.el (completion-file-name-table): Fix last change,
13366 i.e. ignore normal errors but not the other ones.
13367
13368 2011-10-10 Martin Rudalics <rudalics@gmx.at>
13369
13370 * window.el (special-display-buffer-names)
13371 (special-display-regexps): Remove some remnants of earlier
13372 changes from doc-strings.
13373 (quit-windows-on): New function.
13374
13375 * vc/vc.el (vc-revert, vc-rollback):
13376 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
13377 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
13378 (Bug#6183) (Bug#7074) (Bug#7447)
13379
13380 2011-10-09 Martin Rudalics <rudalics@gmx.at>
13381
13382 * window.el (frame-auto-hide-function): Add version tag.
13383 (Bug#9699)
13384
13385 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
13386
13387 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
13388 condition.
13389
13390 2011-10-09 Leo Liu <sdl.web@gmail.com>
13391
13392 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
13393 (Bug#9701)
13394
13395 2011-10-08 Glenn Morris <rgm@gnu.org>
13396
13397 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
13398 before the first code statement zero indent. (Bug#9690)
13399
13400 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
13401
13402 * simple.el (count-words-region): Always count in the region.
13403 Report the number of lines and characters too.
13404 (count-words): New command, which counts in the buffer if the
13405 region is inactive, as count-words-region used to.
13406 (count-words--message): New function. Handle plurals.
13407 (count-lines-region): Make it an alias for count-words-region.
13408
13409 * bindings.el (esc-map): Replace count-lines-region with
13410 count-words-region.
13411
13412 2011-10-08 Martin Rudalics <rudalics@gmx.at>
13413
13414 * window.el (window--delete): Delete dedicated frame
13415 unconditionally when argument KILL is non-nil. (Bug#9699)
13416 (switch-to-buffer): Fix doc-string typo.
13417
13418 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13419
13420 * eshell/eshell.el (eshell-command): Avoid using hooks.
13421
13422 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
13423
13424 * bindings.el ([M-left],[M-right]): Bind to left-word and
13425 right-word respectively.
13426
13427 2011-10-07 Glenn Morris <rgm@gnu.org>
13428
13429 * cus-start.el (debug-on-quit): Fix custom type.
13430
13431 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
13432
13433 * subr.el (define-key-after): Clarify that the function is not
13434 useful for non-menu keymaps.
13435
13436 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
13437
13438 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13439
13440 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
13441 in current minibuffer (Fix bug with recursive minibuffers).
13442
13443 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
13444
13445 * progmodes/gdb-mi.el (gdb): Doc fix.
13446
13447 2011-10-05 Martin Rudalics <rudalics@gmx.at>
13448
13449 * window.el (frame-auto-hide-function): New option replacing
13450 frame-auto-delete. Suggested by Stefan Monnier.
13451 (window--delete): Call frame-auto-hide-function instead of
13452 investigating frame-auto-delete.
13453 (window-point-1, set-window-point-1): New functions.
13454 (window-in-direction, record-window-buffer, window-state-get-1)
13455 (display-buffer-record-window): Use window-point-1 instead of
13456 window-point.
13457 (set-window-buffer-start-and-point): Use set-window-point-1.
13458
13459 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13460
13461 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
13462
13463 2011-10-05 Glenn Morris <rgm@gnu.org>
13464
13465 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
13466 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
13467
13468 2011-10-05 Leo Liu <sdl.web@gmail.com>
13469
13470 * subr.el (read-char-choice): Fix argument to buffer-live-p which
13471 works with buffer object.
13472
13473 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13474
13475 * mpc.el (mpc-tool-bar-map): Add labels.
13476
13477 2011-10-04 Glenn Morris <rgm@gnu.org>
13478
13479 * calendar/holidays.el (calendar-check-holidays): Doc fix.
13480
13481 2011-10-04 Martin Rudalics <rudalics@gmx.at>
13482
13483 * window.el (window--delete): New function.
13484 (frame-auto-delete): Resuscitate option.
13485 (bury-buffer, replace-buffer-in-windows)
13486 (quit-window): Rewrite using window--delete.
13487 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
13488 Pass display-buffer-mark-dedicated to window--display-buffer-2
13489 (Bug#9639).
13490
13491 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
13492
13493 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
13494 returns a list (bug#9554). Add remote file name completion.
13495 * comint.el (comint--table-subvert): Curry and get quote&unquote
13496 functions as arguments.
13497 (comint--complete-file-name-data): Adjust call accordingly.
13498 * pcomplete.el (pcomplete--table-subvert): Remove.
13499 (pcomplete-completions-at-point): Use comint--table-subvert instead.
13500
13501 * minibuffer.el (completion-table-case-fold): Use currying.
13502 (completion--styles-type, completion--cycling-threshold-type):
13503 New constants.
13504 (completion-styles, completion-category-overrides)
13505 (completion-cycle-threshold): Use them.
13506 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
13507 completion-table-case-fold.
13508
13509 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
13510
13511 * minibuffer.el (completion-category-overrides): Fix type of styles
13512 and add more user friendly tags (bug#9660).
13513
13514 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
13515
13516 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
13517 (mule-input-method-string): New widget.
13518 (default-input-method, language-info-custom-alist): Use it.
13519
13520 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
13521
13522 * pcomplete.el: Require comint.
13523 (pcomplete--common-suffix): Remove.
13524 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
13525 (pcomplete--table-subvert): Sync with comint--table-subvert.
13526 (pcomplete--entries): Use comint-completion-file-name-table.
13527 * comint.el (comint-unquote-filename): Simplify.
13528 (comint-completion-file-name-table): New function (bug#9616).
13529 (comint--complete-file-name-data): Use it.
13530
13531 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
13532 (pcmpl-gnu-tar-buffer): Remove.
13533 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
13534 around. Make sure pcomplete-suffix-list is only changed temporarily.
13535 Don't look inside the tar's file if it's too large.
13536
13537 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
13538
13539 * cus-edit.el (custom-mode-map):
13540 * epa.el (epa-key-list-mode-map):
13541 * man.el (Man-mode-map):
13542 * startup.el (splash-screen-keymap):
13543 * simple.el (special-mode-map): Use scroll-up-command and
13544 scroll-down-command.
13545
13546 * progmodes/idlw-help.el (idlwave-help-mode-map):
13547 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
13548 * net/newst-plainview.el (newsticker-mode-map):
13549 * emulation/ws-mode.el (wordstar-mode-map):
13550 * emulation/vi.el (vi-com-map):
13551 * calc/calc-graph.el (calc-graph-show-dumb):
13552 * term/sun.el (terminal-init-sun):
13553 * term/ns-win.el (global-map):
13554 * progmodes/grep.el (grep-mode-map):
13555 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
13556 * mail/rmail.el (rmail-mode-map):
13557 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
13558
13559 * custom.el (custom-safe-themes, load-theme): Treat value of t for
13560 custom-safe-themes as special.
13561
13562 2011-10-01 Julien Danjou <julien@danjou.info>
13563
13564 * notifications.el (notifications-notify): Fix docstring.
13565
13566 2011-10-01 Per Starbäck <per@starback.se>
13567
13568 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
13569
13570 2011-09-30 Martin Rudalics <rudalics@gmx.at>
13571
13572 * startup.el (command-line-1): Fix last fix by inserting
13573 initial-scratch-message into *scratch* before displaying it.
13574 (Bug#9605) and (Bug#9636)
13575
13576 2011-09-29 Eli Zaretskii <eliz@gnu.org>
13577
13578 * simple.el (line-move): If auto-hscroll-mode is disabled and the
13579 window is hscrolled, move by logical lines. (Bug#9607)
13580 (line-move-visual): Update the doc string to the above effect.
13581
13582 2011-09-29 Martin Rudalics <rudalics@gmx.at>
13583
13584 * window.el (display-buffer-record-window): When WINDOW is the
13585 selected window use `point' instead of `window-point'. (Bug#9626)
13586
13587 * startup.el (command-line-1): Use insert-before-markers when
13588 inserting initial-scratch-message. (Bug#9605)
13589
13590 * help.el (help-window): Remove variable.
13591
13592 2011-09-29 Glenn Morris <rgm@gnu.org>
13593
13594 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
13595
13596 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
13597
13598 * descr-text.el (describe-char-categories): Accept category
13599 descriptions more than one line long.
13600
13601 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
13602
13603 * simple.el (delete-trailing-whitespace): Fix last change.
13604
13605 * progmodes/perl-mode.el (perl-syntax-propertize-function):
13606 Don't confuse "y => 3" as the beginning of a `y' operation.
13607
13608 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
13609 object has more than 4 slots (bug#9613).
13610
13611 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
13612
13613 * subr.el (with-output-to-temp-buffer):
13614 * net/quickurl.el (quickurl, quickurl-browse-url):
13615 Fix typos in docstrings.
13616
13617 2011-09-27 Eli Zaretskii <eliz@gnu.org>
13618
13619 * minibuffer.el (completion-styles)
13620 (completion-category-overrides): Cross reference each other in doc
13621 strings.
13622
13623 2011-09-27 Glenn Morris <rgm@gnu.org>
13624
13625 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
13626 to split-string. (Bug#9606)
13627
13628 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
13629
13630 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
13631 (bug#9615).
13632
13633 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
13634
13635 * emacs-lisp/package.el (list-packages): Fix echo area message.
13636
13637 2011-09-27 Leo Liu <sdl.web@gmail.com>
13638
13639 * ido.el (ido-read-internal): Accept cons cell HIST arg.
13640
13641 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
13642
13643 * net/dbus.el (dbus-unregister-object): Don't release services for
13644 registered signals. (Bug#9581)
13645
13646 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
13647
13648 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
13649 function that picks between cfengine 2 and 3 support
13650 automatically. Update docs accordingly.
13651
13652 2011-09-22 Kenichi Handa <handa@m17n.org>
13653
13654 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
13655 ZERO.
13656 (indian-itrans-v5-table-for-tamil): New variable.
13657 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
13658
13659 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
13660
13661 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
13662 that's true if the current command involved collapsing of text.
13663 It's reset to false at the beginning of the next command.
13664 (allout-post-command-business): Move the cursor to the beginning
13665 of entry if the cursor is hidden and collapsing activity just
13666 happened.
13667
13668 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
13669
13670 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
13671 tracking (Bug#9541).
13672
13673 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
13674
13675 * net/newst-reader.el (newsticker-html-renderer)
13676 (newsticker-show-news): Automatically load html rendering package
13677 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
13678 because w3m-fill-column is let-bound" and the error "Symbol's value
13679 as variable is void: w3m-fill-column".
13680
13681 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
13682
13683 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
13684 Release services only if they are defined. (Bug#9581)
13685
13686 2011-09-23 Richard Stallman <rms@gnu.org>
13687
13688 * textmodes/paragraphs.el (forward-sentence): For backwards case,
13689 distinguish start of paragraph from start of its text.
13690
13691 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
13692
13693 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
13694 (rmail-generate-viewer-buffer): Put that hook on view buffer.
13695 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
13696
13697 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
13698
13699 * international/mule-diag.el (mule-diag): Insert a newline after
13700 each fontset description.
13701
13702 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
13703
13704 * simple.el (delete-trailing-whitespace):
13705 Document last change; simplify.
13706
13707 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
13708
13709 * simple.el (delete-trailing-whitespace): Also delete
13710 extra newlines at the end of the buffer.
13711
13712 * textmodes/picture.el: Make motion commands obey shift-select-mode.
13713 (picture-newline): Use forward-line so as to ignore fields.
13714
13715 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
13716
13717 * subr.el (with-wrapper-hook): Fix edebug spec.
13718
13719 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
13720
13721 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
13722 (bug#4538).
13723
13724 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
13725
13726 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
13727 Fix nasty bug using wrong cached values.
13728
13729 2011-09-23 Alan Mackenzie <acm@muc.de>
13730
13731 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
13732
13733 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
13734
13735 * window.el (pop-to-buffer): Ensure right window is selected if we
13736 chose another frame.
13737
13738 2011-09-22 Eli Zaretskii <eliz@gnu.org>
13739
13740 * simple.el (what-cursor-position): Use get-char-property-change
13741 and next-single-char-property-change, to be able to show display
13742 properties that come from overlays as well as text properties.
13743
13744 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
13745
13746 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
13747
13748 * cmuscheme.el (run-scheme, switch-to-scheme):
13749 * cus-edit.el (customize-group, custom-buffer-create)
13750 (customize-browse):
13751 * info.el (info):
13752 * shell.el (shell):
13753 * mail/sendmail.el (mail):
13754 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
13755
13756 2011-09-22 Richard Stallman <rms@gnu.org>
13757
13758 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
13759 move back only to line beg, don't move back over blank lines.
13760
13761 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
13762
13763 * files.el (copy-directory): Set directory attributes only in case
13764 they could be retrieved from the source directory. (Bug#9565)
13765
13766 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
13767
13768 * progmodes/hideshow.el (hs-looking-at-block-start-p)
13769 (hs-find-block-beginning, hs-hide-level-recursive):
13770 Ignore strings as well as comments. (Bug#9502)
13771
13772 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
13773
13774 * progmodes/sql.el (sql-comint-postgres):
13775 Convert port number to a string. (Bug#9566)
13776
13777 2011-09-22 Martin Rudalics <rudalics@gmx.at>
13778
13779 * window.el (quit-window): Undedicate window when switching to
13780 previous buffer. Reported by Thierry Volpiatto
13781 <thierry.volpiatto@gmail.com>.
13782 (special-display-popup-frame): When popping up a new frame reset
13783 its previous buffers to nil. Simplify code.
13784
13785 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
13786
13787 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
13788 and process filter, as done also in `shell-command'.
13789
13790 2011-09-21 Martin Rudalics <rudalics@gmx.at>
13791
13792 * window.el (set-window-buffer-start-and-point):
13793 Call set-window-start with NOFORCE argument t.
13794 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
13795 (quit-window): Reword doc-string. Handle new format of
13796 quit-restore parameter. Don't delete window if it has a
13797 previous buffer we can show instead of the present one.
13798 (display-buffer-record-window): Rewrite using a new format for
13799 the quit-restore window parameter
13800 (special-display-popup-frame, display-buffer-same-window)
13801 (display-buffer-reuse-window, display-buffer-pop-up-frame)
13802 (display-buffer-pop-up-window, display-buffer-use-some-window):
13803 Adapt symbol passed to display-buffer-record-window.
13804 * help.el (help-window-setup): Handle new format of quit-restore
13805 parameter.
13806
13807 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
13808
13809 * faces.el (face-list): Fix docstring (bug#9564).
13810
13811 * window.el (display-buffer--action-function-custom-type):
13812 Don't include internal functions in the Custom interface.
13813
13814 2011-09-20 Juri Linkov <juri@jurta.org>
13815
13816 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
13817 (Info-forward-node, Info-backward-node, Info-next-preorder)
13818 (Info-last-preorder): Use it. (Bug#9528)
13819
13820 2011-09-20 Juri Linkov <juri@jurta.org>
13821
13822 * info.el (Info-last-preorder): Visit last menu item only when
13823 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
13824
13825 2011-09-20 Julien Danjou <julien@danjou.info>
13826
13827 * password-cache.el (password-cache-remove): Remove entries even if the
13828 value is nil, so that password with a nil value (negative caching) is
13829 possible to invalidate.
13830
13831 2011-09-20 Lawrence Mitchell <wence@gmx.li>
13832
13833 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
13834 all whitespace around breakpoint. (Bug#9553)
13835 (f90-find-breakpoint): Only break at whitespace inside a comment.
13836
13837 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
13838
13839 * minibuffer.el (completion-file-name-table): Keep track of errors.
13840 (completion-table-with-predicate): Handle the case where pred1 is nil.
13841 * pcomplete.el (pcomplete-completions-at-point): Simplify.
13842
13843 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
13844
13845 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
13846 (debugger-return-value): Signal an error if the debugging context does
13847 not await any return value.
13848
13849 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
13850 * image-mode.el (image-toggle-display-text)
13851 (image-toggle-display-image): Stay away from evil `intangible'.
13852
13853 2011-09-19 Leo Liu <sdl.web@gmail.com>
13854
13855 * replace.el (occur-revert-arguments): Make it permanent-local.
13856 (occur-mode): Don't call font-lock-defontify.
13857
13858 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
13859
13860 * net/ldap.el (ldap-search-internal): Don't push empty search
13861 result (Bug#9508).
13862
13863 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
13864
13865 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
13866
13867 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
13868
13869 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
13870 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
13871
13872 2011-09-18 Juri Linkov <juri@jurta.org>
13873
13874 * buff-menu.el (Buffer-menu-mode-map):
13875 * dired.el (dired-mode-map):
13876 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
13877 (lisp-interaction-mode-map):
13878 * emacs-lisp/package.el (package-menu-mode-map):
13879 * epa.el (epa-key-list-mode-map):
13880 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
13881 (menu-bar-options-menu):
13882 * outline.el (outline-mode-menu-bar-map):
13883 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
13884 * vc/vc-dir.el (vc-dir-menu-map):
13885 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
13886 Capitalize non-function content words in menu item strings.
13887
13888 * dired.el (dired-mode-map): Add menu item for
13889 `image-dired-dired-toggle-marked-thumbs'.
13890
13891 2011-09-18 Juri Linkov <juri@jurta.org>
13892
13893 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
13894 to `isearch-case-fold-search' and restore its original value
13895 after the `isearch-mode' call.
13896
13897 2011-09-18 Juri Linkov <juri@jurta.org>
13898
13899 * progmodes/grep.el (grep-process-setup): Don't check code for 1
13900 because `zgrep' returns 1 for successful matches (bug#9226).
13901
13902 2011-09-18 Juri Linkov <juri@jurta.org>
13903
13904 * info.el (Info-extract-menu-node-name): Check the second match
13905 for empty string (second test-case of bug#9528).
13906 (Info-last-preorder): Let-bind `Info-history' to nil to not add
13907 intermediate nodes to the history (first test-case of bug#9528).
13908
13909 2011-09-18 Juri Linkov <juri@jurta.org>
13910
13911 * info.el (Info-mode-syntax-table): New variable.
13912 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
13913
13914 2011-09-18 Juri Linkov <juri@jurta.org>
13915
13916 * info.el (Info-file-supports-index-cookies):
13917 Increment line-beginning-position's arg from 3 to 4 because makeinfo
13918 outputs one more line for long file names (bug#4142).
13919
13920 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
13921
13922 * newcomment.el (comment-normalize-vars): If prompting for
13923 comment-start, set comment-start-skip too (Bug#8424).
13924
13925 2011-09-18 Johan Bockgård <bojohan@gnu.org>
13926
13927 * icomplete.el: Fix previous fix of Bug#5849.
13928 (icomplete-mode): Don't set completion-show-inline-help.
13929 (icomplete-minibuffer-setup): Set completion-show-inline-help
13930 locally during icompletion.
13931
13932 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
13933
13934 * woman.el (woman2-process-escapes): Don't delete unrecognized
13935 escapes (Bug#7843).
13936
13937 * files.el (inhibit-first-line-modes-regexps): Add image files.
13938 (hack-local-variables-prop-line): Return nil for malformed
13939 prop-lines (Bug#9044).
13940
13941 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
13942
13943 * net/tramp.el (top): Don't require 'shell.
13944 (tramp-methods): Fix docstring.
13945 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
13946 Return complete remote file name. Handle "smb" case.
13947 Use `tramp-tmpdir', if defined for the respective method.
13948 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
13949
13950 * net/tramp-compat.el (top): Require 'shell.
13951
13952 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
13953 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
13954 `tramp-current-host'.
13955 (tramp-get-remote-tmpdir): Remove.
13956
13957 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
13958 `tramp-tmpdir' entries.
13959 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
13960 (tramp-smb-handle-file-attributes): Ignore errors.
13961 (tramp-smb-wait-for-output): Check also for process end.
13962
13963 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
13964
13965 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
13966 when sending QUIT (bug#9312).
13967
13968 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
13969
13970 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
13971 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
13972 occur-mode-display-occurrence.
13973 (occur-edit-mode): Add usage message.
13974 (occur-cease-edit): New command.
13975 (occur-after-change-function): Use text properties to find the
13976 position of the prefix text.
13977 (occur-engine): Set stickiness of prefix text properties.
13978
13979 2011-09-17 Glenn Morris <rgm@gnu.org>
13980
13981 * progmodes/etags.el (complete-tag):
13982 Fix call to completion-in-region. (Bug#9526)
13983
13984 2011-09-17 Juri Linkov <juri@jurta.org>
13985
13986 * textmodes/ispell.el (ispell-word): Add to the error message
13987 the word, ispell program name and current dictionary (bug#9121).
13988 (ispell-tex-arg-end): Capitalize "error" in the error message.
13989
13990 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
13991
13992 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
13993 check. (Bug#4251)
13994
13995 2011-09-17 Juri Linkov <juri@jurta.org>
13996
13997 * window.el (window-safe-min-height, window-safe-min-width):
13998 Fix typos (followup to bug#9522).
13999
14000 2011-09-17 Sven Joachim <svenjoac@gmx.de>
14001
14002 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
14003
14004 2011-09-16 Eli Zaretskii <eliz@gnu.org>
14005
14006 * simple.el (line-move): If goal-column is set, move by logical
14007 lines, not by display lines. (Bug#971)
14008 (next-line, previous-line, goal-column, line-move-visual): Doc fix
14009 to reflect the above change.
14010
14011 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
14012
14013 * image.el (imagemagick-register-types): Use regexp-opt.
14014
14015 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14016
14017 * window.el (display-buffer-base-action): Rename from
14018 display-buffer-default-action. Make default value empty.
14019 (display-buffer-overriding-action): Convert to defvar.
14020 (display-buffer-fallback-action): New var.
14021
14022 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14023
14024 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
14025 declaration.
14026 (package--add-to-archive-contents): If there is a duplicate entry
14027 with an older version, remove it.
14028 (package-menu-mark-delete, package-menu-mark-install)
14029 (package-menu-mark-unmark): Make unused args optional.
14030 (package-menu-mark-obsolete-for-deletion):
14031 Use package-menu-get-status instead of a regexp search.
14032 (package-menu-get-status): Use tabulated-list-entry.
14033 (package-menu-mark-upgrades): New command.
14034 (package-menu-mode-map): Bind it to U. Add it to menu bar.
14035 (package-menu-execute): Do installation before deletion.
14036 (package-menu-refresh, package-menu-execute): Use derived-mode-p
14037 instead of checking major-mode.
14038 (package-menu--find-upgrades): New function.
14039
14040 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
14041
14042 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
14043 passwords in the log buffer.
14044 (smtpmail-process-filter): Update the process marker so that the
14045 "broken by peer" status message is inserted in the right place.
14046
14047 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
14048
14049 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
14050 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
14051 bibtex-completion-at-point-function.
14052 (bibtex-completion-at-point-function): Use them.
14053
14054 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
14055
14056 * mpc.el (mpc-constraints-tag-lookup): New function.
14057 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
14058 also to browser "album|playlist".
14059
14060 2011-09-14 Juri Linkov <juri@jurta.org>
14061
14062 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
14063 (isearch-edit-string): Use length of `isearch-string' when
14064 `isearch-fail-pos' returns nil.
14065 (isearch-message): Remove duplicate code and call
14066 `isearch-fail-pos' with arg `t'.
14067
14068 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
14069
14070 * replace.el (occur-mode-goto-occurrence): Don't force using other
14071 window (Bug#9499).
14072
14073 * dired-aux.el (dired-do-chmod): Don't provide initial input.
14074
14075 2011-09-14 Martin Rudalics <rudalics@gmx.at>
14076
14077 * window.el (display-buffer-window): Remove.
14078 (display-buffer-record-window): Use help-setup window parameter
14079 instead of variable display-buffer-window.
14080 (display-buffer-function, special-display-buffer-names)
14081 (special-display-function): Mention help-setup parameter instead
14082 of display-buffer-window in doc-string.
14083 * help.el (help-window-setup): New argument help-window.
14084 Use help-window-setup parameter instead of display-buffer-window.
14085 Reword some messages.
14086 (with-help-window): Pass window used for displaying the buffer
14087 to help-window-setup. Don't set display-buffer-window.
14088
14089 2011-09-13 Glenn Morris <rgm@gnu.org>
14090
14091 * emacs-lisp/debug.el (debugger-make-xrefs):
14092 Preserve point. (Bug#9462)
14093
14094 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14095
14096 * window.el (window-deletable-p): Use next-frame.
14097
14098 2011-09-13 Martin Rudalics <rudalics@gmx.at>
14099
14100 * window.el (window-auto-delete): Remove.
14101 (window-deletable-p): Remove argument FORCE. Don't deal with
14102 dedication and previous buffers.
14103 (switch-to-prev-buffer): Don't delete window.
14104 (delete-windows-on): Delete a window's frame if and only if the
14105 window is dedicated.
14106 (replace-buffer-in-windows): Delete buffer's window or frame if
14107 and only if window is dedicated.
14108 (quit-window): Handle quit-restore as before last change.
14109 (bury-buffer): Delete window only if window-deletable-p returns t.
14110
14111 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14112
14113 * window.el (window-deletable-p): Never delete the last frame on a
14114 given terminal.
14115
14116 2011-09-13 Glenn Morris <rgm@gnu.org>
14117
14118 * help.el (describe-key-briefly): Copy previous standard-output change.
14119
14120 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
14121
14122 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
14123
14124 2011-09-13 Glenn Morris <rgm@gnu.org>
14125
14126 * emacs-lisp/lisp-mode.el (lisp-indent-function):
14127 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
14128
14129 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
14130
14131 * dired-aux.el (dired-mark-read-string): Don't return default
14132 value on empty input (Bug#9361).
14133 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
14134 Omit initial minibuffer contents.
14135 (dired-do-chmod): Signal an error on empty input.
14136 (dired-mark-read-string): Don't return default on empty input.
14137
14138 * files.el (file-modes-symbolic-to-number): Doc fix.
14139
14140 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14141
14142 * international/mule-cmds.el (ucs-completions): Remove.
14143 (read-char-by-name): Use complete-with-action instead; add metadata.
14144
14145 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14146
14147 * window.el (display-buffer--action-function-custom-type)
14148 (display-buffer--action-custom-type): New vars.
14149 (display-buffer-alist, display-buffer-default-action)
14150 (display-buffer-overriding-action): Add defcustom types.
14151
14152 * frame.el (delete-other-frames): Doc fix (Bug#276).
14153
14154 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14155
14156 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
14157
14158 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14159
14160 Change modes that used same-window-* vars to use switch-to-buffer.
14161
14162 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
14163 Use switch-to-buffer.
14164
14165 * cus-edit.el (customize-group, custom-buffer-create)
14166 (customize-browse, custom-buffer-create-other-window):
14167 Use switch-to-buffer or switch-to-buffer-other-window.
14168
14169 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
14170 (Info-prev, Info-up, Info-speedbar-goto-node)
14171 (info-display-manual): Use switch-to-buffer.
14172 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
14173
14174 * mail/sendmail.el (mail): Use switch-to-buffer.
14175 (mail-recover): Use switch-to-buffer-other-window.
14176
14177 * cmuscheme.el (run-scheme, switch-to-scheme):
14178 * ielm.el (ielm):
14179 * shell.el (shell):
14180 * net/rlogin.el (rlogin):
14181 * net/telnet.el (telnet, rsh):
14182 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
14183
14184 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
14185
14186 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
14187
14188 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14189
14190 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
14191 so don't mention it (bug#9301).
14192 (dired-sort-toggle-or-edit): Clarify string further.
14193
14194 * faces.el (face-spec-set-match-display): Make `(type graphic)'
14195 match `x', `w32' and `ns', like the manual says (bug#9029).
14196
14197 * subr.el (eval-after-load): Doc string clarification (bug#9125).
14198 (process-kill-buffer-query-function): Mention the buffer name in
14199 the query.
14200
14201 * image-mode.el (image-next-line): The line parameter is mandatory
14202 (bug#9258).
14203
14204 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
14205 which can be useful (bug#9301).
14206
14207 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
14208
14209 * subr.el (match-string): Mention that the current buffer should
14210 be the same as the search was done in (bug#9282).
14211
14212 * facemenu.el: Disable the remove-* commands if the mark isn't
14213 active (bug#9162).
14214
14215 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14216
14217 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
14218 of display-buffer.
14219 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
14220
14221 * replace.el (occur-mode-goto-occurrence)
14222 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
14223 and display-buffer.
14224
14225 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
14226 display-buffer.
14227
14228 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
14229 special-display and same-window variables.
14230 (mail-other-window): Use switch-to-buffer-other-window.
14231 (mail-other-frame): USe switch-to-buffer-other-frame.
14232
14233 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
14234 Use display-buffer-other-frame.
14235 (gdb-display-gdb-buffer): Use pop-to-buffer.
14236
14237 * progmodes/gud.el (gud-goto-info): Use info-other-window.
14238
14239 * progmodes/python.el: Don't set same-window-buffer-names.
14240
14241 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
14242
14243 * window.el (display-buffer-alist): Add *Python*.
14244
14245 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14246
14247 * window.el (display-buffer-alist): Add entry for buffers
14248 previously handled same-window-*.
14249 (display-buffer-alist, display-buffer-default-action)
14250 (display-buffer-overriding-action): Mark as risky.
14251 (display-buffer-alist): Document action function changes.
14252 (display-buffer--same-window-action)
14253 (display-buffer--other-frame-action): New variables.
14254 (switch-to-buffer, display-buffer-other-frame): Use them.
14255 (display-buffer): Rename reuse-frame entry to reusable-frames.
14256 (display-buffer-reuse-selected-window): Function deleted.
14257 (display-buffer-reuse-window): Handle reusable-frames alist entry.
14258 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
14259 (display-buffer-special): New function.
14260 (display-buffer--maybe-pop-up-frame-or-window): Rename from
14261 display-buffer-reuse-or-pop-window. Split off special-display
14262 part into display-buffer-special.
14263 (display-buffer-use-some-window): Don't perform any special
14264 pop-up-frames handling.
14265 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
14266 (display-buffer--maybe-same-window): Rename from
14267 display-buffer-maybe-same-window.
14268
14269 * info.el: Don't set same-window-regexps.
14270 (info-setup): New function.
14271 (info-other-window, info): Call it.
14272
14273 * cus-edit.el: Don't set same-window-regexps.
14274 (customize-group): New argument.
14275 (customize-group-other-window): Use it.
14276 (customize-face, customize-face-other-window): Likewise.
14277 (custom-buffer-create-other-window): Use pop-to-buffer directly.
14278
14279 * net/rlogin.el:
14280 * net/telnet.el:
14281 * progmodes/gud.el: Don't set same-window-regexps.
14282
14283 * cmuscheme.el:
14284 * ielm.el:
14285 * shell.el:
14286 * mail/sendmail.el:
14287 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
14288
14289 2011-09-10 Juri Linkov <juri@jurta.org>
14290
14291 * isearch.el (isearch-edit-string): Remove obsolete mention of
14292 `C-w' (`isearch-yank-word-or-char') from docstring.
14293 (isearch-query-replace): Fix typo in docstring (bug#9466).
14294
14295 2011-09-10 Juri Linkov <juri@jurta.org>
14296
14297 * paren.el (show-paren-function): Don't show escaped parens.
14298 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
14299
14300 2011-09-10 Eli Zaretskii <eliz@gnu.org>
14301
14302 * mail/sendmail.el (mml-to-mime, mml-attach-file)
14303 (mm-default-file-encoding): Remove autoload forms, they are
14304 replaced with autoload cookies in mml.el and mm-encode.el.
14305 (mail-add-attachment): New command.
14306 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
14307 (mail-mode): Mention mail-insert-file and mail-add-attachment in
14308 the doc string.
14309 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
14310
14311 2011-09-10 Reuben Thomas <rrt@sc3d.org>
14312
14313 * simple.el (count-words-region): Use buffer if there's no region
14314 (bug#9429).
14315
14316 2011-09-09 Juri Linkov <juri@jurta.org>
14317
14318 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
14319 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
14320 (wdired-isearch-filter-read-only): New function. (Bug#6362)
14321
14322 2011-09-09 Alan Mackenzie <acm@muc.de>
14323
14324 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
14325 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
14326
14327 2011-09-09 Eli Zaretskii <eliz@gnu.org>
14328
14329 Fix for Savannah bug#9392.
14330 * simple.el (mail-encode-mml): New defvar.
14331
14332 * mail/rmail.el (mail-encode-mml): Add a defvar.
14333 (rmail-enable-mime-composing): Default to t.
14334 (rmail-forward): Use MIME method of forwarding only if both
14335 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
14336 Set mail-encode-mml non-nil if the MIME method was used.
14337
14338 * mail/sendmail.el (mml-to-mime): Add autoload form.
14339 (mail-encode-mml): Add a defvar.
14340 (mail-mode): Make mail-encode-mml buffer-local and initialize it
14341 to nil.
14342 (mail-send): If mail-encode-mml is non-nil, run the outgoing
14343 message through mml-to-mime, and reset mail-encode-mml to nil.
14344
14345 2011-09-09 Glenn Morris <rgm@gnu.org>
14346
14347 * woman.el (woman-if-body): When processing an .el block,
14348 do not delete the next .el block as well. (Bug#9447)
14349 (woman-special-characters): Add oq, cq, and hy characters.
14350
14351 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14352
14353 * window.el (window-deletable-p): Make sure window is live before
14354 invoking window-prev-buffers.
14355
14356 2011-09-08 Leo Liu <sdl.web@gmail.com>
14357
14358 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
14359
14360 2011-09-08 Juri Linkov <juri@jurta.org>
14361
14362 * progmodes/compile.el (compilation-environment): Make it
14363 a defcustom (bug#8340).
14364
14365 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14366
14367 * window.el (frame-auto-delete): Rename to window-auto-delete.
14368 Make it control auto-deletion of windows and/or frames.
14369 (window-deletable-p): New argument FORCE. Rewrite conditions
14370 for deleting window/frame. (Bug#9419)
14371 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
14372 Rewrite handling of case when window/frame can be deleted.
14373 (delete-windows-on): Call window-deletable-p with new FORCE
14374 argument t. (Bug#9456)
14375
14376 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
14377
14378 * help-mode.el (help-mode): Restore autoload.
14379
14380 2011-09-07 Juri Linkov <juri@jurta.org>
14381
14382 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
14383 `compilation-environment'. Set buffer-local
14384 `compilation-environment' to `thisenv' later after (funcall mode).
14385 (Bug#8340)
14386
14387 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
14388 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
14389 instead of replacing its value. (Bug#8340)
14390
14391 2011-09-07 Juri Linkov <juri@jurta.org>
14392
14393 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
14394 based on text properties put by `grep-filter' instead of matching
14395 escape sequences.
14396 (grep-mode): Set buffer-local `compilation-error-screen-columns'
14397 to the value of `grep-error-screen-columns' (bug#9438).
14398
14399 2011-09-07 Juri Linkov <juri@jurta.org>
14400
14401 * simple.el (next-error-highlight, next-error-highlight-no-select):
14402 Doc fix (bug#9432).
14403
14404 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
14405
14406 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
14407 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
14408
14409 2011-09-07 Leo Liu <sdl.web@gmail.com>
14410
14411 * net/rcirc.el (rcirc-mode): Conditionally initialize
14412 rcirc-input-ring.
14413
14414 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
14415
14416 * emacs-lisp/find-func.el (find-function-C-source): Only set
14417 find-function-C-source-directory after checking that we found a source
14418 file there (bug#9440).
14419
14420 2011-09-06 Alan Mackenzie <acm@muc.de>
14421
14422 * isearch.el (isearch-other-meta-char): Wherever a key list is
14423 unread, "unread" the prefix arg, too. This fixes bug #8901.
14424
14425 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
14426
14427 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
14428
14429 2011-09-05 Juri Linkov <juri@jurta.org>
14430
14431 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
14432
14433 2011-09-05 Juri Linkov <juri@jurta.org>
14434
14435 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
14436 keeping point where processing of grep matches begins, and
14437 continue to delete remaining escape sequences from the same point.
14438 (grep-filter): Make leading zero optional in "0?1;31m" because
14439 git-grep emits "\033[1;31m" escape sequences unlike expected
14440 "\033[01;31m" as GNU Grep does (bug#9408).
14441 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
14442
14443 2011-09-05 Juri Linkov <juri@jurta.org>
14444
14445 * subr.el (y-or-n-p): Capitalize "yes".
14446
14447 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
14448
14449 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
14450 `tramp-cache-unload-hook' where appropriate.
14451 (tramp-methods): Rename `tramp-remote-sh' to
14452 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
14453 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
14454
14455 * net/tramp-sh.el (top): Don't require 'shell.
14456 (tramp-methods): Add `tramp-remote-shell' and
14457 `tramp-remote-shell-args' entries.
14458 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
14459 (tramp-sh-handle-shell-command): Remove.
14460 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
14461 Use `tramp-remote-shell'.
14462
14463 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
14464
14465 * mail/sendmail.el (sendmail-query-once-function): Delete.
14466 (sendmail-query-once): Save directly to send-mail-function.
14467 Update message-send-mail-function too.
14468
14469 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
14470
14471 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
14472
14473 * progmodes/python.el (python-mode-map): Use correct function to
14474 start python interpreter from menu-bar (as reported by Geert
14475 Kloosterman).
14476 (inferior-python-mode-map): Fix typo.
14477 (python-shell-map): Remove.
14478
14479 2011-09-03 Deniz Dogan <deniz@dogan.se>
14480
14481 * net/rcirc.el (rcirc-print): Simplify code for
14482 rcirc-scroll-show-maximum-output. There is no need to walk
14483 through all windows to find the right one.
14484
14485 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
14486
14487 * help.el (help-return-method): Doc fix.
14488
14489 2011-09-03 Martin Rudalics <rudalics@gmx.at>
14490
14491 * window.el (window-deletable-p): Don't return a non-nil value
14492 when there's a buffer that was shown in the window before.
14493 (Bug#9419)
14494 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14495 Set window's previous buffers to nil.
14496
14497 2011-09-03 Eli Zaretskii <eliz@gnu.org>
14498
14499 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
14500 newline before and after the tag line, so it doesn't interfere
14501 with determining the paragraph direction of bidirectional text.
14502
14503 2011-09-03 Leo Liu <sdl.web@gmail.com>
14504
14505 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
14506
14507 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
14508
14509 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
14510 (pop-to-buffer): Change interactive spec. Pass second argument
14511 directly to display-buffer.
14512 (display-buffer): Fix interactive spec. Use functionp to
14513 distinguish between a function and a list of functions.
14514
14515 * abbrev.el (edit-abbrevs):
14516 * arc-mode.el (archive-extract):
14517 * autoinsert.el (auto-insert):
14518 * bookmark.el (bookmark-bmenu-list):
14519 * files.el (find-file):
14520 * view.el (view-buffer):
14521 * progmodes/compile.el (compilation-goto-locus):
14522 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
14523
14524 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
14525
14526 * window.el (display-buffer-alist): Doc fix.
14527 (display-buffer): Add docstring. Don't treat
14528 display-buffer-default specially.
14529 (display-buffer-reuse-selected-window)
14530 (display-buffer-same-window, display-buffer-maybe-same-window)
14531 (display-buffer-reuse-window, display-buffer-pop-up-frame)
14532 (display-buffer-pop-up-window)
14533 (display-buffer-reuse-or-pop-window)
14534 (display-buffer-use-some-window): New functions.
14535 (display-buffer-default-action): Use them.
14536 (display-buffer-default): Delete.
14537 (pop-to-buffer-1): Fix choice of actions.
14538
14539 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
14540
14541 * minibuffer.el (completion--insert-strings): Don't get confused by
14542 completion entries that end with an LF char.
14543
14544 2011-09-01 Eli Zaretskii <eliz@gnu.org>
14545
14546 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
14547
14548 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
14549
14550 * window.el (display-buffer): Restore interactive spec.
14551 (display-buffer-same-window, display-buffer-other-window):
14552 New functions.
14553 (pop-to-buffer-1): New function. Use the above.
14554 (pop-to-buffer, pop-to-buffer-same-window): Use it.
14555 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
14556
14557 * view.el (view-buffer-other-window, view-buffer-other-frame):
14558 Just use pop-to-buffer.
14559
14560 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14561
14562 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
14563
14564 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
14565
14566 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
14567
14568 2011-08-31 Richard Stallman <rms@gnu.org>
14569
14570 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
14571 of the separation of rmail-view-buffer from rmail-buffer.
14572 If you say no to "replace original", the decrypt is in the
14573 view buffer. If you say yes, the decrypt goes into the
14574 rmail buffer also.
14575
14576 2011-08-31 Martin Rudalics <rudalics@gmx.at>
14577
14578 * window.el (display-buffer-window): Rewrite doc-string.
14579 (display-buffer-record-window): New function.
14580 (display-buffer-macro-specifiers)
14581 (display-buffer-even-window-sizes, display-buffer-set-height)
14582 (display-buffer-set-width, display-buffer-in-window)
14583 (display-buffer-reuse-window, display-buffer-split-specifiers)
14584 (display-buffer-side-specifiers, display-buffer-split-window-1)
14585 (display-buffer-split-window, display-buffer-split-atom-window)
14586 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
14587 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
14588 (display-buffer-other-window-means-other-frame)
14589 (display-buffer-normalize-special)
14590 (display-buffer-normalize-default)
14591 (display-buffer-normalize-argument)
14592 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
14593 (display-buffer-normalize-specifiers, display-buffer-frame)
14594 (display-buffer-same-window, display-buffer-same-frame)
14595 (display-buffer-other-window)
14596 (display-buffer-same-frame-other-window)
14597 (display-buffer-other-frame, pop-to-buffer-same-window)
14598 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
14599 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
14600 (switch-to-buffer-same-frame)
14601 (switch-to-buffer-other-window-same-frame)
14602 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
14603 (display-buffer-alist-set-1, display-buffer-alist-set-2)
14604 (display-buffer-alist-set): Remove.
14605 (display-buffer-function, special-display-buffer-names)
14606 (special-display-regexps, special-display-function):
14607 In doc-string refer to display-buffer-window and quit-restore
14608 parameter.
14609 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
14610 (special-display-frame-alist, special-display-popup-frame)
14611 (same-window-buffer-names, same-window-regexps, same-window-p)
14612 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
14613 (split-window-preferred-function, split-height-threshold)
14614 (split-width-threshold, window-splittable-p)
14615 (split-window-sensibly, window--try-to-split-window)
14616 (window--frame-usable-p, even-window-heights)
14617 (window--even-window-heights, window--display-buffer-1)
14618 (window--display-buffer-2, display-buffer-other-frame):
14619 Restore old Emacs 23 code, order and doc-strings where applicable.
14620 (display-buffer-default, display-buffer-assq-regexp): New functions.
14621 (display-buffer-alist): Rewrite doc-string.
14622 (display-buffer-default-action)
14623 (display-buffer-overriding-action): New variables.
14624 (display-buffer, switch-to-buffer): Rewrite.
14625 (pop-to-buffer): Restore Emacs 23 behavior but use
14626 window-normalize-buffer-to-display.
14627 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
14628 Restore Emacs 23 behavior but use
14629 window-normalize-buffer-to-switch-to.
14630 (pop-to-buffer-same-window): Rewrite.
14631 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
14632 Rewrite using Emacs 23 options.
14633
14634 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
14635
14636 * net/tramp.el (tramp-root-regexp): Remove.
14637 (tramp-completion-file-name-regexp-unified)
14638 (tramp-completion-file-name-regexp-separate)
14639 (tramp-completion-file-name-regexp-url): Don't use leading volume
14640 letter on w32 systems. (Bug#5303, Bug#9311)
14641 (tramp-drop-volume-letter): Simplify definition.
14642 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
14643
14644 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
14645
14646 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
14647 (bug#9356).
14648
14649 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
14650
14651 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
14652
14653 2011-08-29 Juri Linkov <juri@jurta.org>
14654
14655 * isearch.el (isearch-done): Don't display message "Mark saved"
14656 when arg `edit' is non-nil to prevent its flicker in the echo area.
14657
14658 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
14659
14660 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
14661 obsolete packages for deletion.
14662
14663 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
14664
14665 * help-mode.el (help-mode-map): Add special-mode-map to parent.
14666 (help-mode): Derive help-mode from special-mode. Don't invoke
14667 view-mode from help-mode.
14668 (help-xref-override-view-map): Remove.
14669 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
14670 view-mode is not used anymore.
14671
14672 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
14673
14674 * server.el (server-port): Doc fix.
14675
14676 * cus-theme.el (custom-theme-choose-mode): Inherit from
14677 special-mode (Bug#9124).
14678 (custom-theme-choose-mode-map): Add special-mode to parent.
14679
14680 2011-08-28 Alan Mackenzie <acm@muc.de>
14681
14682 * progmodes/cc-fonts.el
14683 (c-make-font-lock-BO-decl-search-function): New function.
14684 (c-basic-matchers-after - "Fontify the clauses after various
14685 keywords"): Extract the three keyword lists for the 3 erroneous
14686 constructs from the list of four, and use the new function above
14687 in place of an old one.
14688
14689 2011-08-28 Deniz Dogan <deniz@dogan.se>
14690
14691 * net/rcirc.el (rcirc-insert-prev-input)
14692 (rcirc-insert-next-input): Remove unused argument.
14693
14694 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
14695
14696 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
14697
14698 2011-08-27 Alan Mackenzie <acm@muc.de>
14699
14700 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
14701 handle function pointer parameters properly.
14702
14703 2011-08-27 Martin Rudalics <rudalics@gmx.at>
14704
14705 * window.el (display-buffer-reuse-window): Fix case where
14706 selected window was reused with non-nil OTHER-WINDOW argument.
14707 (Bug#9381)
14708
14709 2011-08-27 Deniz Dogan <deniz@dogan.se>
14710
14711 * net/rcirc.el (rcirc-check-auth-status): Adding support for
14712 oftc's NickServ messages.
14713
14714 2011-08-27 Glenn Morris <rgm@gnu.org>
14715
14716 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
14717
14718 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
14719
14720 * emacs-lisp/package.el (package-install): Call package-initialize
14721 if called interactively.
14722
14723 2011-08-26 Leo Liu <sdl.web@gmail.com>
14724
14725 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
14726
14727 2011-08-25 Juri Linkov <juri@jurta.org>
14728
14729 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
14730 `search-whitespace-regexp' (bug#9364).
14731
14732 2011-08-25 Juri Linkov <juri@jurta.org>
14733
14734 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
14735 `regexp-search-ring' to their global values to protect from
14736 updating by `read-from-minibuffer' (bug#9185).
14737
14738 2011-08-25 Juri Linkov <juri@jurta.org>
14739
14740 * textmodes/ispell.el (ispell-command-loop): Add newline
14741 at the end of the "Use option `i'..." line.
14742
14743 2011-08-25 Juri Linkov <juri@jurta.org>
14744
14745 * battery.el (display-battery-mode): If `battery-status-function'
14746 or `battery-mode-line-format' is nil, display the message and set
14747 `display-battery-mode' to nil (bug#9363).
14748
14749 2011-08-25 Eli Zaretskii <eliz@gnu.org>
14750
14751 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
14752 bidi-string-mark-left-to-right; they are unnecessary now.
14753
14754 2011-08-25 Deniz Dogan <deniz@dogan.se>
14755
14756 * net/quickurl.el: Documentation typo fixes.
14757
14758 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
14759
14760 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
14761
14762 2011-08-25 Glenn Morris <rgm@gnu.org>
14763
14764 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
14765
14766 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
14767 (smtpmail-via-smtp): Handle nil response from smtp.
14768
14769 2011-08-24 Juri Linkov <juri@jurta.org>
14770
14771 * proced.el (proced-marked): Inherit from `error' instead of
14772 `font-lock-warning-face'.
14773
14774 * ibuffer.el (ibuffer-marked-face): Change default face from
14775 `font-lock-warning-face' to `warning'.
14776 (ibuffer-deletion-face): Change default face from
14777 `font-lock-type-face' to `error'.
14778
14779 * battery.el (battery-update): Use the face `error' instead of
14780 `font-lock-warning-face' (bug#6117).
14781
14782 2011-08-24 Juri Linkov <juri@jurta.org>
14783
14784 * faces.el (success): Change face color from "Green3" to
14785 "ForestGreen" on light background (bug#9353).
14786
14787 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
14788
14789 * window.el (quit-window): Rename from quit-restore-window.
14790 Use same arglist as old quit-window.
14791 (frame-auto-delete): Doc fix.
14792
14793 * view.el (view-mode-exit): Use quit-window.
14794
14795 2011-08-24 Juri Linkov <juri@jurta.org>
14796
14797 * isearch.el (isearch-ring-adjust1): Start visiting previous
14798 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
14799 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
14800 for empty search string (when the last search string is reused
14801 automatically) to adjust the isearch ring to the last element and
14802 prepare the correct index for further M-p commands (bug#9185).
14803
14804 2011-08-24 Kenichi Handa <handa@m17n.org>
14805
14806 * international/ucs-normalize.el: If decomposition property of
14807 CHAR is the default one (i.e. a list of CHAR itself), treat it as
14808 nil.
14809 (nfd, nfkd): Likewise.
14810
14811 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
14812
14813 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
14814 from process filters aren't reliably transmitted to the surrounding
14815 accept-process-output.
14816 (mpc-proc-check): New function.
14817 (mpc-proc-sync): Use it (bug#8293)
14818
14819 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
14820
14821 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
14822 Add compatibility functions (bug#9313).
14823
14824 2011-08-23 Eli Zaretskii <eliz@gnu.org>
14825
14826 * cus-start.el (all): Add entry for bidi-paragraph-direction.
14827
14828 * international/uni-bidi.el: Regenerate.
14829
14830 2011-08-23 Kenichi Handa <handa@m17n.org>
14831
14832 * international/charprop.el:
14833 * international/uni-bidi.el:
14834 * international/uni-category.el:
14835 * international/uni-combining.el:
14836 * international/uni-comment.el:
14837 * international/uni-decimal.el:
14838 * international/uni-decomposition.el:
14839 * international/uni-digit.el:
14840 * international/uni-lowercase.el:
14841 * international/uni-mirrored.el:
14842 * international/uni-name.el:
14843 * international/uni-numeric.el:
14844 * international/uni-old-name.el:
14845 * international/uni-titlecase.el:
14846 * international/uni-uppercase.el: Regenerate.
14847
14848 2011-08-23 Martin Rudalics <rudalics@gmx.at>
14849
14850 * help.el (help-window-setup): Fix message displayed when other
14851 window is reused. (Bug#9341)
14852
14853 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
14854
14855 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
14856 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
14857
14858 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
14859 Mark obsolete.
14860 * shell.el (shell-parse-pcomplete-arguments): New function.
14861 (shell-completion-vars): Use it instead (bug#9160).
14862
14863 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
14864
14865 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
14866 strings and comments (bug#9333).
14867
14868 * emacs-lisp/debug.el (debug-arglist): New function.
14869 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
14870 (debug-on-entry-1): Handle interpreted closures (bug#9120).
14871
14872 2011-08-22 Juri Linkov <juri@jurta.org>
14873
14874 * progmodes/compile.el (compilation-mode-font-lock-keywords):
14875 Revert regexp that highlights output switches to its old
14876 pre-2010-10-28 value and remove one `?' from it (bug#9319).
14877
14878 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
14879 to check for empty output (bug#9226).
14880
14881 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
14882
14883 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
14884 symbol-constituent as the default, as that stops font-lock from
14885 working properly (Bug#8843).
14886
14887 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14888
14889 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
14890 `coding-system-for-*' around the process open call to avoid
14891 auth-source side effects.
14892 (smtpmail-try-auth-methods): Expand the secret password.
14893 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
14894 probe hangs.
14895
14896 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
14897
14898 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
14899
14900 * emacs-lisp/find-func.el (find-function-noselect): New arg
14901 lisp-only.
14902
14903 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
14904 signal an error for built-in functions (Bug#6664).
14905
14906 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14907
14908 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
14909 (smtpmail-try-auth-methods): Use it.
14910
14911 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
14912
14913 * font-lock.el (font-lock-fontify-region)
14914 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
14915 (font-lock-default-unfontify-buffer)
14916 (font-lock-default-fontify-region)
14917 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
14918
14919 * progmodes/compile.el (compilation-error-properties):
14920 Fix confusion between file struct and message struct (Bug#9319).
14921 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
14922 `ant' regexp.
14923
14924 * net/browse-url.el (browse-url-firefox): Don't call
14925 browse-url-firefox-sentinel unless using -remote (Bug#9328).
14926
14927 2011-08-20 Glenn Morris <rgm@gnu.org>
14928
14929 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
14930
14931 * tutorial.el (tutorial--default-keys): Update some default bindings.
14932
14933 * files.el (hack-local-variables): Fully ignore case for "mode:".
14934
14935 2011-08-20 Alan Mackenzie <acm@muc.de>
14936
14937 Resolve invalid use of a regexp in regexp-opt.
14938
14939 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
14940 detection for a java annotation.
14941
14942 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
14943 detection for a java annotation.
14944
14945 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
14946 handling for java.
14947 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
14948
14949 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
14950
14951 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
14952 (Bug#9274).
14953
14954 2011-08-20 Alan Mackenzie <acm@muc.de>
14955
14956 Fontify CPP expressions correctly when starting in the middle of
14957 such a construct. Mainly for when jit-lock etc. starts a chunk
14958 here.
14959
14960 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
14961 variable.
14962 (c-make-font-lock-search-form): New function, extracted from
14963 c-make-font-lock-search-function.
14964 (c-make-font-lock-search-function): Use the above function.
14965 (c-make-font-lock-context-search-function): New function.
14966 (c-cpp-matchers): Enhance the preprocessor expression case with
14967 the above function
14968 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
14969 which takes an expression.
14970
14971 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
14972
14973 2011-08-20 Martin Rudalics <rudalics@gmx.at>
14974
14975 * window.el (display-buffer-reuse-window)
14976 (display-buffer-pop-up-window): Don't reuse or split a side
14977 window.
14978
14979 2011-08-19 Glenn Morris <rgm@gnu.org>
14980
14981 * files.el (hack-local-variables-prop-line, hack-local-variables):
14982 Downcase "Mode:". (Bug#9331)
14983
14984 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
14985
14986 * international/characters.el: Add L and R categories.
14987
14988 * subr.el (bidi-string-mark-left-to-right): Rename from
14989 string-mark-left-to-right. Use category search.
14990
14991 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
14992
14993 2011-08-18 Juri Linkov <juri@jurta.org>
14994
14995 * faces.el (error, warning, success): New faces with definitions
14996 copied from old default values of `font-lock-warning-face',
14997 `compilation-warning', `compilation-info' (bug#6117).
14998
14999 * font-lock.el (font-lock-warning-face): Inherit from `error'.
15000
15001 * progmodes/compile.el (compilation-error): Inherit from `error'.
15002 (compilation-warning): Inherit from `warning'.
15003 (compilation-info): Inherit from `success'.
15004
15005 * dired.el (dired-marked): Inherit from `warning'.
15006 (dired-flagged): Inherit from `error'.
15007
15008 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15009
15010 * mail/smtpmail.el (auth-source): Require to avoid problems with
15011 binding variables (bug#9298). Also clean up some unused
15012 autoloads.
15013
15014 * net/network-stream.el (network-stream-open-starttls):
15015 Support using starttls.el without using gnutls-cli.
15016
15017 2011-08-17 Juri Linkov <juri@jurta.org>
15018
15019 * progmodes/grep.el (rgrep): Handle the case when
15020 `grep-find-command' is a cons cell (bug#9278).
15021
15022 2011-08-17 Martin Rudalics <rudalics@gmx.at>
15023
15024 * window.el (display-buffer-pop-up-frame): Run frame creation
15025 function with BUFFER current (as special-display-popup-frame
15026 does). Reported by Drew Adams.
15027
15028 2011-08-17 Daiki Ueno <ueno@unixuser.org>
15029
15030 * epa-mail.el: Simplify GnuPG group expansion using
15031 epg-expand-group.
15032 (epa-mail-group-alist, epa-mail-group-modtime)
15033 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
15034 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
15035 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
15036 Remove.
15037
15038 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
15039
15040 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
15041
15042 2011-08-16 Alan Mackenzie <acm@muc.de>
15043
15044 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
15045 Correct, to avoid the inside of macros.
15046
15047 2011-08-16 Richard Stallman <rms@gnu.org>
15048
15049 * epa-mail.el: Handle GnuPG group definitions.
15050 (epa-mail-group-alist, epa-mail-group-modtime)
15051 (epa-mail-gnupg-conf-file): New variables.
15052 (epa-mail-parse-groups, epa-mail-sync-groups)
15053 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
15054 (epa-mail-expand-recipients): New functions.
15055 (epa-mail-encrypt): Call epa-mail-expand-recipients.
15056
15057 * mail/rmail.el (rmail-epa-decrypt): New command.
15058
15059 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
15060 Don't bind buffer-read-only, just inhibit-read-only.
15061 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
15062 (epa-decrypt-armor-in-region): Make error message clearer.
15063
15064 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
15065
15066 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
15067 and "a2b" to "ab" for `prefix'.
15068
15069 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
15070
15071 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
15072 filter groups.
15073 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
15074 Fourquet (Bug#8804).
15075
15076 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
15077
15078 * startup.el (argi): Declare as global variable (bug#9275).
15079
15080 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
15081
15082 * subr.el (string-mark-left-to-right): Search the entire string
15083 for RTL script, not just the terminating character. Doc fix.
15084
15085 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
15086
15087 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
15088 New function.
15089 (js--regexp-literal, js-syntax-propertize-function): Remove.
15090 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
15091 (js-mode-map): Don't rebind electric keys.
15092 (js-insert-and-indent): Remove.
15093 (js-mode): Setup electric-layout and electric-indent instead.
15094
15095 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
15096
15097 2011-08-12 Daiki Ueno <ueno@unixuser.org>
15098
15099 * epa.el (epa-progress-callback-function): Fix the logic of
15100 displaying progress.
15101 * epa-file.el (epa-file-insert-file-contents): Make progress
15102 display more user-friendly.
15103 (epa-file-write-region): Ditto.
15104
15105 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
15106
15107 * subr.el (string-mark-left-to-right): New function.
15108
15109 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
15110 Use string-mark-left-to-right.
15111 (list-buffers-noselect): Caller changed.
15112
15113 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
15114 Use string-mark-left-to-right.
15115 (tabulated-list-print): Recenter after moving point.
15116
15117 2011-08-10 Juri Linkov <juri@jurta.org>
15118
15119 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
15120 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
15121 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
15122
15123 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
15124
15125 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
15126 (Bug#7554).
15127
15128 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
15129
15130 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
15131 character. (Bug#6594)
15132
15133 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
15134
15135 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
15136 (image-dired--with-db-file): New macro.
15137 (image-dired-write-tags, image-dired-remove-tag)
15138 (image-dired-create-gallery-lists, image-dired-write-comments)
15139 (image-dired-get-comment, image-dired-mark-tagged-files)
15140 (image-dired-list-tags, image-dired-gallery-generate): Use it.
15141 (image-dired-gallery-generate): Use insert-file-contents.
15142
15143 * time.el (display-time-world-list, display-time-world-display):
15144 * time-stamp.el (time-stamp-string):
15145 * vc/add-log.el (add-change-log-entry): Use setenv instead of
15146 set-time-zone-rule (Bug#7337).
15147
15148 2011-08-08 Daiki Ueno <ueno@unixuser.org>
15149
15150 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
15151 (epg-error-to-string, epg-errors-to-string): New function.
15152 (epg-wait-for-completion): Reverse errors list.
15153 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
15154 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
15155 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
15156 (epg-sign-keys, epg-generate-key-from-file)
15157 (epg-generate-key-from-string): Format errors by using
15158 epg-errors-to-string (bug#9255).
15159 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
15160
15161 2011-08-07 Juri Linkov <juri@jurta.org>
15162
15163 * faces.el (list-faces-display): Remove extra angle bracket
15164 from `help-mode-map'.
15165
15166 * info.el (Info-history-toc-nodes): Doc fix.
15167
15168 * longlines.el (longlines-mode): Doc fix.
15169
15170 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
15171
15172 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
15173 of statements and in a few more cases (bug#9183).
15174
15175 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
15176 New functions.
15177 (cl-transform-lambda): Use them (bug#9239).
15178
15179 2011-08-05 Martin Rudalics <rudalics@gmx.at>
15180
15181 * window.el (display-buffer-same-window)
15182 (display-buffer-same-frame, display-buffer-other-window)
15183 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
15184 (pop-to-buffer-other-window)
15185 (pop-to-buffer-same-frame-other-window)
15186 (pop-to-buffer-other-frame): Make them defuns.
15187 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
15188
15189 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15190
15191 * subr.el (make-composed-keymap): Move from C. Change calling
15192 convention, and improve docstring to bring attention to a subtle point.
15193 * minibuffer.el (completing-read-default): Adjust accordingly.
15194
15195 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
15196
15197 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
15198 (tramp-open-shell): Use `tramp-shell-quote-argument'.
15199
15200 * net/trampver.el: Update release number.
15201
15202 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15203
15204 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
15205 "in" (bug#9190).
15206
15207 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15208
15209 * mail/sendmail.el (sendmail-query-once): Restore the current
15210 buffer after querying (bug#9074).
15211
15212 * dired.el (dired-flagged): Use different faces for marked and
15213 flagged files (bug#6117).
15214
15215 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
15216 (bug#4433).
15217
15218 * ido.el (ido-mode): Switch off the message if called
15219 non-interactively.
15220
15221 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
15222 before 587, since it appears that that's more likely to work for
15223 more people.
15224
15225 * cus-edit.el (custom-file): When running under emacs -q, always
15226 refuse to save the customizations, even if the .emacs file doesn't
15227 exist.
15228
15229 * info.el: Remove the `Info-beginning-of-buffer' function
15230 (bug#8325).
15231
15232 * net/network-stream.el (network-stream-open-starttls):
15233 Use `starttls-available-p' to see whether starttls.el can be used.
15234
15235 2011-08-01 Martin Rudalics <rudalics@gmx.at>
15236
15237 * window.el (display-buffer-in-window): Don't set dedicated status
15238 of window here (Bug#9215).
15239 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15240 (display-buffer-pop-up-side-window)
15241 (display-buffer-in-side-window): Set dedicated status of window here.
15242
15243 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
15244
15245 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
15246 before binding generated-autoload-file.
15247
15248 2011-08-01 Deniz Dogan <deniz@dogan.se>
15249
15250 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
15251
15252 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
15253
15254 Sync with Tramp 2.2.2.
15255
15256 * net/trampver.el: Update release number.
15257
15258 2011-07-30 Juri Linkov <juri@jurta.org>
15259
15260 * dired-aux.el (dired-touch-initial): Remove function.
15261 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
15262 current time, and `default' to the last modification time of the
15263 current marked file (bug#6887).
15264
15265 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
15266
15267 * simple.el (goto-line): Use string-to-number to provide a
15268 numeric argument to read-number (bug#9163).
15269
15270 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
15271
15272 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
15273 connection process, it could be nil.
15274
15275 2011-07-27 Leo Liu <sdl.web@gmail.com>
15276
15277 Simplify url handling in rcirc-mode.
15278
15279 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
15280 (rcirc-browse-url-at-mouse): Remove.
15281 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
15282
15283 2011-07-26 Alan Mackenzie <acm@muc.de>
15284
15285 Fontify bitfield declarations properly.
15286
15287 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
15288 (c-symbol-chars): Now exported as a lang variable.
15289 (c-not-primitive-type-keywords): New lang variable.
15290
15291 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
15292 QT keyword "more" to prevent "more slots: ...." being spuriously
15293 parsed as a bitfield declaration.
15294
15295 * progmodes/cc-engine.el (c-beginning-of-statement-1):
15296 Refactor and enhance to handle bitfield declarations.
15297 (c-punctuation-in): New function.
15298 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
15299 declarations properly.
15300
15301 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
15302
15303 * calendar/icalendar.el (icalendar--all-events): Take care of
15304 multiple vcalendars in a single file.
15305 (icalendar--convert-float-to-ical): Checkdoc fixes.
15306
15307 2011-07-25 Deniz Dogan <deniz@dogan.se>
15308
15309 * image.el (insert-image): Clarifying docstring.
15310
15311 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
15312
15313 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
15314 `tramp-send-command-and-check' if there is no error.
15315 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
15316
15317 2011-07-22 Alan Mackenzie <acm@muc.de>
15318
15319 Prevent cc-langs.elc being loaded at run time.
15320
15321 * progmodes/cc-mode.el: Remove two autoload forms which loaded
15322 cc-langs.
15323
15324 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
15325 "(require 'cc-langs)". Quote a form so it will evaluate at
15326 (cc-mode's) compilation time.
15327
15328 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
15329
15330 * net/tramp.el (tramp-file-name-handler): Avoid recursive
15331 loading. (Bug#9114)
15332
15333 2011-07-21 Martin Rudalics <rudalics@gmx.at>
15334
15335 * window.el (display-buffer-pop-up-window)
15336 (display-buffer-pop-up-side-window)
15337 (display-buffer-in-side-window): Call display-buffer-set-height
15338 and display-buffer-set-width after setting the new window's
15339 buffer so `fit-window-to-buffer' and friends work on the right buffer.
15340
15341 2011-07-20 Sam Steingold <sds@gnu.org>
15342
15343 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
15344 (etags-tags-included-tables): Call `convert-standard-filename' on
15345 the file names contained in TAGS so that windows Emacs can handle
15346 TAGS files created by cygwin ctags.
15347
15348 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
15349
15350 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
15351 which apparently didn't work.
15352
15353 2011-07-19 Roland Winkler <winkler@gnu.org>
15354
15355 * proced.el (proced-send-signal): For *Marked Processes* buffer
15356 put point at beginning of buffer.
15357
15358 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
15359
15360 * proced.el (proced-format): Make header lines align with the text
15361 (bug#1779).
15362
15363 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15364
15365 * view.el (view-buffer): Allow running in `special' modes if we're
15366 visiting a file (bug#8615).
15367
15368 2011-07-19 Martin Rudalics <rudalics@gmx.at>
15369
15370 * window.el (display-buffer-alist-of-strings-p)
15371 (display-buffer-alist-set-1, display-buffer-alist-set-2):
15372 New functions.
15373 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
15374 more accurately.
15375
15376 2011-07-18 Alan Mackenzie <acm@muc.de>
15377
15378 Fontify declarators properly when, e.g., a jit-lock chunk begins
15379 inside a declaration.
15380
15381 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
15382
15383 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
15384 New function.
15385 (c-complex-decl-matchers): Insert reference to
15386 c-font-lock-enclosing-decls.
15387
15388 * progmodes/cc-engine.el (c-backward-single-comment):
15389 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
15390 to nil around calls to (forward-comment -1).
15391
15392 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15393
15394 * image.el (put-image): Doc typo fix.
15395
15396 * progmodes/etags.el (tags-search): Doc typo fix.
15397
15398 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
15399 password if we get errors 550 to 554.
15400
15401 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
15402
15403 * net/gnutls.el (gnutls-log-level): Remove.
15404
15405 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
15406 indentation character (bug#6380).
15407
15408 * files.el (buffer-offer-save): Made permanently local (bug#6241).
15409
15410 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
15411 to clarify what the problem is (bug#4291).
15412
15413 * simple.el (current-kill): Clarify what
15414 `interprogram-paste-function' does (bug#7500).
15415 (auto-fill-mode): Document `auto-fill-function' in relation to
15416 `auto-fill-mode' (bug#2470).
15417
15418 2011-07-16 Lawrence Mitchell <wence@gmx.li>
15419
15420 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
15421 method if slot is read-only (bug#9035).
15422
15423 2011-07-16 Martin Rudalics <rudalics@gmx.at>
15424
15425 * frame.el (select-frame-set-input-focus): New argument NORECORD.
15426 * window.el (pop-to-buffer): Select window used even if it was
15427 selected before, see discussion of (Bug#8615), (Bug#6954).
15428 Pass argument NORECORD on to select-frame-set-input-focus.
15429
15430 2011-07-15 Glenn Morris <rgm@gnu.org>
15431
15432 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
15433 Respect help-form.
15434
15435 2011-07-09 Lawrence Mitchell <wence@gmx.li>
15436
15437 * net/gnutls.el (gnutls-min-prime-bits): New variable.
15438 (gnutls-negotiate): Use it.
15439
15440 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15441
15442 * net/gnutls.el (gnutls-negotiate):
15443 Upcase `gnutls-algorithm-priority'.
15444
15445 2011-07-15 Glenn Morris <rgm@gnu.org>
15446
15447 * jka-compr.el (jka-compr-verbose): Move from here...
15448 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
15449 Add missing :version tag.
15450 * info.el: No need to require jka-compr when compiling.
15451
15452 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15453
15454 * net/gnutls.el (gnutls-algorithm-priority): New variable.
15455 (gnutls-negotiate): Use it.
15456
15457 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
15458
15459 * info.el (Info-beginning-of-buffer): New command.
15460 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
15461 announcing `b' as the key (bug#8325).
15462 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
15463
15464 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
15465
15466 * international/mule-cmds.el
15467 (describe-specified-language-support): Make the error message
15468 clearer (bug#8905).
15469
15470 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
15471
15472 * isearch.el (isearch-barrier): Add a doc string, since it's
15473 mentioned in a function doc string (bug#8678).
15474
15475 2011-07-15 Martin Rudalics <rudalics@gmx.at>
15476
15477 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
15478 buffer argument (Bug#9083) and self-identifying label argument.
15479
15480 2011-07-15 Glenn Morris <rgm@gnu.org>
15481
15482 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
15483
15484 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15485
15486 * man.el (Man-fontify-manpage): Fix message when formatting the
15487 man page (bug#7929).
15488
15489 2011-07-14 Eli Zaretskii <eliz@gnu.org>
15490
15491 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
15492 argument LRM; if non-nil, append an invisible LRM character to the
15493 buffer name.
15494 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
15495 last argument non-nil, when formatting buffer names.
15496 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
15497 paragraph direction.
15498
15499 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15500
15501 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
15502 the man page name (bug#7929).
15503
15504 * image.el (put-image): Mention the `put-image' overlay property
15505 (bug#7834).
15506
15507 * scroll-bar.el (set-scroll-bar-mode): Mention that
15508 `scroll-bar-mode' lists the values (bug#7772).
15509
15510 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
15511 command (bug#7729).
15512
15513 * rect.el (apply-on-rectangle): Return the point after the last
15514 operation.
15515 (string-rectangle): Go to the point after the last operation
15516 (bug#7522).
15517
15518 * printing.el (pr-toggle-region): Clarify the documentation
15519 slightly (bug#7493).
15520
15521 * time.el (display-time-update):
15522 Allow `display-time-mail-function' to return nil (bug#7158).
15523 Fix suggested by Detlev Zundel.
15524
15525 * vc/diff.el (diff): Clarify the order the file names are read
15526 (bug#7111).
15527
15528 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
15529 the doc string (bug#7015).
15530
15531 * font-lock.el (font-lock-maximum-decoration): Mention what
15532 numeric levels mean (bug#6935).
15533
15534 * startup.el (initial-buffer-choice): Don't mention the `none'
15535 selection, which is against policy.
15536
15537 2011-07-14 Martin Rudalics <rudalics@gmx.at>
15538
15539 * window.el (display-buffer-normalize-special):
15540 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
15541
15542 2011-07-14 Eli Zaretskii <eliz@gnu.org>
15543
15544 * subr.el (version<, version<=, version=): Mention "-CVS" and
15545 "-12345" alpha version numbers.
15546
15547 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
15548
15549 * bindings.el: Add advertised binding for set-mark-command
15550 (Bug#5772).
15551
15552 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
15553
15554 * bindings.el (mode-line-other-buffer):
15555 * bookmark.el (bookmark-bmenu-2-window):
15556 * bs.el (bs-cycle-next, bs-cycle-previous):
15557 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
15558 switch-to-buffer.
15559
15560 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
15561 Delete.
15562
15563 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
15564
15565 * follow.el (follow-debug-message, follow-redisplay):
15566 * jka-cmpr-hook.el (with-auto-compression-mode):
15567 Fix typos in docstrings.
15568
15569 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15570
15571 * subr.el (with-silent-modifications): Clarify somewhat what the
15572 macro inhibits (bug#6525).
15573
15574 * simple.el (eval-expression): Note what it does if called
15575 interactively (bug#6495).
15576
15577 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
15578
15579 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
15580 Use pop-to-buffer buffer-or-name if it is nil.
15581
15582 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15583 Remove switch-to-buffer.
15584
15585 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15586
15587 * files.el (make-directory): Clarify that an error will be raised
15588 if there's an error (bug#6397).
15589
15590 * startup.el (initial-buffer-choice): Add `none' as a choice
15591 (bug#6234).
15592
15593 * subr.el (add-hook): Clarify section about buffer-local hooks
15594 (bug#6218).
15595
15596 * dired.el (dired-flagged): Clarify doc string (bug#6117).
15597
15598 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
15599
15600 * tabify.el (untabify): Preserve the current column so that point
15601 doesn't move (bug#6032).
15602
15603 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15604
15605 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
15606 Rewrite to avoid awkward possessive "s" (bug#5986).
15607
15608 2011-07-13 Glenn Morris <rgm@gnu.org>
15609
15610 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
15611 (dired-insert-directory): Give a message the first time
15612 if ls is found not to support --dired.
15613
15614 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15615
15616 * simple.el (toggle-truncate-lines): Clarify what is toggled
15617 (bug#5580). Text by Drew Adams.
15618
15619 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
15620
15621 * simple.el (blink-matching-open): Make the error message from the
15622 last change less verbose.
15623
15624 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
15625
15626 * font-lock.el (font-lock-comment-face): Use the high contrast
15627 "yellow" color for font-lock-comment-face on low color terminals
15628 using a dark background color (bug#4221).
15629
15630 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15631
15632 * dired.el (dired-insert-set-properties): Make the doc string
15633 reflect what it does now (bug#5325).
15634
15635 * simple.el (blink-matching-open): Say that we were unable to find
15636 the match within the limit, if we're limited (bug#5122).
15637
15638 * international/mule-cmds.el (prefer-coding-system): Add an
15639 example (bug#4869).
15640
15641 * progmodes/etags.el (tags-search): Document `file-list-form'
15642 (bug#4731).
15643
15644 2011-07-13 Lawrence Mitchell <wence@gmx.li>
15645
15646 * net/browse-url.el (browse-url-default-browser)
15647 (browse-url-browser-function): Make the default browser choice a
15648 bit more logical (bug#4300). Also clean up the doc string.
15649
15650 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
15651
15652 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
15653 binary endings (bug#4440).
15654
15655 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15656
15657 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
15658 which can be pretty annoying (bug#8971).
15659
15660 * jka-compr.el (jka-compr-verbose): New variable, and use
15661 throughout (bug#8971).
15662
15663 * info.el (Info-find-file): Fall back on the installation
15664 directory if we can't find the info node anywhere else.
15665
15666 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
15667
15668 * vc/vc.el (vc-revert-file):
15669 Don't set file time-stamp in the past. (Bug#5181)
15670
15671 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
15672
15673 * files.el (after-find-file): Give a better error message when
15674 trying to find a symlink that points to a file that doesn't exist
15675 (bug#4398).
15676
15677 * progmodes/cc-vars.el: Remove (probably) misleading comment
15678 (bug#4396).
15679
15680 2011-07-12 Johan Bockgård <bojohan@gnu.org>
15681
15682 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
15683
15684 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
15685
15686 * mouse-sel.el: Hack restoring functionality, while keeping
15687 compatibility with 2010-07-03 changes to mouse selection.
15688 (mouse-sel-primary-overlay): New var.
15689 (mouse-sel-selection-alist): Use it.
15690 (mouse-sel-mode): Doc fix; remove points that are default features
15691 of mouse.el.
15692
15693 2011-07-12 Johan Bockgård <bojohan@gnu.org>
15694
15695 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15696 Fix previous fix (bug#2490).
15697
15698 2011-07-12 Roland Winkler <winkler@gnu.org>
15699
15700 * textmodes/bibtex.el (bibtex-initialize):
15701 Use pop-to-buffer-same-window.
15702 (bibtex-search-entries): Fix interactive call.
15703
15704 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
15705
15706 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15707 Fontise bytecomp Error lines more correctly (bug#2490).
15708 Fix suggested by Johan Bockgård.
15709
15710 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
15711
15712 * dired-x.el (dired-guess-default): Use `delete-dups'.
15713
15714 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
15715
15716 * dired.el (dired-mark-prompt):
15717 * dired-aux.el (dired-read-shell-command): Doc fix.
15718
15719 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15720
15721 * mail/sendmail.el (sendmail-query-once):
15722 Use `customize-save-variable' unconditionally, now that it works under
15723 emacs -Q.
15724
15725 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
15726
15727 * cus-edit.el (custom-file): Take an optional no-error variable.
15728 (customize-save-variable): Set the variable, and give a warning if
15729 running under "emacs -q".
15730
15731 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
15732
15733 * loadhist.el (unload-feature-special-hooks):
15734 Add `auto-coding-functions', `fill-nobreak-predicate' and
15735 `find-directory-functions' (bug#5327).
15736
15737 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15738
15739 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
15740
15741 * cus-edit.el (custom-guess-name-alist): -alist variables should
15742 use the `alist' type (bug#3120). Suggested by Drew Adams.
15743
15744 * printing.el: Add documentation to all the `pr-toggle-' commands.
15745
15746 2011-07-11 Leo Liu <sdl.web@gmail.com>
15747
15748 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
15749 backends where it makes sense (bug#2623).
15750
15751 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15752
15753 * dired-x.el (dired-guess-default): Remove duplicate shell command
15754 entries (bug#2028).
15755 (dired-guess-default): Fix grammar in doc string (bug#2028).
15756 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
15757
15758 * subr.el (remove-duplicates): New conveniency function.
15759
15760 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
15761
15762 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
15763 (bug#1526).
15764
15765 2011-07-10 Martin Rudalics <rudalics@gmx.at>
15766
15767 * window.el (display-buffer-normalize-default): Don't invert
15768 meaning of even-window-heights. Reported by Eli Zaretskii
15769 <eliz@gnu.org>.
15770
15771 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
15772
15773 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
15774
15775 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
15776
15777 * window.el (display-buffer): Fix arguments to
15778 display-buffer-reuse-window in last change.
15779
15780 * faces.el (link): Use a less saturated blue on light backgrounds.
15781
15782 * startup.el (fancy-startup-text, fancy-about-text)
15783 (fancy-startup-tail): Use font-lock faces, for background safety.
15784
15785 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
15786
15787 * emulation/viper-cmd.el (viper-change-state-to-vi):
15788 Limit triggering of abbrev expansion (Bug#9038).
15789
15790 2011-07-09 Martin Rudalics <rudalics@gmx.at>
15791
15792 * window.el (display-buffer-default-specifiers): Remove.
15793 (display-buffer-macro-specifiers): Remove default specifiers.
15794 (display-buffer-alist): Default to nil.
15795 (display-buffer-reuse-window): New optional argument other-window.
15796 (display-buffer-pop-up-window): Allow splitting internal
15797 windows. Check whether a live window was created.
15798 (display-buffer-other-window-means-other-frame)
15799 (display-buffer-normalize-arguments): Rename to
15800 display-buffer-normalize-argument and rewrite. Set the
15801 other-window specifier.
15802 (display-buffer-normalize-special): New function.
15803 (display-buffer-normalize-options): Rename to
15804 display-buffer-normalize-default and rewrite.
15805 (display-buffer-normalize-options-inhibit): Remove.
15806 (display-buffer-normalize-specifiers): Rewrite.
15807 (display-buffer): Process other-window specifier and call
15808 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
15809 more faithfully.
15810 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
15811 (display-buffer-alist-set): Don't handle 'unset default values.
15812 (display-buffer-in-window, display-buffer-alist-set):
15813 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
15814 <tassilo@member.fsf.org>.
15815
15816 2011-07-09 Leo Liu <sdl.web@gmail.com>
15817
15818 * register.el (insert-register): Restore accidental change on
15819 2011-06-26. (Bug#9028)
15820
15821 2011-07-09 Glenn Morris <rgm@gnu.org>
15822
15823 * subr.el (remq): Handle the empty list. (Bug#9024)
15824
15825 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
15826
15827 * mail/sendmail.el (send-mail-function): No longer delay custom
15828 initialization.
15829 * custom.el (custom-initialize-delay): Doc fix.
15830
15831 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
15832
15833 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
15834
15835 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
15836
15837 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
15838 human-friendly prompt.
15839
15840 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
15841
15842 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
15843 provided by a particular plugin.
15844
15845 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
15846
15847 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
15848 save customizations (with "emacs -Q"), just set the variable
15849 instead of erroring out.
15850
15851 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
15852
15853 2011-07-08 Juri Linkov <juri@jurta.org>
15854
15855 * arc-mode.el (archive-zip-expunge, archive-zip-update)
15856 (archive-zip-update-case): Use 7z if found by `executable-find'.
15857 The order of searching the available programs is the same as in
15858 `archive-zip-extract' (bug#8968).
15859
15860 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
15861
15862 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
15863 (menu-bar-options-menu): Tweak descriptions.
15864
15865 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
15866
15867 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
15868 menu items into verb phrases (bug#1421). Also refill to fit under
15869 80 columns.
15870
15871 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
15872
15873 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
15874 (Info-read-node-name): Doc fix (Bug#1084).
15875
15876 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
15877 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
15878 (end-of-sexp, beginning-of-sexp)
15879 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
15880 (forward-symbol, forward-same-syntax, word-at-point)
15881 (sentence-at-point): Doc fix (Bug#1144).
15882
15883 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
15884
15885 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
15886 should cover it (bug#1281).
15887
15888 * cus-edit.el (custom-show): Mark as obsolete.
15889
15890 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
15891 negotiation fails, then possibly try again with a non-encrypted
15892 connection (bug#9017).
15893
15894 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
15895 be used.
15896
15897 2011-07-07 Richard Stallman <rms@gnu.org>
15898
15899 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
15900 property, and handle its changed format.
15901 Look for the correct line number.
15902 Use file's line contents (but not past first =) to find
15903 correct line in message.
15904
15905 2011-07-07 Kenichi Handa <handa@m17n.org>
15906
15907 * international/characters.el (build-unicode-category-table):
15908 Delete it.
15909 (unicode-category-table): Set it by unicode-property-table-internal.
15910
15911 * international/mule-cmds.el (char-code-property-alist): Move to
15912 to src/chartab.c.
15913 (get-char-code-property): Call unicode-property-table-internal to
15914 load a file. Call get-unicode-property-internal where necessary.
15915 (put-char-code-property): Call unicode-property-table-internal to
15916 load a file. Call put-unicode-property-internal where necessary.
15917 put-unicode-property-internal where necessary.
15918 (char-code-property-description):
15919 Call unicode-property-table-internal to load a file.
15920
15921 * international/charprop.el:
15922 * international/uni-bidi.el:
15923 * international/uni-category.el:
15924 * international/uni-combining.el:
15925 * international/uni-comment.el:
15926 * international/uni-decimal.el:
15927 * international/uni-decomposition.el:
15928 * international/uni-digit.el:
15929 * international/uni-lowercase.el:
15930 * international/uni-mirrored.el:
15931 * international/uni-name.el:
15932 * international/uni-numeric.el:
15933 * international/uni-old-name.el:
15934 * international/uni-titlecase.el:
15935 * international/uni-uppercase.el: Regenerate.
15936
15937 * loadup.el: Load international/charprop.el before
15938 international/characters.
15939
15940 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
15941
15942 * window.el (next-buffer, previous-buffer): Signal an error if
15943 called from a minibuffer window.
15944
15945 * bindings.el: Revert 2011-07-04 change.
15946
15947 2011-07-06 Richard Stallman <rms@gnu.org>
15948
15949 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
15950 (rmail-mime-insert-bulk, rmail-mime-insert-text):
15951 Treat markers like ints.
15952 (rmail-mime-entity): Doc fix.
15953
15954 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
15955
15956 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
15957 defcustom again for backwards compatibility.
15958
15959 * simple.el (shell-command-on-region): Fill.
15960
15961 * dired-aux.el (dired-kill-line): Add a doc string.
15962
15963 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
15964 to "\\sw\\|\\s_" (bug#358).
15965
15966 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
15967 (dired-unmark-backward): Ditto.
15968 (dired-flag-backup-files): Ditto.
15969
15970 * dired-x.el (dired-mark-sexp): Ditto.
15971
15972 2011-07-06 Richard Stallman <rms@gnu.org>
15973
15974 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
15975 (rmail-mime-entity): New arg TRUNCATED.
15976 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
15977 New functions.
15978 (rmail-mime-save): Warn if entity is truncated.
15979 (rmail-mime-toggle-hidden): Likewise, for showing.
15980 (rmail-mime-process-multipart): Record when an entity is truncated.
15981
15982 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
15983 if ENTITY is a string.
15984
15985 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
15986
15987 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
15988 of faces when `M-C-x'-ing their definitions (bug#8378).
15989 Also clean up the code slightly.
15990
15991 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
15992 because that makes the colors go away.
15993
15994 * mail/sendmail.el (send-mail-function): Change the default to
15995 `sendmail-query-once'.
15996 (sendmail-query-once): Add an autoload cookie.
15997
15998 * net/network-stream.el (network-stream-open-starttls): Try using
15999 a plain connection even if the server offered STARTTLS, and we
16000 kinda wanted to use it, if Emacs doesn't have any STARTTLS
16001 capability. This should make smtpmail.el work in slightly more
16002 configurations.
16003
16004 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
16005
16006 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16007 New defun.
16008 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
16009
16010 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
16011
16012 * progmodes/sql.el: Version 3.0
16013 (sql-product-alist): Add product :completion-object,
16014 :completion-column, and :statement attributes.
16015 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
16016 (sql-mode-syntax-table): Mark all punctuation.
16017 (sql-font-lock-keywords-builder): Temporarily remove fallback on
16018 ansi keywords.
16019 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
16020 (sql-mode-oracle-font-lock-keywords): Improve.
16021 (sql-oracle-show-reserved-words): New function for development.
16022 (sql-product-font-lock): Simplify for source code buffers.
16023 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
16024 New functions.
16025 (sql-highlight-product): Set product specific syntax table.
16026 (sql-mode-map): Add statement movement functions.
16027 (sql-ansi-statement-starters, sql-oracle-statement-starters):
16028 New variable.
16029 (sql-statement-regexp, sql-beginning-of-statement)
16030 (sql-end-of-statement, sql-signum): New functions.
16031 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
16032 (sql-show-sqli-buffer): Bug fix.
16033 (sql-interactive-mode): Store connection data as buffer local.
16034 (sql-connect): Add NEW-NAME parameter. Redesign interaction
16035 with sql-interactive-mode.
16036 (sql-save-connection): Save buffer local settings.
16037 (sql-connection-menu-filter): Change menu entry name.
16038 (sql-product-interactive): Bug fix.
16039 (sql-preoutput-hold): New variable.
16040 (sql-interactive-remove-continuation-prompt): Bug fixes.
16041 (sql-debug-redirect): New variable.
16042 (sql-str-literal): New function.
16043 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
16044 Redesign.
16045 (sql-oracle-save-settings, sql-oracle-restore-settings)
16046 (sql-oracle-list-all, sql-oracle-list-table): New functions.
16047 (sql-completion-object, sql-completion-column)
16048 (sql-completion-sqlbuf): New variables.
16049 (sql-build-completions-1, sql-build-completions)
16050 (sql-try-completion): New functions.
16051 (sql-read-table-name): Use them.
16052 (sql-contains-names): New buffer local variable.
16053 (sql-list-all, sql-list-table): Use it.
16054 (sql-oracle-completion-types): New variable.
16055 (sql-oracle-completion-object, sql-sqlite-completion-object)
16056 (sql-postgres-completion-object): New functions.
16057
16058 2011-07-06 Glenn Morris <rgm@gnu.org>
16059
16060 * window.el (pop-to-buffer): Doc fix.
16061
16062 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
16063
16064 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
16065
16066 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
16067
16068 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
16069
16070 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
16071
16072 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
16073
16074 * button.el (button): Inherit from link face. Suggested by Dan
16075 Nicolaescu.
16076
16077 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16078
16079 * progmodes/gdb-mi.el: Fit in 80 columns.
16080 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
16081 switch-to-buffer.
16082
16083 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
16084 if imenu is simply not configured (bug#8941).
16085
16086 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
16087
16088 * allout.el (allout-post-undo-hook): New allout outline-change
16089 event hook to signal undo activity.
16090 (allout-post-command-business): Run allout-post-undo-hook if an
16091 undo just occurred.
16092 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
16093 * allout-widgets.el (allout-widgets-after-undo-function):
16094 Ensure the integrity of the current item's decoration after it has been
16095 in the vicinity of an undo.
16096 (allout-widgets-mode): Include allout-widgets-after-undo-function
16097 on the new allout-post-undo-hook.
16098
16099 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16100
16101 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
16102 Let define-derived-mode define it.
16103 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
16104 cycles of abbrev-table inheritance (bug#8998).
16105
16106 2011-07-05 Roland Winkler <winkler@gnu.org>
16107
16108 * textmodes/bibtex.el: Add support for biblatex.
16109 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
16110 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
16111 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
16112 (bibtex-entry-alist, bibtex-field-alist): New variables.
16113 (bibtex-entry-field-alist): Obsolete alias for
16114 bibtex-BibTeX-entry-alist.
16115 (bibtex-entry-alist, bibtex-field-alist): New widgets.
16116 (bibtex-set-dialect): New command.
16117 (bibtex-entry-type, bibtex-entry-head)
16118 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
16119 Bind via bibtex-set-dialect.
16120 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
16121 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
16122 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
16123 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
16124 Define via bibtex-set-dialect.
16125 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
16126 Obey bibtex-no-opt-remove-re.
16127 (bibtex-vec-push, bibtex-vec-incr): New functions.
16128 (bibtex-format-entry, bibtex-field-list)
16129 (bibtex-print-help-message, bibtex-validate)
16130 (bibtex-search-entries): Use new format of bibtex-entry-alist.
16131
16132 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16133
16134 * progmodes/compile.el (compilation-goto-locus):
16135 * net/tramp-cmds.el (tramp-append-tramp-buffers):
16136 * bs.el (bs-cycle-next, bs-cycle-previous):
16137 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
16138 * bindings.el (mode-line-other-buffer):
16139 * autoinsert.el (auto-insert):
16140 * arc-mode.el (archive-extract):
16141 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
16142
16143 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16144
16145 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
16146 Fix check of `emacs-lock-unlockable-modes'.
16147 Coerce true values of `emacs-lock--try-unlocking' to t.
16148
16149 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16150
16151 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
16152 * emacs-lock.el: New file.
16153
16154 2011-07-05 Julien Danjou <julien@danjou.info>
16155
16156 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
16157 than `boundp' to check if face is set.
16158
16159 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16160
16161 * register.el (registerv-make):
16162 * window.el (window-min-height): Fix typos in docstrings.
16163
16164 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
16165
16166 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
16167 Update doc string.
16168
16169 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16170
16171 * server.el (server-execute): Catch quit and call
16172 `server-return-error' to pass the error back to emacsclient and
16173 close the connection (bug#8942).
16174
16175 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
16176
16177 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
16178 insecure exception for current topic. Also note that auto-saves
16179 are handled differently.
16180
16181 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
16182 State variables for tracking auto-save inhibition situation.
16183
16184 (allout-write-contents-hook-handler): Rename from
16185 'allout-write-file-hook-handler', and describe how it depends on
16186 write-contents-functions sensitivity to non-nil value to prevent
16187 file write.
16188
16189 (allout-auto-save-hook-handler): Remove. auto-save does not check
16190 this in individual buffers, only in the starting buffer, so this
16191 is not the right way for us to inhibit auto-save in a buffer
16192 according to its condition.
16193
16194 (allout-mode): Use new allout-write-contents-hook-handler, and
16195 only with write-contents-functions. Remove auto-save provisions -
16196 they're implemented elsewhere.
16197
16198 (allout-before-change-handler): If undo is in progress, note that
16199 for attention of allout-post-command-business.
16200
16201 (allout-post-command-business): If the command we're following was
16202 an undo, check for change in the status of encrypted items and
16203 adjust auto-save inhibitions accordingly.
16204
16205 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
16206 according to whether there are or aren't any plain-text topics
16207 pending encryption.
16208
16209 (allout-inhibit-auto-save-info-for-decryption):
16210 Adjust buffer-saved-size and some allout state to inhibit auto-saves
16211 if there are plain-text topics pending encryption.
16212
16213 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
16214 buffer-saved-size and some allout state to not inhibit auto-saves
16215 if there are no longer any plain-text topics pending encryption.
16216
16217 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
16218 No longer provide for exemption of the current topic.
16219
16220 2011-07-04 Juri Linkov <juri@jurta.org>
16221
16222 Add 7z operations to delete and save changed members (bug#8968).
16223 * arc-mode.el (archive-7z-expunge, archive-7z-update):
16224 New defcustoms.
16225 (archive-7z-write-file-member): New function.
16226 (archive-7z-summarize): Fix the number of dashes in the
16227 listing output.
16228
16229 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16230
16231 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
16232 (bug#8958).
16233
16234 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
16235
16236 * bindings.el: Ignore next-buffer and previous-buffer in
16237 minibuffer-local-map.
16238
16239 * font-lock.el (font-lock-builtin-face): Change light background
16240 color to dark slate blue (Bug#6693).
16241
16242 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
16243
16244 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
16245
16246 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16247
16248 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
16249 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16250 Add switch-to-buffer.
16251
16252 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16253
16254 * isearch.el (isearch-search-fun-function): Clarify further the
16255 meaning of the function returned.
16256
16257 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
16258
16259 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
16260
16261 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
16262 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
16263 Use it.
16264 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
16265 `tramp-default-remote-path' does not exist.
16266 (tramp-send-command-and-read): New optional argument NOERROR.
16267 (tramp-open-connection-setup-interactive-shell)
16268 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
16269 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
16270 (tramp-process-sentinel): Flush also process' connection property.
16271 (tramp-sh-handle-start-file-process): Do not set process
16272 sentinel. It is done now ...
16273 (tramp-maybe-open-connection): ... here. (Bug#8929)
16274
16275 2011-07-04 MON KEY <monkey@sandpframing.com>
16276
16277 * play/animate.el (animate-string): Doc fixes and allow changing
16278 the buffer name (bug#5417).
16279
16280 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16281
16282 * play/animate.el (animation-buffer-name): Rename from *animate*.
16283
16284 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
16285
16286 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
16287 This is simpler and helps future-proof the code.
16288 (timer-until): Use time-subtract and float-time.
16289 (timer--time-less-p): Use time-less-p.
16290
16291 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16292
16293 * type-break.el (timep): Use the value of `float-time' to avoid a
16294 byte-compiler warning.
16295
16296 * server.el (server-eval-and-print): Return any result, even nil.
16297
16298 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
16299
16300 * type-break.el: Accept time formats that the builtins accept.
16301 (timep, type-break-time-difference): Accept any format that
16302 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
16303 This is simpler and helps future-proof the code.
16304 (type-break-time-difference): Round rather than ignoring
16305 subseconds components.
16306
16307 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16308
16309 * info.el (Info-apropos-matches): Make non-interactive, since it
16310 doesn't seem to do anything useful as a command (bug#8829).
16311
16312 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
16313
16314 * frame.el (frame-background-mode, frame-set-background-mode):
16315 Move from faces.el.
16316 (frame-default-terminal-background): New function.
16317
16318 * custom.el (custom-push-theme): Don't record faces in `changed'
16319 theme; this doesn't work correctly for per-frame face settings.
16320 (disable-theme): Use face-set-after-frame-default to reset faces.
16321 (custom--frame-color-default): New function.
16322
16323 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16324
16325 * dired.el (dired-flagging-regexp): Remove unused variable
16326 (bug#8769).
16327
16328 2011-03-29 Kevin Ryde <user42@zip.com.au>
16329
16330 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16331 `perl-Test2' extend to match possible "fail #N" rep count
16332 (bug#8377).
16333
16334 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16335
16336 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
16337 `smtpmail-via-smtp' now returns the error instead of nil.
16338
16339 * isearch.el (isearch-search-fun-function): Clarify the doc string
16340 (bug#8101).
16341
16342 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
16343
16344 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
16345 unnecessary spaces (bug#8987).
16346
16347 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16348
16349 * net/network-stream.el (open-network-stream): Use the
16350 :end-of-capability command thoughout.
16351
16352 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
16353
16354 * net/network-stream.el (open-network-stream): Add the
16355 :end-of-capability command parameter, used by pop3.el.
16356
16357 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16358
16359 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
16360
16361 * fringe.el (fringe-query-style): Remove redundant text " (type ?
16362 for list)" (bug#6475).
16363
16364 * files.el (file-expand-wildcards): Ignore non-readable
16365 sub-directories while trying to find matches instead of signaling
16366 an error (bug#6297).
16367
16368 * man.el (Man-reference-regexp): Allow matching possible
16369 word-wrapped references (bug#6289).
16370
16371 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
16372 for consistency with the other vc buffers (bug#6197).
16373 (vc-checkin): Ditto.
16374
16375 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
16376
16377 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
16378
16379 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16380
16381 * custom.el (defcustom): Clarify that :set is only used in the
16382 Customize user interface (bug#6089).
16383
16384 * progmodes/flymake.el (flymake-mode): If the buffer isn't
16385 associated with a file, refuse to run instead of erroring out
16386 (bug#6084).
16387
16388 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
16389 the doc string, since it appears that using `fill-column' always
16390 controls the width (bug#7845).
16391
16392 * simple.el (shell-command-on-region): Say where the error output
16393 went if `shell-command-default-error-buffer' is set (bug#6857).
16394
16395 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
16396
16397 * allout.el (allout-yank-processing): Adjust cursor position for
16398 backwards-deleted space.
16399
16400 (allout-rebullet-heading): Register changes with
16401 allout-exposure-changed-hook, so the modified topic is properly
16402 decorated.
16403
16404 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16405
16406 * minibuffer.el (completion-in-region): Document PREDICATE
16407 (bug#7136).
16408
16409 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
16410 of keyword/argument pairs (bug#6904).
16411
16412 * replace.el (multi-occur):
16413 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
16414
16415 2011-07-02 Drew Adams <drew.adams@oracle.com>
16416
16417 * dired.el (dired-mark-if): Make the message about whether it's
16418 marking or unmarking clearer (bug#8523).
16419
16420 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16421
16422 * disp-table.el (display-table-print-array): New function.
16423 (describe-display-table): Use it to print the vectors more pretty
16424 (Bug#8859).
16425
16426 2011-07-02 Martin Rudalics <rudalics@gmx.at>
16427
16428 * window.el (window-state-get-1): Don't assign clone numbers.
16429 Add clone-of item to list of window parameters.
16430 (window-state-put-2): Don't process clone numbers.
16431 (display-buffer-alist): Fix doc-string.
16432
16433 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
16434
16435 * subr.el (remq): Don't allocate if it's not needed.
16436 (keymap--menu-item-binding, keymap--menu-item-with-binding)
16437 (keymap--merge-bindings): New functions.
16438 (keymap-canonicalize): Use them to refine the canonicalization.
16439 * minibuffer.el (minibuffer-local-completion-map)
16440 (minibuffer-local-must-match-map): Move initialization from C.
16441 (minibuffer-local-filename-completion-map): Move initialization from C;
16442 don't inherit from anything here.
16443 (minibuffer-local-filename-must-match-map): Make obsolete.
16444 (completing-read-default): Use make-composed-keymap to combine
16445 minibuffer-local-filename-completion-map with either
16446 minibuffer-local-must-match-map or
16447 minibuffer-local-filename-completion-map.
16448
16449 2011-07-01 Glenn Morris <rgm@gnu.org>
16450
16451 * type-break.el (type-break-time-sum): Use dolist.
16452
16453 * textmodes/flyspell.el (flyspell-word-search-backward):
16454 Replace CL function.
16455
16456 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
16457
16458 * mouse.el (mouse--strip-first-event): New function.
16459 (function-key-map): Use it to map fringe clicks to normal clicks
16460 by default.
16461
16462 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
16463 (vc-bzr-revision-completion-table): Add support for annotate and date.
16464
16465 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
16466 inherit from parent.
16467
16468 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
16469
16470 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
16471 (dired-show-file-type): Doc fixup (bug#8818).
16472
16473 * dired.el (dired-mode): Fix up the doc string as suggested by
16474 Drew Adams (bug#8817).
16475
16476 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
16477 cookie, since the manual says that it should be possible to add
16478 this function to `find-file-hook' (bug#8709).
16479
16480 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
16481
16482 * progmodes/cfengine.el: Moved all cfengine3.el functionality
16483 here. Noted Ted Zlatanov as the maintainer.
16484 (cfengine-common-settings, cfengine-common-syntax): New functions
16485 to set up common things between `cfengine-mode' and
16486 `cfengine3-mode'.
16487 (cfengine3-mode): New mode.
16488 (cfengine3-defuns cfengine3-defuns-regex
16489 (cfengine3-class-selector-regex cfengine3-category-regex)
16490 (cfengine3-vartypes cfengine3-font-lock-keywords)
16491 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
16492 (cfengine3-indent-line): Add from cfengine3.el.
16493
16494 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
16495
16496 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
16497
16498 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
16499
16500 2011-07-01 Martin Rudalics <rudalics@gmx.at>
16501
16502 * window.el (same-window-buffer-names, same-window-regexps)
16503 (same-window-p, special-display-frame-alist)
16504 (special-display-popup-frame, special-display-function)
16505 (special-display-buffer-names, special-display-regexps)
16506 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
16507 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
16508 (split-window-preferred-function, split-height-threshold)
16509 (split-width-threshold, even-window-heights)
16510 (display-buffer-mark-dedicated, window-splittable-p)
16511 (split-window-sensibly, window-safely-shrinkable-p):
16512 Un-obsolete.
16513 (display-buffer): Don't spread args with function specifier
16514 because special-display-popup-frame won't like it.
16515
16516 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
16517
16518 Time-stamp simplifications and fixes.
16519 These improve accuracy slightly, and future-proof the code
16520 against some potential changes to current-time format.
16521
16522 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
16523 by using time-since and float-time.
16524
16525 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
16526 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
16527 + NNN microseconds".
16528
16529 * type-break.el (type-break-time-sum): Rewrite using time-add.
16530
16531 * play/hanoi.el (hanoi-current-time-float): Remove.
16532 All uses replaced by float-time.
16533
16534 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
16535 This yields a more-accurate answer.
16536 (rng-time-to-float): Remove; no longer needed.
16537
16538 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
16539
16540 * calendar/timeclock.el (timeclock-seconds-to-time):
16541 Defalias to seconds-to-time, since they're the same thing.
16542
16543 * emacs-lisp/elp.el (elp-elapsed-time):
16544 * emacs-lisp/benchmark.el (benchmark-elapse):
16545 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
16546
16547 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
16548
16549 * window.el (bury-buffer): Don't iconify the only frame.
16550 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
16551 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
16552
16553 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
16554
16555 * eshell/em-smart.el (eshell-smart-display-navigate-list):
16556 Add mouse-yank-primary.
16557
16558 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
16559
16560 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
16561
16562 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
16563
16564 * emacs-lisp/find-func.el (find-library--load-name): New fun.
16565 (find-library-name): Use it to find relative load names when provided
16566 absolute file name (bug#8803).
16567
16568 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
16569
16570 * textmodes/flyspell.el (flyspell-word): Consider words that
16571 differ only in case as potential doublons (bug#5687).
16572
16573 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
16574 Remove two rather uninteresting debugging-like messages to make
16575 debbugs.el more silent.
16576
16577 * comint.el (comint-password-prompt-regexp): Accept "Response" as
16578 a password-like phrase.
16579
16580 2011-06-30 Masatake YAMATO <yamato@redhat.com>
16581
16582 * progmodes/cc-guess.el: New file.
16583
16584 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
16585
16586 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
16587 derived from `c-basic-common-init'.
16588
16589 * progmodes/cc-mode.el (top-level): Require cc-guess.
16590 (c-basic-common-init): Use `cc-choose-style-for-mode'.
16591
16592 2011-06-30 Lawrence Mitchell <wence@gmx.li>
16593
16594 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
16595
16596 2011-06-30 Alan Mackenzie <acm@muc.de>
16597
16598 * progmodes/cc-engine.el (c-guess-continued-construct):
16599 Correct the handling of template-args-cont, particularly for when font
16600 lock is disabled. Name this case as "CASE G".
16601
16602 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
16603
16604 * allout.el (allout-yank-processing): Fix injection of extra space
16605 between bullet and non-whitespace character in first topic when
16606 pasting, ensuring that the actual spacing in the pasted topic
16607 following the bullet char is preserved. This extra space was
16608 causing pasted encrypted topics to get a decrypted status even
16609 when the content was actually still encrypted. Now the decryption
16610 status from before the paste is preserved.
16611
16612 (allout-flag-region): Set all allout overlays so they evaporate
16613 when reduced to zero length (evanescent), to prevent overlay
16614 leakage.
16615
16616 2011-06-30 Glenn Morris <rgm@gnu.org>
16617
16618 * w32-fns.el (w32-charset-info-alist): Declare.
16619
16620 * find-dired.el (find-grep-options): Simplify.
16621
16622 * term/ns-win.el (ns-set-resource): Declare.
16623
16624 * ses.el (row, col): Declare dynamic variables honestly.
16625
16626 * textmodes/reftex-parse.el (index-tags): Declare.
16627
16628 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
16629
16630 * cus-edit.el (customize-push-and-save): New function.
16631
16632 * files.el (hack-local-variables-confirm): Use it.
16633
16634 * custom.el (load-theme): New arg NO-CONFIRM.
16635 Use customize-push-and-save (Bug#8720).
16636 (custom-enabled-themes): Doc fix.
16637
16638 * cus-theme.el (customize-create-theme)
16639 (custom-theme-merge-theme): Callers to load-theme changed.
16640
16641 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
16642
16643 * thingatpt.el (thing-at-point-short-url-regexp): Require that
16644 short URLs have at least one dot in them (bug #7614).
16645
16646 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
16647 nil, because using a pty is apparently too slow (bug #895).
16648
16649 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
16650
16651 * mail/sendmail.el (sendmail-query-once): New function.
16652 (sendmail-query-once-function): New variable.
16653
16654 2011-06-29 Glenn Morris <rgm@gnu.org>
16655
16656 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
16657
16658 * ses.el (top-level): Require cl when compiling.
16659 (ses-set-localvars): Fix error statement.
16660 Call it at compile time to silence a storm of warnings.
16661
16662 2011-06-29 Martin Rudalics <rudalics@gmx.at>
16663
16664 * window.el (normalize-live-buffer): Rename to
16665 window-normalize-buffer.
16666 (normalize-live-frame): Rename to window-normalize-frame.
16667 (normalize-any-window): Rename to window-normalize-any-window.
16668 (normalize-live-window): Rename to window-normalize-live-window.
16669 (make-window-atom): Rename to window-make-atom.
16670 (window-resize-reset): Rename to window--resize-reset.
16671 (window-resize-reset-1): Rename to window--resize-reset-1.
16672 (resize-mini-window): Rename to window--resize-mini-window.
16673 (resize-subwindows-skip-p): Rename to
16674 window--resize-subwindows-skip-p.
16675 (resize-subwindows-normal): Rename to
16676 window--resize-subwindows-normal.
16677 (resize-subwindows): Rename to window--resize-subwindows.
16678 (resize-other-windows): Rename to window--resize-siblings.
16679 (resize-this-window): Rename to window--resize-this-window.
16680 (resize-root-window): Rename to window--resize-root-window.
16681 (resize-root-window-vertically): Rename to
16682 window--resize-root-window-vertically.
16683 (normalize-buffer-to-display): Rename to
16684 window-normalize-buffer-to-display.
16685 (normalize-buffer-to-switch-to): Rename to
16686 window-normalize-buffer-to-switch-to.
16687 Correspondingly update all callers of the functions listed
16688 above.
16689 (display-buffer-alist, display-buffer-normalize-arguments)
16690 (display-buffer-normalize-options, display-buffer)
16691 (display-buffer-alist-set): Use "function" instead of
16692 "fun-with-args".
16693
16694 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
16695
16696 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
16697 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
16698 debbugs.gnu.org. Mention acknowledgment email.
16699
16700 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
16701
16702 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
16703 buffer multibyteness, since it shouldn't matter.
16704
16705 2011-06-28 Martin Rudalics <rudalics@gmx.at>
16706
16707 * window.el (display-buffer-in-side-window): Handle dedicated
16708 windows as in display-buffer-reuse-window.
16709 (display-buffer-normalize-alist): Use value of override
16710 specifier.
16711 (display-buffer-normalize-specifiers): Use value of
16712 other-window-means-other-frame specifier.
16713 (display-buffer-alist): Rewrite some texts in widgets.
16714 (display-buffer): Spread arguments when calling function
16715 specified by fun-with-args.
16716
16717 2011-06-28 Deniz Dogan <deniz@dogan.se>
16718
16719 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
16720 Unnest `let'.
16721
16722 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
16723 selectors (Bug#5732).
16724 (css-proprietary-nmstart-re): Use `regexp-opt'.
16725
16726 2011-06-27 Jari Aalto <jari.aalto@cante.net>
16727
16728 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
16729 (eshell-ls-date-format): New defcustom.
16730 (eshell-ls-file): Use it.
16731
16732 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
16733
16734 * help-fns.el (describe-variable): Fix message for terminal-local vars.
16735
16736 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
16737
16738 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
16739 (ange-ftp-make-tmp-name): New arg.
16740 (ange-ftp-file-local-copy): Use it.
16741
16742 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
16743
16744 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
16745 no-conversion (Bug#8870).
16746
16747 2011-06-27 Martin Rudalics <rudalics@gmx.at>
16748
16749 * window.el (window-right, window-left, window-child)
16750 (window-child-count, window-last-child)
16751 (window-iso-combination-p, walk-window-tree-1)
16752 (window-atom-check-1, window-tree-1, delete-window)
16753 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
16754 new naming conventions - window-vchild, window-hchild,
16755 window-next and window-prev are now called window-top-child,
16756 window-left-child, window-next-sibling and window-prev-sibling
16757 respectively.
16758 (resize-window-reset): Rename to window-resize-reset.
16759 (resize-window-reset-1): Rename to window-resize-reset-1.
16760 (resize-window): Rename to window-resize.
16761 (window-min-height, window-min-width)
16762 (resize-mini-window, resize-this-window, resize-root-window)
16763 (resize-root-window-vertically, adjust-window-trailing-edge)
16764 (enlarge-window, shrink-window, maximize-window)
16765 (minimize-window, delete-window, quit-restore-window)
16766 (split-window, balance-windows, balance-windows-area-adjust)
16767 (balance-windows-area, window-state-put-2)
16768 (display-buffer-even-window-sizes, display-buffer-set-height)
16769 (display-buffer-set-width, set-window-text-height)
16770 (fit-window-to-buffer): Rename all "resize-window" prefixed
16771 calls to use the "window-resize" prefix convention.
16772 (display-buffer-alist): Fix symbol for label specifier.
16773 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
16774 corresponding specifier.
16775 Reported by Juanma Barranquero <lekktu@gmail.com>.
16776
16777 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
16778
16779 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
16780 convention.
16781 (ses-call-printer): Does not pass an empty string to formatter when the
16782 cell is empty to keep from barking printer Calc math-format-value.
16783
16784 2011-06-27 Richard Stallman <rms@gnu.org>
16785
16786 * battery.el (battery-mode-line-limit): New variable.
16787 (battery-update): Handle it.
16788
16789 * mail/rmailmm.el (rmail-mime-process-multipart):
16790 Handle truncated messages.
16791
16792 2011-06-27 Glenn Morris <rgm@gnu.org>
16793
16794 * progmodes/flymake.el (flymake-err-line-patterns):
16795 Allow for column numbers in the ant/javac pattern. (Bug#8866)
16796
16797 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
16798
16799 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
16800 (ses--clean-!, ses--clean-_): New functions.
16801 (ses-range): Add configurability of readout order, and conversion
16802 to Calc vector.
16803
16804 * ses.el (ses-repair-cell-reference-all): New function.
16805 (ses-cell-symbol): Set macro as safe, so that it can be used in
16806 formulas.
16807
16808 * ses.el: Update cycle detection algorithm.
16809 (ses-localvars): Add ses--Dijkstra-attempt-nb and
16810 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
16811 (ses-set-localvars): New function.
16812 (ses-make-cell): Add property-list as a cell element.
16813 (ses-cell-property-get-fun, ses-cell-property-get)
16814 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
16815 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
16816 New functions.
16817 (ses-cell-property-set, ses-cell-property-pop)
16818 (ses-cell-property-get-handle): New macro.
16819 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
16820 New aliases, used for code readability.
16821 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
16822 cycle detection.
16823 (ses-self-reference-early-detection): New defcustom.
16824 (ses-formula-references): Robustify against self-referring cells.
16825 (ses-mode): Use ses-set-localvars.
16826 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
16827 before lauching the update processing.
16828 (ses-initialize-Dijkstra-attempt): New function.
16829 (ses-recalculate-cell): Update for cycle detection based on
16830 Dijkstra algorithm.
16831
16832 * ses.el: Fix commenting and indenting convention.
16833
16834 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
16835
16836 * bs.el (bs-cycle-next): Complete last change.
16837
16838 2011-06-27 Drew Adams <drew.adams@oracle.com>
16839
16840 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
16841
16842 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
16843
16844 * net/network-stream.el (network-stream-open-starttls):
16845 Don't re-get capabilities unless we've reestablished connection.
16846 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
16847
16848 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
16849 to binary to possibly avoid line encoding issues on Windows (among
16850 other things).
16851
16852 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
16853
16854 * net/network-stream.el (open-network-stream): Return an :error
16855 saying what the problem was, if possible.
16856
16857 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
16858 server.
16859
16860 * net/network-stream.el (network-stream-open-starttls): If we
16861 wanted to use STARTTLS, and the server offered it, but we weren't
16862 able to because we had no STARTTLS support, then close the connection.
16863 (open-network-stream): Return an :error element, if present.
16864
16865 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
16866
16867 * hl-line.el (hl-line-sticky-flag): Doc fix.
16868 (global-hl-line-sticky-flag): New option (Bug#8323).
16869 (global-hl-line-highlight): Obey it.
16870
16871 * vc/vc.el (vc-revert-show-diff): Default to t.
16872
16873 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
16874
16875 * allout-widgets.el (allout-widgets-post-command-business):
16876 Stop decorating intermediate isearch matches. They're not being
16877 undecorated when an isearch is continued past, and isearch
16878 automatically collapses them. This leads to "widget leaks", where
16879 decorated items accumulate in collapsed areas. Lines with lots of
16880 hidden widgets can slow down cursor travel, substantially.
16881 Too much complicated machinery would be needed to ensure undecoration,
16882 so we're doing without this nicety.
16883
16884 (allout-widgets-tally-string): Don't try to do a hash-table-count
16885 of allout-widgets-tally when it's nil. This eliminates spurious "Error
16886 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
16887 *Messages* when allout-widgets-maintain-tally is t.
16888
16889 2011-06-26 Martin Rudalics <rudalics@gmx.at>
16890
16891 * window.el (display-buffer-normalize-argument): Rename to
16892 display-buffer-normalize-arguments. Handle special meaning of
16893 LABEL argument. Respect special-display-function when popping up
16894 a new frame. Fix code searching for a window showing the buffer
16895 on another frame.
16896 (display-buffer-normalize-specifiers):
16897 Call display-buffer-normalize-arguments.
16898 (display-buffer-in-window): Don't undedicate the window if its
16899 buffer remains the same.
16900 Reported by Drew Adams <drew.adams@oracle.com>.
16901 (display-buffer-alist): Add choice for same-window macro
16902 specfier.
16903 (display-buffer): Mention special meaning of LABEL argument in
16904 doc-string. Fix quoting. Don't pop up a new frame even as
16905 fallback.
16906
16907 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
16908
16909 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
16910 avoid deleting the current window in some cases (bug#8911).
16911
16912 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
16913
16914 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
16915 (Bug#8934)
16916
16917 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
16918
16919 * net/network-stream.el (network-stream-open-starttls):
16920 Use built-in TLS support if `gnutls-available-p' is true.
16921 (network-stream-open-tls): Ditto.
16922
16923 2011-06-26 Leo Liu <sdl.web@gmail.com>
16924
16925 * register.el (registerv): New struct.
16926 (registerv-make): New function.
16927 (jump-to-register, describe-register-1, insert-register):
16928 Support the jump-func, print-func and insert-func slot of a registerv
16929 struct. (Bug#8415)
16930
16931 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
16932
16933 * vc/vc.el (vc-revert-show-diff): New defcustom.
16934 (vc-diff-internal): New arg specifying diff buffer.
16935 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
16936 reuse an existing *vc-diff* buffer (Bug#8927).
16937
16938 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
16939
16940 2011-06-26 Glenn Morris <rgm@gnu.org>
16941
16942 * progmodes/f90.el (f90-critical-indent): New option.
16943 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
16944 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
16945 (f90-mode): Doc fix.
16946 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
16947 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
16948 (f90-beginning-of-block, f90-next-block, f90-indent-region)
16949 (f90-match-end): Handle block, critical.
16950
16951 2011-06-25 Glenn Morris <rgm@gnu.org>
16952
16953 * calendar/diary-lib.el (diary-included-files): Doc fix.
16954 (diary-include-files): New function, extracted from
16955 diary-include-other-diary-files and diary-mark-included-diary-files.
16956 (diary-include-other-diary-files, diary-mark-included-diary-files):
16957 Just call diary-include-files.
16958 (diary-mark-entries): Reset diary-included-files on first call.
16959
16960 * calendar/diary-lib.el (diary-mark-entries)
16961 (diary-mark-included-diary-files):
16962 Visit included diary-files in temp buffers.
16963
16964 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
16965 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
16966 (f90-start-block-re, f90-imenu-generic-expression)
16967 (f90-looking-at-program-block-start, f90-no-block-limit):
16968 Add support for submodules.
16969
16970 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
16971 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
16972
16973 2011-06-25 Eli Zaretskii <eliz@gnu.org>
16974
16975 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
16976 buffer-file-type before setting its value, to avoid disastrous
16977 global effects on decoding files for DOS/Windows systems. (Bug#8780)
16978
16979 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
16980
16981 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
16982
16983 * ses.el (ses-unload-function):
16984 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
16985
16986 * proced.el (proced-unload-function):
16987 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
16988
16989 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
16990
16991 * server.el (server-create-window-system-frame): Add parameters arg.
16992 (server-process-filter): Doc fix. Handle frame-parameters.
16993
16994 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
16995
16996 Fix bug#8730, bug#8781.
16997
16998 * loadhist.el (unload--set-major-mode): New function.
16999 (unload-feature): Use it.
17000
17001 * progmodes/python.el (python-after-info-look): Add autoload cookie.
17002 (python-unload-function): New function.
17003
17004 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
17005
17006 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
17007
17008 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
17009
17010 * net/browse-url.el (browse-url-firefox-program): Add icecat to
17011 the candidates list.
17012
17013 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
17014
17015 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
17016
17017 2011-06-23 Richard Stallman <rms@gnu.org>
17018
17019 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
17020 (rmail-variables): Set next-error-move-function.
17021 (rmail-what-message): Take argument POS.
17022 (rmail-next-error-move): New function.
17023
17024 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
17025
17026 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
17027 messages for adjacent non-terminals.
17028
17029 2011-06-23 Richard Stallman <rms@gnu.org>
17030
17031 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
17032 (rmail-show-message-1): Preserve buffer modified flag.
17033 (rmail-start-mail): Don't specify use of rmail-mail-return;
17034 that's done by mail-bury now.
17035 (rmail-mail-return): Handle arg NEWBUF.
17036
17037 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
17038
17039 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
17040 SIZE is a number.
17041
17042 2011-06-23 Martin Rudalics <rudalics@gmx.at>
17043
17044 * window.el (get-lru-window, get-mru-window)
17045 (get-largest-window): Never return a minibuffer window.
17046 (display-buffer-pop-up-window): Fix a bug that could lead to
17047 reusing the minibuffer window.
17048 (display-buffer): Pass original specifier argument to
17049 display-buffer-function instead of the normalized one.
17050 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
17051
17052 2011-06-22 Leo Liu <sdl.web@gmail.com>
17053
17054 * minibuffer.el (completing-read-function)
17055 (completing-read-default): Move from minibuf.c.
17056
17057 2011-06-22 Richard Stallman <rms@gnu.org>
17058
17059 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
17060 to Rmail even if not started by a special Rmail command.
17061
17062 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
17063 Copy the buffer currently showing just one message.
17064
17065 2011-06-22 Roland Winkler <winkler@gnu.org>
17066
17067 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
17068 (bibtex-clean-entry): First delete the old key so that a
17069 customized algorithm for generating the new key does not get
17070 confused by the old key.
17071 (bibtex-url): Obey regexp of first step.
17072 (bibtex-search-entries): Do not use add-to-list with local
17073 list-var.
17074
17075 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17076
17077 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
17078 stored a user name, then query for the password first, instead of
17079 waiting for SMTP to give an error message and the trying again.
17080
17081 2011-06-22 Lawrence Mitchell <wence@gmx.li>
17082
17083 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
17084 BUFFER in call-process.
17085
17086 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17087
17088 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
17089 QUIT twice.
17090 (smtpmail-try-auth-methods): Require user name and password from
17091 auth-source.
17092
17093 2011-06-22 Martin Rudalics <rudalics@gmx.at>
17094
17095 * window.el (display-buffer-default-specifiers)
17096 (display-buffer-alist): Remove entries for pop-up-frame-alist.
17097 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
17098 (split-window): Normalize SIDE argument (Bug#8916).
17099
17100 * frame.el (pop-up-frame-alist, pop-up-frame-function)
17101 (special-display-frame-alist, special-display-popup-frame):
17102 Remove duplicate declarations. These are now in window.el.
17103
17104 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
17105
17106 * mail/smtpmail.el (smtpmail-via-smtp):
17107 Set :use-starttls-if-possible so that we always use STARTTLS if the
17108 server supports it. SMTP servers that support STARTTLS commonly
17109 require it.
17110
17111 * net/network-stream.el (network-stream-open-starttls): Support
17112 upgrading to STARTTLS always, even if we don't have built-in support.
17113 (open-network-stream): Add the :always-query-capabilities keyword.
17114
17115 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
17116 upgrades with `open-network-stream', and rely solely on
17117 auth-source for all credentials. Big changes throughout the file,
17118 but in particular:
17119 (smtpmail-auth-credentials): Remove.
17120 (smtpmail-starttls-credentials): Remove.
17121 (smtpmail-via-smtp): Check for servers saying they want AUTH after
17122 MAIL FROM, too.
17123
17124 * net/network-stream.el (network-stream-open-starttls):
17125 Provide support for client certificates both for external and built-in
17126 STARTTLS.
17127 (auth-source): Require.
17128 (open-network-stream): Document the :client-certificate keyword.
17129 (network-stream-certificate): Change cert-cert to cert and
17130 cert-key to key.
17131
17132 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
17133
17134 * net/tramp-cache.el (top): Don't load the persistency file when
17135 "emacs -Q" has been called.
17136
17137 2011-06-21 Tim Harper <timcharper@gmail.com>
17138
17139 * term/ns-win.el (ns-initialize-window-system):
17140 Set application-specific `ApplePressAndHoldEnabled' system
17141 resource to NO as it is not yet supported by the NS port.
17142
17143 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
17144
17145 * misc.el (list-dynamic-libraries--refresh): Compute header here...
17146 (list-dynamic-libraries): ...not here.
17147
17148 2011-06-21 Leo Liu <sdl.web@gmail.com>
17149
17150 * subr.el (sha1): Implement sha1 using secure-hash.
17151
17152 2011-06-21 Martin Rudalics <rudalics@gmx.at>
17153
17154 * window.el (display-buffer-alist): In default value do not
17155 enforce searching a window on any but the selected frame.
17156 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
17157 (display-buffer-select-window): Remove function.
17158 (display-buffer-in-window): When a window on another frame gets
17159 reused, do not select it any more but just raise its frame if
17160 necessary (Bug#8851) and (Bug#8856).
17161 (display-buffer-normalize-options): Handle pop-up-frames related
17162 options more faithfully.
17163 (pop-to-buffer): Don't rely on `display-buffer' selecting the
17164 window if it is on another frame.
17165 (display-buffer-alist, display-buffer-default-specifiers):
17166 Don't make new frame unsplittable by default.
17167 (display-buffer-normalize-argument): Fix doc-string typo and use
17168 'same-frame-other-window instead of 'other-window when associating
17169 with display-buffer-macro-specifiers.
17170
17171 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
17172
17173 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
17174 New functions.
17175 (5x5-mode-map, 5x5-mode-menu): Bind them.
17176 (5x5-draw-grid): Tweak the solver's rendering.
17177
17178 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17179
17180 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
17181 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
17182
17183 2011-06-21 Drew Adams <drew.adams@oracle.com>
17184
17185 * menu-bar.el: Use function variable instead of switch-to-buffer.
17186 (menu-bar-select-buffer-function): New variable.
17187 (menu-bar-update-buffers): Use it (bug#8876).
17188
17189 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17190
17191 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
17192 variable's status.
17193
17194 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
17195
17196 * x-dnd.el (x-dnd-version-from-flags)
17197 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
17198 and long as number (Bug#8899).
17199 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
17200
17201 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
17202
17203 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
17204 (completion-try-completion, completion-all-completions): Compute the
17205 metadata argument if it's missing; make it optional (bug#8795).
17206
17207 * wid-edit.el: Use lex-bind and move towards completion-at-point.
17208 (widget-complete): Use new :completion-function property.
17209 (widget-completions-at-point): New function.
17210 (default): Use :completion-function instead of :complete.
17211 (widget-default-completions): Rename from widget-default-complete;
17212 Rewrite.
17213 (widget-string-complete, widget-file-complete, widget-color-complete):
17214 Remove functions.
17215 (file, symbol, function, variable, coding-system, color):
17216 * international/mule-cmds.el (default-input-method, charset)
17217 (language-info-custom-alist):
17218 * cus-edit.el (face): Use new property :completions.
17219
17220 * progmodes/pascal.el (pascal-completions-at-point): New function.
17221 (pascal-mode): Use it.
17222 (pascal-mode-map): Use completion-at-point.
17223 (pascal-toggle-completions): Make obsolete.
17224 (pascal-complete-word, pascal-show-completions):
17225 * progmodes/octave-mod.el (octave-complete-symbol):
17226 Redefine as obsolete alias.
17227 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
17228 Signal absence of completion info for old Octave,
17229 (inferior-octave-complete): Redefine as obsolete alias.
17230 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
17231 (meta-completions-at-point): Rename from meta-complete-symbol and
17232 adapt it for use on completion-at-point-functions.
17233 (meta-common-mode): Use it.
17234 (meta-looking-at-backward, meta-match-buffer): Remove.
17235 (meta-complete-symbol): Redefine as obsolete alias.
17236 (meta-common-mode-map): Use completion-at-point.
17237 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
17238 (makefile-mode-map): Use completion-at-point.
17239 (makefile-completions-at-point): Rename from makefile-complete and
17240 adapt it for use on completion-at-point-functions.
17241 (makefile-mode): Use it.
17242 (makefile-complete): Redefine as obsolete alias.
17243
17244 2011-06-20 Deniz Dogan <deniz@dogan.se>
17245
17246 * net/rcirc.el: Delete trailing whitespaces once and for all.
17247
17248 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
17249
17250 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
17251
17252 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
17253
17254 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
17255
17256 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
17257
17258 2011-06-19 Martin Rudalics <rudalics@gmx.at>
17259
17260 * window.el (display-buffer-other-window-means-other-frame):
17261 Call display-buffer-normalize-alist.
17262 (display-buffer-normalize-specifiers-1): Rename to
17263 display-buffer-normalize-argument. New argument other-frame.
17264 Rewrite.
17265 (display-buffer-normalize-specifiers-2): Rename to
17266 display-buffer-normalize-options.
17267 (display-buffer-normalize-alist-1): New function.
17268 (display-buffer-normalize-specifiers-3): Rename to
17269 display-buffer-normalize-alist.
17270 Call display-buffer-normalize-alist-1.
17271 (display-buffer-normalize-options-inhibit): New variable.
17272 (display-buffer-normalize-specifiers): Rewrite calling
17273 display-buffer-normalize-alist,
17274 display-buffer-normalize-argument, and
17275 display-buffer-normalize-options. Don't call the latter if
17276 display-buffer-normalize-options-inhibit is non-nil.
17277 (frame-auto-delete): New option.
17278 (window-deletable-p): Use frame-auto-delete.
17279 (window-list-no-nils, window-state-ignored-parameters)
17280 (window-state-get-1, window-state-get, window-state-put-list)
17281 (window-state-put-1, window-state-put-2, window-state-put):
17282 New functions.
17283 (display-buffer-normalize-options): Move special-display-p group
17284 after pop-up-frame group (Bug#8851) and (Bug#8856).
17285
17286 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
17287
17288 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
17289 groups (Bug#8776).
17290 (rx-submatch-n): New function.
17291 (rx): Document it.
17292
17293 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
17294 (Bug#8768).
17295
17296 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
17297
17298 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
17299
17300 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
17301 anytime existing face settings are present (Bug#8889).
17302
17303 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
17304 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
17305 Remove unused argument.
17306
17307 2011-06-18 Martin Rudalics <rudalics@gmx.at>
17308
17309 * window.el (display-buffer-default-specifiers):
17310 Remove pop-up-frame. Add pop-up-window-min-height,
17311 pop-up-window-min-width, and another reuse-window specifier
17312 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
17313 (display-buffer-normalize-specifiers-2):
17314 Handle split-height-threshold and split-width-threshold also when
17315 pop-up-windows is unset. Add a reuse-window specifier for the
17316 case popping up a new window fails.
17317 (special-display-popup-frame): Remove double quoting.
17318 (display-buffer-normalize-specifiers-1): Fix thinko.
17319
17320 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
17321
17322 * shell.el (shell-completion-vars): Set pcomplete-termination-string
17323 according to comint-completion-addsuffix.
17324
17325 * pcomplete.el: Convert to lexical binding and fix bug#8819.
17326 (pcomplete-suffix-list): Mark as obsolete.
17327 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
17328 pcomplete-seen in the closure.
17329 (pcomplete-comint-setup): Setup completion-at-point as well.
17330 (pcomplete--entries): New function.
17331 (pcomplete--env-regexp): New var.
17332 (pcomplete-entries): Rewrite to work with partial-completion and
17333 without relying on pcomplete-suffix-list.
17334 (pcomplete-pare-list): Remove, unused.
17335
17336 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17337
17338 * window.el (display-buffer-alist): Set pop-up-window-min-height
17339 and pop-up-window-min-width in default value. Reported by
17340 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
17341 other-window-means-other-frame.
17342 (display-buffer-macro-specifiers): Comment out entry for
17343 other-window specifier.
17344 (display-buffer-other-window-means-other-frame): New function.
17345 (display-buffer-normalize-specifiers-1): New arguments
17346 buffer-name and label. Treat other-window case specially.
17347 (display-buffer-normalize-specifiers-2): Treat other-window case
17348 specially.
17349 (display-buffer-normalize-specifiers-3): New function.
17350 (display-buffer-normalize-specifiers):
17351 Call display-buffer-normalize-specifiers-3.
17352
17353 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17354
17355 * window.el (same-window-p): Fix two typos introduced when
17356 adding with-no-warnings.
17357 (display-buffer-normalize-specifiers-1): Don't check
17358 pop-up-frames for 'unset initialization.
17359 (display-buffer-normalize-specifiers-2): Major rewrite using
17360 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
17361 (pop-up-frames, display-buffer-reuse-frames)
17362 (display-buffer-mark-dedicated): Don't initialize to 'unset.
17363 Suggested by David Engster <deng@randomsample.de>.
17364 (even-window-heights): Initialize to 'unset.
17365 (display-buffer-alist-set): Handle new 'unset initializations.
17366 (display-buffer-macro-specifiers): Don't pop up a new frame in the
17367 other window case.
17368
17369 2011-06-16 Martin Rudalics <rudalics@gmx.at>
17370
17371 * window.el (display-buffer-normalize-specifiers-1):
17372 Respect current value of pop-up-frames for most reasonable values of
17373 second argument of display-buffer (Bug#8865).
17374 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
17375 (switch-to-buffer-other-window-same-frame)
17376 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
17377 Adams (Bug#8875).
17378 (display-buffer): Don't check noninteractive when calling
17379 display-buffer-pop-up-frame.
17380 (display-buffer-pop-up-frame): Never pop up a frame in
17381 noninteractive mode (Bug#8857).
17382 (enlarge-window, shrink-window): Don't report an error when the
17383 window can't be resized as requested (Bug#8862).
17384
17385 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17386
17387 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
17388
17389 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
17390
17391 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
17392
17393 2011-06-15 Alan Mackenzie <acm@muc.de>
17394
17395 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
17396 for declarators, disable knr checking to speed up for normal files.
17397 2: Refactor, replacing a sequence of nested if forms by a cond form.
17398
17399 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
17400
17401 * net/network-stream.el (open-network-stream): Add the keyword
17402 :always-query-capabilities for the case where you want to force a
17403 `plain' network connection, but the protocol still requires the
17404 capabilitiy command (i.e., SMTP and EHLO).
17405
17406 * subr.el (process-live-p): Rename from `process-alive-p' for
17407 consistency with other `-live-p' functions.
17408
17409 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17410
17411 * window.el (same-window-buffer-names, same-window-regexps)
17412 (special-display-frame-alist, special-display-popup-frame)
17413 (special-display-function, special-display-buffer-names)
17414 (special-display-regexps, pop-up-frame-alist)
17415 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
17416 (pop-up-windows, split-window-preferred-function)
17417 (split-height-threshold, split-width-threshold, even-window-heights)
17418 (display-buffer-mark-dedicated): Don't encourage the use of
17419 display-buffer-alist from Elisp code.
17420
17421 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
17422
17423 * progmodes/python.el (python-mode): Derive from prog-mode.
17424 * progmodes/ps-mode.el (ps-mode):
17425 * progmodes/mixal-mode.el (mixal-mode):
17426 * progmodes/cfengine.el (cfengine-mode):
17427 * progmodes/ld-script.el (ld-script-mode): Likewise.
17428
17429 2011-06-15 Martin Rudalics <rudalics@gmx.at>
17430
17431 * window.el (display-buffer-alist): Trim default value to avoid
17432 popping up a new frame (Bug#8857) or reusing an arbitrary window
17433 on another frame.
17434 (display-buffer): Do not fall back on popping up a new frame in
17435 batch mode (Bug#8857).
17436
17437 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
17438
17439 * cus-theme.el (describe-theme-1): Use custom-theme-p.
17440 (custom-theme-summary): New function.
17441 (customize-themes): Use it.
17442
17443 2011-06-13 Glenn Morris <rgm@gnu.org>
17444
17445 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
17446
17447 2011-06-13 Martin Rudalics <rudalics@gmx.at>
17448
17449 * help.el (help-window): Remove variable.
17450 (help-window-point-marker, temp-buffer-max-height)
17451 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
17452 (help-print-return-message): Don't set help-window.
17453 (resize-temp-buffer-window): Rewrite cod eand doc-string.
17454 (help-window-setup-finish): Remove.
17455 (help-window-display-message, help-window-setup)
17456 (with-help-window): Major rewrite based on new
17457 display-buffer-window variable.
17458
17459 * help-mode.el (help-mode-finish): Remove help-window related
17460 code.
17461
17462 * view.el (view-exits-all-viewing-windows): Remove reference to
17463 view-return-to-alist in doc-string.
17464 (view-return-to-alist): Make obsolete.
17465 (view-buffer): Call pop-to-buffer-same-window and remove
17466 undo-window code.
17467 (view-buffer-other-window): Call pop-to-buffer-other-window and
17468 simplify code. Ignore second argument.
17469 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
17470 simplify code. Ignore second argument.
17471 (view-return-to-alist-update): Make obsolete.
17472 (view-mode-enter): Rename second argument to QUIT-RESTORE.
17473 Rewrite using quit-restore window parameters.
17474 (view-mode-exit): Rename second argument to EXIT-ONLY.
17475 Rewrite using quit-restore-window.
17476 (View-exit, View-exit-and-edit, View-leave, View-quit)
17477 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
17478 appropriate arguments.
17479 (view-end-message): Use quit-restore window parameter.
17480
17481 * window.el (display-buffer-function): Rewrite doc-string.
17482 (display-buffer-window, display-buffer-alist): New variables.
17483 (display-buffer-split-specifiers)
17484 (display-buffer-side-specifiers)
17485 (display-buffer-macro-specifiers): New constants.
17486 (display-buffer-even-window-sizes, display-buffer-set-height)
17487 (display-buffer-set-width, display-buffer-select-window)
17488 (display-buffer-in-window, display-buffer-reuse-window)
17489 (display-buffer-split-window-1, display-buffer-split-window)
17490 (display-buffer-split-atom-window, display-buffer-pop-up-window)
17491 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
17492 (display-buffer-in-side-window, normalize-buffer-to-display)
17493 (display-buffer-normalize-specifiers-1)
17494 (display-buffer-normalize-specifiers-2)
17495 (display-buffer-normalize-specifiers, display-buffer-frame):
17496 New functions.
17497 (display-buffer): Major rewrite.
17498 (display-buffer-other-window, display-buffer-other-frame)
17499 (pop-to-buffer, switch-to-buffer-other-window)
17500 (switch-to-buffer-other-frame): Rewrite.
17501 (display-buffer-same-window, display-buffer-same-frame)
17502 (display-buffer-same-frame-other-window)
17503 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
17504 (pop-to-buffer-other-window)
17505 (pop-to-buffer-same-frame-other-window)
17506 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
17507 (switch-to-buffer-other-window-same-frame): New functions.
17508 (same-window-p, special-display-p): Rewrite disabling warnings.
17509 Make obsolete.
17510 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
17511 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
17512 Make obsolete
17513 (same-window-buffer-names, same-window-regexps)
17514 (special-display-frame-alist, special-display-popup-frame)
17515 (special-display-function, special-display-buffer-names)
17516 (special-display-regexps, pop-up-frame-alist)
17517 (pop-up-frame-function, split-window-preferred-function)
17518 (split-height-threshold, split-width-threshold)
17519 (even-window-heights): Make obsolete.
17520
17521 2011-06-12 Glenn Morris <rgm@gnu.org>
17522
17523 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
17524 Misc simplifications.
17525
17526 2011-06-12 Martin Rudalics <rudalics@gmx.at>
17527
17528 * window.el (window-safely-shrinkable-p): Restore function which
17529 was inadvertently removed in change from 2011-06-11. Declare as
17530 obsolete.
17531
17532 * calendar/calendar.el (calendar-generate-window):
17533 Use window-iso-combined-p instead of combination of one-window-p and
17534 window-safely-shrinkable-p.
17535
17536 2011-06-12 Glenn Morris <rgm@gnu.org>
17537
17538 * progmodes/fortran.el (fortran-mode-syntax-table):
17539 * progmodes/f90.el (f90-mode-syntax-table):
17540 Set % to punctuation. (Bug#8820)
17541 (f90-find-tag-default): Remove, no longer needed.
17542
17543 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
17544
17545 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
17546
17547 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
17548
17549 * image.el (image-animated-p): Return animation delay in seconds.
17550 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
17551 (image-animate-timeout): Remove DELAY argument. Don't assume
17552 every subimage has the same delay; get it from image-animated-p.
17553 (image-animate): Caller changed.
17554
17555 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
17556
17557 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
17558 to ignored backtrace functions.
17559
17560 2011-06-11 Glenn Morris <rgm@gnu.org>
17561
17562 * calendar/appt.el (appt-disp-window-function): Doc fix.
17563 (appt-check): Handle overlapping appointments. (Bug#8337)
17564
17565 2011-06-11 Martin Rudalics <rudalics@gmx.at>
17566
17567 * window.el (window-tree-1, window-tree): New functions, moving
17568 the latter to window.el.
17569 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
17570 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
17571 (bw-refresh-edges): Remove.
17572 (balance-windows-1, balance-windows-2): New functions.
17573 (balance-windows): Rewrite in terms of window tree functions,
17574 balance-windows-1 and balance-windows-2.
17575 (bw-adjust-window): Remove.
17576 (balance-windows-area-adjust): New function with functionality of
17577 bw-adjust-window but using resize-window.
17578 (set-window-text-height): Rewrite doc-string.
17579 Use normalize-live-window and resize-window.
17580 (enlarge-window-horizontally, shrink-window-horizontally):
17581 Rename argument to DELTA.
17582 (window-buffer-height): New function.
17583 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
17584 Rewrite using new window resize routines.
17585 (kill-buffer-and-window, mouse-autoselect-window-select):
17586 Use ignore-errors instead of condition-case.
17587 (quit-window): Call delete-frame instead of delete-windows-on
17588 for the only buffer on frame.
17589
17590 2011-06-10 Martin Rudalics <rudalics@gmx.at>
17591
17592 * loadup.el (top-level): Load window before files for the sake
17593 of replace-buffer-in-windows.
17594
17595 * files.el (read-buffer-to-switch)
17596 (switch-to-buffer-other-window)
17597 (switch-to-buffer-other-frame, display-buffer-other-frame):
17598 Move to window.el.
17599
17600 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
17601 (previous-buffer): Move to window.el.
17602
17603 * bindings.el (unbury-buffer): Move to window.el.
17604
17605 * window.el (delete-other-windows-vertically): Move after
17606 definition of delete-other-windows.
17607 (other-window, delete-windows-on, replace-buffer-in-windows):
17608 Move here from window.c.
17609 (record-window-buffer, unrecord-window-buffer)
17610 (set-window-buffer-start-and-point, switch-to-prev-buffer)
17611 (switch-to-next-buffer): New functions.
17612 (get-next-valid-buffer, last-buffer, next-buffer): Move here
17613 from simple.el. Call switch-to-next-buffer.
17614 (previous-buffer): Move here from simple.el.
17615 Call switch-to-prev-buffer.
17616 (bury-buffer): Move here from buffer.c. Switch to previous
17617 buffer when window cannot be deleted.
17618 (unbury-buffer): Move here from bindings.el.
17619 (ctl-x-map): Move binding for other-window from window.c to
17620 here.
17621 (read-buffer-to-switch, switch-to-buffer-other-window)
17622 (switch-to-buffer-other-frame): Move here from files.el.
17623 (normalize-buffer-to-switch-to): New functions.
17624 (switch-to-buffer): Move here from buffer.c.
17625 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
17626
17627 2011-06-10 Martin Rudalics <rudalics@gmx.at>
17628
17629 * window.el (window-min-height, window-min-width): Move here
17630 from window.c. Add defcustoms and rewrite doc-strings.
17631 (resize-mini-window, resize-window): New functions.
17632 (adjust-window-trailing-edge, enlarge-window, shrink-window):
17633 Move here from window.c.
17634 (maximize-window, minimize-window): New functions.
17635 (delete-window, delete-other-windows, split-window): Move here
17636 from window.c.
17637 (window-split-min-size): New function.
17638 (split-window-keep-point): Mention split-window-above-each-other
17639 instead of split-window-vertically.
17640 (split-window-above-each-other, split-window-vertically):
17641 Rename split-window-vertically to split-window-above-each-other
17642 and provide defalias for old definition.
17643 (split-window-side-by-side, split-window-horizontally):
17644 Rename split-window-horizontally to split-window-side-by-side
17645 and provide defalias for the old definition.
17646 (ctl-x-map): Move bindings for delete-window,
17647 delete-other-windows and enlarge-window here from window.c.
17648 Replace bindings for split-window-vertically and
17649 split-window-horizontally by bindings for
17650 split-window-above-each-other and split-window-side-by-side.
17651
17652 * cus-start.el (all): Remove entries for window-min-height and
17653 window-min-width. Add entries for window-splits and
17654 window-nest.
17655
17656 2011-06-09 Glenn Morris <rgm@gnu.org>
17657
17658 * calendar/appt.el (appt-mode-line): New function.
17659 (appt-check, appt-disp-window): Use it.
17660
17661 * files.el (hack-one-local-variable-eval-safep):
17662 Allow minor-modes with explicit +/-1 arguments.
17663
17664 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
17665
17666 * term/xterm.el (xterm): Add defgroup.
17667 (xterm-extra-capabilities): Add defcustom to supply known xterm
17668 capabilities, skip querying them, or query them (default).
17669 (terminal-init-xterm): Use it.
17670 (terminal-init-xterm-modify-other-keys): New function to set up
17671 modifyOtherKeys support to simplify `terminal-init-xterm'.
17672
17673 2011-06-09 Martin Rudalics <rudalics@gmx.at>
17674
17675 * window.el (resize-window-reset, resize-window-reset-1)
17676 (resize-subwindows-skip-p, resize-subwindows-normal)
17677 (resize-subwindows, resize-other-windows, resize-this-window)
17678 (resize-root-window, resize-root-window-vertically)
17679 (window-deletable-p, window-or-subwindow-p)
17680 (frame-root-window-p): New functions.
17681
17682 2011-06-09 Glenn Morris <rgm@gnu.org>
17683
17684 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
17685 (ange-ftp-get-files): Use it.
17686
17687 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
17688
17689 * mail/sendmail.el (mail-recover-1, mail-recover):
17690 * files.el (recover-file, recover-session):
17691 Handle dired-listing-switches not being just a single short option.
17692
17693 2011-06-09 Glenn Morris <rgm@gnu.org>
17694
17695 * calendar/appt.el (appt-display-message, appt-disp-window):
17696 Handle lists of appointments.
17697
17698 2011-06-08 Martin Rudalics <rudalics@gmx.at>
17699
17700 * window.el (one-window-p): Move down in code.
17701 Rewrite doc-string.
17702 (window-current-scroll-bars): Rewrite doc-string.
17703 Normalize live window argument.
17704 (walk-windows, get-window-with-predicate, count-windows):
17705 Rewrite doc-string. Use window-list-1.
17706 (window-in-direction-2, window-in-direction, get-mru-window):
17707 New functions.
17708
17709 2011-06-08 Reuben Thomas <rrt@sc3d.org>
17710
17711 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
17712 Doc fix (Bug#8713).
17713
17714 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
17715
17716 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
17717
17718 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
17719
17720 * loadhist.el (unload-feature-special-hooks):
17721 Add `comint-output-filter-functions'.
17722
17723 2011-06-08 Ivan Kanis <gnu@kanis.fr>
17724
17725 * calendar/appt.el (appt-check): Move some initializations into the let.
17726
17727 2011-06-08 Martin Rudalics <rudalics@gmx.at>
17728
17729 * window.el (window-height): Defalias to window-total-height.
17730 (window-width): Defalias to window-body-width.
17731
17732 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
17733
17734 * image-mode.el (image-toggle-animation): New command.
17735 (image-mode-map): Bind it to RET.
17736 (image-mode): Update message.
17737 (image-toggle-display-image): Avoid a spurious cache flush.
17738 (image-transform-rotation): Doc fix.
17739 (image-transform-properties): Return quickly in the normal case.
17740 (image-animate-loop): Rename from image-animate-max-time.
17741
17742 * image.el (image-animate-max-time): Move to image-mode.el.
17743 (create-animated-image): Remove unnecessary function.
17744 (image-animate): Rename from image-animate-start. New arg.
17745 (image-animate-stop): Remove; just use image-animate-timer.
17746 (image-animate-timer): Use car-safe.
17747 (image-animate-timeout): Rename argument.
17748
17749 2011-06-07 Martin Rudalics <rudalics@gmx.at>
17750
17751 * window.el (get-lru-window, get-largest-window): Move here from
17752 window.c. Rename first argument to ALL-FRAMES.
17753 Rephrase doc-strings.
17754 (get-buffer-window-list): Rewrite using window-list-1.
17755 Rephrase doc-string.
17756 (window-safe-min-height, window-safe-min-width): New constants.
17757 (window-size-ignore, window-min-size, window-min-size-1)
17758 (window-sizable, window-sizable-p, window-size-fixed-1)
17759 (window-size-fixed-p, window-min-delta-1, window-min-delta)
17760 (window-max-delta-1, window-max-delta, window-resizable)
17761 (window-resizable-p, window-total-height, window-total-width)
17762 (window-body-width): New functions.
17763 (window-full-height-p, window-full-width-p): Rewrite using
17764 window-total-size.
17765 (window-body-height): Rewrite using window-body-size.
17766
17767 2011-06-06 Martin Rudalics <rudalics@gmx.at>
17768
17769 * window.el (window-right, window-left, window-child)
17770 (window-child-count, window-last-child, window-any-p)
17771 (normalize-live-buffer, normalize-live-frame)
17772 (normalize-any-window, normalize-live-window)
17773 (window-iso-combination-p, window-iso-combined-p)
17774 (window-iso-combinations)
17775 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
17776 (windows-with-parameter, window-with-parameter)
17777 (window-atom-root, make-window-atom, window-atom-check-1)
17778 (window-atom-check, window-side-check, window-check):
17779 New functions.
17780 (ignore-window-parameters, window-sides, window-sides-vertical)
17781 (window-sides-slots): New variables.
17782 (window-size-fixed): Move down in code. Minor doc-string fix.
17783
17784 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
17785
17786 * comint.el (comint-dynamic-complete-as-filename)
17787 (comint-dynamic-complete-filename): Correctly call
17788 completion-in-region.
17789
17790 2011-06-05 Deniz Dogan <deniz@dogan.se>
17791
17792 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
17793 in last change.
17794
17795 2011-06-05 Deniz Dogan <deniz@dogan.se>
17796
17797 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
17798 (rcirc): Use it to prompt for encryption.
17799
17800 2011-06-05 Roland Winkler <winkler@gnu.org>
17801
17802 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
17803 (bibtex-search-entries): New command bound to C-c C-a.
17804 (bibtex-display-entries): New function.
17805
17806 2011-06-05 Roland Winkler <winkler@gnu.org>
17807
17808 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
17809 (bibtex-insert-kill): After yanking insert newline if necessary.
17810 (bibtex-initialize): Call bibtex-string-files-init only once.
17811 (bibtex-mode): Do not call easy-menu-add.
17812 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
17813 (bibtex-yank): Set arg properly if nil.
17814
17815 2011-06-05 Roland Winkler <winkler@gnu.org>
17816
17817 * textmodes/bibtex.el (bibtex-search-entry-globally):
17818 New variable.
17819 (bibtex-search-entry): Use it.
17820
17821 2011-06-05 Roland Winkler <winkler@gnu.org>
17822
17823 * textmodes/bibtex.el (bibtex-entry-format): New option
17824 sort-fields.
17825 (bibtex-format-entry, bibtex-reformat): Honor this option.
17826 (bibtex-parse-entry): Return fields in proper order.
17827
17828 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
17829
17830 * doc-view.el (doc-view-remove-if): Move computation of result out
17831 of `dolist' to silence misleading lexical-binding warning.
17832
17833 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
17834
17835 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
17836 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
17837
17838 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
17839
17840 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
17841 "SunOS 5.10".
17842
17843 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
17844
17845 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
17846 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
17847 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
17848 (tramp-parse-putty):
17849 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
17850 (tramp-completion-function-alist-ssh)
17851 (tramp-completion-function-alist-telnet)
17852 (tramp-completion-function-alist-su)
17853 (tramp-completion-function-alist-putty): Set `tramp-autoload'
17854 cookie.
17855
17856 * net/tramp-ftp.el:
17857 * net/tramp-sh.el:
17858 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
17859 load "tramp.el" `tramp-set-completion-function'.
17860
17861 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
17862
17863 * shell.el: Require and use pcomplete.
17864 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
17865 (shell-completion-vars): Set pcomplete-default-completion-function.
17866
17867 2011-06-04 Deniz Dogan <deniz@dogan.se>
17868
17869 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
17870 `memq' (Bug#8799).
17871
17872 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
17873
17874 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
17875
17876 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
17877
17878 * bs.el (bs--mark-unmark, bs--nth-wrapper):
17879 * mpc.el (mpc-select-extend, mpc-songpointer-context):
17880 * vc/log-view.el (log-view-beginning-of-defun):
17881 * vc/smerge-mode.el (smerge-apply-resolution-patch)
17882 (smerge-refine-forward, smerge-refine-chopup-region):
17883 Silence warning for unused `dotimes' counter variables.
17884
17885 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
17886
17887 * net/tramp.el (tramp-with-progress-reporter): Rename from
17888 with-progress-reporter. Use `declare'.
17889 * net/tramp-smb.el:
17890 * net/tramp-sh.el:
17891 * net/tramp-gvfs.el: Update all uses.
17892
17893 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
17894
17895 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
17896 buffer isn't killed before making it current.
17897
17898 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
17899
17900 Silence various byte-compiler warnings.
17901 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
17902 `access-type' and new obsolescence format.
17903 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
17904 new format.
17905 (byte-compile-check-variable): New `access-type' argument.
17906 Only warn if the access-type is obsolete.
17907 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
17908 (byte-compile-variable-set): Adjust callers.
17909 * help-fns.el (describe-variable): Adjust to new obsolescence format.
17910 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
17911 setting it as obsolete.
17912 * simple.el (minibuffer-completing-symbol):
17913 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
17914 access as obsolete.
17915 * minibuffer.el (minibuffer-completing-file-name): Don't make it
17916 obsolete yet.
17917 * international/quail.el (quail-mouse-choose-completion): Remove unused
17918 code referring to obsolete var.
17919 (quail-choose-completion-string): Remove.
17920 * server.el (server-clients-with, server-kill-buffer-query-function)
17921 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
17922 * proced.el (proced-send-signal):
17923 * emacs-lisp/lisp.el (lisp-complete-symbol):
17924 Replace completion-annotate-function with completion-extra-properties.
17925
17926 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
17927
17928 * simple.el (goto-line): Use read-number.
17929 (overriding-map-is-bound): Remove.
17930 (saved-overriding-map): Change default.
17931 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
17932 Take the map as argument.
17933 (universal-argument, negative-argument, digit-argument): Use it.
17934 (restore-overriding-map): Adjust.
17935 (do-auto-fill): Use fill-forward-paragraph.
17936 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
17937
17938 * minibuffer.el (minibuffer-inactive-mode-map): New var.
17939 (minibuffer-inactive-mode): New major mode.
17940 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
17941 the *Messages* buffer" hack.
17942 (mouse-popup-menubar): Don't burp if the event is a normal key.
17943
17944 Miscellaneous tweaks.
17945 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
17946 lexical scoping as in subr.el's dolist and dotimes.
17947 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
17948 Silence compiler warning.
17949 * thingatpt.el (forward-whitespace): Trivial coding style fix.
17950 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
17951 * international/ccl.el (ccl-compile): Trivial simplification.
17952 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
17953 * emacs-lisp/testcover.el (testcover-end): Remove spurious
17954 `printflag' argument.
17955 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
17956 Purecopy the whole obsolescence data.
17957
17958 2011-06-01 Leo Liu <sdl.web@gmail.com>
17959
17960 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
17961 improve doc-string as suggested by Marco Pessotto
17962 <melmothx@gmail.com>.
17963 (rcirc-print): Fix last change.
17964
17965 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
17966
17967 * minibuffer.el (complete-with-action): Return nil for the metadata and
17968 boundaries of non-functional tables.
17969 (completion-table-dynamic): Return nil for the metadata.
17970 (completion-table-with-terminator): Add default case, using
17971 complete-with-action.
17972 (completion--metadata): New function.
17973 (completion-all-sorted-completions, minibuffer-completion-help): Use it
17974 to try and avoid pathological performance problems.
17975 (completion--embedded-envvar-table): Return `category' metadata.
17976
17977 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
17978
17979 * subr.el (process-alive-p): New tiny convenience function.
17980
17981 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
17982
17983 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
17984 content but also its previous major mode.
17985
17986 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
17987
17988 * emacs-lisp/debug.el (debug): Restore the previous content of the
17989 *Backtrace* buffer when we exit with C-M-c.
17990
17991 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
17992
17993 * minibuffer.el: Add metadata method to completion tables.
17994 (completion-category-overrides): New defcustom.
17995 (completion-metadata, completion--field-metadata)
17996 (completion-metadata-get, completion--styles)
17997 (completion--cycle-threshold): New functions.
17998 (completion-try-completion, completion-all-completions):
17999 Add `metadata' argument to choose completion-styles.
18000 (completion--do-completion): Use metadata to choose cycling.
18001 (completion-all-sorted-completions): Use metadata for sorting.
18002 Remove :completion-cycle-penalty which is not needed any more.
18003 (completion--try-word-completion): Add `metadata' argument.
18004 (minibuffer-completion-help): Check metadata for annotation function
18005 and sorting.
18006 (completion-file-name-table): Return `category' metadata.
18007 (minibuffer-completing-file-name): Make obsolete.
18008 * simple.el (minibuffer-completing-symbol): Make obsolete.
18009 * icomplete.el (icomplete-completions): Pass new `metadata' param to
18010 completion-try-completion.
18011
18012 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
18013
18014 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
18015
18016 2011-05-30 Leo Liu <sdl.web@gmail.com>
18017
18018 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
18019 (rcirc-print): Decode all incoming messages (bug#8744).
18020 (rcirc-decode-coding-system): Allow value nil for automatic coding
18021 system detection.
18022
18023 2011-06-01 Glenn Morris <rgm@gnu.org>
18024
18025 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
18026
18027 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18028
18029 * image.el (image-animate-max-time): Allow nil and t values.
18030 Default to nil.
18031 (create-animated-image): Doc fix.
18032 (image-animate-start): Remove second arg; just use
18033 image-animate-max-time.
18034 (image-animate-timeout): Doc fix. Args changed.
18035
18036 * image-mode.el (image-toggle-display-image): Ensure that the
18037 image spec passed to the animate timer is the same object as in
18038 the buffer's display property (Bug#6981).
18039 (image-transform-properties): Doc fix.
18040
18041 * image.el (image-animate-max-time): Default to nil.
18042
18043 2011-05-29 Martin Rudalics <rudalics@gmx.at>
18044
18045 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
18046 entire buffer list (Bug#8184).
18047
18048 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18049
18050 * image.el (imagemagick-types-inhibit)
18051 (imagemagick-register-types): Doc fix.
18052
18053 2011-05-29 Deniz Dogan <deniz@dogan.se>
18054
18055 * net/rcirc.el (rcirc): Use the user's stored encryption method by
18056 default.
18057
18058 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18059
18060 * select.el: Don't perform clipboard-manager saving in hooks;
18061 leave the hooks empty.
18062
18063 2011-05-28 Leo Liu <sdl.web@gmail.com>
18064
18065 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
18066 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
18067 (occur-edit-mode): New major mode (Bug#8463).
18068 (occur-after-change-function): New function.
18069 (occur-engine): Give Occur tags a read-only property.
18070
18071 2011-05-28 Kevin Ryde <user42@zip.com.au>
18072
18073 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
18074
18075 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18076
18077 * bindings.el (help-echo): Make the initial non-indicator dash
18078 empty on graphical terminals (Bug#7295).
18079
18080 * files.el (auto-mode-alist): Move config rule after the
18081 in-stripping one (Bug#8547).
18082
18083 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
18084
18085 * startup.el (normal-splash-screen): Remove gratuitous mode-line
18086 setting (Bug#8740).
18087
18088 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
18089
18090 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
18091 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
18092 (Bug#8539).
18093
18094 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18095
18096 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
18097
18098 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
18099
18100 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
18101 (hs-hide-block-at-point, hs-find-block-beginning)
18102 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
18103 (Bug#8279).
18104
18105 2011-05-28 Glenn Morris <rgm@gnu.org>
18106
18107 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
18108
18109 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18110
18111 * help-fns.el (describe-function-1): If the function is a derived
18112 major mode, print the parent mode.
18113
18114 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
18115 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
18116
18117 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
18118
18119 * minibuffer.el (completion--capf-wrapper): Check applicability before
18120 returning non-nil for non-exclusive completion data.
18121 * progmodes/etags.el (tags-completion-at-point-function):
18122 * info-look.el (info-lookup-completions-at-point): Mark as
18123 non-exclusive.
18124 (info-complete): Adjust accordingly.
18125
18126 * info-look.el: Convert to lexical-binding and completion-at-point.
18127 (info-lookup-completions-at-point): New function.
18128 (info-complete): Use it and completion-in-region.
18129
18130 2011-05-28 Drew Adams <drew.adams@oracle.com>
18131
18132 * isearch.el: Let M-e start with point at the first mismatched char.
18133 (isearch-fail-pos): New function.
18134 (isearch-edit-string): Use it.
18135
18136 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18137
18138 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18139
18140 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
18141
18142 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
18143 traversal functions for avl-trees.
18144 (avl-tree--stack): New struct.
18145 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
18146 (avl-tree-enter): Add optional `updatefun' arg.
18147 (avl-tree--do-enter): Add optional `updatefun' arg.
18148 Change return value.
18149 (avl-tree-delete): Add optional `test' and `nilflag' args.
18150 (avl-tree--do-delete): Add `test' and `nilflag' args.
18151 Change return value.
18152 (avl-tree-member): Add optional `nilflag'
18153 (avl-tree-member-p): New function.
18154 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
18155 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
18156 (avl-tree-stack-empty-p): New functions.
18157
18158 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
18159 avl-tree--del-balance1 and make it work both ways.
18160 (avl-tree--del-balance2): Remove.
18161 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
18162 make it work both ways.
18163 (avl-tree--enter-balance2): Remove.
18164 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
18165 New macros.
18166 (avl-tree--mapc, avl-tree-map): Add direction argument.
18167
18168 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
18169
18170 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
18171
18172 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
18173
18174 * select.el: Support clipboard managers with built-in function
18175 x-clipboard-manager-save, via delete-frame-functions and
18176 kill-emacs-hook.
18177 (xselect-convert-to-targets): Add MULTIPLE target to list.
18178 (xselect-convert-to-save-targets): New function.
18179
18180 2011-05-27 Kenichi Handa <handa@m17n.org>
18181
18182 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
18183 let-binding rfc2047-encode-encoded-words to nil.
18184
18185 2011-05-27 Glenn Morris <rgm@gnu.org>
18186
18187 * mail/emacsbug.el: Don't require url-util.
18188
18189 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
18190
18191 * files.el (set-auto-mode):
18192 Also respect mode: entries at the end of the file. (Bug#8586)
18193
18194 2011-05-26 Glenn Morris <rgm@gnu.org>
18195
18196 * files.el (hack-local-variables-prop-line, hack-local-variables):
18197 Downcase mode names, as seems to be traditional.
18198 (hack-local-variables, hack-local-variables-apply): Doc fixes.
18199
18200 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
18201 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
18202
18203 2011-05-25 Julien Danjou <julien@danjou.info>
18204
18205 * textmodes/rst.el (rst-define-level-faces): Do not define face
18206 symbol if it is already defined.
18207
18208 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
18209
18210 * play/5x5.el (5x5-new-game, 5x5-randomize):
18211 Reset 5x5-solver-output to nil when a new grid is cast.
18212 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
18213 these debugging traces, as defmacro breaks the compiled code.
18214
18215 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18216
18217 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18218
18219 2011-05-24 Leo Liu <sdl.web@gmail.com>
18220
18221 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
18222 (vc-bzr-sha1): Adapt.
18223
18224 * sha1.el: Remove. Function `sha1' is now builtin.
18225
18226 * bindings.el: Provide sha1 feature.
18227
18228 2011-05-24 Kenichi Handa <handa@m17n.org>
18229
18230 * mail/sendmail.el: Require `rfc2047'.
18231 (mail-insert-from-field): Do not perform RFC2047 encoding.
18232 (mail-encode-header): New function.
18233 (sendmail-send-it): Set buffer-file-coding-system of the work
18234 buffer to the return value of select-message-coding-system.
18235 Call mail-encode-header.
18236
18237 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
18238
18239 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
18240
18241 * mail/supercite.el (sc-default-cite-frame):
18242 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
18243
18244 2011-05-24 Glenn Morris <rgm@gnu.org>
18245
18246 * progmodes/python.el (brm-menu): Declare.
18247
18248 * emulation/viper.el (viper-set-hooks): Declare.
18249
18250 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
18251 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
18252 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
18253 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
18254 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
18255 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
18256
18257 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
18258
18259 Add an :exit-function for completion-at-point.
18260
18261 * minibuffer.el (completion--done): New fun.
18262 (completion--do-completion): Use it. New arg `expect-exact'.
18263 (minibuffer-complete, minibuffer-complete-word): Don't output message,
18264 since completion--do-completion does it for us now.
18265 (minibuffer-force-complete): Use completion--done and
18266 completion--replace. Handle sole-completion case with more care.
18267 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
18268 (completion-extra-properties): New var.
18269 (completion-annotate-function): Make obsolete.
18270 (minibuffer-completion-help): Adjust accordingly.
18271 Use completion-list-insert-choice-function.
18272 (completion-at-point, completion-help-at-point):
18273 Bind completion-extra-properties.
18274 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
18275 * simple.el (completion-list-insert-choice-function): New var.
18276 (completion-setup-function): Preserve it.
18277 (choose-completion): Pay attention to it, shuffle the code a bit.
18278 (choose-completion-string): New arg `insert-function'.
18279
18280 * textmodes/bibtex.el: Convert to lexical binding.
18281 (bibtex-mode-map): Use completion-at-point.
18282 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
18283 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
18284 (bibtex-complete): Define as obsolete alias.
18285 (bibtex-complete-internal): Remove.
18286 (bibtex-format-entry): Remove unused sub-group in regexp.
18287 * shell.el (shell--command-completion-data)
18288 (shell-environment-variable-completion):
18289 * pcomplete.el (pcomplete-completions-at-point):
18290 * comint.el (comint--complete-file-name-data): Use :exit-function
18291 instead of completion-table-with-terminator so it also works for
18292 choose-completion.
18293
18294 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18295
18296 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
18297
18298 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
18299 (bug#8710).
18300
18301 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
18302
18303 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
18304
18305 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
18306 customization variable and implement: If non-nil, auto-fill will
18307 be inhibited while on topic's header line.
18308
18309 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
18310
18311 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
18312 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
18313 always have a solution in grid size = 5 cases.
18314 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
18315 (5x5-solver-output, 5x5-log-buffer): New vars.
18316 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
18317 Make these variables buffer local to achieve 5x5 multi-session-ness.
18318 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
18319 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
18320 (5x5-solve-suggest): New funs.
18321 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
18322 randomize a grid so that we ensure that there is always a solution.
18323 (5x5-make-random-grid): Allow other movement than flipping.
18324
18325 2011-05-23 Kevin Ryde <user42@zip.com.au>
18326
18327 * emacs-lisp/advice.el (ad-read-advised-function):
18328 Use `function-called-at-point' as the default, if it has
18329 advice and passes PREDICATE.
18330
18331 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18332
18333 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
18334 byte-compile-lambda if it's actually a lambda.
18335
18336 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
18337 Fix function quoting. Use backquote better.
18338
18339 2011-05-22 Yuanle Song <sylecn@gmail.com>
18340
18341 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
18342 matching (Bug#8516).
18343
18344 2011-01-22 Jari Aalto <jari.aalto@cante.net>
18345
18346 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
18347 different face (Bug#8178).
18348
18349 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
18350
18351 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
18352 defface (Bug#8144).
18353
18354 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
18355
18356 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
18357 funcall as well (bug#8712). Warn when performing those conversions.
18358 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
18359
18360 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
18361
18362 2011-05-22 Glenn Morris <rgm@gnu.org>
18363
18364 * files.el (hack-local-variables-prop-line): Small simplifications.
18365 (hack-local-variables, hack-local-variables-prop-line):
18366 If MODE-ONLY, return the mode, rather than just `t'.
18367
18368 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
18369
18370 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
18371
18372 2011-05-21 Glenn Morris <rgm@gnu.org>
18373
18374 * files.el (hack-local-variables-prop-line, hack-local-variables):
18375 If only interested in the mode, don't bother doing the other stuff.
18376
18377 * image-mode.el (image-after-revert-hook):
18378 Redraw all frames on which the image is visible. (Bug#8567)
18379
18380 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
18381
18382 * wid-edit.el (widget-checklist-match-inline):
18383 Fix 2011-04-19 change. (Bug#8649)
18384
18385 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
18386
18387 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
18388 Also allow singlespace after single-letter capitals followed by a dot.
18389
18390 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
18391 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
18392
18393 2011-05-20 Nix <nix@esperi.org.uk>
18394
18395 * files.el (basic-save-buffer-2):
18396 Fix handling of break-hardlink-on-save with non-existent files.
18397
18398 2011-05-19 Deniz Dogan <deniz@dogan.se>
18399
18400 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
18401 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
18402
18403 2011-05-19 Glenn Morris <rgm@gnu.org>
18404
18405 * progmodes/f90.el (f90-type-def-re):
18406 Handle "type, bind(c)". (Bug#8691)
18407
18408 * emacs-lisp/autoload.el (batch-update-autoloads):
18409 Set autoload-excludes by parsing loadup.el rather than Makefiles.
18410
18411 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
18412
18413 * net/tramp.el (tramp-process-actions): Set "first-password-request"
18414 property for the correct connection in case of multihops.
18415
18416 2011-05-18 Glenn Morris <rgm@gnu.org>
18417
18418 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
18419 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
18420
18421 Rationalize calendar handling of day and month abbrev-arrays.
18422 * calendar/calendar.el (calendar-customized-p): New function.
18423 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
18424 (calendar-day-name-array, calendar-month-name-array): Doc fix.
18425 Add :set function.
18426 (calendar-abbrev-length, calendar-day-abbrev-array)
18427 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
18428 (calendar-day-abbrev-array, calendar-month-abbrev-array):
18429 Elements may no longer be nil.
18430 (calendar-day-name, calendar-month-name):
18431 Update for changed nature of abbrev arrays.
18432 * calendar/diary-lib.el (diary-name-pattern):
18433 Update for changed nature of abbrev arrays.
18434 (diary-mark-entries-1): Update calendar-make-alist calls.
18435 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
18436 * calendar/cal-html.el (cal-html-day-abbrev-array):
18437 Simply inherit from calendar-day-abbrev-array.
18438
18439 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
18440
18441 * progmodes/grep.el (grep-mode): Disable default
18442 compilation-directory-matcher setting (bug#8684).
18443
18444 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
18445
18446 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
18447 instead of "head" and "tail". There were problems with SunOS 5.9,
18448 and it performs better.
18449
18450 2011-05-17 Glenn Morris <rgm@gnu.org>
18451
18452 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
18453
18454 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
18455 Replace obsolete function.
18456
18457 * shell.el (pcomplete-parse-arguments-function): Declare.
18458
18459 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
18460 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
18461 (appt-check): Doc fixes.
18462 (appt-disp-window-function, appt-delete-window-function):
18463 Remove needless special case in custom :type.
18464 (appt-display-count): Default to 0, not nil.
18465 (appt-check): Reset appt-display-count to 0, not nil.
18466
18467 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
18468
18469 * progmodes/python.el (python-font-lock-keywords):
18470 Add the Python 3.X keyword "nonlocal" (bug#8639).
18471
18472 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
18473
18474 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
18475
18476 2011-05-16 Kevin Ryde <user42@zip.com.au>
18477
18478 * info-look.el (makefile-automake-mode): New setups, looking in
18479 automake manual, then makefile-mode.
18480 (makefile-mode): Remove automake manual, have it just in
18481 makefile-automake-mode since there's various things different or
18482 not relevant to plain make.
18483 (makefile-mode): Remove "other-modes" non-existent automake-mode,
18484 believe a hypothetical automake-mode would go to makefile-mode,
18485 not the other way around.
18486
18487 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
18488
18489 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
18490 hunk-end tags (Bug#8672).
18491
18492 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
18493 vc-annotate-show-diff-revision-at-line (Bug#8671).
18494
18495 2011-05-14 Glenn Morris <rgm@gnu.org>
18496
18497 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
18498 in the middle of an existing one with multiple authors. (Bug#8645)
18499 (change-log-font-lock-keywords): Also handle multiple author lines
18500 with leading tabs. (Bug#8644)
18501
18502 * calendar/appt.el (appt-check): Rename some local variables.
18503 Some simplification/reordering.
18504
18505 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
18506 (feedmail-sendmail-f-doesnt-sell-me-out)
18507 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
18508 (feedmail-debug-sit-for, feedmail-queue-express-hook)
18509 (feedmail-queue-runner-message-sender): Set :version.
18510 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
18511 (bbdb-dwim-net-address, vm-mail): Declare.
18512 (feedmail-binmail-gnulinuxish-template):
18513 Rename from feedmail-binmail-linuxish-template.
18514 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
18515 Use insert-buffer-substring.
18516
18517 2011-05-14 Bill Carpenter <bill@carpenter.org>
18518
18519 * mail/feedmail.el (feedmail-patch-level): Increase.
18520 (feedmail-debug): New custom group.
18521 (feedmail-confirm-outgoing-timeout)
18522 (feedmail-sendmail-f-doesnt-sell-me-out)
18523 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
18524 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
18525 (feedmail-sender-line, feedmail-from-line)
18526 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
18527 (feedmail-spray-this-address)
18528 (feedmail-spray-address-fiddle-plex-list)
18529 (feedmail-queue-use-send-time-for-date)
18530 (feedmail-queue-use-send-time-for-message-id)
18531 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
18532 (feedmail-buffer-eating-function):
18533 Doc fixes.
18534 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
18535 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
18536 (feedmail-message-action-scroll-down): New functions.
18537 (feedmail-queue-directory, feedmail-queue-draft-directory):
18538 Use expand-file-name.
18539 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
18540 Remove C-v help entry.
18541 (feedmail-queue-buffer-file-name): New variable.
18542 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
18543 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
18544 (feedmail-message-action-send-strong, feedmail-message-action-edit)
18545 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
18546 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
18547 (feedmail-message-action-toggle-spray)
18548 (feedmail-run-the-queue-no-prompts)
18549 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
18550 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
18551 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
18552 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
18553 (feedmail-envelope-deducer, feedmail-fiddle-from)
18554 (feedmail-fiddle-sender, feedmail-default-date-generator)
18555 (feedmail-fiddle-date, feedmail-fiddle-message-id)
18556 (feedmail-fiddle-spray-address)
18557 (feedmail-fiddle-list-of-spray-fiddle-plexes)
18558 (feedmail-fiddle-list-of-fiddle-plexes)
18559 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
18560 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
18561 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
18562 Change default. Doc fix.
18563 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
18564 (feedmail-binmail-linuxish-template): New constant.
18565 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
18566 Respect feedmail-sendmail-f-doesnt-sell-me-out.
18567 (feedmail-send-it): Add debug call.
18568 Use feedmail-queue-buffer-file-name, and
18569 feedmail-send-it-immediately-wrapper.
18570 (feedmail-message-action-send): Add debug call.
18571 Use feedmail-send-it-immediately-wrapper.
18572 (feedmail-queue-express-to-queue): Add debug call.
18573 Run feedmail-queue-express-hook.
18574 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
18575 (feedmail-message-action-help-blat):
18576 Rename from feedmail-queue-send-edit-prompt-help-first.
18577 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
18578 Check line-endings. Handle errors better.
18579 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
18580 Doc fix. Add debug call.
18581 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
18582 Use feedmail-queue-send-edit-prompt-inner.
18583 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
18584 (feedmail-queue-send-edit-prompt-inner): New function, extracted
18585 from feedmail-queue-send-edit-prompt.
18586 (feedmail-queue-send-edit-prompt-help)
18587 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
18588 (feedmail-tidy-up-slug): Add debug call.
18589 Respect feedmail-queue-slug-suspect-regexp.
18590 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
18591 (feedmail-dump-message-to-queue): Add debug call.
18592 Expand queue-directory.
18593 (feedmail-dump-message-to-queue): Change message slightly.
18594 Use feedmail-say-chatter.
18595 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
18596 (feedmail-send-it-immediately-wrapper): New function.
18597 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
18598 Insert empty string rather than newline. Handle full-frame case.
18599 Use catch/throw. Use feedmail-say-chatter.
18600 (feedmail-fiddle-from): Try mail-host-address.
18601 (feedmail-default-message-id-generator): Doc fix.
18602 Bind system-time-locale. Handle missing end.
18603 (feedmail-fiddle-x-mailer): Add debug call.
18604 Handle feedmail-x-mailer-line being nil.
18605 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
18606 Add debug call. Use buffer-substring-no-properties.
18607 (feedmail-say-debug, feedmail-say-chatter): New functions.
18608 (feedmail-find-eoh): Give an explicit error.
18609
18610 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
18611
18612 * net/newst-treeview.el (newsticker-treeview-face): Change default
18613 family from helvetica to sans.
18614 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
18615 etc/images/newsticker.
18616
18617 * net/newst-reader.el (newsticker-feed-face): Change default
18618 family from helvetica to sans.
18619
18620 * net/newst-plainview.el (newsticker-new-item-face)
18621 (newsticker-old-item-face, newsticker-immortal-item-face)
18622 (newsticker-obsolete-item-face, newsticker-date-face)
18623 (newsticker-statistics-face): Change default family from
18624 helvetica to sans.
18625 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
18626 etc/images/newsticker.
18627
18628 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
18629 (newsticker--process-auto-mark-filter-match): Tell user about
18630 auto-marking.
18631
18632 2011-05-13 Didier Verna <didier@xemacs.org>
18633
18634 Common Lisp indentation improvements on defmethod and lambda-lists.
18635 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
18636 TODO entries.
18637 (lisp-lambda-list-keyword-parameter-indentation)
18638 (lisp-lambda-list-keyword-parameter-alignment)
18639 (lisp-lambda-list-keyword-alignment): New customizable user options.
18640 (lisp-indent-defun-method): Improve docstring.
18641 (extended-loop-p): Fix comment.
18642 (lisp-indent-lambda-list-keywords-regexp): New variable.
18643 (lisp-indent-lambda-list): New function.
18644 (lisp-indent-259): Use it.
18645 (lisp-indent-defmethod): Support for more than one
18646 method qualifier and properly indent methods lambda-lists.
18647 (defgeneric): Provide a missing common-lisp-indent-function property.
18648
18649 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
18650
18651 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
18652 bounds for the empty string (bug#8667).
18653
18654 2011-05-13 Glenn Morris <rgm@gnu.org>
18655
18656 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
18657
18658 * mail/sendmail.el (sendmail-program): Try executable-find first.
18659 (sendmail-send-it): `sendmail-program' cannot be unbound.
18660
18661 * calendar/appt.el (appt-make-list): Simplify.
18662 (appt-time-msg-list): Doc fix.
18663 (appt-check): Change mode-line message at the time of the appointment.
18664
18665 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
18666
18667 * progmodes/ld-script.el (ld-script-keywords)
18668 (ld-script-builtins): Update keywords list.
18669
18670 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
18671
18672 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
18673
18674 * shell.el (shell-completion-vars): New function.
18675 (shell-mode):
18676 * simple.el (read-shell-command): Use it.
18677 (blink-matching-open): No need for " [...]" in minibuffer-message.
18678
18679 2011-05-12 Glenn Morris <rgm@gnu.org>
18680
18681 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
18682 (appt-check): Simplify.
18683
18684 2011-05-12 Eli Zaretskii <eliz@gnu.org>
18685
18686 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
18687 literal "/dev/null".
18688
18689 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
18690
18691 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
18692 Fix typo.
18693
18694 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
18695
18696 * progmodes/which-func.el (which-function):
18697 Use add-log-current-defun instead of add-log-current-defun-function,
18698 which might not be defined (Bug#8260).
18699
18700 2011-05-12 Glenn Morris <rgm@gnu.org>
18701
18702 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
18703 Let byte-compile-initial-macro-environment always take precedence.
18704
18705 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
18706
18707 * net/rcirc.el: Add support for SSL/TLS connections.
18708 (rcirc-server-alist): New field `encryption'.
18709 (rcirc): Check `encryption' settings.
18710 (rcirc-connect): New arg `encryption'. Use open-network-stream.
18711 Merge make-local-variable into `set'.
18712 (rcirc--connection-open-p): New function.
18713 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
18714 the process is not a network process (e.g. running gnutls-cli).
18715 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
18716 Make rcirc-(en|de)code-coding-system local here.
18717 (rcirc-mode): Merge make-local-variable into `set'.
18718 (rcirc-parent-buffer): Make permanent buffer-local.
18719 (rcirc-multiline-minor-mode): Don't do it here.
18720 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
18721 there's no server buffer.
18722
18723 2011-05-11 Glenn Morris <rgm@gnu.org>
18724
18725 * newcomment.el (comment-kill): Prefix "unused" local.
18726
18727 * term/w32console.el (get-screen-color): Declare.
18728
18729 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
18730 Handle symbol elements of byte-compile-initial-macro-environment.
18731
18732 2011-05-10 Leo Liu <sdl.web@gmail.com>
18733
18734 * bookmark.el (bookmark-bmenu-mode-map):
18735 Bind bookmark-bmenu-search to `/'.
18736
18737 * mail/footnote.el: Convert to utf-8 encoding.
18738 (footnote-unicode-string, footnote-unicode-regexp): New variable.
18739 (Footnote-unicode): New function.
18740 (footnote-style-alist): Add unicode style to the list.
18741 (footnote-style): Doc fix.
18742
18743 2011-05-10 Jim Meyering <meyering@redhat.com>
18744
18745 Fix doubled-word typos.
18746 * international/quail.el (quail-insert-kbd-layout): and and -> and
18747 * kermit.el: and and -> and
18748 * net/ldap.el (ldap-search-internal): to to -> to
18749 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
18750 * progmodes/js.el (js-mode): and and -> and
18751 * textmodes/artist.el (artist-move-to-xy): at at -> at
18752 (artist-draw-region-trim-line-endings): if if -> if
18753 And Safetyc -> Safety.
18754 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
18755
18756 2011-05-10 Glenn Morris <rgm@gnu.org>
18757 Stefan Monnier <monnier@iro.umontreal.ca>
18758
18759 * files.el (hack-one-local-variable-eval-safep):
18760 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
18761
18762 2011-05-10 Glenn Morris <rgm@gnu.org>
18763
18764 * calendar/diary-lib.el (diary-list-entries-hook)
18765 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
18766 (diary-nongregorian-marking-hook, diary-list-entries)
18767 (diary-include-other-diary-files, diary-mark-entries)
18768 (diary-mark-included-diary-files): Doc fixes.
18769
18770 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
18771
18772 * misc.el: Require tabulated-list.el during compilation.
18773
18774 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
18775
18776 * progmodes/compile.el (compilation-start):
18777 Run compilation-filter-hook for the async case too.
18778 (compilation-filter-hook): Doc fix.
18779
18780 2011-05-09 Deniz Dogan <deniz@dogan.se>
18781
18782 * wdired.el: Remove outdated installation comment. Fix usage
18783 comment.
18784
18785 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
18786
18787 * misc.el: Implement new command `list-dynamic-libraries'.
18788 (list-dynamic-libraries--loaded-only-p): New variable.
18789 (list-dynamic-libraries--refresh): New function.
18790 (list-dynamic-libraries): New command.
18791
18792 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
18793
18794 * progmodes/compile.el (compilation-error-regexp-alist-alist):
18795 Fix the ant regexp to handle end-line and end-column info from jikes.
18796 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
18797 higher priority to avoid clobbering by gnu.
18798
18799 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
18800
18801 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
18802 if the face has existing theme settings (Bug#8454).
18803
18804 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
18805
18806 * progmodes/perl-mode.el (perl-imenu-generic-expression):
18807 Only match variables declared via `my' or `our' (Bug#8261).
18808
18809 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
18810 special file names `.' and `..' (Bug#8259).
18811
18812 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
18813
18814 * progmodes/grep.el (grep-mode-font-lock-keywords):
18815 Remove buffer-changing entries.
18816 (grep-filter): New function.
18817 (grep-mode): Add it to compilation-filter-hook.
18818
18819 * progmodes/compile.el (compilation-filter-hook)
18820 (compilation-filter-start): New defvars.
18821 (compilation-filter): Call compilation-filter-hook prior to
18822 updating the process mark.
18823
18824 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
18825
18826 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
18827
18828 2011-05-07 Eli Zaretskii <eliz@gnu.org>
18829
18830 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
18831 mailclient-send-it even if window-system is nil. (Bug#8595)
18832
18833 * term/w32console.el (terminal-init-w32console):
18834 Call get-screen-color and use its output to set the frame
18835 background-mode. (Bug#8597)
18836
18837 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
18838
18839 Make bytecomp.el understand that defmethod defines funs (bug#8631).
18840 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
18841 New functions.
18842 (defgeneric, eieio--defmethod): Use them.
18843 (eieio-defgeneric): Remove.
18844 (defmethod): Call defgeneric in a way visible to the byte-compiler.
18845
18846 2011-05-07 Glenn Morris <rgm@gnu.org>
18847
18848 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
18849 Use let rather than let*.
18850 (timeclock-find-discrep): Remove unused local.
18851
18852 * calendar/diary-lib.el (diary-comment-start): Doc fix.
18853
18854 * calendar/appt.el (appt-time-msg-list): Doc fix.
18855
18856 2011-05-06 Noah Friedman <friedman@splode.com>
18857
18858 * apropos.el (apropos-print-doc): Only use
18859 emacs-lisp-docstring-fill-column when it is bound to an integer,
18860 per that variable's documentation.
18861
18862 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
18863
18864 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
18865 and warnings are not silently discarded (e.g. use -d instead of -P).
18866
18867 2011-05-06 Glenn Morris <rgm@gnu.org>
18868
18869 * calendar/appt.el (appt-message-warning-time): Doc fix.
18870 (appt-warning-time-regexp): New option.
18871 (appt-make-list): Respect appt-message-warning-time.
18872
18873 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
18874 New options.
18875 (diary-add-to-list): Strip comments from the displayed string.
18876 (diary-mode): Set comment-start and comment-end.
18877
18878 * vc/diff-mode.el (smerge-refine-subst): Declare.
18879 (diff-refine-hunk): Don't require smerge-mode when compiling.
18880
18881 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
18882
18883 * simple.el (list-processes): Return nil as the docstring says.
18884
18885 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
18886
18887 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
18888 to "".
18889 (ange-ftp-write-region, ange-ftp-insert-file-contents)
18890 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
18891 determining of binary transfer. (Bug#7383)
18892
18893 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
18894
18895 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
18896 Fix port computation bug. (Bug#8618)
18897
18898 2011-05-05 Glenn Morris <rgm@gnu.org>
18899
18900 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
18901
18902 * simple.el (shell-dynamic-complete-functions)
18903 (comint-dynamic-complete-functions): Declare.
18904
18905 * net/network-stream.el (gnutls-negotiate):
18906 * simple.el (tabulated-list-print): Fix declarations.
18907
18908 * progmodes/gud.el (syntax-symbol, syntax-point):
18909 Remove unnecessary and incorrect declarations.
18910
18911 * emacs-lisp/check-declare.el (check-declare-scan):
18912 Handle byte-compile-initial-macro-environment in bytecomp.el.
18913
18914 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
18915
18916 Fix earlier half-done eieio-defmethod change (bug#8338).
18917 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
18918 Streamline and change calling convention.
18919 (defmethod): Adjust accordingly and simplify.
18920 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
18921 new eieio--defmethod.
18922 (slot-boundp): Minor CSE simplification.
18923
18924 2011-05-05 Milan Zamazal <pdm@zamazal.org>
18925
18926 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
18927 (glasses-make-readable): Use glasses-separate-capital-groups.
18928
18929 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
18930
18931 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
18932 (warning-series): Doc fix.
18933 (display-warning): Don't try to create the buffer if we just found it.
18934
18935 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
18936
18937 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
18938 (autoload-find-generated-file): New function.
18939 (generate-file-autoloads): Bind generated-autoload-file to
18940 buffer-file-name.
18941 (update-file-autoloads, update-directory-autoloads):
18942 Use autoload-find-generated-file. If called interactively, prompt for
18943 output file (Bug#7989).
18944 (batch-update-autoloads): Doc fix.
18945
18946 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
18947
18948 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
18949
18950 2011-05-04 Glenn Morris <rgm@gnu.org>
18951
18952 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
18953 function, so it follows changes in calendar-date-style.
18954 (diary-fancy-date-matcher): New function.
18955 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
18956 (diary-fancy-font-lock-fontify-region-function):
18957 Use diary-fancy-date-pattern as a function.
18958
18959 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
18960 non-numbers for `year' etc pseudo-variables. (Bug#8583)
18961
18962 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
18963
18964 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
18965 instead of positional arguments. Allow :keylist and :crlfiles
18966 arguments.
18967 (open-gnutls-stream): Call it.
18968
18969 * net/network-stream.el (network-stream-open-starttls): Adjust to
18970 call `gnutls-negotiate' with :process and :hostname arguments.
18971
18972 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
18973
18974 * minibuffer.el (completion--message): New function.
18975 (completion--do-completion, minibuffer-complete)
18976 (minibuffer-force-complete, minibuffer-complete-word): Use it.
18977 (completion--do-completion): Don't ignore completion-auto-help when in
18978 icomplete-mode.
18979
18980 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
18981 internal encoding (e.g. tibetan zero is not whitespace).
18982 (global-whitespace-mode): Prefer save-current-buffer.
18983 (whitespace-trailing-regexp): Remove useless save-match-data.
18984 (whitespace-empty-at-bob-regexp): Minor simplification.
18985
18986 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
18987
18988 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
18989
18990 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
18991
18992 * textmodes/ispell.el (ispell-add-per-file-word-list):
18993 Use `concat' to create string for insertion.
18994
18995 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
18996
18997 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
18998 Avoid open-line which runs post-self-insert-hook.
18999 (bibtex-fill-entry): Remove unused `end' var.
19000
19001 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
19002
19003 * textmodes/ispell.el (ispell-add-per-file-word-list):
19004 Protect against `nil' value of `comment-start' (Bug#8579).
19005
19006 2011-05-03 Leo Liu <sdl.web@gmail.com>
19007
19008 * isearch.el (isearch-yank-pop): New command.
19009 (isearch-mode-map): Bind it to `M-y'.
19010 (isearch-forward): Mention it.
19011
19012 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19013
19014 * simple.el (minibuffer-complete-shell-command): Remove.
19015 (minibuffer-local-shell-command-map): Use completion-at-point.
19016 (read-shell-command): Setup completion vars here instead.
19017 (read-expression-map): Bind TAB to symbol completion.
19018
19019 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
19020 error directly rather via storing it into `results'.
19021
19022 2011-05-02 Leo Liu <sdl.web@gmail.com>
19023
19024 * vc/diff.el: Fix description.
19025
19026 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19027
19028 * server.el (server-eval-at): New function.
19029
19030 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19031
19032 * net/network-stream.el (open-network-stream): Take a :nowait
19033 parameter and pass it on to `make-network-process'.
19034 (network-stream-open-plain): Ditto.
19035
19036 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
19037
19038 * faces.el (face-spec-set-match-display): Don't match toolkit
19039 options on terminal frames.
19040
19041 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
19042
19043 * progmodes/pascal.el: Use lexical binding.
19044 (pascal-mode-map): Remove author preferences.
19045
19046 * pcomplete.el (pcomplete-std-complete): Don't abuse
19047 completion-at-point.
19048
19049 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19050
19051 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
19052 removing code that has been dead since 1991 or so.
19053
19054 * startup.el (command-line): When warning about "_emacs", use a
19055 delayed warning to allow the user to filter it out.
19056
19057 2011-04-28 Deniz Dogan <deniz@dogan.se>
19058
19059 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
19060 user has not joined.
19061
19062 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19063
19064 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
19065 aren't any completions at point.
19066
19067 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19068
19069 * subr.el (display-delayed-warnings): New function.
19070 (delayed-warnings-hook): New variable.
19071
19072 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19073
19074 * minibuffer.el (completion-at-point, completion-help-at-point):
19075 Don't presume that a given completion-at-point-function will always
19076 use the same calling convention.
19077
19078 * pcomplete.el (pcomplete-completions-at-point):
19079 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
19080 pcomplete-seen is non-nil.
19081 (pcomplete-comint-setup): Also recognize the new comint/shell
19082 completion functions.
19083 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
19084 pcomplete-seen is non-nil.
19085
19086 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
19087
19088 * calendar/icalendar.el (diary-lib): Add require statement.
19089 (icalendar--create-uid): Read out a uid from a text-property on
19090 the first character in the entry. This allows for code to add its
19091 own uid to the entry.
19092 (icalendar--convert-float-to-ical): Add export of
19093 `diary-float'-entries save for those with the optional DAY
19094 argument.
19095
19096 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
19097
19098 * subr.el (shell-quote-argument): Use alternate escaping strategy
19099 when we spot a variable reference in a string.
19100
19101 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19102
19103 * cus-start.el (all): Define customization for debug-on-event.
19104
19105 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19106
19107 * subr.el (shell-quote-argument): Escape correctly under Windows.
19108
19109 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19110
19111 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
19112
19113 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
19114
19115 * net/tramp.el (tramp-process-actions): Add POS argument.
19116 Delete region between POS and (pos).
19117
19118 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19119 Use `nil' position in `tramp-process-actions' call.
19120 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
19121
19122 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
19123 position in `tramp-process-actions' call.
19124
19125 * net/trampver.el: Update release number.
19126
19127 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19128
19129 * custom.el (defcustom): Obey lexical-binding.
19130
19131 Fix octave-inf completion problems reported by Alexander Klimov.
19132 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
19133 Inherit from octave-mode-syntax-table.
19134 (inferior-octave-mode): Set info-lookup-mode.
19135 (inferior-octave-completion-at-point): New function.
19136 (inferior-octave-complete): Use it and completion-in-region.
19137 (inferior-octave-dynamic-complete-functions): Use it as well, and use
19138 comint-filename-completion.
19139 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
19140 symbol elements which shouldn't be word elements.
19141 (octave-font-lock-keywords, octave-beginning-of-defun)
19142 (octave-function-header-regexp): Adjust regexps accordingly.
19143 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
19144
19145 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
19146
19147 * net/gnutls.el (gnutls-errorp): Declare before first use.
19148
19149 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
19150
19151 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
19152 verify-error, and verify-hostname-error parameters. Check whether
19153 default trustfile exists before going to use it. Add missing
19154 argument to gnutls-message-maybe call. Return value.
19155 Reported by Claudio Bley <claudio.bley@gmail.com>.
19156 (open-gnutls-stream): Add usage example.
19157
19158 * net/network-stream.el (network-stream-open-starttls): Give host
19159 parameter to `gnutls-negotiate'.
19160 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
19161 * subr.el (shell-quote-argument): Escape correctly under Windows.
19162
19163 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
19164
19165 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
19166 Use correct match group (bug#8438).
19167
19168 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19169
19170 * emacs-lisp/package.el (package-built-in-p): Fix typo.
19171 (package-menu--generate): New arg specifying packages to show.
19172 (package-menu-refresh, package-menu-execute, list-packages):
19173 Callers changed.
19174 (package-show-package-list): New function, replacing deleted
19175 package--list-packages (renamed because it is non-internal).
19176
19177 * finder.el (finder-list-matches): Use package-show-package-list
19178 instead of deleted package--list-packages.
19179
19180 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
19181 Based on a previous implementation by Juanma Barranquero (Bug#8366).
19182 (vc-annotate-mode-map): Bind it to RET.
19183
19184 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
19185
19186 * progmodes/etags.el (next-file): Don't use set-buffer to change
19187 buffers (Bug#8478).
19188
19189 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19190
19191 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
19192
19193 * apropos.el (apropos-label-face): Avoid variable-pitch face.
19194 (apropos-accumulator): Doc fix.
19195 (apropos-function, apropos-macro, apropos-command)
19196 (apropos-variable, apropos-face, apropos-group, apropos-widget)
19197 (apropos-plist): Add face property.
19198 (apropos-symbols-internal): Fix indentation.
19199 (apropos-print): Simplify help, and recognize apropos-multi-type.
19200 (apropos-print-doc): Use button-type-get to extract the button's
19201 face property. Fill docstring (Bug#8352).
19202
19203 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
19204
19205 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
19206
19207 * play/mpuz.el (mpuz-silent): Doc fix.
19208 (mpuz-mode-map): Use mapc.
19209 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
19210 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
19211 Fix typos in docstrings.
19212
19213 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
19214 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
19215
19216 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
19217
19218 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
19219
19220 * minibuffer.el (completion--do-completion): Avoid the "Next char
19221 not unique" prompt if icomplete-mode is enabled (Bug#5849).
19222
19223 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
19224 mouse-2 into unread-command-events, it is interpreted correctly.
19225
19226 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
19227 (image-toggle-display): Doc fix.
19228
19229 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
19230
19231 * textmodes/page.el (what-page): Use line-number-at-pos to
19232 calculate line number (Bug#6825).
19233
19234 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19235
19236 * eshell/esh-mode.el (find-tag-interactive): Declare function.
19237 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
19238 Pass argument NO-DEFAULT to `find-tag-interactive'.
19239
19240 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19241
19242 Lexical-binding cleanup.
19243
19244 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
19245 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
19246 * progmodes/ada-prj.el (ada-prj-initialize-values)
19247 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
19248 (ada-prj-show-value):
19249 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
19250 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
19251 (antlr-invalidate-context-cache, antlr-options-menu-filter)
19252 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
19253 * progmodes/bug-reference.el (bug-reference-push-button):
19254 * progmodes/fortran.el (fortran-line-length):
19255 * progmodes/glasses.el (glasses-change):
19256 * progmodes/octave-mod.el (octave-fill-paragraph):
19257 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
19258 (python-pdbtrack-grub-for-buffer, python-sentinel):
19259 * progmodes/sql.el (sql-save-connection):
19260 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
19261 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
19262 Mark unused parameters.
19263
19264 * progmodes/compile.el (compilation--flush-directory-cache)
19265 (compilation--flush-parse, compile-internal): Mark unused parameters.
19266 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
19267 (compilation-next-error-function): Remove unused variable `timestamp'.
19268
19269 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
19270 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
19271
19272 * progmodes/dcl-mode.el (dcl-end-of-command):
19273 Remove unused variable `start'.
19274 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
19275 (dcl-option-value-basic, dcl-option-value-offset)
19276 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
19277 Mark unused parameters.
19278 (dcl-save-local-variable): Remove unused variable `val'.
19279 (mode): Declare.
19280
19281 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
19282 Mark unused parameters.
19283 (delphi-ignore-changes): Move before first use.
19284 (delphi-charset-token-at): Remove unused variable `start'.
19285 (delphi-else-start): Remove unused variable `if-count'.
19286 (delphi-comment-block-start, delphi-comment-block-end):
19287 Remove unused variable `kind'.
19288 (delphi-indent-line): Remove unused variable `new-point'.
19289
19290 * progmodes/ebrowse.el (ebrowse-files-list)
19291 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
19292 Mark unused parameters. Don't quote `lambda'.
19293 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
19294 Don't quote `lambda'.
19295 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
19296 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
19297 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
19298 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
19299 Use `ignore-errors'.
19300 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
19301 (ebrowse-view/find-file-and-search-pattern)
19302 (ebrowse-view/find-member-declaration/definition):
19303 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
19304 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
19305 Rename parameter PREFIX-ARG to PREFIX.
19306 (ebrowse-tags-read-name): Remove unused variables `start' and
19307 `member-info'.
19308 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
19309 to `tags-file'.
19310
19311 * progmodes/etags.el (local-find-tag-hook): Declare.
19312 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
19313 Mark unused parameters.
19314
19315 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
19316 (executable-interpret): Mark unused parameter.
19317
19318 * progmodes/flymake.el (flymake-process-sentinel)
19319 (flymake-after-change-function)
19320 (flymake-create-temp-with-folder-structure)
19321 (flymake-get-include-dirs-dot): Mark unused parameters.
19322 (flymake-safe-delete-directory): Remove unused variable `err'.
19323
19324 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
19325 (speedbar-timer-fn, speedbar-line-text)
19326 (speedbar-change-expand-button-char, speedbar-delete-subblock)
19327 (speedbar-center-buffer-smartly): Declare functions.
19328 (gdb-find-watch-expression): Remove unused variable `array'.
19329 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
19330 (gdb-starting): Mark unused parameters.
19331 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
19332 (gdb-table-string): Remove unused variable `res'.
19333 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
19334 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
19335 (gdb-display-buffer): Remove unused variable `cur-size'.
19336
19337 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
19338 allow lexical-binding compilation.
19339 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
19340 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
19341 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
19342 Mark unused parameters.
19343 (gud-gdb-marker-filter): Remove unused variable `match'.
19344 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
19345 lambda expressions and funcall them, instead of using `fset'.
19346
19347 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
19348 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
19349
19350 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
19351 variable `header-beg'; use `let'.
19352
19353 * progmodes/icon.el (indent-icon-exp): Remove unused variables
19354 `restart', `last-sexp' and `at-do'.
19355
19356 * progmodes/js.el (js--debug): Mark unused parameter.
19357 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
19358 (js--splice-into-items): Remove unused variable `item'.
19359 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
19360
19361 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
19362 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
19363 (makefile-complete): Remove unused variable `try'.
19364 (makefile-fill-paragraph, makefile-match-function-end):
19365 Mark unused parameters.
19366
19367 * progmodes/octave-inf.el (inferior-octave-complete):
19368 Remove unused variable `proc'.
19369 (inferior-octave-output-digest): Mark unused parameter.
19370
19371 * progmodes/perl-mode.el (perl-calculate-indent):
19372 Remove unused variable `err'.
19373
19374 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
19375 (prolog-indent-line): Mark unused parameters.
19376 (prolog-indent-line): Remove unused variable `beg'.
19377
19378 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
19379 (reporter-dont-compact-list): Declare.
19380
19381 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
19382 Remove unused variable `char'.
19383 (sh-debug): Mark unused parameter.
19384 (sh-get-indent-info): Remove unused variable `start'.
19385 (sh-calculate-indent): Remove unused variable `var'.
19386
19387 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
19388 (simula-electric-keyword): Remove unused variable `null'.
19389 (simula-search-backward, simula-search-forward): Remove unused
19390 variables `begin' and `end'.
19391
19392 * progmodes/vera-mode.el (vera-guess-basic-syntax):
19393 Remove unused variable `pos'.
19394 (vera-electric-tab, vera-comment-uncomment-region):
19395 Mark unused parameters.
19396 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
19397
19398 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
19399
19400 * emacs-lisp/package.el (package--builtins, package-alist)
19401 (package-load-descriptor, package-built-in-p, package-activate)
19402 (define-package, package-installed-p)
19403 (package-compute-transaction, package-buffer-info)
19404 (package--push): Doc fix. Distinguish more clearly between
19405 version strings and version lists.
19406
19407 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
19408
19409 Lexical-binding cleanup.
19410
19411 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
19412 (5x5-make-mutate-best):
19413 * play/fortune.el (fortune-in-buffer):
19414 * play/gomoku.el (gomoku-init-display):
19415 * play/solitaire.el (solitaire, solitaire-do-check):
19416 * play/tetris.el (tetris-default-update-speed-function):
19417 Mark unused parameters.
19418
19419 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
19420 (bubbles--shift): Remove unused variable `char-org'.
19421 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
19422 (bubbles--show-images): Remove unused variable `char'.
19423
19424 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
19425 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
19426 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
19427 (decipher-analyze-buffer): Use ?\s.
19428 (decipher-make-checkpoint): Remove unused variable `mapping'.
19429
19430 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
19431
19432 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
19433 Remove unused variable `result'; use `let'.
19434
19435 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
19436 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
19437 (gametree-children-shown-p, gametree-compute-reduced-score):
19438 Use `ignore-errors'.
19439
19440 * play/handwrite.el (ps-lpr-switches): Declare.
19441 (handwrite): Remove unused variables `pmin' and `lastp'.
19442
19443 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
19444
19445 * play/landmark.el (landmark-init-display)
19446 (landmark-update-naught-weights): Mark unused parameters.
19447 (landmark-y): Remove unused variable `noise'. Simplify.
19448 (landmark-human-plays): Remove unused variable `score'.
19449
19450 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
19451 (mpuz-try-proposal): Remove unused variable `game'.
19452
19453 * play/zone.el (life-patterns): Declare.
19454
19455 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
19456
19457 * vc/vc.el (ediff-vc-internal): Declare function.
19458
19459 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
19460
19461 * shell.el: Use lexical-binding and std completion UI.
19462 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
19463 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
19464 comint-preoutput-filter-functions rather than on
19465 comint-output-filter-functions.
19466 (shell-command-completion, shell--command-completion-data)
19467 (shell-filename-completion, shell-environment-variable-completion)
19468 (shell-c-a-p-replace-by-expanded-directory): New functions.
19469 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
19470 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
19471 (shell-dynamic-complete-environment-variable): Use them.
19472 (shell-dynamic-complete-as-environment-variable)
19473 (shell-dynamic-complete-as-command): Remove.
19474 (shell-match-partial-variable): Match past point.
19475 * comint.el: Clean up use of completion-at-point-functions.
19476 (comint-completion-at-point): New function.
19477 (comint-mode): Use it completion-at-point-functions.
19478 (comint-dynamic-complete): Make it obsolete.
19479 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
19480 (comint-c-a-p-replace-by-expanded-history): New function.
19481 (comint-dynamic-complete-functions)
19482 (comint-replace-by-expanded-history): Use it.
19483 * minibuffer.el (completion-table-with-terminator): Allow dynamic
19484 termination strings. Try harder to avoid second try-completion.
19485 (completion-in-region-mode-map): Disable bindings that don't work yet.
19486
19487 * comint.el: Use lexical-binding. Require CL.
19488 (comint-dynamic-complete-functions): Use comint-filename-completion.
19489 (comint-completion-addsuffix): Tweak custom type.
19490 (comint-filename-completion, comint--common-suffix)
19491 (comint--common-quoted-suffix, comint--table-subvert)
19492 (comint--complete-file-name-data): New functions.
19493 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
19494 (comint-dynamic-list-filename-completions): Use them.
19495 (comint-dynamic-simple-complete): Make obsolete.
19496
19497 * minibuffer.el (completion-in-region-mode):
19498 Keep completion-in-region-mode--predicate global.
19499 (completion-in-region--postch):
19500 Assume completion-in-region-mode--predicate is not null.
19501
19502 * progmodes/flymake.el (flymake-start-syntax-check-process):
19503 Obey `dir'. Simplify.
19504
19505 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
19506 we're in VC after all.
19507
19508 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
19509
19510 * vc/vc.el (vc-diff-build-argument-list-internal)
19511 (vc-version-ediff, vc-ediff): New commands.
19512 (vc-version-diff): Use vc-diff-build-argument-list-internal.
19513
19514 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
19515
19516 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
19517 add sanity check.
19518
19519 * obsolete/erc-hecomplete.el: Make obsolete.
19520 * obsolete/: Standardize obsolescence info in the header.
19521
19522 2011-04-20 Glenn Morris <rgm@gnu.org>
19523
19524 * calendar/solar.el (solar-horizontal-coordinates):
19525 Use the longitude argument rather than `calendar-longitude'.
19526 (solar-date-next-longitude): Remove unused locals.
19527
19528 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19529
19530 * whitespace.el: New version 13.2.1.
19531
19532 2011-04-20 felix <EmacsWiki> (tiny change)
19533
19534 * whitespace.el (global-whitespace-mode): Keep highlight when
19535 switching between major modes on a file.
19536
19537 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
19538
19539 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
19540 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
19541 multi-line comments as well.
19542
19543 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
19544
19545 Lexical-binding cleanup.
19546
19547 * arc-mode.el (archive-mode-revert):
19548 * cmuscheme.el (scheme-interactively-start-process):
19549 * custom.el (custom-initialize-delay):
19550 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
19551 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
19552 * emacs-lock.el (emacs-lock-clear-sentinel):
19553 * ezimage.el (defezimage):
19554 * follow.el (follow-avoid-tail-recenter):
19555 * fringe.el (set-fringe-mode-1):
19556 * generic-x.el (bat-generic-mode-compile):
19557 * help-mode.el (help-info-variable, help-do-xref)
19558 (help-mode-revert-buffer):
19559 * help.el (view-emacs-todo):
19560 * iswitchb.el (iswitchb-completion-help):
19561 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
19562 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
19563 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
19564 * locate.el (locate-update):
19565 * longlines.el (longlines-encode-region)
19566 (longlines-after-change-function):
19567 * outline.el (outline-isearch-open-invisible):
19568 * ps-def.el (declare-function, charset-dimension, char-width)
19569 (encode-char):
19570 * ps-mule.el (ps-mule-plot-string):
19571 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
19572 (recentf-edit-list-select, recentf-edit-list-validate)
19573 (recentf-open-files-action):
19574 * rect.el (delete-whitespace-rectangle-line)
19575 (rectangle-number-line-callback):
19576 * register.el (window-configuration-to-register)
19577 (frame-configuration-to-register):
19578 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
19579 * select.el (xselect-convert-to-string, xselect-convert-to-length)
19580 (xselect-convert-to-targets, xselect-convert-to-delete)
19581 (xselect-convert-to-filename, xselect-convert-to-charpos)
19582 (xselect-convert-to-lineno, xselect-convert-to-colno)
19583 (xselect-convert-to-os, xselect-convert-to-host)
19584 (xselect-convert-to-user, xselect-convert-to-class)
19585 (xselect-convert-to-name, xselect-convert-to-integer)
19586 (xselect-convert-to-atom, xselect-convert-to-identity):
19587 * subr.el (declare, ignore, process-kill-without-query)
19588 (text-clone-maintain):
19589 * terminal.el (te-get-char, te-tic-sentinel):
19590 * tool-bar.el (tool-bar-make-keymap):
19591 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
19592 * type-break.el (type-break-mode, type-break-noninteractive-query):
19593 * view.el (View-back-to-mark):
19594 * wid-browse.el (widget-browse-action, widget-browse-widget)
19595 (widget-browse-widgets, widget-browse-sexp):
19596 * widget.el (define-widget-keywords):
19597 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
19598 Mark unused parameters.
19599
19600 * align.el (align-adjust-col-for-rule): Mark unused parameter.
19601 (align-areas): Remove unused variable `look'.
19602 (align-region): Remove unused variables `real-end' and `pos-list'.
19603
19604 * apropos.el (apropos-score-doc): Remove unused variable `i'.
19605
19606 * bindings.el (mode-line-modified, mode-line-remote):
19607 Mark unused parameters.
19608 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
19609
19610 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
19611 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
19612
19613 * comint.el (comint-history-isearch-pop-state)
19614 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
19615 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
19616 (comint-substitute-in-file-name): Doc fix.
19617
19618 * completion.el (cmpl-statistics-block): Mark unused parameter.
19619 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
19620 (save-completions-to-file, load-completions-from-file):
19621 Remove unused local variable `e'.
19622
19623 * composite.el (compose-chars): Remove unused variable `len'.
19624 (lgstring-insert-glyph): Remove unused variable `g'.
19625 (compose-glyph-string): Remove unused variables `ascent',
19626 `descent', `lbearing' and `rbearing'.
19627 (compose-glyph-string-relative): Remove unused variables
19628 `lbearing', `rbearing' and `wadjust'.
19629 (compose-gstring-for-graphic): Remove unused variables `header',
19630 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
19631 (compose-gstring-for-terminal): Remove unused variables `header'
19632 and `nchars'. Use `let', not `let*'.
19633
19634 * cus-edit.el (Custom-set, Custom-save, custom-reset)
19635 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
19636 (Custom-buffer-done, custom-buffer-create-internal)
19637 (custom-browse-visibility-action, custom-browse-group-tag-action)
19638 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
19639 (widget-magic-mouse-down-action, custom-toggle-parent)
19640 (custom-add-parent-links, custom-toggle-hide-variable)
19641 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
19642 (custom-toggle-hide-face, face, hook, custom-group-link-action)
19643 (custom-face-menu-create, custom-variable-menu-create, get)
19644 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
19645 (custom-reset-standard-save-and-update): Remove unused variable `value'.
19646 (customize-apropos): Remove unused variable `tests'.
19647 (custom-group-value-create): Remove unused variable `hidden-p'.
19648 (sort-fold-case): Declare.
19649
19650 * cus-theme.el (custom-reset-standard-faces-list)
19651 (custom-reset-standard-variables-list): Declare.
19652 (customize-create-theme, custom-theme-revert, custom-theme-write)
19653 (custom-theme-choose-mode, customize-themes, custom-theme-save):
19654 Mark unused parameters.
19655
19656 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
19657
19658 * delim-col.el (delimit-columns-max): Move defvar before first use.
19659
19660 * descr-text.el (describe-char-categories): Don't quote `lambda'.
19661 (describe-char): Don't quote `lambda'. Mark unused parameter.
19662
19663 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
19664 (auto-insert): Declare.
19665 (desktop-restore-file-buffer): Rename desktop-* parameters;
19666 mark unused ones.
19667 (desktop-create-buffer): Rename desktop-* parameters and bind them.
19668 (desktop-buffer): Rename desktop-* parameters.
19669
19670 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
19671 (dframe-reposition-frame-xemacs, dframe-help-echo)
19672 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
19673 Mark unused parameters.
19674
19675 * dired-aux.el (backup-extract-version-start, overwrite-query)
19676 (overwrite-backup-query, rename-regexp-query)
19677 (rename-non-directory-query): Declare.
19678 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
19679 (dired-add-entry): Remove unused variable `orig-file-name'.
19680 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
19681 Use parameter PRESERVE-TIME instead of accessing dynamic variable
19682 `dired-copy-preserve-time' directly.
19683 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
19684 (dired-insert-subdir-newpos): Rename unused variable `pos'.
19685
19686 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
19687 (dired-virtual-revert, dired-make-relative-symlink):
19688 Mark unused parameters.
19689 (manual-program): Declare.
19690 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
19691 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
19692 wrapped in `with-no-warnings' to avoid replacing one warning by another.
19693
19694 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
19695
19696 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
19697
19698 * echistory.el (electric-history-in-progress, Helper-return-blurb):
19699 Declare.
19700
19701 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
19702
19703 * electric.el (Electric-command-loop): Rename parameter
19704 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
19705
19706 * expand.el (expand-in-literal): Remove unused variable `here'.
19707
19708 * facemenu.el (facemenu-add-new-color):
19709 Remove unused variable `docstring'.
19710
19711 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
19712 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
19713 (face-attr-construct): Mark unused parameter. Doc fix.
19714 (read-color): Remove unused variable `hex-string'.
19715
19716 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
19717 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
19718 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
19719 (display-buffer-other-frame): Remove unused variable `old-window'.
19720 (kill-buffer-hook): Declare.
19721 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
19722 Mark unused parameters.
19723 (after-find-file): Pass 1 to `auto-save-mode', not t.
19724
19725 * files-x.el (auto-insert): Declare.
19726 (modify-file-local-variable-prop-line): Remove unused variable `val'.
19727
19728 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
19729 variable `buf'. Mark unused parameter.
19730 (find-lisp-insert-directory): Mark unused parameter.
19731
19732 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
19733 (format-encode-region): Remove unused variables `cur-buf' and `result'.
19734 (format-common-tail): Remove, unused.
19735 (format-deannotate-region): Remove unused variable `loc'.
19736 (format-annotate-region): Remove unused variable `p'.
19737 (format-annotate-single-property-change): Remove unused variables
19738 `default' and `tail'.
19739
19740 * forms.el (read-file-filter): Declare.
19741 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
19742
19743 * frame.el (frame-creation-function-alist): Mark unused parameter.
19744 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
19745
19746 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
19747 Remove unused parameters.
19748 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
19749 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
19750
19751 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
19752 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
19753 (hfy-prepare-tag-map): Mark unused parameters.
19754 (htmlfontify-buffer): Use `called-interactively-p'.
19755
19756 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
19757 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
19758 (ibuffer-do-occur): Mark unused parameters.
19759 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
19760 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
19761
19762 * ibuffer.el: Don't quote `lambda'.
19763 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
19764 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
19765 Mark unused parameters.
19766
19767 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
19768 (ido-completing-read): Mark unused parameters.
19769 (ido-copy-current-word): Mark unused parameters;
19770 remove unused variable `name'.
19771 (ido-sort-merged-list): Remove unused parameter `dirs'.
19772
19773 * ielm.el (ielm-input-sender): Mark unused parameter.
19774 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
19775 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
19776 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
19777 `ielm-string' as a dynamic variable accessible from the IELM prompt.
19778 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
19779
19780 * image-dired.el (image-dired-display-thumbs): Remove unused
19781 variables `curr-file' and `count'.
19782 (image-dired-remove-tag): Remove unused variable `start'.
19783 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
19784 variable `curr-file'
19785 (image-dired-rotate-original): Remove unused variable `temp-file'.
19786 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
19787 Remove unused variable `file'.
19788 (image-dired-gallery-generate): Remove unused variable `curr'.
19789 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
19790
19791 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
19792
19793 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
19794
19795 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
19796
19797 * isearch.el (minibuffer-history-symbol): Declare.
19798 (isearch-edit-string): Remove unused variable `err'.
19799 (isearch-message-prefix, isearch-message-suffix):
19800 Mark unused parameters.
19801
19802 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
19803
19804 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
19805
19806 * makesum.el (double-column): Remove unused variable `cnt'.
19807
19808 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
19809 (ido-ignore-item-temp-list): Declare.
19810
19811 * mouse-drag.el (mouse-drag-throw): Remove unused variables
19812 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
19813 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
19814 (mouse-drag-drag): Remove unused variables `mouse-delta' and
19815 `mouse-col-delta'.
19816
19817 * mouse-sel.el (mouse-extend-internal):
19818 Remove unused variable `orig-window-frame'.
19819
19820 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
19821 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
19822 Move declarations before first use.
19823 (pcomplete-opt): Mark unused parameters; doc fix.
19824
19825 * proced.el (proced-revert): Mark unused parameter.
19826 (proced-send-signal): Remove unused variable `err'.
19827
19828 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
19829 Rename parameter PREFIX-ARG to ARG.
19830 (ps-basic-plot-string, ps-basic-plot-whitespace):
19831 Mark unused parameters.
19832
19833 * replace.el (replace-count): Define.
19834 (occur-revert-function): Mark unused parameters.
19835 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
19836 (isearch-case-fold-search, isearch-string): Declare.
19837 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
19838 bind `case-fold-search'. Remove unused variables `beg' and `end',
19839 and simplify.
19840 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
19841 COUNT and bind `replace-count'.
19842 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
19843 to COUNT.
19844
19845 * savehist.el (print-readably, print-string-length): Declare.
19846
19847 * shadowfile.el (shadow-expand-cluster-in-file-name):
19848 Remove unused variable `cluster'.
19849 (shadow-copy-file): Remove unused variable `i'.
19850 (shadow-noquery, shadow-clusters, shadow-site-cluster)
19851 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
19852 (shadow-define-literal-group, shadow-define-regexp-group)
19853 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
19854
19855 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
19856 (shell): Use `called-interactively-p'.
19857 (shell-directory-tracker): Remove unused variable `chdir-failure'.
19858
19859 * simple.el (compilation-context-lines, comint-file-name-quote-list)
19860 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
19861 (delete-backward-char): Remove unused variable `ocol'.
19862 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
19863 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
19864 (event-apply-hyper-modifier, event-apply-shift-modifier)
19865 (event-apply-control-modifier, event-apply-meta-modifier):
19866 Mark unused parameters.
19867 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
19868 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
19869
19870 * speedbar.el (speedbar-ignored-directory-expressions)
19871 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
19872 (speedbar-find-file, speedbar-dir-follow)
19873 (speedbar-directory-buttons-follow, speedbar-tag-find)
19874 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
19875 (speedbar-buffers-line-directory, speedbar-buffer-click):
19876 Mark unused parameters.
19877 (speedbar-tag-file): Remove unused variable `mode'.
19878 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
19879
19880 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
19881
19882 * talk.el (talk): Remove unused variable `display'.
19883
19884 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
19885 (tar-write-region-annotate): Mark unused parameter.
19886
19887 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
19888 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
19889 Declare them, wrapped in `with-no-warnings' to avoid replacing one
19890 warning by another.
19891
19892 * time-stamp.el (time-stamp-string-preprocess):
19893 Remove unused variable `require-padding'.
19894
19895 * tree-widget.el (widget-glyph-enable): Declare.
19896 (tree-widget-action): Mark unused parameter.
19897
19898 * w32-fns.el (x-get-selection): Mark unused parameter.
19899 (autoload-make-program, generated-autoload-file): Declare.
19900
19901 * wdired.el (wdired-revert): Mark unused parameters.
19902 (wdired-xcase-word): Remove unused variable `err'.
19903
19904 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
19905 (whitespace-help-scroll): Remove unused variable `data-help'.
19906
19907 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
19908 (widget-image-insert, widget-after-change, default)
19909 (widget-default-format-handler, widget-default-notify)
19910 (widget-default-prompt-value, widget-info-link-action)
19911 (widget-url-link-action, widget-function-link-action)
19912 (widget-variable-link-action, widget-file-link-action)
19913 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
19914 (widget-field-prompt-internal, widget-field-action, widget-field-match)
19915 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
19916 (widget-insert-button-action, widget-delete-button-action, visibility)
19917 (widget-documentation-link-action, widget-documentation-string-action)
19918 (widget-const-prompt-value, widget-regexp-match, symbol)
19919 (widget-coding-system-prompt-value)
19920 (widget-key-sequence-value-to-external, sexp)
19921 (widget-sexp-value-to-internal, character, vector, cons)
19922 (widget-choice-prompt-value, widget-boolean-prompt-value)
19923 (widget-color--choose-action): Mark unused parameters.
19924 (widget-item-match-inline, widget-choice-match-inline)
19925 (widget-checklist-match, widget-checklist-match-inline)
19926 (widget-group-match): Rename parameter VALUES to VALS.
19927 (widget-field-value-set): Remove unused variable `size'.
19928 (widget-color-action): Remove unused variables `value' and `start'.
19929
19930 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
19931 variable `dir'. Doc fix.
19932 (windmove-find-other-window): Don't pass it.
19933
19934 * window.el (count-windows): Mark unused parameter.
19935 (bw-adjust-window): Remove unused variable `err'.
19936
19937 * woman.el (woman-file-name): Remove unused variable `default'.
19938 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
19939 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
19940 (global-font-lock-mode): Declare.
19941 (woman-decode-region): Mark unused parameter.
19942 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
19943
19944 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
19945 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
19946 (x-dnd-handle-moz-url): Remove unused variable `title'.
19947 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
19948
19949 * xml.el (xml-parse-tag, xml-parse-attlist):
19950 Remove unused variable `pos'.
19951
19952 2011-04-19 Glenn Morris <rgm@gnu.org>
19953
19954 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
19955 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
19956 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
19957 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
19958 * calendar/cal-html.el (cal-html-insert-minical):
19959 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
19960 (calendar-mark-date-pattern):
19961 Prefix "unused" locals.
19962
19963 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
19964 optional argument `style'.
19965
19966 * calendar/appt.el (appt-make-list):
19967 * calendar/cal-china.el (calendar-chinese-date-string):
19968 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
19969 (diary-hebrew-yahrzeit):
19970 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
19971 * calendar/calendar.el (calendar-generate-window):
19972 * calendar/time-date.el (time-to-days):
19973 Remove unused local variables.
19974
19975 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
19976
19977 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
19978 glyphless-char-display table.
19979 (tabulated-list-glyphless-char-display): New var.
19980
19981 2011-04-18 Sam Steingold <sds@gnu.org>
19982
19983 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
19984 to acknowledgments.
19985
19986 2011-04-17 Glenn Morris <rgm@gnu.org>
19987
19988 * calendar/diary-lib.el (diary-sexp-entry):
19989 * calendar/holidays.el (holiday-sexp):
19990 Set debug-on-error rather than the removed stack-trace-on-error.
19991
19992 2011-04-16 Glenn Morris <rgm@gnu.org>
19993
19994 * progmodes/f90.el: Use lexical-binding.
19995 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
19996
19997 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
19998
19999 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
20000 (mail-mode): Setup mailalias completion here instead.
20001 * mail/mailalias.el: Use lexical-binding.
20002 (pattern, mailalias-done): Declare dynamic.
20003 (mail-completion-at-point-function): New function, from mail-complete.
20004 (mail-complete): Use it.
20005 (mail-completion-expand): New function.
20006 (mail-get-names): Use it.
20007 (mail-directory, mail-directory-process, mail-directory-stream):
20008 Don't use `pattern' for lexically bound arg.
20009
20010 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
20011
20012 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
20013 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
20014 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
20015
20016 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
20017 (byte-save-window-excursion, byte-temp-output-buffer-setup)
20018 (byte-interactive-p): Define them again, for use when inlining
20019 old code.
20020
20021 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
20022
20023 * loadup.el: Use `string-to-number', not `string-to-int'.
20024
20025 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20026
20027 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
20028 gud-gdb-complete-command.
20029 (gud-gdb-completions): New function, from gud-gdb-complete-command.
20030 (gud-gdb-completion-at-point): New function.
20031 (gud-gdb-completions): Remove.
20032
20033 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
20034
20035 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
20036 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
20037 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
20038 whether `executable-find' is bound.
20039
20040 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
20041
20042 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
20043
20044 * minibuffer.el (completion-in-region-mode-predicate)
20045 (completion-in-region-mode--predicate): New vars.
20046 (completion-in-region, completion-in-region--postch)
20047 (completion-in-region-mode): Use them.
20048 (completion--capf-wrapper): Also return the hook function.
20049 (completion-at-point, completion-help-at-point):
20050 Adjust and provide a predicate.
20051
20052 Preserve arg names for advice of subr and lexical functions (bug#8457).
20053 * help-fns.el (help-function-arglist): Consolidate the subr and
20054 new-byte-code cases. Add argument `preserve-names' to extract names
20055 from the docstring when needed.
20056 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
20057 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
20058 (ad-arglist): Use help-function-arglist's new arg.
20059 (ad-definition-type): Use cond.
20060
20061 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
20062
20063 * autorevert.el (auto-revert-handler):
20064 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
20065 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
20066 Don't quote lambda.
20067
20068 * image-mode.el (image-transform-set-scale):
20069 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
20070
20071 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20072
20073 * net/network-stream.el (network-stream-open-starttls): Only do
20074 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
20075 Upgrades via gnutls-cli are too slow to be done opportunistically.
20076
20077 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
20078
20079 * dframe.el (dframe-current-frame): Remove spurious quote.
20080
20081 2011-04-12 Glenn Morris <rgm@gnu.org>
20082
20083 * calendar/cal-tex.el (cal-tex-end-document):
20084 Try to automatically use latin1 input if needed.
20085
20086 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
20087 Don't try to cons a mark onto an empty element.
20088
20089 2011-04-11 Leo Liu <sdl.web@gmail.com>
20090
20091 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
20092 buffers.
20093 (ido-kill-buffer-at-head): Support killing virtual buffers.
20094
20095 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
20096
20097 * minibuffer.el (completion-show-inline-help): New var.
20098 (completion--do-completion, minibuffer-complete)
20099 (minibuffer-force-complete, minibuffer-complete-word):
20100 Inhibit minibuffer messages if completion-show-inline-help is nil.
20101
20102 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
20103 to avoid interference from inline help (Bug#5849).
20104
20105 2011-04-10 Leo Liu <sdl.web@gmail.com>
20106
20107 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
20108 Fix typo.
20109
20110 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
20111
20112 * image-mode.el (image-toggle-display-image): Signal an error if
20113 not in Image mode.
20114 (image-transform-mode, image-transform-resize)
20115 (image-transform-set-rotation): Doc fix.
20116 (image-transform-set-resize): Delete.
20117 (image-transform-set-scale, image-transform-fit-to-height)
20118 (image-transform-fit-to-width): Handle image-toggle-display-image
20119 and image-transform-resize directly.
20120
20121 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
20122
20123 * doc-view.el (doc-view-fit-width-to-window)
20124 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
20125 New functions for fitting the shown image to the Emacs window size.
20126 (doc-view-mode-map): Add bindings for the new functions.
20127
20128 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
20129
20130 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
20131 Fix typo in docstring.
20132
20133 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20134
20135 * files.el (file-size-human-readable): Produce one digit after
20136 decimal, like "ls -lh" does.
20137
20138 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
20139 the file size representation.
20140
20141 * simple.el (list-processes): If async subprocesses are not
20142 available, error out with a clear error message.
20143
20144 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
20145
20146 * help.el (help-form-show): New function, to be called from C.
20147 Put help-form output in a buffer named differently than *Help*.
20148
20149 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20150
20151 * files.el (file-size-human-readable): New function.
20152
20153 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
20154 computing the representation inline. Don't require `cl'.
20155
20156 2011-04-08 Glenn Morris <rgm@gnu.org>
20157
20158 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
20159
20160 * net/browse-url.el (browse-url-firefox):
20161 Test system-type, not system-configuration.
20162
20163 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
20164 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
20165 Use log-edit-empty-buffer-p. (Bug#7598)
20166
20167 * net/rlogin.el (rlogin-process-connection-type): Simplify.
20168 (rlogin-mode-map): Initialize in the defvar.
20169 (rlogin): Use ignore-errors.
20170
20171 * replace.el (occur-mode-map): Some fixes for menu items.
20172
20173 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
20174
20175 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
20176
20177 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20178
20179 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
20180 issuing unused warnings.
20181
20182 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
20183 macro directly.
20184
20185 * simple.el: Lisp reimplement of list-processes. Based on an
20186 earlier reimplementation by Leo Liu, but using tabulated-list.el.
20187 (process-menu-mode): New major mode.
20188 (list-processes--refresh, list-processes):
20189 (process-menu-visit-buffer): New functions.
20190
20191 * files.el (save-buffers-kill-emacs): Don't assume any return
20192 value of list-processes, which is undocumented anyway.
20193
20194 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20195
20196 * emacs-lisp/tabulated-list.el: New file.
20197
20198 * emacs-lisp/package.el: Use Tabulated List mode.
20199 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
20200 (package-menu-mode): Derive from tabulated-list-mode. Set up the
20201 table format using Tabulated List mode variables.
20202 (package--push): New macro, replacing package-list-maybe-add.
20203 (package-menu--generate): Use package--push. Renamed from
20204 package--generate-package-list.
20205 (package-menu-refresh, list-packages): Use it.
20206 (package-menu--print-info): Rename from package-print-package.
20207 Return insertion data instead of inserting it directly.
20208 (package-menu-describe-package, package-menu-execute):
20209 Use tabulated-list-get-id.
20210 (package-menu-mark-delete, package-menu-mark-install)
20211 (package-menu-mark-unmark, package-menu-backup-unmark)
20212 (package-menu-mark-obsolete-for-deletion):
20213 Use tabulated-list-put-tag.
20214 (package--list-packages, package-menu-revert)
20215 (package-menu-get-package, package-menu-get-version)
20216 (package-menu-sort-by-column): Functions deleted.
20217 (package-menu-package-list, package-menu-sort-key): Vars deleted.
20218 (package-menu--status-predicate, package-menu--version-predicate)
20219 (package-menu--name-predicate)
20220 (package-menu--description-predicate): Handle arguments in the
20221 Tabulated List format.
20222 (package-list-packages-no-fetch): Call list-packages.
20223
20224 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
20225
20226 * files.el (after-find-file-from-revert-buffer): Remove variable.
20227 (after-find-file): Don't bind it.
20228 (revert-buffer-in-progress-p): New variable.
20229 (revert-buffer): Bind it.
20230 Pass nil for `after-find-file-from-revert-buffer'.
20231
20232 * saveplace.el (save-place-find-file-hook): Use new variable
20233 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
20234
20235 2011-04-06 Glenn Morris <rgm@gnu.org>
20236
20237 * Makefile.in (AUTOGEN_VCS): New variable.
20238 (autoloads): Use $AUTOGEN_VCS.
20239
20240 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
20241 * calendar/calendar.el (calendar-mode-map):
20242 Check for toolkit scroll bars. (Bug#8305)
20243
20244 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20245
20246 * minibuffer.el (completion-in-region--postch)
20247 (completion-in-region-mode): Remove unnecessary messages.
20248
20249 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
20250
20251 * font-lock.el (font-lock-refresh-defaults):
20252 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
20253 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
20254
20255 * info.el (Info-directory-list, Info-read-node-name-2)
20256 (Info-split-parameter-string): Doc fixes.
20257 (Info-virtual-nodes): Reflow docstring.
20258 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
20259 (Info-apropos-toc-nodes, info-finder, Info-get-token)
20260 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
20261 Fix typos in docstrings.
20262 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
20263 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
20264 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
20265 (Info-restore-desktop-buffer): Mark unused parameters.
20266 (Info-directory-find-file, Info-directory-find-node)
20267 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
20268 (Info-virtual-index-find-node, Info-apropos-find-file)
20269 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
20270 Mark unused parameters; fix typos in docstrings.
20271 (Info-virtual-index): Remove unused local variable `nodename'.
20272
20273 2011-04-05 Deniz Dogan <deniz@dogan.se>
20274
20275 * net/rcirc.el: Update my e-mail address.
20276 (rcirc-mode-map): Remove M-o binding.
20277
20278 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20279
20280 * startup.el (command-line): Save the cursor's theme-face
20281 directly, instead of using face-override-spec.
20282
20283 * custom.el (load-theme): Minor optimization in assigning faces.
20284
20285 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20286
20287 * help-fns.el (describe-variable): Complete all variables having
20288 documentation, including keywords.
20289 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
20290
20291 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20292
20293 Convert to lexical-binding.
20294
20295 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
20296 (bs--get-marked-string, bs--get-modified-string)
20297 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
20298 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
20299 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
20300
20301 * ehelp.el (electric-help-execute-extended)
20302 (electric-help-ctrl-x-prefix):
20303 * hexl.el (hexl-revert-buffer-function):
20304 * linum.el (linum-after-change, linum-after-scroll):
20305 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
20306
20307 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
20308
20309 2011-04-04 Daiki Ueno <ueno@unixuser.org>
20310
20311 * epa-dired.el:
20312 * epa-mail.el:
20313 * epa-hook.el:
20314 * epa-file.el:
20315 * epa.el:
20316 * epg.el: Use lexical binding.
20317
20318 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
20319
20320 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
20321
20322 * textmodes/flyspell.el (flyspell-word): Recognize default
20323 dictionary case for flyspell-mark-duplications-exceptions.
20324 Use regexp matching for languages.
20325 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
20326 default dictionary (Bug#7926).
20327
20328 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
20329
20330 * emacs-lisp/package.el (package--with-work-buffer):
20331 Recognize https URLs.
20332
20333 * net/network-stream.el: Move from gnus/proto-stream.el.
20334 Change prefix to network-stream throughout.
20335 (open-protocol-stream): Merge into open-network-stream, leaving
20336 open-protocol-stream as an alias. Handle nil BUFFER args.
20337
20338 * subr.el (open-network-stream): Move to net/network-stream.el.
20339
20340 2011-04-02 Glenn Morris <rgm@gnu.org>
20341
20342 * find-dired.el (find-exec-terminator): New option.
20343 (find-ls-option): Test for -ls support.
20344 (find-ls-subdir-switches): Test for -b in find-ls-option.
20345 (find-dired, find-grep-dired): Doc fixes.
20346 (find-dired): Use find-exec-terminator.
20347
20348 * find-dired.el (find-ls-option, find-ls-subdir-switches)
20349 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
20350 (find-name-arg): Remove purecopy.
20351
20352 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
20353 (grep-compute-defaults): Check for `-exec COMMAND +' support.
20354 Set grep-find-use-xargs, grep-find-command, and grep-find-template
20355 accordingly. Don't add the null-device if not needed.
20356
20357 * files.el (save-some-buffers): Doc fix.
20358
20359 2011-04-02 Eli Zaretskii <eliz@gnu.org>
20360
20361 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
20362
20363 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
20364
20365 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
20366 Use `dolist' rather than `mapcar'.
20367
20368 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
20369
20370 Add lexical binding.
20371
20372 * subr.el (apply-partially): Use new closures rather than CL.
20373 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
20374 (dolist, dotimes): Use slightly different expansion for lexical code.
20375 (functionp): Move to C.
20376 (letrec): New macro.
20377 (with-wrapper-hook): Use it and apply-partially instead of CL.
20378 (eval-after-load): Preserve lexical-binding.
20379 (save-window-excursion, with-output-to-temp-buffer): Turn them
20380 into macros.
20381
20382 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
20383
20384 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
20385 than the arglist.
20386 (help-add-fundoc-usage): Don't add `Not documented'.
20387 (help-function-arglist): Handle closures, subroutines, and new
20388 byte-code-functions.
20389 (help-make-usage): Remove leading underscores.
20390 (describe-function-1): Handle closures.
20391 (describe-variable): Use special-variable-p for completion.
20392
20393 * files.el (lexical-binding): Declare safe.
20394
20395 * emacs-lisp/pcase.el: Don't use destructuring-bind.
20396 (pcase--memoize): Rename from pcase-memoize. Change weakness.
20397 (pcase): Add `let' pattern.
20398 Change memoization so it actually works.
20399 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
20400 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
20401 <let>: New case.
20402
20403 * emacs-lisp/macroexp.el: Use lexical binding.
20404 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
20405 Don't convert ' to #' without checking that it's indeed quoting
20406 a lambda.
20407
20408 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
20409 Use eval-sexp-add-defvars.
20410 (eval-sexp-add-defvars): New fun.
20411
20412 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
20413
20414 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
20415 Don't autoload.
20416 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
20417 than the internal `byte-compile-lambda'.
20418 (defmethod): Don't hide code under quotes.
20419 (eieio-defmethod): New `code' argument.
20420
20421 * emacs-lisp/eieio-comp.el: Remove.
20422
20423 * emacs-lisp/edebug.el (edebug-eval-defun)
20424 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
20425 (edebug-toggle): Avoid `eval'.
20426
20427 * emacs-lisp/disass.el (disassemble-internal): Handle new
20428 `closure' objects.
20429 (disassemble-1): Handle new byte codes.
20430
20431 * emacs-lisp/cl.el (pushnew): Silence warning.
20432
20433 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
20434 (cl-byte-compile-throw): Remove.
20435 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
20436
20437 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
20438 closures.
20439
20440 * emacs-lisp/cconv.el: New file.
20441
20442 * emacs-lisp/bytecomp.el: Use lexical binding instead of
20443 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
20444 (byte-compile-initial-macro-environment):
20445 Handle declare-function here.
20446 (byte-compile--lexical-environment): New var.
20447 (byte-stack-ref, byte-stack-set, byte-discardN)
20448 (byte-discardN-preserve-tos): New lap codes.
20449 (byte-interactive-p): Don't use any more.
20450 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
20451 New macros.
20452 (byte-compile-lapcode): Use them and handle new lap codes.
20453 (byte-compile-obsolete): Remove.
20454 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
20455 (byte-compile-arglist-warn): Check late def of inlinable funs.
20456 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
20457 since they should have been expanded by now.
20458 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
20459 (byte-compile-from-buffer): Remove unused second arg.
20460 (byte-compile-preprocess): New function.
20461 (byte-compile-toplevel-file-form): New function to distinguish
20462 file-form calls from outside from file-form calls from hunk-handlers.
20463 (byte-compile-file-form): Simplify.
20464 (byte-compile-file-form-defsubst): Remove.
20465 (byte-compile-file-form-defmumble): Simplify now that
20466 byte-compile-lambda always returns a byte-code-function.
20467 (byte-compile): Preprocess.
20468 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
20469 Remove, not used any more.
20470 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
20471 (byte-compile-make-args-desc): New funs.
20472 (byte-compile-lambda): Handle lexical functions. Always return
20473 a byte-code-function.
20474 (byte-compile-reserved-constants): New var, to make up room for
20475 closed-over variables.
20476 (byte-compile-constants-vector): Obey it.
20477 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
20478 (byte-compile-macroexpand-declare-function): New function.
20479 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
20480 byte-code-functions.
20481 (byte-compile-form): Check obsolescence here.
20482 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
20483 (byte-compile-variable-ref): Remove.
20484 (byte-compile-dynamic-variable-op): New fun.
20485 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
20486 (byte-compile-variable-set): New funs.
20487 (byte-compile-discard): Add 2 args.
20488 (byte-compile-stack-ref, byte-compile-stack-set)
20489 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
20490 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
20491 macroexpand-all instead.
20492 (byte-compile-quote-form): Remove.
20493 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
20494 (byte-compile-bind, byte-compile-unbind): New funs.
20495 (byte-compile-let): Handle let* and lexical binding.
20496 (byte-compile-let*): Remove.
20497 (byte-compile-catch, byte-compile-unwind-protect)
20498 (byte-compile-track-mouse, byte-compile-condition-case):
20499 Handle a new :fun-body form, used for lexical scoping.
20500 (byte-compile-save-window-excursion)
20501 (byte-compile-with-output-to-temp-buffer): Remove.
20502 (byte-compile-defun): Simplify.
20503 (byte-compile-stack-adjustment): New fun.
20504 (byte-compile-out): Use it.
20505 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
20506
20507 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
20508 handler any more.
20509
20510 * emacs-lisp/byte-opt.el: Use lexical binding.
20511 (byte-inline-lapcode): Remove (to bytecomp).
20512 (byte-compile-inline-expand): Pay attention to inlining to/from
20513 lexically bound code.
20514 (byte-compile-unfold-lambda): Don't handle byte-code-functions
20515 any more.
20516 (byte-optimize-form-code-walker): Don't handle save-window-excursion
20517 any more and don't call compiler-macros.
20518 (byte-compile-splice-in-already-compiled-code): Remove.
20519 (byte-code): Don't inline any more.
20520 (disassemble-offset): Receive `bytes' as argument rather than via
20521 dynamic scoping.
20522 (byte-compile-tag-number): Declare before first use.
20523 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
20524 `return' even if make-spliceable.
20525 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
20526 obsolete interactive-p.
20527 (byte-optimize-lapcode): Optimize new lap-codes.
20528 Don't trip up on new form of `byte-constant' lap code.
20529
20530 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
20531
20532 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
20533
20534 * custom.el (custom-initialize-default, custom-declare-variable):
20535 Use `defvar'.
20536
20537 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
20538 New variables.
20539 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
20540 (COMPILE_FIRST): Add macroexp and cconv.
20541 * makefile.w32-in: Mirror changes in Makefile.in.
20542
20543 * vc/cvs-status.el:
20544 * vc/diff-mode.el:
20545 * vc/log-edit.el:
20546 * vc/log-view.el:
20547 * vc/smerge-mode.el:
20548 * textmodes/bibtex-style.el:
20549 * textmodes/css-mode.el:
20550 * startup.el:
20551 * uniquify.el:
20552 * minibuffer.el:
20553 * newcomment.el:
20554 * reveal.el:
20555 * server.el:
20556 * mpc.el:
20557 * emacs-lisp/smie.el:
20558 * doc-view.el:
20559 * dired.el:
20560 * abbrev.el: Use lexical binding.
20561
20562 2011-04-01 Eli Zaretskii <eliz@gnu.org>
20563
20564 * info.el (info-display-manual): New function.
20565
20566 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
20567
20568 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
20569
20570 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
20571
20572 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
20573 an entry for that server in rcirc-authinfo. (Bug#8385)
20574
20575 2011-03-31 Glenn Morris <rgm@gnu.org>
20576
20577 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
20578
20579 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
20580
20581 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
20582
20583 * progmodes/python.el (python-default-interpreter)
20584 (python-python-command-args, python-jython-command-args)
20585 (python-which-shell, python-which-args, python-which-bufname)
20586 (python-file-queue, python-comint-output-filter-function)
20587 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
20588 variables and functions.
20589
20590 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
20591
20592 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
20593 (completion-in-region-mode): New minor mode.
20594 (completion-in-region): Use it.
20595 (completion-in-region--data, completion-in-region-mode-map): New vars.
20596 (completion-in-region--postch): New function.
20597 (completion--capf-misbehave-funs, completion--capf-safe-funs):
20598 New vars.
20599 (completion--capf-wrapper): New function.
20600 (completion-at-point): Use it to track well-behavedness of
20601 hook functions.
20602 (completion-help-at-point): New command.
20603
20604 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
20605
20606 * vc/add-log.el (add-change-log-entry): Don't use whitespace
20607 syntax class to search for whitespace on a single line
20608 (Message-ID: <4D938140.4030905@redhat.com>).
20609
20610 2011-03-30 Leo Liu <sdl.web@gmail.com>
20611
20612 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
20613 New commands.
20614 (edit-abbrevs-map): Bind them here.
20615 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
20616
20617 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
20618
20619 * allout.el (allout-hide-by-annotation, allout-flag-region):
20620 Reduce possibility of overlay leakage by making them volatile.
20621
20622 * allout-widgets.el (allout-widgets-tally): Define as nil so the
20623 hash is not shared between buffers. Mode initialization is
20624 responsible for giving it a useful starting value.
20625 (allout-item-span): Reduce possibility of overlay leakage by
20626 making them volatile.
20627 (allout-widgets-count-buttons-in-region): Add diagnostic function
20628 for tracking down button overlay leaks.
20629
20630 2011-03-29 Leo Liu <sdl.web@gmail.com>
20631
20632 * ido.el (ido-read-internal): Use the default history var
20633 minibuffer-history if no HISTORY is specified.
20634
20635 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
20636
20637 * net/imap.el (imap-shell-open, imap-process-connection-type):
20638 Use imap-process-connection-type for 'shell' streams as well as
20639 Kerberos, SSL, other subprocesses.
20640
20641 2011-03-28 Leo Liu <sdl.web@gmail.com>
20642
20643 * abbrev.el (abbrev-table-empty-p): New function.
20644 (prepare-abbrev-list-buffer): Place empty abbrev tables after
20645 nonempty ones. (Bug#5937)
20646
20647 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
20648
20649 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
20650
20651 2011-03-27 Leo Liu <sdl.web@gmail.com>
20652
20653 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
20654 for foreground and background colors.
20655 (ansi-color-make-color-map): Adapt.
20656
20657 2011-03-25 Leo Liu <sdl.web@gmail.com>
20658
20659 * midnight.el (midnight-time-float): Remove. Note it calculates
20660 the microsecond component incorrectly and seconds-to-time does the
20661 same job.
20662 Remove redundant (require 'timer).
20663
20664 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
20665 (ido-completions): Remove unused arguments. (Bug#8329)
20666
20667 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
20668
20669 * minibuffer.el (completion--flush-all-sorted-completions):
20670 Remove itself from hook.
20671 (completion-at-point): Let the functions perform the completion
20672 immediately and return nil or t.
20673 * comint.el (comint-dynamic-complete-functions): Now identical to
20674 completion-at-point-functions.
20675 (comint-dynamic-list-input-ring): Remove unused var `index'.
20676 (comint--match-partial-filename, comint--unquote&expand-filename):
20677 New funs, split from comint-match-partial-filename.
20678 (comint-dynamic-complete): Use completion-at-point.
20679 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
20680
20681 2011-03-24 Drew Adams <drew.adams@oracle.com>
20682
20683 * thingatpt.el: Support `defun'.
20684
20685 2011-03-23 Leo Liu <sdl.web@gmail.com>
20686
20687 * abbrevlist.el: Move to obsolete/abbrevlist.el.
20688
20689 * help-mode.el (help-mode-finish): Tweak regexp.
20690
20691 2011-03-23 Glenn Morris <rgm@gnu.org>
20692
20693 * eshell/esh-opt.el (eshell-eval-using-options):
20694 Do not bind unused local variable `eshell-option-stub'.
20695
20696 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
20697
20698 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
20699
20700 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
20701 keymap variable in `with-no-warnings' to avoid a warning when the
20702 keymap has been already `defconst'ed.
20703
20704 2011-03-22 Leo Liu <sdl.web@gmail.com>
20705
20706 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
20707 encode all chars in abbrevs; otherwise use emacs-mule or
20708 utf-8-emacs. (Bug#8308)
20709
20710 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
20711
20712 * simple.el (backward-delete-char-untabify):
20713 Avoid warning about using `delete-backward-char'.
20714
20715 * image.el (image-type-file-name-regexps): Make it variable.
20716 `imagemagick-register-types' modifies it, and the user may want
20717 to add new extensions for known image types.
20718 (imagemagick-register-types): Throw error if not using ImageMagick.
20719
20720 2011-03-22 Leo Liu <sdl.web@gmail.com>
20721
20722 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
20723 located before rcirc-prompt-end-marker.
20724 (rcirc-complete): Error if point is not after rcirc prompt.
20725 Handle the case when table is nil.
20726 (rcirc-user-authenticated): Define to fix compiler warning.
20727
20728 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
20729
20730 * custom.el (custom--inhibit-theme-enable): Make it affect only
20731 custom-theme-set-variables and custom-theme-set-faces.
20732 (provide-theme): Ignore custom--inhibit-theme-enable.
20733 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
20734 (custom-enabling-themes): Delete variable.
20735 (enable-theme): Accept only loaded themes as arguments.
20736 Ignore the special custom-enabled-themes variable.
20737 (custom-enabled-themes): Forbid themes from setting this.
20738 Eliminate use of custom-enabling-themes.
20739 (custom-push-theme): Quote "changed" custom var entry.
20740
20741 2011-03-21 Leo Liu <sdl.web@gmail.com>
20742
20743 * ido.el (ido-read-internal): Add ido-selected to history instead
20744 of user input.
20745
20746 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
20747
20748 * subr.el (deferred-action-list, deferred-action-function):
20749 Mark obsolete.
20750
20751 2011-03-21 Leo Liu <sdl.web@gmail.com>
20752
20753 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
20754 change on 2011-02-13 (bug#8309).
20755
20756 * minibuffer.el (read-file-name-function): Change default value.
20757 (read-file-name--defaults): Rename from read-file-name-defaults.
20758 (read-file-name-default): Rename from read-file-name.
20759 (read-file-name): Call read-file-name-function.
20760
20761 2011-03-21 Glenn Morris <rgm@gnu.org>
20762
20763 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
20764 Doc fixes.
20765
20766 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
20767
20768 * cus-theme.el: Add missing provide statement.
20769 (customize-create-theme): Extract theme value correctly.
20770 (custom-theme-visit-theme): Autoload.
20771 (customize-create-theme): Prompt before inserting default faces.
20772
20773 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
20774
20775 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
20776 units and musical notes.
20777
20778 2011-03-20 Leo Liu <sdl.web@gmail.com>
20779
20780 * ido.el (ido-read-internal): Use completing-read-default.
20781 (ido-completing-read): Fix compatibility with completing-read.
20782
20783 2011-03-20 Christian Ohler <ohler@gnu.org>
20784
20785 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
20786 (ert-delete-all-tests): Use `called-interactively-p' rather than
20787 `interactive-p'.
20788 (ert--make-xrefs-region): Respect END.
20789
20790 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
20791
20792 * dired-aux.el (dired-create-directory): Signal an error if the
20793 directory already exists (Bug#8246).
20794
20795 * facemenu.el (list-colors-display): Call list-faces-display
20796 inside with-help-window.
20797 (list-colors-print): Use display property to align the final
20798 column, instead of checking window-width.
20799
20800 2011-03-19 Eli Zaretskii <eliz@gnu.org>
20801
20802 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
20803 windows-nt systems.
20804 (emerge-protect-metachars): Quote correctly for ms-dos and
20805 windows-nt systems.
20806
20807 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
20808
20809 * info.el (info-initialize): Replace all uses of `:' with
20810 path-separator for compatibility with non-Unix systems.
20811 Cache quoting of path-separator. (Bug#8258)
20812
20813 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
20814
20815 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
20816 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
20817 (mouse-avoidance-mode): Fix typos in docstrings.
20818
20819 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
20820
20821 * startup.el (package-subdirectory-regexp): Move from package.el.
20822 Omit \\` and \\', and let callers add them.
20823
20824 * emacs-lisp/package.el (package-strip-version)
20825 (package-load-all-descriptors): Add \\` and \\' to
20826 package-subdirectory-regexp before using it.
20827 (package-untar-buffer): New arg DIR; ensure that file untars only
20828 into this expected directory. Remove superfluous delete-region.
20829 (package-unpack): Caller changed.
20830 (package-tar-file-info): Use package-subdirectory-regexp.
20831
20832 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
20833
20834 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
20835 diff-mode-shared-map (bug#8284).
20836 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
20837
20838 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
20839
20840 * calendar/time-date.el (format-seconds): Use assoc instead of
20841 assoc-string, since assoc-string doesn't exist in XEmacs.
20842
20843 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
20844
20845 * custom.el (custom-known-themes): Reflow docstring.
20846 (custom-theme-load-path): Fix typo in docstring.
20847 (load-theme): Fix typo in error message.
20848 (custom-available-themes, custom-variable-theme-value):
20849 Use `let', not `let*'.
20850
20851 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
20852
20853 * calc/README: Mention inclusion of musical notes.
20854
20855 * calc/calc-units.el (calc-lu-quant): Rename from
20856 `calc-logunits-quantity'.
20857 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
20858 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
20859 (calc-db): Rename from `calc-dblevel'.
20860 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
20861 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
20862 (calc-np): Rename from `calc-nplevel'.
20863 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
20864 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
20865 (calc-lu-plus): Rename from `calc-logunits-add'.
20866 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
20867 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
20868 (calc-lu-minus): Rename from `calc-logunits-sub'.
20869 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
20870 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
20871 (calc-lu-times): Rename from `calc-logunits-mul'.
20872 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
20873 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
20874 (calc-lu-divide): Rename from `calc-logunits-div'.
20875 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
20876 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
20877
20878 * calc/calc-ext.el (calc-init-extensions): Update the names of the
20879 functions being autoloaded.
20880
20881 * calc/calc.el (calc-lu-power-reference): Rename from
20882 `calc-logunits-power-reference'.
20883 (calc-lu-field-reference): Rename from
20884 `calc-logunits-field-reference'.
20885
20886 * calc/calc-help.el (calc-l-prefix-help):
20887 Mention musical note functions.
20888
20889 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
20890
20891 * minibuffer.el (completion-all-sorted-completions):
20892 Use :completion-cycle-penalty text property if present.
20893
20894 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
20895
20896 * allout.el (allout-yank-processing): Adjust for new rebulleting
20897 regime so bullet being yanked is used without prompting the user
20898 for a choice.
20899
20900 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
20901
20902 * startup.el (command-line): Warn the user that _emacs is deprecated.
20903
20904 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
20905
20906 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
20907 (delphi-verbose, delphi-comment-face, delphi-string-face)
20908 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
20909 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
20910 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
20911 (delphi-new-comment-line, delphi-font-lock-defaults)
20912 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
20913 Fix typos in docstrings.
20914
20915 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
20916
20917 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
20918 Invert the roles of character and string values for INSTEAD, so a
20919 string is used for the more common case of a defaulting prompt.
20920
20921 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
20922
20923 * progmodes/ruby-mode.el (ruby-backward-sexp):
20924 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
20925 * play/gamegrid.el (gamegrid-make-face):
20926 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
20927 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
20928 * notifications.el (notifications-notify):
20929 * net/xesam.el (xesam-search-engines):
20930 * net/quickurl.el (quickurl-list-insert):
20931 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
20932
20933 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
20934
20935 * startup.el (command-line): Update package subdirectory regexp.
20936
20937 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
20938
20939 * allout.el (allout-abbreviate-flattened-numbering)
20940 (allout-mode-deactivate-hook): Fix up obsolescence "date".
20941
20942 * subr.el (read-char-choice): Only show the cursor after the prompt,
20943 not after the answer.
20944
20945 2011-03-15 Kevin Ryde <user42@zip.com.au>
20946
20947 * help-fns.el (variable-at-point): Skip leading quotes, if any
20948 (bug#8253).
20949
20950 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
20951
20952 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
20953 warning message.
20954
20955 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
20956
20957 * shell.el (shell): When called interactively, offer to change the
20958 shell file name on remote hosts.
20959
20960 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
20961
20962 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
20963 integration for LDAP parameters. The host, base, user or binddn,
20964 and secret tokens can be specified in a netrc file, for instance.
20965 This is optional because an `auth-source' parameter must be
20966 specified in the search attributes.
20967
20968 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
20969
20970 * help.el (describe-mode): Link to the mode's definition (bug#8185).
20971
20972 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
20973
20974 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
20975 into declaration. Remove redundant and harmful binding.
20976
20977 2011-03-12 Eli Zaretskii <eliz@gnu.org>
20978
20979 * files.el (file-ownership-preserved-p): Pass `integer' as an
20980 explicit 2nd argument to `file-attributes'. If the file's owner
20981 is the Administrators group on Windows, and the current user is
20982 Administrator, consider that a match.
20983
20984 * server.el (server-ensure-safe-dir): Consider server directory
20985 safe on MS-Windows if its owner is the Administrators group while
20986 the current Emacs user is Administrator. Use `=' to compare
20987 numerical UIDs, since they could be integers or floats.
20988
20989 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
20990
20991 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
20992
20993 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
20994
20995 Sync with Tramp 2.2.1.
20996
20997 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
20998
20999 * net/trampver.el: Update release number.
21000
21001 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21002
21003 * progmodes/compile.el (compilation--previous-directory): Fix up
21004 various nil/dead-marker mismatches (bug#8014).
21005 (compilation-directory-properties, compilation-error-properties):
21006 Don't call it at a position past the one we're about to change.
21007
21008 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
21009 Disable obsolescence warnings in the file that declares it.
21010
21011 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
21012
21013 * allout-widgets.el (allout-widgets-tally):
21014 Initialize allout-widgets-tally as a hash table rather than nil to
21015 prevent mode-line redisplay warnings. Also, clarify the module
21016 description and fix a comment typo.
21017
21018 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
21019
21020 * help-fns.el (describe-variable): Don't complete keywords.
21021 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
21022
21023 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
21024
21025 * emacs-lisp/package.el (package-version-join): Impose a standard
21026 string representation for pre/alpha/beta version lists.
21027 (package-unpack-single): Standardize the directory name by passing
21028 it through package-version-join.
21029 (package-strip-rcs-id): Accept any version string that does not
21030 signal an error in version-to-list.
21031
21032 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
21033
21034 * simple.el (delete-trailing-whitespace): Return nil for the
21035 benefit of `write-file-functions'.
21036
21037 2011-03-10 Glenn Morris <rgm@gnu.org>
21038
21039 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
21040
21041 * vc/vc-git.el (vc-git-program): New option.
21042 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
21043 (vc-git--call): Use it.
21044
21045 * eshell/esh-util.el (eshell-condition-case): Doc fix.
21046
21047 * cus-edit.el (Custom-newline): If no button at point, look
21048 for a subgroup button at start-of-line. (Bug#2298)
21049
21050 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
21051
21052 2011-03-10 Julien Danjou <julien@danjou.info>
21053
21054 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
21055 `cursor-type' is nil.
21056
21057 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
21058
21059 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
21060
21061 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
21062
21063 * allout.el: Change so yank of distinctive-bullet items
21064 preserves the existing header prefix, rebulleting it if necessary,
21065 rather than replacing it. This is necessary for proper operation
21066 of cooperative addons like allout-widgets.
21067 (allout-make-topic-prefix, allout-rebullet-heading):
21068 Change SOLICIT arg to INSTEAD, and interpret additionally a string
21069 value as alternate bullet to be used, instead of prompting the user
21070 for a bullet character.
21071
21072 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
21073
21074 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
21075 Do not use `tramp-file-name-port', because this returns also
21076 `tramp-default-port'.
21077
21078 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
21079
21080 * net/rcirc.el (rcirc-handler-001): Remove useless
21081 with-rcirc-process-buffer.
21082 (rcirc-check-auth-status): Swap arguments to string-match.
21083
21084 2011-03-09 Glenn Morris <rgm@gnu.org>
21085
21086 * shell.el (shell-mode):
21087 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
21088
21089 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
21090 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
21091
21092 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21093
21094 * emacs-lisp/package.el (package-refresh-contents)
21095 (package-menu-execute): Use condition-case-no-debug.
21096
21097 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
21098
21099 * simple.el (shell-command-to-string): Use `process-file'.
21100
21101 * emacs-lisp/package.el (package-tar-file-info): Handle also
21102 remote files.
21103
21104 * emacs-lisp/package-x.el (package-upload-buffer-internal):
21105 Use `equal' for upload base check.
21106
21107 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
21108
21109 * textmodes/texinfo.el (texinfo-environments):
21110 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
21111
21112 2011-03-08 Glenn Morris <rgm@gnu.org>
21113
21114 * cus-start.el (cursor-in-non-selected-windows):
21115 Fix :set quoting oddness. (Bug#8192)
21116
21117 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
21118 in some setf expressions. (Bug#2159)
21119
21120 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21121
21122 * custom.el (custom-available-themes): Return themes in
21123 alphabetical order.
21124
21125 See ChangeLog.15 for earlier changes.
21126
21127 ;; Local Variables:
21128 ;; coding: utf-8
21129 ;; End:
21130
21131 Copyright (C) 2011-2012 Free Software Foundation, Inc.
21132
21133 This file is part of GNU Emacs.
21134
21135 GNU Emacs is free software: you can redistribute it and/or modify
21136 it under the terms of the GNU General Public License as published by
21137 the Free Software Foundation, either version 3 of the License, or
21138 (at your option) any later version.
21139
21140 GNU Emacs is distributed in the hope that it will be useful,
21141 but WITHOUT ANY WARRANTY; without even the implied warranty of
21142 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21143 GNU General Public License for more details.
21144
21145 You should have received a copy of the GNU General Public License
21146 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.