]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
src/frame.c (x_report_frame_params): Cast to avoid compiler warnings.
[gnu-emacs] / lisp / ChangeLog
1 2011-09-09 Glenn Morris <rgm@gnu.org>
2
3 * woman.el (woman-if-body): When processing an .el block,
4 do not delete the next .el block as well. (Bug#9447)
5 (woman-special-characters): Add oq, cq, and hy characters.
6
7 2011-09-08 Martin Rudalics <rudalics@gmx.at>
8
9 * window.el (window-deletable-p): Make sure window is live before
10 invoking window-prev-buffers.
11
12 2011-09-08 Leo Liu <sdl.web@gmail.com>
13
14 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
15
16 2011-09-08 Juri Linkov <juri@jurta.org>
17
18 * progmodes/compile.el (compilation-environment): Make it
19 a defcustom (bug#8340).
20
21 2011-09-08 Martin Rudalics <rudalics@gmx.at>
22
23 * window.el (frame-auto-delete): Rename to window-auto-delete.
24 Make it control auto-deletion of windows and/or frames.
25 (window-deletable-p): New argument FORCE. Rewrite conditions
26 for deleting window/frame. (Bug#9419)
27 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
28 Rewrite handling of case when window/frame can be deleted.
29 (delete-windows-on): Call window-deletable-p with new FORCE
30 argument t. (Bug#9456)
31
32 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
33
34 * help-mode.el (help-mode): Restore autoload.
35
36 2011-09-07 Juri Linkov <juri@jurta.org>
37
38 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
39 `compilation-environment'. Set buffer-local
40 `compilation-environment' to `thisenv' later after (funcall mode).
41 (Bug#8340)
42
43 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
44 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
45 instead of replacing its value. (Bug#8340)
46
47 2011-09-07 Juri Linkov <juri@jurta.org>
48
49 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
50 based on text properties put by `grep-filter' instead of matching
51 escape sequences.
52 (grep-mode): Set buffer-local `compilation-error-screen-columns'
53 to the value of `grep-error-screen-columns' (bug#9438).
54
55 2011-09-07 Juri Linkov <juri@jurta.org>
56
57 * simple.el (next-error-highlight, next-error-highlight-no-select):
58 Doc fix (bug#9432).
59
60 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
61
62 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
63 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
64
65 2011-09-07 Leo Liu <sdl.web@gmail.com>
66
67 * net/rcirc.el (rcirc-mode): Conditionally initialize
68 rcirc-input-ring.
69
70 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
71
72 * emacs-lisp/find-func.el (find-function-C-source): Only set
73 find-function-C-source-directory after checking that we found a source
74 file there (bug#9440).
75
76 2011-09-06 Alan Mackenzie <acm@muc.de>
77
78 * isearch.el (isearch-other-meta-char): Wherever a key list is
79 unread, "unread" the prefix arg, too. This fixes bug #8901.
80
81 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
82
83 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
84
85 2011-09-05 Juri Linkov <juri@jurta.org>
86
87 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
88
89 2011-09-05 Juri Linkov <juri@jurta.org>
90
91 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
92 keeping point where processing of grep matches begins, and
93 continue to delete remaining escape sequences from the same point.
94 (grep-filter): Make leading zero optional in "0?1;31m" because
95 git-grep emits "\033[1;31m" escape sequences unlike expected
96 "\033[01;31m" as GNU Grep does (bug#9408).
97 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
98
99 2011-09-05 Juri Linkov <juri@jurta.org>
100
101 * subr.el (y-or-n-p): Capitalize "yes".
102
103 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
104
105 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
106 `tramp-cache-unload-hook' where appropriate.
107 (tramp-methods): Rename `tramp-remote-sh' to
108 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
109 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
110
111 * net/tramp-sh.el (top): Don't require 'shell.
112 (tramp-methods): Add `tramp-remote-shell' and
113 `tramp-remote-shell-args' entries.
114 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
115 (tramp-sh-handle-shell-command): Remove.
116 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
117 Use `tramp-remote-shell'.
118
119 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
120
121 * mail/sendmail.el (sendmail-query-once-function): Deleted.
122 (sendmail-query-once): Save directly to send-mail-function.
123 Update message-send-mail-function too.
124
125 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
126
127 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
128
129 * progmodes/python.el (python-mode-map): Use correct function to
130 start python interpreter from menu-bar (as reported by Geert
131 Kloosterman).
132 (inferior-python-mode-map): Fix typo.
133 (python-shell-map): Removed.
134
135 2011-09-03 Deniz Dogan <deniz@dogan.se>
136
137 * net/rcirc.el (rcirc-print): Simplify code for
138 rcirc-scroll-show-maximum-output. There is no need to walk
139 through all windows to find the right one.
140
141 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
142
143 * help.el (help-return-method): Doc fix.
144
145 2011-09-03 Martin Rudalics <rudalics@gmx.at>
146
147 * window.el (window-deletable-p): Don't return a non-nil value
148 when there's a buffer that was shown in the window before.
149 (Bug#9419)
150 (display-buffer-pop-up-frame, display-buffer-pop-up-window): Set
151 window's previous buffers to nil.
152
153 2011-09-03 Eli Zaretskii <eliz@gnu.org>
154
155 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
156 newline before and after the tag line, so it doesn't interfere
157 with determining the paragraph direction of bidirectional text.
158
159 2011-09-03 Leo Liu <sdl.web@gmail.com>
160
161 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
162
163 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
164
165 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Deleted.
166 (pop-to-buffer): Change interactive spec. Pass second argument
167 directly to display-buffer.
168 (display-buffer): Fix interactive spec. Use functionp to
169 distinguish between a function and a list of functions.
170
171 * abbrev.el (edit-abbrevs):
172 * arc-mode.el (archive-extract):
173 * autoinsert.el (auto-insert):
174 * bookmark.el (bookmark-bmenu-list):
175 * files.el (find-file):
176 * view.el (view-buffer):
177 * progmodes/compile.el (compilation-goto-locus):
178 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
179
180 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
181
182 * window.el (display-buffer-alist): Doc fix.
183 (display-buffer): Add docstring. Don't treat
184 display-buffer-default specially.
185 (display-buffer-reuse-selected-window)
186 (display-buffer-same-window, display-buffer-maybe-same-window)
187 (display-buffer-reuse-window, display-buffer-pop-up-frame)
188 (display-buffer-pop-up-window)
189 (display-buffer-reuse-or-pop-window)
190 (display-buffer-use-some-window): New functions.
191 (display-buffer-default-action): Use them.
192 (display-buffer-default): Deleted.
193 (pop-to-buffer-1): Fix choice of actions.
194
195 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
196
197 * minibuffer.el (completion--insert-strings): Don't get confused by
198 completion entries that end with an LF char.
199
200 2011-09-01 Eli Zaretskii <eliz@gnu.org>
201
202 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
203
204 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
205
206 * window.el (display-buffer): Restore interactive spec.
207 (display-buffer-same-window, display-buffer-other-window):
208 New functions.
209 (pop-to-buffer-1): New function. Use the above.
210 (pop-to-buffer, pop-to-buffer-same-window): Use it.
211 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
212
213 * view.el (view-buffer-other-window, view-buffer-other-frame):
214 Just use pop-to-buffer.
215
216 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
217
218 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
219
220 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
221
222 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
223
224 2011-08-31 Richard Stallman <rms@gnu.org>
225
226 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
227 of the separation of rmail-view-buffer from rmail-buffer.
228 If you say no to "replace original", the decrypt is in the
229 view buffer. If you say yes, the decrypt goes into the
230 rmail buffer also.
231
232 2011-08-31 Martin Rudalics <rudalics@gmx.at>
233
234 * window.el (display-buffer-window): Rewrite doc-string.
235 (display-buffer-record-window): New function.
236 (display-buffer-macro-specifiers)
237 (display-buffer-even-window-sizes, display-buffer-set-height)
238 (display-buffer-set-width, display-buffer-in-window)
239 (display-buffer-reuse-window, display-buffer-split-specifiers)
240 (display-buffer-side-specifiers, display-buffer-split-window-1)
241 (display-buffer-split-window, display-buffer-split-atom-window)
242 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
243 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
244 (display-buffer-other-window-means-other-frame)
245 (display-buffer-normalize-special)
246 (display-buffer-normalize-default)
247 (display-buffer-normalize-argument)
248 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
249 (display-buffer-normalize-specifiers, display-buffer-frame)
250 (display-buffer-same-window, display-buffer-same-frame)
251 (display-buffer-other-window)
252 (display-buffer-same-frame-other-window)
253 (display-buffer-other-frame, pop-to-buffer-same-window)
254 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
255 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
256 (switch-to-buffer-same-frame)
257 (switch-to-buffer-other-window-same-frame)
258 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
259 (display-buffer-alist-set-1, display-buffer-alist-set-2)
260 (display-buffer-alist-set): Remove.
261 (display-buffer-function, special-display-buffer-names)
262 (special-display-regexps, special-display-function):
263 In doc-string refer to display-buffer-window and quit-restore
264 parameter.
265 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
266 (special-display-frame-alist, special-display-popup-frame)
267 (same-window-buffer-names, same-window-regexps, same-window-p)
268 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
269 (split-window-preferred-function, split-height-threshold)
270 (split-width-threshold, window-splittable-p)
271 (split-window-sensibly, window--try-to-split-window)
272 (window--frame-usable-p, even-window-heights)
273 (window--even-window-heights, window--display-buffer-1)
274 (window--display-buffer-2, display-buffer-other-frame):
275 Restore old Emacs 23 code, order and doc-strings where applicable.
276 (display-buffer-default, display-buffer-assq-regexp): New functions.
277 (display-buffer-alist): Rewrite doc-string.
278 (display-buffer-default-action)
279 (display-buffer-overriding-action): New variables.
280 (display-buffer, switch-to-buffer): Rewrite.
281 (pop-to-buffer): Restore Emacs 23 behavior but use
282 window-normalize-buffer-to-display.
283 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
284 Restore Emacs 23 behavior but use
285 window-normalize-buffer-to-switch-to.
286 (pop-to-buffer-same-window): Rewrite.
287 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
288 Rewrite using Emacs 23 options.
289
290 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
291
292 * net/tramp.el (tramp-root-regexp): Remove.
293 (tramp-completion-file-name-regexp-unified)
294 (tramp-completion-file-name-regexp-separate)
295 (tramp-completion-file-name-regexp-url): Don't use leading volume
296 letter on win32 systems. (Bug#5303, Bug#9311)
297 (tramp-drop-volume-letter): Simplify definition.
298 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
299
300 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
301
302 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
303 (bug#9356).
304
305 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
306
307 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
308
309 2011-08-29 Juri Linkov <juri@jurta.org>
310
311 * isearch.el (isearch-done): Don't display message "Mark saved"
312 when arg `edit' is non-nil to prevent its flicker in the echo area.
313
314 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
315
316 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
317 obsolete packages for deletion.
318
319 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
320
321 * help-mode.el (help-mode-map): Add special-mode-map to parent.
322 (help-mode): Derive help-mode from special-mode. Don't invoke
323 view-mode from help-mode.
324 (help-xref-override-view-map): Remove.
325 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
326 view-mode is not used anymore.
327
328 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
329
330 * server.el (server-port): Doc fix.
331
332 * cus-theme.el (custom-theme-choose-mode): Inherit from
333 special-mode (Bug#9124).
334 (custom-theme-choose-mode-map): Add special-mode to parent.
335
336 2011-08-28 Alan Mackenzie <acm@muc.de>
337
338 * progmodes/cc-fonts.el
339 (c-make-font-lock-BO-decl-search-function): New function.
340 (c-basic-matchers-after - "Fontify the clauses after various
341 keywords"): Extract the three keyword lists for the 3 erroneous
342 constructs from the list of four, and use the new function above
343 in place of an old one.
344
345 2011-08-28 Deniz Dogan <deniz@dogan.se>
346
347 * net/rcirc.el (rcirc-insert-prev-input)
348 (rcirc-insert-next-input): Remove unused argument.
349
350 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
351
352 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
353
354 2011-08-27 Alan Mackenzie <acm@muc.de>
355
356 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
357 handle function pointer parameters properly.
358
359 2011-08-27 Martin Rudalics <rudalics@gmx.at>
360
361 * window.el (display-buffer-reuse-window): Fix case where
362 selected window was reused with non-nil OTHER-WINDOW argument.
363 (Bug#9381)
364
365 2011-08-27 Deniz Dogan <deniz@dogan.se>
366
367 * net/rcirc.el (rcirc-check-auth-status): Adding support for
368 oftc's NickServ messages.
369
370 2011-08-27 Glenn Morris <rgm@gnu.org>
371
372 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
373
374 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
375
376 * emacs-lisp/package.el (package-install): Call package-initialize
377 if called interactively.
378
379 2011-08-26 Leo Liu <sdl.web@gmail.com>
380
381 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
382
383 2011-08-25 Juri Linkov <juri@jurta.org>
384
385 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
386 `search-whitespace-regexp' (bug#9364).
387
388 2011-08-25 Juri Linkov <juri@jurta.org>
389
390 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
391 `regexp-search-ring' to their global values to protect from
392 updating by `read-from-minibuffer' (bug#9185).
393
394 2011-08-25 Juri Linkov <juri@jurta.org>
395
396 * textmodes/ispell.el (ispell-command-loop): Add newline
397 at the end of the "Use option `i'..." line.
398
399 2011-08-25 Juri Linkov <juri@jurta.org>
400
401 * battery.el (display-battery-mode): If `battery-status-function'
402 or `battery-mode-line-format' is nil, display the message and set
403 `display-battery-mode' to nil (bug#9363).
404
405 2011-08-25 Eli Zaretskii <eliz@gnu.org>
406
407 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
408 bidi-string-mark-left-to-right; they are unnecessary now.
409
410 2011-08-25 Deniz Dogan <deniz@dogan.se>
411
412 * net/quickurl.el: Documentation typo fixes.
413
414 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
415
416 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
417
418 2011-08-25 Glenn Morris <rgm@gnu.org>
419
420 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
421
422 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
423 (smtpmail-via-smtp): Handle nil response from smtp.
424
425 2011-08-24 Juri Linkov <juri@jurta.org>
426
427 * proced.el (proced-marked): Inherit from `error' instead of
428 `font-lock-warning-face'.
429
430 * ibuffer.el (ibuffer-marked-face): Change default face from
431 `font-lock-warning-face' to `warning'.
432 (ibuffer-deletion-face): Change default face from
433 `font-lock-type-face' to `error'.
434
435 * battery.el (battery-update): Use the face `error' instead of
436 `font-lock-warning-face' (bug#6117).
437
438 2011-08-24 Juri Linkov <juri@jurta.org>
439
440 * faces.el (success): Change face color from "Green3" to
441 "ForestGreen" on light background (bug#9353).
442
443 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
444
445 * window.el (quit-window): Rename from quit-restore-window.
446 Use same arglist as old quit-window.
447 (frame-auto-delete): Doc fix.
448
449 * view.el (view-mode-exit): Use quit-window.
450
451 2011-08-24 Juri Linkov <juri@jurta.org>
452
453 * isearch.el (isearch-ring-adjust1): Start visiting previous
454 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
455 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
456 for empty search string (when the last search string is reused
457 automatically) to adjust the isearch ring to the last element and
458 prepare the correct index for further M-p commands (bug#9185).
459
460 2011-08-24 Kenichi Handa <handa@m17n.org>
461
462 * international/ucs-normalize.el: If decomposition property of
463 CHAR is the default one (i.e. a list of CHAR itself), treat it as
464 nil.
465 (nfd, nfkd): Likewise.
466
467 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
468
469 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
470 from process filters aren't reliably transmitted to the surrounding
471 accept-process-output.
472 (mpc-proc-check): New function.
473 (mpc-proc-sync): Use it (bug#8293)
474
475 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
476
477 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
478 Add compatibility functions (bug#9313).
479
480 2011-08-23 Eli Zaretskii <eliz@gnu.org>
481
482 * cus-start.el (all): Add entry for bidi-paragraph-direction.
483
484 * international/uni-bidi.el: Regenerated.
485
486 2011-08-23 Kenichi Handa <handa@m17n.org>
487
488 * international/charprop.el:
489 * international/uni-bidi.el:
490 * international/uni-category.el:
491 * international/uni-combining.el:
492 * international/uni-comment.el:
493 * international/uni-decimal.el:
494 * international/uni-decomposition.el:
495 * international/uni-digit.el:
496 * international/uni-lowercase.el:
497 * international/uni-mirrored.el:
498 * international/uni-name.el:
499 * international/uni-numeric.el:
500 * international/uni-old-name.el:
501 * international/uni-titlecase.el:
502 * international/uni-uppercase.el: Regenerate.
503
504 2011-08-23 Martin Rudalics <rudalics@gmx.at>
505
506 * help.el (help-window-setup): Fix message displayed when other
507 window is reused. (Bug#9341)
508
509 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
510
511 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
512 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
513
514 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
515 Mark obsolete.
516 * shell.el (shell-parse-pcomplete-arguments): New function.
517 (shell-completion-vars): Use it instead (bug#9160).
518
519 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
520
521 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
522 strings and comments (bug#9333).
523
524 * emacs-lisp/debug.el (debug-arglist): New function.
525 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
526 (debug-on-entry-1): Handle interpreted closures (bug#9120).
527
528 2011-08-22 Juri Linkov <juri@jurta.org>
529
530 * progmodes/compile.el (compilation-mode-font-lock-keywords):
531 Revert regexp that highlights output switches to its old
532 pre-2010-10-28 value and remove one `?' from it (bug#9319).
533
534 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
535 to check for empty output (bug#9226).
536
537 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
538
539 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
540 symbol-constituent as the default, as that stops font-lock from
541 working properly (Bug#8843).
542
543 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
544
545 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
546 `coding-system-for-*' around the process open call to avoid
547 auth-source side effects.
548 (smtpmail-try-auth-methods): Expand the secret password.
549 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
550 probe hangs.
551
552 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
553
554 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
555
556 * emacs-lisp/find-func.el (find-function-noselect): New arg
557 lisp-only.
558
559 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
560 signal an error for built-in functions (Bug#6664).
561
562 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
563
564 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
565 (smtpmail-try-auth-methods): Use it.
566
567 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
568
569 * font-lock.el (font-lock-fontify-region)
570 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
571 (font-lock-default-unfontify-buffer)
572 (font-lock-default-fontify-region)
573 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
574
575 * progmodes/compile.el (compilation-error-properties):
576 Fix confusion between file struct and message struct (Bug#9319).
577 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
578 `ant' regexp.
579
580 * net/browse-url.el (browse-url-firefox): Don't call
581 browse-url-firefox-sentinel unless using -remote (Bug#9328).
582
583 2011-08-20 Glenn Morris <rgm@gnu.org>
584
585 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
586
587 * tutorial.el (tutorial--default-keys): Update some default bindings.
588
589 * files.el (hack-local-variables): Fully ignore case for "mode:".
590
591 2011-08-20 Alan Mackenzie <acm@muc.de>
592
593 Resolve invalid use of a regexp in regexp-opt.
594
595 * cc-fonts.el (c-complex-decl-matchers): Add in special detection
596 for a java annotation.
597
598 * cc-engine.el (c-forward-decl-or-cast-1): Add in special
599 detection for a java annotation.
600
601 * cc-langs.el (c-prefix-spec-kwds-re): Remove the special handling
602 for java.
603 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
604
605 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
606
607 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
608 (Bug#9274).
609
610 2011-08-20 Alan Mackenzie <acm@muc.de>
611
612 * Fontify CPP expressions correctly when starting in the middle of
613 such a construct. Mainly for when jit-lock etc. starts a chunk
614 here.
615
616 * progmodes/cc-fonts.el (c-font-lock-context): new buffer local
617 variable.
618 (c-make-font-lock-search-form): new function, extracted from
619 c-make-font-lock-search-function.
620 (c-make-font-lock-search-function): Use the above function.
621 (c-make-font-lock-context-search-function): New function.
622 (c-cpp-matchers): Enhance the preprocessor expression case with
623 the above function
624 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
625 which takes an expression.
626
627 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
628
629 2011-08-20 Martin Rudalics <rudalics@gmx.at>
630
631 * window.el (display-buffer-reuse-window)
632 (display-buffer-pop-up-window): Don't reuse or split a side
633 window.
634
635 2011-08-19 Glenn Morris <rgm@gnu.org>
636
637 * files.el (hack-local-variables-prop-line, hack-local-variables):
638 Downcase "Mode:". (Bug#9331)
639
640 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
641
642 * international/characters.el: Add L and R categories.
643
644 * subr.el (bidi-string-mark-left-to-right): Rename from
645 string-mark-left-to-right. Use category search.
646
647 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
648
649 2011-08-18 Juri Linkov <juri@jurta.org>
650
651 * faces.el (error, warning, success): New faces with definitions
652 copied from old default values of `font-lock-warning-face',
653 `compilation-warning', `compilation-info' (bug#6117).
654
655 * font-lock.el (font-lock-warning-face): Inherit from `error'.
656
657 * progmodes/compile.el (compilation-error): Inherit from `error'.
658 (compilation-warning): Inherit from `warning'.
659 (compilation-info): Inherit from `success'.
660
661 * dired.el (dired-marked): Inherit from `warning'.
662 (dired-flagged): Inherit from `error'.
663
664 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
665
666 * mail/smtpmail.el (auth-source): Require to avoid problems with
667 binding variables (bug#9298). Also clean up some unused
668 autoloads.
669
670 * net/network-stream.el (network-stream-open-starttls):
671 Support using starttls.el without using gnutls-cli.
672
673 2011-08-17 Juri Linkov <juri@jurta.org>
674
675 * progmodes/grep.el (rgrep): Handle the case when
676 `grep-find-command' is a cons cell (bug#9278).
677
678 2011-08-17 Martin Rudalics <rudalics@gmx.at>
679
680 * window.el (display-buffer-pop-up-frame): Run frame creation
681 function with BUFFER current (as special-display-popup-frame
682 does). Reported by Drew Adams.
683
684 2011-08-17 Daiki Ueno <ueno@unixuser.org>
685
686 * epa-mail.el: Simplify GnuPG group expansion using
687 epg-expand-group.
688 (epa-mail-group-alist, epa-mail-group-modtime)
689 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
690 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
691 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
692 Remove.
693
694 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
695
696 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
697
698 2011-08-16 Alan Mackenzie <acm@muc.de>
699
700 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
701 Correct, to avoid the inside of macros.
702
703 2011-08-16 Richard Stallman <rms@gnu.org>
704
705 * epa-mail.el: Handle GnuPG group definitions.
706 (epa-mail-group-alist, epa-mail-group-modtime)
707 (epa-mail-gnupg-conf-file): New variables.
708 (epa-mail-parse-groups, epa-mail-sync-groups)
709 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
710 (epa-mail-expand-recipients): New functions.
711 (epa-mail-encrypt): Call epa-mail-expand-recipients.
712
713 * mail/rmail.el (rmail-epa-decrypt): New command.
714
715 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
716 Don't bind buffer-read-only, just inhibit-read-only.
717 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
718 (epa-decrypt-armor-in-region): Make error message clearer.
719
720 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
721
722 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
723 and "a2b" to "ab" for `prefix'.
724
725 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
726
727 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
728 filter groups.
729 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
730 Fourquet (Bug#8804).
731
732 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
733
734 * startup.el (argi): Declare as global variable (bug#9275).
735
736 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
737
738 * subr.el (string-mark-left-to-right): Search the entire string
739 for RTL script, not just the terminating character. Doc fix.
740
741 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
742
743 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
744 New function.
745 (js--regexp-literal, js-syntax-propertize-function): Remove.
746 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
747 (js-mode-map): Don't rebind electric keys.
748 (js-insert-and-indent): Remove.
749 (js-mode): Setup electric-layout and electric-indent instead.
750
751 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
752
753 2011-08-12 Daiki Ueno <ueno@unixuser.org>
754
755 * epa.el (epa-progress-callback-function): Fix the logic of
756 displaying progress.
757 * epa-file.el (epa-file-insert-file-contents): Make progress
758 display more user-friendly.
759 (epa-file-write-region): Ditto.
760
761 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
762
763 * subr.el (string-mark-left-to-right): New function.
764
765 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
766 Use string-mark-left-to-right.
767 (list-buffers-noselect): Caller changed.
768
769 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
770 Use string-mark-left-to-right.
771 (tabulated-list-print): Recenter after moving point.
772
773 2011-08-10 Juri Linkov <juri@jurta.org>
774
775 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
776 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
777 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
778
779 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
780
781 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
782 (Bug#7554).
783
784 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
785
786 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
787 character. (Bug#6594)
788
789 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
790
791 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
792 (image-dired--with-db-file): New macro.
793 (image-dired-write-tags, image-dired-remove-tag)
794 (image-dired-create-gallery-lists, image-dired-write-comments)
795 (image-dired-get-comment, image-dired-mark-tagged-files)
796 (image-dired-list-tags, image-dired-gallery-generate): Use it.
797 (image-dired-gallery-generate): Use insert-file-contents.
798
799 * time.el (display-time-world-list, display-time-world-display):
800 * time-stamp.el (time-stamp-string):
801 * vc/add-log.el (add-change-log-entry): Use setenv instead of
802 set-time-zone-rule (Bug#7337).
803
804 2011-08-08 Daiki Ueno <ueno@unixuser.org>
805
806 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
807 (epg-error-to-string, epg-errors-to-string): New function.
808 (epg-wait-for-completion): Reverse errors list.
809 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
810 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
811 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
812 (epg-sign-keys, epg-generate-key-from-file)
813 (epg-generate-key-from-string): Format errors by using
814 epg-errors-to-string (bug#9255).
815 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
816
817 2011-08-07 Juri Linkov <juri@jurta.org>
818
819 * faces.el (list-faces-display): Remove extra angle bracket
820 from `help-mode-map'.
821
822 * info.el (Info-history-toc-nodes): Doc fix.
823
824 * longlines.el (longlines-mode): Doc fix.
825
826 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
827
828 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
829 of statements and in a few more cases (bug#9183).
830
831 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
832 New functions.
833 (cl-transform-lambda): Use them (bug#9239).
834
835 2011-08-05 Martin Rudalics <rudalics@gmx.at>
836
837 * window.el (display-buffer-same-window)
838 (display-buffer-same-frame, display-buffer-other-window)
839 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
840 (pop-to-buffer-other-window)
841 (pop-to-buffer-same-frame-other-window)
842 (pop-to-buffer-other-frame): Make them defuns.
843 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
844
845 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
846
847 * subr.el (make-composed-keymap): Move from C. Change calling
848 convention, and improve docstring to bring attention to a subtle point.
849 * minibuffer.el (completing-read-default): Adjust accordingly.
850
851 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
852
853 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
854 (tramp-open-shell): Use `tramp-shell-quote-argument'.
855
856 * net/trampver.el: Update release number.
857
858 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
859
860 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
861 "in" (bug#9190).
862
863 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
864
865 * mail/sendmail.el (sendmail-query-once): Restore the current
866 buffer after querying (bug#9074).
867
868 * dired.el (dired-flagged): Use different faces for marked and
869 flagged files (bug#6117).
870
871 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
872 (bug#4433).
873
874 * ido.el (ido-mode): Switch off the message if called
875 non-interactively.
876
877 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
878 before 587, since it appears that that's more likely to work for
879 more people.
880
881 * cus-edit.el (custom-file): When running under emacs -q, always
882 refuse to save the customisations, even if the .emacs file doesn't
883 exist.
884
885 * info.el: Remove the `Info-beginning-of-buffer' function
886 (bug#8325).
887
888 * net/network-stream.el (network-stream-open-starttls):
889 Use `starttls-available-p' to see whether starttls.el can be used.
890
891 2011-08-01 Martin Rudalics <rudalics@gmx.at>
892
893 * window.el (display-buffer-in-window): Don't set dedicated status
894 of window here (Bug#9215).
895 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
896 (display-buffer-pop-up-side-window)
897 (display-buffer-in-side-window): Set dedicated status of window here.
898
899 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
900
901 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
902 before binding generated-autoload-file.
903
904 2011-08-01 Deniz Dogan <deniz@dogan.se>
905
906 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
907
908 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
909
910 Sync with Tramp 2.2.2.
911
912 * net/trampver.el: Update release number.
913
914 2011-07-30 Juri Linkov <juri@jurta.org>
915
916 * dired-aux.el (dired-touch-initial): Remove function.
917 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
918 current time, and `default' to the last modification time of the
919 current marked file (bug#6887).
920
921 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
922
923 * simple.el (goto-line): Use string-to-number to provide a
924 numeric argument to read-number (bug#9163).
925
926 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
927
928 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
929 connection process, it could be nil.
930
931 2011-07-27 Leo Liu <sdl.web@gmail.com>
932
933 Simplify url handling in rcirc-mode.
934
935 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
936 (rcirc-browse-url-at-mouse): Remove.
937 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
938
939 2011-07-26 Alan Mackenzie <acm@muc.de>
940
941 Fontify bitfield declarations properly.
942
943 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
944 (c-symbol-chars): Now exported as a lang variable.
945 (c-not-primitive-type-keywords): New lang variable.
946
947 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
948 QT keyword "more" to prevent "more slots: ...." being spuriously
949 parsed as a bitfield declaraion.
950
951 * progmodes/cc-engine.el (c-beginning-of-statement-1):
952 Refactor and enhance to handle bitfield declarations.
953 (c-punctuation-in): New function.
954 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
955 declarations properly.
956
957 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
958
959 * calendar/icalendar.el (icalendar--all-events): Take care of
960 multiple vcalendars in a single file.
961 (icalendar--convert-float-to-ical): Checkdoc fixes.
962
963 2011-07-25 Deniz Dogan <deniz@dogan.se>
964
965 * image.el (insert-image): Clarifying docstring.
966
967 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
968
969 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
970 `tramp-send-command-and-check' if there is no error.
971 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
972
973 2011-07-22 Alan Mackenzie <acm@muc.de>
974
975 Prevent cc-langs.elc being loaded at run time.
976
977 * progmodes/cc-mode.el: Remove two autoload forms which loaded
978 cc-langs.
979
980 * /progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
981 "(require 'cc-langs)". Quote a form so it will evaluate at
982 (cc-mode's) compilation time.
983
984 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
985
986 * net/tramp.el (tramp-file-name-handler): Avoid recursive
987 loading. (Bug#9114)
988
989 2011-07-21 Martin Rudalics <rudalics@gmx.at>
990
991 * window.el (display-buffer-pop-up-window)
992 (display-buffer-pop-up-side-window)
993 (display-buffer-in-side-window): Call display-buffer-set-height
994 and display-buffer-set-width after setting the new window's
995 buffer so `fit-window-to-buffer' and friends work on the right buffer.
996
997 2011-07-20 Sam Steingold <sds@gnu.org>
998
999 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
1000 (etags-tags-included-tables): Call `convert-standard-filename' on
1001 the file names contained in TAGS so that windows Emacs can handle
1002 TAGS files created by cygwin ctags.
1003
1004 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
1005
1006 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
1007 which apparently didn't work.
1008
1009 2011-07-19 Roland Winkler <winkler@gnu.org>
1010
1011 * proced.el (proced-send-signal): For *Marked Processes* buffer
1012 put point at beginning of buffer.
1013
1014 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
1015
1016 * proced.el (proced-format): Make header lines align with the text
1017 (bug#1779).
1018
1019 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
1020
1021 * view.el (view-buffer): Allow running in `special' modes if we're
1022 visiting a file (bug#8615).
1023
1024 2011-07-19 Martin Rudalics <rudalics@gmx.at>
1025
1026 * window.el (display-buffer-alist-of-strings-p)
1027 (display-buffer-alist-set-1, display-buffer-alist-set-2):
1028 New functions.
1029 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
1030 more accurately.
1031
1032 2011-07-18 Alan Mackenzie <acm@muc.de>
1033
1034 Fontify declarators properly when, e.g., a jit-lock chunk begins
1035 inside a declaration.
1036
1037 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
1038
1039 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
1040 New function.
1041 (c-complex-decl-matchers): Insert reference to
1042 c-font-lock-enclosing-decls.
1043
1044 * progmodes/cc-engine.el (c-backward-single-comment):
1045 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
1046 to nil around calls to (forward-comment -1).
1047
1048 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
1049
1050 * image.el (put-image): Doc typo fix.
1051
1052 * progmodes/etags.el (tags-search): Doc typo fix.
1053
1054 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
1055 password if we get errors 550 to 554.
1056
1057 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
1058
1059 * net/gnutls.el (gnutls-log-level): Remove.
1060
1061 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
1062 indentation character (bug#6380).
1063
1064 * files.el (buffer-offer-save): Made permanently local (bug#6241).
1065
1066 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
1067 to clarify what the problem is (bug#4291).
1068
1069 * simple.el (current-kill): Clarify what
1070 `interprogram-paste-function' does (bug#7500).
1071 (auto-fill-mode): Document `auto-fill-function' in relation to
1072 `auto-fill-mode' (bug#2470).
1073
1074 2011-07-16 Lawrence Mitchell <wence@gmx.li>
1075
1076 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
1077 method if slot is read-only (bug#9035).
1078
1079 2011-07-16 Martin Rudalics <rudalics@gmx.at>
1080
1081 * frame.el (select-frame-set-input-focus): New argument NORECORD.
1082 * window.el (pop-to-buffer): Select window used even if it was
1083 selected before, see discussion of (Bug#8615), (Bug#6954).
1084 Pass argument NORECORD on to select-frame-set-input-focus.
1085
1086 2011-07-15 Glenn Morris <rgm@gnu.org>
1087
1088 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
1089 Respect help-form.
1090
1091 2011-07-09 Lawrence Mitchell <wence@gmx.li>
1092
1093 * net/gnutls.el (gnutls-min-prime-bits): New variable.
1094 (gnutls-negotiate): Use it.
1095
1096 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
1097
1098 * net/gnutls.el (gnutls-negotiate):
1099 Upcase `gnutls-algorithm-priority'.
1100
1101 2011-07-15 Glenn Morris <rgm@gnu.org>
1102
1103 * jka-compr.el (jka-compr-verbose): Move from here...
1104 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
1105 Add missing :version tag.
1106 * info.el: No need to require jka-compr when compiling.
1107
1108 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
1109
1110 * net/gnutls.el (gnutls-algorithm-priority): New variable.
1111 (gnutls-negotiate): Use it.
1112
1113 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
1114
1115 * info.el (Info-beginning-of-buffer): New command.
1116 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
1117 announcing `b' as the key (bug#8325).
1118 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
1119
1120 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
1121
1122 * international/mule-cmds.el
1123 (describe-specified-language-support): Make the error message
1124 clearer (bug#8905).
1125
1126 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
1127
1128 * isearch.el (isearch-barrier): Add a doc string, since it's
1129 mentioned in a function doc string (bug#8678).
1130
1131 2011-07-15 Martin Rudalics <rudalics@gmx.at>
1132
1133 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
1134 buffer argument (Bug#9083) and self-identifying label argument.
1135
1136 2011-07-15 Glenn Morris <rgm@gnu.org>
1137
1138 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
1139
1140 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
1141
1142 * man.el (Man-fontify-manpage): Fix message when formatting the
1143 man page (bug#7929).
1144
1145 2011-07-14 Eli Zaretskii <eliz@gnu.org>
1146
1147 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
1148 argument LRM; if non-nil, append an invisible LRM character to the
1149 buffer name.
1150 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
1151 last argument non-nil, when formatting buffer names.
1152 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
1153 paragraph direction.
1154
1155 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
1156
1157 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
1158 the man page name (bug#7929).
1159
1160 * image.el (put-image): Mention the `put-image' overlay property
1161 (bug#7834).
1162
1163 * scroll-bar.el (set-scroll-bar-mode): Mention that
1164 `scroll-bar-mode' lists the values (bug#7772).
1165
1166 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
1167 command (bug#7729).
1168
1169 * rect.el (apply-on-rectangle): Return the point after the last
1170 operation.
1171 (string-rectangle): Go to the point after the last operation
1172 (bug#7522).
1173
1174 * printing.el (pr-toggle-region): Clarify the documentation
1175 slightly (bug#7493).
1176
1177 * time.el (display-time-update):
1178 Allow `display-time-mail-function' to return nil (bug#7158).
1179 Fix suggested by Detlev Zundel.
1180
1181 * vc/diff.el (diff): Clarify the order the file names are read
1182 (bug#7111).
1183
1184 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
1185 the doc string (bug#7015).
1186
1187 * font-lock.el (font-lock-maximum-decoration): Mention what
1188 numeric levels mean (bug#6935).
1189
1190 * startup.el (initial-buffer-choice): Don't mention the `none'
1191 selection, which is against policy.
1192
1193 2011-07-14 Martin Rudalics <rudalics@gmx.at>
1194
1195 * window.el (display-buffer-normalize-special):
1196 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
1197
1198 2011-07-14 Eli Zaretskii <eliz@gnu.org>
1199
1200 * subr.el (version<, version<=, version=): Mention "-CVS" and
1201 "-12345" alpha version numbers.
1202
1203 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
1204
1205 * bindings.el: Add advertised binding for set-mark-command
1206 (Bug#5772).
1207
1208 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
1209
1210 * bindings.el (mode-line-other-buffer):
1211 * bookmark.el (bookmark-bmenu-2-window):
1212 * bs.el (bs-cycle-next, bs-cycle-previous):
1213 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
1214 switch-to-buffer.
1215
1216 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
1217 Delete.
1218
1219 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
1220
1221 * follow.el (follow-debug-message, follow-redisplay):
1222 * jka-cmpr-hook.el (with-auto-compression-mode):
1223 Fix typos in docstrings.
1224
1225 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
1226
1227 * subr.el (with-silent-modifications): Clarify somewhat what the
1228 macro inhibits (bug#6525).
1229
1230 * simple.el (eval-expression): Note what it does if called
1231 interactively (bug#6495).
1232
1233 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
1234
1235 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
1236 Use pop-to-buffer buffer-or-name if it is nil.
1237
1238 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
1239 Remove switch-to-buffer.
1240
1241 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
1242
1243 * files.el (make-directory): Clarify that an error will be raised
1244 if there's an error (bug#6397).
1245
1246 * startup.el (initial-buffer-choice): Add `none' as a choice
1247 (bug#6234).
1248
1249 * subr.el (add-hook): Clarify section about buffer-local hooks
1250 (bug#6218).
1251
1252 * dired.el (dired-flagged): Clarify doc string (bug#6117).
1253
1254 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
1255
1256 * tabify.el (untabify): Preserve the current column so that point
1257 doesn't move (bug#6032).
1258
1259 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
1260
1261 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
1262 Rewrite to avoid awkward possessive "s" (bug#5986).
1263
1264 2011-07-13 Glenn Morris <rgm@gnu.org>
1265
1266 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
1267 (dired-insert-directory): Give a message the first time
1268 if ls is found not to support --dired.
1269
1270 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
1271
1272 * simple.el (toggle-truncate-lines): Clarify what is toggled
1273 (bug#5580). Text by Drew Adams.
1274
1275 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
1276
1277 * simple.el (blink-matching-open): Make the error message from the
1278 last change less verbose.
1279
1280 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
1281
1282 * font-lock.el (font-lock-comment-face): Use the high contrast
1283 "yellow" color for font-lock-comment-face on low color terminals
1284 using a dark background color (bug#4221).
1285
1286 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
1287
1288 * dired.el (dired-insert-set-properties): Make the doc string
1289 reflect what it does now (bug#5325).
1290
1291 * simple.el (blink-matching-open): Say that we were unable to find
1292 the match within the limit, if we're limited (bug#5122).
1293
1294 * international/mule-cmds.el (prefer-coding-system): Add an
1295 example (bug#4869).
1296
1297 * progmodes/etags.el (tags-search): Document `file-list-form'
1298 (bug#4731).
1299
1300 2011-07-13 Lawrence Mitchell <wence@gmx.li>
1301
1302 * net/browse-url.el (browse-url-default-browser)
1303 (browse-url-browser-function): Make the default browser choice a
1304 bit more logical (bug#4300). Also clean up the doc string.
1305
1306 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
1307
1308 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
1309 binary endings (bug#4440).
1310
1311 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
1312
1313 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
1314 which can be pretty annoying (bug#8971).
1315
1316 * jka-compr.el (jka-compr-verbose): New variable, and use
1317 throughout (bug#8971).
1318
1319 * info.el (Info-find-file): Fall back on the installation
1320 directory if we can't find the info node anywhere else.
1321
1322 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
1323
1324 * vc/vc.el (vc-revert-file):
1325 Don't set file time-stamp in the past. (Bug#5181)
1326
1327 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
1328
1329 * files.el (after-find-file): Give a better error message when
1330 trying to find a symlink that points to a file that doesn't exist
1331 (bug#4398).
1332
1333 * progmodes/cc-vars.el: Remove (probably) misleading comment
1334 (bug#4396).
1335
1336 2011-07-12 Johan Bockgård <bojohan@gnu.org>
1337
1338 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
1339
1340 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
1341
1342 * mouse-sel.el: Hack restoring functionality, while keeping
1343 compatibility with 2010-07-03 changes to mouse selection.
1344 (mouse-sel-primary-overlay): New var.
1345 (mouse-sel-selection-alist): Use it.
1346 (mouse-sel-mode): Doc fix; remove points that are default features
1347 of mouse.el.
1348
1349 2011-07-12 Johan Bockgård <bojohan@gnu.org>
1350
1351 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1352 Fix previous fix (bug#2490).
1353
1354 2011-07-12 Roland Winkler <winkler@gnu.org>
1355
1356 * textmodes/bibtex.el (bibtex-initialize):
1357 Use pop-to-buffer-same-window.
1358 (bibtex-search-entries): Fix interactive call.
1359
1360 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
1361
1362 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1363 Fontise bytecomp Error lines more correctly (bug#2490).
1364 Fix suggested by Johan Bockgård.
1365
1366 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
1367
1368 * dired-x.el (dired-guess-default): Use `delete-dups'.
1369
1370 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
1371
1372 * dired.el (dired-mark-prompt):
1373 * dired-aux.el (dired-read-shell-command): Doc fix.
1374
1375 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
1376
1377 * mail/sendmail.el (sendmail-query-once):
1378 Use `customize-save-variable' unconditionally, now that it works under
1379 emacs -Q.
1380
1381 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
1382
1383 * cus-edit.el (custom-file): Take an optional no-error variable.
1384 (customize-save-variable): Set the variable, and give a warning if
1385 running under "emacs -q".
1386
1387 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
1388
1389 * loadhist.el (unload-feature-special-hooks):
1390 Add `auto-coding-functions', `fill-nobreak-predicate' and
1391 `find-directory-functions' (bug#5327).
1392
1393 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
1394
1395 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
1396
1397 * cus-edit.el (custom-guess-name-alist): -alist variables should
1398 use the `alist' type (bug#3120). Suggested by Drew Adams.
1399
1400 * printing.el: Add documentation to all the `pr-toggle-' commands.
1401
1402 2011-07-11 Leo <sdl.web@gmail.com> (tiny change)
1403
1404 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
1405 backends where it makes sense (bug#2623).
1406
1407 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
1408
1409 * dired-x.el (dired-guess-default): Remove duplicate shell command
1410 entries (bug#2028).
1411 (dired-guess-default): Fix grammar in doc string (bug#2028).
1412 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
1413
1414 * subr.el (remove-duplicates): New conveniency function.
1415
1416 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
1417
1418 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
1419 (bug#1526).
1420
1421 2011-07-10 Martin Rudalics <rudalics@gmx.at>
1422
1423 * window.el (display-buffer-normalize-default): Don't invert
1424 meaning of even-window-heights. Reported by Eli Zaretskii
1425 <eliz@gnu.org>.
1426
1427 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
1428
1429 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
1430
1431 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
1432
1433 * window.el (display-buffer): Fix arguments to
1434 display-buffer-reuse-window in last change.
1435
1436 * faces.el (link): Use a less saturated blue on light backgrounds.
1437
1438 * startup.el (fancy-startup-text, fancy-about-text)
1439 (fancy-startup-tail): Use font-lock faces, for background safety.
1440
1441 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
1442
1443 * emulation/viper-cmd.el (viper-change-state-to-vi):
1444 Limit triggering of abbrev expansion (Bug#9038).
1445
1446 2011-07-09 Martin Rudalics <rudalics@gmx.at>
1447
1448 * window.el (display-buffer-default-specifiers): Remove.
1449 (display-buffer-macro-specifiers): Remove default specifiers.
1450 (display-buffer-alist): Default to nil.
1451 (display-buffer-reuse-window): New optional argument other-window.
1452 (display-buffer-pop-up-window): Allow splitting internal
1453 windows. Check whether a live window was created.
1454 (display-buffer-other-window-means-other-frame)
1455 (display-buffer-normalize-arguments): Rename to
1456 display-buffer-normalize-argument and rewrite. Set the
1457 other-window specifier.
1458 (display-buffer-normalize-special): New function.
1459 (display-buffer-normalize-options): Rename to
1460 display-buffer-normalize-default and rewrite.
1461 (display-buffer-normalize-options-inhibit): Remove.
1462 (display-buffer-normalize-specifiers): Rewrite.
1463 (display-buffer): Process other-window specifier and call
1464 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
1465 more faithfully.
1466 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
1467 (display-buffer-alist-set): Don't handle 'unset default values.
1468 (display-buffer-in-window, display-buffer-alist-set):
1469 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
1470 <tassilo@member.fsf.org>.
1471
1472 2011-07-09 Leo Liu <sdl.web@gmail.com>
1473
1474 * register.el (insert-register): Restore accidental change on
1475 2011-06-26. (Bug#9028)
1476
1477 2011-07-09 Glenn Morris <rgm@gnu.org>
1478
1479 * subr.el (remq): Handle the empty list. (Bug#9024)
1480
1481 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
1482
1483 * mail/sendmail.el (send-mail-function): No longer delay custom
1484 initialization.
1485 * custom.el (custom-initialize-delay): Doc fix.
1486
1487 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
1488
1489 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
1490
1491 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
1492
1493 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
1494 human-friendly prompt.
1495
1496 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
1497
1498 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
1499 provided by a particular plugin.
1500
1501 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
1502
1503 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
1504 save customizations (with "emacs -Q"), just set the variable
1505 instead of erroring out.
1506
1507 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
1508
1509 2011-07-08 Juri Linkov <juri@jurta.org>
1510
1511 * arc-mode.el (archive-zip-expunge, archive-zip-update)
1512 (archive-zip-update-case): Use 7z if found by `executable-find'.
1513 The order of searching the available programs is the same as in
1514 `archive-zip-extract' (bug#8968).
1515
1516 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
1517
1518 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
1519 (menu-bar-options-menu): Tweak descriptions.
1520
1521 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
1522
1523 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
1524 menu items into verb phrases (bug#1421). Also refill to fit under
1525 80 columns.
1526
1527 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
1528
1529 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
1530 (Info-read-node-name): Doc fix (Bug#1084).
1531
1532 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
1533 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
1534 (end-of-sexp, beginning-of-sexp)
1535 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
1536 (forward-symbol, forward-same-syntax, word-at-point)
1537 (sentence-at-point): Doc fix (Bug#1144).
1538
1539 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
1540
1541 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
1542 should cover it (bug#1281).
1543
1544 * cus-edit.el (custom-show): Mark as obsolete.
1545
1546 * net/network-stream.el (network-stream-open-starttls): If gnutls
1547 negotiation fails, then possibly try again with a non-encrypted
1548 connection (bug#9017).
1549
1550 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
1551 be used.
1552
1553 2011-07-07 Richard Stallman <rms@gnu.org>
1554
1555 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
1556 property, and handle its changed format.
1557 Look for the correct line number.
1558 Use file's line contents (but not past first =) to find
1559 correct line in message.
1560
1561 2011-07-07 Kenichi Handa <handa@m17n.org>
1562
1563 * international/characters.el (build-unicode-category-table):
1564 Delete it.
1565 (unicode-category-table): Set it by unicode-property-table-internal.
1566
1567 * international/mule-cmds.el (char-code-property-alist): Move to
1568 to src/chartab.c.
1569 (get-char-code-property): Call unicode-property-table-internal to
1570 load a file. Call get-unicode-property-internal where necessary.
1571 (put-char-code-property): Call unicode-property-table-internal to
1572 load a file. Call put-unicode-property-internal where necessary.
1573 put-unicode-property-internal where necessary.
1574 (char-code-property-description):
1575 Call unicode-property-table-internal to load a file.
1576
1577 * international/charprop.el:
1578 * international/uni-bidi.el:
1579 * international/uni-category.el:
1580 * international/uni-combining.el:
1581 * international/uni-comment.el:
1582 * international/uni-decimal.el:
1583 * international/uni-decomposition.el:
1584 * international/uni-digit.el:
1585 * international/uni-lowercase.el:
1586 * international/uni-mirrored.el:
1587 * international/uni-name.el:
1588 * international/uni-numeric.el:
1589 * international/uni-old-name.el:
1590 * international/uni-titlecase.el:
1591 * international/uni-uppercase.el: Regenerate.
1592
1593 * loadup.el: Load international/charprop.el before
1594 international/characters.
1595
1596 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
1597
1598 * window.el (next-buffer, previous-buffer): Signal an error if
1599 called from a minibuffer window.
1600
1601 * bindings.el: Revert 2011-07-04 change.
1602
1603 2011-07-06 Richard Stallman <rms@gnu.org>
1604
1605 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
1606 (rmail-mime-insert-bulk, rmail-mime-insert-text):
1607 Treat markers like ints.
1608 (rmail-mime-entity): Doc fix.
1609
1610 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
1611
1612 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
1613 defcustom again for backwards compatibility.
1614
1615 * simple.el (shell-command-on-region): Fill.
1616
1617 * dired-aux.el (dired-kill-line): Add a doc string.
1618
1619 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
1620 to "\\sw\\|\\s_" (bug#358).
1621
1622 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
1623 (dired-unmark-backward): Ditto.
1624 (dired-flag-backup-files): Ditto.
1625
1626 * dired-x.el (dired-mark-sexp): Ditto.
1627
1628 2011-07-06 Richard Stallman <rms@gnu.org>
1629
1630 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
1631 (rmail-mime-entity): New arg TRUNCATED.
1632 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
1633 New functions.
1634 (rmail-mime-save): Warn if entity is truncated.
1635 (rmail-mime-toggle-hidden): Likewise, for showing.
1636 (rmail-mime-process-multipart): Record when an entity is truncated.
1637
1638 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
1639 if ENTITY is a string.
1640
1641 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
1642
1643 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
1644 of faces when `M-C-x'-ing their definitions (bug#8378).
1645 Also clean up the code slightly.
1646
1647 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
1648 because that makes the colours go away.
1649
1650 * mail/sendmail.el (send-mail-function): Change the default to
1651 `sendmail-query-once'.
1652 (sendmail-query-once): Add an autoload cookie.
1653
1654 * net/network-stream.el (network-stream-open-starttls): Try using
1655 a plain connection even if the server offered STARTTLS, and we
1656 kinda wanted to use it, if Emacs doesn't have any STARTTLS
1657 capability. This should make smtpmail.el work in slightly more
1658 configurations.
1659
1660 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
1661
1662 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
1663 New defun.
1664 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
1665
1666 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
1667
1668 * progmodes/sql.el: Version 3.0
1669 (sql-product-alist): Add product :completion-object,
1670 :completion-column, and :statement attributes.
1671 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
1672 (sql-mode-syntax-table): Mark all punctuation.
1673 (sql-font-lock-keywords-builder): Temporarily remove fallback on
1674 ansi keywords.
1675 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
1676 (sql-mode-oracle-font-lock-keywords): Improve.
1677 (sql-oracle-show-reserved-words): New function for development.
1678 (sql-product-font-lock): Simplify for source code buffers.
1679 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
1680 New functions.
1681 (sql-highlight-product): Set product specific syntax table.
1682 (sql-mode-map): Add statement movement functions.
1683 (sql-ansi-statement-starters, sql-oracle-statement-starters):
1684 New variable.
1685 (sql-statement-regexp, sql-beginning-of-statement)
1686 (sql-end-of-statement, sql-signum): New functions.
1687 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
1688 (sql-show-sqli-buffer): Bug fix.
1689 (sql-interactive-mode): Store connection data as buffer local.
1690 (sql-connect): Add NEW-NAME parameter. Redesign interaction
1691 with sql-interactive-mode.
1692 (sql-save-connection): Save buffer local settings.
1693 (sql-connection-menu-filter): Change menu entry name.
1694 (sql-product-interactive): Bug fix.
1695 (sql-preoutput-hold): New variable.
1696 (sql-interactive-remove-continuation-prompt): Bug fixes.
1697 (sql-debug-redirect): New variable.
1698 (sql-str-literal): New function.
1699 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
1700 Redesign.
1701 (sql-oracle-save-settings, sql-oracle-restore-settings)
1702 (sql-oracle-list-all, sql-oracle-list-table): New functions.
1703 (sql-completion-object, sql-completion-column)
1704 (sql-completion-sqlbuf): New variables.
1705 (sql-build-completions-1, sql-build-completions)
1706 (sql-try-completion): New functions.
1707 (sql-read-table-name): Use them.
1708 (sql-contains-names): New buffer local variable.
1709 (sql-list-all, sql-list-table): Use it.
1710 (sql-oracle-completion-types): New variable.
1711 (sql-oracle-completion-object, sql-sqlite-completion-object)
1712 (sql-postgres-completion-object): New functions.
1713
1714 2011-07-06 Glenn Morris <rgm@gnu.org>
1715
1716 * window.el (pop-to-buffer): Doc fix.
1717
1718 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
1719
1720 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
1721
1722 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
1723
1724 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
1725
1726 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
1727
1728 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
1729
1730 * button.el (button): Inherit from link face. Suggested by Dan
1731 Nicolaescu.
1732
1733 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
1734
1735 * progmodes/gdb-mi.el: Fit in 80 columns.
1736 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
1737 switch-to-buffer.
1738
1739 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
1740 if imenu is simply not configured (bug#8941).
1741
1742 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
1743
1744 * allout.el (allout-post-undo-hook): New allout outline-change
1745 event hook to signal undo activity.
1746 (allout-post-command-business): Run allout-post-undo-hook if an
1747 undo just occurred.
1748 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
1749 * allout-widgets.el (allout-widgets-after-undo-function):
1750 Ensure the integrity of the current item's decoration after it has been
1751 in the vicinity of an undo.
1752 (allout-widgets-mode): Include allout-widgets-after-undo-function
1753 on the new allout-post-undo-hook.
1754
1755 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
1756
1757 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
1758 Let define-derived-mode define it.
1759 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
1760 cycles of abbrev-table inheritance (bug#8998).
1761
1762 2011-07-05 Roland Winkler <winkler@gnu.org>
1763
1764 * textmodes/bibtex.el: Add support for biblatex.
1765 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
1766 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
1767 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
1768 (bibtex-entry-alist, bibtex-field-alist): New variables.
1769 (bibtex-entry-field-alist): Obsolete alias for
1770 bibtex-BibTeX-entry-alist.
1771 (bibtex-entry-alist, bibtex-field-alist): New widgets.
1772 (bibtex-set-dialect): New command.
1773 (bibtex-entry-type, bibtex-entry-head)
1774 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
1775 Bind via bibtex-set-dialect.
1776 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
1777 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
1778 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
1779 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
1780 Define via bibtex-set-dialect.
1781 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
1782 Obey bibtex-no-opt-remove-re.
1783 (bibtex-vec-push, bibtex-vec-incr): New functions.
1784 (bibtex-format-entry, bibtex-field-list)
1785 (bibtex-print-help-message, bibtex-validate)
1786 (bibtex-search-entries): Use new format of bibtex-entry-alist.
1787
1788 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
1789
1790 * progmodes/compile.el (compilation-goto-locus):
1791 * net/tramp-cmds.el (tramp-append-tramp-buffers):
1792 * bs.el (bs-cycle-next, bs-cycle-previous):
1793 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
1794 * bindings.el (mode-line-other-buffer):
1795 * autoinsert.el (auto-insert):
1796 * arc-mode.el (archive-extract):
1797 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
1798
1799 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
1800
1801 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
1802 Fix check of `emacs-lock-unlockable-modes'.
1803 Coerce true values of `emacs-lock--try-unlocking' to t.
1804
1805 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
1806
1807 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
1808 * emacs-lock.el: New file.
1809
1810 2011-07-05 Julien Danjou <julien@danjou.info>
1811
1812 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
1813 than `boundp' to check if face is set.
1814
1815 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
1816
1817 * register.el (registerv-make):
1818 * window.el (window-min-height): Fix typos in docstrings.
1819
1820 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
1821
1822 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
1823 Update doc string.
1824
1825 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
1826
1827 * server.el (server-execute): Catch quit and call
1828 `server-return-error' to pass the error back to emacsclient and
1829 close the connection (bug#8942).
1830
1831 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
1832
1833 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
1834 insecure exception for current topic. Also note that auto-saves
1835 are handled differently.
1836
1837 (allout-auto-save-temporarily-disabled), (allout-just-did-undo):
1838 State variables for tracking auto-save inhibition situation.
1839
1840 (allout-write-contents-hook-handler): Rename from
1841 'allout-write-file-hook-handler', and describe how it depends on
1842 write-contents-functions sensitivity to non-nil value to prevent
1843 file write.
1844
1845 (allout-auto-save-hook-handler): Remove. auto-save does not check
1846 this in individual buffers, only in the starting buffer, so this
1847 is not the right way for us to inhibit auto-save in a buffer
1848 according to its condition.
1849
1850 (allout-mode): Use new allout-write-contents-hook-handler, and
1851 only with write-contents-functions. Remove auto-save provisions -
1852 they're implemented elsewhere.
1853
1854 (allout-before-change-handler): If undo is in progress, note that
1855 for attention of allout-post-command-business.
1856
1857 (allout-post-command-business): If the command we're following was
1858 an undo, check for change in the status of encrypted items and
1859 adjust auto-save inhibitions accordingly.
1860
1861 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
1862 according to whether there are or aren't any plain-text topics
1863 pending encryption.
1864
1865 (allout-inhibit-auto-save-info-for-decryption):
1866 Adjust buffer-saved-size and some allout state to inhibit auto-saves if
1867 there are plain-text topics pending encryption.
1868
1869 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
1870 buffer-saved-size and some allout state to not inhibit auto-saves
1871 if there are no longer any plain-text topics pending encryption.
1872
1873 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
1874 No longer provide for exemption of the current topic.
1875
1876 2011-07-04 Juri Linkov <juri@jurta.org>
1877
1878 Add 7z operations to delete and save changed members (bug#8968).
1879 * arc-mode.el (archive-7z-expunge, archive-7z-update):
1880 New defcustoms.
1881 (archive-7z-write-file-member): New function.
1882 (archive-7z-summarize): Fix the number of dashes in the
1883 listing output.
1884
1885 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
1886
1887 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
1888 (bug#8958).
1889
1890 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
1891
1892 * bindings.el: Ignore next-buffer and previous-buffer in
1893 minibuffer-local-map.
1894
1895 * font-lock.el (font-lock-builtin-face): Change light background
1896 color to dark slate blue (Bug#6693).
1897
1898 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
1899
1900 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
1901
1902 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
1903
1904 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
1905 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
1906 Add switch-to-buffer.
1907
1908 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
1909
1910 * isearch.el (isearch-search-fun-function): Clarify further the
1911 meaning of the function returned.
1912
1913 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
1914
1915 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
1916
1917 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
1918 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
1919 Use it.
1920 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
1921 `tramp-default-remote-path' does not exist.
1922 (tramp-send-command-and-read): New optional argument NOERROR.
1923 (tramp-open-connection-setup-interactive-shell)
1924 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
1925 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
1926 (tramp-process-sentinel): Flush also process' connection property.
1927 (tramp-sh-handle-start-file-process): Do not set process
1928 sentinel. It is done now ...
1929 (tramp-maybe-open-connection): ... here. (Bug#8929)
1930
1931 2011-07-04 MON KEY <monkey@sandpframing.com>
1932
1933 * play/animate.el (animate-string): Doc fixes and allow changing
1934 the buffer name (bug#5417).
1935
1936 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
1937
1938 * play/animate.el (animation-buffer-name): Rename from *animate*.
1939
1940 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
1941
1942 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
1943 This is simpler and helps future-proof the code.
1944 (timer-until): Use time-subtract and float-time.
1945 (timer--time-less-p): Use time-less-p.
1946
1947 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
1948
1949 * type-break.el (timep): Use the value of `float-time' to avoid a
1950 byte-compiler warning.
1951
1952 * server.el (server-eval-and-print): Return any result, even nil.
1953
1954 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
1955
1956 * type-break.el: Accept time formats that the builtins accept.
1957 (timep, type-break-time-difference): Accept any format that
1958 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
1959 This is simpler and helps future-proof the code.
1960 (type-break-time-difference): Round rather than ignoring
1961 subseconds components.
1962
1963 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
1964
1965 * info.el (Info-apropos-matches): Make non-interactive, since it
1966 doesn't seem to do anything useful as a command (bug#8829).
1967
1968 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
1969
1970 * frame.el (frame-background-mode, frame-set-background-mode):
1971 Move from faces.el.
1972 (frame-default-terminal-background): New function.
1973
1974 * custom.el (custom-push-theme): Don't record faces in `changed'
1975 theme; this doesn't work correctly for per-frame face settings.
1976 (disable-theme): Use face-set-after-frame-default to reset faces.
1977 (custom--frame-color-default): New function.
1978
1979 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
1980
1981 * dired.el (dired-flagging-regexp): Remove unused variable
1982 (bug#8769).
1983
1984 2011-03-29 Kevin Ryde <user42@zip.com.au>
1985
1986 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1987 `perl-Test2' extend to match possible "fail #N" rep count
1988 (bug#8377).
1989
1990 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
1991
1992 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
1993 `smtpmail-via-smtp' now returns the error instead of nil.
1994
1995 * isearch.el (isearch-search-fun-function): Clarify the doc string
1996 (bug#8101).
1997
1998 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
1999
2000 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
2001 unnecessary spaces (bug#8987).
2002
2003 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
2004
2005 * net/network-stream.el (open-network-stream): Use the
2006 :end-of-capability command thoughout.
2007
2008 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
2009
2010 * net/network-stream.el (open-network-stream): Add the
2011 :end-of-capability command parameter, used by pop3.el.
2012
2013 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
2014
2015 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
2016
2017 * fringe.el (fringe-query-style): Remove redundant text " (type ?
2018 for list)" (bug#6475).
2019
2020 * files.el (file-expand-wildcards): Ignore non-readable
2021 sub-directories while trying to find matches instead of signalling
2022 an error (bug#6297).
2023
2024 * man.el (Man-reference-regexp): Allow matching possible
2025 word-wrapped references (bug#6289).
2026
2027 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
2028 for consistency with the other vc buffers (bug#6197).
2029 (vc-checkin): Ditto.
2030
2031 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
2032
2033 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
2034
2035 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
2036
2037 * custom.el (defcustom): Clarify that :set is only used in the
2038 Customize user interface (bug#6089).
2039
2040 * progmodes/flymake.el (flymake-mode): If the buffer isn't
2041 associated with a file, refuse to run instead of erroring out
2042 (bug#6084).
2043
2044 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
2045 the doc string, since it appears that using `fill-column' always
2046 controls the width (bug#7845).
2047
2048 * simple.el (shell-command-on-region): Say where the error output
2049 went if `shell-command-default-error-buffer' is set (bug#6857).
2050
2051 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
2052
2053 * allout.el (allout-yank-processing): Adjust cursor position for
2054 backwards-deleted space.
2055
2056 (allout-rebullet-heading): Register changes with
2057 allout-exposure-changed-hook, so the modified topic is properly
2058 decorated.
2059
2060 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
2061
2062 * minibuffer.el (completion-in-region): Document PREDICATE
2063 (bug#7136).
2064
2065 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
2066 of keyword/argument pairs (bug#6904).
2067
2068 * replace.el (multi-occur):
2069 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
2070
2071 2011-07-02 Drew Adams <drew.adams@oracle.com>
2072
2073 * dired.el (dired-mark-if): Make the message about whether it's
2074 marking or unmarking clearer (bug#8523).
2075
2076 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
2077
2078 * disp-table.el (display-table-print-array): New function.
2079 (describe-display-table): Use it to print the vectors more pretty
2080 (Bug#8859).
2081
2082 2011-07-02 Martin Rudalics <rudalics@gmx.at>
2083
2084 * window.el (window-state-get-1): Don't assign clone numbers.
2085 Add clone-of item to list of window parameters.
2086 (window-state-put-2): Don't process clone numbers.
2087 (display-buffer-alist): Fix doc-string.
2088
2089 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
2090
2091 * subr.el (remq): Don't allocate if it's not needed.
2092 (keymap--menu-item-binding, keymap--menu-item-with-binding)
2093 (keymap--merge-bindings): New functions.
2094 (keymap-canonicalize): Use them to refine the canonicalization.
2095 * minibuffer.el (minibuffer-local-completion-map)
2096 (minibuffer-local-must-match-map): Move initialization from C.
2097 (minibuffer-local-filename-completion-map): Move initialization from C;
2098 don't inherit from anything here.
2099 (minibuffer-local-filename-must-match-map): Make obsolete.
2100 (completing-read-default): Use make-composed-keymap to combine
2101 minibuffer-local-filename-completion-map with either
2102 minibuffer-local-must-match-map or
2103 minibuffer-local-filename-completion-map.
2104
2105 2011-07-01 Glenn Morris <rgm@gnu.org>
2106
2107 * type-break.el (type-break-time-sum): Use dolist.
2108
2109 * textmodes/flyspell.el (flyspell-word-search-backward):
2110 Replace CL function.
2111
2112 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
2113
2114 * mouse.el (mouse--strip-first-event): New function.
2115 (function-key-map): Use it to map fringe clicks to normal clicks
2116 by default.
2117
2118 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
2119 (vc-bzr-revision-completion-table): Add support for annotate and date.
2120
2121 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
2122 inherit from parent.
2123
2124 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
2125
2126 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
2127 (dired-show-file-type): Doc fixup (bug#8818).
2128
2129 * dired.el (dired-mode): Fix up the doc string as suggested by
2130 Drew Adams (bug#8817).
2131
2132 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
2133 cookie, since the manual says that it should be possible to add
2134 this function to `find-file-hook' (bug#8709).
2135
2136 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
2137
2138 * progmodes/cfengine.el: Moved all cfengine3.el functionality
2139 here. Noted Ted Zlatanov as the maintainer.
2140 (cfengine-common-settings, cfengine-common-syntax): New functions
2141 to set up common things between `cfengine-mode' and
2142 `cfengine3-mode'.
2143 (cfengine3-mode): New mode.
2144 (cfengine3-defuns cfengine3-defuns-regex
2145 (cfengine3-class-selector-regex cfengine3-category-regex)
2146 (cfengine3-vartypes cfengine3-font-lock-keywords)
2147 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
2148 (cfengine3-indent-line): Add from cfengine3.el.
2149
2150 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
2151
2152 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
2153
2154 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
2155
2156 2011-07-01 Martin Rudalics <rudalics@gmx.at>
2157
2158 * window.el (same-window-buffer-names, same-window-regexps)
2159 (same-window-p, special-display-frame-alist)
2160 (special-display-popup-frame, special-display-function)
2161 (special-display-buffer-names, special-display-regexps)
2162 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
2163 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
2164 (split-window-preferred-function, split-height-threshold)
2165 (split-width-threshold, even-window-heights)
2166 (display-buffer-mark-dedicated, window-splittable-p)
2167 (split-window-sensibly, window-safely-shrinkable-p):
2168 Un-obsolete.
2169 (display-buffer): Don't spread args with function specifier
2170 because special-display-popup-frame won't like it.
2171
2172 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
2173
2174 Time-stamp simplifications and fixes.
2175 These improve accuracy slightly, and future-proof the code
2176 against some potential changes to current-time format.
2177
2178 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
2179 by using time-since and float-time.
2180
2181 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
2182 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
2183 + NNN microseconds".
2184
2185 * type-break.el (type-break-time-sum): Rewrite using time-add.
2186
2187 * play/hanoi.el (hanoi-current-time-float): Remove.
2188 All uses replaced by float-time.
2189
2190 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
2191 This yields a more-accurate answer.
2192 (rng-time-to-float): Remove; no longer needed.
2193
2194 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
2195
2196 * calendar/timeclock.el (timeclock-seconds-to-time):
2197 Defalias to seconds-to-time, since they're the same thing.
2198
2199 * emacs-lisp/elp.el (elp-elapsed-time):
2200 * emacs-lisp/benchmark.el (benchmark-elapse):
2201 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
2202
2203 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
2204
2205 * window.el (bury-buffer): Don't iconify the only frame.
2206 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
2207 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
2208
2209 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
2210
2211 * eshell/em-smart.el (eshell-smart-display-navigate-list):
2212 Add mouse-yank-primary.
2213
2214 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
2215
2216 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
2217
2218 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
2219
2220 * emacs-lisp/find-func.el (find-library--load-name): New fun.
2221 (find-library-name): Use it to find relative load names when provided
2222 absolute file name (bug#8803).
2223
2224 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
2225
2226 * textmodes/flyspell.el (flyspell-word): Consider words that
2227 differ only in case as potential doublons (bug#5687).
2228
2229 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
2230 Remove two rather uninteresting debugging-like messages to make
2231 debbugs.el more silent.
2232
2233 * comint.el (comint-password-prompt-regexp): Accept "Response" as
2234 a password-like phrase.
2235
2236 2011-06-30 Mastake YAMATO <yamato@redhat.com>
2237
2238 * progmodes/cc-guess.el: New file.
2239
2240 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
2241
2242 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
2243 derived from `c-basic-common-init'.
2244
2245 * progmodes/cc-mode.el (top-level): Require cc-guess.
2246 (c-basic-common-init): Use `cc-choose-style-for-mode'.
2247
2248 2011-06-30 Lawrence Mitchell <wence@gmx.li>
2249
2250 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
2251
2252 2011-06-30 Alan Mackenzie <acm@muc.de>
2253
2254 * progmodes/cc-engine.el (c-guess-continued-construct):
2255 Correct the handling of template-args-cont, particularly for when font
2256 lock is disabled. Name this case as "CASE G".
2257
2258 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
2259
2260 * allout.el (allout-yank-processing): Fix injection of extra space
2261 between bullet and non-whitespace character in first topic when
2262 pasting, ensuring that the actual spacing in the pasted topic
2263 following the bullet char is preserved. This extra space was
2264 causing pasted encrypted topics to get a decrypted status even
2265 when the content was actually still encrypted. Now the decryption
2266 status from before the paste is preserved.
2267
2268 (allout-flag-region): Set all allout overlays so they evaporate
2269 when reduced to zero length (evanescent), to prevent overlay
2270 leakage.
2271
2272 2011-06-30 Glenn Morris <rgm@gnu.org>
2273
2274 * w32-fns.el (w32-charset-info-alist): Declare.
2275
2276 * find-dired.el (find-grep-options): Simplify.
2277
2278 * term/ns-win.el (ns-set-resource): Declare.
2279
2280 * ses.el (row, col): Declare dynamic variables honestly.
2281
2282 * textmodes/reftex-parse.el (index-tags): Declare.
2283
2284 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
2285
2286 * cus-edit.el (customize-push-and-save): New function.
2287
2288 * files.el (hack-local-variables-confirm): Use it.
2289
2290 * custom.el (load-theme): New arg NO-CONFIRM.
2291 Use customize-push-and-save (Bug#8720).
2292 (custom-enabled-themes): Doc fix.
2293
2294 * cus-theme.el (customize-create-theme)
2295 (custom-theme-merge-theme): Callers to load-theme changed.
2296
2297 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
2298
2299 * thingatpt.el (thing-at-point-short-url-regexp): Require that
2300 short URLs have at least one dot in them (bug #7614).
2301
2302 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
2303 nil, because using a pty is apparently too slow (bug #895).
2304
2305 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
2306
2307 * mail/sendmail.el (sendmail-query-once): New function.
2308 (sendmail-query-once-function): New variable.
2309
2310 2011-06-29 Glenn Morris <rgm@gnu.org>
2311
2312 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
2313
2314 * ses.el (top-level): Require cl when compiling.
2315 (ses-set-localvars): Fix error statement.
2316 Call it at compile time to silence a storm of warnings.
2317
2318 2011-06-29 Martin Rudalics <rudalics@gmx.at>
2319
2320 * window.el (normalize-live-buffer): Rename to
2321 window-normalize-buffer.
2322 (normalize-live-frame): Rename to window-normalize-frame.
2323 (normalize-any-window): Rename to window-normalize-any-window.
2324 (normalize-live-window): Rename to window-normalize-live-window.
2325 (make-window-atom): Rename to window-make-atom.
2326 (window-resize-reset): Rename to window--resize-reset.
2327 (window-resize-reset-1): Rename to window--resize-reset-1.
2328 (resize-mini-window): Rename to window--resize-mini-window.
2329 (resize-subwindows-skip-p): Rename to
2330 window--resize-subwindows-skip-p.
2331 (resize-subwindows-normal): Rename to
2332 window--resize-subwindows-normal.
2333 (resize-subwindows): Rename to window--resize-subwindows.
2334 (resize-other-windows): Rename to window--resize-siblings.
2335 (resize-this-window): Rename to window--resize-this-window.
2336 (resize-root-window): Rename to window--resize-root-window.
2337 (resize-root-window-vertically): Rename to
2338 window--resize-root-window-vertically.
2339 (normalize-buffer-to-display): Rename to
2340 window-normalize-buffer-to-display.
2341 (normalize-buffer-to-switch-to): Rename to
2342 window-normalize-buffer-to-switch-to.
2343 Correspondingly update all callers of the functions listed
2344 above.
2345 (display-buffer-alist, display-buffer-normalize-arguments)
2346 (display-buffer-normalize-options, display-buffer)
2347 (display-buffer-alist-set): Use "function" instead of
2348 "fun-with-args".
2349
2350 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
2351
2352 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
2353 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
2354 debbugs.gnu.org. Mention acknowledgment email.
2355
2356 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
2357
2358 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
2359 buffer multibyteness, since it shouldn't matter.
2360
2361 2011-06-28 Martin Rudalics <rudalics@gmx.at>
2362
2363 * window.el (display-buffer-in-side-window): Handle dedicated
2364 windows as in display-buffer-reuse-window.
2365 (display-buffer-normalize-alist): Use value of override
2366 specifier.
2367 (display-buffer-normalize-specifiers): Use value of
2368 other-window-means-other-frame specifier.
2369 (display-buffer-alist): Rewrite some texts in widgets.
2370 (display-buffer): Spread arguments when calling function
2371 specified by fun-with-args.
2372
2373 2011-06-28 Deniz Dogan <deniz@dogan.se>
2374
2375 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
2376 Unnest `let'.
2377
2378 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
2379 selectors (Bug#5732).
2380 (css-proprietary-nmstart-re): Use `regexp-opt'.
2381
2382 2011-06-27 Jari Aalto <jari.aalto@cante.net>
2383
2384 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
2385 (eshell-ls-date-format): New defcustom.
2386 (eshell-ls-file): Use it.
2387
2388 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
2389
2390 * help-fns.el (describe-variable): Fix message for terminal-local vars.
2391
2392 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
2393
2394 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
2395 (ange-ftp-make-tmp-name): New arg.
2396 (ange-ftp-file-local-copy): Use it.
2397
2398 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
2399
2400 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
2401 no-conversion (Bug#8870).
2402
2403 2011-06-27 Martin Rudalics <rudalics@gmx.at>
2404
2405 * window.el (window-right, window-left, window-child)
2406 (window-child-count, window-last-child)
2407 (window-iso-combination-p, walk-window-tree-1)
2408 (window-atom-check-1, window-tree-1, delete-window)
2409 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
2410 new naming conventions - window-vchild, window-hchild,
2411 window-next and window-prev are now called window-top-child,
2412 window-left-child, window-next-sibling and window-prev-sibling
2413 respectively.
2414 (resize-window-reset): Rename to window-resize-reset.
2415 (resize-window-reset-1): Rename to window-resize-reset-1.
2416 (resize-window): Rename to window-resize.
2417 (window-min-height, window-min-width)
2418 (resize-mini-window, resize-this-window, resize-root-window)
2419 (resize-root-window-vertically, adjust-window-trailing-edge)
2420 (enlarge-window, shrink-window, maximize-window)
2421 (minimize-window, delete-window, quit-restore-window)
2422 (split-window, balance-windows, balance-windows-area-adjust)
2423 (balance-windows-area, window-state-put-2)
2424 (display-buffer-even-window-sizes, display-buffer-set-height)
2425 (display-buffer-set-width, set-window-text-height)
2426 (fit-window-to-buffer): Rename all "resize-window" prefixed
2427 calls to use the "window-resize" prefix convention.
2428 (display-buffer-alist): Fix symbol for label specifier.
2429 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
2430 corresponding specifier.
2431 Reported by Juanma Barranquero <lekktu@gmail.com>.
2432
2433 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
2434
2435 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
2436 convention.
2437 (ses-call-printer): Does not pass an empty string to formatter when the
2438 cell is empty to keep from barking printer Calc math-format-value.
2439
2440 2011-06-27 Richard Stallman <rms@gnu.org>
2441
2442 * battery.el (battery-mode-line-limit): New variable.
2443 (battery-update): Handle it.
2444
2445 * mail/rmailmm.el (rmail-mime-process-multipart):
2446 Handle truncated messages.
2447
2448 2011-06-27 Glenn Morris <rgm@gnu.org>
2449
2450 * progmodes/flymake.el (flymake-err-line-patterns):
2451 Allow for column numbers in the ant/javac pattern. (Bug#8866)
2452
2453 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
2454
2455 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
2456 (ses--clean-!, ses--clean-_): New functions.
2457 (ses-range): Add configurability of readout order, and conversion
2458 to Calc vector.
2459
2460 * ses.el (ses-repair-cell-reference-all): New function.
2461 (ses-cell-symbol): Set macro as safe, so that it can be used in
2462 formulas.
2463
2464 * ses.el: Update cycle detection algorithm.
2465 (ses-localvars): Add ses--Dijkstra-attempt-nb and
2466 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
2467 (ses-set-localvars): New function.
2468 (ses-make-cell): Add property-list as a cell element.
2469 (ses-cell-property-get-fun, ses-cell-property-get)
2470 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
2471 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
2472 New functions.
2473 (ses-cell-property-set, ses-cell-property-pop)
2474 (ses-cell-property-get-handle): New macro.
2475 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
2476 New aliases, used for code readability.
2477 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
2478 cycle detection.
2479 (ses-self-reference-early-detection): New defcustom.
2480 (ses-formula-references): Robustify against self-refering cells.
2481 (ses-mode): Use ses-set-localvars.
2482 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
2483 before lauching the update processing.
2484 (ses-initialize-Dijkstra-attempt): New function.
2485 (ses-recalculate-cell): Update for cycle detection based on
2486 Dijkstra algorithm.
2487
2488 * ses.el: Fix commenting and indenting convention.
2489
2490 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
2491
2492 * bs.el (bs-cycle-next): Complete last change.
2493
2494 2011-06-27 Drew Adams <drew.adams@oracle.com>
2495
2496 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
2497
2498 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
2499
2500 * net/network-stream.el (network-stream-open-starttls):
2501 Don't re-get capabilities unless we've reestablished connection.
2502 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
2503
2504 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
2505 to binary to possibly avoid line encoding issues on Windows (among
2506 other things).
2507
2508 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
2509
2510 * net/network-stream.el (open-network-stream): Return an :error
2511 saying what the problem was, if possible.
2512
2513 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
2514 server.
2515
2516 * net/network-stream.el (network-stream-open-starttls): If we
2517 wanted to use STARTTLS, and the server offered it, but we weren't
2518 able to because we had no STARTTLS support, then close the connection.
2519 (open-network-stream): Return an :error element, if present.
2520
2521 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
2522
2523 * hl-line.el (hl-line-sticky-flag): Doc fix.
2524 (global-hl-line-sticky-flag): New option (Bug#8323).
2525 (global-hl-line-highlight): Obey it.
2526
2527 * vc/vc.el (vc-revert-show-diff): Default to t.
2528
2529 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
2530
2531 * allout-widgets.el (allout-widgets-post-command-business):
2532 Stop decorating intermediate isearch matches. They're not being
2533 undecorated when an isearch is continued past, and isearch
2534 automatically collapses them. This leads to "widget leaks", where
2535 decorated items accumulate in collapsed areas. Lines with lots of
2536 hidden widgets can slow down cursor travel, substantially.
2537 Too much complicated machinery would be needed to ensure undecoration,
2538 so we're doing without this nicety.
2539
2540 (allout-widgets-tally-string): Don't try to do a hash-table-count
2541 of allout-widgets-tally when it's nil. This eliminates spurious "Error
2542 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
2543 *Messages* when allout-widgets-maintain-tally is t.
2544
2545 2011-06-26 Martin Rudalics <rudalics@gmx.at>
2546
2547 * window.el (display-buffer-normalize-argument): Rename to
2548 display-buffer-normalize-arguments. Handle special meaning of
2549 LABEL argument. Respect special-display-function when popping up
2550 a new frame. Fix code searching for a window showing the buffer
2551 on another frame.
2552 (display-buffer-normalize-specifiers):
2553 Call display-buffer-normalize-arguments.
2554 (display-buffer-in-window): Don't undedicate the window if its
2555 buffer remains the same.
2556 Reported by Drew Adams <drew.adams@oracle.com>.
2557 (display-buffer-alist): Add choice for same-window macro
2558 specfier.
2559 (display-buffer): Mention special meaning of LABEL argument in
2560 doc-string. Fix quoting. Don't pop up a new frame even as
2561 fallback.
2562
2563 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
2564
2565 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
2566 avoid deleting the current window in some cases (bug#8911).
2567
2568 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
2569
2570 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
2571 (Bug#8934)
2572
2573 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
2574
2575 * net/network-stream.el (network-stream-open-starttls):
2576 Use built-in TLS support if `gnutls-available-p' is true.
2577 (network-stream-open-tls): Ditto.
2578
2579 2011-06-26 Leo Liu <sdl.web@gmail.com>
2580
2581 * register.el (registerv): New struct.
2582 (registerv-make): New function.
2583 (jump-to-register, describe-register-1, insert-register):
2584 Support the jump-func, print-func and insert-func slot of a registerv
2585 struct. (Bug#8415)
2586
2587 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
2588
2589 * vc/vc.el (vc-revert-show-diff): New defcustom.
2590 (vc-diff-internal): New arg specifying diff buffer.
2591 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
2592 reuse an existing *vc-diff* buffer (Bug#8927).
2593
2594 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
2595
2596 2011-06-26 Glenn Morris <rgm@gnu.org>
2597
2598 * progmodes/f90.el (f90-critical-indent): New option.
2599 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
2600 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
2601 (f90-mode): Doc fix.
2602 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
2603 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
2604 (f90-beginning-of-block, f90-next-block, f90-indent-region)
2605 (f90-match-end): Handle block, critical.
2606
2607 2011-06-25 Glenn Morris <rgm@gnu.org>
2608
2609 * calendar/diary-lib.el (diary-included-files): Doc fix.
2610 (diary-include-files): New function, extracted from
2611 diary-include-other-diary-files and diary-mark-included-diary-files.
2612 (diary-include-other-diary-files, diary-mark-included-diary-files):
2613 Just call diary-include-files.
2614 (diary-mark-entries): Reset diary-included-files on first call.
2615
2616 * calendar/diary-lib.el (diary-mark-entries)
2617 (diary-mark-included-diary-files):
2618 Visit included diary-files in temp buffers.
2619
2620 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
2621 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
2622 (f90-start-block-re, f90-imenu-generic-expression)
2623 (f90-looking-at-program-block-start, f90-no-block-limit):
2624 Add support for submodules.
2625
2626 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
2627 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
2628
2629 2011-06-25 Eli Zaretskii <eliz@gnu.org>
2630
2631 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
2632 buffer-file-type before setting its value, to avoid disastrous
2633 global effects on decoding files for DOS/Windows systems. (Bug#8780)
2634
2635 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
2636
2637 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
2638
2639 * ses.el (ses-unload-function):
2640 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
2641
2642 * proced.el (proced-unload-function):
2643 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
2644
2645 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
2646
2647 * server.el (server-create-window-system-frame): Add parameters arg.
2648 (server-process-filter): Doc fix. Handle frame-parameters.
2649
2650 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
2651
2652 Fix bug#8730, bug#8781.
2653
2654 * loadhist.el (unload--set-major-mode): New function.
2655 (unload-feature): Use it.
2656
2657 * progmodes/python.el (python-after-info-look): Add autoload cookie.
2658 (python-unload-function): New function.
2659
2660 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
2661
2662 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
2663
2664 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
2665
2666 * net/browse-url.el (browse-url-firefox-program): Add icecat to
2667 the candidates list.
2668
2669 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
2670
2671 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
2672
2673 2011-06-23 Richard Stallman <rms@gnu.org>
2674
2675 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
2676 (rmail-variables): Set next-error-move-function.
2677 (rmail-what-message): Take argument POS.
2678 (rmail-next-error-move): New function.
2679
2680 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
2681
2682 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
2683 messages for adjacent non-terminals.
2684
2685 2011-06-23 Richard Stallman <rms@gnu.org>
2686
2687 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
2688 (rmail-show-message-1): Preserve buffer modified flag.
2689 (rmail-start-mail): Don't specify use of rmail-mail-return;
2690 that's done by mail-bury now.
2691 (rmail-mail-return): Handle arg NEWBUF.
2692
2693 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
2694
2695 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
2696 SIZE is a number.
2697
2698 2011-06-23 Martin Rudalics <rudalics@gmx.at>
2699
2700 * window.el (get-lru-window, get-mru-window)
2701 (get-largest-window): Never return a minibuffer window.
2702 (display-buffer-pop-up-window): Fix a bug that could lead to
2703 reusing the minibuffer window.
2704 (display-buffer): Pass original specifier argument to
2705 display-buffer-function instead of the normalized one.
2706 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
2707
2708 2011-06-22 Leo Liu <sdl.web@gmail.com>
2709
2710 * minibuffer.el (completing-read-function)
2711 (completing-read-default): Move from minibuf.c
2712
2713 2011-06-22 Richard Stallman <rms@gnu.org>
2714
2715 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
2716 to Rmail even if not started by a special Rmail command.
2717
2718 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
2719 Copy the buffer currently showing just one message.
2720
2721 2011-06-22 Roland Winkler <winkler@gnu.org>
2722
2723 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
2724 (bibtex-clean-entry): First delete the old key so that a
2725 customized algorithm for generating the new key does not get
2726 confused by the old key.
2727 (bibtex-url): Obey regexp of first step.
2728 (bibtex-search-entries): Do not use add-to-list with local
2729 list-var.
2730
2731 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
2732
2733 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
2734 stored a user name, then query for the password first, instead of
2735 waiting for SMTP to give an error message and the trying again.
2736
2737 2011-06-22 Lawrence Mitchell <wence@gmx.li>
2738
2739 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
2740 BUFFER in call-process.
2741
2742 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
2743
2744 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
2745 QUIT twice.
2746 (smtpmail-try-auth-methods): Require user name and password from
2747 auth-source.
2748
2749 2011-06-22 Martin Rudalics <rudalics@gmx.at>
2750
2751 * window.el (display-buffer-default-specifiers)
2752 (display-buffer-alist): Remove entries for pop-up-frame-alist.
2753 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
2754 (split-window): Normalize SIDE argument (Bug#8916).
2755
2756 * frame.el (pop-up-frame-alist, pop-up-frame-function)
2757 (special-display-frame-alist, special-display-popup-frame):
2758 Remove duplicate declarations. These are now in window.el.
2759
2760 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
2761
2762 * mail/smtpmail.el (smtpmail-via-smtp):
2763 Set :use-starttls-if-possible so that we always use STARTTLS if the
2764 server supports it. SMTP servers that support STARTTLS commonly
2765 require it.
2766
2767 * net/network-stream.el (network-stream-open-starttls): Support
2768 upgrading to STARTTLS always, even if we don't have built-in support.
2769 (open-network-stream): Add the :always-query-capabilies keyword.
2770
2771 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
2772 upgrades with `open-network-stream', and rely solely on
2773 auth-source for all credentials. Big changes throughout the file,
2774 but in particular:
2775 (smtpmail-auth-credentials): Remove.
2776 (smtpmail-starttls-credentials): Remove.
2777 (smtpmail-via-smtp): Check for servers saying they want AUTH after
2778 MAIL FROM, too.
2779
2780 * net/network-stream.el (network-stream-open-starttls):
2781 Provide support for client certificates both for external and built-in
2782 STARTTLS.
2783 (auth-source): Require.
2784 (open-network-stream): Document the :client-certificate keyword.
2785 (network-stream-certificate): Change cert-cert to cert and
2786 cert-key to key.
2787
2788 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
2789
2790 * net/tramp-cache.el (top): Don't load the persistency file when
2791 "emacs -Q" has been called.
2792
2793 2011-06-21 Tim Harper <timcharper@gmail.com>
2794
2795 * term/ns-win.el (ns-initialize-window-system):
2796 Set application-specific `ApplePressAndHoldEnabled' system
2797 resource to NO as it is not yet supported by the NS port.
2798
2799 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
2800
2801 * misc.el (list-dynamic-libraries--refresh): Compute header here...
2802 (list-dynamic-libraries): ...not here.
2803
2804 2011-06-21 Leo Liu <sdl.web@gmail.com>
2805
2806 * subr.el (sha1): Implement sha1 using secure-hash.
2807
2808 2011-06-21 Martin Rudalics <rudalics@gmx.at>
2809
2810 * window.el (display-buffer-alist): In default value do not
2811 enforce searching a window on any but the selected frame.
2812 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
2813 (display-buffer-select-window): Remove function.
2814 (display-buffer-in-window): When a window on another frame gets
2815 reused, do not select it any more but just raise its frame if
2816 necessary (Bug#8851) and (Bug#8856).
2817 (display-buffer-normalize-options): Handle pop-up-frames related
2818 options more faithfully.
2819 (pop-to-buffer): Don't rely on `display-buffer' selecting the
2820 window if it is on another frame.
2821 (display-buffer-alist, display-buffer-default-specifiers):
2822 Don't make new frame unsplittable by default.
2823 (display-buffer-normalize-argument): Fix doc-string typo and use
2824 'same-frame-other-window instead of 'other-window when associating
2825 with display-buffer-macro-specifiers.
2826
2827 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
2828
2829 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
2830 New functions.
2831 (5x5-mode-map, 5x5-mode-menu): Bind them.
2832 (5x5-draw-grid): Tweak the solver's rendering.
2833
2834 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
2835
2836 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
2837 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
2838
2839 2011-06-21 Drew Adams <drew.adams@oracle.com>
2840
2841 * menu-bar.el: Use function variable instead of switch-to-buffer.
2842 (menu-bar-select-buffer-function): New variable.
2843 (menu-bar-update-buffers): Use it (bug#8876).
2844
2845 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
2846
2847 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
2848 variable's status.
2849
2850 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
2851
2852 * x-dnd.el (x-dnd-version-from-flags)
2853 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
2854 and long as number (Bug#8899).
2855 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
2856
2857 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
2858
2859 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
2860 (completion-try-completion, completion-all-completions): Compute the
2861 metadata argument if it's missing; make it optional (bug#8795).
2862
2863 * wid-edit.el: Use lex-bind and move towards completion-at-point.
2864 (widget-complete): Use new :completion-function property.
2865 (widget-completions-at-point): New function.
2866 (default): Use :completion-function instead of :complete.
2867 (widget-default-completions): Rename from widget-default-complete;
2868 Rewrite.
2869 (widget-string-complete, widget-file-complete, widget-color-complete):
2870 Remove functions.
2871 (file, symbol, function, variable, coding-system, color):
2872 * international/mule-cmds.el (default-input-method, charset)
2873 (language-info-custom-alist):
2874 * cus-edit.el (face): Use new property :completions.
2875
2876 * progmodes/pascal.el (pascal-completions-at-point): New function.
2877 (pascal-mode): Use it.
2878 (pascal-mode-map): Use completion-at-point.
2879 (pascal-toggle-completions): Make obsolete.
2880 (pascal-complete-word, pascal-show-completions):
2881 * progmodes/octave-mod.el (octave-complete-symbol):
2882 Redefine as obsolete alias.
2883 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
2884 Signal absence of completion info for old Octave,
2885 (inferior-octave-complete): Redefine as obsolete alias.
2886 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
2887 (meta-completions-at-point): Rename from meta-complete-symbol and
2888 adapt it for use on completion-at-point-functions.
2889 (meta-common-mode): Use it.
2890 (meta-looking-at-backward, meta-match-buffer): Remove.
2891 (meta-complete-symbol): Redefine as obsolete alias.
2892 (meta-common-mode-map): Use completion-at-point.
2893 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
2894 (makefile-mode-map): Use completion-at-point.
2895 (makefile-completions-at-point): Rename from makefile-complete and
2896 adapt it for use on completion-at-point-functions.
2897 (makefile-mode): Use it.
2898 (makefile-complete): Redefine as obsolete alias.
2899
2900 2011-06-20 Deniz Dogan <deniz@dogan.se>
2901
2902 * net/rcirc.el: Delete trailing whitespaces once and for all.
2903
2904 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
2905
2906 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
2907
2908 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
2909
2910 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
2911
2912 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
2913
2914 2011-06-19 Martin Rudalics <rudalics@gmx.at>
2915
2916 * window.el (display-buffer-other-window-means-other-frame):
2917 Call display-buffer-normalize-alist.
2918 (display-buffer-normalize-specifiers-1): Rename to
2919 display-buffer-normalize-argument. New argument other-frame.
2920 Rewrite.
2921 (display-buffer-normalize-specifiers-2): Rename to
2922 display-buffer-normalize-options.
2923 (display-buffer-normalize-alist-1): New function.
2924 (display-buffer-normalize-specifiers-3): Rename to
2925 display-buffer-normalize-alist.
2926 Call display-buffer-normalize-alist-1.
2927 (display-buffer-normalize-options-inhibit): New variable.
2928 (display-buffer-normalize-specifiers): Rewrite calling
2929 display-buffer-normalize-alist,
2930 display-buffer-normalize-argument, and
2931 display-buffer-normalize-options. Don't call the latter if
2932 display-buffer-normalize-options-inhibit is non-nil.
2933 (frame-auto-delete): New option.
2934 (window-deletable-p): Use frame-auto-delete.
2935 (window-list-no-nils, window-state-ignored-parameters)
2936 (window-state-get-1, window-state-get, window-state-put-list)
2937 (window-state-put-1, window-state-put-2, window-state-put):
2938 New functions.
2939 (display-buffer-normalize-options): Move special-display-p group
2940 after pop-up-frame group (Bug#8851) and (Bug#8856).
2941
2942 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
2943
2944 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
2945 groups (Bug#8776).
2946 (rx-submatch-n): New function.
2947 (rx): Document it.
2948
2949 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
2950 (Bug#8768).
2951
2952 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
2953
2954 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
2955
2956 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
2957 anytime existing face settings are present (Bug#8889).
2958
2959 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
2960 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
2961 Remove unused argument.
2962
2963 2011-06-18 Martin Rudalics <rudalics@gmx.at>
2964
2965 * window.el (display-buffer-default-specifiers):
2966 Remove pop-up-frame. Add pop-up-window-min-height,
2967 pop-up-window-min-width, and another reuse-window specifier
2968 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
2969 (display-buffer-normalize-specifiers-2):
2970 Handle split-height-threshold and split-width-threshold also when
2971 pop-up-windows is unset. Add a reuse-window specifier for the
2972 case popping up a new window fails.
2973 (special-display-popup-frame): Remove double quoting.
2974 (display-buffer-normalize-specifiers-1): Fix thinko.
2975
2976 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
2977
2978 * shell.el (shell-completion-vars): Set pcomplete-termination-string
2979 according to comint-completion-addsuffix.
2980
2981 * pcomplete.el: Convert to lexical binding and fix bug#8819.
2982 (pcomplete-suffix-list): Mark as obsolete.
2983 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
2984 pcomplete-seen in the closure.
2985 (pcomplete-comint-setup): Setup completion-at-point as well.
2986 (pcomplete--entries): New function.
2987 (pcomplete--env-regexp): New var.
2988 (pcomplete-entries): Rewrite to work with partial-completion and
2989 without relying on pcomplete-suffix-list.
2990 (pcomplete-pare-list): Remove, unused.
2991
2992 2011-06-17 Martin Rudalics <rudalics@gmx.at>
2993
2994 * window.el (display-buffer-alist): Set pop-up-window-min-height
2995 and pop-up-window-min-width in default value. Reported by
2996 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
2997 other-window-means-other-frame.
2998 (display-buffer-macro-specifiers): Comment out entry for
2999 other-window specifier.
3000 (display-buffer-other-window-means-other-frame): New function.
3001 (display-buffer-normalize-specifiers-1): New arguments
3002 buffer-name and label. Treat other-window case specially.
3003 (display-buffer-normalize-specifiers-2): Treat other-window case
3004 specially.
3005 (display-buffer-normalize-specifiers-3): New function.
3006 (display-buffer-normalize-specifiers):
3007 Call display-buffer-normalize-specifiers-3.
3008
3009 2011-06-17 Martin Rudalics <rudalics@gmx.at>
3010
3011 * window.el (same-window-p): Fix two typos introduced when
3012 adding with-no-warnings.
3013 (display-buffer-normalize-specifiers-1): Don't check
3014 pop-up-frames for 'unset initialization.
3015 (display-buffer-normalize-specifiers-2): Major rewrite using
3016 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
3017 (pop-up-frames, display-buffer-reuse-frames)
3018 (display-buffer-mark-dedicated): Don't initialize to 'unset.
3019 Suggested by David Engster <deng@randomsample.de>.
3020 (even-window-heights): Initialize to 'unset.
3021 (display-buffer-alist-set): Handle new 'unset initializations.
3022 (display-buffer-macro-specifiers): Don't pop up a new frame in the
3023 other window case.
3024
3025 2011-06-16 Martin Rudalics <rudalics@gmx.at>
3026
3027 * window.el (display-buffer-normalize-specifiers-1):
3028 Respect current value of pop-up-frames for most reasonable values of
3029 second argument of display-buffer (Bug#8865).
3030 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
3031 (switch-to-buffer-other-window-same-frame)
3032 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
3033 Adams (Bug#8875).
3034 (display-buffer): Don't check noninteractive when calling
3035 display-buffer-pop-up-frame.
3036 (display-buffer-pop-up-frame): Never pop up a frame in
3037 noninteractive mode (Bug#8857).
3038 (enlarge-window, shrink-window): Don't report an error when the
3039 window can't be resized as requested (Bug#8862).
3040
3041 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
3042
3043 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
3044
3045 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
3046
3047 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
3048
3049 2011-06-15 Alan Mackenzie <acm@muc.de>
3050
3051 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
3052 for declarators, disable knr checking to speed up for normal files.
3053 2: Refactor, replacing a sequence of nested if forms by a cond form.
3054
3055 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
3056
3057 * net/network-stream.el (open-network-stream): Add the keyword
3058 :always-query-capabilities for the case where you want to force a
3059 `plain' network connection, but the protocol still requires the
3060 capabilitiy command (i.e., SMTP and EHLO).
3061
3062 * subr.el (process-live-p): Rename from `process-alive-p' for
3063 consistency with other `-live-p' functions.
3064
3065 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
3066
3067 * window.el (same-window-buffer-names, same-window-regexps)
3068 (special-display-frame-alist, special-display-popup-frame)
3069 (special-display-function, special-display-buffer-names)
3070 (special-display-regexps, pop-up-frame-alist)
3071 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
3072 (pop-up-windows, split-window-preferred-function)
3073 (split-height-threshold, split-width-threshold, even-window-heights)
3074 (display-buffer-mark-dedicated): Don't encourage the use of
3075 display-buffer-alist from Elisp code.
3076
3077 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
3078
3079 * progmodes/python.el (python-mode): Derive from prog-mode.
3080 * progmodes/ps-mode.el (ps-mode):
3081 * progmodes/mixal-mode.el (mixal-mode):
3082 * progmodes/cfengine.el (cfengine-mode):
3083 * progmodes/ld-script.el (ld-script-mode): Likewise.
3084
3085 2011-06-15 Martin Rudalics <rudalics@gmx.at>
3086
3087 * window.el (display-buffer-alist): Trim default value to avoid
3088 popping up a new frame (Bug#8857) or reusing an arbitrary window
3089 on another frame.
3090 (display-buffer): Do not fall back on popping up a new frame in
3091 batch mode (Bug#8857).
3092
3093 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
3094
3095 * cus-theme.el (describe-theme-1): Use custom-theme-p.
3096 (custom-theme-summary): New function.
3097 (customize-themes): Use it.
3098
3099 2011-06-13 Glenn Morris <rgm@gnu.org>
3100
3101 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
3102
3103 2011-06-13 Martin Rudalics <rudalics@gmx.at>
3104
3105 * help.el (help-window): Remove variable.
3106 (help-window-point-marker, temp-buffer-max-height)
3107 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
3108 (help-print-return-message): Don't set help-window.
3109 (resize-temp-buffer-window): Rewrite cod eand doc-string.
3110 (help-window-setup-finish): Remove.
3111 (help-window-display-message, help-window-setup)
3112 (with-help-window): Major rewrite based on new
3113 display-buffer-window variable.
3114
3115 * help-mode.el (help-mode-finish): Remove help-window related
3116 code.
3117
3118 * view.el (view-exits-all-viewing-windows): Remove reference to
3119 view-return-to-alist in doc-string.
3120 (view-return-to-alist): Make obsolete.
3121 (view-buffer): Call pop-to-buffer-same-window and remove
3122 undo-window code.
3123 (view-buffer-other-window): Call pop-to-buffer-other-window and
3124 simplify code. Ignore second argument.
3125 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
3126 simplify code. Ignore second argument.
3127 (view-return-to-alist-update): Make obsolete.
3128 (view-mode-enter): Rename second argument to QUIT-RESTORE.
3129 Rewrite using quit-restore window parameters.
3130 (view-mode-exit): Rename second argument to EXIT-ONLY.
3131 Rewrite using quit-restore-window.
3132 (View-exit, View-exit-and-edit, View-leave, View-quit)
3133 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
3134 appropriate arguments.
3135 (view-end-message): Use quit-restore window parameter.
3136
3137 * window.el (display-buffer-function): Rewrite doc-string.
3138 (display-buffer-window, display-buffer-alist): New variables.
3139 (display-buffer-split-specifiers)
3140 (display-buffer-side-specifiers)
3141 (display-buffer-macro-specifiers): New constants.
3142 (display-buffer-even-window-sizes, display-buffer-set-height)
3143 (display-buffer-set-width, display-buffer-select-window)
3144 (display-buffer-in-window, display-buffer-reuse-window)
3145 (display-buffer-split-window-1, display-buffer-split-window)
3146 (display-buffer-split-atom-window, display-buffer-pop-up-window)
3147 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
3148 (display-buffer-in-side-window, normalize-buffer-to-display)
3149 (display-buffer-normalize-specifiers-1)
3150 (display-buffer-normalize-specifiers-2)
3151 (display-buffer-normalize-specifiers, display-buffer-frame):
3152 New functions.
3153 (display-buffer): Major rewrite.
3154 (display-buffer-other-window, display-buffer-other-frame)
3155 (pop-to-buffer, switch-to-buffer-other-window)
3156 (switch-to-buffer-other-frame): Rewrite.
3157 (display-buffer-same-window, display-buffer-same-frame)
3158 (display-buffer-same-frame-other-window)
3159 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
3160 (pop-to-buffer-other-window)
3161 (pop-to-buffer-same-frame-other-window)
3162 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
3163 (switch-to-buffer-other-window-same-frame): New functions.
3164 (same-window-p, special-display-p): Rewrite disabling warnings.
3165 Make obsolete.
3166 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
3167 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
3168 Make obsolete
3169 (same-window-buffer-names, same-window-regexps)
3170 (special-display-frame-alist, special-display-popup-frame)
3171 (special-display-function, special-display-buffer-names)
3172 (special-display-regexps, pop-up-frame-alist)
3173 (pop-up-frame-function, split-window-preferred-function)
3174 (split-height-threshold, split-width-threshold)
3175 (even-window-heights): Make obsolete.
3176
3177 2011-06-12 Glenn Morris <rgm@gnu.org>
3178
3179 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
3180 Misc simplifications.
3181
3182 2011-06-12 Martin Rudalics <rudalics@gmx.at>
3183
3184 * window.el (window-safely-shrinkable-p): Restore function which
3185 was inadvertently removed in change from 2011-06-11. Declare as
3186 obsolete.
3187
3188 * calendar/calendar.el (calendar-generate-window):
3189 Use window-iso-combined-p instead of combination of one-window-p and
3190 window-safely-shrinkable-p.
3191
3192 2011-06-12 Glenn Morris <rgm@gnu.org>
3193
3194 * progmodes/fortran.el (fortran-mode-syntax-table):
3195 * progmodes/f90.el (f90-mode-syntax-table):
3196 Set % to punctuation. (Bug#8820)
3197 (f90-find-tag-default): Remove, no longer needed.
3198
3199 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
3200
3201 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
3202
3203 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
3204
3205 * image.el (image-animated-p): Return animation delay in seconds.
3206 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
3207 (image-animate-timeout): Remove DELAY argument. Don't assume
3208 every subimage has the same delay; get it from image-animated-p.
3209 (image-animate): Caller changed.
3210
3211 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
3212
3213 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
3214 to ignored backtrace functions.
3215
3216 2011-06-11 Glenn Morris <rgm@gnu.org>
3217
3218 * calendar/appt.el (appt-disp-window-function): Doc fix.
3219 (appt-check): Handle overlapping appointments. (Bug#8337)
3220
3221 2011-06-11 Martin Rudalics <rudalics@gmx.at>
3222
3223 * window.el (window-tree-1, window-tree): New functions, moving
3224 the latter to window.el.
3225 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
3226 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
3227 (bw-refresh-edges): Remove.
3228 (balance-windows-1, balance-windows-2): New functions.
3229 (balance-windows): Rewrite in terms of window tree functions,
3230 balance-windows-1 and balance-windows-2.
3231 (bw-adjust-window): Remove.
3232 (balance-windows-area-adjust): New function with functionality of
3233 bw-adjust-window but using resize-window.
3234 (set-window-text-height): Rewrite doc-string.
3235 Use normalize-live-window and resize-window.
3236 (enlarge-window-horizontally, shrink-window-horizontally):
3237 Rename argument to DELTA.
3238 (window-buffer-height): New function.
3239 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
3240 Rewrite using new window resize routines.
3241 (kill-buffer-and-window, mouse-autoselect-window-select):
3242 Use ignore-errors instead of condition-case.
3243 (quit-window): Call delete-frame instead of delete-windows-on
3244 for the only buffer on frame.
3245
3246 2011-06-10 Martin Rudalics <rudalics@gmx.at>
3247
3248 * loadup.el (top-level): Load window before files for the sake
3249 of replace-buffer-in-windows.
3250
3251 * files.el (read-buffer-to-switch)
3252 (switch-to-buffer-other-window)
3253 (switch-to-buffer-other-frame, display-buffer-other-frame):
3254 Move to window.el.
3255
3256 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
3257 (previous-buffer): Move to window.el.
3258
3259 * bindings.el (unbury-buffer): Move to window.el.
3260
3261 * window.el (delete-other-windows-vertically): Move after
3262 definition of delete-other-windows.
3263 (other-window, delete-windows-on, replace-buffer-in-windows):
3264 Move here from window.c.
3265 (record-window-buffer, unrecord-window-buffer)
3266 (set-window-buffer-start-and-point, switch-to-prev-buffer)
3267 (switch-to-next-buffer): New functions.
3268 (get-next-valid-buffer, last-buffer, next-buffer): Move here
3269 from simple.el. Call switch-to-next-buffer.
3270 (previous-buffer): Move here from simple.el.
3271 Call switch-to-prev-buffer.
3272 (bury-buffer): Move here from buffer.c. Switch to previous
3273 buffer when window cannot be deleted.
3274 (unbury-buffer): Move here from bindings.el.
3275 (ctl-x-map): Move binding for other-window from window.c to
3276 here.
3277 (read-buffer-to-switch, switch-to-buffer-other-window)
3278 (switch-to-buffer-other-frame): Move here from files.el.
3279 (normalize-buffer-to-switch-to): New functions.
3280 (switch-to-buffer): Move here from buffer.c.
3281 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
3282
3283 2011-06-10 Martin Rudalics <rudalics@gmx.at>
3284
3285 * window.el (window-min-height, window-min-width): Move here
3286 from window.c. Add defcustoms and rewrite doc-strings.
3287 (resize-mini-window, resize-window): New functions.
3288 (adjust-window-trailing-edge, enlarge-window, shrink-window):
3289 Move here from window.c.
3290 (maximize-window, minimize-window): New functions.
3291 (delete-window, delete-other-windows, split-window): Move here
3292 from window.c.
3293 (window-split-min-size): New function.
3294 (split-window-keep-point): Mention split-window-above-each-other
3295 instead of split-window-vertically.
3296 (split-window-above-each-other, split-window-vertically):
3297 Rename split-window-vertically to split-window-above-each-other and
3298 provide defalias for old definition.
3299 (split-window-side-by-side, split-window-horizontally): Rename
3300 split-window-horizontally to split-window-side-by-side and provide
3301 defalias for the old definition.
3302 (ctl-x-map): Move bindings for delete-window,
3303 delete-other-windows and enlarge-window here from window.c.
3304 Replace bindings for split-window-vertically and
3305 split-window-horizontally by bindings for
3306 split-window-above-each-other and split-window-side-by-side.
3307
3308 * cus-start.el (all): Remove entries for window-min-height and
3309 window-min-width. Add entries for window-splits and
3310 window-nest.
3311
3312 2011-06-09 Glenn Morris <rgm@gnu.org>
3313
3314 * calendar/appt.el (appt-mode-line): New function.
3315 (appt-check, appt-disp-window): Use it.
3316
3317 * files.el (hack-one-local-variable-eval-safep):
3318 Allow minor-modes with explicit +/-1 arguments.
3319
3320 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
3321
3322 * term/xterm.el (xterm): Add defgroup.
3323 (xterm-extra-capabilities): Add defcustom to supply known xterm
3324 capabilities, skip querying them, or query them (default).
3325 (terminal-init-xterm): Use it.
3326 (terminal-init-xterm-modify-other-keys): New function to set up
3327 modifyOtherKeys support to simplify `terminal-init-xterm'.
3328
3329 2011-06-09 Martin Rudalics <rudalics@gmx.at>
3330
3331 * window.el (resize-window-reset, resize-window-reset-1)
3332 (resize-subwindows-skip-p, resize-subwindows-normal)
3333 (resize-subwindows, resize-other-windows, resize-this-window)
3334 (resize-root-window, resize-root-window-vertically)
3335 (window-deletable-p, window-or-subwindow-p)
3336 (frame-root-window-p): New functions.
3337
3338 2011-06-09 Glenn Morris <rgm@gnu.org>
3339
3340 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
3341 (ange-ftp-get-files): Use it.
3342
3343 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
3344
3345 * mail/sendmail.el (mail-recover-1, mail-recover):
3346 * files.el (recover-file, recover-session):
3347 Handle dired-listing-switches not being just a single short option.
3348
3349 2011-06-09 Glenn Morris <rgm@gnu.org>
3350
3351 * calendar/appt.el (appt-display-message, appt-disp-window):
3352 Handle lists of appointments.
3353
3354 2011-06-08 Martin Rudalics <rudalics@gmx.at>
3355
3356 * window.el (one-window-p): Move down in code.
3357 Rewrite doc-string.
3358 (window-current-scroll-bars): Rewrite doc-string.
3359 Normalize live window argument.
3360 (walk-windows, get-window-with-predicate, count-windows):
3361 Rewrite doc-string. Use window-list-1.
3362 (window-in-direction-2, window-in-direction, get-mru-window):
3363 New functions.
3364
3365 2011-06-08 Reuben Thomas <rrt@sc3d.org>
3366
3367 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
3368 Doc fix (Bug#8713).
3369
3370 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
3371
3372 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
3373
3374 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
3375
3376 * loadhist.el (unload-feature-special-hooks):
3377 Add `comint-output-filter-functions'.
3378
3379 2011-06-08 Ivan Kanis <gnu@kanis.fr>
3380
3381 * calendar/appt.el (appt-check): Move some initializations into the let.
3382
3383 2011-06-08 Martin Rudalics <rudalics@gmx.at>
3384
3385 * window.el (window-height): Defalias to window-total-height.
3386 (window-width): Defalias to window-body-width.
3387
3388 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
3389
3390 * image-mode.el (image-toggle-animation): New command.
3391 (image-mode-map): Bind it to RET.
3392 (image-mode): Update message.
3393 (image-toggle-display-image): Avoid a spurious cache flush.
3394 (image-transform-rotation): Doc fix.
3395 (image-transform-properties): Return quickly in the normal case.
3396 (image-animate-loop): Rename from image-animate-max-time.
3397
3398 * image.el (image-animate-max-time): Move to image-mode.el.
3399 (create-animated-image): Remove unnecessary function.
3400 (image-animate): Rename from image-animate-start. New arg.
3401 (image-animate-stop): Remove; just use image-animate-timer.
3402 (image-animate-timer): Use car-safe.
3403 (image-animate-timeout): Rename argument.
3404
3405 2011-06-07 Martin Rudalics <rudalics@gmx.at>
3406
3407 * window.el (get-lru-window, get-largest-window): Move here from
3408 window.c. Rename first argument to ALL-FRAMES.
3409 Rephrase doc-strings.
3410 (get-buffer-window-list): Rewrite using window-list-1.
3411 Rephrase doc-string.
3412 (window-safe-min-height, window-safe-min-width): New constants.
3413 (window-size-ignore, window-min-size, window-min-size-1)
3414 (window-sizable, window-sizable-p, window-size-fixed-1)
3415 (window-size-fixed-p, window-min-delta-1, window-min-delta)
3416 (window-max-delta-1, window-max-delta, window-resizable)
3417 (window-resizable-p, window-total-height, window-total-width)
3418 (window-body-width): New functions.
3419 (window-full-height-p, window-full-width-p): Rewrite using
3420 window-total-size.
3421 (window-body-height): Rewrite using window-body-size.
3422
3423 2011-06-06 Martin Rudalics <rudalics@gmx.at>
3424
3425 * window.el (window-right, window-left, window-child)
3426 (window-child-count, window-last-child, window-any-p)
3427 (normalize-live-buffer, normalize-live-frame)
3428 (normalize-any-window, normalize-live-window)
3429 (window-iso-combination-p, window-iso-combined-p)
3430 (window-iso-combinations)
3431 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
3432 (windows-with-parameter, window-with-parameter)
3433 (window-atom-root, make-window-atom, window-atom-check-1)
3434 (window-atom-check, window-side-check, window-check):
3435 New functions.
3436 (ignore-window-parameters, window-sides, window-sides-vertical)
3437 (window-sides-slots): New variables.
3438 (window-size-fixed): Move down in code. Minor doc-string fix.
3439
3440 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
3441
3442 * comint.el (comint-dynamic-complete-as-filename)
3443 (comint-dynamic-complete-filename): Correctly call
3444 completion-in-region.
3445
3446 2011-06-05 Deniz Dogan <deniz@dogan.se>
3447
3448 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
3449 in last change.
3450
3451 2011-06-05 Deniz Dogan <deniz@dogan.se>
3452
3453 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
3454 (rcirc): Use it to prompt for encryption.
3455
3456 2011-06-05 Roland Winkler <winkler@gnu.org>
3457
3458 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
3459 (bibtex-search-entries): New command bound to C-c C-a.
3460 (bibtex-display-entries): New function.
3461
3462 2011-06-05 Roland Winkler <winkler@gnu.org>
3463
3464 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
3465 (bibtex-insert-kill): After yanking insert newline if necessary.
3466 (bibtex-initialize): Call bibtex-string-files-init only once.
3467 (bibtex-mode): Do not call easy-menu-add.
3468 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
3469 (bibtex-yank): Set arg properly if nil.
3470
3471 2011-06-05 Roland Winkler <winkler@gnu.org>
3472
3473 * textmodes/bibtex.el (bibtex-search-entry-globally):
3474 New variable.
3475 (bibtex-search-entry): Use it.
3476
3477 2011-06-05 Roland Winkler <winkler@gnu.org>
3478
3479 * textmodes/bibtex.el (bibtex-entry-format): New option
3480 sort-fields.
3481 (bibtex-format-entry, bibtex-reformat): Honor this option.
3482 (bibtex-parse-entry): Return fields in proper order.
3483
3484 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
3485
3486 * doc-view.el (doc-view-remove-if): Move computation of result out
3487 of `dolist' to silence misleading lexical-binding warning.
3488
3489 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
3490
3491 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
3492 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
3493
3494 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
3495
3496 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
3497 "SunOS 5.10".
3498
3499 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
3500
3501 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
3502 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
3503 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
3504 (tramp-parse-putty):
3505 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
3506 (tramp-completion-function-alist-ssh)
3507 (tramp-completion-function-alist-telnet)
3508 (tramp-completion-function-alist-su)
3509 (tramp-completion-function-alist-putty): Set `tramp-autoload'
3510 cookie.
3511
3512 * net/tramp-ftp.el:
3513 * net/tramp-sh.el:
3514 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
3515 load "tramp.el" `tramp-set-completion-function'.
3516
3517 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
3518
3519 * shell.el: Require and use pcomplete.
3520 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
3521 (shell-completion-vars): Set pcomplete-default-completion-function.
3522
3523 2011-06-04 Deniz Dogan <deniz@dogan.se>
3524
3525 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
3526 `memq' (Bug#8799).
3527
3528 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
3529
3530 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
3531
3532 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
3533
3534 * bs.el (bs--mark-unmark, bs--nth-wrapper):
3535 * mpc.el (mpc-select-extend, mpc-songpointer-context):
3536 * vc/log-view.el (log-view-beginning-of-defun):
3537 * vc/smerge-mode.el (smerge-apply-resolution-patch)
3538 (smerge-refine-forward, smerge-refine-chopup-region):
3539 Silence warning for unused `dotimes' counter variables.
3540
3541 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
3542
3543 * net/tramp.el (tramp-with-progress-reporter): Rename from
3544 with-progress-reporter. Use `declare'.
3545 * net/tramp-smb.el:
3546 * net/tramp-sh.el:
3547 * net/tramp-gvfs.el: Update all uses.
3548
3549 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
3550
3551 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
3552 buffer isn't killed before making it current.
3553
3554 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
3555
3556 Silence various byte-compiler warnings.
3557 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
3558 `access-type' and new obsolescence format.
3559 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
3560 new format.
3561 (byte-compile-check-variable): New `access-type' argument.
3562 Only warn if the access-type is obsolete.
3563 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
3564 (byte-compile-variable-set): Adjust callers.
3565 * help-fns.el (describe-variable): Adjust to new obsolescence format.
3566 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
3567 setting it as obsolete.
3568 * simple.el (minibuffer-completing-symbol):
3569 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
3570 access as obsolete.
3571 * minibuffer.el (minibuffer-completing-file-name): Don't make it
3572 obsolete yet.
3573 * international/quail.el (quail-mouse-choose-completion): Remove unused
3574 code referring to obsolete var.
3575 (quail-choose-completion-string): Remove.
3576 * server.el (server-clients-with, server-kill-buffer-query-function)
3577 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
3578 * proced.el (proced-send-signal):
3579 * emacs-lisp/lisp.el (lisp-complete-symbol):
3580 Replace completion-annotate-function with completion-extra-properties.
3581
3582 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
3583
3584 * simple.el (goto-line): Use read-number.
3585 (overriding-map-is-bound): Remove.
3586 (saved-overriding-map): Change default.
3587 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
3588 Take the map as argument.
3589 (universal-argument, negative-argument, digit-argument): Use it.
3590 (restore-overriding-map): Adjust.
3591 (do-auto-fill): Use fill-forward-paragraph.
3592 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
3593
3594 * minibuffer.el (minibuffer-inactive-mode-map): New var.
3595 (minibuffer-inactive-mode): New major mode.
3596 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
3597 the *Messages* buffer" hack.
3598 (mouse-popup-menubar): Don't burp if the event is a normal key.
3599
3600 Miscellaneous tweaks.
3601 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
3602 lexical scoping as in subr.el's dolist and dotimes.
3603 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
3604 Silence compiler warning.
3605 * thingatpt.el (forward-whitespace): Trivial coding style fix.
3606 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
3607 * international/ccl.el (ccl-compile): Trivial simplification.
3608 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
3609 * emacs-lisp/testcover.el (testcover-end): Remove spurious
3610 `printflag' argument.
3611 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
3612 Purecopy the whole obsolescence data.
3613
3614 2011-06-01 Leo Liu <sdl.web@gmail.com>
3615
3616 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
3617 improve doc-string as suggested by Marco Pessotto
3618 <melmothx@gmail.com>.
3619 (rcirc-print): Fix last change.
3620
3621 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
3622
3623 * minibuffer.el (complete-with-action): Return nil for the metadata and
3624 boundaries of non-functional tables.
3625 (completion-table-dynamic): Return nil for the metadata.
3626 (completion-table-with-terminator): Add default case, using
3627 complete-with-action.
3628 (completion--metadata): New function.
3629 (completion-all-sorted-completions, minibuffer-completion-help): Use it
3630 to try and avoid pathological performance problems.
3631 (completion--embedded-envvar-table): Return `category' metadata.
3632
3633 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
3634
3635 * subr.el (process-alive-p): New tiny convenience function.
3636
3637 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
3638
3639 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
3640 content but also its previous major mode.
3641
3642 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
3643
3644 * debug.el (debug): Restore the previous content of the
3645 *Backtrace* buffer when we exit with C-M-c.
3646
3647 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
3648
3649 * minibuffer.el: Add metadata method to completion tables.
3650 (completion-category-overrides): New defcustom.
3651 (completion-metadata, completion--field-metadata)
3652 (completion-metadata-get, completion--styles)
3653 (completion--cycle-threshold): New functions.
3654 (completion-try-completion, completion-all-completions):
3655 Add `metadata' argument to choose completion-styles.
3656 (completion--do-completion): Use metadata to choose cycling.
3657 (completion-all-sorted-completions): Use metadata for sorting.
3658 Remove :completion-cycle-penalty which is not needed any more.
3659 (completion--try-word-completion): Add `metadata' argument.
3660 (minibuffer-completion-help): Check metadata for annotation function
3661 and sorting.
3662 (completion-file-name-table): Return `category' metadata.
3663 (minibuffer-completing-file-name): Make obsolete.
3664 * simple.el (minibuffer-completing-symbol): Make obsolete.
3665 * icomplete.el (icomplete-completions): Pass new `metadata' param to
3666 completion-try-completion.
3667
3668 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
3669
3670 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
3671
3672 2011-05-30 Leo Liu <sdl.web@gmail.com>
3673
3674 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
3675 (rcirc-print): Decode all incoming messages (bug#8744).
3676 (rcirc-decode-coding-system): Allow value nil for automatic coding
3677 system detection.
3678
3679 2011-06-01 Glenn Morris <rgm@gnu.org>
3680
3681 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
3682
3683 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
3684
3685 * image.el (image-animate-max-time): Allow nil and t values.
3686 Default to nil.
3687 (create-animated-image): Doc fix.
3688 (image-animate-start): Remove second arg; just use
3689 image-animate-max-time.
3690 (image-animate-timeout): Doc fix. Args changed.
3691
3692 * image-mode.el (image-toggle-display-image): Ensure that the
3693 image spec passed to the animate timer is the same object as in
3694 the the buffer's display property (Bug#6981).
3695 (image-transform-properties): Doc fix.
3696
3697 * image.el (image-animate-max-time): Default to nil.
3698
3699 2011-05-29 Martin Rudalics <rudalics@gmx.at>
3700
3701 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
3702 entire buffer list (Bug#8184).
3703
3704 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
3705
3706 * image.el (imagemagick-types-inhibit)
3707 (imagemagick-register-types): Doc fix.
3708
3709 2011-05-29 Deniz Dogan <deniz@dogan.se>
3710
3711 * net/rcirc.el (rcirc): Use the user's stored encryption method by
3712 default.
3713
3714 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
3715
3716 * select.el: Don't perform clipboard-manager saving in hooks;
3717 leave the hooks empty.
3718
3719 2011-05-28 Leo Liu <sdl.web@gmail.com>
3720
3721 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
3722 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
3723 (occur-edit-mode): New major mode (Bug#8463).
3724 (occur-after-change-function): New function.
3725 (occur-engine): Give Occur tags a read-only property.
3726
3727 2011-05-28 Kevin Ryde <user42@zip.com.au>
3728
3729 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
3730
3731 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
3732
3733 * bindings.el (help-echo): Make the initial non-indicator dash
3734 empty on graphical terminals (Bug#7295).
3735
3736 * files.el (auto-mode-alist): Move config rule after the
3737 in-stripping one (Bug#8547).
3738
3739 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
3740
3741 * startup.el (normal-splash-screen): Remove gratuitous mode-line
3742 setting (Bug#8740).
3743
3744 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
3745
3746 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
3747 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
3748 (Bug#8539).
3749
3750 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
3751
3752 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
3753
3754 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
3755
3756 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
3757 (hs-hide-block-at-point, hs-find-block-beginning)
3758 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
3759 (Bug#8279).
3760
3761 2011-05-28 Glenn Morris <rgm@gnu.org>
3762
3763 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
3764
3765 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
3766
3767 * help-fns.el (describe-function-1): If the function is a derived
3768 major mode, print the parent mode.
3769
3770 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
3771 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
3772
3773 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
3774
3775 * minibuffer.el (completion--capf-wrapper): Check applicability before
3776 retuning non-nil for non-exclusive completion data.
3777 * progmodes/etags.el (tags-completion-at-point-function):
3778 * info-look.el (info-lookup-completions-at-point): Mark as
3779 non-exclusive.
3780 (info-complete): Adjust accordingly.
3781
3782 * info-look.el: Convert to lexical-binding and completion-at-point.
3783 (info-lookup-completions-at-point): New function.
3784 (info-complete): Use it and completion-in-region.
3785
3786 2011-05-28 Drew Adams <drew.adams@oracle.com>
3787
3788 * isearch.el: Let M-e start with point at the first mismatched char.
3789 (isearch-fail-pos): New function.
3790 (isearch-edit-string): Use it.
3791
3792 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
3793
3794 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
3795
3796 2009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
3797
3798 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
3799 traversal functions for avl-trees.
3800 (avl-tree--stack): New struct.
3801 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
3802 (avl-tree-enter): Add optional `updatefun' arg.
3803 (avl-tree--do-enter): Add optional `updatefun' arg.
3804 Change return value.
3805 (avl-tree-delete): Add optional `test' and `nilflag' args.
3806 (avl-tree--do-delete): Add `test' and `nilflag' args.
3807 Change return value.
3808 (avl-tree-member): Add optional `nilflag'
3809 (avl-tree-member-p): New function.
3810 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
3811 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
3812 (avl-tree-stack-empty-p): New functions.
3813
3814 2009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
3815
3816 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
3817 avl-tree--del-balance1 and make it work both ways.
3818 (avl-tree--del-balance2): Remove.
3819 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
3820 make it work both ways.
3821 (avl-tree--enter-balance2): Remove.
3822 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
3823 New macros.
3824 (avl-tree--mapc, avl-tree-map): Add direction argument.
3825
3826 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
3827
3828 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
3829
3830 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
3831
3832 * select.el: Support clipboard managers with built-in function
3833 x-clipboard-manager-save, via delete-frame-functions and
3834 kill-emacs-hook.
3835 (xselect-convert-to-targets): Add MULTIPLE target to list.
3836 (xselect-convert-to-save-targets): New function.
3837
3838 2011-05-27 Kenichi Handa <handa@m17n.org>
3839
3840 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
3841 let-binding rfc2047-encode-encoded-words to nil.
3842
3843 2011-05-27 Glenn Morris <rgm@gnu.org>
3844
3845 * mail/emacsbug.el: Don't require url-util.
3846
3847 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
3848
3849 * files.el (set-auto-mode):
3850 Also respect mode: entries at the end of the file. (Bug#8586)
3851
3852 2011-05-26 Glenn Morris <rgm@gnu.org>
3853
3854 * files.el (hack-local-variables-prop-line, hack-local-variables):
3855 Downcase mode names, as seems to be traditional.
3856 (hack-local-variables, hack-local-variables-apply): Doc fixes.
3857
3858 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
3859 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
3860
3861 2011-05-25 Julien Danjou <julien@danjou.info>
3862
3863 * textmodes/rst.el (rst-define-level-faces): Do not define face
3864 symbol if it is already defined.
3865
3866 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
3867
3868 * play/5x5.el (5x5-new-game, 5x5-randomize):
3869 Reset 5x5-solver-output to nil when a new grid is cast.
3870 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
3871 these debugging traces, as defmacro breaks the compiled code.
3872
3873 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
3874
3875 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
3876
3877 2011-05-24 Leo Liu <sdl.web@gmail.com>
3878
3879 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
3880 (vc-bzr-sha1): Adapt.
3881
3882 * sha1.el: Remove. Function `sha1' is now builtin.
3883
3884 * bindings.el: Provide sha1 feature.
3885
3886 2011-05-24 Kenichi Handa <handa@m17n.org>
3887
3888 * mail/sendmail.el: Require `rfc2047'.
3889 (mail-insert-from-field): Do not perform RFC2047 encoding.
3890 (mail-encode-header): New function.
3891 (sendmail-send-it): Set buffer-file-coding-system of the work
3892 buffer to the return value of select-message-coding-system.
3893 Call mail-encode-header.
3894
3895 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
3896
3897 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
3898
3899 * mail/supercite.el (sc-default-cite-frame):
3900 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
3901
3902 2011-05-24 Glenn Morris <rgm@gnu.org>
3903
3904 * progmodes/python.el (brm-menu): Declare.
3905
3906 * emulation/viper.el (viper-set-hooks): Declare.
3907
3908 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
3909 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
3910 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
3911 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
3912 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
3913 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
3914
3915 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
3916
3917 Add an :exit-function for completion-at-point.
3918
3919 * minibuffer.el (completion--done): New fun.
3920 (completion--do-completion): Use it. New arg `expect-exact'.
3921 (minibuffer-complete, minibuffer-complete-word): Don't output message,
3922 since completion--do-completion does it for us now.
3923 (minibuffer-force-complete): Use completion--done and
3924 completion--replace. Handle sole-completion case with more care.
3925 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
3926 (completion-extra-properties): New var.
3927 (completion-annotate-function): Make obsolete.
3928 (minibuffer-completion-help): Adjust accordingly.
3929 Use completion-list-insert-choice-function.
3930 (completion-at-point, completion-help-at-point):
3931 Bind completion-extra-properties.
3932 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
3933 * simple.el (completion-list-insert-choice-function): New var.
3934 (completion-setup-function): Preserve it.
3935 (choose-completion): Pay attention to it, shuffle the code a bit.
3936 (choose-completion-string): New arg `insert-function'.
3937
3938 * textmodes/bibtex.el: Convert to lexical binding.
3939 (bibtex-mode-map): Use completion-at-point.
3940 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
3941 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
3942 (bibtex-complete): Define as obsolete alias.
3943 (bibtex-complete-internal): Remove.
3944 (bibtex-format-entry): Remove unused sub-group in regexp.
3945 * shell.el (shell--command-completion-data)
3946 (shell-environment-variable-completion):
3947 * pcomplete.el (pcomplete-completions-at-point):
3948 * comint.el (comint--complete-file-name-data): Use :exit-function
3949 instead of completion-table-with-terminator so it also works for
3950 choose-completion.
3951
3952 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
3953
3954 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
3955
3956 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
3957 (bug#8710).
3958
3959 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
3960
3961 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
3962
3963 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
3964 customization variable and implement: If non-nil, auto-fill will
3965 be inhibited while on topic's header line.
3966
3967 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
3968
3969 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
3970 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
3971 always have a solution in grid size = 5 cases.
3972 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
3973 (5x5-solver-output, 5x5-log-buffer): New vars.
3974 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
3975 Make these variables buffer local to achieve 5x5 multi-session-ness.
3976 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
3977 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
3978 (5x5-solve-suggest): New funs.
3979 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
3980 randomize a grid so that we ensure that there is always a solution.
3981 (5x5-make-random-grid): Allow other movement than flipping.
3982
3983 2011-05-23 Kevin Ryde <user42@zip.com.au>
3984
3985 * emacs-lisp/advice.el (ad-read-advised-function):
3986 Use `function-called-at-point' as the default default, if it has
3987 advice and passes PREDICATE.
3988
3989 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
3990
3991 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
3992 byte-compile-lambda if it's actually a lambda.
3993
3994 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
3995 Fix function quoting. Use backquote better.
3996
3997 2011-05-22 Yuanle Song <sylecn@gmail.com>
3998
3999 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
4000 matching (Bug#8516).
4001
4002 2011-01-22 Jari Aalto <jari.aalto@cante.net>
4003
4004 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
4005 different face (Bug#8178).
4006
4007 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
4008
4009 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
4010 defface (Bug#8144).
4011
4012 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
4013
4014 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
4015 funcall as well (bug#8712). Warn when performing those conversions.
4016 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
4017
4018 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
4019
4020 2011-05-22 Glenn Morris <rgm@gnu.org>
4021
4022 * files.el (hack-local-variables-prop-line): Small simplifications.
4023 (hack-local-variables, hack-local-variables-prop-line):
4024 If MODE-ONLY, return the mode, rather than just `t'.
4025
4026 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
4027
4028 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
4029
4030 2011-05-21 Glenn Morris <rgm@gnu.org>
4031
4032 * files.el (hack-local-variables-prop-line, hack-local-variables):
4033 If only interested in the mode, don't bother doing the other stuff.
4034
4035 * image-mode.el (image-after-revert-hook):
4036 Redraw all frames on which the image is visible. (Bug#8567)
4037
4038 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
4039
4040 * wid-edit.el (widget-checklist-match-inline):
4041 Fix 2011-04-19 change. (Bug#8649)
4042
4043 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
4044
4045 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
4046 Also allow singlespace after single-letter capitals followed by a dot.
4047
4048 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
4049 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
4050
4051 2011-05-20 Nix <nix@esperi.org.uk>
4052
4053 * files.el (basic-save-buffer-2):
4054 Fix handling of break-hardlink-on-save with non-existent files.
4055
4056 2011-05-19 Deniz Dogan <deniz@dogan.se>
4057
4058 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
4059 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
4060
4061 2011-05-19 Glenn Morris <rgm@gnu.org>
4062
4063 * progmodes/f90.el (f90-type-def-re):
4064 Handle "type, bind(c)". (Bug#8691)
4065
4066 * emacs-lisp/autoload.el (batch-update-autoloads):
4067 Set autoload-excludes by parsing loadup.el rather than Makefiles.
4068
4069 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
4070
4071 * net/tramp.el (tramp-process-actions): Set "first-password-request"
4072 property for the correct connection in case of multihops.
4073
4074 2011-05-18 Glenn Morris <rgm@gnu.org>
4075
4076 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
4077 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
4078
4079 Rationalize calendar handling of day and month abbrev-arrays.
4080 * calendar/calendar.el (calendar-customized-p): New function.
4081 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
4082 (calendar-day-name-array, calendar-month-name-array): Doc fix.
4083 Add :set function.
4084 (calendar-abbrev-length, calendar-day-abbrev-array)
4085 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
4086 (calendar-day-abbrev-array, calendar-month-abbrev-array):
4087 Elements may no longer be nil.
4088 (calendar-day-name, calendar-month-name):
4089 Update for changed nature of abbrev arrays.
4090 * calendar/diary-lib.el (diary-name-pattern):
4091 Update for changed nature of abbrev arrays.
4092 (diary-mark-entries-1): Update calendar-make-alist calls.
4093 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
4094 * calendar/cal-html.el (cal-html-day-abbrev-array):
4095 Simply inherit from calendar-day-abbrev-array.
4096
4097 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4098
4099 * progmodes/grep.el (grep-mode): Disable default
4100 compilation-directory-matcher setting (bug#8684).
4101
4102 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
4103
4104 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
4105 instead of "head" and "tail". There were problems with SunOS 5.9,
4106 and it performs better.
4107
4108 2011-05-17 Glenn Morris <rgm@gnu.org>
4109
4110 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
4111
4112 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
4113 Replace obsolete function.
4114
4115 * shell.el (pcomplete-parse-arguments-function): Declare.
4116
4117 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
4118 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
4119 (appt-check): Doc fixes.
4120 (appt-disp-window-function, appt-delete-window-function):
4121 Remove needless special case in custom :type.
4122 (appt-display-count): Default to 0, not nil.
4123 (appt-check): Reset appt-display-count to 0, not nil.
4124
4125 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
4126
4127 * progmodes/python.el (python-font-lock-keywords):
4128 Add the Python 3.X keyword "nonlocal" (bug#8639).
4129
4130 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
4131
4132 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
4133
4134 2011-05-16 Kevin Ryde <user42@zip.com.au>
4135
4136 * info-look.el (makefile-automake-mode): New setups, looking in
4137 automake manual, then makefile-mode.
4138 (makefile-mode): Remove automake manual, have it just in
4139 makefile-automake-mode since there's various things different or
4140 not relevant to plain make.
4141 (makefile-mode): Remove "other-modes" non-existent automake-mode,
4142 believe a hypothetical automake-mode would go to makefile-mode,
4143 not the other way around.
4144
4145 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
4146
4147 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
4148 hunk-end tags (Bug#8672).
4149
4150 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
4151 vc-annotate-show-diff-revision-at-line (Bug#8671).
4152
4153 2011-05-14 Glenn Morris <rgm@gnu.org>
4154
4155 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
4156 in the middle of an existing one with multiple authors. (Bug#8645)
4157 (change-log-font-lock-keywords): Also handle multiple author lines
4158 with leading tabs. (Bug#8644)
4159
4160 * calendar/appt.el (appt-check): Rename some local variables.
4161 Some simplification/reordering.
4162
4163 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
4164 (feedmail-sendmail-f-doesnt-sell-me-out)
4165 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
4166 (feedmail-debug-sit-for, feedmail-queue-express-hook)
4167 (feedmail-queue-runner-message-sender): Set :version.
4168 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
4169 (bbdb-dwim-net-address, vm-mail): Declare.
4170 (feedmail-binmail-gnulinuxish-template):
4171 Rename from feedmail-binmail-linuxish-template.
4172 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
4173 Use insert-buffer-substring.
4174
4175 2011-05-14 Bill Carpenter <bill@carpenter.org>
4176
4177 * mail/feedmail.el (feedmail-patch-level): Increase.
4178 (feedmail-debug): New custom group.
4179 (feedmail-confirm-outgoing-timeout)
4180 (feedmail-sendmail-f-doesnt-sell-me-out)
4181 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
4182 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
4183 (feedmail-sender-line, feedmail-from-line)
4184 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
4185 (feedmail-spray-this-address)
4186 (feedmail-spray-address-fiddle-plex-list)
4187 (feedmail-queue-use-send-time-for-date)
4188 (feedmail-queue-use-send-time-for-message-id)
4189 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
4190 (feedmail-buffer-eating-function):
4191 Doc fixes.
4192 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
4193 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
4194 (feedmail-message-action-scroll-down): New functions.
4195 (feedmail-queue-directory, feedmail-queue-draft-directory):
4196 Use expand-file-name.
4197 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
4198 Remove C-v help entry.
4199 (feedmail-queue-buffer-file-name): New variable.
4200 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
4201 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
4202 (feedmail-message-action-send-strong, feedmail-message-action-edit)
4203 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
4204 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
4205 (feedmail-message-action-toggle-spray)
4206 (feedmail-run-the-queue-no-prompts)
4207 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
4208 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
4209 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
4210 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
4211 (feedmail-envelope-deducer, feedmail-fiddle-from)
4212 (feedmail-fiddle-sender, feedmail-default-date-generator)
4213 (feedmail-fiddle-date, feedmail-fiddle-message-id)
4214 (feedmail-fiddle-spray-address)
4215 (feedmail-fiddle-list-of-spray-fiddle-plexes)
4216 (feedmail-fiddle-list-of-fiddle-plexes)
4217 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
4218 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
4219 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
4220 Change default. Doc fix.
4221 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
4222 (feedmail-binmail-linuxish-template): New constant.
4223 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
4224 Respect feedmail-sendmail-f-doesnt-sell-me-out.
4225 (feedmail-send-it): Add debug call.
4226 Use feedmail-queue-buffer-file-name, and
4227 feedmail-send-it-immediately-wrapper.
4228 (feedmail-message-action-send): Add debug call.
4229 Use feedmail-send-it-immediately-wrapper.
4230 (feedmail-queue-express-to-queue): Add debug call.
4231 Run feedmail-queue-express-hook.
4232 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
4233 (feedmail-message-action-help-blat):
4234 Rename from feedmail-queue-send-edit-prompt-help-first.
4235 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
4236 Check line-endings. Handle errors better.
4237 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
4238 Doc fix. Add debug call.
4239 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
4240 Use feedmail-queue-send-edit-prompt-inner.
4241 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
4242 (feedmail-queue-send-edit-prompt-inner): New function, extracted
4243 from feedmail-queue-send-edit-prompt.
4244 (feedmail-queue-send-edit-prompt-help)
4245 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
4246 (feedmail-tidy-up-slug): Add debug call.
4247 Respect feedmail-queue-slug-suspect-regexp.
4248 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
4249 (feedmail-dump-message-to-queue): Add debug call.
4250 Expand queue-directory.
4251 (feedmail-dump-message-to-queue): Change message slightly.
4252 Use feedmail-say-chatter.
4253 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
4254 (feedmail-send-it-immediately-wrapper): New function.
4255 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
4256 Insert empty string rather than newline. Handle full-frame case.
4257 Use catch/throw. Use feedmail-say-chatter.
4258 (feedmail-fiddle-from): Try mail-host-address.
4259 (feedmail-default-message-id-generator): Doc fix.
4260 Bind system-time-locale. Handle missing end.
4261 (feedmail-fiddle-x-mailer): Add debug call.
4262 Handle feedmail-x-mailer-line being nil.
4263 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
4264 Add debug call. Use buffer-substring-no-properties.
4265 (feedmail-say-debug, feedmail-say-chatter): New functions.
4266 (feedmail-find-eoh): Give an explicit error.
4267
4268 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
4269
4270 * net/newst-treeview.el (newsticker-treeview-face): Change default
4271 family from helvetica to sans.
4272 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
4273 etc/images/newsticker.
4274
4275 * net/newst-reader.el (newsticker-feed-face): Change default
4276 family from helvetica to sans.
4277
4278 * net/newst-plainview.el (newsticker-new-item-face)
4279 (newsticker-old-item-face, newsticker-immortal-item-face)
4280 (newsticker-obsolete-item-face, newsticker-date-face)
4281 (newsticker-statistics-face): Change default family from
4282 helvetica to sans.
4283 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
4284 etc/images/newsticker.
4285
4286 * net/newst-backend.el (newsticker--do-run-auto-mark-filter),
4287 (newsticker--process-auto-mark-filter-match): : Tell user about
4288 auto-marking.
4289
4290 2011-05-13 Didier Verna <didier@xemacs.org>
4291
4292 Common Lisp indentation improvements on defmethod and lambda-lists.
4293 * cl-indent.el: Advertise the changes and remove obsolete TODO entries.
4294 (lisp-lambda-list-keyword-parameter-indentation)
4295 (lisp-lambda-list-keyword-parameter-alignment)
4296 (lisp-lambda-list-keyword-alignment): New customizable user options.
4297 (lisp-indent-defun-method): Improve docstring.
4298 (extended-loop-p): Fix comment.
4299 (lisp-indent-lambda-list-keywords-regexp): New variable.
4300 (lisp-indent-lambda-list): New function.
4301 (lisp-indent-259): Use it.
4302 (lisp-indent-defmethod): Support for more than one
4303 method qualifier and properly indent methods lambda-lists.
4304 (defgeneric): Provide a missing common-lisp-indent-function property.
4305
4306 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
4307
4308 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
4309 bounds for the empty string (bug#8667).
4310
4311 2011-05-13 Glenn Morris <rgm@gnu.org>
4312
4313 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
4314
4315 * mail/sendmail.el (sendmail-program): Try executable-find first.
4316 (sendmail-send-it): `sendmail-program' cannot be unbound.
4317
4318 * calendar/appt.el (appt-make-list): Simplify.
4319 (appt-time-msg-list): Doc fix.
4320 (appt-check): Change mode-line message at the time of the appointment.
4321
4322 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
4323
4324 * progmodes/ld-script.el (ld-script-keywords)
4325 (ld-script-builtins): Update keywords list.
4326
4327 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
4328
4329 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
4330
4331 * shell.el (shell-completion-vars): New function.
4332 (shell-mode):
4333 * simple.el (read-shell-command): Use it.
4334 (blink-matching-open): No need for " [...]" in minibuffer-message.
4335
4336 2011-05-12 Glenn Morris <rgm@gnu.org>
4337
4338 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
4339 (appt-check): Simplify.
4340
4341 2011-05-12 Eli Zaretskii <eliz@gnu.org>
4342
4343 * smerge-mode.el (smerge-resolve): Use null-device rather than a
4344 literal "/dev/null".
4345
4346 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
4347
4348 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
4349 Fix typo.
4350
4351 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
4352
4353 * progmodes/which-func.el (which-function):
4354 Use add-log-current-defun instead of add-log-current-defun-function,
4355 which might not be defined (Bug#8260).
4356
4357 2011-05-12 Glenn Morris <rgm@gnu.org>
4358
4359 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
4360 Let byte-compile-initial-macro-environment always take precedence.
4361
4362 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
4363
4364 * net/rcirc.el: Add support for SSL/TLS connections.
4365 (rcirc-server-alist): New field `encryption'.
4366 (rcirc): Check `encryption' settings.
4367 (rcirc-connect): New arg `encryption'. Use open-network-stream.
4368 Merge make-local-variable into `set'.
4369 (rcirc--connection-open-p): New function.
4370 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
4371 the process is not a network process (e.g. running gnutls-cli).
4372 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
4373 Make rcirc-(en|de)code-coding-system local here.
4374 (rcirc-mode): Merge make-local-variable into `set'.
4375 (rcirc-parent-buffer): Make permanent buffer-local.
4376 (rcirc-multiline-minor-mode): Don't do it here.
4377 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
4378 there's no server buffer.
4379
4380 2011-05-11 Glenn Morris <rgm@gnu.org>
4381
4382 * newcomment.el (comment-kill): Prefix "unused" local.
4383
4384 * term/w32console.el (get-screen-color): Declare.
4385
4386 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
4387 Handle symbol elements of byte-compile-initial-macro-environment.
4388
4389 2011-05-10 Leo Liu <sdl.web@gmail.com>
4390
4391 * bookmark.el (bookmark-bmenu-mode-map):
4392 Bind bookmark-bmenu-search to `/'.
4393
4394 * mail/footnote.el: Convert to utf-8 encoding.
4395 (footnote-unicode-string, footnote-unicode-regexp): New variable.
4396 (Footnote-unicode): New function.
4397 (footnote-style-alist): Add unicode style to the list.
4398 (footnote-style): Doc fix.
4399
4400 2011-05-10 Jim Meyering <meyering@redhat.com>
4401
4402 Fix doubled-word typos.
4403 * international/quail.el (quail-insert-kbd-layout): and and -> and
4404 * kermit.el: and and -> and
4405 * net/ldap.el (ldap-search-internal): to to -> to
4406 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
4407 * progmodes/js.el (js-mode): and and -> and
4408 * textmodes/artist.el (artist-move-to-xy): at at -> at
4409 (artist-draw-region-trim-line-endings): if if -> if
4410 And Safetyc -> Safety.
4411 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
4412
4413 2011-05-10 Glenn Morris <rgm@gnu.org>
4414 Stefan Monnier <monnier@iro.umontreal.ca>
4415
4416 * files.el (hack-one-local-variable-eval-safep):
4417 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
4418
4419 2011-05-10 Glenn Morris <rgm@gnu.org>
4420
4421 * calendar/diary-lib.el (diary-list-entries-hook)
4422 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
4423 (diary-nongregorian-marking-hook, diary-list-entries)
4424 (diary-include-other-diary-files, diary-mark-entries)
4425 (diary-mark-included-diary-files): Doc fixes.
4426
4427 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
4428
4429 * misc.el: Require tabulated-list.el during compilation.
4430
4431 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
4432
4433 * progmodes/compile.el (compilation-start):
4434 Run compilation-filter-hook for the async case too.
4435 (compilation-filter-hook): Doc fix.
4436
4437 2011-05-09 Deniz Dogan <deniz@dogan.se>
4438
4439 * wdired.el: Remove outdated installation comment. Fix usage
4440 comment.
4441
4442 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
4443
4444 * misc.el: Implement new command `list-dynamic-libraries'.
4445 (list-dynamic-libraries--loaded-only-p): New variable.
4446 (list-dynamic-libraries--refresh): New function.
4447 (list-dynamic-libraries): New command.
4448
4449 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
4450
4451 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4452 Fix the ant regexp to handle end-line and end-column info from jikes.
4453 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
4454 higher priority to avoid clobbering by gnu.
4455
4456 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
4457
4458 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
4459 if the face has existing theme settings (Bug#8454).
4460
4461 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
4462
4463 * progmodes/perl-mode.el (perl-imenu-generic-expression):
4464 Only match variables declared via `my' or `our' (Bug#8261).
4465
4466 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
4467 special file names `.' and `..' (Bug#8259).
4468
4469 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
4470
4471 * progmodes/grep.el (grep-mode-font-lock-keywords):
4472 Remove buffer-changing entries.
4473 (grep-filter): New function.
4474 (grep-mode): Add it to compilation-filter-hook.
4475
4476 * progmodes/compile.el (compilation-filter-hook)
4477 (compilation-filter-start): New defvars.
4478 (compilation-filter): Call compilation-filter-hook prior to
4479 updating the process mark.
4480
4481 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
4482
4483 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
4484
4485 2011-05-07 Eli Zaretskii <eliz@gnu.org>
4486
4487 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
4488 mailclient-send-it even if window-system is nil. (Bug#8595)
4489
4490 * term/w32console.el (terminal-init-w32console):
4491 Call get-screen-color and use its output to set the frame
4492 background-mode. (Bug#8597)
4493
4494 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
4495
4496 Make bytecomp.el understand that defmethod defines funs (bug#8631).
4497 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
4498 New functions.
4499 (defgeneric, eieio--defmethod): Use them.
4500 (eieio-defgeneric): Remove.
4501 (defmethod): Call defgeneric in a way visible to the byte-compiler.
4502
4503 2011-05-07 Glenn Morris <rgm@gnu.org>
4504
4505 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
4506 Use let rather than let*.
4507 (timeclock-find-discrep): Remove unused local.
4508
4509 * calendar/diary-lib.el (diary-comment-start): Doc fix.
4510
4511 * calendar/appt.el (appt-time-msg-list): Doc fix.
4512
4513 2011-05-06 Noah Friedman <friedman@splode.com>
4514
4515 * apropos.el (apropos-print-doc): Only use
4516 emacs-lisp-docstring-fill-column when it is bound to an integer,
4517 per that variable's documentation.
4518
4519 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
4520
4521 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
4522 and warnings are not silently discarded (e.g. use -d instead of -P).
4523
4524 2011-05-06 Glenn Morris <rgm@gnu.org>
4525
4526 * calendar/appt.el (appt-message-warning-time): Doc fix.
4527 (appt-warning-time-regexp): New option.
4528 (appt-make-list): Respect appt-message-warning-time.
4529
4530 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
4531 New options.
4532 (diary-add-to-list): Strip comments from the displayed string.
4533 (diary-mode): Set comment-start and comment-end.
4534
4535 * vc/diff-mode.el (smerge-refine-subst): Declare.
4536 (diff-refine-hunk): Don't require smerge-mode when compiling.
4537
4538 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
4539
4540 * simple.el (list-processes): Return nil as the docstring says.
4541
4542 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
4543
4544 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
4545 to "".
4546 (ange-ftp-write-region, ange-ftp-insert-file-contents)
4547 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
4548 determining of binary transfer. (Bug#7383)
4549
4550 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
4551
4552 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
4553 Fix port computation bug. (Bug#8618)
4554
4555 2011-05-05 Glenn Morris <rgm@gnu.org>
4556
4557 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
4558
4559 * simple.el (shell-dynamic-complete-functions)
4560 (comint-dynamic-complete-functions): Declare.
4561
4562 * net/network-stream.el (gnutls-negotiate):
4563 * simple.el (tabulated-list-print): Fix declarations.
4564
4565 * progmodes/gud.el (syntax-symbol, syntax-point):
4566 Remove unnecessary and incorrect declarations.
4567
4568 * emacs-lisp/check-declare.el (check-declare-scan):
4569 Handle byte-compile-initial-macro-environment in bytecomp.el
4570
4571 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
4572
4573 Fix earlier half-done eieio-defmethod change (bug#8338).
4574 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
4575 Streamline and change calling convention.
4576 (defmethod): Adjust accordingly and simplify.
4577 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
4578 new eieio--defmethod.
4579 (slot-boundp): Minor CSE simplification.
4580
4581 2011-05-05 Milan Zamazal <pdm@zamazal.org>
4582
4583 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
4584 (glasses-make-readable): Use glasses-separate-capital-groups.
4585
4586 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
4587
4588 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
4589 (warning-series): Doc fix.
4590 (display-warning): Don't try to create the buffer if we just found it.
4591
4592 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
4593
4594 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
4595 (autoload-find-generated-file): New function.
4596 (generate-file-autoloads): Bind generated-autoload-file to
4597 buffer-file-name.
4598 (update-file-autoloads, update-directory-autoloads):
4599 Use autoload-find-generated-file. If called interactively, prompt for
4600 output file (Bug#7989).
4601 (batch-update-autoloads): Doc fix.
4602
4603 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
4604
4605 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
4606
4607 2011-05-04 Glenn Morris <rgm@gnu.org>
4608
4609 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
4610 function, so it follows changes in calendar-date-style.
4611 (diary-fancy-date-matcher): New function.
4612 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
4613 (diary-fancy-font-lock-fontify-region-function):
4614 Use diary-fancy-date-pattern as a function.
4615
4616 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
4617 non-numbers for `year' etc pseudo-variables. (Bug#8583)
4618
4619 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
4620
4621 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
4622 instead of positional arguments. Allow :keylist and :crlfiles
4623 arguments.
4624 (open-gnutls-stream): Call it.
4625
4626 * net/network-stream.el (network-stream-open-starttls): Adjust to
4627 call `gnutls-negotiate' with :process and :hostname arguments.
4628
4629 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
4630
4631 * minibuffer.el (completion--message): New function.
4632 (completion--do-completion, minibuffer-complete)
4633 (minibuffer-force-complete, minibuffer-complete-word): Use it.
4634 (completion--do-completion): Don't ignore completion-auto-help when in
4635 icomplete-mode.
4636
4637 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
4638 internal encoding (e.g. tibetan zero is not whitespace).
4639 (global-whitespace-mode): Prefer save-current-buffer.
4640 (whitespace-trailing-regexp): Remove useless save-match-data.
4641 (whitespace-empty-at-bob-regexp): Minor simplification.
4642
4643 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
4644
4645 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
4646
4647 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4648
4649 * textmodes/ispell.el (ispell-add-per-file-word-list):
4650 Use `concat' to create string for insertion.
4651
4652 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
4653
4654 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
4655 Avoid open-line which runs post-self-insert-hook.
4656 (bibtex-fill-entry): Remove unused `end' var.
4657
4658 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
4659
4660 * textmodes/ispell.el (ispell-add-per-file-word-list):
4661 Protect against `nil' value of `comment-start' (Bug#8579).
4662
4663 2011-05-03 Leo Liu <sdl.web@gmail.com>
4664
4665 * isearch.el (isearch-yank-pop): New command.
4666 (isearch-mode-map): Bind it to `M-y'.
4667 (isearch-forward): Mention it.
4668
4669 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
4670
4671 * simple.el (minibuffer-complete-shell-command): Remove.
4672 (minibuffer-local-shell-command-map): Use completion-at-point.
4673 (read-shell-command): Setup completion vars here instead.
4674 (read-expression-map): Bind TAB to symbol completion.
4675
4676 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
4677 error directly rather via storing it into `results'.
4678
4679 2011-05-02 Leo Liu <sdl.web@gmail.com>
4680
4681 * vc/diff.el: Fix description.
4682
4683 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4684
4685 * server.el (server-eval-at): New function.
4686
4687 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
4688
4689 * net/network-stream.el (open-network-stream): Take a :nowait
4690 parameter and pass it on to `make-network-process'.
4691 (network-stream-open-plain): Ditto.
4692
4693 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
4694
4695 * faces.el (face-spec-set-match-display): Don't match toolkit
4696 options on terminal frames.
4697
4698 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
4699
4700 * progmodes/pascal.el: Use lexical binding.
4701 (pascal-mode-map): Remove author preferences.
4702
4703 * pcomplete.el (pcomplete-std-complete): Don't abuse
4704 completion-at-point.
4705
4706 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
4707
4708 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
4709 removing code that has been dead since 1991 or so.
4710
4711 * startup.el (command-line): When warning about "_emacs", use a
4712 delayed warning to allow the user to filter it out.
4713
4714 2011-04-28 Deniz Dogan <deniz@dogan.se>
4715
4716 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
4717 user has not joined.
4718
4719 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
4720
4721 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
4722 aren't any completions at point.
4723
4724 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
4725
4726 * subr.el (display-delayed-warnings): New function.
4727 (delayed-warnings-hook): New variable.
4728
4729 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
4730
4731 * minibuffer.el (completion-at-point, completion-help-at-point):
4732 Don't presume that a given completion-at-point-function will always
4733 use the same calling convention.
4734
4735 * pcomplete.el (pcomplete-completions-at-point):
4736 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
4737 pcomplete-seen is non-nil.
4738 (pcomplete-comint-setup): Also recognize the new comint/shell
4739 completion functions.
4740 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
4741 pcomplete-seen is non-nil.
4742
4743 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
4744
4745 * calendar/icalendar.el (diary-lib): Add require statement.
4746 (icalendar--create-uid): Read out a uid from a text-property on
4747 the first character in the entry. This allows for code to add its
4748 own uid to the entry.
4749 (icalendar--convert-float-to-ical): Add export of
4750 `diary-float'-entries save for those with the optional DAY
4751 argument.
4752
4753 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
4754
4755 * subr.el (shell-quote-argument): Use alternate escaping strategy
4756 when we spot a variable reference in a string.
4757
4758 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
4759
4760 * cus-start.el (all): Define customization for debug-on-event.
4761
4762 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
4763
4764 * subr.el (shell-quote-argument): Escape correctly under Windows.
4765
4766 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
4767
4768 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
4769
4770 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
4771
4772 * net/tramp.el (tramp-process-actions): Add POS argument.
4773 Delete region between POS and (pos).
4774
4775 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
4776 Use `nil' position in `tramp-process-actions' call.
4777 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
4778
4779 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
4780 position in `tramp-process-actions' call.
4781
4782 * net/trampver.el: Update release number.
4783
4784 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
4785
4786 * custom.el (defcustom): Obey lexical-binding.
4787
4788 Fix octave-inf completion problems reported by Alexander Klimov.
4789 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
4790 Inherit from octave-mode-syntax-table.
4791 (inferior-octave-mode): Set info-lookup-mode.
4792 (inferior-octave-completion-at-point): New function.
4793 (inferior-octave-complete): Use it and completion-in-region.
4794 (inferior-octave-dynamic-complete-functions): Use it as well, and use
4795 comint-filename-completion.
4796 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
4797 symbol elements which shouldn't be word elements.
4798 (octave-font-lock-keywords, octave-beginning-of-defun)
4799 (octave-function-header-regexp): Adjust regexps accordingly.
4800 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
4801
4802 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
4803
4804 * net/gnutls.el (gnutls-errorp): Declare before first use.
4805
4806 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
4807
4808 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
4809 verify-error, and verify-hostname-error parameters. Check whether
4810 default trustfile exists before going to use it. Add missing
4811 argument to gnutls-message-maybe call. Return return value.
4812 Reported by Claudio Bley <claudio.bley@gmail.com>.
4813 (open-gnutls-stream): Add usage example.
4814
4815 * net/network-stream.el (network-stream-open-starttls): Give host
4816 parameter to `gnutls-negotiate'.
4817 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
4818 * subr.el (shell-quote-argument): Escape correctly under Windows.
4819
4820 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
4821
4822 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
4823 Use correct match group (bug#8438).
4824
4825 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
4826
4827 * emacs-lisp/package.el (package-built-in-p): Fix typo.
4828 (package-menu--generate): New arg specifying packages to show.
4829 (package-menu-refresh, package-menu-execute, list-packages):
4830 Callers changed.
4831 (package-show-package-list): New function, replacing deleted
4832 package--list-packages (renamed because it is non-internal).
4833
4834 * finder.el (finder-list-matches): Use package-show-package-list
4835 instead of deleted package--list-packages.
4836
4837 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
4838 Based on a previous implementation by Juanma Barranquero (Bug#8366).
4839 (vc-annotate-mode-map): Bind it to RET.
4840
4841 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
4842
4843 * progmodes/etags.el (next-file): Don't use set-buffer to change
4844 buffers (Bug#8478).
4845
4846 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
4847
4848 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
4849
4850 * apropos.el (apropos-label-face): Avoid variable-pitch face.
4851 (apropos-accumulator): Doc fix.
4852 (apropos-function, apropos-macro, apropos-command)
4853 (apropos-variable, apropos-face, apropos-group, apropos-widget)
4854 (apropos-plist): Add face property.
4855 (apropos-symbols-internal): Fix indentation.
4856 (apropos-print): Simplify help, and recognize apropos-multi-type.
4857 (apropos-print-doc): Use button-type-get to extract the button's
4858 face property. Fill docstring (Bug#8352).
4859
4860 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
4861
4862 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
4863
4864 * play/mpuz.el (mpuz-silent): Doc fix.
4865 (mpuz-mode-map): Use mapc.
4866 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
4867 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
4868 Fix typos in docstrings.
4869
4870 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
4871 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
4872
4873 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
4874
4875 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
4876
4877 * minibuffer.el (completion--do-completion): Avoid the "Next char
4878 not unique" prompt if icomplete-mode is enabled (Bug#5849).
4879
4880 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
4881 mouse-2 into unread-command-events, it is interpreted correctly.
4882
4883 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
4884 (image-toggle-display): Doc fix.
4885
4886 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
4887
4888 * textmodes/page.el (what-page): Use line-number-at-pos to
4889 calculate line number (Bug#6825).
4890
4891 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
4892
4893 * eshell/esh-mode.el (find-tag-interactive): Declare function.
4894 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
4895 Pass argument NO-DEFAULT to `find-tag-interactive'.
4896
4897 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
4898
4899 Lexical-binding cleanup.
4900
4901 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
4902 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
4903 * progmodes/ada-prj.el (ada-prj-initialize-values)
4904 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
4905 (ada-prj-show-value):
4906 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
4907 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
4908 (antlr-invalidate-context-cache, antlr-options-menu-filter)
4909 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
4910 * progmodes/bug-reference.el (bug-reference-push-button):
4911 * progmodes/fortran.el (fortran-line-length):
4912 * progmodes/glasses.el (glasses-change):
4913 * progmodes/octave-mod.el (octave-fill-paragraph):
4914 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
4915 (python-pdbtrack-grub-for-buffer, python-sentinel):
4916 * progmodes/sql.el (sql-save-connection):
4917 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
4918 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
4919 Mark unused parameters.
4920
4921 * progmodes/compile.el (compilation--flush-directory-cache)
4922 (compilation--flush-parse, compile-internal): Mark unused parameters.
4923 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
4924 (compilation-next-error-function): Remove unused variable `timestamp'.
4925
4926 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
4927 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
4928
4929 * progmodes/dcl-mode.el (dcl-end-of-command):
4930 Remove unused variable `start'.
4931 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
4932 (dcl-option-value-basic, dcl-option-value-offset)
4933 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
4934 Mark unused parameters.
4935 (dcl-save-local-variable): Remove unused variable `val'.
4936 (mode): Declare.
4937
4938 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
4939 Mark unused parameters.
4940 (delphi-ignore-changes): Move before first use.
4941 (delphi-charset-token-at): Remove unused variable `start'.
4942 (delphi-else-start): Remove unused variable `if-count'.
4943 (delphi-comment-block-start, delphi-comment-block-end):
4944 Remove unused variable `kind'.
4945 (delphi-indent-line): Remove unused variable `new-point'.
4946
4947 * progmodes/ebrowse.el (ebrowse-files-list)
4948 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
4949 Mark unused parameters. Don't quote `lambda'.
4950 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
4951 Don't quote `lambda'.
4952 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
4953 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
4954 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
4955 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
4956 Use `ignore-errors'.
4957 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
4958 (ebrowse-view/find-file-and-search-pattern)
4959 (ebrowse-view/find-member-declaration/definition):
4960 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
4961 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
4962 Rename parameter PREFIX-ARG to PREFIX.
4963 (ebrowse-tags-read-name): Remove unused variables `start' and
4964 `member-info'.
4965 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
4966 to `tags-file'.
4967
4968 * progmodes/etags.el (local-find-tag-hook): Declare.
4969 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
4970 Mark unused parameters.
4971
4972 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
4973 (executable-interpret): Mark unused parameter.
4974
4975 * progmodes/flymake.el (flymake-process-sentinel)
4976 (flymake-after-change-function)
4977 (flymake-create-temp-with-folder-structure)
4978 (flymake-get-include-dirs-dot): Mark unused parameters.
4979 (flymake-safe-delete-directory): Remove unused variable `err'.
4980
4981 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
4982 (speedbar-timer-fn, speedbar-line-text)
4983 (speedbar-change-expand-button-char, speedbar-delete-subblock)
4984 (speedbar-center-buffer-smartly): Declare functions.
4985 (gdb-find-watch-expression): Remove unused variable `array'.
4986 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
4987 (gdb-starting): Mark unused parameters.
4988 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
4989 (gdb-table-string): Remove unused variable `res'.
4990 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
4991 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
4992 (gdb-display-buffer): Remove unused variable `cur-size'.
4993
4994 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
4995 allow lexical-binding compilation.
4996 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
4997 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
4998 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
4999 Mark unused parameters.
5000 (gud-gdb-marker-filter): Remove unused variable `match'.
5001 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
5002 lambda expressions and funcall them, instead of using `fset'.
5003
5004 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
5005 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
5006
5007 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
5008 variable `header-beg'; use `let'.
5009
5010 * progmodes/icon.el (indent-icon-exp): Remove unused variables
5011 `restart', `last-sexp' and `at-do'.
5012
5013 * progmodes/js.el (js--debug): Mark unused parameter.
5014 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
5015 (js--splice-into-items): Remove unused variable `item'.
5016 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
5017
5018 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
5019 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
5020 (makefile-complete): Remove unused variable `try'.
5021 (makefile-fill-paragraph, makefile-match-function-end):
5022 Mark unused parameters.
5023
5024 * progmodes/octave-inf.el (inferior-octave-complete):
5025 Remove unused variable `proc'.
5026 (inferior-octave-output-digest): Mark unused parameter.
5027
5028 * progmodes/perl-mode.el (perl-calculate-indent):
5029 Remove unused variable `err'.
5030
5031 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
5032 (prolog-indent-line): Mark unused parameters.
5033 (prolog-indent-line): Remove unused variable `beg'.
5034
5035 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
5036 (reporter-dont-compact-list): Declare.
5037
5038 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
5039 Remove unused variable `char'.
5040 (sh-debug): Mark unused parameter.
5041 (sh-get-indent-info): Remove unused variable `start'.
5042 (sh-calculate-indent): Remove unused variable `var'.
5043
5044 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
5045 (simula-electric-keyword): Remove unused variable `null'.
5046 (simula-search-backward, simula-search-forward): Remove unused
5047 variables `begin' and `end'.
5048
5049 * progmodes/vera-mode.el (vera-guess-basic-syntax):
5050 Remove unused variable `pos'.
5051 (vera-electric-tab, vera-comment-uncomment-region):
5052 Mark unused parameters.
5053 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
5054
5055 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
5056
5057 * emacs-lisp/package.el (package--builtins, package-alist)
5058 (package-load-descriptor, package-built-in-p, package-activate)
5059 (define-package, package-installed-p)
5060 (package-compute-transaction, package-buffer-info)
5061 (package--push): Doc fix. Distinguish more clearly between
5062 version strings and version lists.
5063
5064 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
5065
5066 Lexical-binding cleanup.
5067
5068 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
5069 (5x5-make-mutate-best):
5070 * play/fortune.el (fortune-in-buffer):
5071 * play/gomoku.el (gomoku-init-display):
5072 * play/solitaire.el (solitaire, solitaire-do-check):
5073 * play/tetris.el (tetris-default-update-speed-function):
5074 Mark unused parameters.
5075
5076 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
5077 (bubbles--shift): Remove unused variable `char-org'.
5078 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
5079 (bubbles--show-images): Remove unused variable `char'.
5080
5081 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
5082 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
5083 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
5084 (decipher-analyze-buffer): Use ?\s.
5085 (decipher-make-checkpoint): Remove unused variable `mapping'.
5086
5087 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
5088
5089 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
5090 Remove unused variable `result'; use `let'.
5091
5092 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
5093 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
5094 (gametree-children-shown-p, gametree-compute-reduced-score):
5095 Use `ignore-errors'.
5096
5097 * play/handwrite.el (ps-lpr-switches): Declare.
5098 (handwrite): Remove unused variables `pmin' and `lastp'.
5099
5100 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
5101
5102 * play/landmark.el (landmark-init-display)
5103 (landmark-update-naught-weights): Mark unused parameters.
5104 (landmark-y): Remove unused variable `noise'. Simplify.
5105 (landmark-human-plays): Remove unused variable `score'.
5106
5107 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
5108 (mpuz-try-proposal): Remove unused variable `game'.
5109
5110 * play/zone.el (life-patterns): Declare.
5111
5112 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
5113
5114 * vc/vc.el (ediff-vc-internal): Declare function.
5115
5116 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
5117
5118 * shell.el: Use lexical-binding and std completion UI.
5119 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
5120 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
5121 comint-preoutput-filter-functions rather than on
5122 comint-output-filter-functions.
5123 (shell-command-completion, shell--command-completion-data)
5124 (shell-filename-completion, shell-environment-variable-completion)
5125 (shell-c-a-p-replace-by-expanded-directory): New functions.
5126 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
5127 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
5128 (shell-dynamic-complete-environment-variable): Use them.
5129 (shell-dynamic-complete-as-environment-variable)
5130 (shell-dynamic-complete-as-command): Remove.
5131 (shell-match-partial-variable): Match past point.
5132 * comint.el: Clean up use of completion-at-point-functions.
5133 (comint-completion-at-point): New function.
5134 (comint-mode): Use it completion-at-point-functions.
5135 (comint-dynamic-complete): Make it obsolete.
5136 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
5137 (comint-c-a-p-replace-by-expanded-history): New function.
5138 (comint-dynamic-complete-functions)
5139 (comint-replace-by-expanded-history): Use it.
5140 * minibuffer.el (completion-table-with-terminator): Allow dynamic
5141 termination strings. Try harder to avoid second try-completion.
5142 (completion-in-region-mode-map): Disable bindings that don't work yet.
5143
5144 * comint.el: Use lexical-binding. Require CL.
5145 (comint-dynamic-complete-functions): Use comint-filename-completion.
5146 (comint-completion-addsuffix): Tweak custom type.
5147 (comint-filename-completion, comint--common-suffix)
5148 (comint--common-quoted-suffix, comint--table-subvert)
5149 (comint--complete-file-name-data): New functions.
5150 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
5151 (comint-dynamic-list-filename-completions): Use them.
5152 (comint-dynamic-simple-complete): Make obsolete.
5153
5154 * minibuffer.el (completion-in-region-mode):
5155 Keep completion-in-region-mode--predicate global.
5156 (completion-in-region--postch):
5157 Assume completion-in-region-mode--predicate is not null.
5158
5159 * progmodes/flymake.el (flymake-start-syntax-check-process):
5160 Obey `dir'. Simplify.
5161
5162 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
5163 we're in VC after all.
5164
5165 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
5166
5167 * vc/vc.el (vc-diff-build-argument-list-internal)
5168 (vc-version-ediff, vc-ediff): New commands.
5169 (vc-version-diff): Use vc-diff-build-argument-list-internal.
5170
5171 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
5172
5173 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
5174 add sanity check.
5175
5176 * obsolete/erc-hecomplete.el: Make obsolete.
5177 * obsolete/: Standardize obsolescence info in the header.
5178
5179 2011-04-20 Glenn Morris <rgm@gnu.org>
5180
5181 * calendar/solar.el (solar-horizontal-coordinates):
5182 Use the longitude argument rather than `calendar-longitude'.
5183 (solar-date-next-longitude): Remove unused locals.
5184
5185 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5186
5187 * whitespace.el: New version 13.2.1.
5188
5189 2011-04-20 felix <EmacsWiki> (tiny change)
5190
5191 * whitespace.el (global-whitespace-mode): Keep highlight when
5192 switching between major modes on a file.
5193
5194 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
5195
5196 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
5197 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
5198 multi-line comments as well.
5199
5200 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
5201
5202 Lexical-binding cleanup.
5203
5204 * arc-mode.el (archive-mode-revert):
5205 * cmuscheme.el (scheme-interactively-start-process):
5206 * custom.el (custom-initialize-delay):
5207 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
5208 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
5209 * emacs-lock.el (emacs-lock-clear-sentinel):
5210 * ezimage.el (defezimage):
5211 * follow.el (follow-avoid-tail-recenter):
5212 * fringe.el (set-fringe-mode-1):
5213 * generic-x.el (bat-generic-mode-compile):
5214 * help-mode.el (help-info-variable, help-do-xref)
5215 (help-mode-revert-buffer):
5216 * help.el (view-emacs-todo):
5217 * iswitchb.el (iswitchb-completion-help):
5218 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
5219 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
5220 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
5221 * locate.el (locate-update):
5222 * longlines.el (longlines-encode-region)
5223 (longlines-after-change-function):
5224 * outline.el (outline-isearch-open-invisible):
5225 * ps-def.el (declare-function, charset-dimension, char-width)
5226 (encode-char):
5227 * ps-mule.el (ps-mule-plot-string):
5228 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
5229 (recentf-edit-list-select, recentf-edit-list-validate)
5230 (recentf-open-files-action):
5231 * rect.el (delete-whitespace-rectangle-line)
5232 (rectangle-number-line-callback):
5233 * register.el (window-configuration-to-register)
5234 (frame-configuration-to-register):
5235 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
5236 * select.el (xselect-convert-to-string, xselect-convert-to-length)
5237 (xselect-convert-to-targets, xselect-convert-to-delete)
5238 (xselect-convert-to-filename, xselect-convert-to-charpos)
5239 (xselect-convert-to-lineno, xselect-convert-to-colno)
5240 (xselect-convert-to-os, xselect-convert-to-host)
5241 (xselect-convert-to-user, xselect-convert-to-class)
5242 (xselect-convert-to-name, xselect-convert-to-integer)
5243 (xselect-convert-to-atom, xselect-convert-to-identity):
5244 * subr.el (declare, ignore, process-kill-without-query)
5245 (text-clone-maintain):
5246 * terminal.el (te-get-char, te-tic-sentinel):
5247 * tool-bar.el (tool-bar-make-keymap):
5248 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
5249 * type-break.el (type-break-mode, type-break-noninteractive-query):
5250 * view.el (View-back-to-mark):
5251 * wid-browse.el (widget-browse-action, widget-browse-widget)
5252 (widget-browse-widgets, widget-browse-sexp):
5253 * widget.el (define-widget-keywords):
5254 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
5255 Mark unused parameters.
5256
5257 * align.el (align-adjust-col-for-rule): Mark unused parameter.
5258 (align-areas): Remove unused variable `look'.
5259 (align-region): Remove unused variables `real-end' and `pos-list'.
5260
5261 * apropos.el (apropos-score-doc): Remove unused variable `i'.
5262
5263 * bindings.el (mode-line-modified, mode-line-remote):
5264 Mark unused parameters.
5265 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
5266
5267 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
5268 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
5269
5270 * comint.el (comint-history-isearch-pop-state)
5271 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
5272 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
5273 (comint-substitute-in-file-name): Doc fix.
5274
5275 * completion.el (cmpl-statistics-block): Mark unused parameter.
5276 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
5277 (save-completions-to-file, load-completions-from-file):
5278 Remove unused local variable `e'.
5279
5280 * composite.el (compose-chars): Remove unused variable `len'.
5281 (lgstring-insert-glyph): Remove unused variable `g'.
5282 (compose-glyph-string): Remove unused variables `ascent',
5283 `descent', `lbearing' and `rbearing'.
5284 (compose-glyph-string-relative): Remove unused variables
5285 `lbearing', `rbearing' and `wadjust'.
5286 (compose-gstring-for-graphic): Remove unused variables `header',
5287 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
5288 (compose-gstring-for-terminal): Remove unused variables `header'
5289 and `nchars'. Use `let', not `let*'.
5290
5291 * cus-edit.el (Custom-set, Custom-save, custom-reset)
5292 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
5293 (Custom-buffer-done, custom-buffer-create-internal)
5294 (custom-browse-visibility-action, custom-browse-group-tag-action)
5295 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
5296 (widget-magic-mouse-down-action, custom-toggle-parent)
5297 (custom-add-parent-links, custom-toggle-hide-variable)
5298 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
5299 (custom-toggle-hide-face, face, hook, custom-group-link-action)
5300 (custom-face-menu-create, custom-variable-menu-create, get)
5301 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
5302 (custom-reset-standard-save-and-update): Remove unused variable `value'.
5303 (customize-apropos): Remove unused variable `tests'.
5304 (custom-group-value-create): Remove unused variable `hidden-p'.
5305 (sort-fold-case): Declare.
5306
5307 * cus-theme.el (custom-reset-standard-faces-list)
5308 (custom-reset-standard-variables-list): Declare.
5309 (customize-create-theme, custom-theme-revert, custom-theme-write)
5310 (custom-theme-choose-mode, customize-themes, custom-theme-save):
5311 Mark unused parameters.
5312
5313 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
5314
5315 * delim-col.el (delimit-columns-max): Move defvar before first use.
5316
5317 * descr-text.el (describe-char-categories): Don't quote `lambda'.
5318 (describe-char): Don't quote `lambda'. Mark unused parameter.
5319
5320 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
5321 (auto-insert): Declare.
5322 (desktop-restore-file-buffer): Rename desktop-* parameters;
5323 mark unused ones.
5324 (desktop-create-buffer): Rename desktop-* parameters and bind them.
5325 (desktop-buffer): Rename desktop-* parameters.
5326
5327 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
5328 (dframe-reposition-frame-xemacs, dframe-help-echo)
5329 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
5330 Mark unused parameters.
5331
5332 * dired-aux.el (backup-extract-version-start, overwrite-query)
5333 (overwrite-backup-query, rename-regexp-query)
5334 (rename-non-directory-query): Declare.
5335 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
5336 (dired-add-entry): Remove unused variable `orig-file-name'.
5337 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
5338 Use parameter PRESERVE-TIME instead of accessing dynamic variable
5339 `dired-copy-preserve-time' directly.
5340 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
5341 (dired-insert-subdir-newpos): Rename unused variable `pos'.
5342
5343 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
5344 (dired-virtual-revert, dired-make-relative-symlink):
5345 Mark unused parameters.
5346 (manual-program): Declare.
5347 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
5348 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
5349 wrapped in `with-no-warnings' to avoid replacing one warning by another.
5350
5351 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
5352
5353 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
5354
5355 * echistory.el (electric-history-in-progress, Helper-return-blurb):
5356 Declare.
5357
5358 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
5359
5360 * electric.el (Electric-command-loop): Rename parameter
5361 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
5362
5363 * expand.el (expand-in-literal): Remove unused variable `here'.
5364
5365 * facemenu.el (facemenu-add-new-color):
5366 Remove unused variable `docstring'.
5367
5368 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
5369 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
5370 (face-attr-construct): Mark unused parameter. Doc fix.
5371 (read-color): Remove unused variable `hex-string'.
5372
5373 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
5374 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
5375 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
5376 (display-buffer-other-frame): Remove unused variable `old-window'.
5377 (kill-buffer-hook): Declare.
5378 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
5379 Mark unused parameters.
5380 (after-find-file): Pass 1 to `auto-save-mode', not t.
5381
5382 * files-x.el (auto-insert): Declare.
5383 (modify-file-local-variable-prop-line): Remove unused variable `val'.
5384
5385 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
5386 variable `buf'. Mark unused parameter.
5387 (find-lisp-insert-directory): Mark unused parameter.
5388
5389 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
5390 (format-encode-region): Remove unused variables `cur-buf' and `result'.
5391 (format-common-tail): Remove, unused.
5392 (format-deannotate-region): Remove unused variable `loc'.
5393 (format-annotate-region): Remove unused variable `p'.
5394 (format-annotate-single-property-change): Remove unused variables
5395 `default' and `tail'.
5396
5397 * forms.el (read-file-filter): Declare.
5398 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
5399
5400 * frame.el (frame-creation-function-alist): Mark unused parameter.
5401 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
5402
5403 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
5404 Remove unused parameters.
5405 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
5406 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
5407
5408 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
5409 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
5410 (hfy-prepare-tag-map): Mark unused parameters.
5411 (htmlfontify-buffer): Use `called-interactively-p'.
5412
5413 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
5414 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
5415 (ibuffer-do-occur): Mark unused parameters.
5416 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
5417 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
5418
5419 * ibuffer.el: Don't quote `lambda'.
5420 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
5421 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
5422 Mark unused parameters.
5423
5424 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
5425 (ido-completing-read): Mark unused parameters.
5426 (ido-copy-current-word): Mark unused parameters;
5427 remove unused variable `name'.
5428 (ido-sort-merged-list): Remove unused parameter `dirs'.
5429
5430 * ielm.el (ielm-input-sender): Mark unused parameter.
5431 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
5432 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
5433 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
5434 `ielm-string' as a dynamic variable accessible from the IELM prompt.
5435 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
5436
5437 * image-dired.el (image-dired-display-thumbs): Remove unused
5438 variables `curr-file' and `count'.
5439 (image-dired-remove-tag): Remove unused variable `start'.
5440 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
5441 variable `curr-file'
5442 (image-dired-rotate-original): Remove unused variable `temp-file'.
5443 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
5444 Remove unused variable `file'.
5445 (image-dired-gallery-generate): Remove unused variable `curr'.
5446 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
5447
5448 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
5449
5450 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
5451
5452 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
5453
5454 * isearch.el (minibuffer-history-symbol): Declare.
5455 (isearch-edit-string): Remove unused variable `err'.
5456 (isearch-message-prefix, isearch-message-suffix):
5457 Mark unused parameters.
5458
5459 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
5460
5461 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
5462
5463 * makesum.el (double-column): Remove unused variable `cnt'.
5464
5465 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
5466 (ido-ignore-item-temp-list): Declare.
5467
5468 * mouse-drag.el (mouse-drag-throw): Remove unused variables
5469 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
5470 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
5471 (mouse-drag-drag): Remove unused variables `mouse-delta' and
5472 `mouse-col-delta'.
5473
5474 * mouse-sel.el (mouse-extend-internal):
5475 Remove unused variable `orig-window-frame'.
5476
5477 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
5478 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
5479 Move declarations before first use.
5480 (pcomplete-opt): Mark unused parameters; doc fix.
5481
5482 * proced.el (proced-revert): Mark unused parameter.
5483 (proced-send-signal): Remove unused variable `err'.
5484
5485 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
5486 Rename parameter PREFIX-ARG to ARG.
5487 (ps-basic-plot-string, ps-basic-plot-whitespace):
5488 Mark unused parameters.
5489
5490 * replace.el (replace-count): Define.
5491 (occur-revert-function): Mark unused parameters.
5492 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
5493 (isearch-case-fold-search, isearch-string): Declare.
5494 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
5495 bind `case-fold-search'. Remove unused variables `beg' and `end',
5496 and simplify.
5497 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
5498 COUNT and bind `replace-count'.
5499 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
5500 to COUNT.
5501
5502 * savehist.el (print-readably, print-string-length): Declare.
5503
5504 * shadowfile.el (shadow-expand-cluster-in-file-name):
5505 Remove unused variable `cluster'.
5506 (shadow-copy-file): Remove unused variable `i'.
5507 (shadow-noquery, shadow-clusters, shadow-site-cluster)
5508 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
5509 (shadow-define-literal-group, shadow-define-regexp-group)
5510 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
5511
5512 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
5513 (shell): Use `called-interactively-p'.
5514 (shell-directory-tracker): Remove unused variable `chdir-failure'.
5515
5516 * simple.el (compilation-context-lines, comint-file-name-quote-list)
5517 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
5518 (delete-backward-char): Remove unused variable `ocol'.
5519 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
5520 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
5521 (event-apply-hyper-modifier, event-apply-shift-modifier)
5522 (event-apply-control-modifier, event-apply-meta-modifier):
5523 Mark unused parameters.
5524 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
5525 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
5526
5527 * speedbar.el (speedbar-ignored-directory-expressions)
5528 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
5529 (speedbar-find-file, speedbar-dir-follow)
5530 (speedbar-directory-buttons-follow, speedbar-tag-find)
5531 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
5532 (speedbar-buffers-line-directory, speedbar-buffer-click):
5533 Mark unused parameters.
5534 (speedbar-tag-file): Remove unused variable `mode'.
5535 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
5536
5537 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
5538
5539 * talk.el (talk): Remove unused variable `display'.
5540
5541 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
5542 (tar-write-region-annotate): Mark unused parameter.
5543
5544 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
5545 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
5546 Declare them, wrapped in `with-no-warnings' to avoid replacing one
5547 warning by another.
5548
5549 * time-stamp.el (time-stamp-string-preprocess):
5550 Remove unused variable `require-padding'.
5551
5552 * tree-widget.el (widget-glyph-enable): Declare.
5553 (tree-widget-action): Mark unused parameter.
5554
5555 * w32-fns.el (x-get-selection): Mark unused parameter.
5556 (autoload-make-program, generated-autoload-file): Declare.
5557
5558 * wdired.el (wdired-revert): Mark unused parameters.
5559 (wdired-xcase-word): Remove unused variable `err'.
5560
5561 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
5562 (whitespace-help-scroll): Remove unused variable `data-help'.
5563
5564 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
5565 (widget-image-insert, widget-after-change, default)
5566 (widget-default-format-handler, widget-default-notify)
5567 (widget-default-prompt-value, widget-info-link-action)
5568 (widget-url-link-action, widget-function-link-action)
5569 (widget-variable-link-action, widget-file-link-action)
5570 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
5571 (widget-field-prompt-internal, widget-field-action, widget-field-match)
5572 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
5573 (widget-insert-button-action, widget-delete-button-action, visibility)
5574 (widget-documentation-link-action, widget-documentation-string-action)
5575 (widget-const-prompt-value, widget-regexp-match, symbol)
5576 (widget-coding-system-prompt-value)
5577 (widget-key-sequence-value-to-external, sexp)
5578 (widget-sexp-value-to-internal, character, vector, cons)
5579 (widget-choice-prompt-value, widget-boolean-prompt-value)
5580 (widget-color--choose-action): Mark unused parameters.
5581 (widget-item-match-inline, widget-choice-match-inline)
5582 (widget-checklist-match, widget-checklist-match-inline)
5583 (widget-group-match): Rename parameter VALUES to VALS.
5584 (widget-field-value-set): Remove unused variable `size'.
5585 (widget-color-action): Remove unused variables `value' and `start'.
5586
5587 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
5588 variable `dir'. Doc fix.
5589 (windmove-find-other-window): Don't pass it.
5590
5591 * window.el (count-windows): Mark unused parameter.
5592 (bw-adjust-window): Remove unused variable `err'.
5593
5594 * woman.el (woman-file-name): Remove unused variable `default'.
5595 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
5596 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
5597 (global-font-lock-mode): Declare.
5598 (woman-decode-region): Mark unused parameter.
5599 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
5600
5601 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
5602 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
5603 (x-dnd-handle-moz-url): Remove unused variable `title'.
5604 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
5605
5606 * xml.el (xml-parse-tag, xml-parse-attlist):
5607 Remove unused variable `pos'.
5608
5609 2011-04-19 Glenn Morris <rgm@gnu.org>
5610
5611 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
5612 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
5613 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
5614 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
5615 * calendar/cal-html.el (cal-html-insert-minical):
5616 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
5617 (calendar-mark-date-pattern):
5618 Prefix "unused" locals.
5619
5620 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
5621 optional argument `style'.
5622
5623 * calendar/appt.el (appt-make-list):
5624 * calendar/cal-china.el (calendar-chinese-date-string):
5625 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
5626 (diary-hebrew-yahrzeit):
5627 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
5628 * calendar/calendar.el (calendar-generate-window):
5629 * calendar/time-date.el (time-to-days):
5630 Remove unused local variables.
5631
5632 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
5633
5634 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
5635 glyphless-char-display table.
5636 (tabulated-list-glyphless-char-display): New var.
5637
5638 2011-04-18 Sam Steingold <sds@gnu.org>
5639
5640 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
5641 to acknowledgments.
5642
5643 2011-04-17 Glenn Morris <rgm@gnu.org>
5644
5645 * calendar/diary-lib.el (diary-sexp-entry):
5646 * calendar/holidays.el (holiday-sexp):
5647 Set debug-on-error rather than the removed stack-trace-on-error.
5648
5649 2011-04-16 Glenn Morris <rgm@gnu.org>
5650
5651 * progmodes/f90.el: Use lexical-binding.
5652 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
5653
5654 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
5655
5656 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
5657 (mail-mode): Setup mailalias completion here instead.
5658 * mail/mailalias.el: Use lexical-binding.
5659 (pattern, mailalias-done): Declare dynamic.
5660 (mail-completion-at-point-function): New function, from mail-complete.
5661 (mail-complete): Use it.
5662 (mail-completion-expand): New function.
5663 (mail-get-names): Use it.
5664 (mail-directory, mail-directory-process, mail-directory-stream):
5665 Don't use `pattern' for lexically bound arg.
5666
5667 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
5668
5669 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
5670 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
5671 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
5672
5673 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
5674 (byte-save-window-excursion, byte-temp-output-buffer-setup)
5675 (byte-interactive-p): Define them again, for use when inlining
5676 old code.
5677
5678 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
5679
5680 * loadup.el: Use `string-to-number', not `string-to-int'.
5681
5682 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
5683
5684 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
5685 gud-gdb-complete-command.
5686 (gud-gdb-completions): New function, from gud-gdb-complete-command.
5687 (gud-gdb-completion-at-point): New function.
5688 (gud-gdb-completions): Remove.
5689
5690 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
5691
5692 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
5693 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
5694 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
5695 whether `executable-find' is bound.
5696
5697 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
5698
5699 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
5700
5701 * minibuffer.el (completion-in-region-mode-predicate)
5702 (completion-in-region-mode--predicate): New vars.
5703 (completion-in-region, completion-in-region--postch)
5704 (completion-in-region-mode): Use them.
5705 (completion--capf-wrapper): Also return the hook function.
5706 (completion-at-point, completion-help-at-point):
5707 Adjust and provide a predicate.
5708
5709 Preserve arg names for advice of subr and lexical functions (bug#8457).
5710 * help-fns.el (help-function-arglist): Consolidate the subr and
5711 new-byte-code cases. Add argument `preserve-names' to extract names
5712 from the docstring when needed.
5713 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
5714 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
5715 (ad-arglist): Use help-function-arglist's new arg.
5716 (ad-definition-type): Use cond.
5717
5718 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
5719
5720 * autorevert.el (auto-revert-handler):
5721 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
5722 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
5723 Don't quote lambda.
5724
5725 * image-mode.el (image-transform-set-scale):
5726 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
5727
5728 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
5729
5730 * net/network-stream.el (network-stream-open-starttls): Only do
5731 opportunistic STARTTLS upgrades if we have built-in gnutls support.
5732 Upgrades via gnutls-cli are too slow to be done opportunistically.
5733
5734 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
5735
5736 * dframe.el (dframe-current-frame): Remove spurious quote.
5737
5738 2011-04-12 Glenn Morris <rgm@gnu.org>
5739
5740 * calendar/cal-tex.el (cal-tex-end-document):
5741 Try to automatically use latin1 input if needed.
5742
5743 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
5744 Don't try to cons a mark onto an empty element.
5745
5746 2011-04-11 Leo Liu <sdl.web@gmail.com>
5747
5748 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
5749 buffers.
5750 (ido-kill-buffer-at-head): Support killing virtual buffers.
5751
5752 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
5753
5754 * minibuffer.el (completion-show-inline-help): New var.
5755 (completion--do-completion, minibuffer-complete)
5756 (minibuffer-force-complete, minibuffer-complete-word):
5757 Inhibit minibuffer messages if completion-show-inline-help is nil.
5758
5759 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
5760 to avoid interference from inline help (Bug#5849).
5761
5762 2011-04-10 Leo Liu <sdl.web@gmail.com>
5763
5764 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
5765 Fix typo.
5766
5767 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
5768
5769 * image-mode.el (image-toggle-display-image): Signal an error if
5770 not in Image mode.
5771 (image-transform-mode, image-transform-resize)
5772 (image-transform-set-rotation): Doc fix.
5773 (image-transform-set-resize): Delete.
5774 (image-transform-set-scale, image-transform-fit-to-height)
5775 (image-transform-fit-to-width): Handle image-toggle-display-image
5776 and image-transform-resize directly.
5777
5778 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
5779
5780 * doc-view.el (doc-view-fit-width-to-window)
5781 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
5782 New functions for fitting the shown image to the Emacs window size.
5783 (doc-view-mode-map): Add bindings for the new functions.
5784
5785 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
5786
5787 * vc-annotate.el (vc-annotate-show-log-revision-at-line):
5788 Fix typo in docstring.
5789
5790 2011-04-08 Eli Zaretskii <eliz@gnu.org>
5791
5792 * files.el (file-size-human-readable): Produce one digit after
5793 decimal, like "ls -lh" does.
5794
5795 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
5796 the file size representation.
5797
5798 * simple.el (list-processes): If async subprocesses are not
5799 available, error out with a clear error message.
5800
5801 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
5802
5803 * help.el (help-form-show): New function, to be called from C.
5804 Put help-form output in a buffer named differently than *Help*.
5805
5806 2011-04-08 Eli Zaretskii <eliz@gnu.org>
5807
5808 * files.el (file-size-human-readable): New function.
5809
5810 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
5811 computing the representation inline. Don't require `cl'.
5812
5813 2011-04-08 Glenn Morris <rgm@gnu.org>
5814
5815 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
5816
5817 * net/browse-url.el (browse-url-firefox):
5818 Test system-type, not system-configuration.
5819
5820 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
5821 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
5822 Use log-edit-empty-buffer-p. (Bug#7598)
5823
5824 * net/rlogin.el (rlogin-process-connection-type): Simplify.
5825 (rlogin-mode-map): Initialize in the defvar.
5826 (rlogin): Use ignore-errors.
5827
5828 * replace.el (occur-mode-map): Some fixes for menu items.
5829
5830 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
5831
5832 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
5833
5834 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
5835
5836 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
5837 issuing unused warnings.
5838
5839 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
5840 macro directly.
5841
5842 * simple.el: Lisp reimplement of list-processes. Based on an
5843 earlier reimplementation by Leo Liu, but using tabulated-list.el.
5844 (process-menu-mode): New major mode.
5845 (list-processes--refresh, list-processes):
5846 (process-menu-visit-buffer): New functions.
5847
5848 * files.el (save-buffers-kill-emacs): Don't assume any return
5849 value of list-processes, which is undocumented anyway.
5850
5851 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
5852
5853 * emacs-lisp/tabulated-list.el: New file.
5854
5855 * emacs-lisp/package.el: Use Tabulated List mode.
5856 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
5857 (package-menu-mode): Derive from tabulated-list-mode. Set up the
5858 table format using Tabulated List mode variables.
5859 (package--push): New macro, replacing package-list-maybe-add.
5860 (package-menu--generate): Use package--push. Renamed from
5861 package--generate-package-list.
5862 (package-menu-refresh, list-packages): Use it.
5863 (package-menu--print-info): Rename from package-print-package.
5864 Return insertion data instead of inserting it directly.
5865 (package-menu-describe-package, package-menu-execute):
5866 Use tabulated-list-get-id.
5867 (package-menu-mark-delete, package-menu-mark-install)
5868 (package-menu-mark-unmark, package-menu-backup-unmark)
5869 (package-menu-mark-obsolete-for-deletion):
5870 Use tabulated-list-put-tag.
5871 (package--list-packages, package-menu-revert)
5872 (package-menu-get-package, package-menu-get-version)
5873 (package-menu-sort-by-column): Functions deleted.
5874 (package-menu-package-list, package-menu-sort-key): Vars deleted.
5875 (package-menu--status-predicate, package-menu--version-predicate)
5876 (package-menu--name-predicate)
5877 (package-menu--description-predicate): Handle arguments in the
5878 Tabulated List format.
5879 (package-list-packages-no-fetch): Call list-packages.
5880
5881 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
5882
5883 * files.el (after-find-file-from-revert-buffer): Remove variable.
5884 (after-find-file): Don't bind it.
5885 (revert-buffer-in-progress-p): New variable.
5886 (revert-buffer): Bind it.
5887 Pass nil for `after-find-file-from-revert-buffer'.
5888
5889 * saveplace.el (save-place-find-file-hook): Use new variable
5890 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
5891
5892 2011-04-06 Glenn Morris <rgm@gnu.org>
5893
5894 * Makefile.in (AUTOGEN_VCS): New variable.
5895 (autoloads): Use $AUTOGEN_VCS.
5896
5897 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
5898 * calendar/calendar.el (calendar-mode-map):
5899 Check for toolkit scroll bars. (Bug#8305)
5900
5901 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
5902
5903 * minibuffer.el (completion-in-region--postch)
5904 (completion-in-region-mode): Remove unnecessary messages.
5905
5906 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
5907
5908 * font-lock.el (font-lock-refresh-defaults):
5909 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
5910 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
5911
5912 * info.el (Info-directory-list, Info-read-node-name-2)
5913 (Info-split-parameter-string): Doc fixes.
5914 (Info-virtual-nodes): Reflow docstring.
5915 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
5916 (Info-apropos-toc-nodes, info-finder, Info-get-token)
5917 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
5918 Fix typos in docstrings.
5919 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
5920 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
5921 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
5922 (Info-restore-desktop-buffer): Mark unused parameters.
5923 (Info-directory-find-file, Info-directory-find-node)
5924 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
5925 (Info-virtual-index-find-node, Info-apropos-find-file)
5926 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
5927 Mark unused parameters; fix typos in docstrings.
5928 (Info-virtual-index): Remove unused local variable `nodename'.
5929
5930 2011-04-05 Deniz Dogan <deniz@dogan.se>
5931
5932 * net/rcirc.el: Update my e-mail address.
5933 (rcirc-mode-map): Remove M-o binding.
5934
5935 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
5936
5937 * startup.el (command-line): Save the cursor's theme-face
5938 directly, instead of using face-override-spec.
5939
5940 * custom.el (load-theme): Minor optimization in assigning faces.
5941
5942 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
5943
5944 * help-fns.el (describe-variable): Complete all variables having
5945 documentation, including keywords.
5946 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
5947
5948 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
5949
5950 Convert to lexical-binding.
5951
5952 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
5953 (bs--get-marked-string, bs--get-modified-string)
5954 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
5955 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
5956 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
5957
5958 * ehelp.el (electric-help-execute-extended)
5959 (electric-help-ctrl-x-prefix):
5960 * hexl.el (hexl-revert-buffer-function):
5961 * linum.el (linum-after-change, linum-after-scroll):
5962 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
5963
5964 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
5965
5966 2011-04-04 Daiki Ueno <ueno@unixuser.org>
5967
5968 * epa-dired.el:
5969 * epa-mail.el:
5970 * epa-hook.el:
5971 * epa-file.el:
5972 * epa.el:
5973 * epg.el: Use lexical binding.
5974
5975 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
5976
5977 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
5978
5979 * textmodes/flyspell.el (flyspell-word): Recognize default
5980 dictionary case for flyspell-mark-duplications-exceptions.
5981 Use regexp matching for languages.
5982 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
5983 default dictionary (Bug#7926).
5984
5985 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
5986
5987 * emacs-lisp/package.el (package--with-work-buffer):
5988 Recognize https URLs.
5989
5990 * net/network-stream.el: Move from gnus/proto-stream.el.
5991 Change prefix to network-stream throughout.
5992 (open-protocol-stream): Merge into open-network-stream, leaving
5993 open-protocol-stream as an alias. Handle nil BUFFER args.
5994
5995 * subr.el (open-network-stream): Move to net/network-stream.el.
5996
5997 2011-04-02 Glenn Morris <rgm@gnu.org>
5998
5999 * find-dired.el (find-exec-terminator): New option.
6000 (find-ls-option): Test for -ls support.
6001 (find-ls-subdir-switches): Test for -b in find-ls-option.
6002 (find-dired, find-grep-dired): Doc fixes.
6003 (find-dired): Use find-exec-terminator.
6004
6005 * find-dired.el (find-ls-option, find-ls-subdir-switches)
6006 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
6007 (find-name-arg): Remove purecopy.
6008
6009 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
6010 (grep-compute-defaults): Check for `-exec COMMAND +' support.
6011 Set grep-find-use-xargs, grep-find-command, and grep-find-template
6012 accordingly. Don't add the null-device if not needed.
6013
6014 * files.el (save-some-buffers): Doc fix.
6015
6016 2011-04-02 Eli Zaretskii <eliz@gnu.org>
6017
6018 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
6019
6020 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
6021
6022 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
6023 Use `dolist' rather than `mapcar'.
6024
6025 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
6026
6027 Add lexical binding.
6028
6029 * subr.el (apply-partially): Use new closures rather than CL.
6030 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
6031 (dolist, dotimes): Use slightly different expansion for lexical code.
6032 (functionp): Move to C.
6033 (letrec): New macro.
6034 (with-wrapper-hook): Use it and apply-partially instead of CL.
6035 (eval-after-load): Preserve lexical-binding.
6036 (save-window-excursion, with-output-to-temp-buffer): Turn them
6037 into macros.
6038
6039 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
6040
6041 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
6042 than the arglist.
6043 (help-add-fundoc-usage): Don't add `Not documented'.
6044 (help-function-arglist): Handle closures, subroutines, and new
6045 byte-code-functions.
6046 (help-make-usage): Remove leading underscores.
6047 (describe-function-1): Handle closures.
6048 (describe-variable): Use special-variable-p for completion.
6049
6050 * files.el (lexical-binding): Declare safe.
6051
6052 * emacs-lisp/pcase.el: Don't use destructuring-bind.
6053 (pcase--memoize): Rename from pcase-memoize. Change weakness.
6054 (pcase): Add `let' pattern.
6055 Change memoization so it actually works.
6056 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
6057 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
6058 <let>: New case.
6059
6060 * emacs-lisp/macroexp.el: Use lexical binding.
6061 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
6062 Don't convert ' to #' without checking that it's indeed quoting
6063 a lambda.
6064
6065 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
6066 Use eval-sexp-add-defvars.
6067 (eval-sexp-add-defvars): New fun.
6068
6069 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
6070
6071 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
6072 Don't autoload.
6073 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
6074 than the internal `byte-compile-lambda'.
6075 (defmethod): Don't hide code under quotes.
6076 (eieio-defmethod): New `code' argument.
6077
6078 * emacs-lisp/eieio-comp.el: Remove.
6079
6080 * emacs-lisp/edebug.el (edebug-eval-defun)
6081 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
6082 (edebug-toggle): Avoid `eval'.
6083
6084 * emacs-lisp/disass.el (disassemble-internal): Handle new
6085 `closure' objects.
6086 (disassemble-1): Handle new byte codes.
6087
6088 * emacs-lisp/cl.el (pushnew): Silence warning.
6089
6090 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
6091 (cl-byte-compile-throw): Remove.
6092 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
6093
6094 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
6095 closures.
6096
6097 * emacs-lisp/cconv.el: New file.
6098
6099 * emacs-lisp/bytecomp.el: Use lexical binding instead of
6100 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
6101 (byte-compile-initial-macro-environment):
6102 Handle declare-function here.
6103 (byte-compile--lexical-environment): New var.
6104 (byte-stack-ref, byte-stack-set, byte-discardN)
6105 (byte-discardN-preserve-tos): New lap codes.
6106 (byte-interactive-p): Don't use any more.
6107 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
6108 New macros.
6109 (byte-compile-lapcode): Use them and handle new lap codes.
6110 (byte-compile-obsolete): Remove.
6111 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
6112 (byte-compile-arglist-warn): Check late def of inlinable funs.
6113 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
6114 since they should have been expanded by now.
6115 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
6116 (byte-compile-from-buffer): Remove unused second arg.
6117 (byte-compile-preprocess): New function.
6118 (byte-compile-toplevel-file-form): New function to distinguish
6119 file-form calls from outside from file-form calls from hunk-handlers.
6120 (byte-compile-file-form): Simplify.
6121 (byte-compile-file-form-defsubst): Remove.
6122 (byte-compile-file-form-defmumble): Simplify now that
6123 byte-compile-lambda always returns a byte-code-function.
6124 (byte-compile): Preprocess.
6125 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
6126 Remove, not used any more.
6127 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
6128 (byte-compile-make-args-desc): New funs.
6129 (byte-compile-lambda): Handle lexical functions. Always return
6130 a byte-code-function.
6131 (byte-compile-reserved-constants): New var, to make up room for
6132 closed-over variables.
6133 (byte-compile-constants-vector): Obey it.
6134 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
6135 (byte-compile-macroexpand-declare-function): New function.
6136 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
6137 byte-code-functions.
6138 (byte-compile-form): Check obsolescence here.
6139 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
6140 (byte-compile-variable-ref): Remove.
6141 (byte-compile-dynamic-variable-op): New fun.
6142 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
6143 (byte-compile-variable-set): New funs.
6144 (byte-compile-discard): Add 2 args.
6145 (byte-compile-stack-ref, byte-compile-stack-set)
6146 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
6147 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
6148 macroexpand-all instead.
6149 (byte-compile-quote-form): Remove.
6150 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
6151 (byte-compile-bind, byte-compile-unbind): New funs.
6152 (byte-compile-let): Handle let* and lexical binding.
6153 (byte-compile-let*): Remove.
6154 (byte-compile-catch, byte-compile-unwind-protect)
6155 (byte-compile-track-mouse, byte-compile-condition-case):
6156 Handle a new :fun-body form, used for lexical scoping.
6157 (byte-compile-save-window-excursion)
6158 (byte-compile-with-output-to-temp-buffer): Remove.
6159 (byte-compile-defun): Simplify.
6160 (byte-compile-stack-adjustment): New fun.
6161 (byte-compile-out): Use it.
6162 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
6163
6164 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
6165 handler any more.
6166
6167 * emacs-lisp/byte-opt.el: Use lexical binding.
6168 (byte-inline-lapcode): Remove (to bytecomp).
6169 (byte-compile-inline-expand): Pay attention to inlining to/from
6170 lexically bound code.
6171 (byte-compile-unfold-lambda): Don't handle byte-code-functions
6172 any more.
6173 (byte-optimize-form-code-walker): Don't handle save-window-excursion
6174 any more and don't call compiler-macros.
6175 (byte-compile-splice-in-already-compiled-code): Remove.
6176 (byte-code): Don't inline any more.
6177 (disassemble-offset): Receive `bytes' as argument rather than via
6178 dynamic scoping.
6179 (byte-compile-tag-number): Declare before first use.
6180 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
6181 `return' even if make-spliceable.
6182 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
6183 obsolete interactive-p.
6184 (byte-optimize-lapcode): Optimize new lap-codes.
6185 Don't trip up on new form of `byte-constant' lap code.
6186
6187 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
6188
6189 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
6190
6191 * custom.el (custom-initialize-default, custom-declare-variable):
6192 Use `defvar'.
6193
6194 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
6195 New variables.
6196 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
6197 (COMPILE_FIRST): Add macroexp and cconv.
6198 * makefile.w32-in: Mirror changes in Makefile.in.
6199
6200 * vc/cvs-status.el:
6201 * vc/diff-mode.el:
6202 * vc/log-edit.el:
6203 * vc/log-view.el:
6204 * vc/smerge-mode.el:
6205 * textmodes/bibtex-style.el:
6206 * textmodes/css.el:
6207 * startup.el:
6208 * uniquify.el:
6209 * minibuffer.el:
6210 * newcomment.el:
6211 * reveal.el:
6212 * server.el:
6213 * mpc.el:
6214 * emacs-lisp/smie.el:
6215 * doc-view.el:
6216 * dired.el:
6217 * abbrev.el: Use lexical binding.
6218
6219 2011-04-01 Eli Zaretskii <eliz@gnu.org>
6220
6221 * info.el (info-display-manual): New function.
6222
6223 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
6224
6225 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
6226
6227 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
6228
6229 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
6230 an entry for that server in rcirc-authinfo. (Bug#8385)
6231
6232 2011-03-31 Glenn Morris <rgm@gnu.org>
6233
6234 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
6235
6236 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
6237
6238 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
6239
6240 * progmodes/python.el (python-default-interpreter)
6241 (python-python-command-args, python-jython-command-args)
6242 (python-which-shell, python-which-args, python-which-bufname)
6243 (python-file-queue, python-comint-output-filter-function)
6244 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
6245 variables and functions.
6246
6247 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
6248
6249 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
6250 (completion-in-region-mode): New minor mode.
6251 (completion-in-region): Use it.
6252 (completion-in-region--data, completion-in-region-mode-map): New vars.
6253 (completion-in-region--postch): New function.
6254 (completion--capf-misbehave-funs, completion--capf-safe-funs):
6255 New vars.
6256 (completion--capf-wrapper): New function.
6257 (completion-at-point): Use it to track well-behavedness of
6258 hook functions.
6259 (completion-help-at-point): New command.
6260
6261 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
6262
6263 * vc/add-log.el (add-change-log-entry): Don't use whitespace
6264 syntax class to search for whitespace on a single line
6265 (Message-ID: <4D938140.4030905@redhat.com>).
6266
6267 2011-03-30 Leo Liu <sdl.web@gmail.com>
6268
6269 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
6270 New commands.
6271 (edit-abbrevs-map): Bind them here.
6272 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
6273
6274 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
6275
6276 * allout.el (allout-hide-by-annotation, allout-flag-region):
6277 Reduce possibility of overlay leakage by making them volatile.
6278
6279 * allout-widgets.el (allout-widgets-tally): Define as nil so the
6280 hash is not shared between buffers. Mode initialization is
6281 responsible for giving it a useful starting value.
6282 (allout-item-span): Reduce possibility of overlay leakage by
6283 making them volatile.
6284 (allout-widgets-count-buttons-in-region): Add diagnostic function
6285 for tracking down button overlay leaks.
6286
6287 2011-03-29 Leo Liu <sdl.web@gmail.com>
6288
6289 * ido.el (ido-read-internal): Use the default history var
6290 minibuffer-history if no HISTORY is specified.
6291
6292 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
6293
6294 * net/imap.el (imap-shell-open, imap-process-connection-type):
6295 Use imap-process-connection-type for 'shell' streams as well as
6296 Kerberos, SSL, other subprocesses.
6297
6298 2011-03-28 Leo Liu <sdl.web@gmail.com>
6299
6300 * abbrev.el (abbrev-table-empty-p): New function.
6301 (prepare-abbrev-list-buffer): Place empty abbrev tables after
6302 nonempty ones. (Bug#5937)
6303
6304 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
6305
6306 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
6307
6308 2011-03-27 Leo Liu <sdl.web@gmail.com>
6309
6310 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
6311 for foreground and background colors.
6312 (ansi-color-make-color-map): Adapt.
6313
6314 2011-03-25 Leo Liu <sdl.web@gmail.com>
6315
6316 * midnight.el (midnight-time-float): Remove. Note it calculates
6317 the microsecond component incorrectly and seconds-to-time does the
6318 same job.
6319 Remove redundant (require 'timer).
6320
6321 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
6322 (ido-completions): Remove unused arguments. (Bug#8329)
6323
6324 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
6325
6326 * minibuffer.el (completion--flush-all-sorted-completions):
6327 Remove itself from hook.
6328 (completion-at-point): Let the functions perform the completion
6329 immediately and return nil or t.
6330 * comint.el (comint-dynamic-complete-functions): Now identical to
6331 completion-at-point-functions.
6332 (comint-dynamic-list-input-ring): Remove unused var `index'.
6333 (comint--match-partial-filename, comint--unquote&expand-filename):
6334 New funs, split from comint-match-partial-filename.
6335 (comint-dynamic-complete): Use completion-at-point.
6336 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
6337
6338 2011-03-24 Drew Adams <drew.adams@oracle.com>
6339
6340 * thingatpt.el: Support `defun'.
6341
6342 2011-03-23 Leo Liu <sdl.web@gmail.com>
6343
6344 * abbrevlist.el: Move to obsolete/abbrevlist.el.
6345
6346 * help-mode.el (help-mode-finish): Tweak regexp.
6347
6348 2011-03-23 Glenn Morris <rgm@gnu.org>
6349
6350 * eshell/esh-opt.el (eshell-eval-using-options):
6351 Do not bind unused local variable `eshell-option-stub'.
6352
6353 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
6354
6355 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
6356
6357 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
6358 keymap variable in `with-no-warnings' to avoid a warning when the
6359 keymap has been already `defconst'ed.
6360
6361 2011-03-22 Leo Liu <sdl.web@gmail.com>
6362
6363 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
6364 encode all chars in abbrevs; otherwise use emacs-mule or
6365 utf-8-emacs. (Bug#8308)
6366
6367 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
6368
6369 * simple.el (backward-delete-char-untabify):
6370 Avoid warning about using `delete-backward-char'.
6371
6372 * image.el (image-type-file-name-regexps): Make it variable.
6373 `imagemagick-register-types' modifies it, and the user may want
6374 to add new extensions for known image types.
6375 (imagemagick-register-types): Throw error if not using ImageMagick.
6376
6377 2011-03-22 Leo Liu <sdl.web@gmail.com>
6378
6379 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
6380 located before rcirc-prompt-end-marker.
6381 (rcirc-complete): Error if point is not after rcirc prompt.
6382 Handle the case when table is nil.
6383 (rcirc-user-authenticated): Define to fix compiler warning.
6384
6385 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
6386
6387 * custom.el (custom--inhibit-theme-enable): Make it affect only
6388 custom-theme-set-variables and custom-theme-set-faces.
6389 (provide-theme): Ignore custom--inhibit-theme-enable.
6390 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
6391 (custom-enabling-themes): Delete variable.
6392 (enable-theme): Accept only loaded themes as arguments.
6393 Ignore the special custom-enabled-themes variable.
6394 (custom-enabled-themes): Forbid themes from setting this.
6395 Eliminate use of custom-enabling-themes.
6396 (custom-push-theme): Quote "changed" custom var entry.
6397
6398 2011-03-21 Leo Liu <sdl.web@gmail.com>
6399
6400 * ido.el (ido-read-internal): Add ido-selected to history instead
6401 of user input.
6402
6403 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
6404
6405 * subr.el (deferred-action-list, deferred-action-function):
6406 Mark obsolete.
6407
6408 2011-03-21 Leo Liu <sdl.web@gmail.com>
6409
6410 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
6411 change on 2011-02-13 (bug#8309).
6412
6413 * minibuffer.el (read-file-name-function): Change default value.
6414 (read-file-name--defaults): Rename from read-file-name-defaults.
6415 (read-file-name-default): Rename from read-file-name.
6416 (read-file-name): Call read-file-name-function.
6417
6418 2011-03-21 Glenn Morris <rgm@gnu.org>
6419
6420 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
6421 Doc fixes.
6422
6423 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
6424
6425 * cus-theme.el: Add missing provide statement.
6426 (customize-create-theme): Extract theme value correctly.
6427 (custom-theme-visit-theme): Autoload.
6428 (customize-create-theme): Prompt before inserting default faces.
6429
6430 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
6431
6432 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
6433 units and musical notes.
6434
6435 2011-03-20 Leo <sdl.web@gmail.com>
6436
6437 * ido.el (ido-read-internal): Use completing-read-default.
6438 (ido-completing-read): Fix compatibility with completing-read.
6439
6440 2011-03-20 Christian Ohler <ohler@gnu.org>
6441
6442 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
6443 (ert-delete-all-tests): Use `called-interactively-p' rather than
6444 `interactive-p'.
6445 (ert--make-xrefs-region): Respect END.
6446
6447 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
6448
6449 * dired-aux.el (dired-create-directory): Signal an error if the
6450 directory already exists (Bug#8246).
6451
6452 * facemenu.el (list-colors-display): Call list-faces-display
6453 inside with-help-window.
6454 (list-colors-print): Use display property to align the final
6455 column, instead of checking window-width.
6456
6457 2011-03-19 Eli Zaretskii <eliz@gnu.org>
6458
6459 * emerge.el (emerge-metachars): Separate value for ms-dos and
6460 windows-nt systems.
6461 (emerge-protect-metachars): Quote correctly for ms-dos and
6462 windows-nt systems.
6463
6464 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
6465
6466 * info.el (info-initialize): Replace all uses of `:' with
6467 path-separator for compatibility with non-Unix systems.
6468 Cache quoting of path-separator. (Bug#8258)
6469
6470 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
6471
6472 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
6473 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
6474 (mouse-avoidance-mode): Fix typos in docstrings.
6475
6476 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
6477
6478 * startup.el (package-subdirectory-regexp): Move from package.el.
6479 Omit \\` and \\', and let callers add them.
6480
6481 * emacs-lisp/package.el (package-strip-version)
6482 (package-load-all-descriptors): Add \\` and \\' to
6483 package-subdirectory-regexp before using it.
6484 (package-untar-buffer): New arg DIR; ensure that file untars only
6485 into this expected directory. Remove superfluous delete-region.
6486 (package-unpack): Caller changed.
6487 (package-tar-file-info): Use package-subdirectory-regexp.
6488
6489 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
6490
6491 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
6492 diff-mode-shared-map (bug#8284).
6493 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
6494
6495 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
6496
6497 * calendar/time-date.el (format-seconds): Use assoc instead of
6498 assoc-string, since assoc-string doesn't exist in XEmacs.
6499
6500 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
6501
6502 * custom.el (custom-known-themes): Reflow docstring.
6503 (custom-theme-load-path): Fix typo in docstring.
6504 (load-theme): Fix typo in error message.
6505 (custom-available-themes, custom-variable-theme-value):
6506 Use `let', not `let*'.
6507
6508 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
6509
6510 * calc/README: Mention inclusion of musical notes.
6511
6512 * calc/calc-units.el (calc-lu-quant): Rename from
6513 `calc-logunits-quantity'.
6514 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
6515 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
6516 (calc-db): Rename from `calc-dblevel'.
6517 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
6518 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
6519 (calc-np): Rename from `calc-nplevel'.
6520 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
6521 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
6522 (calc-lu-plus): Rename from `calc-logunits-add'.
6523 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
6524 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
6525 (calc-lu-minus): Rename from `calc-logunits-sub'.
6526 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
6527 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
6528 (calc-lu-times): Rename from `calc-logunits-mul'.
6529 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
6530 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
6531 (calc-lu-divide): Rename from `calc-logunits-div'.
6532 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
6533 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
6534
6535 * calc/calc-ext.el (calc-init-extensions): Update the names of the
6536 functions being autoloaded.
6537
6538 * calc/calc.el (calc-lu-power-reference): Rename from
6539 `calc-logunits-power-reference'.
6540 (calc-lu-field-reference): Rename from
6541 `calc-logunits-field-reference'.
6542
6543 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
6544
6545 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
6546
6547 * minibuffer.el (completion-all-sorted-completions):
6548 Use :completion-cycle-penalty text property if present.
6549
6550 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
6551
6552 * allout.el (allout-yank-processing): Adjust for new rebulleting
6553 regime so bullet being yanked is used without prompting the user
6554 for a choice.
6555
6556 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
6557
6558 * startup.el (command-line): Warn the user that _emacs is deprecated.
6559
6560 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
6561
6562 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
6563 (delphi-verbose, delphi-comment-face, delphi-string-face)
6564 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
6565 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
6566 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
6567 (delphi-new-comment-line, delphi-font-lock-defaults)
6568 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
6569 Fix typos in docstrings.
6570
6571 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
6572
6573 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
6574 Invert the roles of character and string values for INSTEAD, so a
6575 string is used for the more common case of a defaulting prompt.
6576
6577 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
6578
6579 * progmodes/ruby-mode.el (ruby-backward-sexp):
6580 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
6581 * play/gamegrid.el (gamegrid-make-face):
6582 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
6583 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
6584 * notifications.el (notifications-notify):
6585 * net/xesam.el (xesam-search-engines):
6586 * net/quickurl.el (quickurl-list-insert):
6587 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
6588
6589 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
6590
6591 * startup.el (command-line): Update package subdirectory regexp.
6592
6593 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
6594
6595 * allout.el (allout-abbreviate-flattened-numbering)
6596 (allout-mode-deactivate-hook): Fix up obsolescence "date".
6597
6598 * subr.el (read-char-choice): Only show the cursor after the prompt,
6599 not after the answer.
6600
6601 2011-03-15 Kevin Ryde <user42@zip.com.au>
6602
6603 * help-fns.el (variable-at-point): Skip leading quotes, if any
6604 (bug#8253).
6605
6606 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
6607
6608 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
6609 warning message.
6610
6611 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
6612
6613 * shell.el (shell): When called interactively, offer to change the
6614 shell file name on remote hosts.
6615
6616 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
6617
6618 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
6619 integration for LDAP parameters. The host, base, user or binddn,
6620 and secret tokens can be specified in a netrc file, for instance.
6621 This is optional because an `auth-source' parameter must be
6622 specified in the search attributes.
6623
6624 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
6625
6626 * help.el (describe-mode): Link to the mode's definition (bug#8185).
6627
6628 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
6629
6630 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
6631 into declaration. Remove redundant and harmful binding.
6632
6633 2011-03-12 Eli Zaretskii <eliz@gnu.org>
6634
6635 * files.el (file-ownership-preserved-p): Pass `integer' as an
6636 explicit 2nd argument to `file-attributes'. If the file's owner
6637 is the Administrators group on Windows, and the current user is
6638 Administrator, consider that a match.
6639
6640 * server.el (server-ensure-safe-dir): Consider server directory
6641 safe on MS-Windows if its owner is the Administrators group while
6642 the current Emacs user is Administrator. Use `=' to compare
6643 numerical UIDs, since they could be integers or floats.
6644
6645 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
6646
6647 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
6648
6649 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
6650
6651 Sync with Tramp 2.2.1.
6652
6653 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
6654
6655 * net/trampver.el: Update release number.
6656
6657 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
6658
6659 * progmodes/compile.el (compilation--previous-directory): Fix up
6660 various nil/dead-marker mismatches (bug#8014).
6661 (compilation-directory-properties, compilation-error-properties):
6662 Don't call it at a position past the one we're about to change.
6663
6664 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
6665 Disable obsolescence warnings in the file that declares it.
6666
6667 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
6668
6669 * allout-widgets.el (allout-widgets-tally):
6670 Initialize allout-widgets-tally as a hash table rather than nil to
6671 prevent mode-line redisplay warnings. Also, clarify the module
6672 description and fix a comment typo.
6673
6674 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
6675
6676 * help-fns.el (describe-variable): Don't complete keywords.
6677 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
6678
6679 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
6680
6681 * emacs-lisp/package.el (package-version-join): Impose a standard
6682 string representation for pre/alpha/beta version lists.
6683 (package-unpack-single): Standardize the directory name by passing
6684 it through package-version-join.
6685 (package-strip-rcs-id): Accept any version string that does not
6686 signal an error in version-to-list.
6687
6688 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
6689
6690 * simple.el (delete-trailing-whitespace): Return nil for the
6691 benefit of `write-file-functions'.
6692
6693 2011-03-10 Glenn Morris <rgm@gnu.org>
6694
6695 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
6696
6697 * vc/vc-git.el (vc-git-program): New option.
6698 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
6699 (vc-git--call): Use it.
6700
6701 * eshell/esh-util.el (eshell-condition-case): Doc fix.
6702
6703 * cus-edit.el (Custom-newline): If no button at point, look
6704 for a subgroup button at start-of-line. (Bug#2298)
6705
6706 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
6707
6708 2011-03-10 Julien Danjou <julien@danjou.info>
6709
6710 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
6711 `cursor-type' is nil.
6712
6713 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
6714
6715 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
6716
6717 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
6718
6719 * allout.el Summary: Change so yank of distinctive-bullet items
6720 preserves the existing header prefix, rebulleting it if necessary,
6721 rather than replacing it. This is necessary for proper operation
6722 of cooperative addons like allout-widgets.
6723 (allout-make-topic-prefix, allout-rebullet-heading): Change
6724 SOLICIT arg to INSTEAD, and interpret additionally a string value
6725 as alternate bullet to be used, instead of prompting the user for
6726 a bullet character.
6727
6728 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
6729
6730 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
6731 Do not use `tramp-file-name-port', because this returns also
6732 `tramp-default-port'.
6733
6734 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
6735
6736 * net/rcirc.el (rcirc-handler-001): Remove useless
6737 with-rcirc-process-buffer.
6738 (rcirc-check-auth-status): Swap arguments to string-match.
6739
6740 2011-03-09 Glenn Morris <rgm@gnu.org>
6741
6742 * shell.el (shell-mode):
6743 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
6744
6745 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
6746 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
6747
6748 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
6749
6750 * emacs-lisp/package.el (package-refresh-contents)
6751 (package-menu-execute): Use condition-case-no-debug.
6752
6753 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
6754
6755 * simple.el (shell-command-to-string): Use `process-file'.
6756
6757 * emacs-lisp/package.el (package-tar-file-info): Handle also
6758 remote files.
6759
6760 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6761 Use `equal' for upload base check.
6762
6763 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
6764
6765 * textmodes/texinfo.el (texinfo-environments):
6766 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
6767
6768 2011-03-08 Glenn Morris <rgm@gnu.org>
6769
6770 * cus-start.el (cursor-in-non-selected-windows):
6771 Fix :set quoting oddness. (Bug#8192)
6772
6773 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
6774 in some setf expressions. (Bug#2159)
6775
6776 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
6777
6778 * custom.el (custom-available-themes): Return themes in
6779 alphabetical order.
6780
6781 See ChangeLog.15 for earlier changes.
6782
6783 ;; Local Variables:
6784 ;; coding: utf-8
6785 ;; End:
6786
6787 Copyright (C) 2011 Free Software Foundation, Inc.
6788
6789 This file is part of GNU Emacs.
6790
6791 GNU Emacs is free software: you can redistribute it and/or modify
6792 it under the terms of the GNU General Public License as published by
6793 the Free Software Foundation, either version 3 of the License, or
6794 (at your option) any later version.
6795
6796 GNU Emacs is distributed in the hope that it will be useful,
6797 but WITHOUT ANY WARRANTY; without even the implied warranty of
6798 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
6799 GNU General Public License for more details.
6800
6801 You should have received a copy of the GNU General Public License
6802 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.