]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
Bind M-= back to count-words-region, and let it accept a prefix arg.
[gnu-emacs] / lisp / ChangeLog
1 2012-08-10 Chong Yidong <cyd@gnu.org>
2
3 * bindings.el: Bind M-= back to count-words-region.
4
5 * simple.el (count-words-region): Accept a prefix arg for acting
6 on the entire buffer.
7 (count-words--buffer-message): New helper function.
8
9 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
10
11 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
12 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
13 (event-start, event-end): Use posn-at-point to return a more
14 informative posn.
15 (posnp): New function.
16 * mouse.el (popup-menu-normalize-position): Use it.
17
18 2012-08-10 Masatake YAMATO <yamato@redhat.com>
19
20 * mouse.el (popup-menu-normalize-position): New function.
21 (popup-menu): Use `popup-menu-normalize-position' to normalize
22 the form for POSITION argument.
23
24 * term/x-win.el (x-menu-bar-open):
25 Use the value returend from (posn-at-point) as position
26 passed to `popup-menu'.
27
28 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
29
30 * calc/calccomp.el (math-compose-expr): Add extra argument
31 indicating that parentheses should be put around products in
32 denominators. Give multiplication precedence over division during
33 composition.
34
35 2012-08-09 Chong Yidong <cyd@gnu.org>
36
37 * man.el (Man-switches, Man-sed-command, Man-awk-command)
38 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
39 (Man-untabify-command, manual-program): Convert to defcustom
40 (Bug#10429).
41
42 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
43
44 * descr-text.el (describe-char): Don't insert extra newlines
45 (Bug#10127).
46
47 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
48 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
49
50 * align.el (align-region): Delete temporary markers (Bug#10047).
51 Plus some code cleanups.
52
53 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
54
55 * progmodes/python.el (python-pdbtrack-tracked-buffer)
56 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
57 (python-shell-internal-last-output): Use make-local-variable
58 instead of make-variable-buffer-local.
59
60 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
61
62 * progmodes/python.el: Enhancements to forward-sexp.
63 (python-nav-forward-sexp): Rename from
64 python-nav-forward-sexp-function.
65 (python-nav--forward-sexp, python-nav--backward-sexp):
66 New functions.
67
68 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
69
70 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
71 modes and simplification modes.
72
73 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
74
75 * delsel.el (delete-selection-pre-hook): Don't propagate the
76 file-supersession signals (bug#12161).
77
78 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
79
80 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
81 (cl-map-extents): Add compatibility aliases (bug#12135).
82
83 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
84
85 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
86 tests by `ignore-error'.
87 (tramp-find-shell): Open also a new shell, when cache is already
88 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
89
90 2012-08-08 Juri Linkov <juri@jurta.org>
91
92 * bookmark.el: Add `defaults' property to the bookmark record.
93 (bookmark-current-buffer): Doc fix.
94 (bookmark-make-record): Add `defaults' property with default values
95 to the bookmark record.
96 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
97 with `bookmark-insert-current-bookmark'.
98 (bookmark-set): Get `defaults' property from the bookmark record
99 and use it in `read-from-minibuffer'.
100 (bookmark-insert-current-bookmark): Remove function.
101
102 * info.el (Info-bookmark-make-record): Add `defaults' property
103 with values of canonical Info node name, the current Info file
104 name and the current Info node name. (Bug#12107)
105
106 2012-08-08 Juri Linkov <juri@jurta.org>
107
108 * files.el (basic-save-buffer): Use `buffer-name' as the default
109 of `read-file-name' when buffer is not visiting a file (bug#12128).
110
111 2012-08-08 Juri Linkov <juri@jurta.org>
112
113 * info.el (Info-isearch-search): Doc fix.
114 (Info-search): Change search-failed message from "initial node" to
115 "end of node" (bug#12078).
116 (Info-isearch-search): Change `isearch-string-state' to
117 `isearch--state-string'.
118
119 2012-08-08 Glenn Morris <rgm@gnu.org>
120
121 * language/persian.el: Remove file.
122 * language/misc-lang.el: Move unique part of persian.el here.
123 * loadup.el: Remove language/persian.
124
125 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
126
127 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
128
129 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
130
131 * progmodes/python.el Fixed defsubst warning.
132 (python-syntax-context) Rename from python-info-ppss-context.
133 (python-syntax-context-type): Rename from
134 python-info-ppss-context-type.
135 (python-syntax-comment-or-string-p): Rename from
136 python-info-ppss-comment-or-string-p.
137
138 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
139
140 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
141
142 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
143
144 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
145 a defcustom that is quoted with backquote.
146
147 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
148 Fix handling of interactive spec when the body uses return.
149 (math-do-arg-check, math-define-function-body): Use backquote forms.
150 * calc/calc-ext.el (math-defcache): Likewise.
151 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
152 * allout.el (allout-new-exposure): Likewise.
153 * calc/calcalg2.el (math-tracing-integral): Likewise.
154 * info.el (Info-last-menu-item): Likewise.
155 * emulation/vip.el (vip-loop): Likewise.
156 * textmodes/artist.el (artist-funcall): Likewise.
157 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
158 Construct menu-item directly.
159
160 * progmodes/autoconf.el (font-lock-syntactic-keywords):
161 Don't declare.
162
163 2012-08-07 Chong Yidong <cyd@gnu.org>
164
165 * simple.el (deactivate-mark): Preserve text properties when
166 saving the primary selection (Bug#8384).
167
168 2012-08-07 Kevin Ryde <user42@zip.com.au>
169
170 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
171 (woman-parse-numeric-value): On a bad .IP line, issue a warning
172 and continue processing (Bug#12110).
173
174 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
175
176 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
177 syntax-propertize-function (bug#10095).
178
179 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
180
181 * help-fns.el (help-fns--key-bindings, help-fns--signature)
182 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
183 describe-function-1.
184 (describe-function-1): Use them. Move compiler macro after sig.
185 (help-fns--compiler-macro): Use function-get. Assume we're already in
186 standard-output. Adjust layout to new call order.
187
188 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
189 re-binding a symbol that has a symbol-macro (bug#12119).
190
191 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
192
193 * language/persian.el: New file. (Bug#11812)
194 * loadup.el: Add language/persian.el.
195
196 2012-08-06 Chong Yidong <cyd@gnu.org>
197
198 * window.el (window--maybe-raise-frame): New function.
199 (window--display-buffer): Split off from here.
200 (display-buffer-reuse-window, display-buffer-pop-up-frame)
201 (display-buffer-pop-up-window, display-buffer-use-some-window):
202 Obey an inhibit-switch-frame action alist entry.
203 (display-buffer): Update doc.
204
205 * replace.el (occur-after-change-function): Avoid losing focus by
206 using the inhibit-switch-frame display parameter (Bug#12139).
207
208 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
209
210 Make internal shell process buffer names start with space.
211 * progmodes/python.el (python-shell-make-comint): Add optional
212 argument INTERNAL.
213 (run-python-internal): Use it.
214 (python-shell-internal-get-or-create-process): Check for new
215 internal buffer names.
216
217 2012-08-06 Glenn Morris <rgm@gnu.org>
218
219 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
220 Do less getting and setting of environment variables.
221
222 2012-08-05 Chong Yidong <cyd@gnu.org>
223
224 * proced.el (proced): Add substitution string to docstring to
225 trigger autoloading of the proced library on C-h f (Bug#1768).
226
227 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
228 Don't show defvars which have no second argument (Bug#8638).
229
230 * imenu.el (imenu-generic-expression): Move documentation here
231 from imenu--generic-function.
232 (imenu--generic-function): Refer to imenu-generic-expression.
233
234 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
235
236 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
237 indentation declaration.
238 (viper-loop): Add indentation declaration (Bug#7025).
239
240 2012-08-05 Chong Yidong <cyd@gnu.org>
241
242 * help-fns.el (describe-variable): Add hyperlink for
243 directory-local variables files. Improve buffer-local and
244 permanent-local reporting; suggested by MON KEY (Bug#6644).
245
246 * help-mode.el (help-dir-local-var-def): New button type.
247
248 * files.el (kill-buffer-hook): Provide a defvar.
249
250 2012-08-05 Glenn Morris <rgm@gnu.org>
251
252 * eshell/esh-ext.el (eshell/addpath):
253 Also update eshell-path-env. (Bug#12013)
254
255 2012-08-05 Chong Yidong <cyd@gnu.org>
256
257 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
258
259 * fringe.el (fringe-styles): Add docstring.
260 (fringe--check-mode): New function.
261 (set-fringe-mode, set-fringe-style): Use it.
262 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
263
264 * files.el (set-auto-mode): Fix invalid setq call.
265
266 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
267
268 * isearch.el: Misc simplification; use defstruct.
269 (isearch-mode-map): Dense maps now work like sparse ones.
270 (isearch--state): New defstruct.
271 (isearch-string-state, isearch-message-state, isearch-point-state)
272 (isearch-success-state, isearch-forward-state)
273 (isearch-other-end-state, isearch-word-state, isearch-error-state)
274 (isearch-wrapped-state, isearch-barrier-state)
275 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
276 replaced by defstruct's accessors.
277 (isearch--set-state): Rename from isearch-top-state and change
278 calling convention.
279 (isearch-push-state): Use new isearch--get-state.
280 (isearch-toggle-word): Disable regexp when enabling word.
281 (isearch-message-prefix): Remove unused arg _c-q-hack.
282 (isearch-message-suffix): Remove unused arg _ellipsis.
283
284 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
285
286 * simple.el (list-processes--refresh): For a server use :host or
287 :local as the address.
288 (list-processes): Doc fix.
289
290 2012-08-04 Michal Nazarewicz <mina86@mina86.com> (tiny change)
291
292 * lisp/mpc.el: Support password in host argument.
293 (mpc--proc-connect): Parse and use new password element.
294 Set mpc-proc variable instead of returning process.
295 (mpc-proc): Adjust accordingly.
296
297 2012-08-03 Eli Zaretskii <eliz@gnu.org>
298
299 * whitespace.el (whitespace-display-mappings): Use Unicode
300 codepoints, instead of emacs-mule codepoints. See
301 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
302 for the details.
303
304 * files.el (file-truename): Don't skip symlink-chasing part on
305 windows-nt. Incorporate the resolution of 8+3 short aliases on
306 Windows into the loop that recursively chases symlinks.
307 Compare directory and its parent case-insensitively on MS-Windows and
308 MS-DOS.
309
310 2012-08-03 Chong Yidong <cyd@gnu.org>
311
312 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
313
314 * sort.el (sort-regexp-fields): Doc fix.
315
316 2012-08-03 Tassilo Horn <tsdh@gnu.org>
317
318 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
319 labels regex position point at the expected place.
320
321 2012-08-03 MON KEY <monkey@sandpframing.com>
322
323 * net/imap.el (imap-interactive-login, imap-authenticate)
324 (imap-mailbox-lsub, imap-mailbox-list)
325 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
326 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
327 (imap-parse-response): Doc fix.
328
329 2012-08-03 João Távora <joaotavora@gmail.com>
330
331 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
332 if sexp scanning does not move point (Bug#5734).
333
334 2012-08-02 Tassilo Horn <tsdh@gnu.org>
335
336 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
337 Add listings, minted, and ctable packages.
338 (reftex-label-alist-builtin): Move listings, minted, and ctable
339 entries before LaTeX.
340 (reftex-label-alist): Docfix.
341
342 2012-08-02 Bastien Guerry <bzg@gnu.org>
343
344 * replace.el (occur): Fix docstring (bug#12122).
345
346 2012-08-02 Glenn Morris <rgm@gnu.org>
347
348 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
349
350 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
351
352 Obsolete alias inactivate-current-input-method-function (Bug#10150).
353 * international/mule-cmds.el: Create
354 inactivate-current-input-method-function as an obsolete alias for
355 deactivate-current-input-method-function. See Katsumi Yamaoka in
356 <http://bugs.gnu.org/10150#46>.
357
358 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
359
360 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
361 of nested `if's.
362
363 2012-08-01 Glenn Morris <rgm@gnu.org>
364
365 * progmodes/autoconf.el (autoconf-definition-regexp):
366 Add AH_TEMPLATE, adjust submatch numbering.
367 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
368 (autoconf-current-defun-function): Update for above change.
369 (autoconf-current-defun-function): First skip to end of current word.
370
371 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
372
373 * calendar/cal-html.el (cal-html-insert-agenda-days):
374 Fix typo. (Bug#12018)
375
376 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
377
378 Shell processes: enhancements to startup and CEDET compatibility.
379 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
380 (python-shell-make-comint): accept-process-output at startup.
381 (run-python-internal): Set inferior-python-mode-hook to nil.
382 (python-shell-internal-get-or-create-process): call sit-for.
383 (python-preoutput-result): Add obsolete alias.
384 (python-shell-internal-send-string): Use it.
385 (python-shell-send-setup-code): Remove call to
386 accept-process-output.
387
388 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
389
390 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
391 (Bug#12108)
392
393 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
394
395 * calc-mode.el (calc-basic-simplification-mode): Rename from
396 `calc-limited-simplification-mode'.
397 (calc-alg-simplification-mode): New function.
398 (calc-set-simplify-mode): Adjust message.
399
400 * calc.el (calc-set-mode-line): Adjust mode line display for
401 basic simplification mode.
402
403 * calc-help.el (calc-m-prefix-help): Update help message.
404
405 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
406 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
407
408 2012-07-31 Bastien Guerry <bzg@gnu.org>
409
410 * man.el (man): Fix comment. (bug#12101)
411
412 2012-07-31 Martin Rudalics <rudalics@gmx.at>
413
414 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
415 Don't return a non-nil value when no suitable buffer was found.
416
417 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
418
419 * progmodes/python.el (run-python-internal): Disable font lock for
420 internal shells.
421
422 2012-07-30 Stefan Merten <smerten@oekonux.de>
423
424 * rst.el: Silence `checkdoc-ispell'.
425 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
426 (rst-official-version, rst-official-cvs-rev)
427 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
428 (rst-mode-map): New key binding.
429
430 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
431
432 Update .PHONY listings in makefiles.
433 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
434 autoloads, update-subdirs, updates, bzr-update, update-authors,
435 compile-onefile, compile-calc, backup-compiled-files,
436 compile-after-backup, compile-one-process, mh-autoloads,
437 bootstrap-clean, distclean, maintainer-clean.
438
439 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
440
441 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
442 (calc-set-mode-line): Don't display "AlgSimp ".
443
444 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
445 (calc-lim-simplify-mode): New function.
446 (calc-set-simplify-mode): Default to 'alg.
447 (calc-default-simplify-mode): Make algebraic simplifications
448 the default.
449
450 * calc/calc-ext.el (calc-init-extensions): Remove binding for
451 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
452
453 * calc/calc-help.el (calc-m-prefix-help): Change messages to
454 indicate new simplification modes.
455
456 * calc/README: Mention new default simplification mode.
457
458 * calc/calc.el (math-normalize-error): New variable.
459 (math-normalize): Set `math-normalize-error' to t
460 when there's an error.
461
462 * calc/calc-alg.el (math-simplify): Don't simplify when
463 `math-normalize' returns an error.
464
465 2012-07-29 Eli Zaretskii <eliz@gnu.org>
466
467 * international/mule-cmds.el (set-locale-environment): Revert last
468 change, since display-graphic-p returns nil when this function is
469 called during startup. Instead...
470
471 * term/w32console.el (terminal-init-w32console): ...setup the
472 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
473
474 2012-07-29 Juri Linkov <juri@jurta.org>
475
476 * simple.el (goto-line): Don't display default line number in the
477 prompt because it should be displayed by `read-number' (bug#9952).
478 Add the current line number to the defaults of `goto-line' to
479 allow its easier modification by users with `M-n' (bug#9201).
480
481 * subr.el (read-number): Support multiple default values like in
482 other minibuffer reading functions. Replace `read' with
483 `string-to-number' for consistency with `number-to-string'.
484
485 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
486
487 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
488 * emulation/viper-init.el (viper-deactivate-input-method-action):
489 Rename from viper-inactivate-input-method-action.
490 (viper-deactivate-input-method):
491 Rename from viper-inactivate-input-method.
492 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
493 * international/mule-cmds.el (deactivate-input-method):
494 Rename from inactivate-input-method.
495 Also run input-method-deactivate-hook.
496 (deactivate-current-input-method-function):
497 Rename from inactivate-current-input-method-function.
498 (input-method-deactivate-hook): New hook.
499 (input-method-inactivate-hook): Mark obsolete.
500 (inactivate-input-method): Mark obsolete.
501
502 * international/quail.el (quail-activate):
503 Also run quail-deactivate-hook.
504 (quail-deactivate): Rename from quail-inactivate.
505 * international/robin.el (robin-activate):
506 Also run robin-deactivate-hook.
507 (robin-deactivate): Rename from robin-inactivate.
508
509 2012-07-29 Chong Yidong <cyd@gnu.org>
510
511 * simple.el (indicate-copied-region): New function.
512 (kill-ring-save): Split off from here.
513
514 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
515 (kill-rectangle): Set deactivate-mark to t on read-only error.
516
517 * register.el (copy-to-register, copy-rectangle-to-register):
518 Deactivate the mark, and use indicate-copied-region (Bug#10056).
519 (append-to-register, prepend-to-register):
520 Call 2012-07-29 Juri Linkov <juri@jurta.org>
521
522 * simple.el (async-shell-command-buffer): New defcustom.
523 (shell-command): Use it. (Bug#4719)
524
525 2012-07-28 Eli Zaretskii <eliz@gnu.org>
526
527 * international/mule-cmds.el (set-locale-environment): In a
528 console session on MS-Windows, set up keyboard and terminal
529 encoding from the OEM codepage, not the ANSI codepage.
530 (Bug#12055)
531
532 2012-07-28 Chong Yidong <cyd@gnu.org>
533
534 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
535 gdb-get-location.
536
537 2012-07-28 Leo Liu <sdl.web@gmail.com>
538
539 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
540 the alist (bug#12029).
541
542 2012-07-28 Eli Zaretskii <eliz@gnu.org>
543
544 * makefile.w32-in (custom-deps, finder-data, updates, compile)
545 (compile-always, compile-first)
546 ($(lisp)/calendar/cal-loaddefs.el)
547 ($(lisp)/calendar/diary-loaddefs.el)
548 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
549 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
550 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
551 instead of on update-subdirs.
552 (bootstrap-clean): Delete $(lisp)/subdirs.el.
553
554 2012-07-28 Chong Yidong <cyd@gnu.org>
555
556 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
557 directory if vc-deduce-backend returns nil (Bug#7350).
558
559 * simple.el (delete-trailing-lines): New option.
560 (delete-trailing-whitespace): Obey it (Bug#11879).
561
562 2012-07-28 David Engster <deng@randomsample.de>
563
564 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
565 Explanation of new 'symbol-qnames feature in doc-strings.
566 (xml-maybe-do-ns): Return expanded names as plain symbols if
567 'symbol-qnames was provided in XML-NS argument (Bug#11916).
568 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
569
570 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
571
572 Consistent completion in inferior python with emacs -nw.
573 * progmodes/python.el (inferior-python-mode): replace "<tab>"
574 binding in inferior-python-mode-map with "\t".
575 (python-shell-completion-complete-at-point)
576 (python-completion-complete-at-point): Remove interactive spec.
577
578 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
579
580 * calc/calccomp.el (math-compose-expr): Undo previous change.
581
582 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
583
584 * progmodes/python.el (python-mode-map): Add keybinding for
585 run-python.
586 (python-shell-make-comint): Fix pop-to-buffer call.
587 (run-python): Autoload. New arg SHOW.
588 (python-shell-get-or-create-process): Do not pop python process
589 buffer.
590
591 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
592
593 * notifications.el (notifications-on-action-signal)
594 (notifications-on-closed-signal): Use also the bus address for the map.
595 (notifications-notify, notifications-close-notification)
596 (notifications-get-capabilities): Add optional argument BUS.
597
598 2012-07-27 Tassilo Horn <tsdh@gnu.org>
599
600 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
601 Add support for the lstlisting and minted environments, and for the
602 ctable macro.
603 * textmodes/reftex.el (reftex-compile-variables): Also recognize
604 labels written in keyvals syntax.
605
606 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
607
608 * calc/calccomp.el (math-compose-expr): Use parentheses when
609 there is a product in the denominator of a fraction.
610
611 2012-07-26 Eli Zaretskii <eliz@gnu.org>
612
613 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
614 ($(lisp)/calendar/diary-loaddefs.el)
615 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
616 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
617 Fixes failures in parallel bootstrap because subdirs.el is being
618 rewritten while the autoload files are built at the same time,
619 which needs to load subdirs.el.
620
621 2012-07-26 Martin Rudalics <rudalics@gmx.at>
622
623 * mouse.el (popup-menu): Fix doc-string and re-indent code.
624 (mouse-drag-line): Don't exit tracking when a switch-frame or
625 switch-window event occurs (Bug#12006).
626
627 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
628
629 * mouse.el (popup-menu): Fix last change.
630
631 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
632
633 Autoload from Lisp with more care. Follow aliases when looking for
634 function properties.
635 * subr.el (autoloadp): New function.
636 (symbol-file): Use it.
637 (function-get): New function.
638 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
639 autoload-do-load.
640 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
641 (lisp-indent-function):
642 * emacs-lisp/gv.el (gv-get):
643 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
644 * emacs-lisp/byte-opt.el (byte-optimize-form):
645 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
646 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
647 Use function-get.
648 * emacs-lisp/cl.el: Don't propagate function properties any more.
649
650 * speedbar.el (speedbar-add-localized-speedbar-support):
651 * emacs-lisp/disass.el (disassemble-internal):
652 * desktop.el (desktop-load-file):
653 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
654 (describe-function-1):
655 * emacs-lisp/find-func.el (find-function-noselect):
656 * emacs-lisp/elp.el (elp-instrument-function):
657 * emacs-lisp/advice.el (ad-has-proper-definition):
658 * apropos.el (apropos-safe-documentation, apropos-macrop):
659 * emacs-lisp/debug.el (debug-on-entry):
660 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
661 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
662 * calc/calc.el (name): Use autoloadp & autoload-do-load.
663
664 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
665
666 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
667 function, not an obsolete variable (Bug#12046).
668
669 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
670
671 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
672
673 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
674
675 * emacs-lisp/pp.el (pp-display-expression): Select old selected
676 window only if it is still live (Bug#12034).
677
678 2012-07-25 Martin Rudalics <rudalics@gmx.at>
679
680 * subr.el (redirect-frame-focus): Add advertised calling
681 convention (Bug#12030).
682
683 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
684
685 Prefer typical American spelling for "acknowledgment".
686 * vc/add-log.el (change-log-acknowledgment): Rename from
687 change-log-acknowledgement, with an alias for the old name.
688
689 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
690
691 * calc-alg.el (math-simplify-divide): Don't cross multiply
692 in an equation when the lhs is a variable.
693
694 2012-07-24 Julien Danjou <julien@danjou.info>
695
696 * net/netrc.el (netrc-find-service-number, netrc-store-data):
697 Remove, unused.
698
699 2012-07-23 Eli Zaretskii <eliz@gnu.org>
700
701 * startup.el (command-line): Don't display an empty user name in
702 the error message about non-existent home directory, when
703 init-file-user was set to an empty string. See
704 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
705 for the details and context.
706
707 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
708
709 * ses.el (ses-cell-formula-aset): New macro.
710 (ses-cell-references-aset): New macro.
711 (ses-cell-p): New function.
712 (ses-rename-cell): Do no longer rely on complex operations like
713 ses-cell-set-formula or ses-set-cell to change the cell and handle
714 the undo at the same time, but rather use lower level new macros
715 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
716 the undo directly. Refresh the mode line.
717
718 2012-07-21 Leo Liu <sdl.web@gmail.com>
719
720 * progmodes/cc-cmds.el (c-defun-name):
721 Use match-string-no-properties instead for consistency.
722
723 2012-07-20 Leo Liu <sdl.web@gmail.com>
724
725 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
726 (Bug#7879)
727
728 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
729
730 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
731
732 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
733 * progmodes/bug-reference.el, misearch.el: Provide themselves
734 (bug#11915).
735
736 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
737 of narrowed buffer (bug#11966).
738
739 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
740
741 * ses.el (ses-rename-cell): Set new name also in reference list of
742 cells of which the renamed cell depends.
743
744 2012-07-20 Masatake YAMATO <yamato@redhat.com>
745
746 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
747 to check whether menu-bar is shown or not. If not shown,
748 show the menu-bar as a popup menu instead of using tmm.
749 * mouse.el (popup-menu): Accept `point' as `position' argument.
750
751 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
752
753 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
754 up inside string symbol literal (bug#11923).
755
756 2012-07-20 Eli Zaretskii <eliz@gnu.org>
757
758 * startup.el (fancy-startup-text): Read the whole tutorial, not
759 just its first 256 bytes. Prevents gibberish in display of the
760 tutorial title.
761
762 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
763
764 Drop idle buffer compaction due to an absence of the
765 proved efficiency.
766 * compact.el: Remove.
767
768 2012-07-19 Sam Steingold <sds@gnu.org>
769
770 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
771 vc-bzr-pull & vc-bzr-merge-branch.
772 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
773 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
774 for consistency with compilation-error-regexp-alist.
775 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
776 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
777 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
778 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
779
780 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
781
782 * emacs-lisp/chart.el: Use lexical-binding.
783 (chart-emacs-storage): Don't hardcode the list of entries.
784
785 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
786
787 Next round of tweaks caused by Fgarbage_collect changes.
788 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
789
790 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
791
792 Compact buffers when idle.
793 * compact.el: New file.
794
795 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
796
797 * subr.el (eventp): Presume that if it looks vaguely like an event,
798 it's an event (bug#10190).
799
800 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
801
802 Enhancements to ppss related code (thanks Stefan).
803 * progmodes/python.el (python-indent-context)
804 (python-indent-calculate-indentation, python-indent-dedent-line)
805 (python-indent-electric-colon, python-nav-forward-block)
806 (python-mode-abbrev-table)
807 (python-info-assignment-continuation-line-p): Simplify checks
808 for ppss context.
809 (python-info-continuation-line-p): Cleanup.
810 (python-info-ppss-context): Do not catch 'quote.
811 (python-info-ppss-context-type)
812 (python-info-ppss-comment-or-string-p): Simplify.
813
814 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
815
816 * progmodes/python.el: Enhancements to eldoc support.
817 (python-info-current-symbol): New function.
818 (python-eldoc-at-point): Use python-info-current-symbol.
819 (python-info-current-defun): Fix cornercase on first defun scan.
820 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
821 and signal error when no inferior python process is available.
822
823 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
824
825 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
826 assume it's always t.
827 (vc-git-registered): Remove caching, the function is only called
828 once.
829 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
830
831 2012-07-18 Chong Yidong <cyd@gnu.org>
832
833 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
834
835 * simple.el (count-words): Report on narrowing (Bug#9959).
836
837 * bindings.el: Bind M-= to count-words.
838
839 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
840
841 2012-07-18 Masatake YAMATO <yamato@redhat.com>
842
843 * progmodes/sh-script.el (sh-imenu-generic-expression):
844 Capture a function with `function' keyword and without parentheses
845 like "function FOO" (bug#11856).
846
847 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
848
849 * window.el (split-window-sensibly): Make WINDOW argument
850 optional.
851
852 2012-07-18 Chong Yidong <cyd@gnu.org>
853
854 * subr.el (keyboard-translate): Doc fix (Bug#7261).
855
856 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
857 and make C-x 8 RET exit isearch (Bug#11439).
858
859 * international/iso-transl.el: Move isearch-mode-map key
860 definitions to isearch.el.
861
862 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
863
864 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
865 (eieio-defclass): Use gv-define-setter when possible.
866
867 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
868
869 Reflect recent changes in Fgarbage_collect.
870 * emacs-lisp/chart.el (chart-emacs-storage): Change to
871 reflect new format of data returned by Fgarbage_collect.
872
873 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
874
875 New utility functions + python-info-ppss-context fix (Bug#11910).
876 * progmodes/python.el (python-info-beginning-of-block-statement-p)
877 (python-info-ppss-comment-or-string-p): New functions.
878 (python-info-ppss-context): Small fix for string check.
879
880 2012-07-17 Juri Linkov <juri@jurta.org>
881
882 * dired-aux.el (dired-do-async-shell-command): Doc fix.
883 (dired-do-async-shell-command): Don't add `*' at the end of the
884 command (Bug#11815).
885 (dired-do-shell-command): Doc fix.
886 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
887 Join the individual commands using either "&" or ";" as the
888 separator depending on the values of these trailing characters.
889 At the end re-add the trailing "&". (Bug#10598)
890
891 * simple.el (async-shell-command): Sync the interactive spec with
892 `shell-command'. Doc fix.
893 (shell-command): Doc fix.
894
895 2012-07-17 Juri Linkov <juri@jurta.org>
896
897 * descr-text.el (describe-char): Fix format args. (Bug#10129)
898
899 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
900
901 Final renames and doc fixes for movement commands (bug#11899).
902 * progmodes/python.el (python-nav-beginning-of-statement):
903 Rename from python-nav-statement-start.
904 (python-nav-end-of-statement): Rename from
905 python-nav-statement-end.
906 (python-nav-beginning-of-block): Rename from
907 python-nav-block-start.
908 (python-nav-end-of-block): Rename from python-nav-block-end.
909
910 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
911
912 * progmodes/python.el (python-shell-send-string-no-output):
913 Allow accept-process-output to quit, keeping shell process ready for
914 future interactions (Bug#11868).
915
916 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
917
918 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
919
920 * emacs-lisp/elint.el (elint-find-args-in-code):
921 Use help-function-arglist, so as to handle lexical byte-code.
922
923 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
924 change (bug#11826).
925
926 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
927
928 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
929 Avoid spuriously marking the buffer as modified because of c-is-sws.
930
931 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
932 as not-a-comment (bug#11946).
933
934 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
935 for uninterned vars.
936
937 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
938 Use read-event since we don't really want to read chars but bytes.
939
940 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
941 $$..$$ but also $..$ using regexps (bug#11953).
942 Use tex-verbatim for \url and \path.
943 (tex-font-lock-keywords): Define as defconst like the others.
944 (tex-common-initialization): Don't use font-lock-syntax-table any more.
945
946 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
947
948 * international/mule-cmds.el (ucs-insert): Make it an obsolete
949 alias for insert-char.
950
951 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
952
953 * progmodes/python.el: Simplified imenu implementation.
954 (python-nav-jump-to-defun): Remove command.
955 (python-mode-map): Use `imenu' instead.
956 (python-nav-list-defun-positions-cache)
957 (python-imenu-include-defun-type, python-imenu-make-tree)
958 (python-imenu-subtree-root-label, python-imenu-index-alist):
959 Remove vars.
960 (python-nav-list-defun-positions, python-nav-read-defun)
961 (python-imenu-tree-assoc, python-imenu-make-element-tree)
962 (python-imenu-make-tree, python-imenu-create-index):
963 Remove functions.
964 (python-mode): Update to interact with imenu by setting
965 `imenu-extract-index-name-function' only.
966
967 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
968
969 * progmodes/python.el: Enhancements to navigation commands.
970 (python-nav-backward-sentence)
971 (python-nav-forward-sentence): Remove.
972 (python-nav-backward-statement, python-nav-forward-statement)
973 (python-nav-statement-start, python-nav-statement-end)
974 (python-nav-backward-block, python-nav-forward-block)
975 (python-nav-block-start, python-nav-block-end)
976 (python-nav-forward-sexp-function)
977 (python-info-current-line-comment-p)
978 (python-info-current-line-empty-p): New functions.
979 (python-indent-context): Use `python-nav-statement-start'.
980
981 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
982
983 * eshell/em-ls.el (eshell/ls): Use `apply'.
984
985 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
986 multi-hops, instead of Tramp internals.
987
988 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
989
990 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
991 when F1 and F2 are located on different hosts.
992
993 2012-07-14 Chong Yidong <cyd@gnu.org>
994
995 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
996 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
997 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
998 (xterm-mouse--read-event-sequence-1000)
999 (xterm-mouse--read-event-sequence-1006): New functions. For old
1000 mouse protocol, handle M-mouse-X events correctly.
1001 (xterm-mouse-event): New arg specifying mouse protocol.
1002 (turn-on-xterm-mouse-tracking-on-terminal)
1003 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
1004 sequence to toggle extended coordinates on newer XTerms.
1005 This appears to be harmless on terminals which do not support this.
1006
1007 2012-07-14 Leo Liu <sdl.web@gmail.com>
1008
1009 Add fringe bitmap indicators for flymake. (Bug#11253)
1010 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
1011 (flymake-make-overlay): New arg BITMAP.
1012 (flymake-error-bitmap, flymake-warning-bitmap)
1013 (flymake-fringe-indicator-position): New user variables.
1014
1015 * fringe.el: New bitmap exclamation-mark.
1016
1017 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
1018
1019 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
1020 also (Bug#7879).
1021
1022 2012-07-14 Chong Yidong <cyd@gnu.org>
1023
1024 * electric.el (electric-pair-post-self-insert-function): Fix pair
1025 insertion in empty-region case (Bug#11520).
1026
1027 2012-07-14 Chong Yidong <cyd@gnu.org>
1028
1029 * bindings.el: Consolidate ctl-x-r-map bindings.
1030 Bind copy-rectangle-as-kill to C-x r w.
1031
1032 * rect.el, register.el: Move bindings to bindings.el.
1033
1034 2012-07-14 Reuben Thomas <rrt@sc3d.org>
1035
1036 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
1037
1038 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
1039
1040 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
1041
1042 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
1043
1044 * bindings.el (top): Use `mapc' instead of `mapcar'.
1045
1046 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
1047
1048 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
1049
1050 * progmodes/sql.el (sql-comint): Suppress the check for program on
1051 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
1052 (Bug#11908)
1053
1054 2012-07-13 Chong Yidong <cyd@gnu.org>
1055
1056 * bindings.el: Assign a non-nil permanent-local property to
1057 per-buffer variables which lack a default value (Bug#11930).
1058
1059 * help-fns.el (describe-variable): In the "automatically becomes
1060 local" notice, take note of permanent-local variables.
1061
1062 2012-07-13 Chong Yidong <cyd@gnu.org>
1063
1064 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
1065 to allow printing the message when called from Lisp.
1066
1067 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
1068 Remove toggle-read-only.
1069
1070 * bs.el (bs-toggle-readonly):
1071 * buff-menu.el (Buffer-menu-toggle-read-only):
1072 Remove with-no-warnings around toggle-read-only.
1073
1074 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
1075 Remove with-no-warnings around toggle-read-only.
1076 (ffap-read-only, ffap-read-only-other-window)
1077 (ffap-read-only-other-frame): Callers changed.
1078
1079 * help-mode.el: Don't require view package.
1080 (help-mode-finish): Set buffer-read-only instead of calling
1081 toggle-read-only.
1082
1083 * bindings.el (mode-line-toggle-read-only):
1084 * dired.el (dired-toggle-read-only):
1085 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
1086 with non-nil second arg.
1087
1088 * emacs-lisp/eieio-custom.el (eieio-customize-object):
1089 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
1090 directly.
1091
1092 2012-07-12 Eli Zaretskii <eliz@gnu.org>
1093
1094 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
1095 not incf.
1096
1097 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
1098
1099 More CL cleanups and reduction of use of cl.el.
1100 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
1101 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
1102 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
1103 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
1104 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
1105 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
1106 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
1107 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
1108 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
1109 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
1110 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
1111 * eshell/em-cmpl.el, eshell/em-banner.el:
1112 * calendar/parse-time.el: Use cl-lib.
1113 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
1114 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
1115 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
1116 * term/ns-win.el, term.el, shell.el, ps-samp.el:
1117 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
1118 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
1119 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
1120 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
1121 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
1122 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
1123 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
1124 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
1125 `lambda' rather than with `quote'.
1126 (eshell-do-opt): Adjust accordingly.
1127 (eshell-process-option): Simplify.
1128 * eshell/esh-var.el:
1129 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
1130 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
1131 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
1132 to `pcase--dontcare'.
1133 * emacs-lisp/cl.el (labels): Mark obsolete.
1134 (cl--letf, letf): Move to cl-lib.
1135 (cl--letf*, letf*): Remove.
1136 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
1137 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
1138 (cl-progv): Rewrite.
1139 (cl--letf, cl-letf): Move from cl.el.
1140 (cl-letf*): New macro.
1141 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
1142
1143 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
1144
1145 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
1146
1147 2012-07-11 Chong Yidong <cyd@gnu.org>
1148
1149 * vc/log-edit.el (log-edit-vc-backend): New variable.
1150 (log-edit): Doc fix.
1151
1152 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
1153 argument of log-edit to set up all local variables.
1154 (vc-start-logentry): New optional arg specifying VC backend.
1155
1156 * vc/vc.el (vc-checkin): Use it.
1157 (vc-deduce-fileset): Handle Log Edit buffers.
1158 (vc-diff): Make first argument optional too.
1159
1160 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
1161
1162 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
1163
1164 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
1165 command, just in case. The function is not needed anymore.
1166 (eshell-external-command): Do not call `eshell-remote-command'.
1167
1168 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
1169
1170 Reduce use of (require 'cl).
1171 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
1172 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
1173 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
1174 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
1175 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
1176 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
1177 * battery.el, avoid.el, abbrev.el: Use cl-lib.
1178 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
1179 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
1180 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
1181 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
1182 * calculator.el, autorevert.el, apropos.el: Don't require CL.
1183 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
1184 (byte-compile-unfold-bcf, byte-compile-check-variable):
1185 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
1186 (byte-compile-nilconstp):
1187 * emacs-lisp/autoload.el (make-autoload): Use pcase.
1188 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
1189
1190 * emacs-lisp/gv.el (cond): Make it a valid place.
1191 (if): Simplify slightly.
1192
1193 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
1194 (pcase--self-quoting-p): New function.
1195 (pcase--u1): Use it.
1196
1197 2012-07-10 Glenn Morris <rgm@gnu.org>
1198
1199 * emacs-lisp/authors.el (authors-fixed-entries):
1200 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
1201
1202 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
1203
1204 Rename configure.in to configure.ac (Bug#11603).
1205 * emacs-lisp/authors.el (authors-canonical-file-name):
1206 * progmodes/autoconf.el (autoconf-mode):
1207 Prefer configure.ac to configure.in.
1208
1209 2012-07-08 Chong Yidong <cyd@gnu.org>
1210
1211 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
1212 Implement the mouse-1-click-follows-link handling properly.
1213
1214 * info.el (Info-link-keymap): Use follow-link mechanism for
1215 header-line links (Bug#374).
1216
1217 * simple.el (deactivate-mark): Do not set the primary selection
1218 if another program has acquired it (Bug#11772).
1219
1220 2012-07-07 Kevin Ryde <user42@zip.com.au>
1221
1222 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
1223 (woman-decode-region): Replace escaped-escapes without destroying
1224 bold or underline (Bug#11552).
1225 (woman2-process-escapes): Handle nofill regions (Bug#11591).
1226
1227 2012-07-07 Chong Yidong <cyd@gnu.org>
1228
1229 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
1230 (interprogram-cut-function, interprogram-paste-function):
1231 Mention that we typically mean the clipboard.
1232
1233 2012-07-06 Glenn Morris <rgm@gnu.org>
1234
1235 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
1236
1237 * files.el (toggle-read-only): Restrict message to interactive use.
1238
1239 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
1240
1241 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
1242
1243 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
1244
1245 2012-07-06 Glenn Morris <rgm@gnu.org>
1246
1247 * Makefile.in (compile-one-process): Rename from "recompile".
1248
1249 * Makefile.in (bzr-update): "compile" is the same as "recompile
1250 autoloads", but parallelizable, so use that instead.
1251
1252 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
1253
1254 * window.el (quit-window): Always restore window height when
1255 it's saved in quit-restore parameter (Bug#11810).
1256
1257 2012-07-06 Glenn Morris <rgm@gnu.org>
1258
1259 * simple.el (kill-whole-line): Doc tweak.
1260
1261 2012-07-06 Eli Zaretskii <eliz@gnu.org>
1262
1263 * files.el (file-relative-name): Compare file names
1264 case-insensitively if on MS-Windows or MS-DOS, or if
1265 read-file-name-completion-ignore-case is non-nil. Don't use
1266 case-fold-search for this purpose. (Bug#11827)
1267
1268 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
1269
1270 * calendar/cal-dst.el (calendar-current-time-zone):
1271 Return calendar-current-time-zone-cache if non-nil.
1272
1273 2012-07-17 Masatake YAMATO <yamato@redhat.com>
1274 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
1275
1276 * calendar/cal-dst.el (calendar-current-time-zone):
1277 Return calendar-current-time-zone-cache if non-nil.
1278
1279 2012-07-06 Glenn Morris <rgm@gnu.org>
1280
1281 * Makefile.in (cvs-update): Remove old alias.
1282
1283 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
1284
1285 Sync with Tramp 2.2.6-pre.
1286
1287 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
1288 compatible declaration.
1289
1290 * net/tramp-cmds.el (tramp-append-tramp-buffers):
1291 Protect `list-load-path-shadows' call.
1292
1293 * net/tramp-compat.el (top): Require packages, which aren't
1294 autoloaded anymore for XEmacs. Protect call of
1295 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
1296 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
1297 it hurts at least for SXEmacs.
1298 (tramp-compat-temporary-file-directory): In XEmacs, there is no
1299 standard-value for `temporary-file-directory'.
1300
1301 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
1302 Redirect stderr to /dev/null.
1303 (tramp-sh-handle-write-region): uid and gid can be floats.
1304 Reported by Russell Sim <russell.sim@gmail.com>.
1305 (tramp-sh-handle-vc-registered): Hide errors.
1306 (tramp-vc-file-name-handler): Use dummy results for `process-file'
1307 and `start-file-process'.
1308 (tramp-maybe-open-connection): Check also whether `non-essential'
1309 is bound.
1310
1311 2012-07-04 Chong Yidong <cyd@gnu.org>
1312
1313 * xml.el (xml--parse-buffer): Use xml-syntax-table.
1314 (xml-parse-tag): Likewise, and avoid changing entity tables.
1315 (xml-syntax-table): Define from scratch, making sure not to give
1316 x2000 and other Unicode spaces whitespace syntax, since those are
1317 not spaces in XML.
1318 (xml-parse-fragment): Delete unused function.
1319 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
1320 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
1321 (xml-entity-ref, xml-pe-reference-re)
1322 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
1323 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
1324 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
1325 (xml-entity-value-re): Use syntax references in regexps where
1326 possible; no need to define inside a let-binding.
1327 (xml-parse-dtd): Use xml-pe-reference-re.
1328 (xml-entity-or-char-ref-re): New defconst.
1329 (xml-parse-string, xml-substitute-special): Use it.
1330
1331 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
1332
1333 * files.el (locate-dominating-file): Allow `name' to be a predicate.
1334 (find-file--read-only): New function.
1335 (find-file-read-only, find-file-read-only-other-window)
1336 (find-file-read-only-other-frame): Use it.
1337 (insert-file-contents-literally): Don't `fset'.
1338 (get-free-disk-space): Use locate-dominating-file.
1339
1340 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
1341 function is already compiled.
1342
1343 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
1344
1345 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
1346
1347 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
1348 files on the same host.
1349
1350 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
1351
1352 * help-fns.el (describe-function-1): Only call
1353 help-fns--autoloaded-p when we have a file name. (Bug#11848)
1354
1355 2012-07-03 Chong Yidong <cyd@gnu.org>
1356
1357 * xml.el: Protect parser against XML bombs.
1358 (xml-entity-expansion-limit): New variable.
1359 (xml-parse-string, xml-substitute-special): Use it.
1360 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
1361
1362 2012-07-03 Glenn Morris <rgm@gnu.org>
1363
1364 * progmodes/bug-reference.el (bug-reference-bug-regexp):
1365 Allow linking to specific messages in debbugs reports (eg 123#5).
1366
1367 2012-07-02 Chong Yidong <cyd@gnu.org>
1368
1369 * xml.el: Fix entity and character reference expansion, allowing
1370 them to expand into markup as per XML spec.
1371 (xml-default-ns): New variable.
1372 (xml-entity-alist): Use XML spec definitions for lt and amp.
1373 (xml-parse-region): Make first two arguments optional.
1374 Discard text properties.
1375 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
1376 All callers changed.
1377 (xml-parse-tag): Call xml-parse-tag-1. For backward
1378 compatibility, this function should not modify buffer contents.
1379 (xml-parse-tag-1): Fix opening-tag regexp.
1380 (xml-parse-string): Rewrite, handling entity and character
1381 references properly.
1382 (xml--entity-replacement-text): Signal an error if a parameter
1383 entity is undefined.
1384
1385 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
1386
1387 * comint.el (comint-output-filter): Filter out repeated prompts.
1388
1389 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
1390 and file-name-absolute-p.
1391 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
1392 internal calls.
1393
1394 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
1395
1396 Spelling fixes.
1397 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
1398 Rename from byte-compile--refiy-function. All uses changed.
1399
1400 2012-07-01 Chong Yidong <cyd@gnu.org>
1401
1402 * xml.el (xml--parse-buffer): New function. Move most of
1403 xml-parse-region here.
1404 (xml-parse-region): Copy region into a temporary buffer, since
1405 parameter entity substitution requires changing buffer contents.
1406 Use xml--parse-buffer.
1407 (xml-parse-file): Use xml--parse-buffer.
1408 (xml-parse-dtd): Make parameter entity substitution work right.
1409 Use proper regexps for ELEMENT declarations (Bug#7172).
1410
1411 2012-06-30 Glenn Morris <rgm@gnu.org>
1412
1413 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
1414
1415 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
1416 Remove outdated and unnecessary dbus declarations.
1417
1418 2012-06-30 Eli Zaretskii <eliz@gnu.org>
1419
1420 * emacs-lisp/timer.el (timer-until): Subtract results of
1421 float-time, instead of taking float-time of the result of
1422 time-subtract, since float-time signals an error for negative time
1423 arguments.
1424
1425 2012-06-30 Chong Yidong <cyd@gnu.org>
1426
1427 * xml.el (xml-*-re): Convert defvars into defconsts, and
1428 eval-and-compile them so eval-and-compile works on derivatives.
1429 (xml--entity-replacement-text): Use eval-and-comple.
1430
1431 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
1432
1433 * vc/vc-git.el (vc-git-registered): Use cache property
1434 `git-registered'.
1435 (vc-git-mode-line-string): Call `vc-working-revision' instead of
1436 `vc-git-working-revision' in order to benefit from the cache.
1437 (vc-git-root): Use cache property `git-root'. (Bug#11757)
1438
1439 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
1440
1441 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
1442 removed (likely outside Emacs). (Bug#11757)
1443
1444 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
1445
1446 * emacs-lisp/cl-lib.el: Require macroexp.
1447
1448 2012-06-30 Chong Yidong <cyd@gnu.org>
1449
1450 * xml.el: Implement XML parameter entities.
1451 (xml-parameter-entity-alist): New variable.
1452 (xml-parse-region, xml-parse-fragment): Preserve previous values
1453 of xml-entity-alist and xml-parameter-entity-alist, so that
1454 repeated calls on different documents do not change them.
1455 (xml-parse-tag): Fix doctype regexp.
1456 (xml--entity-replacement-text): New function.
1457 (xml-parse-dtd): Use it. Don't handle system entities; doing that
1458 properly requires url retrieval which is unimplemented.
1459 (xml-escape-string): Doc fix.
1460
1461 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
1462
1463 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
1464
1465 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
1466
1467 * fringe.el (fringe-mode): Doc fix.
1468
1469 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
1470
1471 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
1472 is non-nil.
1473 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
1474 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
1475
1476 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
1477
1478 * calendar/cal-dst.el (calendar-current-time-zone):
1479 Return calendar-current-time-zone-cache if non-nil.
1480
1481 2012-06-29 Masatake YAMATO <yamato@redhat.com>
1482
1483 * progmodes/which-func.el (which-func-format):
1484 Add mouse-face. (Bug#11698)
1485
1486 2012-06-29 Leo Liu <sdl.web@gmail.com>
1487
1488 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
1489
1490 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
1491
1492 * minibuffer.el (minibuffer-confirm-exit-commands):
1493 Add completion-at-point (bug#11725).
1494
1495 2012-06-29 Glenn Morris <rgm@gnu.org>
1496
1497 * progmodes/f90.el (f90-font-lock-keywords-2):
1498 Add some preprocessor elements. (Bug#10499)
1499
1500 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
1501
1502 * progmodes/cperl-mode.el (cperl-update-syntaxification):
1503 Use syntax-propertize (bug#11739).
1504
1505 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
1506
1507 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
1508
1509 2012-06-28 Julien Danjou <julien@danjou.info>
1510
1511 * term.el (term-handle-colors-array): Use a set of new faces to
1512 color the terminal. Also uses :inverse-video property.
1513 (term-default-fg-color): Set to nil by default, deprecate in favor
1514 of `term-face'.
1515 (term-default-bg-color): Set to nil by default, deprecate in favor
1516 of `term-face'.
1517 (term-current-face): Use `term-face' by default.
1518 (term-bold-attribute): Variable deleted.
1519
1520 2012-06-28 Glenn Morris <rgm@gnu.org>
1521
1522 * simple.el (completion-list-mode-finish):
1523 Don't use toggle-read-only. (Since completion-list-mode has
1524 a special mode-class, it wasn't doing anything extra anyway.)
1525
1526 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
1527
1528 Make inlining of other-mode interpreted functions work (bug#11799).
1529 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
1530 (byte-compile): Use it to fix compilation of lexical-binding closures.
1531 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
1532 function, if needed.
1533
1534 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
1535
1536 * help-mode.el (help-make-xrefs): Don't just withstand
1537 cyclic-variable-indirection but any error in documentation-property.
1538
1539 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
1540 memory use.
1541 * bindings.el (bindings--define-key): New function.
1542 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
1543 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
1544 * bindings.el: Use it to purecopy define-key bindings.
1545
1546 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
1547
1548 * emacs-lisp/cl.el (flet): Mark obsolete.
1549 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
1550 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
1551 * progmodes/js.el (js-c-fill-paragraph):
1552 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
1553 (ebrowse-switch-member-buffer-to-derived-class):
1554 * play/5x5.el (5x5-solver): Use cl-flet.
1555
1556 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
1557 (cl--symbol-function): New macro.
1558 (cl--letf, cl--letf*): Use it.
1559
1560 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
1561 Strip "toggle-" if any.
1562
1563 2012-06-27 Glenn Morris <rgm@gnu.org>
1564
1565 * info.el (Info-default-directory-list): Move here from paths.el.
1566 * paths.el: Remove file, which is now empty.
1567 * loadup.el: No longer load "paths".
1568
1569 * custom.el (custom-initialize-delay): Doc fix.
1570
1571 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
1572 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
1573 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
1574 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
1575 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
1576 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
1577 * eshell/eshell.el (eshell-defgroup): Remove alias.
1578
1579 2012-06-27 Chong Yidong <cyd@gnu.org>
1580
1581 * help.el (help-enable-auto-load): New variable.
1582
1583 * help-fns.el (help-fns--autoloaded-p): New function.
1584 (describe-function-1): Refer to a function as "autoloaded" if it
1585 was autoloaded at any time in the past. Perform autoloading if
1586 help-enable-auto-load is non-nil.
1587
1588 2012-06-26 Eli Zaretskii <eliz@gnu.org>
1589
1590 * makefile.w32-in (compile, compile-always): Depend on
1591 update-subdirs, not on subdirs.el. Otherwise, several different
1592 sub-targets of 'bootstrap' running in parallel could
1593 simultaneously write to subdirs.el, producing a garbled file.
1594
1595 2012-06-26 Sam Steingold <sds@gnu.org>
1596
1597 * files.el (file-name-base): New convenience function.
1598 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
1599 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
1600 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
1601 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
1602 * textmodes/ispell.el, textmodes/reftex-ref.el:
1603 * textmodes/tex-mode.el: Use it.
1604 Did not touch cedet and org because they are maintained elsewhere.
1605
1606 2012-06-26 Martin Rudalics <rudalics@gmx.at>
1607
1608 * calendar/calendar.el (calendar-exit): Don't try to delete or
1609 iconify last frame. See:
1610 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
1611
1612 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
1613
1614 * server.el (server-process-filter): Remember dir in the
1615 process's `server-client-directory' properties.
1616
1617 2012-06-24 Chong Yidong <cyd@gnu.org>
1618
1619 * xml.el (xml-parse-tag): Correctly handle comment embedded in
1620 non-tag text.
1621
1622 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
1623
1624 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
1625
1626 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
1627
1628 * help-fns.el (describe-variable): Don't croak when doc is not found.
1629 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
1630 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
1631 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
1632 * emacs-lisp/smie.el (smie-next-sexp): CSE.
1633 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
1634 ((lambda ..) ..).
1635 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
1636
1637 2012-06-23 Chong Yidong <cyd@gnu.org>
1638
1639 * info.el (Info-mouse-follow-link): Accept symbol values of
1640 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
1641 (Info-fontify-node): Use Info-link-keymap for all navigation
1642 buttons, with link-args property to perform the desired action.
1643 (Info-link-keymap): Doc fix.
1644 (Info-next-link-keymap, Info-prev-link-keymap)
1645 (Info-up-link-keymap): Delete now-unused keymaps.
1646
1647 2012-06-23 Chong Yidong <cyd@gnu.org>
1648
1649 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
1650
1651 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
1652 system abbrevs.
1653
1654 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
1655
1656 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
1657
1658 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
1659 (bug#11719).
1660
1661 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
1662 the requote function doesn't work properly (bug#11714).
1663
1664 2012-06-23 Glenn Morris <rgm@gnu.org>
1665
1666 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
1667
1668 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
1669
1670 Further GV/CL cleanups.
1671 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
1672 gv-expander.
1673 (gv--defun-declaration): New function.
1674 (defun-declarations-alist): Use it.
1675 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
1676 (gv-place): Autoload.
1677 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
1678 original definition of dotimes and dolist.
1679 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
1680 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
1681 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
1682 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
1683 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
1684 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
1685 to the function's definition.
1686 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
1687 * window.el:
1688 * files.el:
1689 * faces.el:
1690 * env.el: Don't use CL.
1691
1692 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
1693
1694 Support higher-resolution time stamps (Bug#9000).
1695
1696 * calendar/time-date.el (with-decoded-time-value): New arg
1697 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
1698 (encode-time-value): New optional arg PICO. New type 3.
1699 (time-to-seconds) [!float-time]: Support the new picoseconds
1700 component if it's used.
1701 (seconds-to-time, time-subtract, time-add):
1702 Support ps-resolution time stamps as well.
1703
1704 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
1705 (timerp): Timer vectors now have length 9, not 8.
1706 (timer--time): Support new-style (4-part) time stamps.
1707 (timer-next-integral-multiple-of-time): Time stamps now have
1708 picosecond resolution, so take a bit more care about rounding.
1709 (timer-relative-time, timer-inc-time): New optional arg psecs.
1710 (timer-set-time-with-usecs): Set psecs to 0.
1711 (timer--activate): Check psecs component, too.
1712
1713 * proced.el (proced-time-lessp): Support ps-resolution stamps.
1714
1715 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
1716
1717 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
1718 Move the non-essential binding to the post/pre-command-hook where it is
1719 more obviously correct.
1720
1721 * subr.el (read-passwd): Don't use a history at all.
1722 * savehist.el (savehist-save): Remove password saved accidentally
1723 because of the above bug.
1724
1725 2012-06-22 Bastien Guerry <bzg@gnu.org>
1726
1727 * files.el (toggle-read-only): Display a message telling whether
1728 the buffer is read-only or not (bug#11726).
1729
1730 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
1731
1732 * emacs-lisp/gv.el: New file.
1733 * subr.el (push, pop): Extend to generalized variables.
1734 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
1735 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
1736 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
1737 gv-define-simple-setter, and gv-define-expander.
1738 Remove setf-methods defined in gv. Rename cl-setf -> setf.
1739 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
1740 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
1741 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
1742 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
1743 gv-letplace.
1744 (cl-defstruct): Don't define setf-method any more.
1745 * emacs-lisp/cl.el (flet): Don't autoload.
1746 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
1747 (define-setf-expander, defsetf, define-modify-macro)
1748 (cl-struct-setf-expander): Move from cl-lib.el.
1749 * emacs-lisp/syntax.el:
1750 * emacs-lisp/ewoc.el:
1751 * emacs-lisp/smie.el:
1752 * emacs-lisp/cconv.el:
1753 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
1754 (timer--time): Use gv-define-simple-setter.
1755 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
1756 to avoid coding-system problems in subr.el. Adjust all users.
1757 (macroexp--maxsize, macroexp-small-p): New functions.
1758 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
1759 * scroll-bar.el (scroll-bar-mode):
1760 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
1761 (normal-erase-is-backspace-mode): Don't use the `eq' place.
1762 * winner.el (winner-configuration, winner-make-point-alist)
1763 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
1764 * files.el (locate-file-completion-table): Avoid list*.
1765
1766 2012-06-22 Chong Yidong <cyd@gnu.org>
1767
1768 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
1769 (dired-create-files): Doc fix (Bug#11329).
1770 (dired-do-copy): Doc fix (Bug#11334).
1771 (dired-mark-read-string): Doc fix (Bug#11553).
1772
1773 * dired.el (dired-recursive-copies, dired-recursive-deletes):
1774 Doc fix (Bug#11326).
1775 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
1776 (dired-dwim-target): Doc fix.
1777
1778 * wdired.el (wdired-mode): Doc fix.
1779
1780 2012-06-22 Glenn Morris <rgm@gnu.org>
1781
1782 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
1783 (pcmpl-rpm-cache-stamp-file): New constant.
1784 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
1785 (pcmpl-rpm-packages): Optionally cache list of packages.
1786
1787 * pcmpl-rpm.el (pcmpl-rpm): New group.
1788 (pcmpl-rpm-query-options): New option.
1789 (pcmpl-rpm-packages): No need to inline it.
1790 Use pcmpl-rpm-query-options.
1791
1792 * calendar/calendar.el (calendar-in-read-only-buffer):
1793 Avoid some needless mode changes.
1794
1795 2012-06-21 Chong Yidong <cyd@gnu.org>
1796
1797 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
1798 (desktop-path): Remove . from the default value (Bug#10977).
1799 (desktop-read): Use user-emacs-directory if desktop-path is nil.
1800
1801 2012-06-20 Chong Yidong <cyd@gnu.org>
1802
1803 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
1804
1805 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
1806
1807 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
1808 (bug#11201).
1809
1810 2012-06-20 Chong Yidong <cyd@gnu.org>
1811
1812 * term.el (term-window-width): Handle the case of a missing right
1813 fringe (Bug#8837).
1814 (term-check-size): Use window-text-height (Bug#5445).
1815 (term-mode): Use define-derived-mode. Minor cleanups.
1816 Set font-lock-defaults (Bug#7692).
1817 (term-move-columns, term-insert-char, term-emulate-terminal)
1818 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
1819
1820 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
1821
1822 * net/ange-ftp.el (ange-ftp-get-passwd):
1823 Bind `enable-recursive-minibuffers'.
1824 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
1825
1826 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
1827
1828 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
1829
1830 2012-06-19 Glenn Morris <rgm@gnu.org>
1831
1832 * progmodes/python.el (python-mode): Derive from prog-mode.
1833
1834 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
1835
1836 * emulation/edt.el (edt-default-menu-bar-update-buffers)
1837 (edt-user-menu-bar-update-buffers): New functions.
1838 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
1839
1840 2012-06-19 Chong Yidong <cyd@gnu.org>
1841
1842 * subr.el (with-selected-window): Preserve the selected window's
1843 terminal's top-frame (Bug#4702).
1844
1845 * window.el (save-selected-window): Likewise.
1846
1847 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
1848
1849 * progmodes/python.el (python-rx-constituents): Move backquote.
1850 (python-skeleton-define, python-define-auxiliary-skeleton):
1851 Use `declare'.
1852
1853 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
1854
1855 * minibuffer.el (read-file-name-default): Revert the patch from
1856 2012-06-17.
1857
1858 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
1859
1860 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
1861 (pcase--u1, pcase--q1): Don't use apply-partially.
1862
1863 2012-06-18 Glenn Morris <rgm@gnu.org>
1864
1865 * progmodes/python.el (python-proc, python-buffer)
1866 (python-send-receive, python-send-string): Fix obsolete versions.
1867
1868 2012-06-18 Martin Rudalics <rudalics@gmx.at>
1869
1870 * window.el (special-display-p): Completely remove stringp
1871 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
1872
1873 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
1874
1875 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
1876
1877 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
1878
1879 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
1880 * net/tramp-sh.el (tramp-maybe-open-connection):
1881 Throw if `non-essential' is non-nil.
1882
1883 2012-06-17 Martin Rudalics <rudalics@gmx.at>
1884
1885 * window.el (special-display-p): Signal an error if BUFFER-NAME
1886 is not a string (Bug#11713).
1887
1888 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
1889
1890 * progmodes/python.el (python-info-beginning-of-backslash):
1891 Rename from python-info-beginning-of-backlash, as a spelling fix.
1892
1893 2012-06-17 Chong Yidong <cyd@gnu.org>
1894
1895 * term.el (term-emulate-terminal): If term-check-size is called,
1896 move point to the process mark without resetting point (Bug#4635).
1897
1898 2012-06-17 Glenn Morris <rgm@gnu.org>
1899
1900 * international/mule-cmds.el (mule-menu-keymap)
1901 (set-language-environment, set-locale-environment): Doc tweaks.
1902
1903 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
1904
1905 * cus-face.el (custom-face-attributes): Add wave-style underline
1906 attribute.
1907 * faces.el (set-face-attribute): Update docstring to describe
1908 wave-style underline attribute.
1909
1910 2012-06-16 Chong Yidong <cyd@gnu.org>
1911
1912 * term/xterm.el (terminal-init-xterm): Discard input before
1913 querying background mode (Bug#10959).
1914
1915 2012-06-16 Stefan Merten <smerten@oekonux.de>
1916
1917 * textmodes/rst.el: Added and corrected some comments.
1918 (rst-re-alist-def): Improve symbol syntax.
1919 (rst-mode-syntax-table): Correct syntax entries.
1920 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
1921 (rst-official-version, rst-official-cvs-rev): Update version
1922 information.
1923
1924 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
1925
1926 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
1927 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
1928
1929 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
1930
1931 * progmodes/python.el: New python.el merge.
1932 (python-guess-indent): Obsolete var.
1933 (python-indent-guess-indent-offset): New defcustom.
1934 (python-indent): Obsolete var.
1935 (python-indent-offset): New defcustom.
1936 (python-python-command, python-jython-command): Delete var.
1937 (python-shell-interpreter): New defcustom.
1938 (python-pdbtrack-do-tracking-p): Delete var.
1939 (python-pdbtrack-activate): New defcustom.
1940 (python-use-skeletons): Obsolete var.
1941 (python-skeleton-autoinsert): New defcustom.
1942 (inferior-python-filter-regexp, python-continuation-offset)
1943 (python-honour-comment-indentation, python-indent-string-contents)
1944 (python-jython-packages, python-mode-hook)
1945 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
1946 (python-shell-prompt-alist)
1947 (python-source-modes): Delete defcustoms.
1948 (python-check-buffer-name, python-eldoc-setup-code)
1949 (python-eldoc-string-code, python-ffap-setup-code)
1950 (python-ffap-string-code, python-fill-comment-function)
1951 (python-fill-decorator-function, python-fill-paren-function)
1952 (python-fill-string-function, python-imenu-include-defun-type)
1953 (python-imenu-make-tree, python-imenu-subtree-root-label)
1954 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
1955 (python-shell-compilation-regexp-alist)
1956 (python-shell-completion-module-string-code)
1957 (python-shell-completion-pdb-string-code)
1958 (python-shell-completion-setup-code)
1959 (python-shell-completion-string-code)
1960 (python-shell-enable-font-lock, python-shell-exec-path)
1961 (python-shell-extra-pythonpaths)
1962 (python-shell-internal-buffer-name, python-shell-interpreter-args)
1963 (python-shell-process-environment)
1964 (python-shell-prompt-block-regexp)
1965 (python-shell-prompt-output-regexp)
1966 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
1967 (python-shell-send-setup-max-wait, python-shell-setup-codes)
1968 (python-shell-virtualenv-path): New defcustoms.
1969 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
1970 (inferior-python-mode-syntax-table, python--prompt-regexp)
1971 (python-buffer, python-command python-python-command)
1972 (python-default-template, python-imports, python-indent-index)
1973 (python-indent-list, python-indent-list-length)
1974 (python-mode-running, python-pdbtrack-is-tracking-p)
1975 (python-preoutput-continuation, python-preoutput-leftover)
1976 (python-preoutput-result, python-preoutput-skip-next-prompt)
1977 (python-prev-dir/file, python-recursing)
1978 (python-saved-check-command, python-version-checked)
1979 (python-which-func-length-limit)
1980 (view-return-to-alist): Delete vars.
1981 (python-check-custom-command, python-dotty-syntax-table)
1982 (python-imenu-index-alist, python-indent-current-level)
1983 (python-indent-dedenters, python-indent-levels)
1984 (python-nav-beginning-of-defun-regexp)
1985 (python-nav-list-defun-positions-cache)
1986 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
1987 (python-shell-internal-buffer)
1988 (python-skeleton-available): New vars.
1989 (def-python-skeleton): Delete macro.
1990 (python-skeleton-define): New macro.
1991 (python-define-auxiliary-skeleton, python-rx): New macros.
1992 (python-insert-class): Delete command.
1993 (python-skeleton-class): New command.
1994 (python-insert-def): Delete command.
1995 (python-skeleton-def): New command.
1996 (python-insert-for): Delete command.
1997 (python-skeleton-for): New command.
1998 (python-insert-if): Delete command.
1999 (python-skeleton-if): New command.
2000 (python-insert-try/except, python-insert-try/finally): Delete commands.
2001 (python-skeleton-try): New command.
2002 (python-insert-while): Delete command.
2003 (python-skeleton-while): New command.
2004 (python-backspace): Delete command.
2005 (python-indent-dedent-line-backspace): New command.
2006 (python-electric-colon): Delete command.
2007 (python-indent-electric-colon): New command.
2008 (python-guess-indent): Delete command.
2009 (python-indent-guess-indent-offset): New command.
2010 (python-shift-left): Delete command.
2011 (python-indent-shift-left): New command.
2012 (python-shift-right): Delete command.
2013 (python-indent-shift-right): New command.
2014 (python-find-function): Delete command.
2015 (python-nav-jump-to-defun): New command.
2016 (python-next-statement): Delete command.
2017 (python-nav-forward-sentence): New command.
2018 (python-previous-statement): Delete command.
2019 (python-nav-backward-sentence): New command.
2020 (python-fill-paragraph): Delete command.
2021 (python-fill-paragraph-function): New command.
2022 (python-send-buffer): Delete command.
2023 (python-shell-send-buffer): New command.
2024 (python-send-defun): Delete command.
2025 (python-shell-send-defun): New command.
2026 (python-send-region, python-send-region-and-go): Delete commands.
2027 (python-shell-send-region)
2028 (python-shell-switch-to-shell): New commands.
2029 (python-send-string): Delete command.
2030 (python-shell-send-string): New command.
2031 (python-switch-to-python): Delete command.
2032 (python-shell-switch-to-shell): New command.
2033 (python-describe-symbol): Delete command.
2034 (python-eldoc-at-point): New command.
2035 (python--set-prompt-regexp, python-args-to-list)
2036 (python-after-info-look, python-check-version)
2037 (python-check-comint-prompt, python-find-imports)
2038 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
2039 (python-unload-function, python-expand-template)
2040 (python-maybe-jython, python-preoutput-filter)
2041 (python-pdbtrack-get-source-buffer)
2042 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
2043 (python-pdbtrack-toggle-stack-tracking)
2044 (python-pdbtrack-track-stack-file, python-initial-text)
2045 (python-first-word, python-comment-line-p, python-send-command)
2046 (python-setup-brm, python-sentinel, python-set-proc)
2047 (python-skip-out, python-input-filter, python-outdent-p)
2048 (python-outline-level, python-backslash-continuation-line-p)
2049 (python-end-of-block, python-end-of-statement, python-mark-block)
2050 (python-beginning-of-block, python-beginning-of-statement)
2051 (python-blank-line-p, python-beginning-of-string)
2052 (python-open-block-statement-p): Delete functions.
2053 (python-indent-line, python-indent-line-1): Delete functions.
2054 (python-indent-line): New function.
2055 (python-indentation-levels): Delete function.
2056 (python-indent-calculate-levels): New function.
2057 (python-proc): Delete function.
2058 (python-shell-get-process): New function.
2059 (python-send-receive): Delete function.
2060 (python-shell-send-string-no-output): New function.
2061 (python-module-path): Delete function.
2062 (python-ffap-module-path): New function.
2063 (python-completion-at-point)
2064 (python-symbol-completions): Delete functions.
2065 (python-completion-complete-at-point): New function.
2066 (python-load-file): Delete function.
2067 (python-shell-send-file): New function.
2068 (python-calculate-indentation): Delete function.
2069 (python-indent-calculate-indentation): New function.
2070 (python-skip-comments/blanks): Delete function.
2071 (python-util-forward-comment): New function.
2072 (python-continuation-line-p): Delete function.
2073 (python-info-continuation-line-p): New function.
2074 (python-which-func, python-current-defun): Delete function.
2075 (python-info-current-defun): New function.
2076 (python-beginning-of-defun): Delete function.
2077 (python-nav-beginning-of-defun): New function.
2078 (python-close-block-statement-p)
2079 (python-block-end-p): Delete function.
2080 (python-info-closing-block): New function.
2081 (python-comint-output-filter-function)
2082 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
2083 (python-fill-comment, python-fill-decorator, python-fill-paren)
2084 (python-fill-string, python-imenu-make-element-tree)
2085 (python-imenu-make-tree, python-imenu-tree-assoc)
2086 (python-indent-context, python-indent-dedent-line)
2087 (python-indent-line-function)
2088 (python-indent-post-self-insert-function)
2089 (python-indent-toggle-levels)
2090 (python-info-assignment-continuation-line-p)
2091 (python-info-beginning-of-backlash)
2092 (python-info-block-continuation-line-p)
2093 (python-info-closing-block-message)
2094 (python-info-line-ends-backslash-p)
2095 (python-info-looking-at-beginning-of-defun)
2096 (python-info-ppss-context, python-info-ppss-context-type)
2097 (python-nav-list-defun-positions, python-nav-read-defun)
2098 (python-nav-sentence-end, python-nav-sentence-start)
2099 (python-pdbtrack-comint-output-filter-function)
2100 (python-pdbtrack-set-tracked-buffer)
2101 (python-shell-calculate-exec-path)
2102 (python-shell-calculate-process-environment)
2103 (python-shell-completion--do-completion-at-point)
2104 (python-shell-completion--get-completions)
2105 (python-shell-completion-complete-at-point)
2106 (python-shell-completion-complete-or-indent)
2107 (python-shell-get-or-create-process)
2108 (python-shell-get-process-name)
2109 (python-shell-internal-get-or-create-process)
2110 (python-shell-internal-get-process-name)
2111 (python-shell-internal-send-string, python-shell-make-comint)
2112 (python-shell-parse-command, python-shell-send-setup-code)
2113 (python-skeleton-add-menu-items)
2114 (python-util-clone-local-variables, python-util-position)
2115 (run-python-internal, python-indentation-levels)
2116 (python-nav-beginning-of-defun)
2117 (python-completion-complete-at-point): New functions.
2118 (run-python): Change arguments. New API requirements.
2119
2120 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
2121
2122 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
2123 (bug#11649).
2124
2125 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
2126 (macroexp--expand-all): Use it.
2127
2128 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
2129 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
2130 Use `cl-function' instead.
2131
2132 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
2133
2134 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
2135 Suggested by Stefan Monnier while discussing bug#11657.
2136
2137 2012-06-14 Sam Steingold <sds@gnu.org>
2138
2139 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
2140
2141 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
2142
2143 * play/doctor.el (doctor-doc): Remove parameter and use
2144 doctor-sent instead of sent.
2145 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
2146
2147 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
2148
2149 * files.el: Require cl-lib.
2150 (file-name-non-special): Replace case -> cl-case.
2151
2152 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
2153
2154 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
2155 mapping from #' to function*.
2156
2157 2012-06-13 Chong Yidong <cyd@gnu.org>
2158
2159 * mouse.el (mouse-drag-track): Do not set the mark if the user
2160 releases the mouse without selecting anything (Bug#11588).
2161
2162 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
2163
2164 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
2165 as well (bug#11646).
2166
2167 * loadup.el: Count byte-code functions as well.
2168
2169 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
2170 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
2171
2172 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
2173 (bug#11649). Add cl-defun and cl-defmacro.
2174
2175 2012-06-13 Drew Adams <drew.adams@oracle.com>
2176
2177 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
2178 Fix last change.
2179
2180 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
2181
2182 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
2183 Otherwise, it blocks in batch mode.
2184
2185 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
2186
2187 * help-mode.el (bookmark-make-record-default): Declare.
2188
2189 2012-06-13 Chong Yidong <cyd@gnu.org>
2190
2191 * emacs-lisp/package.el (list-packages): Compute a list of
2192 packages that are newly-available since the last list-packages
2193 invocation.
2194 (package-menu--new-package-list): New var.
2195 (package-menu--generate, package-menu--print-info)
2196 (package-menu--status-predicate, package-menu-mark-install):
2197 Handle new status label "new".
2198
2199 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
2200
2201 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
2202 conversion to backquotes.
2203
2204 2012-06-12 Chong Yidong <cyd@gnu.org>
2205
2206 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
2207 Rename from gud-inhibit-global-bindings.
2208
2209 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
2210
2211 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
2212 hook from nxml-glyph-set-hook.
2213
2214 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
2215 declaration.
2216
2217 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
2218
2219 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
2220 Convert to defcustom.
2221
2222 2012-06-12 Drew Adams <drew.adams@oracle.com>
2223
2224 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
2225 New functions.
2226 (help-mode): Use them.
2227
2228 2012-06-11 Glenn Morris <rgm@gnu.org>
2229
2230 * progmodes/fortran.el (fortran-font-lock-keywords-3):
2231 Use preprocessor face for directives.
2232 (fortran-directive-re): Doc fix.
2233
2234 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
2235
2236 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
2237 conversion to backquotes (bug#11652).
2238
2239 Fix compiler-expansion of CL's cXXr functions (bug#11673).
2240 * emacs-lisp/cl-lib.el (cl--defalias): New function.
2241 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
2242 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
2243 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
2244 (cl-ninth, cl-tenth): Mark them as inlinable.
2245 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
2246 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
2247 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
2248 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
2249 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
2250 (cl-list*, cl-adjoin): Don't put an autoload manually.
2251 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
2252 (cl--compiler-macro-list*): Add autoload cookie.
2253 (cl--compiler-macro-cXXr): New function.
2254
2255 * help-fns.el (help-fns--compiler-macro): New function extracted from
2256 describe-function-1; follow aliases and use `compiler-macro' property.
2257 (describe-function-1): Use it.
2258
2259 2012-06-11 Chong Yidong <cyd@gnu.org>
2260
2261 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
2262 is uninstalled, if imagemagick is installed.
2263
2264 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
2265
2266 * emacs-lisp/cl-lib.el: Use lexical-binding.
2267 (cl-map-extents, cl-maclisp-member): Remove.
2268 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
2269 (cl--set-substring, cl--block-wrapper, cl--block-throw)
2270 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
2271 * emacs-lisp/cl-extra.el: Use lexical-binding.
2272 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
2273 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
2274 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
2275 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
2276 * emacs-lisp/cl-seq.el: Use lexical-binding.
2277 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
2278 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
2279 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
2280 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
2281 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
2282 CL's internals.
2283
2284 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
2285
2286 Sync with Tramp 2.2.6-pre.
2287
2288 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
2289 `print-length' and `print-level' to nil, in order to avoid
2290 truncation. Reported by Christopher Schmidt
2291 <christopher@ristopher.com>.
2292
2293 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
2294
2295 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
2296 New defmacro.
2297 (tramp-compat-copy-directory): Add optional argument
2298 COPY-CONTENTS. It is not handled yet.
2299
2300 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
2301 (tramp-ftp-file-name-p): Simplify.
2302
2303 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
2304 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
2305 connection vector.
2306
2307 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
2308 (tramp-methods): Do not use `tramp-password-end-of-line'.
2309 (tramp-completion-function-alist-putty): Handle UNIX case.
2310 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
2311 (tramp-do-file-attributes-with-stat)
2312 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
2313 gid as real numbers. They could run out of integer range on cygwin.
2314 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
2315 (tramp-sh-handle-expand-file-name): Handle hops.
2316 (tramp-open-connection-setup-interactive-shell):
2317 Use `tramp-cleanup'. Move check for busyboxes ...
2318 (tramp-find-shell): ... here. Simplify implementation.
2319 Set "remote-shell" property also for alternative shells.
2320 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
2321 If failing, a regular file would be written otherwise.
2322 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
2323 (tramp-find-inline-encoding): Cache the coding commands in the
2324 process cache. Apply test command on the remote side, if defined.
2325 (tramp-find-inline-compress): Cache the compress commands in the
2326 process cache.
2327 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
2328 when requested. Handle hops.
2329 (tramp-current-connection): New defvar.
2330 (tramp-maybe-open-connection): Use `tramp-cleanup'.
2331 Throw `suppress', if there was a failed connection shortly before.
2332 Handle user interrupt. (Bug#10187)
2333 (tramp-get-inline-compress, tramp-get-inline-coding):
2334 Read connection properties from the process cache.
2335
2336 * net/tramp-smb.el (tramp-smb-server-version)
2337 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
2338 New defconsts.
2339 (tramp-smb-prompt): Extend for powershell prompt.
2340 (tramp-smb-file-name-handler-alist): Add handlers for
2341 `process-file', `shell-command' and `start-file-process'.
2342 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
2343 (tramp-smb-winexe-shell-command-switch): New defcustoms.
2344 (tramp-smb-file-name-p): Simplify.
2345 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
2346 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
2347 (tramp-smb-shell-quote-argument): New defuns.
2348 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
2349 Implement using "tar". By this, time-stamps are preserved.
2350 (tramp-smb-handle-copy-file): Handle also the case of directories.
2351 (tramp-smb-do-file-attributes-with-stat)
2352 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
2353 Use `tramp-get-connection-buffer').
2354 (tramp-smb-handle-rename-file): Use "rename", when source and
2355 target are on the same share.
2356 (tramp-smb-maybe-open-connection): Handle wrong passwords.
2357 Use `tramp-smb-server-version'.
2358 (tramp-smb-wait-for-output): Remove prompt.
2359
2360 * net/tramp.el (top): Require 'cl.
2361 (tramp-methods, tramp-rsh-end-of-line):
2362 Remove `tramp-password-end-of-line' from docstring.
2363 (tramp-save-ad-hoc-proxies): New defcustom.
2364 (tramp-completion-function-alist): Adapt docstring.
2365 (tramp-default-password-end-of-line): Remove defcustom.
2366 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
2367 (tramp-user-regexp, tramp-file-name-regexp-unified)
2368 (tramp-file-name-regexp-url): Extend regexp by hop separator.
2369 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
2370 (tramp-remote-file-name-spec-regexp): New defconst.
2371 (tramp-file-name-structure): Extend structure for hops.
2372 (tramp-get-method-parameter): Move up.
2373 (tramp-file-name-p, tramp-dissect-file-name)
2374 (with-parsed-tramp-file-name): Handle hops.
2375 (tramp-file-name-hop): New defun.
2376 (tramp-make-tramp-file-name): New optional arg HOP.
2377 (tramp-message-show-progress-reporter-message): New defvar.
2378 (tramp-with-progress-reporter): Use it. We cannot use
2379 `tramp-message-show-message' here, because this suppresses also
2380 error buffers.
2381 (tramp-error-with-buffer): Suppress buffer view, if
2382 `tramp-message-show-message' is nil.
2383 Use `tramp-get-connection-buffer'.
2384 (tramp-cleanup): New defun.
2385 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
2386 (tramp-file-name-handler): If `debug-on-error' is set, propagate
2387 an error unchanged.
2388 (tramp-completion-handle-file-name-all-completions): Handle hops.
2389 Fix an error when called from ido.
2390 (tramp-completion-dissect-file-name): Use better local variable
2391 name. Add hop to the vector.
2392 (tramp-handle-insert-file-contents): Use progress-reporter for the
2393 whole scenario.
2394 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
2395 to `t'.
2396 (tramp-check-for-regexp): Simplify search.
2397 (tramp-enter-password): Remove it. Move implementation ...
2398 (tramp-action-password): ... here.
2399 (tramp-mode-string-to-int, tramp-local-host-p)
2400 (tramp-make-tramp-temp-file, tramp-read-passwd)
2401 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
2402 Set tramp-autoload cookie.
2403
2404 * net/trampver.el: Update release number.
2405
2406 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2407 Michael Albinus <michael.albinus@gmx.de>
2408
2409 * net/tramp.el (tramp-set-completion-function): Fix docstring.
2410 (tramp-parse-group, tramp-parse-file)
2411 (tramp-parse-shostkeys-sknownhosts): New defuns.
2412 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
2413 (tramp-parse-shosts-group, tramp-parse-sconfig)
2414 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
2415 (tramp-parse-sknownhosts, tramp-parse-hosts)
2416 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
2417 Use them.
2418 (tramp-parse-passwd-group, tramp-parse-netrc-group)
2419 (tramp-parse-putty-group): Don't narrow.
2420 (tramp-parse-putty): Make a loop.
2421 (tramp-file-name-handler): Catch the `suppress' signal.
2422
2423 2012-06-11 Chong Yidong <cyd@gnu.org>
2424
2425 * image.el (imagemagick-register-types): Put the ImageMagick entry
2426 at the end of image-type-file-name-regexps.
2427
2428 2012-06-11 Johan Bockgård <bojohan@gnu.org>
2429
2430 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
2431 (pcase, pcase-let*, pcase-dolist): Use them.
2432
2433 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
2434
2435 * emacs-lisp/pcase.el (pcase--let*): New function.
2436 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
2437 (pcase--expand): Use macroexp-let².
2438
2439 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
2440
2441 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
2442 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
2443 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
2444 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
2445 * emacs-lisp/derived.el: Use pcase instead of `cl'.
2446 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
2447
2448 2012-06-10 Glenn Morris <rgm@gnu.org>
2449
2450 * mail/rmail.el (rmail-yank-current-message): Leave point at
2451 correct position. (Bug#11660)
2452
2453 2012-06-10 Chong Yidong <cyd@gnu.org>
2454
2455 * allout-widgets.el: Fix code header.
2456
2457 2012-06-10 Chong Yidong <cyd@gnu.org>
2458
2459 * cus-edit.el (customize-changed-options-previous-release):
2460 Bump to 24.1.
2461
2462 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
2463
2464 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
2465
2466 2012-06-09 Chong Yidong <cyd@gnu.org>
2467
2468 * ebuff-menu.el (electric-buffer-list): Preserve header line.
2469
2470 2012-06-09 Martin Rudalics <rudalics@gmx.at>
2471
2472 * window.el (special-display-popup-frame): Don't use
2473 window--display-buffer (Bug#11651).
2474
2475 2012-06-09 Eli Zaretskii <eliz@gnu.org>
2476
2477 Fix parallel builds: make sure loaddefs.el is not being written
2478 while Lisp files are compiled.
2479 (compile): Don't depend on 'mh-autoloads'.
2480 (compile-CMD, compile-SH): Depend on 'autoloads'.
2481 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
2482
2483 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
2484
2485 2012-06-09 Chong Yidong <cyd@gnu.org>
2486
2487 * face-remap.el (face-remap-add-relative, face-remap-set-base)
2488 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
2489 Doc fixes (Bug#11225).
2490
2491 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
2492
2493 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
2494 a function if there's a clear indication that it has a compiler-macro.
2495 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
2496 (macro-declarations-alist): Add arglist to declaration functions.
2497 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
2498 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
2499 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
2500 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
2501 Also add autoload to find the compiler macro.
2502 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
2503 (cl--compiler-macro-member, cl--compiler-macro-assoc)
2504 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
2505 (cl--compiler-macro-get): New functions, replacing calls to
2506 cl-define-compiler-macro.
2507 (cl-typep) [compiler-macro]: Use macroexp-let².
2508
2509 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
2510
2511 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
2512 string properly, fixes Bug#11473.
2513
2514 2012-06-08 Chong Yidong <cyd@gnu.org>
2515
2516 * faces.el (set-face-attribute): Doc fix.
2517 (modify-face): Don't use :bold and :italic.
2518 (error, warning, success): Tweak definitions.
2519
2520 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
2521 (custom-modified, custom-set, custom-changed, custom-themed)
2522 (custom-saved, custom-button, custom-button-mouse)
2523 (custom-button-pressed, custom-state, custom-comment-tag)
2524 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
2525 (custom-group-subtitle): Use new-style face specs.
2526 (custom-invalid-face, custom-rogue-face, custom-modified-face)
2527 (custom-set-face, custom-changed-face, custom-saved-face)
2528 (custom-button-face, custom-button-pressed-face)
2529 (custom-documentation-face, custom-state-face)
2530 (custom-comment-face, custom-comment-tag-face)
2531 (custom-variable-tag-face, custom-variable-button-face)
2532 (custom-face-tag-face, custom-group-tag-face-1)
2533 (custom-group-tag-face): Remove obsolete face alias.
2534
2535 * epa.el (epa-validity-high, epa-validity-medium)
2536 (epa-validity-low, epa-mark, epa-field-name, epa-string)
2537 (epa-field-name, epa-field-body):
2538 * font-lock.el (font-lock-comment-face, font-lock-string-face)
2539 (font-lock-keyword-face, font-lock-builtin-face)
2540 (font-lock-function-name-face, font-lock-variable-name-face)
2541 (font-lock-type-face, font-lock-constant-face):
2542 * ido.el (ido-first-match, ido-only-match, ido-subdir)
2543 (ido-virtual, ido-indicator, ido-incomplete-regexp):
2544 * speedbar.el (speedbar-button-face, speedbar-file-face)
2545 (speedbar-directory-face, speedbar-tag-face)
2546 (speedbar-selected-face, speedbar-highlight-face)
2547 (speedbar-separator-face):
2548 * whitespace.el (whitespace-newline, whitespace-space)
2549 (whitespace-hspace, whitespace-tab, whitespace-trailing)
2550 (whitespace-line, whitespace-space-before-tab)
2551 (whitespace-space-after-tab, whitespace-indentation)
2552 (whitespace-empty):
2553 * emulation/cua-base.el (cua-global-mark):
2554 * eshell/em-prompt.el (eshell-prompt):
2555 * net/newst-plainview.el (newsticker-new-item-face)
2556 (newsticker-old-item-face, newsticker-immortal-item-face)
2557 (newsticker-obsolete-item-face, newsticker-date-face)
2558 (newsticker-statistics-face, newsticker-default-face):
2559 * net/newst-reader.el (newsticker-feed-face)
2560 (newsticker-extra-face, newsticker-enclosure-face):
2561 * net/newst-treeview.el (newsticker-treeview-face)
2562 (newsticker-treeview-new-face, newsticker-treeview-old-face)
2563 (newsticker-treeview-immortal-face)
2564 (newsticker-treeview-obsolete-face)
2565 (newsticker-treeview-selection-face):
2566 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
2567 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
2568 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
2569 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
2570 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
2571 (nxml-outline-active-indicator, nxml-outline-ellipsis):
2572 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
2573 (mpuz-text):
2574 * progmodes/vera-mode.el (vera-font-lock-number)
2575 (vera-font-lock-function, vera-font-lock-interface):
2576 * textmodes/table.el (table-cell): Use new-style face specs, and
2577 don't use the old :bold and :italic attributes.
2578
2579 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
2580 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
2581 (ebrowse-member-class, ebrowse-progress): Likewise.
2582 (ebrowse-tree-mark-face, ebrowse-root-class-face)
2583 (ebrowse-file-name-face, ebrowse-default-face)
2584 (ebrowse-member-attribute-face, ebrowse-member-class-face)
2585 (ebrowse-progress-face): Remove obsolete faces.
2586
2587 * progmodes/flymake.el (flymake-errline, flymake-warnline):
2588 Inherit from error and warning faces respectively.
2589
2590 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
2591 Likewise.
2592 (flyspell-incorrect-face, flyspell-duplicate-face):
2593 Remove obsolete aliases.
2594
2595 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
2596
2597 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
2598 Avoid infloop.
2599
2600 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
2601
2602 * startup.el (argv, argi): Make lexically scoped.
2603 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
2604 * emacs-lisp/cl-macs.el: Use lexical-binding.
2605 Rename cl-bind-* to cl--bind-*.
2606 * files.el: Don't require `cl' since it doesn't use it.
2607 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
2608
2609 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
2610
2611 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
2612 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
2613 instead of calling external sort utility.
2614 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
2615
2616 2012-06-08 Eli Zaretskii <eliz@gnu.org>
2617
2618 * descr-text.el (describe-char): Mention how to insert the
2619 character, if the current input method doesn't support it.
2620 See the discussion in this thread for the details:
2621 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
2622
2623 2012-06-08 Sam Steingold <sds@gnu.org>
2624
2625 * bindings.el (global-map): Bind XF86Forward to next-buffer and
2626 XF86Back to previous-buffer.
2627 (minibuffer-local-map): Bind them to next-history-element and
2628 previous-history-element respectively.
2629 * help-mode.el (help-mode-map): Bind them to help-go-forward and
2630 help-go-back respectively.
2631 * info.el (Info-mode-map): Bind them to Info-history-forward and
2632 Info-history-back respectively.
2633 These are the keys next to Up on the ThinkPad keyboard.
2634
2635 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
2636
2637 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
2638 * emacs-lisp/cl-macs.el: Provide itself.
2639 (cl--labels-convert-cache): New var.
2640 (cl--labels-convert): New function.
2641 (cl-flet, cl-labels): New implementation with new semantics, relying on
2642 lexical-binding.
2643 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
2644 (cl-closure-vars, cl--function-convert-cache)
2645 (cl--function-convert): Move from cl-macs.el.
2646 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
2647 rename by removing the "cl-" prefix.
2648 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
2649
2650 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
2651
2652 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
2653 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
2654 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
2655 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
2656 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
2657 (cl-hash-table-count): Add old compatibility aliases.
2658
2659 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
2660 Use macroexpand-all-environment instead.
2661 (cl--old-macroexpand): New var.
2662 (cl--sm-macroexpand): New function.
2663 (cl-symbol-macrolet): Use it during macro expansion.
2664 (cl--function-convert-cache): New var.
2665 (cl--function-convert): New function, extracted from
2666 cl-macroexpand-all.
2667 (cl-lexical-let): Use it.
2668
2669 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
2670 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
2671 (cl-member): Remove old alias.
2672
2673 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
2674 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
2675 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
2676 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
2677 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
2678 (cl-macroexpand-cmacs): Remove var.
2679 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
2680 Use macroexpand-all instead.
2681
2682 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
2683
2684 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
2685 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
2686 (macroexp-copyable-p): New functions and macros.
2687 * emacs-lisp/edebug.el (edebug-unwrap):
2688 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
2689 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
2690 (pcase--let*): Remove.
2691 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
2692 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
2693 macroexp-const-p instead.
2694 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
2695
2696 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
2697 instead of "cl-" for internal definitions. Use macroexp-const-p.
2698 (cl-old-bc-file-form): Remove var.
2699 (cl-const-exprs-p): Remove fun.
2700 (cl-labels, cl-macrolet): Use backquote.
2701 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
2702 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
2703 (cl-define-setf-expander): Rename from cl-define-setf-method.
2704 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
2705
2706 * international/mule-cmds.el: Don't require CL.
2707 (view-hello-file): Don't use `letf'.
2708
2709 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
2710
2711 * tmm.el (tmm-prompt): Use string-prefix-p.
2712 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
2713 (tmm-add-prompt): Use minibuffer-completion-help.
2714 (tmm-delete-map): Remove.
2715
2716 * subr.el (kbd): Make it its own function.
2717
2718 2012-06-07 Stefan Merten <smerten@oekonux.de>
2719
2720 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
2721 Silence compiler warnings. Fix versions.
2722 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
2723 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
2724 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
2725 (rst-package-emacs-version-alist): Correct Emacs version to
2726 represent major merge with upstream.
2727 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
2728
2729 2012-06-06 Glenn Morris <rgm@gnu.org>
2730
2731 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
2732 Only print environment variables if set.
2733
2734 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
2735
2736 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
2737 (macroexp--cons): Rename from maybe-cons.
2738 (macroexp--accumulate): Rename from macroexp-accumulate.
2739 (macroexp--all-forms): Rename from macroexpand-all-forms.
2740 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
2741 (macroexp--expand-all): Rename from macroexpand-all-1.
2742
2743 2012-06-06 Sam Steingold <sds@gnu.org>
2744
2745 * calendar/calendar.el (calendar-in-read-only-buffer):
2746 Call `special-mode' to enable the standard read-only keybindings.
2747
2748 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
2749
2750 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
2751 with "loading" messages (bug#11635).
2752
2753 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
2754
2755 * files.el (enable-remote-dir-locals): New option.
2756 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
2757
2758 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
2759 Ensure, that the temp directory is local.
2760
2761 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
2762 `temporary-file-directory'.
2763
2764 * progmodes/python.el (python-send-region): Ensure, that the
2765 temporary file is created also in the remote case.
2766
2767 2012-06-06 Glenn Morris <rgm@gnu.org>
2768
2769 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
2770 (vc-rcs-update-changelog): Use it.
2771
2772 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
2773
2774 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
2775 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
2776 (vc-sccs-diff): Replace use of the external vcdiff script.
2777
2778 2012-06-05 Glenn Morris <rgm@gnu.org>
2779
2780 * ledit.el: Move to obsolete/.
2781
2782 2012-06-05 Sam Steingold <sds@gnu.org>
2783
2784 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
2785 patch (Bug#11140).
2786
2787 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
2788
2789 * emacs-lisp/cust-print.el: Move to obsolete.
2790
2791 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
2792 compiler-macro expansion.
2793
2794 Add native compiler-macro support.
2795 * emacs-lisp/macroexp.el (macroexpand-all-1):
2796 Support compiler-macros directly. Properly follow aliases and apply
2797 the compiler macros more thoroughly.
2798 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
2799 macroexpand now properly follows aliases.
2800 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
2801 (cl-compiler-macroexpand): Use new prop.
2802 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
2803
2804 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
2805
2806 2012-06-05 Martin Rudalics <rudalics@gmx.at>
2807
2808 * window.el (get-lru-window, get-mru-window, get-largest-window):
2809 New argument NOT-SELECTED to avoid picking the selected window.
2810 (window--display-buffer-1, window--display-buffer-2): Replace by
2811 new function window--display-buffer
2812 (display-buffer-same-window, display-buffer-reuse-window)
2813 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
2814 Use window--display-buffer.
2815 (display-buffer-use-some-window): Remove temporary dedication
2816 hack by calling get-lru-window and get-largest-window with
2817 NOT-SELECTED argument non-nil. Call window--display-buffer.
2818
2819 2012-06-05 Glenn Morris <rgm@gnu.org>
2820
2821 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
2822 Replace external vcdiff script.
2823
2824 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
2825
2826 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
2827
2828 2012-06-04 Chong Yidong <cyd@gnu.org>
2829
2830 * image.el (imagemagick-types-inhibit): Revert last change.
2831 Add INFO and M.
2832 (imagemagick-enabled-types): Remove CIN and EPS*.
2833
2834 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
2835
2836 * emacs-lisp/cl-lib.el: Rename from cl.el.
2837 * emacs-lisp/cl.el: New compatibility file.
2838 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
2839 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
2840 to obey the "cl-" prefix.
2841 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
2842
2843 2012-06-03 Glenn Morris <rgm@gnu.org>
2844
2845 * emacs-lisp/authors.el (authors-aliases): Addition.
2846
2847 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
2848 Fix :version.
2849
2850 2012-06-03 Stefan Merten <smerten@oekonux.de>
2851
2852 * textmodes/rst.el: Add comments.
2853 (rst-transition, rst-adornment): New faces.
2854 (rst-adornment-faces-alist): Make default safe to reevaluate.
2855 Fixes
2856 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
2857 Improve customization tags.
2858 (rst-define-level-faces): Clarify meaning.
2859
2860 2012-06-03 Chong Yidong <cyd@gnu.org>
2861
2862 * progmodes/compile.el (compilation-mode-line-fail)
2863 (compilation-mode-line-run, compilation-mode-line-exit):
2864 New faces.
2865 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
2866
2867 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
2868
2869 * progmodes/which-func.el (which-func-update-ediff-windows):
2870 New function. Use it in ediff-select-hook (Bug#11478).
2871
2872 2012-06-03 Chong Yidong <cyd@gnu.org>
2873
2874 * bindings.el: Remove explicit help text from format-mode-line.
2875 It is now supplied by mode-line-default-help-echo.
2876 (mode-line-front-space, mode-line-end-spaces)
2877 (mode-line-misc-info): New variables.
2878 (mode-line-modes, mode-line-position): Move the default value to
2879 the variable definition.
2880 (mode-line-default-help-echo): New defcustom.
2881 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
2882 (mode-line-modified-help-echo): New functions.
2883 (mode-line-mule-info, mode-line-modified): Use them.
2884 (mode-line-eol-desc, propertized-buffer-identification):
2885 Consistency fixes for help text.
2886 (mode-line-coding-system-map): Allow using mouse-3 to invoke
2887 set-buffer-file-coding-system (Bug#289).
2888 (mode-line-mule-info-help-echo): Update help text.
2889
2890 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
2891
2892 * simple.el (execute-extended-command): Set real-this-command
2893 (bug#11506).
2894
2895 2012-06-02 Chong Yidong <cyd@gnu.org>
2896
2897 Remove incorrect uses of "modeline" in comments, docstrings, and
2898 function/variable names (Bug#10329).
2899
2900 * cus-edit.el (mode-line):
2901 * dframe.el (dframe-mouse-hscroll):
2902 * emacs-lisp/re-builder.el:
2903 * emacs-lisp/easy-mmode.el (define-minor-mode):
2904 * frame.el (set-frame-name):
2905 * help.el (lookup-minor-mode-from-indicator):
2906 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
2907 * progmodes/cc-cmds.el (c-toggle-auto-newline)
2908 (c-toggle-hungry-state):
2909 * progmodes/antlr-mode.el (antlr-language-alist):
2910 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
2911 * progmodes/vhdl-mode.el (vhdl-mode):
2912 * progmodes/which-func.el (which-func, which-func-cleanup-function):
2913 * term/ns-win.el (ns-face-at-pos):
2914 * term/sup-mouse.el (sup-mouse-report):
2915 * textmodes/flyspell.el (flyspell-mode-line-string):
2916 * textmodes/ispell.el (ispell-highlight-face):
2917 * textmodes/reftex-global.el:
2918 * vc/vc-arch.el (vc-arch-mode-line-string):
2919 * vc/vc-cvs.el (vc-cvs-mode-line-string):
2920 * vc/vc-git.el (vc-git-mode-line-string):
2921 * vc/vc-hooks.el (vc-display-status)
2922 (vc-default-mode-line-string):
2923 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
2924
2925 * ansi-color.el (ansi-color-faces-vector): Change default faces.
2926
2927 * dired.el (dired-sort-set-mode-line): Rename from
2928 dired-sort-set-modeline. All callers changed.
2929
2930 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
2931 eshell-status-in-modeline.
2932
2933 * foldout.el (foldout-mode-line-string): Rename from
2934 foldout-modeline-string. All callers changed.
2935 (foldout-update-mode-line): Rename from foldout-update-modeline.
2936
2937 * subr.el (redraw-modeline): Make into obsolete alias.
2938
2939 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
2940 timeclock-modeline-display. Make old name an alias.
2941 (timeclock-update-mode-line): Likewise. All callers changed.
2942 (timeclock-mode-line-display): No need to check before using
2943 add-hook.
2944 (timeclock-relative, timeclock-day-over-hook)
2945 (timeclock-use-elapsed, timeclock-mode-string)
2946 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
2947
2948 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
2949 crisp-mode-modeline-string.
2950
2951 * play/solitaire.el (solitaire-build-mode-line): Rename from
2952 solitaire-build-modeline. All callers changed.
2953
2954 * play/zone.el (zone-hiding-mode-line): Rename from
2955 zone-hiding-modeline. All callers changed.
2956 (zone): Remove unusued `modeline-hidden-level' property.
2957
2958 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
2959 xscheme-modeline-initialize. All callers changed.
2960
2961 * strokes.el (strokes-lighter): Rename from
2962 strokes-modeline-string.
2963
2964 * textmodes/sgml-mode.el (html-face-tag-alist)
2965 (html-tag-face-alist): Use mode-line face instead of obsolete
2966 alias modeline.
2967
2968 2012-06-02 Stefan Merten <smerten@oekonux.de>
2969
2970 * textmodes/rst.el: Always require `cl'.
2971 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
2972
2973 2012-06-02 Chong Yidong <cyd@gnu.org>
2974
2975 * image.el (imagemagick-enabled-types): Rename from
2976 imagemagick-types-enable. Add many more types.
2977 (imagemagick-types-inhibit): Change default to nil.
2978 (imagemagick-filter-types): Caller changed.
2979
2980 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
2981
2982 * emacs-lisp/cl-macs.el: Use backquotes.
2983 (cl-transform-function-property): Use eval-and-compile rather than
2984 abusing `require'.
2985 (defstruct): Use declare-function instead of with-no-warnings.
2986
2987 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
2988 (byte-compile-output-docform): Re-add the print-circle bindings.
2989 (byte-compile-fix-header): Use #$ just because it's shorter.
2990 (byte-compile-output-file-form): Remove defun/defmacro.
2991
2992 2012-06-01 Martin Rudalics <rudalics@gmx.at>
2993
2994 * simple.el (choose-completion): Remove now obsolete binding for
2995 owindow.
2996
2997 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
2998
2999 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
3000 in order to avoid "Stack overflow in regexp matcher".
3001
3002 2012-05-31 Glenn Morris <rgm@gnu.org>
3003
3004 * image.el: For clarity, call imagemagick-register-types at
3005 top-level, rather than relying on a custom :initialize.
3006 (imagemagick-types-enable): New option. (Bug#11557)
3007 (imagemagick-filter-types): New function. (Bug#7406)
3008 (imagemagick-register-types): Use imagemagick-filter-types.
3009 If disabling support, remove elements altogether rather
3010 than using an impossible regexp.
3011 (imagemagick-types-inhibit): Give it the default init function.
3012
3013 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
3014
3015 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
3016 Handle arbitrary file name lengths (Bug#11585).
3017
3018 2012-05-31 Martin Rudalics <rudalics@gmx.at>
3019
3020 * desktop.el (desktop-read): Clear previous and next buffers for
3021 all windows and bury *Messages* buffer (bug#11556).
3022
3023 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
3024
3025 Add `declare' for `defun'. Align `defmacro's with it.
3026 * emacs-lisp/easy-mmode.el (define-minor-mode)
3027 (define-globalized-minor-mode): Don't autoload the var definitions.
3028 * emacs-lisp/byte-run.el: Use lexical-binding.
3029 (defun-declarations-alist, macro-declarations-alist): New vars.
3030 (defmacro, defun): Use them.
3031 (make-obsolete, define-obsolete-function-alias)
3032 (make-obsolete-variable, define-obsolete-variable-alias):
3033 Use `declare'.
3034 (macro-declaration-function): Mark obsolete.
3035 * emacs-lisp/autoload.el: Use lexical-binding.
3036 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
3037
3038 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3039
3040 * textmodes/ispell.el (ispell-with-no-warnings):
3041 Define as a macro.
3042 (ispell-kill-ispell, ispell-change-dictionary):
3043 Use `called-interactively-p' for Emacs instead of obsolete
3044 `interactive-p'.
3045
3046 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
3047
3048 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
3049 (macro-declaration-function): Move var from C code.
3050 (macro-declaration-function): Define function with defalias.
3051 * emacs-lisp/macroexp.el (macroexpand-all-1):
3052 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
3053 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
3054 defun/defmacro any more.
3055 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
3056 Provide fallback for unknown arglist.
3057 (byte-compile-arglist-warn): Change calling convention.
3058 (byte-compile-output-file-form): Move print-vars binding.
3059 (byte-compile-output-docform): Simplify accordingly.
3060 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
3061 (byte-compile-defmacro-declaration): Remove.
3062 (byte-compile-file-form-defmumble): Generalize to defalias.
3063 (byte-compile-output-as-comment): Return byte-positions.
3064 Simplify callers accordingly.
3065 (byte-compile-lambda): Use `assert'.
3066 (byte-compile-defun, byte-compile-defmacro): Remove.
3067 (byte-compile-file-form-defalias):
3068 Use byte-compile-file-form-defmumble.
3069 (byte-compile-defalias-warn): Remove.
3070
3071 2012-05-29 Stefan Merten <smerten@oekonux.de>
3072
3073 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
3074 possible. Fix authors. Improve comments. Improve loading of `cl'.
3075
3076 (rst-mode-abbrev-table): Merge definition.
3077 (rst-mode): Make sure `font-lock-defaults' is buffer local.
3078 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
3079
3080 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
3081
3082 * calendar/icalendar.el
3083 (icalendar-export-region): Export UID properly.
3084
3085 2012-05-29 Leo Liu <sdl.web@gmail.com>
3086 * calendar/icalendar.el (icalendar-import-format):
3087 Add `icalendar-import-format-uid' (Bug#11525).
3088 (icalendar-import-format-uid): New.
3089 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
3090 Export UID.
3091
3092 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
3093
3094 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
3095 different alternative patterns.
3096 (pcase-codegen): Be more careful to preserve identity.
3097 (pcase--u1): Don't forget to mark vars as used.
3098
3099 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
3100 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
3101 (byte-compile-from-buffer): ...rather than here.
3102
3103 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
3104 functions from byte-compile-function-environment.
3105
3106 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
3107
3108 * window.el (window-deletable-p): Avoid deleting the root window
3109 of a frame with an active minibuffer.
3110
3111 2012-05-29 Martin Rudalics <rudalics@gmx.at>
3112
3113 * simple.el (choose-completion): Use quit-window (Bug#11567).
3114
3115 2012-05-29 Chong Yidong <cyd@gnu.org>
3116
3117 * whitespace.el (whitespace-cleanup): Fix usage of
3118 whitespace-empty-at-bob-regexp (Bug#11492).
3119
3120 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3121
3122 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
3123 revert (Bug#11488).
3124
3125 2012-05-29 Juri Linkov <juri@jurta.org>
3126
3127 * isearch.el (isearch-mode-map): Bind `M-s _' to
3128 `isearch-toggle-symbol'. Bind `M-s c' to
3129 `isearch-toggle-case-fold'.
3130 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
3131 (isearch-forward): Add `M-s _' to the docstring.
3132 (isearch-forward-symbol, isearch-toggle-case-fold)
3133 (isearch-symbol-regexp): New functions. (Bug#11381)
3134
3135 2012-05-29 Juri Linkov <juri@jurta.org>
3136
3137 * isearch.el (isearch-word): Add docstring. (Bug#11381)
3138 (isearch-occur, isearch-search-and-update): If `isearch-word' is
3139 a function, call it to get the regexp.
3140 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
3141 property `isearch-message-prefix' instead of the string "word ".
3142 (isearch-search-fun-default): For the case of `isearch-word',
3143 return a lambda that calls re-search-forward/re-search-backward
3144 with a regexp returned by `word-search-regexp' or by the function
3145 in `isearch-word'.
3146
3147 2012-05-29 Juri Linkov <juri@jurta.org>
3148
3149 * isearch.el (isearch-search-fun-default): New function.
3150 (isearch-search-fun): Move default part to the new function
3151 `isearch-search-fun-default'.
3152 (isearch-search-fun-function): Set the default value to
3153 `isearch-search-fun-default'. (Bug#11381)
3154
3155 * comint.el (comint-history-isearch-end):
3156 Use `isearch-search-fun-default'.
3157 (comint-history-isearch-search): Use `isearch-search-fun-default'
3158 and remove spacial case for `isearch-word'.
3159 (comint-history-isearch-wrap): Remove spacial case for
3160 `isearch-word'.
3161
3162 * hexl.el (hexl-isearch-search-function):
3163 Use `isearch-search-fun-default'.
3164
3165 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
3166 Use `word-search-regexp' for `isearch-word'.
3167
3168 * misearch.el (multi-isearch-search-fun):
3169 Use `isearch-search-fun-default'.
3170
3171 * simple.el (minibuffer-history-isearch-search):
3172 Use `isearch-search-fun-default' and remove spacial case for
3173 `isearch-word'.
3174 (minibuffer-history-isearch-wrap): Remove spacial case for
3175 `isearch-word'.
3176
3177 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
3178 Remove spacial case for `isearch-word'.
3179 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
3180
3181 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3182
3183 Decrease XEmacs incompatibilities.
3184 * textmodes/flyspell.el (flyspell-check-pre-word-p):
3185 Use `string-match'.
3186 (flyspell-delete-region-overlays): Use alternative definition for
3187 XEmacs.
3188 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
3189 (flyspell-word): Use `process-kill-without-query' if XEmacs.
3190 (flyspell-mode-on): Use `interactive-p' if XEmacs.
3191 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
3192 `define-obsolete-face-alias' under XEmacs, but old method.
3193
3194 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
3195 `with-no-warnings' definition or Emacs alias.
3196 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
3197 (ispell-word): Do not use `region-p' if XEmacs.
3198
3199 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3200
3201 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
3202 Check for `ispell-dictionary-base-alist' instead of full
3203 `ispell-dictionary-alist'.
3204 (ispell-init-process): Show spellchecker when starting new Ispell
3205 process.
3206
3207 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
3208
3209 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
3210 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
3211
3212 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
3213
3214 * version.el (motif-version-string, gtk-version-string)
3215 (ns-version-string): Declare.
3216
3217 2012-05-27 Juri Linkov <juri@jurta.org>
3218
3219 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
3220 after the `eval-defun-1' specialcaseing
3221 like in `edebug-eval-defun' (bug#10181).
3222
3223 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
3224 like in `eval-defun-1'.
3225
3226 2012-05-27 Eli Zaretskii <eliz@gnu.org>
3227
3228 * mail/sendmail.el (mail-yank-region):
3229 Recognize rmail-yank-current-message in addition to insert-buffer.
3230 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
3231 a *mail* buffer created through rmail-start-mail with sendmail as
3232 mail-user-agent.
3233
3234 2012-05-27 Chong Yidong <cyd@gnu.org>
3235
3236 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
3237 Default to 256 (Bug#11267).
3238
3239 * help.el (describe-mode): Doc fix.
3240
3241 2012-05-26 Glenn Morris <rgm@gnu.org>
3242
3243 * w32-fns.el (w32-init-info): Remove.
3244 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
3245
3246 * info.el (info-initialize): For self-contained NS builds, put the
3247 included info/ directory at the front. (Bug#2791)
3248
3249 * paths.el (Info-default-directory-list): Make it a defcustom,
3250 mainly so that we can use custom-initialize-delay.
3251
3252 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
3253
3254 * subr.el (buffer-has-markers-at): Mark obsolete.
3255
3256 * subr.el (lambda): Use declare.
3257
3258 * emacs-lisp/lisp-mode.el (lambda):
3259 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
3260
3261 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3262
3263 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
3264
3265 2012-05-26 Glenn Morris <rgm@gnu.org>
3266
3267 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
3268
3269 2012-05-25 Glenn Morris <rgm@gnu.org>
3270
3271 * paths.el: Remove no-byte-compile.
3272 * loadup.el: No need to load paths.el uncompiled.
3273
3274 * image.el (imagemagick-types-inhibit): Doc fix.
3275
3276 * version.el: Remove no-byte-compile and associated formatting.
3277 * loadup.el: No need to load version.el uncompiled. AFAICS, this
3278 is ancient code from when there was an "inc-vers.el".
3279
3280 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
3281
3282 * progmodes/gdb-mi.el: Minor style changes.
3283 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
3284 Turn into minor modes.
3285 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
3286 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
3287 (gdb-shell): Remove unneeded let-binding.
3288 (gdb-get-many-fields): Eliminate O(n²) behavior.
3289
3290 2012-05-25 Eli Zaretskii <eliz@gnu.org>
3291
3292 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
3293 platforms that don't link in fontset.c.
3294
3295 2012-05-25 Juri Linkov <juri@jurta.org>
3296
3297 Use the same diff color scheme as in modern VCSes (bug#10181).
3298
3299 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
3300 to avoid confusion with `diff-added' that now uses green colors.
3301 (diff-removed): Use shades of red.
3302 (diff-added): Use shades of green.
3303 (diff-changed): Leave just the yellow color.
3304 (diff-use-changed-face): New variable.
3305 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
3306 how to highlight context diff changes.
3307 (diff-refine-change): Use shades of yellow.
3308 (diff-refine-removed): New face that uses shades of red.
3309 (diff-refine-added): New face that uses shades of green.
3310 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
3311 `diff-refine-removed' in the call to `smerge-refine-subst'
3312 depending on the value of `diff-use-changed-face'.
3313
3314 * vc/smerge-mode.el (smerge-mine): Use shades of red.
3315 (smerge-other): Use shades of green.
3316 (smerge-base): Use shades of yellow.
3317 (smerge-refined-change): Empty face.
3318 (smerge-refined-removed): New face that uses shades of red.
3319 (smerge-refined-added): New face that uses shades of green.
3320 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
3321 args `props-r' and `props-a', and use them. Doc fix.
3322 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
3323 on its value use different faces `smerge-refined-change',
3324 `smerge-refined-removed', `smerge-refined-added' in the call to
3325 `smerge-refine-subst'.
3326
3327 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
3328 Add face condition `min-colors 88' with shades of red.
3329 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
3330 `min-colors 88' with shades of green.
3331 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
3332 `min-colors 88' with shades of yellow.
3333
3334 2012-05-24 Glenn Morris <rgm@gnu.org>
3335
3336 * paths.el (prune-directory-list, remote-shell-program): Move to...
3337 * files.el (prune-directory-list, remote-shell-program): ...here.
3338 For the latter, delay initialization, prefer ssh, just search PATH.
3339
3340 * paths.el (term-file-prefix): Move to faces.el (the only user).
3341 * faces.el (term-file-prefix): Move here, make it a defcustom.
3342
3343 * paths.el (news-directory, news-path, news-inews-program):
3344 Move to gnus/nnspool.el.
3345
3346 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
3347
3348 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
3349 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
3350 Make the latter a defcustom, with a delayed initialization.
3351
3352 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
3353 These were deleted from Gnus itself late 2010.
3354
3355 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
3356
3357 * progmodes/which-func.el (which-func-ff-hook):
3358 Check against user-error, not error.
3359
3360 * emacs-lisp/edebug.el (top): Do not load or set up loading of
3361 cl-specs.el, which no longer exists.
3362
3363 2012-05-22 Glenn Morris <rgm@gnu.org>
3364
3365 * info.el (info-emacs-bug): New command.
3366 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
3367 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
3368
3369 2012-05-21 Glenn Morris <rgm@gnu.org>
3370
3371 * makefile.w32-in (update-subdirs-SH):
3372 * Makefile.in (update-subdirs): Update for moved update-subdirs.
3373
3374 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
3375
3376 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
3377
3378 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3379 Simplify Maven regexp, and make sure the file can't start with a space
3380 (bug#11517).
3381
3382 2012-05-21 Glenn Morris <rgm@gnu.org>
3383
3384 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
3385 Scrap superfluous subshells.
3386
3387 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
3388
3389 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
3390 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
3391
3392 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
3393
3394 * calc/calc.el (calc-ensure-consistent-units): New variable.
3395
3396 * calc/calc-units.el (math-consistent-units-p)
3397 (math-check-unit-consistency): New functions.
3398 (calc-quick-units, calc-convert-units):
3399 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
3400 is non-nil.
3401 (calc-extract-units): Fix typo.
3402
3403 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
3404
3405 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
3406
3407 * textmodes/flyspell.el: Commenting style, plus code simplifications.
3408 (flyspell-default-deplacement-commands): Don't spell check after
3409 repeated window/frame switches (e.g. triggered by mouse-movement).
3410 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
3411 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
3412 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
3413 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
3414 Remove unused vars.
3415 (flyspell-get-casechars, flyspell-get-not-casechars):
3416 Simplify; Don't bother removing a ] just to add it back.
3417 * textmodes/ispell.el (ispell-program-name): Use executable-find.
3418
3419 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3420
3421 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
3422 New functions.
3423 (math-function-table): Add support for more C functions.
3424
3425 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3426
3427 * textmodes/flyspell.el (flyspell-check-pre-word-p)
3428 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
3429 Protect delay handling for otherchars against empty otherchars.
3430
3431 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
3432
3433 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
3434 their respective macro declarations.
3435 * skeleton.el (define-skeleton):
3436 * progmodes/compile.el (define-compilation-mode):
3437 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
3438 (define-ibuffer-filter):
3439 * emacs-lisp/generic.el (define-generic-mode):
3440 * emacs-lisp/easy-mmode.el (define-minor-mode)
3441 (define-globalized-minor-mode):
3442 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
3443 * emacs-lisp/byte-run.el (defsubst):
3444 * custom.el (deftheme): Add doc-string metadata.
3445
3446 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3447
3448 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
3449
3450 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3451
3452 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
3453
3454 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
3455 * emacs-lisp/cl-macs.el: Idem.
3456 * emacs-lisp/cl-specs.el: Remove.
3457
3458 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3459
3460 Minor renaming of internal CL functions and variables.
3461 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
3462 (cl--position): Rename from cl-position.
3463 (cl--delete-duplicates): Rename from cl-delete-duplicates.
3464 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
3465 (cl--random-state): Rename from *random-state*.
3466
3467 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3468
3469 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
3470 parens around the arg list (bug#11499).
3471
3472 2012-05-17 Juri Linkov <juri@jurta.org>
3473
3474 * isearch.el (word-search-regexp, word-search-backward)
3475 (word-search-forward, word-search-backward-lax)
3476 (word-search-forward-lax): Move functions from search.c
3477 (bug#10145, bug#11381).
3478
3479 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3480
3481 * textmodes/flyspell.el (flyspell-check-pre-word-p)
3482 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
3483 Delay for otherchars as for normal word components.
3484
3485 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
3486
3487 * minibuffer.el (completion--sifn-requote): Fix last change.
3488 (minibuffer-local-must-match-filename-map):
3489 Move define-obsolete-variable-alias before its var.
3490
3491 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
3492
3493 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
3494
3495 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
3496 behavior.
3497 (completion--string-equal-p): New function.
3498 (completion--twq-all): Use it to get better assertion failure data.
3499
3500 Only handle ".." and '..' quoting in shell-mode (bug#11466).
3501 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
3502 (shell--requote-argument): New functions.
3503 (shell-completion-vars): Use them.
3504 (shell--parse-pcomplete-arguments): Rename from
3505 shell-parse-pcomplete-arguments.
3506 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
3507 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
3508 Obey comint-file-name-quote-list.
3509
3510 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
3511 (smie-indent-keyword): Use it.
3512
3513 2012-05-14 Stefan Merten <smerten@oekonux.de>
3514
3515 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
3516
3517 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
3518
3519 * net/rlogin.el (rlogin-mode-map): Fix last change.
3520
3521 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
3522
3523 * mail/smtpmail.el (smtpmail-send-command): Send the command and
3524 the following \r\n using a single `process-send-string', since the
3525 Lotus SMTP server refuses to accept any commands if they are sent
3526 with two `process-send-string's (Bug#11444).
3527
3528 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
3529
3530 * shell.el (shell-parse-pcomplete-arguments):
3531 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
3532
3533 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
3534
3535 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
3536 (image-transform-scale, image-transform-right-angle-fudge): New vars.
3537 (image-transform-width, image-transform-fit-width): New functions.
3538 (image-transform-properties): Use them.
3539 (image-transform-check-size): New function.
3540 (image-toggle-display-image): Use it (for testing).
3541 (image-transform-set-rotation): Reduce angle mod 360.
3542 Delete obsolete comment.
3543
3544 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
3545
3546 * image-mode.el: Fix scaling (bug#11399).
3547 (image-transform-resize): Doc fix.
3548 (image-transform-properties): Default scale is 1 and height should
3549 be an integer.
3550
3551 2012-05-13 Johan Bockgård <bojohan@gnu.org>
3552
3553 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
3554 than hard-coding `car', to fix misbehavior when moving forward.
3555
3556 2012-05-13 Chong Yidong <cyd@gnu.org>
3557
3558 * emacs-lisp/tabulated-list.el (tabulated-list-format)
3559 (tabulated-list-entries, tabulated-list-padding)
3560 (tabulated-list-sort-key): Make permanent-local.
3561
3562 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
3563 (electric-buffer-list): Put electric buffer menu
3564 command descriptions in this docstring, instead of the docstring
3565 of electric-buffer-menu-mode. Code cleanups.
3566 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
3567 Electric-buffer-menu-mode.
3568 (electric-buffer-update-highlight): Minor code cleanup.
3569
3570 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
3571
3572 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
3573 (Bug#11447)
3574
3575 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
3576
3577 Move define-obsolete-variable-alias before the var's definition.
3578 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
3579 * tooltip.el (tooltip-hook):
3580 * textmodes/reftex-toc.el (reftex-toc-map):
3581 * textmodes/reftex-sel.el (reftex-select-label-map)
3582 (reftex-select-bib-map):
3583 * textmodes/reftex-index.el (reftex-index-map)
3584 (reftex-index-phrases-map):
3585 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
3586 * progmodes/meta-mode.el (meta-mode-map):
3587 * novice.el (disabled-command-hook):
3588 * loadhist.el (unload-hook-features-list):
3589 * frame.el (blink-cursor):
3590 * files.el (find-file-not-found-hooks, write-file-hooks)
3591 (write-contents-hooks):
3592 * emulation/tpu-edt.el (GOLD-map):
3593 * emacs-lock.el (emacs-lock-from-exiting):
3594 * emacs-lisp/generic.el (generic-font-lock-defaults):
3595 * emacs-lisp/chart.el (chart-map):
3596 * dos-fns.el (register-name-alist):
3597 * dired-x.el (dired-omit-files-p):
3598 * desktop.el (desktop-enable):
3599 * cus-edit.el (custom-mode-hook):
3600 * buff-menu.el (buffer-menu-mode-hook):
3601 * bookmark.el (bookmark-read-annotation-text-func)
3602 (bookmark-exit-hooks):
3603 * allout.el (allout-mode-deactivate-hook)
3604 (allout-exposure-change-hook, allout-structure-added-hook)
3605 (allout-structure-deleted-hook, allout-structure-shifted-hook):
3606 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
3607 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
3608 comes before the corresponding variable's definition.
3609
3610 2012-05-12 Chong Yidong <cyd@gnu.org>
3611
3612 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
3613 (Buffer-menu-mouse-select): Restore function (Bug#11459).
3614 (Buffer-menu-mode-map): Bind it.
3615 (Buffer-menu--pretty-name): Add a mouse-face property.
3616
3617 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
3618
3619 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
3620 (prolog-upper-case-string, prolog-lower-case-string)
3621 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
3622 (prolog-use-smie, prolog-smie-grammar): New vars.
3623 (prolog-smie-forward-token, prolog-smie-backward-token)
3624 (prolog-smie-rules): New funs.
3625 (prolog-comment-indent): Remove.
3626 (prolog-mode-variables): Use default comment indentation instead.
3627 Setup SMIE.
3628 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
3629 (prolog-mode): Don't call them any more.
3630 (prolog-electric-colon, prolog-electric-dash)
3631 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
3632
3633 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
3634
3635 * minibuffer.el (completion--twq-all): Again, allow case differences.
3636
3637 * term.el: Move keymap initialization code to be more idiomatic.
3638 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
3639 (term-terminal-menu): Move initialization into declaration.
3640 (term-escape-char): Let the user set it in her .emacs.
3641
3642 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
3643 Provide SMIE-based indentation (not enabled by default yet).
3644 (sh-mode-map): Don't bind electric keys.
3645 Use electric-pair-mode instead of skeleton-pair.
3646 (sh-assignment-regexp): Fit within 80 columns.
3647 (sh-indent-supported): Specify actual shell name instead of boolean.
3648 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
3649 (sh-maybe-here-document): Use it. Make obsolete.
3650 (sh-electric-here-document-mode) New minor mode.
3651 (sh-mode): Use it. Don't set sh-indent-supported-here here.
3652 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
3653 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
3654 (sh-smie-rc-grammar, sh-use-smie): New vars.
3655 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
3656 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
3657 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
3658 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
3659 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
3660 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
3661 (sh-set-shell): Use smie-setup if requested.
3662
3663 * term.el (term-set-escape-char): Properly set term-escape-char.
3664 See http://stackoverflow.com/questions/10524656.
3665
3666 2012-05-10 Chong Yidong <cyd@gnu.org>
3667
3668 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
3669 Use url-generic-parse-url, and handle host names and Windows
3670 filenames properly.
3671 (ffap-url-unwrap-remote): Use url-generic-parse-url.
3672 (ffap-url-unwrap-remote): Accept list values, specifying a list of
3673 URL schemes to work on.
3674 (ffap--toggle-read-only): New function.
3675 (ffap-read-only, ffap-read-only-other-window)
3676 (ffap-read-only-other-frame): Use it.
3677 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
3678 necessary for ffap-url-unwrap-remote.
3679
3680 2012-05-10 Dave Abrahams <dave@boostpro.com>
3681
3682 * cus-start.el (create-lockfiles): Add it.
3683
3684 2012-05-09 Chong Yidong <cyd@gnu.org>
3685
3686 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
3687 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
3688
3689 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3690
3691 * shell.el (shell-completion-vars): Fix last change (bug#11348).
3692
3693 2012-05-09 Chong Yidong <cyd@gnu.org>
3694
3695 * ansi-color.el (ansi-color-process-output): Check for validity of
3696 comint-last-output-start before using it. This avoids a bad
3697 interaction with gdb-mi's input/output buffer.
3698
3699 2012-05-09 Glenn Morris <rgm@gnu.org>
3700
3701 * files.el (dir-locals-read-from-file):
3702 Mention dir-locals in any error message.
3703
3704 2012-05-09 Chong Yidong <cyd@gnu.org>
3705
3706 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
3707 package (Bug#11410).
3708
3709 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
3710 variables into description.
3711
3712 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3713
3714 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
3715 shell-delimiter-argument-list (bug#11348).
3716 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
3717
3718 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
3719
3720 * textmodes/rst.el: Silence byte-compiler warnings.
3721 (rst-re-alist, rst-reset-section-caches): Move around.
3722 (rst-re): Use `characterp', not `char-valid-p'.
3723 (font-lock-beg, font-lock-end): Declare.
3724
3725 * progmodes/idlw-shell.el (specs): Remove reference to deleted
3726 variable `idlwave-shell-activate-alt-keybindings' and simplify.
3727
3728 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
3729
3730 2012-05-08 Glenn Morris <rgm@gnu.org>
3731
3732 * files.el (auto-mode-alist): Treat ".make" like ".mk".
3733
3734 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
3735
3736 * vc/log-edit.el: Add GNU coding standards highlighting.
3737 (log-edit-font-lock-gnu-style)
3738 (log-edit-font-lock-gnu-keywords): New vars.
3739 (log-edit-font-lock-keywords): New fun.
3740 (log-edit-mode): Don't fold case in font-lock.
3741 (log-edit-font-lock-keywords): Do not assume case-folding.
3742
3743 * imenu.el: Misc cleanup. Make docstrings out of comments.
3744 Use lexical-binding.
3745 (imenu--index-alist, imenu--last-menubar-index-alist)
3746 (imenu-menubar-modified-tick): Use defvar-local.
3747 (imenu--split-menu): Remove unused var.
3748 (imenu--cleanup-seen): Declare as global.
3749 (imenu--cleanup): Use dolist.
3750
3751 * subr.el (defvar-local): Add debug spec and doc-string position.
3752
3753 2012-05-08 Glenn Morris <rgm@gnu.org>
3754
3755 * language/burmese.el, language/cham.el, language/czech.el:
3756 * language/english.el, language/georgian.el, language/greek.el:
3757 * language/japanese.el, language/khmer.el, language/korean.el:
3758 * language/lao.el, language/misc-lang.el, language/romanian.el:
3759 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
3760 * language/thai.el, language/utf-8-lang.el:
3761 Remove no-byte-compile setting.
3762
3763 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
3764
3765 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3766
3767 * progmodes/make-mode.el (makefile-browse):
3768 Remove unnecessary interactive. (Bug#11324)
3769
3770 2012-05-07 Glenn Morris <rgm@gnu.org>
3771
3772 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
3773
3774 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
3775
3776 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
3777
3778 * loadup.el: Preload newcomment.el.
3779 * newcomment.el: Move autoload-only code to toplevel.
3780
3781 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
3782 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
3783 Handle new :right-align column property.
3784 (tabulated-list-print-col): Idem, plus use `display' text-property to
3785 try and preserve alignment for variable pitch fonts.
3786
3787 2012-05-07 Chong Yidong <cyd@gnu.org>
3788
3789 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
3790 (tabulated-list-use-header-line): New var.
3791 (tabulated-list-init-header): Use it.
3792 (tabulated-list-print-fake-header): New function.
3793 (tabulated-list-print): Use it.
3794 (tabulated-list-sort-button-map): Add non-header-line commands.
3795 (tabulated-list-init-header): Add column name property to basic
3796 labels as well.
3797 (tabulated-list-col-sort): Handle non-header-line button case.
3798 (tabulated-list--sort-by-column-name): Fix a corner case.
3799
3800 * buff-menu.el (list-buffers--refresh):
3801 Handle Buffer-menu-use-header-line.
3802
3803 2012-05-06 Chong Yidong <cyd@gnu.org>
3804
3805 * buff-menu.el: Convert to Tabulated List mode.
3806 (Buffer-menu-buffer+size-width): Make obsolete.
3807 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
3808 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
3809 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
3810 documentation into docstring of buffer-menu.
3811 (Buffer-menu-toggle-files-only): Add an informative message.
3812 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
3813 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
3814 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
3815 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
3816 (Buffer-menu-execute, Buffer-menu-select)
3817 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
3818 (Buffer-menu-bury): Use Tabulated List machinery.
3819 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
3820 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
3821 Delete.
3822 (list-buffers--refresh): New function.
3823 (list-buffers-noselect): Use it.
3824 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
3825 (Buffer-menu--pretty-file-name): New helper functions.
3826
3827 * loadup.el: Preload tabulated-list.
3828
3829 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
3830 tabulated-list-sort-column.
3831 (tabulated-list-init-header): Add the initial aligning space even
3832 if tabulated-list-padding is zero.
3833
3834 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
3835
3836 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
3837 whose cdr is not a cons cell correctly (bug#11038).
3838
3839 2012-05-06 Chong Yidong <cyd@gnu.org>
3840
3841 * emacs-lisp/tabulated-list.el (tabulated-list-format):
3842 Accept additional plist in column descriptors.
3843 (tabulated-list-init-header): Obey it.
3844 (tabulated-list-get-entry): New function.
3845 (tabulated-list-put-tag): Use it. Use string-width instead of
3846 length.
3847 (tabulated-list--column-number): New function.
3848 (tabulated-list-print): Use it.
3849 (tabulated-list-print-col): New function.
3850 Set `tabulated-list-column-name' property on each column's text.
3851 (tabulated-list-print-entry): Use it.
3852 (tabulated-list-delete-entry, tabulated-list-set-col):
3853 New functions.
3854 (tabulated-list-sort-column): New command (Bug#11337).
3855
3856 * buff-menu.el (list-buffers): Move C-x C-b binding from
3857 buff-menu.el to bindings.el.
3858
3859 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
3860 :advertised-binding feature.
3861
3862 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
3863
3864 * progmodes/compile.el (compilation-internal-error-properties):
3865 Calculate start position correctly when end-col is set but
3866 end-line is not (Bug#11382).
3867
3868 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
3869
3870 * man.el (Man-unindent): Use text-property-default-nonsticky to
3871 prevent untabify from inheriting face properties (Bug#11408).
3872
3873 2012-05-05 Stefan Merten <smerten@oekonux.de>
3874
3875 * textmodes/rst.el: Major merge with upstream development up to
3876 Docutils SVN r7399 / rst.el V1.2.1.
3877
3878 Clarify maintainership and authors.
3879
3880 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
3881 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
3882 (rst-official-version, rst-official-cvs-rev, rst-version)
3883 (rst-package-emacs-version-alist): New functions and variables
3884 for version information.
3885
3886 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
3887 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
3888 (rst-mode-syntax-table, rst-mode): New and corrected functions
3889 and variables representing reStructuredText features.
3890
3891 (rst-re): New function for reStructuredText regexes. Use in
3892 many places.
3893
3894 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
3895 (rst-mode-map): Rebind keys.
3896
3897 (rst-mode-lazy, rst-font-lock-keywords)
3898 (rst-font-lock-extend-region)
3899 (rst-font-lock-extend-region-internal)
3900 (rst-font-lock-extend-region-extend)
3901 (rst-font-lock-find-unindented-line-limit)
3902 (rst-font-lock-find-unindented-line-match)
3903 (rst-adornment-level, rst-font-lock-adornment-level)
3904 (rst-font-lock-adornment-match)
3905 (rst-font-lock-handle-adornment-pre-match-form)
3906 (rst-font-lock-handle-adornment-matcher): Major revision of
3907 font-locking. Integrate with other code. Use `jit-lock-mode'.
3908
3909 (rst-preferred-adornments, rst-adjust-hook)
3910 (rst-new-adornment-down, rst-preferred-bullets)
3911 (rst-preferred-bullets, rst-indent, rst-indent-width)
3912 (rst-indent-field, rst-indent-literal-normal)
3913 (rst-indent-literal-minimized, rst-indent-comment): Change,
3914 extend and improve customization.
3915
3916 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
3917 (rst-normalize-cursor-position, rst-get-decoration)
3918 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
3919 (rst-rstrip, rst-toc-insert-find-delete-contents)
3920 (rst-shift-fill-region, rst-compute-bullet-tabs)
3921 (rst-debug-print-tabs, rst-debug-mark-found)
3922 (rst-shift-region-guts, rst-shift-region-right)
3923 (rst-shift-region-left, rst-use-char-classes)
3924 (rst-font-lock-keywords-function)
3925 (rst-font-lock-indentation-point)
3926 (rst-font-lock-find-unindented-line-begin)
3927 (rst-font-lock-find-unindented-line-end)
3928 (rst-font-lock-find-unindented-line)
3929 (rst-font-lock-adornment-point, rst-font-lock-level)
3930 (rst-adornment-level-alist): Remove functions and variables.
3931
3932 (rst-compare-adornments, rst-get-adornment-match)
3933 (rst-suggest-new-adornment, rst-get-adornments-around)
3934 (rst-adornment-complete-p, rst-get-next-adornment)
3935 (rst-adjust-adornment, rst-display-adornments-hierarchy)
3936 (rst-straighten-adornments): Standardize function names to
3937 use "adornment" instead of "decoration". Correct callers.
3938 Similar standardizing in many places.
3939
3940 (rst-update-section, rst-adjust, rst-promote-region)
3941 (rst-enumerate-region, rst-bullet-list-region)
3942 (rst-repeat-last-character): Correct use of `interactive'.
3943
3944 (rst-classify-adornment, rst-find-all-adornments)
3945 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
3946 (rst-find-leftmost-column, rst-repeat-last-character):
3947 Refactor functions.
3948
3949 (rst-find-title-line, rst-reset-section-caches)
3950 (rst-get-adornments-around, rst-adjust-adornment-work)
3951 (rst-arabic-to-roman, rst-roman-to-arabic)
3952 (rst-insert-list-pos, rst-insert-list-new-item)
3953 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
3954 New functions.
3955
3956 (rst-all-sections, rst-section-hierarchy)
3957 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
3958 New variables.
3959
3960 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
3961 configuration instead of only buffer. Change where necessary.
3962
3963 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
3964 (rst-shift-region, rst-adaptive-fill): New functions for
3965 indentation and filling.
3966
3967 (rst-comment-line-break, rst-comment-indent)
3968 (rst-comment-insert-comment, rst-comment-region)
3969 (rst-uncomment-region): New functions for handling comments.
3970
3971 (rst-compile): Quote shell arguments.
3972
3973 (rst-compile-pdf-preview, rst-compile-slides-preview):
3974 Delete temporary files after use.
3975
3976 2012-05-05 Glenn Morris <rgm@gnu.org>
3977
3978 * calendar/cal-html.el: Optionally include holidays in the output.
3979 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
3980 (cal-html-holidays): New option.
3981 (cal-html-css-default): Add holiday entry.
3982 (holiday-in-range): Autoload it.
3983 (cal-html-htmlify-entry): Add optional class argument.
3984 (cal-html-htmlify-list): Add optional holidays argument.
3985 (cal-html-insert-agenda-days): Include holidays in the output.
3986 (cal-html-one-month): Maybe include holidays.
3987
3988 * calendar/holidays.el (holiday-in-range):
3989 Move here from cal-tex-list-holidays.
3990 * calendar/cal-tex.el (cal-tex-list-holidays):
3991 Make it an obsolete alias for holiday-in-range. Update all callers.
3992
3993 2012-05-05 Chong Yidong <cyd@gnu.org>
3994
3995 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
3996 Nextstep.
3997
3998 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
3999
4000 * files.el (file-auto-mode-skip): New var.
4001 (set-auto-mode-1): Use it.
4002
4003 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
4004
4005 * repeat.el: Use lexical-binding.
4006 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
4007 (repeat-undo-count): Remove.
4008 (repeat):
4009 * progmodes/octave-mod.el (octave-abbrev-start):
4010 * progmodes/f90.el (f90-abbrev-start):
4011 * face-remap.el (text-scale-adjust):
4012 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
4013
4014 * emacs-lisp/pcase.el (pcase--let*): New function.
4015 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
4016 a bit more.
4017 (pcase--split-pred): Be more clever about ruling out overlap between
4018 a predicate and some constant pattern.
4019 (pcase--q1): Use `null' instead of (eq foo nil).
4020
4021 * subr.el (setq-local, defvar-local): New macros.
4022 (kbd): Redefine as an alias.
4023 (with-selected-window): Leave unrelated frames alone.
4024 (set-temporary-overlay-map): New function.
4025
4026 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
4027
4028 * subr.el (user-error): New function.
4029 * window.el (switch-to-buffer):
4030 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
4031 (smerge-match-conflict):
4032 * simple.el (previous-matching-history-element)
4033 (next-matching-history-element, goto-history-element, undo-more)
4034 (undo-start):
4035 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
4036 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
4037 (next-file, tags-loop-scan, list-tags, complete-tag):
4038 * progmodes/compile.el (compilation-loop):
4039 * mouse.el (mouse-minibuffer-check):
4040 * man.el (Man-bgproc-sentinel, Man-goto-page):
4041 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
4042 (Info-history-forward, Info-follow-reference, Info-menu)
4043 (Info-extract-menu-item, Info-extract-menu-counting)
4044 (Info-forward-node, Info-backward-node, Info-next-menu-item)
4045 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
4046 (Info-next-reference, Info-prev-reference, Info-index)
4047 (Info-index-next, Info-follow-nearest-node)
4048 (Info-copy-current-node-name):
4049 * imenu.el (imenu--make-index-alist)
4050 (imenu-default-create-index-function, imenu-add-to-menubar):
4051 * files.el (basic-save-buffer, recover-file):
4052 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
4053 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
4054 (checkdoc-message-text, checkdoc-defun):
4055 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
4056 * cus-edit.el (customize-changed-options, customize-rogue)
4057 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
4058 (custom-variable-mark-to-reset-standard)
4059 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
4060 (custom-file):
4061 * completion.el (check-completion-length):
4062 * comint.el (comint-search-arg)
4063 (comint-previous-matching-input-string-position)
4064 (comint-previous-matching-input)
4065 (comint-replace-by-expanded-history-before-point, comint-send-input)
4066 (comint-copy-old-input, comint-backward-matching-input)
4067 (comint-goto-process-mark, comint-set-process-mark):
4068 * calendar/calendar.el (calendar-cursor-to-date): Use it.
4069 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
4070
4071 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
4072
4073 * dabbrev.el (dabbrev--ignore-case-p): New function.
4074 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
4075 Use it.
4076
4077 * files.el (automount-dir-prefix): Mark as obsolete.
4078
4079 2012-05-04 Glenn Morris <rgm@gnu.org>
4080
4081 * patcomp.el, play/bruce.el: Move to obsolete/.
4082
4083 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
4084
4085 Fix minor Y10k bugs.
4086 * arc-mode.el (archive-unixdate):
4087 * autoinsert.el (auto-insert-alist):
4088 * calc/calc-forms.el (math-this-year):
4089 * emacs-lisp/copyright.el (copyright-current-year)
4090 (copyright-update-year, copyright):
4091 * tar-mode.el (tar-clip-time-string):
4092 * time.el (display-time-update):
4093 Don't assume years have 4 digits.
4094
4095 2012-05-04 Chong Yidong <cyd@gnu.org>
4096
4097 * dos-w32.el (file-name-buffer-file-type-alist)
4098 (direct-print-region-use-command-dot-com):
4099 * ffap.el (ffap-menu-regexp):
4100 * find-file.el (ff-special-constructs):
4101 * follow.el (follow-debug):
4102 * forms.el (forms--debug):
4103 * iswitchb.el (iswitchb-all-frames):
4104 * ido.el (ido-all-frames):
4105 * emacs-lisp/timer.el (timer-max-repeats):
4106 * mail/feedmail.el (feedmail-mail-send-hook)
4107 (feedmail-mail-send-hook-queued):
4108 * mail/footnote.el (footnote-signature-separator):
4109 * mail/mailabbrev.el (mail-alias-separator-string)
4110 (mail-abbrev-mode-regexp):
4111 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
4112 * progmodes/idlwave.el (idlwave-libinfo-file)
4113 (idlwave-default-completion-case-is-down)
4114 (idlwave-library-routines): Convert defvars to defcustoms.
4115
4116 * mail/rmail.el (rmail-decode-mime-charset):
4117 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
4118 (idlwave-shell-fix-inserted-breaks)
4119 (idlwave-shell-activate-alt-keybindings)
4120 (idlwave-shell-use-breakpoint-glyph):
4121 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
4122
4123 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
4124
4125 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
4126
4127 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
4128
4129 * progmodes/verilog-mode.el (font-lock-keywords):
4130 Fix mis-highligting auto. Reported by Craig Barner.
4131 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
4132 defines from global name space. Reported by Dan Dever.
4133 (verilog-auto-reset, verilog-auto-reset-widths)
4134 (verilog-auto-tieoff): Support using unbased numbers for
4135 AUTORESET and AUTOTIEOFF.
4136 (verilog-submit-bug-report): Update variable list.
4137 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
4138 parenthesis from not matching. Reported by Michael Rytting.
4139 (verilog-auto-template-lint): Fix hash error when linting modules
4140 with no used templates.
4141 (verilog-warn, verilog-warn-error)
4142 (verilog-warn-fatal): When non-interactive report multiple
4143 warnings before exiting. Suggested by Brad Dobbie.
4144 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
4145 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
4146 to report unused template errors. Reported by Brad Dobbie.
4147 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
4148 nets, bug438. Reported by Vns Blore.
4149 (verilog-auto-inout-module, verilog-auto-reg)
4150 (verilog-read-decls, verilog-read-sub-decls-sig)
4151 (verilog-signals-edit-wire-reg, verilog-signals-with):
4152 Fix passing of Verilog data types in ANSI input/output ports
4153 such as "output logic" into the AUTOs. Special case "wire" and
4154 "reg" for backwards compatibility presuming Verilog 2001.
4155 (verilog-auto-ascii-enum): Add "auto enum" as alias.
4156 (verilog-preprocess): Fix replication of preprocess output.
4157 Reported by Brad Dobbie.
4158 (verilog-auto-inst-interfaced-ports):
4159 Create verilog-auto-inst-interfaced-ports, bug429.
4160 Reported by Julian Gorfajn.
4161 (verilog-after-save-font-hook)
4162 (verilog-before-save-font-hook): New variable.
4163 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
4164 (verilog-save-font-mods): Wrap disabling fontification, reported
4165 by David Rogoff.
4166 (verilog-do-indent, verilog-pretty-declarations-auto)
4167 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
4168 Reported by Pierre-David Pfister.
4169 (verilog-set-auto-endcomments): Fix endtask auto comments outside
4170 of class declarations, bug292. Reported by Kevin Heilman.
4171 (verilog-read-decls): Fix 'parameter type' not appearing in
4172 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
4173 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
4174 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
4175 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
4176 Reported by David Kravitz.
4177
4178 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
4179
4180 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
4181 assignment with tests in ifs and for loops.
4182 (verilog-extended-complete-re, verilog-complete-reg): Change so
4183 that DPI inport functions don't look like fuction declarations.
4184 (verilog-pretty-expr): Don't line up assignment
4185 operations to the test and increment in if and for loops
4186 (verilog-extended-complete-re, verilog-complete-reg): Change so
4187 that DPI inport functions don't look like fuction declarations.
4188
4189 2012-05-03 Kenichi Handa <handa@m17n.org>
4190
4191 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
4192 decoding, and show a warning message without signaling an error
4193 (Bug#11282).
4194
4195 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
4196
4197 * emacs-lisp/bytecomp.el
4198 (byte-compile-file-form-custom-declare-variable): Compile all elements,
4199 since cconv.el might have introduced :fun-body, internal-make-closure,
4200 and friends for bytecomp to handle (bug#11391).
4201 * custom.el (defcustom): Avoid ((λ ..) ..).
4202
4203 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
4204
4205 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
4206
4207 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
4208
4209 * notifications.el (dbus-debug):
4210 * term/linux.el (gpm-mouse-enable):
4211 * term/screen.el (xterm-register-default-colors): Declare.
4212
4213 2012-05-02 Chong Yidong <cyd@gnu.org>
4214
4215 * cus-start.el (gc-cons-percentage, exec-suffixes)
4216 (dos-display-scancodes, dos-hyper-key, dos-super-key)
4217 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
4218 (make-cursor-line-fully-visible, void-text-area-pointer)
4219 (font-list-limit): Add customization data.
4220
4221 * allout.el (allout-exposure-change-functions)
4222 (allout-structure-added-functions)
4223 (allout-structure-deleted-functions)
4224 (allout-structure-shifted-functions): Rename abnormal hooks from
4225 *-hook, and convert to defcustoms.
4226 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
4227 Convert to defcustoms.
4228 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
4229
4230 * allout-widgets.el: Hook callers changed.
4231
4232 2012-05-02 Eli Zaretskii <eliz@gnu.org>
4233
4234 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
4235 the yanked message in preference to the default value of
4236 buffer-file-coding-system.
4237
4238 2012-05-02 Martin Rudalics <rudalics@gmx.at>
4239
4240 * window.el (display-buffer--action-function-custom-type):
4241 Fix entry.
4242
4243 2012-05-02 Alan Mackenzie <acm@muc.de>
4244
4245 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
4246
4247 2012-05-01 Glenn Morris <rgm@gnu.org>
4248
4249 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
4250
4251 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
4252
4253 * cus-edit.el (custom-variable-documentation): Simplify with format.
4254
4255 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
4256 Stefan Monnier <monnier@iro.umontreal.ca>
4257
4258 * simple.el (suggest-key-bindings, execute-extended-command):
4259 Move from keyboard.c.
4260
4261 2012-05-01 Chong Yidong <cyd@gnu.org>
4262
4263 * follow.el: Eliminate advice.
4264 (set-process-filter, process-filter, sit-for): Advice deleted.
4265 (follow-mode-off-hook): Obsolete hook removed.
4266 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
4267 Vars deleted.
4268 (follow-auto): Use a :set function.
4269 (follow-mode): Rewritten. Don't advise process filters.
4270 (follow-switch-to-current-buffer-all, follow-scroll-up)
4271 (follow-scroll-down): Assume follow-mode is bound.
4272 (follow-comint-scroll-to-bottom)
4273 (follow-align-compilation-windows): New functions.
4274 (follow--window-sorter): New function.
4275 (follow-all-followers): Use it to explicitly sort windows by their
4276 positions; don't make assumptions about next-window order.
4277 (follow-windows-start-end, follow-delete-other-windows-and-split)
4278 (follow-calc-win-start): Doc fix.
4279 (follow-windows-aligned-p, follow-select-if-visible): Don't call
4280 vertical-motion unnecessarily.
4281 (follow-adjust-window): New function.
4282 (follow-post-command-hook): Use it.
4283 (follow-call-set-process-filter, follow-call-process-filter)
4284 (follow-intercept-process-output, follow-tidy-process-filter-alist)
4285 (follow-stop-intercept-process-output, follow-generic-filter):
4286 Functions deleted.
4287 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
4288 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
4289 New functions, replacing advice on scroll-bar-* commands.
4290 (follow-mwheel-scroll): New function (Bug#4112).
4291
4292 * comint.el (comint-adjust-point): New function.
4293 (comint-postoutput-scroll-to-bottom): Use it.
4294 Call follow-comint-scroll-to-bottom for Follow mode buffers.
4295
4296 2012-05-01 Glenn Morris <rgm@gnu.org>
4297
4298 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
4299 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
4300 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
4301 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
4302 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
4303 Remove no-byte-compile setting.
4304
4305 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
4306
4307 * minibuffer.el (completion-table-with-quoting): Fix compatibility
4308 all-completions code to not return a number in the last cdr.
4309
4310 2012-04-30 Leo Liu <sdl.web@gmail.com>
4311
4312 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
4313 read-only error.
4314
4315 2012-04-29 Chong Yidong <cyd@gnu.org>
4316
4317 * follow.el (follow-calc-win-end): Rewrite to handle partial
4318 screen lines correctly (Bug#8390).
4319 (follow-avoid-tail-recenter): Minor cleanup.
4320
4321 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
4322
4323 Avoid the obsolete `assoc' package.
4324 * speedbar.el (speedbar-refresh): Avoid adelete.
4325 (speedbar-file-lists): Simplify and avoid aput.
4326 * man.el (Man--sections, Man--refpages): New vars, replacing
4327 Man-sections-alist and Man-refpages-alist.
4328 (Man-build-section-alist, Man-build-references-alist):
4329 Use them; avoid aput.
4330 (Man--last-section, Man--last-refpage): New vars.
4331 (Man-follow-manual-reference): Use them.
4332 Use the `default' arg of completing-read.
4333 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
4334
4335 2012-04-27 Chong Yidong <cyd@gnu.org>
4336
4337 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
4338
4339 * startup.el (x-apply-session-resources): New function.
4340
4341 * term/ns-win.el (ns-initialize-window-system):
4342 * term/w32-win.el (w32-initialize-window-system):
4343 * term/x-win.el (x-initialize-window-system): Use it to properly
4344 set menu-bar-mode and other vars from X resources, even if the
4345 initial frame is not a window-system frame (Bug#2299).
4346
4347 * subr.el (read-key): Avoid running filter function when setting
4348 up temporary tool bar entries (Bug#9922).
4349
4350 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
4351
4352 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
4353 (Bug#11344)
4354
4355 2012-04-27 Chong Yidong <cyd@gnu.org>
4356
4357 * select.el (xselect--encode-string): New function, split from
4358 xselect-convert-to-string.
4359 (xselect-convert-to-string): Use it.
4360 (xselect-convert-to-filename, xselect-convert-to-os)
4361 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
4362 returned strings are properly encoded (Bug#11315).
4363
4364 2012-04-27 Chong Yidong <cyd@gnu.org>
4365
4366 * simple.el (delete-active-region): Move to killing custom group.
4367
4368 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
4369
4370 * progmodes/which-func.el (which-func-current): Quote %
4371 characters for mode-line processing.
4372
4373 2012-04-27 Chong Yidong <cyd@gnu.org>
4374
4375 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
4376 reaching eob (Bug#11286).
4377
4378 2012-04-27 Eli Zaretskii <eliz@gnu.org>
4379
4380 * progmodes/gdb-mi.el (gdb-control-level): New variable.
4381 (gdb): Make it buffer-local and init to zero.
4382 (gdb-control-commands-regexp): New variable.
4383 (gdb-send): Don't wrap in "-interpreter-exec console" if
4384 gdb-control-level is positive. Increment gdb-control-level
4385 whenever the command matches gdb-control-commands-regexp, and
4386 decrement it each time the command is "end". (Bug#11279)
4387
4388 2012-04-27 Martin Rudalics <rudalics@gmx.at>
4389
4390 * window.el (adjust-window-trailing-edge, enlarge-window)
4391 (shrink-window, window-resize):
4392 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
4393 windows (Bug#11276).
4394
4395 2012-04-27 Chong Yidong <cyd@gnu.org>
4396
4397 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
4398 fix "missing prefix" warning. All callers changed.
4399
4400 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
4401
4402 * emacs-lisp/assoc.el: Move to obsolete/.
4403
4404 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
4405
4406 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
4407
4408 * term/ns-win.el (ns-define-service):
4409 * progmodes/pascal.el (pascal-goto-defun):
4410 * progmodes/js.el (js--read-tab):
4411 * progmodes/etags.el (tags-lazy-completion-table):
4412 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
4413 * emacs-lisp/ewoc.el (ewoc--wrap):
4414 * emacs-lisp/assoc.el (aput, adelete, amake):
4415 * doc-view.el (doc-view-convert-current-doc):
4416 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
4417
4418 2012-04-26 Chong Yidong <cyd@gnu.org>
4419
4420 * image.el (image-type-from-buffer): Only return supported image
4421 type (Bug#9045).
4422
4423 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
4424 value, for symmetry with diff-end-of-hunk.
4425 (diff-split-hunk, diff-find-source-location)
4426 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
4427 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
4428 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
4429 compute the relevant hunk or file properly (Bug#6005).
4430 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
4431
4432 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
4433
4434 * vc/vc-mtn.el:
4435 * vc/vc-hg.el:
4436 * vc/vc-git.el:
4437 * vc/vc-dir.el:
4438 * vc/vc-cvs.el:
4439 * vc/vc-bzr.el:
4440 * vc/vc-arch.el:
4441 * vc/vc.el: Replace lexical-let by lexical-binding.
4442 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
4443 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
4444 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
4445
4446 2012-04-26 Chong Yidong <cyd@gnu.org>
4447
4448 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
4449 (diff-mode-shared-map): Bind it to / and [remap undo].
4450
4451 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
4452 (ediff-window-setup-function): Use it as the default, to set up
4453 windows based on whether the current frame is graphical (Bug#2138).
4454 (ediff-choose-window-setup-function-automatically): Make obsolete.
4455
4456 * vc/ediff-init.el: Always define ediff-pixel-width/height.
4457
4458 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
4459
4460 * ffap.el: Remove old code for obsolete package.
4461 (ffap-complete-as-file-p): Remove.
4462
4463 Use completion-table-with-quoting for comint and pcomplete.
4464 * comint.el (comint--unquote&requote-argument)
4465 (comint--unquote-argument, comint--requote-argument): New functions.
4466 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
4467 (comint-quote-filename): Use regexp-opt-charset.
4468 (comint--common-suffix, comint--common-quoted-suffix)
4469 (comint--table-subvert): Remove.
4470 (comint-unquote-function, comint-requote-function): New vars.
4471 (comint--complete-file-name-data): Use them with
4472 completion-table-with-quoting.
4473 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
4474 * pcomplete.el (pcomplete-arg-quote-list)
4475 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
4476 (pcomplete-unquote-argument-function): Default to non-nil.
4477 (pcomplete-unquote-argument): Simplify.
4478 (pcomplete--common-quoted-suffix): Remove.
4479 (pcomplete-requote-argument-function): New var.
4480 (pcomplete--common-suffix): New function.
4481 (pcomplete-completions-at-point): Use completion-table-with-quoting
4482 and completion-table-subvert.
4483
4484 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
4485 (minibuffer--double-dollars): Preserve properties.
4486 (completion--sifn-requote): New function.
4487 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
4488
4489 * minibuffer.el: Add support for completion of quoted/escaped data.
4490 (completion-table-with-quoting, completion-table-subvert): New funs.
4491 (completion--twq-try, completion--twq-all): New functions.
4492 (completion--nth-completion): New function.
4493 (completion-try-completion, completion-all-completions): Use it.
4494
4495 2012-04-25 Leo Liu <sdl.web@gmail.com>
4496
4497 * progmodes/python.el (python-pdbtrack-get-source-buffer):
4498 Use compilation-message if available to find real filename.
4499
4500 2012-04-25 Chong Yidong <cyd@gnu.org>
4501
4502 * vc/diff-mode.el (diff-setup-whitespace): New function.
4503 (diff-mode): Use it.
4504
4505 * vc/diff.el (diff-sentinel):
4506 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
4507 Whitespace mode variables based on diff style (Bug#8612).
4508
4509 2012-04-25 Leo Liu <sdl.web@gmail.com>
4510
4511 * progmodes/python.el (python-send-region): Add suffix .py to the
4512 temp file.
4513
4514 * files.el (auto-mode-alist): Use javascript-mode instead.
4515
4516 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
4517
4518 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
4519
4520 * net/soap-client.el (soap-resolve-references-for-sequence-type)
4521 (soap-resolve-references-for-array-type): Hack to prevent self
4522 references, see Bug#9.
4523 (soap-parse-envelope): Report the contents of the 'detail' node
4524 when receiving a fault reply.
4525 (soap-parse-envelope): Report the contents of the entire 'detail' node.
4526
4527 * net/soap-inspect.el (soap-sample-value-for-simple-type)
4528 (soap-inspect-simple-type): New function.
4529
4530 * net/soap-client.el (soap-simple-type): New struct.
4531 (soap-default-xsd-types, soap-default-soapenc-types)
4532 (soap-decode-basic-type, soap-encode-basic-type):
4533 support unsignedInt and double basic types.
4534 (soap-resolve-references-for-simple-type)
4535 (soap-parse-simple-type, soap-encode-simple-type): New function.
4536 (soap-parse-schema): Parse xsd:simpleType declarations.
4537
4538 * net/soap-client.el (soap-default-xsd-types)
4539 (soap-default-soapenc-types): Add integer, byte and anyURI types.
4540 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
4541 the local name of "soapenc:Array".
4542 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
4543 decoding integer, byte and anyURI xsd types.
4544
4545 2012-04-25 Chong Yidong <cyd@gnu.org>
4546
4547 * cus-edit.el (custom-buffer-create-internal): Update header text.
4548
4549 2012-04-25 Eli Zaretskii <eliz@gnu.org>
4550
4551 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
4552 settings on 'system-type', not on 'window-system'. On MS-Windows,
4553 set interactive-mode on in GDB.
4554
4555 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
4556
4557 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
4558 (ruby-syntax-propertize-regexp): Remove.
4559 (ruby-syntax-propertize-function): Split regexp into chunks.
4560 Match following code directly.
4561
4562 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
4563
4564 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
4565 (ruby-syntax-propertize-regexp): New function.
4566 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
4567 by a special keyword.
4568
4569 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
4570 (ruby-syntax-general-delimiters-goto-beg)
4571 (ruby-syntax-propertize-general-delimiters): New functions.
4572 (ruby-syntax-propertize-function): Use them to handle GDL.
4573 (ruby-font-lock-keywords): Move old handling of GDL...
4574 (ruby-font-lock-syntactic-keywords): .. to here.
4575 (ruby-calculate-indent): Adjust indentation for GDL.
4576
4577 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
4578
4579 * notifications.el (top): Remove unneeded declarations.
4580 (notifications-specification-version): Change to "1.2".
4581 (notifications-interface, notifications-notify-method)
4582 (notifications-close-notification-method): Fix docstring.
4583 (notifications-get-capabilities-method): New defconst.
4584 (notifications-notify): Add :action-items, :resident and
4585 :transient hints. Change "image_data" to "image-data" and
4586 "image_path" to "image-path".
4587 (notifications-get-capabilities): New defun.
4588
4589 2012-04-24 Leo Liu <sdl.web@gmail.com>
4590
4591 * progmodes/python.el: Move hideshow setup to the end.
4592
4593 2012-04-24 Martin Rudalics <rudalics@gmx.at>
4594
4595 * window.el (handle-select-window): Clear echo area since this is
4596 no more done by read_char (Bug#11304).
4597
4598 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
4599
4600 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
4601 and `/ M' to filter-derived-mode.
4602 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
4603 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
4604 (ibuffer-mark-by-mode): Use default rather than initial-input.
4605 (ibuffer-filter-by-derived-mode): Autoload and require-match.
4606
4607 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
4608
4609 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
4610 (ibuffer-filter-by-derived-mode): New filter.
4611 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
4612
4613 2012-04-23 Andreas Politz <politza@fh-trier.de>
4614
4615 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
4616
4617 2012-04-23 Chong Yidong <cyd@gnu.org>
4618
4619 * cus-edit.el (customize-apropos, customize-apropos-options):
4620 Disable matching of non-option variables (Bug#11176).
4621 (customize-option, customize-option-other-window)
4622 (customize-changed-options): Doc fix.
4623 (customize-apropos-options, customize-apropos-faces)
4624 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
4625
4626 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
4627 Fix word list splitting (Bug#11132).
4628 (apropos-symbol, apropos-keybinding, apropos-label)
4629 (apropos-property, apropos-function-button)
4630 (apropos-variable-button, apropos-misc-button): New faces.
4631 (apropos-symbol-face, apropos-keybinding-face)
4632 (apropos-label-face, apropos-property-face, apropos-match-face):
4633 Variables removed (Bug#8396).
4634 (apropos-library-button, apropos-format-plist, apropos-print)
4635 (apropos-print-doc, apropos-describe-plist): Callers changed.
4636
4637 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
4638
4639 * net/xesam.el (xesam-mode-map): Use let-bound map in
4640 initialization. (Bug#11292)
4641
4642 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4643
4644 Preserve ispell session localwords when switching back to
4645 original buffer.
4646
4647 * textmodes/ispell.el (ispell-buffer-session-localwords):
4648 New buffer-local variable to hold buffer session localwords.
4649 (ispell-kill-ispell): Add option 'clear to delete session
4650 localwords.
4651 (ispell-command-loop, ispell-change-dictionary)
4652 (ispell-buffer-local-words): Preserve session localwords when
4653 needed.
4654
4655 * textmodes/flyspell.el (flyspell-process-localwords)
4656 (flyspell-do-correct): Preserve session localwords when needed.
4657
4658 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4659
4660 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
4661 using obsolete `translation-table-for-input'.
4662 (ispell-word, ispell-process-line, ispell-complete-word):
4663 Use plain `insert' instead of removed `ispell-insert-word'.
4664
4665 2012-04-22 Chong Yidong <cyd@gnu.org>
4666
4667 * cus-edit.el (custom-variable-menu)
4668 (custom-variable-reset-saved, custom-face-menu)
4669 (custom-face-reset-saved): If there is no saved value, make the
4670 "reset-saved" operation bring back the default (Bug#9509).
4671 (custom-face-state): Properly detect themed faces.
4672
4673 * faces.el (face-spec-set): Stop supporting deprecated form of
4674 third arg.
4675
4676 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
4677
4678 Move functions from C to Lisp. Make non-blocking method calls
4679 the default. Implement further D-Bus standard interfaces.
4680
4681 * net/dbus.el (dbus-message-internal): Declare function.
4682 Remove unneeded function declarations.
4683 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
4684 (dbus-message-type-method-return, dbus-message-type-error)
4685 (dbus-message-type-signal): Declare variables. Remove local
4686 definitions.
4687 (dbus-interface-dbus, dbus-interface-peer)
4688 (dbus-interface-introspectable, dbus-interface-properties)
4689 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
4690 Adapt docstring.
4691 (dbus-interface-objectmanager): New defconst.
4692 (dbus-call-method, dbus-call-method-asynchronously)
4693 (dbus-send-signal, dbus-method-return-internal)
4694 (dbus-method-error-internal, dbus-register-service)
4695 (dbus-register-signal, dbus-register-method): New defuns, moved
4696 from dbusbind.c
4697 (dbus-call-method-handler, dbus-setenv)
4698 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
4699 New defuns.
4700 (dbus-call-method-non-blocking): Make it an obsolete function.
4701 (dbus-unregister-object, dbus-unregister-service)
4702 (dbus-handle-event, dbus-register-property)
4703 (dbus-property-handler): Obey the new structure of
4704 `bus-registered-objects'.
4705 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
4706 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
4707 Use `dbus-call-method'.
4708
4709 2012-04-22 Chong Yidong <cyd@gnu.org>
4710
4711 * cus-edit.el (custom-commands, custom-reset-menu)
4712 (Custom-reset-standard): Tweak labels.
4713 (custom-reset-button-menu): Change default to t.
4714 (custom-buffer-create-internal): For the custom-reset-button-menu
4715 case, put the revert button first.
4716 (custom-group-subtitle): New face.
4717 (custom-group-value-create): Align docstring to a specific column.
4718
4719 * wid-edit.el (widget-documentation-link-add): Don't handle
4720 indentation in this function.
4721 (widget-documentation-string-indent-to): New function.
4722 (widget-documentation-string-value-create): Use it.
4723
4724 * autorevert.el (auto-revert):
4725 * epg-config.el (epg):
4726 * ibuffer.el (ibuffer):
4727 * mpc.el (mpc):
4728 * ses.el (ses):
4729 * eshell/eshell.el (eshell):
4730 * net/ange-ftp.el (ange-ftp):
4731 * progmodes/ebnf2ps.el (postscript):
4732 * progmodes/flymake.el (flymake):
4733 * progmodes/prolog.el (prolog):
4734 * progmodes/verilog-mode.el (verilog-mode):
4735 * progmodes/which-func.el (which-func):
4736 * term/xterm.el (xterm):
4737 * textmodes/picture.el (picture):
4738 * textmodes/tildify.el (tildify):
4739 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
4740 customization buffers.
4741
4742 2012-04-22 Alan Mackenzie <acm@muc.de>
4743
4744 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
4745 Adding a ) can hide the resulting (..) from searches. Fix it.
4746 Bound the backward search to the position of the existing (.
4747
4748 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
4749
4750 * progmodes/verilog-mode.el (verilog-mode): Check whether
4751 which-func-modes is t before adding verilog-mode.
4752 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
4753
4754 2012-04-21 Leo Liu <sdl.web@gmail.com>
4755
4756 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
4757
4758 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
4759
4760 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
4761 filling of the last column of a table (Bug#5635).
4762 (woman-find-next-control-line): New arg, specifying an additional
4763 regexp component for the control line.
4764 (woman2-roff-buffer): Use it.
4765 (woman-break-table): New function.
4766 (woman2-TS): Use it.
4767
4768 2012-04-21 Chong Yidong <cyd@gnu.org>
4769
4770 * woman.el (woman-set-buffer-display-table, woman-decode-region)
4771 (woman-horizontal-escapes, woman-negative-vertical-space)
4772 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
4773 (WoMan-warn-ignored): Use ?\s instead of ?\ .
4774
4775 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
4776
4777 * minibuffer.el (completion-file-name-table): Complete user names.
4778
4779 2012-04-20 Leo Liu <sdl.web@gmail.com>
4780
4781 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
4782 and pcase-let*.
4783
4784 2012-04-20 Chong Yidong <cyd@gnu.org>
4785
4786 * server.el (server-execute): Respect initial-buffer-choice if it
4787 is a string and there are no files to open (Bug#2825).
4788 (server-create-window-system-frame, server-create-tty-frame):
4789 Don't switch buffers here.
4790 (server-process-filter): Only try to open a window system frame if
4791 compiled with graphical support (Bug#8314).
4792
4793 2012-04-20 Dan Nicolaescu <dann@gnu.org>
4794
4795 * battery.el (battery-echo-area-format): Display remaining time
4796 for sysfs backend too (Bug#11269).
4797 (battery-linux-sysfs): Fix conditional for the charge.
4798
4799 2012-04-20 Chong Yidong <cyd@gnu.org>
4800
4801 * progmodes/gdb-mi.el (gdb): Revert previous change.
4802 (gdb-inferior-io--init-proc): New function.
4803 (gdb-init-1): Use it.
4804 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
4805 responsible for allocating a new pty and hooking it to gdb when
4806 the old pty gets an EIO due to process exit.
4807 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
4808 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
4809 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
4810
4811 2012-04-20 Eli Zaretskii <eliz@gnu.org>
4812
4813 * window.el (window-min-size, window-sizable, window-min-delta)
4814 (window-max-delta, window--resizable, window-resizable)
4815 (window-total-size, window-full-height-p, window-full-width-p)
4816 (window-in-direction, window--resize-mini-window, window-resize)
4817 (window--resize-child-windows-normal)
4818 (window--resize-child-windows, window--resize-siblings)
4819 (window--resize-this-window, adjust-window-trailing-edge)
4820 (enlarge-window, shrink-window): Doc fixes.
4821
4822 2012-04-20 Chong Yidong <cyd@gnu.org>
4823
4824 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
4825 New function to call delete-process on the gdb-inferior buffer's pty.
4826 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
4827 pty process (Bug#11273).
4828 (gdb-update): New arg to suppress talking to the gdb process.
4829 (gdb-done-or-error): Use it.
4830 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
4831 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
4832 sentinel not being called.
4833
4834 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
4835
4836 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
4837
4838 2012-04-20 Glenn Morris <rgm@gnu.org>
4839
4840 * net/network-stream.el (open-network-stream): Doc fix.
4841
4842 2012-04-20 Chong Yidong <cyd@gnu.org>
4843
4844 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
4845
4846 2012-04-20 Alan Mackenzie <acm@muc.de>
4847
4848 Ensure searching for keywords is case sensitive.
4849
4850 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
4851 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
4852 (c-defun-name, c-mark-function, c-cpp-define-name)
4853 (c-comment-indent, c-scan-conditionals, c-indent-defun)
4854 (c-context-line-break): Bind case-fold-search to nil.
4855
4856 * progmodes/cc-mode.el (c-font-lock-fontify-region):
4857 Bind case-fold-search to nil.
4858
4859 2012-04-20 Chong Yidong <cyd@gnu.org>
4860
4861 * mail/sendmail.el (mail-bury): Call return action with the right
4862 Rmail buffer (Bug#11242).
4863
4864 * server.el (server-process-filter): Handle corner case where both
4865 tty and nowait options are present (Bug#11102).
4866
4867 2012-04-20 Eli Zaretskii <eliz@gnu.org>
4868
4869 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
4870 (top level): Put into the executable the ident-style '$Id:' tag on
4871 windows-nt as well.
4872
4873 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
4874
4875 * electric.el (electric-indent-post-self-insert-function): Check that
4876 electric-indent-mode is enabled in current buffer.
4877
4878 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
4879
4880 * imenu.el (imenu-progress-message): Restore; it is "used" in
4881 erc/erc-imenu.el and net/snmp-mode.el.
4882
4883 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
4884
4885 * avoid.el (mouse-avoidance-mode): Mark unused arg.
4886 (mouse-avoidance-nudge-mouse): Remove unused binding.
4887
4888 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
4889
4890 * descr-text.el (describe-char):
4891 * progmodes/python.el (python-describe-symbol):
4892 Don't call `toggle-read-only', set `buffer-read-only'.
4893
4894 * imenu.el (imenu-default-goto-function): Mark unused args.
4895 (imenu-progress-message): Remove obsolete macro; all callers changed.
4896
4897 * subr.el (keymap-canonicalize): Remove unused binding.
4898 (read-passwd): Mark unused arg.
4899
4900 * tutorial.el (tutorial--display-changes): Remove unused binding.
4901 (tutorial--save-tutorial-to): Remove unused variable.
4902
4903 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
4904 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
4905 (package-generate-autoloads, package-menu--generate)
4906 (package-menu--find-upgrades): Remove unused bindings.
4907
4908 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
4909 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
4910 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
4911 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
4912 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
4913 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
4914 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
4915 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
4916 (cua-delete-char-rectangle): Mark unused args.
4917 (cua-align-rectangle): Remove unused binding.
4918
4919 * mail/rmail.el (compilation--message->loc)
4920 (epa--find-coding-system-for-mime-charset): Declare.
4921
4922 * net/dbus.el (dbus-register-service): Declare.
4923 (dbus-name-owner-changed-handler): Remove unused binding.
4924
4925 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
4926 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
4927 (nxml-scan-backward-within): Mark unused arg.
4928 (nxml-dynamic-markup-word): Remove unused binding.
4929
4930 * mouse.el (mouse-menu-major-mode-map):
4931 * emacs-lisp/authors.el (authors-scan-change-log)
4932 (authors-add-to-author-list):
4933 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
4934 * emacs-lisp/smie.el (smie-auto-fill):
4935 * mail/sendmail.el (mail-bury):
4936 * mail/unrmail.el (unrmail):
4937 * net/tls.el (open-tls-stream):
4938 * textmodes/picture.el (picture-mouse-set-point):
4939 Remove unused bindings.
4940
4941 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
4942
4943 * net/tramp.el (tramp-action-password): Let-bind
4944 `enable-recursive-minibuffers' to t.
4945
4946 2012-04-18 Sam Steingold <sds@gnu.org>
4947
4948 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
4949 instead of 'string to accommodate values like [f11].
4950 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
4951 * progmodes/gdb-mi.el: Likewise.
4952
4953 2012-04-18 Leo Liu <sdl.web@gmail.com>
4954
4955 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
4956 current buffer.
4957 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
4958 LOCAL is nil.
4959
4960 2012-04-18 Chong Yidong <cyd@gnu.org>
4961
4962 * simple.el (line-move): Use forward-line if in batch mode
4963 (Bug#11053).
4964
4965 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
4966
4967 * files.el (after-find-file): Do not try to add a final newline if
4968 the buffer is read-only (Bug#11156).
4969
4970 2012-04-17 Richard Stallman <rms@gnu.org>
4971
4972 * mail/rmail.el (rmail-start-mail):
4973 Pass (rmail-mail-return...) for the return-action.
4974 Pass (rmail-yank-current-message...) for the yank-action.
4975 (rmail-yank-current-message): New function.
4976 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
4977 (rmail-reply): Likewise.
4978 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
4979
4980 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
4981 buffer, not the last. Reject temp buffers. Use the rmail-mode
4982 buffer, not newbuf.
4983
4984 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
4985
4986 * server.el (server-ensure-safe-dir): Simplify.
4987
4988 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
4989
4990 * emacs-lisp/smie.el: Provide smarter auto-filling.
4991 (smie-auto-fill): New function.
4992 (smie-setup): Use it.
4993
4994 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
4995
4996 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
4997
4998 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
4999 (comment-indent): Use it.
5000
5001 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
5002
5003 * ses.el: The overall change is to add cell renaming, that is
5004 setting fancy names for cell symbols other than name matching
5005 "\\`[A-Z]+[0-9]+\\'" regexp .
5006 (ses-localvars): Add ses--renamed-cell-symb-list.
5007 (ses-create-cell-variable): New defun.
5008 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
5009 (ses-relocate-formula): Relocate formulas only for cells the
5010 symbols of which are not renamed, i.e. symbols whose names do not
5011 match regexp "\\`[A-Z]+[0-9]+\\'".
5012 (ses-relocate-all): Relocate values only for cells the symbols of
5013 which are not renamed.
5014 (ses-load): Create cells variables as the (ses-cell ...) are read,
5015 in order to check row col consistency with cell symbol name only
5016 for cells that are not renamed.
5017 (ses-replace-name-in-formula): New defun.
5018 (ses-rename-cell): New defun.
5019
5020 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
5021
5022 * progmodes/perl-mode.el (perl-indent-parens-as-block):
5023 New option (bug#11118).
5024 (perl-calculate-indent): Respect it.
5025
5026 2012-04-17 Glenn Morris <rgm@gnu.org>
5027
5028 * dired-aux.el (dired-mark-read-string): Doc fix.
5029
5030 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
5031
5032 * dired-aux.el (dired-mark-read-string): Offer optional completion.
5033 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
5034
5035 2012-04-17 Glenn Morris <rgm@gnu.org>
5036
5037 * mouse.el (mouse-drag-track):
5038 * speedbar.el (speedbar-frame-mode):
5039 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
5040
5041 2012-04-16 Leo Liu <sdl.web@gmail.com>
5042
5043 * progmodes/python.el: Trivial cleanup.
5044
5045 2012-04-16 Glenn Morris <rgm@gnu.org>
5046
5047 * vc/vc.el (vc-string-prefix-p):
5048 * vc/pcvs-util.el (cvs-string-prefix-p):
5049 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
5050 * mpc.el (mpc-string-prefix-p):
5051 Make all of these into obsolete aliases for string-prefix-p.
5052 Update callers.
5053 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
5054
5055 * textmodes/two-column.el: Move custom options to the start.
5056 (frame-width): Remove compat definition.
5057 (2C-associate-buffer, 2C-dissociate):
5058 Use with-current-buffer rather than save-excursion.
5059 (2C-dissociate): Force a mode-line update.
5060 (2C-autoscroll): Use ignore-errors.
5061
5062 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
5063 Autoload trivia.
5064
5065 * emacs-lisp/cl-extra.el (*random-state*):
5066 Remove unnecessary declaration.
5067
5068 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
5069
5070 * play/cookie1.el (cookie-snarf):
5071 Give an explicit error if input file cannot be read.
5072
5073 * play/yow.el (yow-file): Use expand-file-name rather than concat.
5074
5075 * progmodes/perl-mode.el (c-macro-expand):
5076 Remove unnecessary autoload (it is in loaddefs.el).
5077
5078 * textmodes/picture.el (picture-desired-column)
5079 (picture-update-desired-column): Convert comments to doc-strings.
5080 (picture-substitute): Remove function.
5081 (picture-mode-map): Initialize in the defvar.
5082
5083 * woman.el: Remove eval-after-load for tar-mode.
5084 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
5085 (woman-tar-extract-file): Autoload it.
5086
5087 * frame.el (automatic-hscrolling): Make this alias obsolete.
5088
5089 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5090
5091 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
5092 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
5093 (ispell-dictionary-base-alist): Revert to original XEmacs
5094 friendly version for default. [:alpha:] will be added in
5095 `ispell-set-spellchecker-params' if needed.
5096
5097 2012-04-16 Chong Yidong <cyd@gnu.org>
5098
5099 * image.el (imagemagick--file-regexp): New variable.
5100 (imagemagick-register-types): Use it.
5101 (imagemagick-types-inhibit): Add :set function. Allow new value
5102 of t to inhibit all types.
5103
5104 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
5105 so we can preload it.
5106
5107 * loadup.el (fboundp): Preload regexp-opt, needed by
5108 imagemagick-register-types.
5109
5110 2012-04-15 Chong Yidong <cyd@gnu.org>
5111
5112 * frame.el (scrolling): Remove nearly unused customization group.
5113
5114 * scroll-all.el (scroll-all-mode): Move to windows group.
5115
5116 2012-04-15 Chong Yidong <cyd@gnu.org>
5117
5118 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
5119
5120 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
5121
5122 Avoid the use of ((lambda ...) ...) in lexical-binding code.
5123 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
5124
5125 2012-04-15 Glenn Morris <rgm@gnu.org>
5126
5127 * simple.el (process-file-side-effects): Doc fix.
5128
5129 2012-04-15 Glenn Morris <rgm@gnu.org>
5130
5131 * international/mule-cmds.el (set-language-environment): Doc fix.
5132
5133 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
5134
5135 * server.el (server-auth-key, server-generate-key): Doc fixes.
5136 (server-get-auth-key): Doc fix. Use `string-match-p'.
5137 (server-start): Reflow docstring.
5138
5139 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
5140
5141 * server.el (server-generate-key): `called-interactively-p'
5142 requires a parameter.
5143
5144 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
5145
5146 * server.el (server-auth-key): New variable.
5147 (server-generate-key, server-get-auth-key): New function.
5148 (server-start): Use the new variable and functions to allow
5149 setting a permanent server key (bug#9423).
5150
5151 2012-04-14 Leo Liu <sdl.web@gmail.com>
5152
5153 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
5154
5155 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
5156
5157 Spelling fixes.
5158 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
5159 Emacs uses American spelling.
5160
5161 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
5162
5163 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
5164 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
5165 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
5166 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
5167
5168 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
5169
5170 * progmodes/which-func.el (which-func-modes): Change default.
5171
5172 2012-04-14 Kim F. Storm <storm@cua.dk>
5173
5174 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
5175 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
5176
5177 2012-04-14 Chong Yidong <cyd@gnu.org>
5178
5179 * custom.el (custom-theme-set-variables): Doc fix.
5180
5181 2012-04-14 Glenn Morris <rgm@gnu.org>
5182
5183 * international/mule.el (set-auto-coding-for-load): Doc fix.
5184
5185 2012-04-14 Alan Mackenzie <acm@muc.de>
5186
5187 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
5188 imenu work again for Objective C Mode. Correct the *-index values,
5189 these having been disturbed by a previous change in 2011-08.
5190
5191 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
5192 Correct two search limits.
5193
5194 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
5195
5196 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
5197
5198 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
5199
5200 * international/characters.el: Fix sorting.
5201
5202 2012-04-14 Eli Zaretskii <eliz@gnu.org>
5203
5204 * international/characters.el: Add more missing Latin case pairs.
5205
5206 2012-04-14 Glenn Morris <rgm@gnu.org>
5207
5208 * files.el (dir-locals-set-class-variables): Doc fix.
5209
5210 2012-04-14 Eli Zaretskii <eliz@gnu.org>
5211
5212 * international/characters.el: Add set-case-syntax-pair call for
5213 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
5214 counterpart. (Bug#11209)
5215
5216 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
5217
5218 2012-04-14 Glenn Morris <rgm@gnu.org>
5219
5220 * calendar/holidays.el (calendar-check-holidays): Doc fix.
5221
5222 2012-04-14 Eli Zaretskii <eliz@gnu.org>
5223
5224 * textmodes/ispell.el (ispell-dictionary-base-alist):
5225 Add data for Hebrew.
5226
5227 2012-04-14 Chong Yidong <cyd@gnu.org>
5228
5229 * net/rcirc.el (rcirc-cmd-quit):
5230 Revert 2012-03-18 change (Bug#11192).
5231
5232 2012-04-14 Glenn Morris <rgm@gnu.org>
5233
5234 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
5235
5236 2012-04-14 Eli Zaretskii <eliz@gnu.org>
5237
5238 * minibuffer.el (completion-in-region-mode-map):
5239 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
5240
5241 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
5242
5243 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
5244
5245 2012-04-13 Masatake YAMATO <yamato@redhat.com>
5246
5247 * minibuffer.el (minibuffer-local-filename-syntax): New variable
5248 to allow `C-M-f' and `C-M-b' to move to the nearest path
5249 separator (bug#9511).
5250
5251 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
5252
5253 * avoid.el: Require cl when compiling. And also move the
5254 `provide' to the end.
5255
5256 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5257
5258 * avoid.el (mouse-avoidance-banish-position): New variable.
5259 (mouse-avoidance-banish-destination): Use it (bug#10165).
5260
5261 2012-04-13 Leo Liu <sdl.web@gmail.com>
5262
5263 * progmodes/which-func.el (which-func-modes): Add objc-mode.
5264
5265 2012-04-13 Ken Brown <kbrown@cornell.edu>
5266
5267 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
5268 this is no longer needed now that cygstart understands file:// URLs.
5269 (browse-url-filename-alist): For the same reason, don't modify
5270 file:// URLs on Cygwin.
5271
5272 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
5273
5274 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
5275 the region on shift if the binding is already shifted (bug#11221).
5276
5277 2012-04-12 Glenn Morris <rgm@gnu.org>
5278
5279 * mail/mailpost.el: Move to obsolete/.
5280
5281 2012-04-12 Drew Adams <drew.adams@oracle.com>
5282
5283 * imenu.el (imenu--generic-function): Ignore invisible definitions
5284 (bug#10123).
5285
5286 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
5287
5288 * hexl.el (hexl-bits): New variable.
5289 (hexl-options): Mention the variable in the doc string.
5290 (hexl-rulerise, hexl-line-displen): New functions.
5291 (hexl-mode): Mention the new variable.
5292 (hexl-mode, hexl-current-address, hexl-current-address):
5293 Use the displen.
5294 (hexl-ascii-start-column): New function.
5295 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
5296 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
5297
5298 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5299
5300 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
5301 '("-i" ENCODING), in 2 separate command-line arguments, to specify
5302 the encoding, as expected by hunspell.
5303
5304 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
5305
5306 * battery.el (battery--linux-sysfs-regexp): New const.
5307 (battery-status-function): Use it. Remove yeeloong special case.
5308 (battery-yeeloong-sysfs): Remove.
5309 (battery-echo-area-format): Remove yeeloong special case.
5310
5311 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
5312
5313 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
5314 Reported by Noah Friedman.
5315
5316 * subr.el (read-passwd): Use read-string.
5317
5318 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
5319
5320 * vcursor.el (vcursor-move): Increase the priority of the overlay
5321 (bug#9663).
5322
5323 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
5324
5325 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
5326 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
5327
5328 2012-04-11 William Stevenson <yhvh2000@gmail.com>
5329
5330 * textmodes/artist.el (artist-mode): Convert artist-mode to use
5331 define-minor-mode (bug#10760).
5332
5333 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
5334
5335 * progmodes/grep.el (rgrep): Tweak the find command line so
5336 that directories matching `grep-find-ignored-files' won't be
5337 pruned (bug#10351).
5338
5339 2012-04-11 Chong Yidong <cyd@gnu.org>
5340
5341 * startup.el (command-line): Remove support for long-obsolete
5342 variable font-lock-face-attributes.
5343
5344 2012-04-11 Glenn Morris <rgm@gnu.org>
5345
5346 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
5347
5348 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
5349
5350 * window.el (window--state-get-1): Obey window-point-insertion-type.
5351
5352 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
5353
5354 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
5355 to previous function when point is on the first character of a
5356 function. Take care of that in `narrow-to-defun' (bug#6157).
5357
5358 2012-04-11 Glenn Morris <rgm@gnu.org>
5359
5360 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
5361 not just file-errors.
5362
5363 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
5364 (vc-bzr-sha1): Use internal sha1.
5365
5366 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
5367
5368 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
5369
5370 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
5371
5372 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
5373 that start in the middle of the line (bug#10496).
5374
5375 2012-04-10 Dan Nicolaescu <dann@gnu.org>
5376
5377 * battery.el (battery-linux-proc-acpi): Only one battery is
5378 discharged at a time, but that seems to confuse battery.el when
5379 computing `rate-type' for the battery not being discharged
5380 (bug#10332).
5381
5382 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
5383
5384 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
5385
5386 * international/quail.el: Use dolist and simplify.
5387 (quail-define-package, quail-update-keyboard-layout)
5388 (quail-define-rules): Use dolist.
5389 (quail-insert-kbd-layout, quail-get-translation): CSE.
5390
5391 * tmm.el: Use dolist, remove left over hook.
5392 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
5393 Use dolist.
5394 (calendar-load-hook): Don't mess with it.
5395
5396 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
5397 Use derived-mode-p. Run the diff asynchronously.
5398
5399 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
5400
5401 * obsolete/mouse-sel.el: Add an Obsolete-since header.
5402
5403 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
5404
5405 * misc.el: Display absolute path of loaded DLLs (bug#10424).
5406 (list-dynamic-libraries--loaded): New function.
5407 (list-dynamic-libraries--refresh): Use it.
5408
5409 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
5410
5411 * progmodes/python.el (python-fill-paragraph):
5412 Make python-fill-region in a multiline string work when font-lock is
5413 disabled (bug#7018).
5414
5415 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
5416
5417 * language/european.el (cp775): Add oem/legacy (en)coding on
5418 DOS/MS Windows for the Baltic languages. There are still plenty
5419 of texts written in this encoding/codepage (bug#6519).
5420
5421 2012-04-10 Glenn Morris <rgm@gnu.org>
5422
5423 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
5424 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
5425
5426 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
5427
5428 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
5429 next-line "n" and previous-line "p" in order to make recentf more
5430 consistent with ibuffer, dired or org-mode (bug#9387).
5431
5432 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
5433
5434 * image.el (put-image): Return the overlay created instead of the
5435 optional input string (bug#7834). Note that this may break code
5436 that is (for some reason or other) depending on `put-image'
5437 returning the string.
5438
5439 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
5440
5441 * simple.el (zap-to-char): Allow zapping using input methods
5442 (bug#1580).
5443
5444 * textmodes/fill.el (fill-region): Leave point and mark where they
5445 were before filling (bug#5399).
5446
5447 2012-04-09 Glenn Morris <rgm@gnu.org>
5448
5449 * version.el (emacs-bzr-get-version):
5450 Handle lightweight checkouts of local branches.
5451
5452 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
5453
5454 * international/characters.el: Recover lost case pairs. (Bug#11209)
5455
5456 2012-04-09 Chong Yidong <cyd@gnu.org>
5457
5458 * custom.el (custom-variable-p): Return nil for non-symbol
5459 arguments instead of signaling an error.
5460 (user-variable-p): Obsolete alias for custom-variable-p.
5461
5462 * apropos.el (apropos-variable):
5463 * files-x.el (read-file-local-variable):
5464 * simple.el (set-variable):
5465 * woman.el (woman-mini-help):
5466 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
5467
5468 2012-04-09 Glenn Morris <rgm@gnu.org>
5469
5470 * startup.el (normal-top-level): Don't look for leim-list.el
5471 in places where it will not be found. (Bug#910)
5472
5473 * international/mule-cmds.el (set-default-coding-systems):
5474 * files.el (normal-mode):
5475 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
5476 This function was removed with ucs-tables.el in 2008.
5477
5478 2012-04-08 Eli Zaretskii <eliz@gnu.org>
5479
5480 * textmodes/ispell.el (ispell-check-version): For hunspell, set
5481 ispell-encoding8-command to "-i", without a trailing space.
5482 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
5483 separate command-line arguments, to specify the encoding, since
5484 that's how hunspell expects it.
5485
5486 2012-04-08 Glenn Morris <rgm@gnu.org>
5487
5488 * loadup.el: Load bindings before cus-start.
5489 This reduces somewhat the number of "rogue" settings in emacs -Q.
5490
5491 2012-04-07 Glenn Morris <rgm@gnu.org>
5492
5493 * version.el (emacs-bzr-get-version): New function.
5494 (emacs-bzr-version): New variable.
5495 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
5496 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
5497
5498 2012-04-07 Eli Zaretskii <eliz@gnu.org>
5499
5500 * international/uni-bidi.el, international/uni-category.el:
5501 * international/uni-combining.el, international/uni-decimal.el:
5502 * international/uni-decomposition.el, international/uni-digit.el:
5503 * international/uni-lowercase.el, international/uni-mirrored.el:
5504 * international/uni-name.el, international/uni-numeric.el:
5505 * international/uni-titlecase.el, international/uni-uppercase.el:
5506 Update for Unicode 6.1.
5507
5508 2012-04-07 Eli Zaretskii <eliz@gnu.org>
5509
5510 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
5511
5512 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5513
5514 * window.el (shrink-window): Mention the `window-min-height'
5515 variable in the doc string.
5516
5517 2012-04-05 Bastien Guerry <bzg@altern.org>
5518
5519 * color.el (color-lighten-name): Fix typo.
5520
5521 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
5522
5523 * server.el (server--on-display-p): New function.
5524 (server--on-display-p): Use it.
5525
5526 2012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
5527
5528 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
5529 (bug#11145).
5530
5531 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
5532
5533 * comint.el (comint--common-quoted-suffix): Check string boundary
5534 before comparing (bug#11158).
5535 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
5536
5537 2012-04-04 Chong Yidong <cyd@gnu.org>
5538
5539 * minibuffer.el (completion-extra-properties): Doc fix.
5540
5541 * subr.el (delayed-warnings-hook): Doc fix.
5542
5543 2012-04-04 Daiki Ueno <ueno@unixuser.org>
5544
5545 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
5546 selection (Bug#11159).
5547 (epa-insert-keys): Inform that the default public key will be
5548 exported if no key is selected.
5549
5550 2012-04-04 Richard Stallman <rms@gnu.org>
5551
5552 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
5553
5554 2012-04-03 Chong Yidong <cyd@gnu.org>
5555
5556 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
5557 mail-insert-file, not its obsolete alias mail-attach-file.
5558
5559 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
5560
5561 * notifications.el (notifications-notify): Fix docstring.
5562
5563 2012-04-02 Glenn Morris <rgm@gnu.org>
5564
5565 * emacs-lisp/authors.el (authors-aliases): Another addition.
5566
5567 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
5568
5569 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
5570 `tramp-compat-call-process' instead of `tramp-local-call-process'.
5571 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
5572
5573 2012-04-01 Chong Yidong <cyd@gnu.org>
5574
5575 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
5576 Handle root directory properly.
5577 (copy-directory): Caller changed.
5578
5579 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
5580 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
5581
5582 2012-03-31 Glenn Morris <rgm@gnu.org>
5583
5584 * term/xterm.el (xterm-extra-capabilities): Doc fix.
5585
5586 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
5587
5588 * calendar/calendar.el (calendar-window-list)
5589 (calendar-hide-window): Restore. (Bug#11140)
5590 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
5591
5592 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
5593
5594 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5595
5596 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
5597 Check if file is a symlink (Bug#10489).
5598
5599 * files.el (copy-directory): Likewise.
5600
5601 2012-03-30 Chong Yidong <cyd@gnu.org>
5602
5603 * image.el (imagemagick-types-inhibit)
5604 (imagemagick-register-types): Doc fix.
5605
5606 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5607
5608 * textmodes/ispell.el (ispell-get-extended-character-mode):
5609 Disable extended-char-mode for hunspell. hunspell does not support it
5610 and treats ~word as ordinary words in pipe mode.
5611
5612 2012-03-30 Glenn Morris <rgm@gnu.org>
5613
5614 * tutorial.el (help-with-tutorial): Ensure local variables don't
5615 happen to make the buffer read-only. (Bug#11127)
5616
5617 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
5618
5619 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
5620 (perl-calculate-indent): Return `noindent' in strings.
5621
5622 2012-03-28 Sam Steingold <sds@gnu.org>
5623
5624 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
5625 instead of the broken adhockery which does not prevent calendar
5626 buffers from being displayed at random after exit.
5627 (calendar-window-list, calendar-hide-window): Remove the broken
5628 adhockery.
5629
5630 2012-03-28 Glenn Morris <rgm@gnu.org>
5631
5632 * replace.el (query-replace-map): Doc fix.
5633
5634 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
5635
5636 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
5637 contents. (Bug#11109)
5638
5639 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
5640
5641 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
5642 (bug#11077).
5643 (avl-tree--check, avl-tree--check-node): New funs.
5644
5645 2012-03-27 Martin Rudalics <rudalics@gmx.at>
5646
5647 * window.el (switch-to-visible-buffer): New option.
5648 (switch-to-prev-buffer, switch-to-next-buffer):
5649 Observe switch-to-visible-buffer. Make sure that checking for a window
5650 showing a buffer already is done on the same frame.
5651
5652 2012-03-27 Glenn Morris <rgm@gnu.org>
5653
5654 * startup.el (mail-host-address): Doc fix.
5655
5656 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
5657
5658 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
5659 than 197 variables.
5660
5661 2012-03-26 Ami Fischman <ami@fischman.org>
5662
5663 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
5664
5665 2012-03-26 Glenn Morris <rgm@gnu.org>
5666
5667 * files.el (save-buffers-kill-emacs): Doc fix.
5668
5669 * startup.el (normal-top-level, command-line, command-line-1):
5670 Give them doc strings.
5671
5672 2012-03-25 Eli Zaretskii <eliz@gnu.org>
5673
5674 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
5675 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
5676
5677 2012-03-25 Chong Yidong <cyd@gnu.org>
5678
5679 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
5680 theme if it was previously enabled before (Bug#11031).
5681
5682 * cus-theme.el (custom-theme-write-faces): Retrieve current face
5683 spec with custom-face-get-current-spec if its :shown-value is not
5684 determined yet (Bug#9337).
5685 (customize-create-theme, custom-theme-revert): Doc fixes.
5686
5687 * button.el (button-at): Minor addition to docstring.
5688
5689 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
5690
5691 * vc/vc.el (vc-merge): Fix a prompt.
5692
5693 2012-03-24 Chong Yidong <cyd@gnu.org>
5694
5695 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
5696 point (Bug#9623).
5697
5698 * button.el (button-at): Minor addition to docstring.
5699
5700 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
5701
5702 * newcomment.el (comment-choose-indent): No space after BOL.
5703
5704 2012-03-22 Sam Steingold <sds@gnu.org>
5705
5706 * window.el (switch-to-prev-buffer): Revert last patch because the
5707 bug turned out to be an advertised feature (Elisp manual 28.14).
5708
5709 2012-03-22 Glenn Morris <rgm@gnu.org>
5710
5711 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
5712 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
5713
5714 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5715
5716 * net/network-stream.el (network-stream-open-starttls): Make error
5717 message under Windows be less misleading.
5718
5719 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
5720
5721 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
5722 understands (bug#9942).
5723
5724 2012-03-22 Chong Yidong <cyd@gnu.org>
5725
5726 * simple.el (end-of-visible-line): Handle return value of
5727 next-single-property-change properly (Bug#9371).
5728
5729 2012-03-22 Kenichi Handa <handa@m17n.org>
5730
5731 * international/quail.el (quail-insert-kbd-layout): Fix previous
5732 change. To avoid unwanted bidi reordering, use
5733 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
5734
5735 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
5736
5737 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
5738 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
5739 (ruby-beginning-of-indent): Be more careful with the difference
5740 between word-boundary and symbol boundary.
5741 (ruby-mode-syntax-table): Make : a symbol constituent.
5742
5743 2012-03-21 Andreas Politz <politza@fh-trier.de>
5744
5745 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
5746
5747 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
5748
5749 * progmodes/etags.el (tags-completion-at-point-function):
5750 Improve last fix.
5751
5752 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
5753
5754 2012-03-21 Sam Steingold <sds@gnu.org>
5755
5756 * progmodes/etags.el (tags-completion-at-point-function):
5757 Avoid the error when point is inside the pattern.
5758
5759 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
5760
5761 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
5762 line (Bug#10855).
5763
5764 2012-03-21 Drew Adams <drew.adams@oracle.com>
5765
5766 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
5767
5768 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
5769
5770 * ido.el (ido-set-current-directory, ido-read-internal)
5771 (ido-choose-completion-string, ido-completion-help): Handle nil
5772 value of ido-completion-buffer (Bug#11008).
5773
5774 2012-03-21 Sam Steingold <sds@gnu.org>
5775
5776 * window.el (switch-to-prev-buffer): Do not switch to a visible
5777 window previous buffer, just like with the frame previous buffers.
5778
5779 2012-03-21 Chong Yidong <cyd@gnu.org>
5780
5781 * faces.el (make-face, make-empty-face, copy-face):
5782 * face-remap.el (face-remap-add-relative, face-remap-set-base):
5783 Doc fixes.
5784
5785 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
5786
5787 * wid-edit.el (widget-complete-field): Remove (bug#11051).
5788 (widget-complete): Remove broken use of it.
5789
5790 2012-03-20 Chong Yidong <cyd@gnu.org>
5791
5792 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
5793 Use string-width and truncate-string-width to handle arbitrary
5794 characters.
5795
5796 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
5797
5798 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
5799 to draw rectangles, not squares. (Regression introduced by revno
5800 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
5801
5802 2012-03-18 Chong Yidong <cyd@gnu.org>
5803
5804 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
5805 it is not yet defined (for temacs).
5806
5807 2012-03-18 Leo Liu <sdl.web@gmail.com>
5808
5809 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
5810
5811 2012-03-17 Eli Zaretskii <eliz@gnu.org>
5812
5813 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
5814 (ispell-choices-win-default-height, ispell-silently-savep)
5815 (ispell-dictionary-alist, ispell-encoding8-command)
5816 (ispell-check-version, ispell-aspell-find-dictionary)
5817 (ispell-valid-dictionary-list, ispell-words-keyword)
5818 (ispell-get-word, ispell-internal-change-dictionary)
5819 (ispell-region, ispell-skip-region-list)
5820 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
5821 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
5822 (ispell-message-text-end, ispell-message)
5823 (ispell-buffer-local-parsing): Doc fix.
5824
5825 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
5826
5827 * htmlfontify.el: Add support for code block fontification for ODT
5828 export (Bug #9914).
5829 (hfy-optimisations): Define new option
5830 `body-text-only'
5831 (hfy-fontify-buffer): Honor above setting.
5832 (hfy-begin-span, hfy-end-span): New routines factored out form
5833 `hfy-fontify-buffer'.
5834 (hfy-begin-span-handler, hfy-end-span-handler): New variables
5835 that permit insertion of custom tags.
5836 (hfy-fontify-buffer): Use above handlers.
5837 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
5838 (hfy-face-to-css): Re-defined to be a variable.
5839 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
5840 over multiple runs. This is made possible by having the caller let
5841 bind a special variable `hfy-user-sheet-assoc'.
5842 (htmlfontify-string): New defun.
5843 (hfy-compile-face-map): Make sure that the last char in the
5844 buffer is correctly fontified.
5845 (hfy-face-resolve-face): Whitespace only change.
5846
5847 2012-03-17 Eli Zaretskii <eliz@gnu.org>
5848
5849 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
5850 message more clear.
5851
5852 2012-03-16 Leo Liu <sdl.web@gmail.com>
5853
5854 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
5855
5856 2012-03-16 Alan Mackenzie <acm@muc.de>
5857
5858 Further optimise the handling of large macros.
5859
5860 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
5861 limit to a call of `c-literal-limits'.
5862 (c-determine-+ve-limit): New function.
5863 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
5864 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
5865 In CASE 5B, restrict a search limit to 500.
5866 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
5867
5868 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
5869 Restrict macro bounds to +-500 from after-change's BEG END.
5870
5871 2012-03-16 Leo Liu <sdl.web@gmail.com>
5872
5873 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
5874
5875 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
5876
5877 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
5878 `special-mode' setting of `buffer-read-only'. (Bug#11010)
5879
5880 2012-03-16 Glenn Morris <rgm@gnu.org>
5881
5882 * view.el (view-buffer, view-buffer-other-window)
5883 (view-buffer-other-frame): Doc fixes re special mode-class.
5884
5885 * subr.el (eval-after-load): If named feature is provided not from
5886 a file, run after-load forms. (Bug#10946)
5887
5888 * calendar/calendar.el (calendar-insert-at-column):
5889 Handle non-unit-width characters a bit better. (Bug#10978)
5890
5891 2012-03-15 Chong Yidong <cyd@gnu.org>
5892
5893 * emacs-lisp/ring.el (ring-extend): New function.
5894 (ring-insert+extend): Extend the ring correctly (Bug#11019).
5895
5896 * comint.el (comint-read-input-ring)
5897 (comint-add-to-input-history): Grow comint-input-ring lazily.
5898
5899 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
5900
5901 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
5902 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
5903
5904 * imenu.el: Fix multiple inheritance breakage (bug#9199).
5905 (imenu-add-to-menubar): Don't add a redundant index.
5906 (imenu-update-menubar): Handle a dynamically composed keymap.
5907
5908 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
5909
5910 * mail/sendmail.el (mail-encode-header):
5911 Bind rfc2047-encode-encoded-words to nil.
5912
5913 2012-03-13 Glenn Morris <rgm@gnu.org>
5914
5915 * calendar/calendar.el (calendar-string-spread):
5916 Handle non-unit-width characters a bit better. (Bug#10978)
5917
5918 2012-03-13 Leo Liu <sdl.web@gmail.com>
5919
5920 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
5921 directory and file as argument (Bug#10822).
5922
5923 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
5924
5925 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
5926 For dynamically generated code, follow $PC.
5927 (gdb-disassembly-handler-custom): Handle no function name case.
5928
5929 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
5930
5931 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
5932 * emulation/ws-mode.el (ws-query-replace):
5933 * sort.el (sort-regexp-fields):
5934 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
5935
5936 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5937
5938 * dabbrev.el: Fix cycle completion order (bug#10963).
5939 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
5940 (dabbrev-completion): Don't use an obarray; provide
5941 a cycle-sort-function.
5942
5943 2012-03-12 Leo Liu <sdl.web@gmail.com>
5944
5945 * simple.el (kill-new): Use equal-including-properties for comparison.
5946 (kill-do-not-save-duplicates): Doc fix.
5947
5948 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5949
5950 * dabbrev.el: Fix cycle completion (bug#10963).
5951 Use lexical binding and wrap to 80 columns.
5952 (dabbrev-completion): Delay computing the list of completions.
5953
5954 2012-03-12 Kenichi Handa <handa@m17n.org>
5955
5956 * international/quail.el (quail-insert-kbd-layout): Surround each
5957 row by LRO and PDF instead of inserting many LRMs. Pad the left
5958 and right of each non-spacing marks. Insert invisible space
5959 between lower and upper characters to prevent composition.
5960
5961 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5962
5963 * minibuffer.el (minibuffer-complete): Don't get confused when the
5964 function is run twice via different commands (bug#10958).
5965 (complete-with-action): Fix docstring.
5966
5967 2012-03-12 Chong Yidong <cyd@gnu.org>
5968
5969 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
5970 (nxml-completion-at-point-function): New function.
5971 (nxml-mode): Use it.
5972 (nxml-bind-meta-tab-to-complete-flag): Default to t.
5973
5974 * emacs-lisp/package.el (package-unpack, package-unpack-single):
5975 Load generated autoloads file before byte compiling (Bug#10970).
5976 (package--make-autoloads-and-compile): New helper fun.
5977
5978 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
5979
5980 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
5981
5982 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
5983
5984 * autorevert.el (auto-revert-handler): Ensure, that
5985 file-readable-p is applied only for local files or in
5986 auto-revert-tail-mode.
5987
5988 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
5989
5990 * server.el (server-eval-at): Handle non-tcp connections.
5991 Decode result string.
5992
5993 * server.el (server-msg-size): New constant.
5994 (server-reply-print): New function.
5995 (server-eval-and-print): Use it.
5996 (server-eval-at): Use server-quote-arg and server-unquote-arg.
5997 Handle -print-nonl.
5998
5999 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
6000
6001 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
6002 (Bug#10987).
6003
6004 2012-03-11 Chong Yidong <cyd@gnu.org>
6005
6006 * simple.el (goto-line): Doc fix (Bug#9938).
6007
6008 * subr.el (save-window-excursion): Doc fix (Bug#9979).
6009
6010 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
6011 when finished (Bug#10963).
6012
6013 2012-03-11 Martin Rudalics <rudalics@gmx.at>
6014
6015 * window.el (split-window-below): Fix bug in case where
6016 split-window-keep-point is nil (Bug#10971).
6017
6018 2012-03-11 Juri Linkov <juri@jurta.org>
6019
6020 * replace.el (replace-highlight): Set isearch-word to nil
6021 unconditionally. (Bug#10887)
6022
6023 2012-03-10 Eli Zaretskii <eliz@gnu.org>
6024
6025 * net/mairix.el (mairix-replace-invalid-chars): Rename from
6026 mairix-replace-illegal-chars; all callers changed. Don't remove
6027 ^, ~, and = characters: they are meaningful in mairix search specs.
6028 (mairix-widget-create-query): Add usage information about mairix
6029 search forms: negating words, searching for substrings, etc.
6030
6031 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
6032
6033 * international/fontset.el (font-encoding-alist): Add an entry for
6034 ksx1001 (Bug#5667).
6035
6036 2012-03-10 Richard Stallman <rms@gnu.org>
6037
6038 * mail/sendmail.el (mail-encode-header):
6039 Set rfc2047-encode-encoded-words.
6040
6041 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
6042
6043 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
6044 view buffer means not swapped.
6045 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
6046 (rmail-write-region-annotate): Error if real text has disappeared.
6047
6048 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
6049
6050 2012-03-10 Chong Yidong <cyd@gnu.org>
6051
6052 * emulation/cua-rect.el (cua--init-rectangles):
6053 * emulation/cua-base.el (cua--init-keymaps):
6054 Add delete-forward-char to remappings (Bug#9666).
6055
6056 2012-03-10 Martin Rudalics <rudalics@gmx.at>
6057
6058 * speedbar.el (speedbar-unhighlight-one-tag-line):
6059 Avoid unhighlighting due to frame switching (Bug#10275).
6060
6061 2012-03-10 Chong Yidong <cyd@gnu.org>
6062
6063 * minibuffer.el (completion-in-region, completion-help-at-point):
6064 Give the completion field overlay a high priority (Bug#6830).
6065
6066 * dired.el (dired-goto-file): Recognize absolute file name
6067 listings (Bug#7126).
6068 (dired-goto-file-1): New helper function.
6069 (dired-toggle-read-only): Inhibit warnings.
6070
6071 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
6072
6073 * net/dbus.el (dbus-property-handler): Return empty array if
6074 there are no properties.
6075
6076 2012-03-09 Leo Liu <sdl.web@gmail.com>
6077
6078 * savehist.el (savehist-printable): Stricter check for string
6079 value (Bug#10937).
6080
6081 2012-03-09 Eli Zaretskii <eliz@gnu.org>
6082
6083 * mail/smtpmail.el (smtpmail-send-it):
6084 Bind coding-system-for-write to *-unix, so that FCC files are kept in
6085 valid mbox format.
6086
6087 2012-03-09 Glenn Morris <rgm@gnu.org>
6088
6089 * files.el (dir-locals-find-file):
6090 Don't check result is regular, readable.
6091 (dir-locals-read-from-file): Demote errors.
6092
6093 2012-03-08 Eli Zaretskii <eliz@gnu.org>
6094
6095 * international/quail.el (quail-insert-kbd-layout):
6096 Insert invisible LRM characters before each character in a keyboard
6097 layout cell, to prevent their reordering by bidi display engine.
6098 For details, see the discussion in
6099 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
6100
6101 2012-03-08 Alan Mackenzie <acm@muc.de>
6102
6103 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
6104 the starting position; make it extend the marked region when
6105 invoked repeatedly - all under appropriate circumstances.
6106 Fixes bugs #5525, #10906.
6107
6108 2012-03-08 Glenn Morris <rgm@gnu.org>
6109
6110 * files.el (locate-dominating-file, dir-locals-find-file):
6111 Undo 2012-03-06 change.
6112
6113 2012-03-07 Eli Zaretskii <eliz@gnu.org>
6114
6115 * international/quail.el (quail-help):
6116 Force bidi-paragraph-direction be left-to-right. See discussion in
6117 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
6118 for the reason.
6119
6120 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
6121
6122 Avoid superfluous registering of signals. (Bug#10807)
6123
6124 * notifications.el (notifications-on-action-object)
6125 (notifications-on-close-object): New defvars.
6126 (notifications-on-action-signal, notifications-on-closed-signal):
6127 Unregister the signal if not needed any longer.
6128 (notifications-notify): Register `notifications-action-signal' or
6129 `notifications-closed-signal', if :on-action or :on-close has been
6130 passed as argument.
6131
6132 2012-03-07 Chong Yidong <cyd@gnu.org>
6133
6134 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
6135 non-X platforms.
6136
6137 2012-03-06 Glenn Morris <rgm@gnu.org>
6138
6139 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
6140 (x-disown-selection-internal, x-get-selection-internal):
6141 Doc fix (add arglist signatures). (Bug#10783)
6142
6143 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
6144
6145 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
6146 Handle breakpoints with no "type".
6147
6148 2012-03-06 Glenn Morris <rgm@gnu.org>
6149
6150 * files.el (locate-dominating-file): Add optional predicate argument.
6151 (dir-locals-find-file): Make use of above change.
6152
6153 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
6154
6155 * info.el (Info-insert-dir): Also try "dir.gz".
6156
6157 2012-03-06 Glenn Morris <rgm@gnu.org>
6158
6159 * files.el (dir-locals-find-file):
6160 Ignore non-readable or non-regular files. (Bug#10928)
6161
6162 * files.el (locate-dominating-file): Doc fix.
6163
6164 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
6165
6166 * calendar/calendar.el (calendar-set-mode-line):
6167 `getenv' returns a string. (Bug#10951)
6168
6169 2012-03-05 Leo Liu <sdl.web@gmail.com>
6170
6171 * simple.el (backward-delete-char-untabify): Constrain point to
6172 field (Bug#10939).
6173
6174 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
6175
6176 2012-03-05 Chong Yidong <cyd@gnu.org>
6177
6178 * simple.el (count-words): If called from Lisp, return the word
6179 count, for symmetry with `count-lines'. Arglist changed.
6180 (count-words--message): Args changed. Consolidate counting code
6181 from count-words and count-words-region.
6182 (count-words-region): Caller changed.
6183 (count-lines-region): Make it an obsolete alias.
6184
6185 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
6186
6187 * saveplace.el (save-place-to-alist)
6188 (save-place-ignore-files-regexp): Allow value nil to disable this
6189 feature.
6190
6191 2012-03-04 Chong Yidong <cyd@gnu.org>
6192
6193 * faces.el (face-spec-reset-face): For the default face, reset the
6194 attributes to default values (Bug#10748).
6195
6196 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
6197
6198 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
6199 previous patch: Check `message-send-mail-function', and not the
6200 default function (bug#10897).
6201
6202 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
6203
6204 * notifications.el (notifications-on-action-signal)
6205 (notifications-on-closed-signal): Check for unique service name of
6206 incoming event. Fix error in removing entry.
6207 (top): Register for signals with wildcard service name.
6208 (notifications-notify): Use daemon unique service name for map entries.
6209
6210 2012-03-04 Chong Yidong <cyd@gnu.org>
6211
6212 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
6213
6214 2012-03-04 Glenn Morris <rgm@gnu.org>
6215
6216 * abbrev.el (copy-abbrev-table, abbrev-table-p)
6217 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
6218 (expand-abbrev, define-abbrev-table): Doc fixes.
6219
6220 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
6221
6222 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
6223 `message-default-send-mail-function' and not `send-mail-function'
6224 when doing the prompting for `sendmail-query-once' before sending
6225 in Message buffers (bug#10897).
6226
6227 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
6228 This is inconsistent with all the other stream functions, which leave
6229 the setting up to the higher levels (if so wanted) (bug#10931).
6230
6231 2012-03-02 Alan Mackenzie <acm@muc.de>
6232
6233 Depessimize the handling of very large macros.
6234
6235 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
6236 (c-macro-cache-syntactic): New variables to implement a one
6237 element macro cache.
6238 (c-invalidate-macro-cache): New function.
6239 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
6240 Adapt to use the new cache.
6241 (c-state-safe-place): Use better the cache of safe positions.
6242 (c-state-semi-nonlit-pos-cache)
6243 (c-state-semi-nonlit-pos-cache-limit):
6244 New variables for...
6245 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
6246 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
6247 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
6248 Use c-state-semi-safe-place.
6249
6250 * progmodes/cc-langs.el (c-get-state-before-change-functions):
6251 Add c-invalidate-macro-cache to the C, C++, Obj entries.
6252
6253 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
6254
6255 * jka-compr.el (jka-compr-call-process):
6256 Apply `file-accessible-directory-p' only when the default directory is
6257 not remote.
6258
6259 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
6260
6261 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
6262 access of FILE2, if FILE1 does not exist.
6263
6264 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
6265 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
6266
6267 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
6268 Add "PAGER=" to `process-environment'.
6269
6270 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
6271
6272 * progmodes/sql.el: Bug fix
6273 (sql-get-login-ext): Save login values in globals.
6274 (sql-get-login): Use new version of `sql-get-login-ext'.
6275 (sql-interactive-mode): Set global `sql-connection' to nil.
6276 (sql-connect): Set global values for connection.
6277 (sql-product-interactive): Save global values as buffer local.
6278
6279 2012-02-29 Leo Liu <sdl.web@gmail.com>
6280
6281 * abbrev.el (define-abbrevs): Reset sys to nil.
6282
6283 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6284
6285 * files.el (file-equal-p): Rename from `files-equal-p'.
6286 Return nil when one or both files don't exist.
6287 (file-subdir-of-p): Now only top directory must exists,
6288 return nil if it doesn't.
6289 (copy-directory): No need to test with `file-subdir-of-p' after
6290 creating dir.
6291 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
6292 to `file-equal-p'.
6293
6294 2012-02-28 Glenn Morris <rgm@gnu.org>
6295
6296 * shell.el (shell-mode):
6297 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
6298 * play/landmark.el (landmark-font-lock-face-O):
6299 * play/handwrite.el (handwrite):
6300 * play/gomoku.el (gomoku-O):
6301 * net/browse-url.el (browse-url-browser-display):
6302 * international/mule.el (define-charset):
6303 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
6304 * filesets.el (filesets-find-file-delay):
6305 * eshell/em-xtra.el (eshell-xtra):
6306 * eshell/em-unix.el (eshell-grep):
6307 * emulation/viper.el (viper-mode):
6308 * emacs-lisp/regexp-opt.el (regexp-opt-group):
6309 * emacs-lisp/easymenu.el (easy-menu-define):
6310 * calendar/timeclock.el (timeclock-use-display-time):
6311 * bs.el (bs-mode):
6312 * bookmark.el (bookmark-save-flag):
6313 Doc fix (standardize possessive apostrophe usage).
6314
6315 2012-02-27 Chong Yidong <cyd@gnu.org>
6316
6317 * emulation/viper-cmd.el (viper-intercept-ESC-key):
6318 Fix key-binding lookup for ESC key (Bug#9146).
6319
6320 * font-lock.el (font-lock-specified-p): Rename from
6321 font-lock-spec-present. Callers changed.
6322
6323 2012-02-27 Daniel Hackney <dan@haxney.org>
6324
6325 * emacs-lisp/package.el (package-compute-transaction):
6326 Handle holding a package version to t in package-load-list.
6327
6328 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
6329
6330 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
6331 (tramp-get-inode, tramp-get-device): Use cached values.
6332
6333 2012-02-26 Alan Mackenzie <acm@muc.de>
6334
6335 Check there is a font-lock specification before doing initial
6336 fontification.
6337
6338 * font-core.el (font-lock-mode): Move the conditional from
6339 :after-hook to font-lock-initial-fontify.
6340 (font-lock-default-function): Move the check for a specification
6341 to font-lock-spec-present.
6342
6343 * font-lock.el (font-lock-initial-fontify): Call ...
6344 (font-lock-spec-present): New function.
6345
6346 2012-02-26 Jim Blandy <jimb@red-bean.com>
6347
6348 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
6349 (gdb-send): Apply it to the operand of the '-interpreter-exec
6350 console' command, so that we can pass arguments with (say) quotes
6351 in them. Store exact string sent in gdb-debug-log (Bug#10765).
6352
6353 2012-02-26 Chong Yidong <cyd@gnu.org>
6354
6355 * help-fns.el (describe-function-1): Clarify description of
6356 remapping (Bug#10844).
6357
6358 * files.el (files-equal-p): Doc fix.
6359 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
6360 and quit the loop once a mismatch is found.
6361
6362 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
6363
6364 * bs.el (bs--show-with-configuration): Don't throw an error
6365 if the window cannot be split; otherwise, subsequent calls to
6366 bs-show fail, restoring a stale window config. (Bug#10882)
6367
6368 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
6369
6370 * term/ns-win.el (global-map): Bind ns-drag-file to
6371 ns-find-file (Bug#5855, Bug#10050).
6372
6373 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
6374
6375 * calendar/parse-time.el (parse-time-string): Allow extractor to
6376 return nil.
6377
6378 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
6379
6380 * net/tramp.el (tramp-file-name-for-operation):
6381 Add `files-equal-p' and `file-subdir-of-p'.
6382
6383 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
6384 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
6385 Add COPY-CONTENTS argument.
6386
6387 2012-02-25 Chong Yidong <cyd@gnu.org>
6388
6389 Add custom groups for VC backends, for consistency with vc-bzr.
6390
6391 * vc/vc-arch.el (vc-arch):
6392 * vc/vc-cvs.el (vc-cvs):
6393 * vc/vc-git.el (vc-git):
6394 * vc/vc-hg.el (vc-hg):
6395 * vc/vc-mtn.el (vc-mtn):
6396 * vc/vc-rcs.el (vc-rcs):
6397 * vc/vc-sccs.el (vc-sccs):
6398 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
6399 All relevant defcustoms reassigned.
6400
6401 2012-02-25 Chong Yidong <cyd@gnu.org>
6402
6403 * newcomment.el (comment-styles): Add autoload (Bug#10868).
6404
6405 * term/x-win.el (x-initialize-window-system): Reduce default for
6406 x-selection-timeout to 5 seconds (Bug#8869).
6407
6408 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6409
6410 * files.el (files-equal-p, file-subdir-of-p): New functions.
6411 (copy-directory): Error when trying to copy a directory on itself.
6412 Add missing copy-contents arg to tramp handler.
6413 * dired-aux.el (dired-copy-file-recursive): Same.
6414 (dired-create-files): Modify destination when source is equal to
6415 dest when copying files.
6416 Return also when dest is a subdir of source. (Bug#10489)
6417
6418 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
6419
6420 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
6421 (Bug#10874)
6422
6423 2012-02-23 Alan Mackenzie <acm@muc.de>
6424
6425 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
6426 parameter "after-hook:" to allow the expansion to run code after
6427 the execution of the mode hooks.
6428
6429 * font-lock.el (font-lock-initial-fontify): New function extracted
6430 from font-lock-mode-internal.
6431
6432 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
6433 :after-hook.
6434
6435 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
6436
6437 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
6438 (completion--cache-all-sorted-completions): New function.
6439 (completion-all-sorted-completions): Use it.
6440 (completion--do-completion, minibuffer-force-complete):
6441 Use it to re-instate the flush hook.
6442
6443 * icomplete.el (icomplete-completions): Replace last fix with a better
6444 one (bug#10850).
6445
6446 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
6447
6448 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
6449 when it might call us back infinitely (bug#10797).
6450
6451 2012-02-23 Glenn Morris <rgm@gnu.org>
6452
6453 * minibuffer.el (completion-category-overrides): Doc fix.
6454
6455 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
6456
6457 * minibuffer.el (completion-table-with-context): Fix inf-loop.
6458 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
6459
6460 2012-02-23 Glenn Morris <rgm@gnu.org>
6461
6462 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
6463 (authors-obsolete-files-regexps, authors-ignored-files)
6464 (authors-ambiguous-files, authors-renamed-files-alist):
6465 Add more entries.
6466
6467 2012-02-23 Juri Linkov <juri@jurta.org>
6468
6469 * isearch.el (isearch-occur): Sync interactive spec with occur's
6470 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
6471
6472 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
6473
6474 2012-02-22 Juri Linkov <juri@jurta.org>
6475
6476 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
6477 (ucs-insert): Doc fix. Check for hex digits in the string.
6478 Don't display `nil' in the error message. (Bug#10857)
6479
6480 2012-02-22 Alan Mackenzie <acm@muc.de>
6481
6482 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
6483
6484 2012-02-22 Glenn Morris <rgm@gnu.org>
6485
6486 * ffap.el (ffap-c-path):
6487 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
6488
6489 2012-02-22 Chong Yidong <cyd@gnu.org>
6490
6491 * custom.el (load-theme): Doc fix.
6492
6493 2012-02-22 Glenn Morris <rgm@gnu.org>
6494
6495 * dired-x.el (dired-guess-shell-alist-default):
6496 Remove escape sequences from nroff output. (Bug#172)
6497
6498 2012-02-21 Glenn Morris <rgm@gnu.org>
6499
6500 * vc/emerge.el (emerge-defvar-local):
6501 Set `permanent-local' property rather than unused `preserved'.
6502
6503 * textmodes/picture.el (picture-delete-char): New alias.
6504 (picture-mode-map): Use it. (Bug#10860)
6505 (picture-mode): Doc fix.
6506
6507 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
6508
6509 * newcomment.el (uncomment-region-default): Remove unused binding.
6510
6511 2012-02-21 Glenn Morris <rgm@gnu.org>
6512
6513 * textmodes/picture.el (picture-motion, picture-motion-reverse)
6514 (picture-self-insert, picture-tab-chars): Doc fix.
6515 (picture-mode-map): Fix C-a, C-e.
6516
6517 2012-02-20 Glenn Morris <rgm@gnu.org>
6518
6519 * emacs-lisp/authors.el (authors-aliases): Add another entry.
6520
6521 2012-02-20 Leo Liu <sdl.web@gmail.com>
6522
6523 * icomplete.el (icomplete-completions): Check FROM arg before
6524 passing to substring (Bug#10850).
6525
6526 2012-02-19 Chong Yidong <cyd@gnu.org>
6527
6528 * comint.el: Require ansi-color.
6529 (comint-output-filter-functions): Add ansi-color-process-output.
6530
6531 * ansi-color.el: Don't set comint-output-filter-functions; it is
6532 now in the initial value defined in comint.el.
6533 (ansi-color-apply-face-function): New variable.
6534 (ansi-color-apply-on-region): Use it.
6535 (ansi-color-apply-overlay-face): New function.
6536
6537 * shell.el (shell): No need to require ansi-color.
6538 (shell-mode): Use ansi-color-apply-face-function to highlight
6539 color escapes using font-lock-face property (Bug#10835).
6540
6541 2012-02-19 Chong Yidong <cyd@gnu.org>
6542
6543 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
6544 mode-line formats (Bug#10839).
6545
6546 2012-02-18 Glenn Morris <rgm@gnu.org>
6547
6548 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
6549
6550 * mail/undigest.el (unforward-rmail-message): Doc fix.
6551
6552 * saveplace.el (save-place-ignore-files-regexp): Add :version.
6553
6554 2012-02-18 Eli Zaretskii <eliz@gnu.org>
6555
6556 * international/characters.el (script-list): Sync with the latest
6557 Unicode Character Database.
6558
6559 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
6560
6561 * international/titdic-cnv.el: Remove duplicate coding tag.
6562 * language/cham.el: Likewise.
6563 * language/tai-viet.el: Likewise.
6564
6565 2012-02-18 Glenn Morris <rgm@gnu.org>
6566
6567 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
6568 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
6569 (calendar-bahai-all-holidays-flag, calendar-other-dates):
6570 * calendar/diary-lib.el (diary-abbreviated-year-flag):
6571 * calendar/holidays.el (holiday-bahai-holidays)
6572 (calendar-holidays, list-holidays):
6573 Use utf-8 Bahá'í in doc-strings, menus, etc.
6574
6575 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
6576
6577 * saveplace.el (save-place-ignore-files-regexp): New variable
6578 allowing for excluding files from saving their location of point.
6579 The default value matches the temporary commit message editing
6580 files from Git, SVN, Bazaar, and Mercurial.
6581 (save-place-to-alist): Use it.
6582
6583 2012-02-17 Lawrence Mitchell <wence@gmx.li>
6584 Stefan Monnier <monnier@iro.umontreal.ca>
6585
6586 * newcomment.el (uncomment-region-default): Don't leave extra space
6587 when an arg is provided (bug#8150).
6588
6589 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
6590
6591 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
6592
6593 2012-02-17 Glenn Morris <rgm@gnu.org>
6594
6595 * net/socks.el: Require network-stream. (Bug#10599)
6596
6597 2012-02-17 Kenichi Handa <handa@m17n.org>
6598
6599 * international/charprop.el:
6600 * international/uni-name.el:
6601 * international/uni-old-name.el:
6602 * international/uni-comment.el: Regenerate.
6603
6604 2012-02-16 Glenn Morris <rgm@gnu.org>
6605
6606 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
6607 Interactively in calendar buffer, give an error if not on a date.
6608
6609 2012-02-15 Glenn Morris <rgm@gnu.org>
6610
6611 * shell.el (shell-delimiter-argument-list):
6612 Revert 2011-02-17 change. (Bug#8027)
6613
6614 2012-02-15 Chong Yidong <cyd@gnu.org>
6615
6616 * minibuffer.el (completion-at-point-functions): Doc fix.
6617
6618 * custom.el (defcustom): Doc fix; note use of defvar.
6619
6620 2012-02-15 Glenn Morris <rgm@gnu.org>
6621
6622 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
6623 Doc fixes.
6624
6625 2012-02-14 Glenn Morris <rgm@gnu.org>
6626
6627 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
6628
6629 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
6630
6631 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
6632 way the ports list is computed.
6633 (smtpmail-query-smtp-server): Prompt the user for a port number if
6634 we can't connect to any of the standard ports (bug#10810).
6635
6636 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
6637
6638 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
6639
6640 2012-02-13 Glenn Morris <rgm@gnu.org>
6641
6642 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
6643
6644 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
6645
6646 * net/gnutls.el (gnutls-trustfiles): New variable.
6647 (gnutls-negotiate): Use it.
6648
6649 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
6650
6651 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
6652 does its stuff if Gnus is running.
6653
6654 2012-02-13 Alan Mackenzie <acm@muc.de>
6655
6656 Fix a loop in c-set-fl-decl-start.
6657
6658 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
6659 c-backward-syntactic-ws actually moves backwards.
6660
6661 2012-02-13 Leo Liu <sdl.web@gmail.com>
6662
6663 * net/rcirc.el (rcirc-markup-attributes): Move point to the
6664 beginning so that all \C-o chars are removed.
6665
6666 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
6667
6668 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
6669
6670 2012-02-12 Alan Mackenzie <acm@muc.de>
6671
6672 Fix infinite loop with long macros.
6673 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
6674
6675 2012-02-12 Chong Yidong <cyd@gnu.org>
6676
6677 * window.el (display-buffer): Doc fix (Bug#10785).
6678
6679 2012-02-12 Glenn Morris <rgm@gnu.org>
6680
6681 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
6682 (x-disown-selection-internal, x-get-selection-internal):
6683 Sync docs with the xselect.c versions.
6684
6685 * allout-widgets.el: Add missing license notice.
6686
6687 2012-02-11 Glenn Morris <rgm@gnu.org>
6688
6689 * select.el (x-get-selection-internal, x-own-selection-internal)
6690 (x-disown-selection-internal):
6691 * x-dnd.el (x-get-selection-internal): Update declarations.
6692
6693 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
6694
6695 * window.el (window-sides-slots):
6696 * tool-bar.el (tool-bar-position):
6697 * term/xterm.el (xterm-extra-capabilities):
6698 * ses.el (ses-self-reference-early-detection):
6699 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
6700 (verilog-auto-wire-type)
6701 (verilog-auto-delete-trailing-whitespace)
6702 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
6703 (verilog-auto-tieoff-declaration):
6704 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
6705 (sql-oracle-statement-starters, sql-oracle-scan-on):
6706 * progmodes/prolog.el (prolog-align-comments-flag)
6707 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
6708 (prolog-left-indent-regexp, prolog-paren-indent-p)
6709 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
6710 (prolog-types, prolog-mode-specificators)
6711 (prolog-determinism-specificators, prolog-directives)
6712 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
6713 (prolog-electric-dot-flag)
6714 (prolog-electric-dot-full-predicate-template)
6715 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
6716 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
6717 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
6718 (prolog-program-switches, prolog-prompt-regexp)
6719 (prolog-debug-on-string, prolog-debug-off-string)
6720 (prolog-trace-on-string, prolog-trace-off-string)
6721 (prolog-zip-on-string, prolog-zip-off-string)
6722 (prolog-use-standard-consult-compile-method-flag)
6723 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
6724 (prolog-imenu-max-lines, prolog-info-predicate-index)
6725 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
6726 (prolog-char-quote-workaround):
6727 * progmodes/cc-vars.el (c-defun-tactic):
6728 * net/tramp.el (tramp-encoding-command-interactive)
6729 (tramp-local-end-of-line):
6730 * net/soap-client.el (soap-client):
6731 * net/netrc.el (netrc-file):
6732 * net/gnutls.el (gnutls):
6733 * minibuffer.el (completion-category-overrides)
6734 (completion-cycle-threshold)
6735 (completion-pcm-complete-word-inserts-delimiters):
6736 * man.el (Man-name-local-regexp):
6737 * mail/feedmail.el (feedmail-display-full-frame):
6738 * international/characters.el (glyphless-char-display-control):
6739 * eshell/em-ls.el (eshell-ls-date-format):
6740 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
6741 (lisp-lambda-list-keyword-parameter-indentation)
6742 (lisp-lambda-list-keyword-parameter-alignment):
6743 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
6744 * dired-x.el (dired-omit-verbose):
6745 * cus-theme.el (custom-theme-allow-multiple-selections):
6746 * calc/calc.el (calc-highlight-selections-with-faces)
6747 (calc-lu-field-reference, calc-lu-power-reference)
6748 (calc-note-threshold):
6749 * battery.el (battery-mode-line-limit):
6750 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
6751 (archive-7z-update):
6752 * allout.el (allout-prefixed-keybindings)
6753 (allout-unprefixed-keybindings)
6754 (allout-inhibit-auto-fill-on-headline)
6755 (allout-flattened-numbering-abbreviation):
6756 * allout-widgets.el (allout-widgets-auto-activation)
6757 (allout-widgets-icons-dark-subdir)
6758 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
6759 (allout-widgets-theme-dark-background)
6760 (allout-widgets-theme-light-background)
6761 (allout-widgets-item-image-properties-emacs)
6762 (allout-widgets-item-image-properties-xemacs)
6763 (allout-widgets-run-unit-tests-on-load)
6764 (allout-widgets-time-decoration-activity)
6765 (allout-widgets-hook-error-post-time)
6766 (allout-widgets-track-decoration):
6767 Add missing :version tags to new defcustoms and defgroups.
6768
6769 * progmodes/sql.el (sql-ansi-statement-starters)
6770 (sql-oracle-statement-starters): Add custom type.
6771
6772 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
6773 (prolog-system-version): Give it a type.
6774
6775 2012-02-11 Eli Zaretskii <eliz@gnu.org>
6776
6777 * term/pc-win.el (x-select-text, x-selection-owner-p)
6778 (x-own-selection-internal, x-disown-selection-internal)
6779 (x-get-selection-internal): Sync doc strings and argument lists
6780 with xselect.c, common-win.el and x-win.el. (Bug#10783)
6781
6782 2012-02-11 Leo Liu <sdl.web@gmail.com>
6783
6784 * progmodes/python.el (python-end-of-statement): Fix infinite
6785 loop. (Bug#10788)
6786
6787 2012-02-10 Glenn Morris <rgm@gnu.org>
6788
6789 * international/mule-cmds.el (unify-8859-on-encoding-mode)
6790 (unify-8859-on-decoding-mode): Properly mark as obsolete.
6791
6792 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
6793
6794 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
6795 about SMTP before checking the From header.
6796
6797 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
6798 into own function for reuse by emacsbug.el.
6799
6800 2012-02-10 Leo Liu <sdl.web@gmail.com>
6801
6802 * subr.el (condition-case-unless-debug): Rename from
6803 condition-case-no-debug. All callers changed.
6804 (with-demoted-errors): Fix caller.
6805
6806 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
6807 * nxml/rng-valid.el (rng-do-some-validation):
6808 * emacs-lisp/package.el (package-refresh-contents)
6809 (package-menu-execute):
6810 * desktop.el (desktop-create-buffer):
6811 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
6812
6813 2012-02-10 Glenn Morris <rgm@gnu.org>
6814
6815 * textmodes/bibtex.el:
6816 Add missing :version tags for new/changed defcustoms.
6817
6818 * files.el (remote-file-name-inhibit-cache): Doc fixes.
6819
6820 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
6821
6822 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
6823 (smtpmail-via-smtp): Use it, or fall back on the From address.
6824 (smtpmail-send-it): Ditto.
6825
6826 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
6827
6828 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
6829 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
6830 (byte-compile-tmp-var): New const.
6831 (byte-compile-defvar): Use it to minimize .elc size.
6832 Just use `defvar' rather than simulate it (bug#10761).
6833
6834 2012-02-09 Glenn Morris <rgm@gnu.org>
6835
6836 * files.el (rename-uniquely): Doc fix. (Bug#3806)
6837
6838 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
6839 Add :version tags.
6840
6841 * progmodes/compile.el (compilation-error-screen-columns)
6842 (compilation-first-column, compilation-filter-start): Doc fixes.
6843
6844 * vc/log-view.el (log-view-toggle-entry-display):
6845 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
6846
6847 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
6848 (report-emacs-bug-can-use-xdg-email):
6849 (report-emacs-bug-insert-to-mailer): Doc fixes.
6850 (report-emacs-bug): Message fix.
6851
6852 * net/browse-url.el (browse-url-can-use-xdg-open)
6853 (browse-url-xdg-open): Doc fixes.
6854
6855 * electric.el (electric-indent-mode, electric-pair-mode)
6856 (electric-layout-rules, electric-layout-mode): Doc fixes.
6857 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
6858
6859 2012-02-08 Martin Rudalics <rudalics@gmx.at>
6860
6861 * server.el (server-unselect-display): Don't inadvertently kill
6862 the current buffer. (Bug#10729)
6863
6864 2012-02-08 Glenn Morris <rgm@gnu.org>
6865
6866 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
6867 (sql-list-table): Doc fixes.
6868
6869 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
6870 Comment out (does nothing).
6871
6872 * completion.el (dynamic-completion-mode):
6873 * dirtrack.el (dirtrack-debug-mode):
6874 * electric.el (electric-layout-mode):
6875 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
6876 * face-remap.el (text-scale-mode, buffer-face-mode):
6877 * iimage.el (iimage-mode):
6878 * image-mode.el (image-transform-mode):
6879 * minibuffer.el (completion-in-region-mode):
6880 * scroll-lock.el (scroll-lock-mode):
6881 * simple.el (next-error-follow-minor-mode):
6882 * tar-mode.el (tar-subfile-mode):
6883 * tooltip.el (tooltip-mode):
6884 * vcursor.el (vcursor-use-vcursor-map):
6885 * wid-browse.el (widget-minor-mode):
6886 * emulation/tpu-edt.el (tpu-edt-mode):
6887 * emulation/tpu-extras.el (tpu-cursor-free-mode):
6888 * international/iso-ascii.el (iso-ascii-mode):
6889 * language/thai-util.el (thai-word-mode):
6890 * mail/supercite.el (sc-minor-mode):
6891 * net/goto-addr.el (goto-address-mode):
6892 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
6893 * progmodes/cwarn.el (cwarn-mode):
6894 * progmodes/flymake.el (flymake-mode):
6895 * progmodes/glasses.el (glasses-mode):
6896 * progmodes/hideshow.el (hs-minor-mode):
6897 * progmodes/pascal.el (pascal-outline-mode):
6898 * textmodes/enriched.el (enriched-mode):
6899 * vc/smerge-mode.el (smerge-mode):
6900 Doc fixes (minor mode argument).
6901
6902 2012-02-07 Eli Zaretskii <eliz@gnu.org>
6903
6904 * ls-lisp.el (ls-lisp-sanitize): New function.
6905 (ls-lisp-insert-directory): Use it to fix or remove any elements
6906 in file-alist with missing attributes. (Bug#4673)
6907
6908 2012-02-07 Alan Mackenzie <acm@muc.de>
6909
6910 Fix spurious recognition of c-in-knr-argdecl.
6911
6912 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
6913 putative K&R region.
6914
6915 2012-02-07 Alan Mackenzie <acm@muc.de>
6916
6917 * progmodes/cc-engine.el (c-forward-objc-directive):
6918 Prevent looping in "#pragma mark @implementation".
6919
6920 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
6921
6922 * notifications.el (notifications-on-closed-signal): Make `reason'
6923 optional. (Bug#10744)
6924
6925 2012-02-07 Glenn Morris <rgm@gnu.org>
6926
6927 * emacs-lisp/easy-mmode.el (define-minor-mode):
6928 Doc fixes for the macro and the mode it defines.
6929
6930 * image.el (imagemagick-types-inhibit): Doc fix.
6931
6932 * cus-start.el (imagemagick-render-type): Add it.
6933
6934 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
6935
6936 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
6937 Set the default at load time, too, so that `font-lock-fontify-buffer'
6938 can be called without setting up the entire mode first. This fixes
6939 a bug in `mm-inline-text' with C MIME parts.
6940
6941 2012-02-06 Chong Yidong <cyd@gnu.org>
6942
6943 * simple.el (list-processes--refresh): Delete exited processes
6944 (Bug#8094).
6945
6946 * comint.el (comint-next-prompt): next-single-char-property-change
6947 and prev-single-char-property-change never return nil (Bug#8657).
6948
6949 * custom.el (defcustom): Doc fix (Bug#9711).
6950
6951 2012-02-05 Chong Yidong <cyd@gnu.org>
6952
6953 * cus-edit.el (custom-variable-reset-backup): Quote the value
6954 before storing it in the customized-value property (Bug#6712).
6955 (custom-display): Add a customization type tag.
6956 (custom-buffer-create-internal): Improve tooltip message.
6957
6958 * wid-edit.el (widget-field-value-get): New optional arg to
6959 suppress trailing whitespace truncation.
6960 (character): Use it (Bug#2689).
6961
6962 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
6963
6964 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
6965 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
6966
6967 2012-02-05 Chong Yidong <cyd@gnu.org>
6968
6969 * cus-edit.el (custom-variable-value-create): For mismatched
6970 types, show the current value (Bug#7600).
6971
6972 * custom.el (defcustom): Doc fix.
6973
6974 2012-02-05 Glenn Morris <rgm@gnu.org>
6975
6976 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
6977
6978 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
6979
6980 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
6981 (pp-buffer): Use `ignore-errors', `looking-at-p'.
6982 (pp-last-sexp): Use `looking-at-p'.
6983
6984 2012-02-04 Glenn Morris <rgm@gnu.org>
6985
6986 * files.el (revert-buffer):
6987 Doc fix (mention revert-buffer-in-progress-p).
6988
6989 * emacs-lisp/ert-x.el (ert-simulate-command):
6990 Check deferred-action-list (which is obsolete) is bound.
6991
6992 * subr.el (with-wrapper-hook): Doc fixes.
6993
6994 * simple.el (filter-buffer-substring-functions)
6995 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
6996
6997 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
6998
6999 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
7000 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
7001
7002 2012-02-04 Leo Liu <sdl.web@gmail.com>
7003
7004 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
7005
7006 2012-02-04 Glenn Morris <rgm@gnu.org>
7007
7008 * image.el (image-extension-data): Add obsolete alias.
7009
7010 * isearch.el (isearch-update): Doc fix.
7011
7012 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
7013
7014 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
7015
7016 2012-02-03 Glenn Morris <rgm@gnu.org>
7017
7018 * image.el (image-animated-p): Doc fix. Use image-animated-types.
7019 (image-animate-timeout): Doc fix.
7020
7021 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
7022
7023 2012-02-02 Glenn Morris <rgm@gnu.org>
7024
7025 * server.el (server-auth-dir): Doc fix.
7026 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
7027
7028 * subr.el (run-mode-hooks): Doc fix.
7029
7030 2012-02-02 Juri Linkov <juri@jurta.org>
7031
7032 * image-mode.el (image-toggle-display-image): Remove tautological
7033 `major-mode' from the `derived-mode-p' test.
7034
7035 2012-02-02 Kenichi Handa <handa@m17n.org>
7036
7037 * composite.el (compose-region): Cancel previous change.
7038
7039 2012-02-02 Kenichi Handa <handa@m17n.org>
7040
7041 * composite.el (compose-region, compose-string): Signal error for
7042 a null string component (Bug#6988).
7043
7044 2012-02-01 Chong Yidong <cyd@gnu.org>
7045
7046 * view.el (view-buffer-other-window, view-buffer-other-frame):
7047 Handle special modes like view-buffer (Bug#10650).
7048 (view-buffer): Simplify.
7049
7050 * frame.el (set-frame-font): Tweak meaning of third argument.
7051
7052 * dynamic-setting.el (font-setting-change-default-font):
7053 Use set-frame-font (Bug#9982).
7054
7055 2012-02-01 Glenn Morris <rgm@gnu.org>
7056
7057 * progmodes/compile.el (compilation-internal-error-properties):
7058 Respect compilation-first-column in the "*compilation*" buffer.
7059
7060 * emacs-lisp/easy-mmode.el (define-minor-mode):
7061 Relax :variable's test for a named function.
7062
7063 2012-01-31 Alan Mackenzie <acm@muc.de>
7064
7065 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
7066 off by one error.
7067
7068 2012-01-31 Chong Yidong <cyd@gnu.org>
7069
7070 * frame.el (set-frame-font): New arg ALL-FRAMES.
7071
7072 * menu-bar.el (menu-set-font): Use set-frame-font.
7073
7074 * faces.el (face-spec-reset-face): Don't apply unspecified
7075 attribute values to the default face.
7076
7077 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
7078
7079 * progmodes/cwarn.el (cwarn): Remove dead link.
7080 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
7081 Remove * from defcustom docstrings.
7082 (turn-on-cwarn-mode): Make obsolete.
7083 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
7084 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
7085
7086 2012-01-31 Glenn Morris <rgm@gnu.org>
7087
7088 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
7089 Fix :variable handling of mode a symbol not equal to modefun.
7090 Allow named functions to be used as the cdr of :variable.
7091
7092 2012-01-30 Glenn Morris <rgm@gnu.org>
7093
7094 * emacs-lisp/authors.el (authors-fixed-entries):
7095 Remove reference to deleted file rnewspost.el.
7096
7097 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
7098
7099 * window.el (window-with-parameter): Remove unused variable `windows'.
7100 (window--side-check): Remove unused variable `code'.
7101 (window--resize-siblings): Remove unused variable `first'.
7102 (adjust-window-trailing-edge): Remove unused variable `failed'.
7103 (window-deletable-p, window--delete): Remove unused variable `buffer'.
7104 Use `let', not `let*'.
7105 (balance-windows-2): Remove unused variable `found'.
7106 (window--state-put-2): Remove unused variable `splits'.
7107 (window-state-put): Remove unused variable `selected'.
7108 (same-window-p): Use `string-match-p'.
7109 (display-buffer-assq-regexp): Remove unused variable `value'.
7110 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7111 Mark argument ALIST as ignored.
7112 (pop-to-buffer): Remove unused variable `old-window'.
7113
7114 2012-01-29 Eli Zaretskii <eliz@gnu.org>
7115
7116 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
7117 and .lzma compressed files.
7118
7119 2012-01-29 Chong Yidong <cyd@gnu.org>
7120
7121 * frame.el (window-system-default-frame-alist): Doc fix.
7122
7123 * dynamic-setting.el (font-setting-change-default-font): Don't
7124 change the default face if SET-FONT argument is non-nil (Bug#9982).
7125
7126 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
7127
7128 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
7129
7130 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
7131
7132 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
7133 breakpoints in files outside current directory (Bug#6098).
7134
7135 2012-01-29 Chong Yidong <cyd@gnu.org>
7136
7137 * progmodes/python.el: Require ansi-color at top-level.
7138
7139 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
7140 Define and use in Emacs Lisp mode (Bug#9360).
7141 (lisp-mode-abbrev-table): Add doc.
7142 (lisp-mode-variables): Don't set local-abbrev-table.
7143 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
7144
7145 2012-01-28 Roland Winkler <winkler@gnu.org>
7146
7147 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
7148
7149 2012-01-28 Roland Winkler <winkler@gnu.org>
7150
7151 * textmodes/bibtex.el (bibtex-entry-alist): New function.
7152 (bibtex-set-dialect): Use it. Either set global values of
7153 dialect-dependent variables or bind these variables buffer-locally
7154 (Bug#10254).
7155 (bibtex-mode): Call bibtex-set-dialect via
7156 hack-local-variables-hook.
7157 (bibtex-dialect): Update docstring.
7158 Add safe-local-variable predicate.
7159 (bibtex-entry-alist, bibtex-field-alist): Initialize via
7160 bibtex-set-dialect.
7161 (bibtex-mode-map): Define menu for each dialect.
7162 (bibtex-entry): Fix docstring.
7163
7164 2012-01-28 Chong Yidong <cyd@gnu.org>
7165
7166 * eshell/esh-arg.el (eshell-quote-argument): New function.
7167
7168 * eshell/esh-ext.el (eshell-invoke-batch-file):
7169 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
7170 first arg to eshell-parse-command (Bug#10523).
7171
7172 2012-01-28 Drew Adams <drew.adams@oracle.com>
7173
7174 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
7175 `default-directory' is non-nil.
7176
7177 2012-01-28 Eli Zaretskii <eliz@gnu.org>
7178
7179 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
7180 line that displays system-configuration-options. (Bug#9924)
7181
7182 2012-01-28 Drew Adams <drew.adams@oracle.com>
7183
7184 * descr-text.el (describe-char): Show information about POS, in
7185 addition to information about the character at POS. Improve and
7186 update the doc string. Change "code point" to "code point in
7187 charset", to avoid confusion with the character's Unicode code
7188 point shown above that. (Bug#10129)
7189
7190 2012-01-28 Eli Zaretskii <eliz@gnu.org>
7191
7192 * descr-text.el (describe-char): Show the raw character, not only
7193 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
7194 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
7195 for the reasons.
7196
7197 2012-01-28 Phil Hagelberg <phil@hagelb.org>
7198
7199 * emacs-lisp/package.el (package-install):
7200 Run package-refresh-contents if there is no archive yet (Bug#9798).
7201
7202 2012-01-28 Chong Yidong <cyd@gnu.org>
7203
7204 * emacs-lisp/package.el (package-maybe-load-descriptor):
7205 New function, split from package-maybe-load-descriptor.
7206 (package-maybe-load-descriptor): Use it.
7207 (package-download-transaction): Fully load required packages
7208 inside the loop, so that `require' calls work (Bug#10593).
7209 (package-install): No need to call package-initialize now.
7210
7211 2012-01-28 Chong Yidong <cyd@gnu.org>
7212
7213 * simple.el (deactivate-mark): Doc fix (Bug#8614).
7214
7215 * tooltip.el (tooltip-mode): Doc fix.
7216 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
7217
7218 * frame.el (set-cursor-color): Doc fix (Bug#352).
7219
7220 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
7221 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
7222
7223 * cus-edit.el (custom-buffer-create-internal): Fix search button
7224 action (Bug#10542).
7225 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
7226
7227 2012-01-27 Eduard Wiebe <usenet@pusto.de>
7228
7229 * dired.el (dired-mark-files-regexp):
7230 Include any subdirectory components. (Bug#10445)
7231
7232 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
7233
7234 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
7235 Handle [host]:port syntax. (Bug#10533)
7236
7237 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
7238
7239 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
7240
7241 2012-01-26 Glenn Morris <rgm@gnu.org>
7242
7243 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
7244 * term.el (term-raw-escape-map): Use Control-X-prefix.
7245 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
7246
7247 2012-01-25 Martin Rudalics <rudalics@gmx.at>
7248
7249 * window.el (window-state-get, window--state-get-1): Don't deal
7250 with fixed-sizeness of windows. Simplify code.
7251
7252 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
7253
7254 * window.el (window--state-get-1, window--state-put-2):
7255 Don't save and restore the mark.
7256
7257 2012-01-25 Chong Yidong <cyd@gnu.org>
7258
7259 * custom.el (custom-variable-p): Doc fix.
7260
7261 2012-01-25 Glenn Morris <rgm@gnu.org>
7262
7263 * dired.el (dired-goto-file): Handle some of the more common
7264 characters that `ls -b' escapes. (Bug#10596)
7265
7266 * progmodes/compile.el (compilation-next-error-function):
7267 Respect compilation-first-column in the "*compilation*" buffer.
7268 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
7269
7270 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
7271
7272 2012-01-24 Glenn Morris <rgm@gnu.org>
7273
7274 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
7275
7276 2012-01-24 Julien Danjou <julien@danjou.info>
7277
7278 * color.el (color-rgb-to-hsl): Fix value computing.
7279 (color-hue-to-rgb): New function.
7280 (color-hsl-to-rgb): New function.
7281 (color-clamp, color-saturate-hsl, color-saturate-name)
7282 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
7283 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
7284
7285 2012-01-24 Glenn Morris <rgm@gnu.org>
7286
7287 * vc/vc-rcs.el (vc-rcs-create-tag):
7288 * vc/vc-sccs.el (vc-sccs-create-tag):
7289 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
7290
7291 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
7292
7293 * eshell/esh-util.el (eshell-read-hosts-file):
7294 Skip comment lines. (Bug#10549)
7295
7296 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
7297
7298 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
7299
7300 * subr.el (display-delayed-warnings): Doc fix.
7301 (collapse-delayed-warnings): New function to collapse identical
7302 adjacent warnings.
7303 (delayed-warnings-hook): Add it.
7304
7305 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
7306
7307 * net/tramp.el (tramp-action-login): Set connection property "login-as".
7308
7309 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
7310 (tramp-default-user-alist): Don't add "pscp".
7311 (tramp-do-copy-or-rename-file-out-of-band): Use connection
7312 property "login-as", if set. (Bug#10530)
7313
7314 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
7315
7316 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
7317 "plink1" and "psftp". (Bug#10530)
7318
7319 2012-01-21 Kenichi Handa <handa@m17n.org>
7320
7321 * international/mule-cmds.el (prefer-coding-system): Show a
7322 warning message if the default value of file-name-coding-system
7323 was not changed.
7324
7325 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
7326
7327 * windmove.el (windmove-reference-loc):
7328 Fix windmove-reference-loc miscalculation.
7329
7330 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
7331
7332 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
7333 default unit.
7334
7335 2012-01-21 Glenn Morris <rgm@gnu.org>
7336
7337 * international/mule.el (auto-coding-alist): Add .tbz.
7338
7339 * files.el (local-enable-local-variables): Doc fix.
7340 (inhibit-local-variables-regexps): Rename from
7341 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
7342 Doc fix. Add some extensions from auto-coding-alist.
7343 (inhibit-local-variables-suffixes):
7344 Rename from inhibit-first-line-modes-suffixes. Doc fix.
7345 (inhibit-local-variables-p):
7346 New function, extracted from set-auto-mode-1.
7347 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
7348 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
7349 (hack-local-variables): Doc fix. Make the mode-only case
7350 respect enable-local-variables and friends.
7351 Respect inhibit-local-variables-regexps for file-locals, but
7352 not for directory-locals.
7353 (set-visited-file-name):
7354 Take account of inhibit-local-variables-regexps.
7355 Whether it applies may change as the file name is changed.
7356 * jka-cmpr-hook.el (jka-compr-install):
7357 * jka-compr.el (jka-compr-uninstall):
7358 Update for inhibit-first-line-modes-suffixes name change.
7359
7360 2012-01-20 Martin Rudalics <rudalics@gmx.at>
7361
7362 * help-macro.el (make-help-screen): Temporarily restore original
7363 binding for minor-mode-map-alist (Bug#10454).
7364
7365 2012-01-19 Julien Danjou <julien@danjou.info>
7366
7367 * color.el (color-name-to-rgb): Use the white color to find the max
7368 color component value and return correctly computed values.
7369 (color-name-to-rgb): Add missing float conversion for max value.
7370
7371 2012-01-19 Martin Rudalics <rudalics@gmx.at>
7372
7373 * window.el (window--state-get-1, window-state-get): Do not use
7374 special state value for window-persistent-parameters.
7375 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
7376 (window--state-put-2): Reset all window parameters to nil before
7377 assigning values of persistent parameters.
7378
7379 2012-01-18 Alan Mackenzie <acm@muc.de>
7380
7381 Eliminate sluggishness and hangs in fontification of "semicolon
7382 deserts".
7383
7384 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
7385 Change value 10000 -> 3000.
7386 (c-state-safe-place): Reformulate so it doesn't stack up an
7387 infinite number of wrong entries in c-state-nonlit-pos-cache.
7388 (c-determine-limit-get-base, c-determine-limit): New functions to
7389 determine backward search limits disregarding literals.
7390 (c-find-decl-spots): Amend commenting.
7391 (c-cheap-inside-bracelist-p): New function which detects "={".
7392
7393 * progmodes/cc-fonts.el
7394 (c-make-font-lock-BO-decl-search-function): Give a limit to a
7395 backward search.
7396 (c-font-lock-declarations): Fix an occurrence of point being
7397 undefined. Check additionally for point being in a bracelist or
7398 near a macro invocation without a semicolon so as to avoid a
7399 fruitless time consuming search for a declarator. Give a more
7400 precise search limit for declarators using the new
7401 c-determine-limit.
7402
7403 2012-01-18 Glenn Morris <rgm@gnu.org>
7404
7405 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
7406 (set-auto-mode): Doc fixes.
7407
7408 2012-01-17 Glenn Morris <rgm@gnu.org>
7409
7410 * isearch.el (search-nonincremental-instead): Fix doc typo.
7411
7412 * dired.el (dired-insert-directory): Handle newlines in directory name.
7413 (dired-build-subdir-alist): Unescape newlines in directory name.
7414
7415 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
7416
7417 * net/tramp.el (tramp-local-end-of-line): New defcustom.
7418 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
7419 (tramp-action-terminal): Use it. (Bug#10530)
7420
7421 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
7422
7423 * minibuffer.el (completion--replace): Strip properties (bug#10062).
7424
7425 2012-01-16 Martin Rudalics <rudalics@gmx.at>
7426
7427 * window.el (window-state-ignored-parameters): Remove variable.
7428 (window--state-get-1): Rename argument MARKERS to IGNORE.
7429 Handle persistent window parameters. Make copy of clone-of
7430 parameter only if requested. (Bug#10348)
7431 (window--state-put-2): Install a window parameter only if it has
7432 a non-nil value or an existing parameter shall be overwritten.
7433
7434 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
7435
7436 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
7437
7438 2012-01-14 Eli Zaretskii <eliz@gnu.org>
7439
7440 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
7441 don't pass the (nil) value of `upnode' to string-match.
7442
7443 2012-01-14 Chong Yidong <cyd@gnu.org>
7444
7445 * startup.el (command-line): Fix X resource class for cursorColor.
7446 Fix values recognized by the cursorBlink resource.
7447
7448 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
7449
7450 * epg.el (epg--make-temp-file): Avoid permission race condition
7451 when running on old Emacs versions (bug#10403).
7452
7453 2012-01-14 Glenn Morris <rgm@gnu.org>
7454
7455 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
7456
7457 2012-01-13 Alan Mackenzie <acm@muc.de>
7458
7459 Fix filling for when filladapt mode is enabled.
7460
7461 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
7462 c-mask-paragraph, pass in `fill-paragraph' rather than
7463 `fill-region-as-paragraph'. (This is a reversion of a previous
7464 change.)
7465 * progmodes/cc-mode.el (c-basic-common-init):
7466 Make fill-paragraph-handle-comment buffer local and set it to nil.
7467
7468 2012-01-13 Glenn Morris <rgm@gnu.org>
7469
7470 * dired.el (dired-switches-escape-p): New function.
7471 (dired-insert-directory): Use dired-switches-escape-p.
7472 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
7473
7474 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
7475
7476 2012-01-12 Glenn Morris <rgm@gnu.org>
7477
7478 * mail/sendmail.el (mail-mode): Update paragraph-separate for
7479 changes in adaptive-fill-regexp. (Bug#10276)
7480
7481 2012-01-11 Alan Mackenzie <acm@muc.de>
7482
7483 Fix Emacs bug #10463 - put `widen's around the critical spots.
7484
7485 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
7486 widen around each invocation of c-state-pp-to-literal. Remove an
7487 unused let variable.
7488
7489 2012-01-11 Glenn Morris <rgm@gnu.org>
7490
7491 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
7492 Doc fix.
7493
7494 2012-01-10 Chong Yidong <cyd@gnu.org>
7495
7496 * net/network-stream.el (network-stream-open-starttls):
7497 Avoid emitting a confusing error message when the server gives a bad
7498 response to the capability command.
7499
7500 2012-01-10 Glenn Morris <rgm@gnu.org>
7501
7502 * mail/unrmail.el (unrmail): Tweak previous change.
7503
7504 2012-01-09 Chong Yidong <cyd@gnu.org>
7505
7506 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
7507
7508 2012-01-08 Alan Mackenzie <acm@muc.de>
7509
7510 Optimise font locking in long enum definitions.
7511
7512 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
7513 arm to a cond form to handle enums.
7514 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
7515 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
7516
7517 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
7518
7519 * files.el (move-file-to-trash): Preserve default file modes on error.
7520 (Bug#10401)
7521
7522 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
7523
7524 * faces.el (set-face-attribute): Clarify the meaning of the nil
7525 frame (bug#10294).
7526
7527 * subr.el (with-selected-frame): Mention that the selected frame
7528 is restored (bug#9980).
7529
7530 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
7531 (bug#9759).
7532
7533 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
7534 (password-read): Don't autoload unused function.
7535
7536 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
7537
7538 * progmodes/which-func.el (which-func-mode): Turn into a
7539 non-interactive function and mark as obsolete (bug#10428).
7540
7541 2012-01-06 Chong Yidong <cyd@gnu.org>
7542
7543 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
7544 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
7545 functions, along with 1 and -1.
7546
7547 2012-01-06 Eli Zaretskii <eliz@gnu.org>
7548
7549 * time.el (display-time-load-average)
7550 (display-time-default-load-average): Doc fixes. See the thread
7551 starting at
7552 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
7553 for the details.
7554
7555 2012-01-06 Glenn Morris <rgm@gnu.org>
7556
7557 * mail/unrmail.el (unrmail): Give an explicit error if the input file
7558 has no messages. (Bug#10377)
7559
7560 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
7561 than Info-edit. (Bug#10385)
7562
7563 * time.el (display-time-load-average, display-time-next-load-average):
7564 Doc fixes.
7565
7566 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
7567 local setting of buffer-read-only to the input buffer. (Bug#10419)
7568
7569 * calendar/calendar.el (calendar-mode):
7570 Locally set scroll-margin to 0. (Bug#10379)
7571
7572 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
7573
7574 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
7575
7576 2012-01-05 Glenn Morris <rgm@gnu.org>
7577
7578 * eshell/em-unix.el (diff-no-select): Autoload it.
7579 (eshell/diff): Use diff-no-select. (Bug#10420)
7580
7581 2012-01-05 Chong Yidong <cyd@gnu.org>
7582
7583 * shell.el (shell-dynamic-complete-functions): Revert last change.
7584 (shell-command-completion-function): New function.
7585 (shell-completion-vars): Use it to implement
7586 shell-completion-execonly (Bug#10417).
7587
7588 * custom.el (enable-theme): Don't set custom-safe-themes.
7589
7590 * cus-theme.el (custom-theme-merge-theme):
7591 Ignore custom-enabled-themes and custom-safe-themes.
7592
7593 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
7594
7595 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
7596 first prompt in `sql-interacive-mode'.
7597 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
7598 keywords.
7599 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
7600 (sql-product-interactive): Bug fix: Set `sql-buffer' in
7601 context of original buffer. Invoke `sql-login-hook'.
7602
7603 2012-01-04 Eli Zaretskii <eliz@gnu.org>
7604
7605 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
7606 letters in cite-prefix.
7607
7608 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
7609
7610 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
7611
7612 2012-01-03 Chong Yidong <cyd@gnu.org>
7613
7614 * shell.el (shell-dynamic-complete-functions):
7615 Put pcomplete-completions-at-point, so as to try
7616 comint-filename-completion first (Bug#10417).
7617
7618 2012-01-02 Richard Stallman <rms@gnu.org>
7619
7620 * battery.el (battery-status-function):
7621 Detect when to use battery-yeeloong-sysfs.
7622 (battery-echo-area-format): Add string for Yeeloong.
7623 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
7624 (battery-yeeloong-sysfs): New function.
7625
7626 2012-01-02 Chong Yidong <cyd@gnu.org>
7627
7628 * dirtrack.el (dirtrack-list): Eliminate unused third element.
7629 (dirtrack): Merge code for handling relative filenames in prompt
7630 from shell-dir-cookie-watcher.
7631 (dirtrack-debug-message): New arg to avoid excess format calls.
7632
7633 * shell.el (shell-dir-cookie-re): Variable deleted.
7634 (shell-dir-cookie-watcher): Function deleted.
7635 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
7636 with dirtrack-mode.
7637
7638 2012-01-01 Eli Zaretskii <eliz@gnu.org>
7639
7640 * term/w32-win.el (dynamic-library-alist) <gnutls>:
7641 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
7642 libgnutls-26.dll.
7643
7644 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
7645
7646 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
7647
7648 2011-12-31 Eli Zaretskii <eliz@gnu.org>
7649
7650 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
7651 headers of non-MIME messages, when rmail-enable-mime is non-nil.
7652
7653 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
7654
7655 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
7656 also for alternative shells.
7657 (tramp-open-connection-setup-interactive-shell): Check, whether
7658 the shell is a busybox.
7659 (tramp-send-command): Don't suppress multiple prompts for
7660 busyboxes, it hurts.
7661
7662 2011-12-28 Chong Yidong <cyd@gnu.org>
7663
7664 * progmodes/gdb-mi.el (gdb-get-source-file-list)
7665 (gdb-get-source-file): Move mode line update to
7666 gdb-get-source-file (Bug#10087).
7667
7668 2011-12-25 Chong Yidong <cyd@gnu.org>
7669
7670 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
7671 gud-gdb-marker-filter without taking it as an argument.
7672 (gud-gdb-run-command-fetch-lines): Caller changed.
7673 (gud-gdb-completion-function): New variable.
7674 (gud-gdb-completion-at-point): Use it.
7675 (gud-gdb-completions-1): Split from gud-gdb-completions.
7676
7677 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
7678 function as separate arguments.
7679 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
7680 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
7681 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
7682 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
7683 (gdb-stopped, def-gdb-auto-update-trigger)
7684 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
7685 (gdb-get-changed-registers, gdb-get-main-selected-frame):
7686 Callers changed.
7687 (gud-gdbmi-completions): New function.
7688 (gdb): Use it for generating the completion table.
7689
7690 2011-12-24 Alan Mackenzie <acm@muc.de>
7691
7692 Introduce a mechanism to widen the region used in context font
7693 locking. Use this to protect declarations from losing their contexts.
7694
7695 * progmodes/cc-langs.el (c-before-font-lock-functions):
7696 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
7697 (c-before-context-fontification-functions): New defvar, a list of
7698 functions to be run just before context (etc.) font locking.
7699
7700 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
7701 New, functionality extracted from
7702 c-neutralize-syntax-in-and-mark-CPP.
7703 (c-in-after-change-fontification): New variable.
7704 (c-after-change): Set c-in-after-change-fontification.
7705 (c-set-fl-decl-start): Rejig its interface, so it can be called
7706 from both after-change and context fontifying.
7707 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
7708 New functions.
7709 (c-standard-font-lock-fontify-region-function): New variable.
7710 (c-font-lock-fontify-region): New function.
7711
7712 2011-12-24 Juri Linkov <juri@jurta.org>
7713
7714 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
7715 (Bug#10348)
7716
7717 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
7718
7719 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
7720 existence of source file. (Bug#10325)
7721
7722 2011-12-23 Alan Mackenzie <acm@muc.de>
7723
7724 Fix unstable fontification inside templates.
7725
7726 * progmodes/cc-langs.el (c-before-font-lock-functions):
7727 Newly created from the singular version. The (c c++ objc) entry now
7728 additionally has c-set-fl-decl-start. The other languages (apart
7729 from AWK) have that as a single entry.
7730
7731 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
7732 The functionality for "local" declarations has been extracted to
7733 c-set-fl-decl-start.
7734
7735 * progmodes/cc-mode.el (c-common-init, c-after-change):
7736 Changes due to pluralisation of c-before-font-lock-functions.
7737 (c-set-fl-decl-start): New function, extracted from
7738 c-font-lock-enclosing-decls and enhanced.
7739
7740 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
7741
7742 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
7743
7744 2011-12-22 Juri Linkov <juri@jurta.org>
7745
7746 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
7747
7748 2011-12-22 Chong Yidong <cyd@gnu.org>
7749
7750 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
7751
7752 2011-12-21 Drew Adams <drew.adams@oracle.com>
7753
7754 * files.el (file-remote-p): Fix docstring. (Bug#10319)
7755
7756 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
7757
7758 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
7759
7760 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
7761
7762 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
7763 highlighting and support. Fix up comments for capitalization.
7764 (cfengine-mode-debug): New var.
7765 (cfengine3-mode): Change the modeline indicator to "CFE3".
7766 (cfengine3-font-lock-keywords): Improve defun highlighting.
7767 (cfengine2-actions): Rename from `cfengine-actions'.
7768 (cfengine2-font-lock-keywords): Rename from
7769 `cfengine-font-lock-keywords'.
7770 (cfengine2-imenu-expression): Rename from
7771 `cfengine-imenu-expression'.
7772 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
7773 (cfengine2-beginning-of-defun): Rename from
7774 `cfengine-beginning-of-defun'.
7775 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
7776 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
7777 (cfengine2-mode): Rename from `cfengine-mode'. Change the
7778 modeline indicator to "CFE2".
7779 (cfengine-mode): Defalias to `cfengine-auto-mode'.
7780 (cfengine-mode-abbrevs): Mark obsolete.
7781
7782 2011-12-21 Chong Yidong <cyd@gnu.org>
7783
7784 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
7785 filename argument.
7786
7787 2011-12-20 Martin Rudalics <rudalics@gmx.at>
7788
7789 * window.el (window-normalize-buffer-to-display): Remove.
7790 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
7791
7792 2011-12-19 Chong Yidong <cyd@gnu.org>
7793
7794 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
7795 Don't signal an error in a predicate function; return non-nil.
7796 (vc-dir-mark-file): Move the error here.
7797 (vc-dir-mark-unmark): If acting on the region, keep going if one
7798 of the entries cannot be marked/unmarked.
7799 (vc-dir-mark-all-files): If current entry is a directory, mark
7800 only child files, as documented.
7801
7802 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
7803
7804 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
7805 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
7806 addition.
7807
7808 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
7809
7810 * term/ns-win.el (ns-get-selection-internal)
7811 (ns-store-selection-internal): Declare.
7812 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
7813 Declare as obsolete.
7814 (ns-get-pasteboard, ns-paste-secondary):
7815 Use ns-get-selection-internal.
7816 (ns-set-pasteboard, ns-copy-including-secondary):
7817 Use ns-store-selection-internal.
7818
7819 2011-12-17 Chong Yidong <cyd@gnu.org>
7820
7821 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
7822 (vc-deduce-fileset): Doc fix.
7823
7824 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
7825
7826 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
7827
7828 2011-12-13 Sam Steingold <sds@gnu.org>
7829
7830 * man.el (Man-getpage-in-background): When running under a
7831 window-system, ignore $MANWIDTH and $COLUMNS.
7832
7833 2011-12-15 Kenichi Handa <handa@m17n.org>
7834
7835 * language/ethio-util.el: Change coding tag to utf-8-emacs.
7836 (setup-ethiopic-environment-internal): Comment out key-binding for
7837 ethio-toggle-punctuation.
7838
7839 2011-12-13 Alan Mackenzie <acm@muc.de>
7840
7841 Add the switch statement to AWK Mode.
7842
7843 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
7844 "default" to the keywords regexp.
7845
7846 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
7847 expression as the rest.
7848 (c-nonlabel-token-key): Allow string literals for AWK.
7849 Refactor for the other modes.
7850
7851 Large brace-block initialisation makes CC Mode slow: Fix.
7852 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
7853 routines. Limit backward searching in c-font-lock-enclosing.decl.
7854
7855 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
7856 pp-state and literal type in addition to the limits.
7857 (c-state-safe-place): New defun, extracted from c-state-literal-at.
7858 (c-state-literal-at): Use the above new defun.
7859 (c-slow-in-literal, c-fast-in-literal): Remove.
7860 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
7861
7862 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
7863 being in a literal. Add a limit for backward searching.
7864
7865 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
7866 c-slow-in-literal.
7867
7868 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
7869
7870 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
7871
7872 2011-12-13 Martin Rudalics <rudalics@gmx.at>
7873
7874 * window.el (delete-other-windows): Use correct frame in call to
7875 window-with-parameter.
7876
7877 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
7878
7879 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
7880 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
7881 (makefile-gmake-statements, makefile-makepp-statements):
7882 Use it and add new makepp keywords.
7883 (makefile-makepp-font-lock-keywords): Add new patterns.
7884 (makefile-match-function-end): Match new [...] and [[...]].
7885
7886 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
7887
7888 * ses.el (ses-call-printer-return, ses-cell-property-get)
7889 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
7890 (ses-create-cell-variable, ses-reset-header-string)
7891 (ses-cell-set-formula, ses-repair-cell-reference-all)
7892 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
7893 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
7894 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
7895 (ses-aset-with-undo, ses-load, ses-truncate-cell)
7896 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
7897 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
7898 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
7899 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
7900 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
7901 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
7902 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
7903 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
7904
7905 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
7906
7907 * ses.el: The overall change is to add cell renaming, that is
7908 setting fancy names for cell symbols other than name matching
7909 "\\`[A-Z]+[0-9]+\\'" regexp .
7910 (ses-create-cell-variable): New defun.
7911 (ses-relocate-formula): Relocate formulas only for cells the
7912 symbols of which are not renamed, i.e. symbols whose names do not
7913 match regexp "\\`[A-Z]+[0-9]+\\'".
7914 (ses-relocate-all): Relocate values only for cells the symbols of
7915 which are not renamed.
7916 (ses-load): Create cells variables as the (ses-cell ...) are read,
7917 in order to check row col consistency with cell symbol name only
7918 for cells that are not renamed.
7919 (ses-replace-name-in-formula): New defun.
7920 (ses-rename-cell): New defun.
7921
7922 2011-12-11 Chong Yidong <cyd@gnu.org>
7923
7924 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
7925 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
7926
7927 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
7928
7929 * window.el (other-window): Fix docstring.
7930
7931 2011-12-10 Eli Zaretskii <eliz@gnu.org>
7932
7933 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
7934 `from' or `to' address before taking its substring.
7935 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
7936 encoded name is chopped in the middle of the encoded string, and
7937 thus displayed encoded.
7938
7939 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
7940
7941 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
7942
7943 2011-12-10 Eli Zaretskii <eliz@gnu.org>
7944
7945 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
7946 to use texinfo-update-node and commands that call it if the
7947 Texinfo file uses @node lines without next/prev/up pointers.
7948 Correct outdated description about texinfo-master-menu.
7949 (texinfo-all-menus-update, texinfo-master-menu)
7950 (texinfo-update-node, texinfo-every-node-update)
7951 (texinfo-multiple-files-update): Doc fix. Warn against updating
7952 all the @node lines.
7953 (texinfo-master-menu): Only call texinfo-update-node if the prefix
7954 argument is numeric. Explain better in the doc string what the
7955 function really does.
7956 (texinfo-insert-master-menu-list): Improve the error message
7957 displayed if there's no menu in the Top node.
7958 (Bug#2975) See also this thread:
7959 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
7960
7961 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
7962
7963 * speedbar.el (speedbar-supported-extension-expressions):
7964 Add .adb and .ads, commonly used for Ada source code (bug#10256).
7965
7966 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
7967
7968 * printing.el (pr-mode-alist):
7969 * simple.el (filter-buffer-substring-functions)
7970 (completion-list-insert-choice-function):
7971 * window.el (window-with-parameter, window-atom-root)
7972 (window-sides-slots, window-size-fixed, window-min-delta)
7973 (window-max-delta, window--resize-mini-window)
7974 (window--resize-child-windows-normal, window-tree)
7975 (delete-other-windows, quit-window, split-window)
7976 (display-buffer-record-window, special-display-buffer-names)
7977 (special-display-regexps, special-display-popup-frame)
7978 (same-window-p, split-window-sensibly)
7979 (display-buffer-overriding-action, display-buffer-alist)
7980 (display-buffer-base-action, display-buffer, switch-to-buffer)
7981 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
7982 (fit-window-to-buffer, recenter-positions)
7983 (mouse-autoselect-window-state, mouse-autoselect-window-select):
7984 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
7985 and remove unneeded backslashes in docstrings.
7986
7987 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
7988
7989 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
7990
7991 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
7992 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
7993 end in ".mk".
7994 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
7995 when reading the makefile (bug#10116).
7996
7997 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
7998
7999 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
8000 (bug#10116).
8001
8002 2011-12-06 Glenn Morris <rgm@gnu.org>
8003
8004 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
8005
8006 2011-12-06 Chong Yidong <cyd@gnu.org>
8007
8008 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
8009
8010 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
8011
8012 * textmodes/table.el (table-shorten-cell): Fix typo.
8013
8014 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
8015
8016 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
8017
8018 2011-12-05 Eli Zaretskii <eliz@gnu.org>
8019
8020 * descr-text.el (describe-char): Fix display of strong
8021 right-to-left characters and directional embeddings and overrides.
8022
8023 * simple.el (what-cursor-position): Fix display of codepoints of
8024 strong right-to-left characters.
8025
8026 2011-12-05 Chong Yidong <cyd@gnu.org>
8027
8028 * faces.el (read-color): Doc fix.
8029
8030 2011-12-05 Glenn Morris <rgm@gnu.org>
8031
8032 * align.el (align--set-marker): Add doc-string.
8033 Don't try to move something that is not a marker. (Bug#10216)
8034
8035 2011-12-04 Glenn Morris <rgm@gnu.org>
8036
8037 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
8038 overly zealous deletion of trailing whitespace.
8039
8040 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
8041
8042 * server.el (server-delete-client): On Windows, do not try to delete
8043 the only terminal.
8044 (server-process-filter): On Windows, treat requests for a tty frame as
8045 if they were for a GUI frame if the running server is in GUI mode.
8046
8047 2011-12-03 Glenn Morris <rgm@gnu.org>
8048
8049 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
8050
8051 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
8052
8053 * electric.el: Streamline electric-indent's hook.
8054 (electric-indent-chars): Revert to simple list.
8055 (electric-indent-functions): New var.
8056 (electric-indent-post-self-insert-function): Use it.
8057
8058 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
8059 there's no inferior buffer (bug#10196).
8060 (prolog-consult-compile): Don't use toggle-read-only.
8061
8062 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
8063
8064 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
8065 interrupt. (Bug#10187)
8066
8067 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
8068
8069 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
8070 (bug#9160).
8071
8072 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
8073 (bug#10191).
8074
8075 2011-12-02 Juri Linkov <juri@jurta.org>
8076
8077 * info.el (Info-search): Display "end of manual" when Isearch
8078 reaches the end of single-file Info manual. (Bug#9918)
8079
8080 2011-12-02 Eli Zaretskii <eliz@gnu.org>
8081
8082 * isearch.el (isearch-message-prefix): Run the input method part
8083 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
8084
8085 2011-12-02 Juri Linkov <juri@jurta.org>
8086
8087 * isearch.el (isearch-occur): Use `word-search-regexp' for
8088 `isearch-word'.
8089 (isearch-search-and-update): Add condition for `isearch-word' and
8090 call `word-search-regexp'. (Bug#10145)
8091
8092 2011-12-01 Glenn Morris <rgm@gnu.org>
8093
8094 * eshell/em-hist.el (eshell-hist-initialize):
8095 Handle eshell-history-size nil and HISTSIZE set or unset.
8096 (eshell-history-file-name, eshell-history-size): Fix custom type.
8097
8098 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
8099
8100 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
8101
8102 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
8103
8104 * progmodes/verilog-mode.el (verilog-pretty-expr):
8105 Rework verilog-pretty-expr to handle new assignment operators in system
8106 verilog, such as += *= and the like.
8107 (verilog-assignment-operator-re): Regular expression to find the
8108 assigment operator in a verilog assignment.
8109 (verilog-assignment-operation-re): Regular expression to find an
8110 assignment statement for pretty-expr.
8111 (verilog-in-attribute-p): Query returns true if point is in an
8112 attribute context; used to skip these for expression line up from
8113 pretty-expr.
8114 (verilog-in-parameter-p): Query returns true if point is in an
8115 parameter definition context; used to skip these for expression
8116 line up from pretty-expr.
8117 (verilog-in-parenthesis-p): Query returns true if point is in a
8118 parenthetical expression, specifically ( ) but not [ ] or { };
8119 used by pretty-expr.
8120 (verilog-just-one-space): If there is no space, don't add one.
8121 (verilog-get-lineup-indent-2): Specifically skip just attribute
8122 contexts for expression lineup, rather than skipping all
8123 parenthetical expressions.
8124 (verilog-calculate-indent): Fix comment, and fix indent.
8125 (verilog-do-indent): Indent declarations in lists (suggested by
8126 Joachim Lechner).
8127 (verilog-mode-abbrev-table): Populate abbrev mode with the various
8128 skeleton items.
8129 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
8130 by Alain Mellan).
8131
8132 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
8133
8134 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
8135 parameters with embedded comments. Reported by Ray Stevens.
8136 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
8137 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
8138 Reported by Tim Holt.
8139 (verilog-auto): Fix AUTOing a upper module then AUTOing module
8140 instantiated by upper module causing wrong expansion until AUTOed a
8141 second time. Reported by K C Buckenmaier.
8142 (verilog-diff-auto): Fix showing .* as a difference when
8143 `verilog-auto-star-save' off. Reported by Dan Dever.
8144 (verilog-auto-reset, verilog-read-always-signals)
8145 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
8146 temporary signals in reset list if
8147 verilog-auto-reset-blocking-in-non is nil, and match assignment
8148 style to each signal's assignment type, bug381.
8149 Reported by Thomas Esposito.
8150 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
8151 (verilog-uvm-statement-re): Support UVM indentation and
8152 highlighting, with old OVM keywords only.
8153 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
8154 Support AUTOTIEOFF creating non-wire data types.
8155 Suggested by Jonathan Greenlaw.
8156 (verilog-auto-insert-lisp, verilog-delete-to-paren)
8157 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
8158 (verilog-inject-sense, verilog-read-inst-pins)
8159 (verilog-read-sub-decls, verilog-read-sub-decls-line):
8160 Fix mismatching parenthesis inside commented out code when deleting
8161 AUTOINST, bug383. Reported by Jonathan Greenlaw.
8162 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
8163 non-numeric vector width. Reported by Alex Reed.
8164 (verilog-auto-ascii-enum): Add "onehot" option to work around not
8165 detecting signals with parameter widths. Reported by Alex Reed.
8166 (verilog-auto-delete-trailing-whitespace):
8167 With `verilog-auto-delete-trailing-whitespace' remove trailing
8168 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
8169 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
8170 Fix verilog-scan-cache corruption when running user AUTO expansion
8171 hooks that call indentation routines.
8172 (verilog-simplify-range-expression): Fix typo ignoring lower case
8173 identifiers.
8174 (verilog-delete-auto): Fix delete-autos to also remove user created
8175 automatics, as long as they start with AUTO.
8176 (verilog-batch-diff-auto, verilog-diff-auto)
8177 (verilog-diff-function): Add `verilog-diff-auto' and bind to
8178 "C-c?" to report differences in AUTO expansion, ignoring spaces.
8179 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
8180 (verilog-in-paren-quick, verilog-re-search-backward-quick)
8181 (verilog-re-search-forward-quick, verilog-syntax-ppss):
8182 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
8183 is disabled and its cache will get corrupt, causing AUTOS not to
8184 expand. Instead use only -quick functions.
8185 (verilog-scan-region): Fix scanning over escaped quotes.
8186 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
8187 (verilog-re-search-backward-quick)
8188 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
8189 related functions now ignore strings, to fix misparsing of strings
8190 with magic comments embedded in them.
8191 (verilog-read-auto-template):
8192 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
8193 Reported by Brad Dobbie.
8194 (verilog-read-auto-template):
8195 Fix 'verilog-auto-inst-template-numbers' with comments.
8196 Reported by Brad Dobbie.
8197 (verilog-auto-inst, verilog-auto-inst-param)
8198 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
8199 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
8200 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
8201 debugging templates without merge conflicts, bug357.
8202 Reported by Brad Dobbie.
8203 (verilog-read-auto-template):
8204 Fix verilog-auto-inst-template-numbers with multiple templates.
8205 Reported by Brad Dobbie.
8206 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
8207 abbrevs so user won't be asked to save.
8208 (verilog-read-auto-lisp-present): Fix to start at beginning of
8209 buffer in case called outside of verilog-auto.
8210 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
8211 to "X-2". Reported by Matthew Myers.
8212 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
8213 all inputs from module templates. Reported by Leith Johnson.
8214 (verilog-module-inside-filename-p): Fix locating programs as with
8215 modules.
8216 (verilog-auto-inst-port): Fix vl-width expressions when using
8217 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
8218 (verilog-decls-get-regs, verilog-decls-get-signals,
8219 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
8220 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
8221 verilog-read-decls): Combine reg and wire structures into one var
8222 structure to represent SystemVerilog concepts.
8223 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
8224 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
8225 (verilog-auto-wire-type, verilog-insert-definition):
8226 Add verilog-auto-wire-type and AUTOLOGIC to support using
8227 SystemVerilog "logic" keyword instead of "wire"/"reg".
8228 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
8229 to declares outputs that also have assignments (presumably in an
8230 ifdef or generate if so there's not a driver conflict).
8231 Reported by Matthew Myers.
8232 (verilog-auto-declare-nettype, verilog-insert-definition):
8233 Add verilog-auto-declare-nettype to fix declarations using
8234 `default_nettype none. Reported by Julian Gorfajn.
8235 (verilog-read-always-signals-recurse, verilog-read-decls)
8236 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
8237 malformed end statement, bug325. Reported by Joshua Wise and
8238 Andrew Drake.
8239 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
8240 (verilog-inst-comment-re): Fix not deleting Interfaced comment
8241 when expanding .* in interfaces, bug320.
8242 Reported by Pierre-David Pfister.
8243 (verilog-read-module-name): Fix import statements between module
8244 name and open parenthesis, bug317.
8245 Reported by Pierre-David Pfister.
8246 (verilog-simplify-range-expression): Fix simplification of
8247 multiplications inside AUTOWIRE connections, bug303.
8248 (verilog-auto-inst-port): Support parameter expansion in
8249 multidimensional arrays.
8250 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
8251 after "assert property". Reported by Julian Gorfajn.
8252 (verilog-simplify-range-expression): Fix "couldn't merge" errors
8253 with multiplication, bug303.
8254 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
8255 Reported by Jan Frode Lonnum.
8256
8257 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
8258
8259 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
8260 (hfy-shell-file-name, hfy-shell):
8261 * international/fontset.el (x-decompose-font-name): Fix typos.
8262
8263 2011-11-29 Ken Brown <kbrown@cornell.edu>
8264
8265 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
8266 (gdb-version): Remove defvar.
8267 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
8268 (gdb-gud-context-command, gdb-non-stop-handler)
8269 (gdb-current-context-command, gdb-stopped): Use it.
8270 (gdb-init-1): Enable pretty printing here.
8271 (gdb-non-stop-handler): Don't enable pretty-printing here.
8272 Check to see if the target supports non-stop mode; if not, turn off
8273 non-stop mode. Use the following.
8274 (gdb-check-target-async): New defun.
8275 (gud-watch, gdb-stopped): Fix whitespace.
8276 (gdb-get-source-file): Don't try to display the source file if
8277 `gdb-main-file' is nil.
8278
8279 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
8280
8281 * align.el: Try to generate fewer markers (bug#10047).
8282 (align--set-marker): New macro.
8283 (align-region): Use it.
8284
8285 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
8286
8287 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
8288
8289 2011-11-29 Chong Yidong <cyd@gnu.org>
8290
8291 * indent.el (indent-for-tab-command, indent-according-to-mode):
8292 Doc fix.
8293 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
8294
8295 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
8296
8297 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
8298 aware of remote file names. (Bug#10124)
8299
8300 2011-11-29 Chong Yidong <cyd@gnu.org>
8301
8302 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
8303
8304 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
8305
8306 * files.el (find-file): Don't use force-same-window (bug#10144).
8307 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
8308 use pop-to-buffer if the selected window can't be used.
8309 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
8310
8311 2011-11-28 Eli Zaretskii <eliz@gnu.org>
8312
8313 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
8314 special-mode-map.
8315
8316 2011-11-28 Chong Yidong <cyd@gnu.org>
8317
8318 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
8319
8320 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
8321
8322 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
8323 gdb-get-source-file-list on gdb-create-source-file-list.
8324
8325 2011-11-26 Eli Zaretskii <eliz@gnu.org>
8326
8327 * whitespace.el (whitespace-newline): Use a different foreground
8328 color for 16-color light-background displays.
8329
8330 2011-11-24 Chong Yidong <cyd@gnu.org>
8331
8332 * window.el (display-buffer--special-action): Doc fix.
8333
8334 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
8335
8336 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
8337 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
8338 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
8339 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
8340 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
8341 (avl-tree-stack-first):
8342 * emacs-lisp/cconv.el (cconv--analyse-use):
8343 * net/gnutls.el (gnutls-negotiate): Fix typos.
8344
8345 2011-11-24 Glenn Morris <rgm@gnu.org>
8346
8347 * lpr.el (lpr-windows-system, lpr-lp-system):
8348 * mail/binhex.el (binhex-begin-line):
8349 * progmodes/grep.el (grep-history, grep-find-history):
8350 * textmodes/flyspell.el:
8351 * vc/pcvs-defs.el (cvs-global-menu):
8352 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
8353 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
8354 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
8355
8356 * net/tls.el: Fix case of "GnuTLS".
8357
8358 * paths.el (rmail-file-name): Format doc-string for make-docfile.
8359
8360 * version.el (emacs-build-system): Give it a doc-string.
8361
8362 2011-11-24 Juri Linkov <juri@jurta.org>
8363
8364 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
8365
8366 2011-11-24 Glenn Morris <rgm@gnu.org>
8367
8368 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
8369 if called on a non-mime message just toggle the headers. (Bug#8006)
8370
8371 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
8372
8373 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
8374 (allout-lead-with-comment-string, allout-structure-deleted-hook)
8375 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
8376 (allout-rebullet-heading, allout-open-sibtopic)
8377 (allout-toggle-current-subtree-encryption)
8378 (allout-toggle-subtree-encryption, allout-encrypt-string)
8379 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
8380 (allout-distinctive-bullets-string, allout-auto-activation):
8381 * window.el (window-normalize-buffer-to-display):
8382 * progmodes/verilog-mode.el (verilog-batch-indent):
8383 * textmodes/bibtex.el (bibtex-field-braces-opt)
8384 (bibtex-field-strings-opt):
8385 * vc/cvs-status.el (cvs-tree-merge):
8386 Fix typos.
8387
8388 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
8389
8390 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
8391 `non-essential' to t, in order to avoid remote connections.
8392
8393 2011-11-23 Eli Zaretskii <eliz@gnu.org>
8394
8395 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
8396 On MS-DOS and MS-Windows, compare with loaddefs.el
8397 case-insensitively.
8398
8399 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
8400
8401 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
8402
8403 2011-11-23 Glenn Morris <rgm@gnu.org>
8404
8405 * paths.el (rmail-file-name): Reformat the doc-string so that it
8406 is picked up.
8407
8408 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
8409 (rmail-auto-file): Ignore case in the "special" field names,
8410 as mail-fetch-field does for all others.
8411
8412 * mail/rmail.el (rmail-forward):
8413 * mail/rmailkwd.el (rmail-set-label):
8414 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
8415 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
8416
8417 * mail/rmail.el (rmail-current-message): Doc fix.
8418
8419 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
8420
8421 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
8422
8423 * server.el (server-eval-and-print): Allow C-g (bug#6585).
8424
8425 2011-11-22 Glenn Morris <rgm@gnu.org>
8426
8427 * mail/rmailmm.el (test-rmail-mime-handler)
8428 (test-rmail-mime-bulk-handler)
8429 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
8430
8431 2011-11-21 Juri Linkov <juri@jurta.org>
8432
8433 * calc/calc.el (calc-read-key-sequence):
8434 Let-bind `input-method-function' to nil. (Bug#10018)
8435
8436 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
8437
8438 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
8439 Tell the caller that the next line needs recomputation, even
8440 though it doesn't start a sexp (bug#10094).
8441
8442 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
8443
8444 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
8445
8446 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
8447
8448 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
8449 Use force-same-window.
8450
8451 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
8452
8453 * descr-text.el (describe-char-unicode-data):
8454 * json.el (json-string-escape):
8455 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
8456 (Footnote-unicode, Footnote-style-p):
8457 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
8458
8459 2011-11-20 Chong Yidong <cyd@gnu.org>
8460
8461 * window.el (replace-buffer-in-windows): Restore interactive spec.
8462
8463 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
8464
8465 * electric.el (electric-indent-mode): Fix last change (too optimistic).
8466
8467 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
8468 (byte-compile-global-not-obsolete-vars): New var.
8469 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
8470 Use it.
8471 (byte-compile-warn-obsolete): Align text with the one in *Help*.
8472
8473 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
8474
8475 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
8476 * progmodes/pascal.el (electric-pascal-equal):
8477 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
8478 * xml.el (xml-substitute-special): Fix typos.
8479
8480 2011-11-20 Glenn Morris <rgm@gnu.org>
8481
8482 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
8483 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
8484 Doc fixes.
8485 (rmail-decode-mime-charset): Mark as obsolete.
8486
8487 * mail/rmailsum.el (rmail-message-regexp-p-1):
8488 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
8489 Before using mime functions, check they are set. (Bug#10077)
8490
8491 2011-11-19 Juri Linkov <juri@jurta.org>
8492
8493 * info.el (Info-finder-find-node): Use `package--builtins' instead
8494 of `package-alist'. Use node names formed by the pattern "Keyword "
8495 and the keyword name.
8496
8497 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
8498
8499 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
8500
8501 2011-11-19 Juri Linkov <juri@jurta.org>
8502
8503 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
8504 that calls `revert-buffer' on all Info buffers. (Bug#9915)
8505 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
8506 `old-history', `old-history-forward'. Add let-binding
8507 `window-selected'. Remove calls to `kill-buffer',
8508 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
8509 before calling `Info-find-node', so `Info-find-node-2' will reread
8510 the Info file. Restore window positions only when `window-selected'
8511 is non-nil.
8512
8513 2011-11-19 Juri Linkov <juri@jurta.org>
8514
8515 * isearch.el (isearch-lazy-highlight-new-loop):
8516 Remove condition `(not isearch-error)'. (Bug#9918)
8517
8518 * misearch.el (multi-isearch-search-fun): Add condition
8519 `(not bound)' to ignore lazy-highlighting search.
8520 Add the search-failed message "end of multi" when the end of
8521 multi-sequence is reached. Uncapitalize the search-failed
8522 message "Repeat for next buffer".
8523
8524 * info.el (Info-search): Add the search-failed message
8525 "end of the manual" when the end of the manual is reached
8526 in Isearch mode.
8527
8528 2011-11-19 Juri Linkov <juri@jurta.org>
8529
8530 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
8531 Use non-destructive `remove' instead of `delete' because
8532 `Info-history-list' stored to `Info-isearch-initial-history-list' in
8533 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
8534
8535 2011-11-19 Juri Linkov <juri@jurta.org>
8536
8537 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
8538 to nil instead of binding `search-ring' and `regexp-search-ring'.
8539 (Bug#9185)
8540
8541 2011-11-19 Eli Zaretskii <eliz@gnu.org>
8542
8543 * simple.el (line-move): Force movement by logical lines for any
8544 hscrolled window, not only when auto-hscroll-mode is on.
8545 (line-move-visual): Update doc string to that effect. (Bug#10076)
8546
8547 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
8548
8549 * language/european.el (macintosh): Define as alias for mac-roman.
8550
8551 2011-11-19 Eli Zaretskii <eliz@gnu.org>
8552
8553 * mail/rmailmm.el (rmail-mime-display-header)
8554 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
8555 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
8556 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
8557 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
8558 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
8559 of a raw aref.
8560 (rmail-mime-entity-segment): To get past the tagline, move forward
8561 2 more lines, to account for the 2 empty lines that precede and
8562 follow the line with the buttons.
8563 (rmail-mime-update-tagline): Move one more line, to get past the
8564 empty line that follows the buttons in the tagline. (Bug#9520)
8565
8566 2011-11-19 Martin Rudalics <rudalics@gmx.at>
8567
8568 * window.el (window-max-delta-1, window-min-delta-1)
8569 (window-min-size-1, window-state-get-1, window-state-put-1)
8570 (window-state-put-2): Use "window--" prefix.
8571
8572 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
8573
8574 * emacs-lisp/smie.el: Improve warnings and conflict detection.
8575 (smie-warning-count): New var.
8576 (smie-set-prec2tab): Use it.
8577 (smie-bnf->prec2): Improve warnings. Add docstring.
8578 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
8579 (smie-bnf--set-class): New function.
8580 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
8581 corner case.
8582
8583 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
8584 (compilation-error-properties, compilation-move-to-column):
8585 Handle compilation-first-column while in the target buffer.
8586
8587 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
8588 Don't hardcode point-min==1.
8589
8590 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
8591 (eshell-rewrite-for-command): Remove workaround.
8592 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
8593 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
8594 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
8595
8596 * files-x.el (modify-file-local-variable): Obey commenting conventions.
8597
8598 2011-11-17 Glenn Morris <rgm@gnu.org>
8599
8600 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
8601 Ignore buffer-local generated-autoload-file if it is the same
8602 as the global value. (Bug#10049)
8603
8604 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
8605
8606 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
8607 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
8608 (reftex-toc-previous-heading, reftex-toc-max-level)
8609 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
8610 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
8611 (reftex-toc-do-promote, reftex-toc-promote-prepare)
8612 (reftex-toc-promote-action, reftex-toc-extract-section-number)
8613 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
8614 (reftex-toc-rename-label, reftex-toc-visit-location)
8615 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
8616 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
8617 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
8618 leaving "*toc*" only for references to the buffer.
8619
8620 2011-11-17 Martin Rudalics <rudalics@gmx.at>
8621
8622 * window.el (window-resize, delete-window, split-window):
8623 Replace window-splits by window-combination-resize.
8624 * cus-start.el (window-splits): Replace by window-combination-resize.
8625
8626 2011-11-17 Glenn Morris <rgm@gnu.org>
8627
8628 * progmodes/sh-script.el (sh-font-lock-keywords-var):
8629 Make bash entry derive from sh entry, not shell entry.
8630
8631 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
8632
8633 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
8634 local file name.
8635
8636 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
8637
8638 * menu-bar.el (menu-bar-file-menu):
8639 * printing.el (pr-ps-utility):
8640 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
8641 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
8642 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
8643 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
8644 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
8645 (icalendar--convert-cyclic-to-ical)
8646 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
8647 (icalendar--convert-ical-to-diary)
8648 (icalendar--convert-recurring-to-diary)
8649 (icalendar--convert-non-recurring-all-day-to-diary)
8650 (icalendar-import-format-sample):
8651 * progmodes/idlw-shell.el (idlwave-shell-mode):
8652 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
8653 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
8654 (vhdl-ps-print-init): Fix typos.
8655
8656 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
8657
8658 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
8659 FSF and collapse date sequence, obscure author/maintainer email address
8660 better, remove extra version line, track relocation of author's webpage.
8661
8662 * progmodes/python.el (python-pdbtrack-input-prompt)
8663 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
8664 regular python pdb prompts. Adjustments shamelessly taken exactly as
8665 suggested in EmacsWiki page (tiny change):
8666 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8667
8668 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
8669
8670 * expand.el (expand-pos, expand-index, expand-point):
8671 Remove redundant info from docstring.
8672 (expand-add-abbrevs): Doc fix.
8673 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
8674 (expand-sample-perl-mode-expand-list): Fix typos.
8675
8676 * net/dbus.el (dbus-event-member-name):
8677 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
8678 * term/pc-win.el (msdos-create-frame-with-faces):
8679 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
8680
8681 2011-11-16 Martin Rudalics <rudalics@gmx.at>
8682
8683 * window.el (split-window, window-state-get-1)
8684 (window-state-put-1, window-state-put-2): Rename occurrences of
8685 window-nest to window-combination-limit.
8686 * cus-start.el (window-nest): Rename to window-combination-limit.
8687
8688 2011-11-16 Chong Yidong <cyd@gnu.org>
8689
8690 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
8691 regexp (Bug#10033).
8692
8693 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
8694
8695 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
8696 `completing-read' will remove *Completions* and will preserve
8697 current-buffer for us.
8698 (tmm-add-prompt): Users of *Completions* will always (re)set its
8699 major mode.
8700 (tmm-old-comp-map): Remove.
8701
8702 2011-11-16 Glenn Morris <rgm@gnu.org>
8703
8704 * mail/rmailedit.el: Require rmailmm when compiling.
8705 (rmail-old-mime-state): New declaration.
8706 (rmail-edit-current-message): If editing a mime message,
8707 edit the "raw" message from the mbox buffer.
8708 (rmail-cease-edit): Handle mime messages. (Bug#9840)
8709
8710 2011-11-15 Glenn Morris <rgm@gnu.org>
8711
8712 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
8713 which wasn't being used. Add optional arg to force given state.
8714 (rmail-mime): Add optional arg to force given state.
8715
8716 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
8717
8718 * allout.el (allout-encryption-plaintext-sanitization-regexps):
8719 * frame.el (display-mm-dimensions-alist):
8720 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
8721 (outline-move-subtree-down):
8722 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
8723 (newsticker--treeview-do-get-node):
8724 * net/quickurl.el (quickurl-list-buffer-name):
8725 * progmodes/dcl-mode.el (dcl-mode):
8726 * progmodes/gdb-mi.el (gdb-mapcar*):
8727 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
8728
8729 2011-11-15 Glenn Morris <rgm@gnu.org>
8730
8731 * mail/rmail.el (rmail-file-coding-system): It's only ever used
8732 in a boolean sense, so just make it a boolean, and fix the doc.
8733 (rmail-show-mime-function, rmail-mime-feature)
8734 (rmail-require-mime-maybe): Doc fixes.
8735 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
8736
8737 * mail/rmailmm.el (rmail-show-mime): Doc fix.
8738
8739 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
8740
8741 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
8742 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
8743 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
8744 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
8745
8746 2011-11-15 Glenn Morris <rgm@gnu.org>
8747
8748 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
8749 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
8750 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
8751 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
8752 (rmail-mime, rmail-show-mime): Doc fixes.
8753
8754 * term/ns-win.el (mode-line-frame-identification):
8755 Leave it alone. (Bug#10051)
8756
8757 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
8758
8759 * mail/rmailout.el (rmail-output-to-rmail-buffer):
8760 Handle empty buffers. (Bug#9978)
8761
8762 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
8763
8764 * international/mule.el (define-charset):
8765 * mail/rmailmm.el (rmail-mime-find-header-encoding):
8766 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
8767 * progmodes/verilog-mode.el (verilog-backward-token):
8768 * textmodes/ispell.el (lookup-words):
8769 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
8770
8771 2011-11-14 Glenn Morris <rgm@gnu.org>
8772
8773 * progmodes/executable.el
8774 (executable-make-buffer-file-executable-if-script-p):
8775 Handle file-modes returning nil.
8776
8777 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
8778 message - not necessary, and causes problems. (Bug#9831)
8779
8780 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
8781
8782 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
8783
8784 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
8785 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
8786 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
8787
8788 2011-11-12 Martin Rudalics <rudalics@gmx.at>
8789
8790 * window.el (window-resize, delete-window): Use window-splits
8791 variable instead of function.
8792 (window-state-get-1, window-state-put-2, window-state-put):
8793 Don't deal with windows' splits status.
8794
8795 2011-11-12 Glenn Morris <rgm@gnu.org>
8796
8797 * apropos.el (apropos-do-all, apropos-library, apropos-value)
8798 (apropos-documentation): Doc fixes.
8799
8800 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
8801
8802 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
8803 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
8804
8805 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
8806
8807 * electric.el (electric-indent-post-self-insert-function): Make it
8808 possible for a char to only indent in some circumstances.
8809 (electric-indent-mode): Simplify.
8810
8811 2011-11-11 Martin Rudalics <rudalics@gmx.at>
8812
8813 * window.el (windows-with-parameter): Remove unused function.
8814 (windows-at-side): Rename to window-at-side-list.
8815 (window-check, window-atom-check, window-atom-check-1)
8816 (window-side-check, window-size-ignore, window-size-fixed-1)
8817 (window-in-direction-2): Prefix with "window--".
8818 (window-tree-1): Rename to window--subtree, fix doc-string.
8819
8820 2011-11-11 Glenn Morris <rgm@gnu.org>
8821
8822 * subr.el (eval-after-load): If FILE is already loaded,
8823 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
8824
8825 2011-11-10 Glenn Morris <rgm@gnu.org>
8826
8827 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
8828 Call svn via vc-svn-command rather than vc-do-command.
8829 (vc-svn-command): Add --non-interactive. (Bug#9993)
8830 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
8831
8832 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8833 Add toggle-read-only. (Bug#7292)
8834 * files.el (toggle-read-only): Mention that it should only
8835 be used interactively. (Bug#10006)
8836
8837 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
8838
8839 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8840 Adjust regexp for OCaml warnings.
8841
8842 * electric.el (electric-pair-post-self-insert-function): Let user
8843 turn it off buffer-locally (bug#9932).
8844
8845 * progmodes/python.el (python-beginning-of-statement):
8846 Rewrite (bug#2703).
8847
8848 * progmodes/compile.el: Better handle TABs (bug#9749).
8849 (compilation-internal-error-properties)
8850 (compilation-next-error-function): Obey the target buffer's
8851 compilation-error-screen-columns.
8852
8853 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
8854
8855 * progmodes/meta-mode.el: Remove obsolete comments.
8856 (meta-right-comment-regexp, meta-ignore-comment-regexp):
8857 Fix typos in docstrings.
8858
8859 2011-11-09 Martin Rudalics <rudalics@gmx.at>
8860
8861 * window.el (window-size-fixed-p): Rewrite doc-string.
8862 (window-resizable-p): Rename to window--resizable-p. Update callers.
8863 (window--resizable): New function. Make all callers of
8864 window-resizable call window--resizable instead.
8865 (window-resizable): Rewrite in terms of window--resizable.
8866
8867 2011-11-08 Glenn Morris <rgm@gnu.org>
8868
8869 * progmodes/delphi.el (delphi-mode-syntax-table):
8870 Let define-derived-mode define a proper syntax table. (Bug#9994)
8871
8872 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
8873
8874 * window.el: Stay away from defsubst.
8875 (window-list-no-nils): Remove.
8876 (window-state-get-1, window-state-get): Use backquote instead.
8877
8878 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8879
8880 * emacs-lisp/find-func.el (find-function-read):
8881 Fix incorrect use of default argument in `completing-read'.
8882
8883 2011-11-08 Martin Rudalics <rudalics@gmx.at>
8884
8885 * window.el (display-buffer-function, special-display-function):
8886 Mention display-buffer-record-window but do not mention
8887 help-setup parameter in doc-strings.
8888 (window-min-delta): Fix doc-string typo.
8889
8890 2011-11-08 Chong Yidong <cyd@gnu.org>
8891
8892 * window.el (window-total-height, window-total-width): Doc fix.
8893 (window-body-size): Move from C.
8894 (window-body-height, window-body-width): Move to C.
8895
8896 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
8897
8898 * window.el: Make special-display like display-buffer-alist (bug#9532).
8899 (display-buffer--special-action): New function, morphed
8900 from display-buffer--special.
8901 (display-buffer): Use it to handle special-display-buffers at higher
8902 priority (just after display-buffer-alist).
8903 (display-buffer-fallback-action, display-buffer--other-frame-action)
8904 (pop-to-buffer-same-window): Remove display-buffer--special.
8905
8906 2011-11-07 Glenn Morris <rgm@gnu.org>
8907
8908 * calendar/cal-menu.el (cal-menu-set-date-title):
8909 Do nothing if not in a calendar. (Bug#9976)
8910
8911 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
8912
8913 * files.el (find-file): Always use selected-window.
8914
8915 2011-11-07 Martin Rudalics <rudalics@gmx.at>
8916
8917 * window.el (window-combinations): Make WINDOW argument
8918 mandatory. Rewrite doc-string.
8919 (walk-window-subtree, window-atom-check, window-min-delta)
8920 (window-max-delta, window--resize-this-window)
8921 (window--resize-root-window-vertically, window-tree)
8922 (balance-windows, window-state-put): Rewrite doc-strings as to
8923 not mention the term "subwindow".
8924 (window--resize-subwindows-skip-p): Rename to
8925 window--resize-child-windows-skip-p.
8926 (window--resize-subwindows-normal): Rename to
8927 window--resize-child-windows-normal.
8928 (window--resize-subwindows): Rename to
8929 window--resize-child-windows.
8930 (window-or-subwindow-p): Rename to window--in-subtree-p.
8931
8932 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
8933
8934 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
8935 Ensure that mbox format messages end in two newlines (Bug#9974).
8936
8937 2011-11-06 Chong Yidong <cyd@gnu.org>
8938
8939 * window.el (window-combination-p): Function deleted; its
8940 side-effect is not used in any existing code.
8941 (window-combinations, window-combined-p): Call window-*-child
8942 directly.
8943
8944 2011-11-05 Chong Yidong <cyd@gnu.org>
8945
8946 * window.el (window-valid-p): Rename from window-any-p.
8947 (window-size-ignore, window-state-get): Callers changed.
8948 (window-normalize-window): Rename from window-normalize-any-window.
8949 New arg LIVE-ONLY, replacing window-normalize-live-window.
8950 (window-normalize-live-window): Delete.
8951 (window-combination-p, window-combined-p, window-combinations)
8952 (walk-window-subtree, window-atom-root, window-min-size)
8953 (window-sizable, window-sizable-p, window-size-fixed-p)
8954 (window-min-delta, window-max-delta, window-resizable)
8955 (window-resizable-p, window-full-height-p, window-full-width-p)
8956 (window-current-scroll-bars, window-point-1, set-window-point-1)
8957 (window-at-side-p, window-in-direction, window-resize)
8958 (adjust-window-trailing-edge, maximize-window, minimize-window)
8959 (window-deletable-p, delete-window, delete-other-windows)
8960 (record-window-buffer, unrecord-window-buffer)
8961 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
8962 (quit-window, split-window, window-state-put)
8963 (set-window-text-height, fit-window-to-buffer)
8964 (shrink-window-if-larger-than-buffer): Callers changed.
8965
8966 2011-11-04 Eli Zaretskii <eliz@gnu.org>
8967
8968 * mail/rmail.el (rmail-simplified-subject): Decode subject with
8969 rfc2047-decode-string.
8970 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
8971 warnings.
8972
8973 * window.el (window-body-height, window-body-width): Mention in
8974 the doc string that the return values are in frame's canonical
8975 units. (Bug#9949)
8976
8977 2011-11-03 Alan Mackenzie <acm@muc.de>
8978
8979 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
8980 change in cc-engine.el.
8981
8982 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
8983
8984 * window.el (switch-to-buffer): Use `force-same-window' interactively.
8985
8986 2011-11-02 Martin Rudalics <rudalics@gmx.at>
8987
8988 * window.el (quit-window): Call unrecord-window-buffer after
8989 showing another buffer in the window. (Bug#9937)
8990 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
8991
8992 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
8993
8994 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
8995 Accept status with more than 9 shelves. (Bug#9935)
8996 Reported by Colin D Bennett <colin@gibibit.com>.
8997
8998 2011-11-01 Martin Rudalics <rudalics@gmx.at>
8999
9000 * help.el (with-help-window): Don't reference
9001 temp-buffer-show-specifiers in doc-string.
9002
9003 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
9004
9005 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
9006 menu-item.
9007
9008 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9009
9010 * whitespace.el: New version 13.2.2.
9011 (whitespace-newline-mode): Disable properly. Reported by Sarah
9012 <EmacsWiki>.
9013
9014 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
9015
9016 * net/newst-treeview.el: Remove "Time-stamp".
9017 (newsticker--group-manage-orphan-feeds): Do not call
9018 newsticker--treeview-tree-update.
9019 (newsticker-treeview-update, newsticker-treeview):
9020 Call newsticker--treeview-tree-update if necessary.
9021
9022 2011-10-30 Martin Rudalics <rudalics@gmx.at>
9023
9024 * window.el (window-iso-combination-p, window-iso-combined-p)
9025 (window-iso-combinations): Remove "iso-" infix.
9026 Suggested by Chong Yidong.
9027 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
9028 (window-max-delta-1, window-resize, window--resize-siblings)
9029 (window--resize-this-window, adjust-window-trailing-edge)
9030 (split-window, balance-windows-1)
9031 (shrink-window-if-larger-than-buffer):
9032 * calendar/calendar.el (calendar-generate-window):
9033 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
9034
9035 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
9036
9037 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
9038 in place (bug#9907).
9039 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
9040 (eshell-rewrite-if-command, eshell-rewrite-for-command)
9041 (eshell-structure-basic-command, eshell-rewrite-while-command)
9042 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
9043 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
9044 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
9045 (eshell-do-pipelines-synchronously, eshell-eval-command):
9046 Use backquotes and prefer setq to set.
9047 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
9048 (eshell-macrop): Use functionp.
9049 (eshell-do-eval): Handle multiple expressions in `while' body.
9050
9051 2011-10-30 Chong Yidong <cyd@gnu.org>
9052
9053 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
9054 instead of set-mark (Bug#9810).
9055
9056 2011-10-30 Chong Yidong <cyd@gnu.org>
9057
9058 * window.el (split-window-below, split-window-right): Rename from
9059 split-window-above-each-other and split-window-side-by-side
9060 respectively. All callers changed.
9061 (split-window-sensibly, split-window-sensibly): Use them.
9062 (split-window-keep-point): Doc fix.
9063
9064 * isearch.el: Add isearch-scroll property to split-window-below
9065 and split-window-right.
9066
9067 * follow.el (follow-mode):
9068 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
9069 * progmodes/ada-xref.el (ada-gdb-application):
9070 * emulation/vip.el (vip-buffer-in-two-windows):
9071 * image-dired.el (image-dired-dired-with-window-configuration):
9072 * dired-x.el (dired-do-find-marked-files):
9073 * dired.el (dired-pop-to-buffer):
9074 * bs.el (bs--show-with-configuration):
9075 * vc/emerge.el (emerge-setup-windows):
9076 * textmodes/two-column.el (2C-two-columns):
9077 * textmodes/reftex-toc.el (reftex-toc):
9078 * progmodes/gdb-mi.el (gdb-setup-windows):
9079 * progmodes/fortran.el (fortran-window-create):
9080 * net/newst-treeview.el (newsticker--treeview-window-init):
9081 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
9082 * emulation/tpu-edt.el (tpu-gold-map):
9083 * emulation/crisp.el (crisp-mode-map):
9084 * calendar/calendar.el (calendar-basic-setup): Callers changed.
9085
9086 2011-10-29 Chong Yidong <cyd@gnu.org>
9087
9088 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
9089
9090 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
9091
9092 * textmodes/flyspell.el (flyspell-word): Fix char offset for
9093 forged Ispell output (Bug#7904).
9094
9095 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
9096
9097 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9098
9099 * doc-view.el: Avoid ugly errors about not finding nil.
9100 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
9101 (doc-view-dvipdf-program, doc-view-unoconv-program)
9102 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
9103 Avoid nil or absolute file name as default value.
9104 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
9105
9106 2011-10-28 Alan Mackenzie <acm@muc.de>
9107
9108 * progmodes/cc-defs.el (c-version): -> 5.32.2.
9109
9110 2011-10-28 Alan Mackenzie <acm@muc.de>
9111
9112 Amend the handling of c-beginning/end-of-defun in nested declaration
9113 scopes.
9114
9115 * progmodes/cc-vars.el (c-defun-tactic): Move here from
9116 cc-langs.el. Change it to a defcustom.
9117
9118 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
9119 cc-vars.el.
9120
9121 * progmodes/cc-engine.el (c-beginning-of-statement-1):
9122 Prevent "class foo : bar" being spuriously recognized as a label.
9123
9124 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
9125 Add parameter `inclusive' (to include enclosing braces in the region).
9126 (c-widen-to-enclosing-decl-scope): New function.
9127 (c-while-widening-to-decl-block): New macro.
9128 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
9129 outward for defun boundaries, and correspondingly change symbol
9130 `respect-enclosure' to `go-outward'.
9131 (c-declaration-limits): Change algorithm to report only the "innermost"
9132 defun's boundaries.
9133
9134 2011-10-28 Deniz Dogan <deniz@dogan.se>
9135
9136 * net/rcirc.el (rcirc-mode): Use hard newlines.
9137
9138 2011-10-28 Alan Mackenzie <acm@muc.de>
9139
9140 Amend to indent and fontify macros "which include their own semicolon"
9141 correctly, using the "virtual semicolon" mechanism.
9142
9143 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
9144
9145 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
9146 Recode to scan one line at a time rather than having \n and \r
9147 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
9148 (c-forward-label): Amend for virtual semicolons.
9149 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
9150
9151 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
9152 of the new C macros.
9153
9154 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
9155 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
9156 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
9157 (c-opt-cpp-macro-define): Make into a full language variable.
9158 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
9159 AWK Mode (including \n, \r) removed, no longer needed.
9160
9161 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
9162 Invoke c-make-macro-with-semi-re.
9163
9164 * progmodes/cc-vars.el (c-macro-with-semi-re):
9165 (c-macro-names-with-semicolon): New variables.
9166 (c-make-macro-with-semi-re): New function.
9167
9168 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9169
9170 * vc/log-edit.el: Fill empty field rather than adding new one.
9171 (log-edit-add-field): New function.
9172 (log-edit-insert-changelog): Use it.
9173
9174 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
9175
9176 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
9177
9178 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9179
9180 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
9181 (gdb--check-interpreter): New function.
9182 (gdb): Use it.
9183
9184 2011-10-27 Glenn Morris <rgm@gnu.org>
9185
9186 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
9187 (least-positive-float, least-negative-float)
9188 (least-positive-normalized-float, least-negative-normalized-float)
9189 (float-epsilon, float-negative-epsilon):
9190 Remove unnecessary declarations.
9191
9192 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
9193 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
9194 (least-positive-float, least-negative-float)
9195 (least-positive-normalized-float, least-negative-normalized-float)
9196 (float-epsilon, float-negative-epsilon): Add doc-strings,
9197 based on those in cl.texi.
9198
9199 * files.el (set-visited-file-name): If the major-mode changed,
9200 reload the local variables. (Bug#9796)
9201
9202 2011-10-27 Chong Yidong <cyd@gnu.org>
9203
9204 * subr.el (change-major-mode-after-body-hook): New hook.
9205 (run-mode-hooks): Run it.
9206
9207 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9208 Use change-major-mode-before-body-hook.
9209
9210 * simple.el (fundamental-mode):
9211 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
9212 change introducing fundamental-mode-hook.
9213
9214 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
9215
9216 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
9217
9218 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
9219
9220 * ido.el (ido-file-name-all-completions-1): Do not require
9221 tramp.el explicitly. (Bug#7583)
9222
9223 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
9224
9225 * progmodes/octave-mod.el:
9226 * progmodes/octave-inf.el: Update maintainer.
9227
9228 2011-10-26 Chong Yidong <cyd@gnu.org>
9229
9230 * subr.el (with-wrapper-hook): Rewrite doc.
9231
9232 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
9233
9234 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
9235 filenames "/method:foo:". (Bug#9793)
9236
9237 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
9238
9239 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
9240 (bug#9865).
9241
9242 2011-10-24 Glenn Morris <rgm@gnu.org>
9243
9244 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
9245
9246 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
9247
9248 * notifications.el: Add the requirement of a running D-Bus session
9249 bus to the Commentary.
9250
9251 2011-10-24 Juri Linkov <juri@jurta.org>
9252
9253 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
9254 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
9255 (Bug#9364)
9256
9257 2011-10-24 Juri Linkov <juri@jurta.org>
9258
9259 * info.el (Info-following-node-name-re): Add newline to the list
9260 of allowed characters for leading space. (Bug#9824)
9261
9262 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
9263
9264 * progmodes/octave-inf.el (inferior-octave-mode-map):
9265 Fix C-c C-h binding.
9266 * progmodes/octave-mod.el (octave-help): Remove.
9267
9268 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
9269
9270 Sync with Tramp 2.2.3.
9271
9272 * net/tramp-cache.el (top): Pacify byte-compiler using
9273 `init-file-user' and `site-run-file'.
9274
9275 * net/trampver.el: Update release number.
9276
9277 2011-10-23 Chong Yidong <cyd@gnu.org>
9278
9279 * files.el (toggle-read-only): Remove obsolete comment about
9280 version control.
9281
9282 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
9283 for toggle-read-only. Note that this hasn't called vc-next-action
9284 since 2008-05-02, though it wasn't documented at the time.
9285
9286 * vc/ediff-init.el (ediff-toggle-read-only-function):
9287 Use toggle-read-only.
9288
9289 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
9290
9291 Fix bug #9560, sporadic wrong indentation; improve instrumentation
9292 of c-parse-state.
9293
9294 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
9295 correct faulty logical expression.
9296 (c-parse-state-state, c-record-parse-state-state):
9297 (c-replay-parse-state-state): New defvar/defuns.
9298 (c-debug-parse-state): Use new functions.
9299
9300 2011-10-22 Martin Rudalics <rudalics@gmx.at>
9301
9302 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
9303 last fix. Use window-in-direction correctly.
9304
9305 2011-10-21 Chong Yidong <cyd@gnu.org>
9306
9307 * progmodes/idlwave.el (idlwave-mode):
9308 * progmodes/vera-mode.el (vera-mode): No need to set
9309 require-final-newline; that's done in prog-mode.
9310 Suggested by Stefan Monnier.
9311
9312 2011-10-21 Martin Rudalics <rudalics@gmx.at>
9313
9314 * mouse.el (mouse-drag-window-above)
9315 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
9316 (mouse-drag-mode-line-1, mouse-drag-header-line)
9317 (mouse-drag-vertical-line-rightward-window): Remove.
9318 (mouse-drag-line): New function.
9319 (mouse-drag-mode-line, mouse-drag-header-line)
9320 (mouse-drag-vertical-line): Call mouse-drag-line.
9321 * window.el (window-at-side-p, windows-at-side): New functions.
9322
9323 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
9324
9325 * tar-mode.el (tar-grind-file-mode):
9326 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
9327
9328 2011-10-21 Chong Yidong <cyd@gnu.org>
9329
9330 * progmodes/idlwave.el (idlwave-mode):
9331 * progmodes/vera-mode.el (vera-mode):
9332 Use mode-require-final-newline.
9333
9334 2011-10-20 Glenn Morris <rgm@gnu.org>
9335
9336 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
9337
9338 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
9339
9340 * emulation/cua-base.el (cua-set-mark): Fix case of string.
9341
9342 2011-10-20 Chong Yidong <cyd@gnu.org>
9343
9344 * emulation/cua-base.el (cua-mode):
9345 * mail/footnote.el (footnote-mode):
9346 * mail/mailabbrev.el (mail-abbrevs-mode):
9347 * net/xesam.el (xesam-minor-mode):
9348 * progmodes/bug-reference.el (bug-reference-mode):
9349 * progmodes/cap-words.el (capitalized-words-mode):
9350 * progmodes/compile.el (compilation-minor-mode)
9351 (compilation-shell-minor-mode):
9352 * progmodes/gud.el (gud-tooltip-mode):
9353 * progmodes/hideif.el (hide-ifdef-mode):
9354 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
9355 * progmodes/subword.el (subword-mode):
9356 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
9357 * progmodes/which-func.el (which-function-mode):
9358 * term/tvi970.el (tvi970-set-keypad-mode):
9359 * term/vt100.el (vt100-wide-mode):
9360 * textmodes/flyspell.el (flyspell-mode):
9361 * textmodes/ispell.el (ispell-minor-mode):
9362 * textmodes/nroff-mode.el (nroff-electric-mode):
9363 * textmodes/paragraphs.el (use-hard-newlines):
9364 * textmodes/refill.el (refill-mode):
9365 * textmodes/reftex.el (reftex-mode):
9366 * textmodes/rst.el (rst-minor-mode):
9367 * textmodes/sgml-mode.el (html-autoview-mode)
9368 (sgml-electric-tag-pair-mode):
9369 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
9370 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
9371 * emulation/crisp.el (crisp-mode):
9372 * emacs-lisp/eldoc.el (eldoc-mode):
9373 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
9374 minor mode behavior.
9375
9376 2011-10-19 Juri Linkov <juri@jurta.org>
9377
9378 * descr-text.el (describe-char): Add #x2010 and #x2011 to
9379 the list of hard-coded chars with escape-glyph face.
9380
9381 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
9382
9383 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
9384
9385 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
9386
9387 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
9388 running process.
9389
9390 2011-10-19 Glenn Morris <rgm@gnu.org>
9391
9392 * vc/vc-bzr.el (vc-bzr-after-dir-status):
9393 Ignore ignored files. (Bug#9726)
9394
9395 2011-10-19 Chong Yidong <cyd@gnu.org>
9396
9397 Doc fix for minor modes, stating that an omitted argument enables
9398 the mode unconditionally when called from Lisp.
9399
9400 * abbrev.el (abbrev-mode):
9401 * allout.el (allout-mode):
9402 * autoinsert.el (auto-insert-mode):
9403 * autoarg.el (autoarg-mode, autoarg-kp-mode):
9404 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
9405 (global-auto-revert-mode):
9406 * battery.el (display-battery-mode):
9407 * composite.el (global-auto-composition-mode)
9408 (auto-composition-mode):
9409 * delsel.el (delete-selection-mode):
9410 * desktop.el (desktop-save-mode):
9411 * dired-x.el (dired-omit-mode):
9412 * dirtrack.el (dirtrack-mode):
9413 * doc-view.el (doc-view-minor-mode):
9414 * double.el (double-mode):
9415 * electric.el (electric-indent-mode, electric-pair-mode):
9416 * emacs-lock.el (emacs-lock-mode):
9417 * epa-hook.el (auto-encryption-mode):
9418 * follow.el (follow-mode):
9419 * font-core.el (font-lock-mode):
9420 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
9421 * help.el (temp-buffer-resize-mode):
9422 * hilit-chg.el (highlight-changes-mode)
9423 (highlight-changes-visible-mode):
9424 * hi-lock.el (hi-lock-mode):
9425 * hl-line.el (hl-line-mode, global-hl-line-mode):
9426 * icomplete.el (icomplete-mode):
9427 * ido.el (ido-everywhere):
9428 * image-file.el (auto-image-file-mode):
9429 * image-mode.el (image-minor-mode):
9430 * iswitchb.el (iswitchb-mode):
9431 * jka-cmpr-hook.el (auto-compression-mode):
9432 * linum.el (linum-mode):
9433 * longlines.el (longlines-mode):
9434 * master.el (master-mode):
9435 * mb-depth.el (minibuffer-depth-indicate-mode):
9436 * menu-bar.el (menu-bar-mode):
9437 * minibuf-eldef.el (minibuffer-electric-default-mode):
9438 * mouse-sel.el (mouse-sel-mode):
9439 * msb.el (msb-mode):
9440 * mwheel.el (mouse-wheel-mode):
9441 * outline.el (outline-minor-mode):
9442 * paren.el (show-paren-mode):
9443 * recentf.el (recentf-mode):
9444 * reveal.el (reveal-mode, global-reveal-mode):
9445 * rfn-eshadow.el (file-name-shadow-mode):
9446 * ruler-mode.el (ruler-mode):
9447 * savehist.el (savehist-mode):
9448 * scroll-all.el (scroll-all-mode):
9449 * scroll-bar.el (scroll-bar-mode):
9450 * server.el (server-mode):
9451 * shell.el (shell-dirtrack-mode):
9452 * simple.el (auto-fill-mode, transient-mark-mode)
9453 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
9454 (line-number-mode, column-number-mode, size-indication-mode)
9455 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
9456 * strokes.el (strokes-mode):
9457 * time.el (display-time-mode):
9458 * t-mouse.el (gpm-mouse-mode):
9459 * tool-bar.el (tool-bar-mode):
9460 * tooltip.el (tooltip-mode):
9461 * type-break.el (type-break-mode-line-message-mode)
9462 (type-break-query-mode):
9463 * view.el (view-mode):
9464 * whitespace.el (whitespace-mode, whitespace-newline-mode)
9465 (global-whitespace-mode, global-whitespace-newline-mode):
9466 * xt-mouse.el (xterm-mouse-mode): Doc fix.
9467
9468 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9469 Fix autogenerated docstring.
9470
9471 2011-10-19 Juri Linkov <juri@jurta.org>
9472
9473 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
9474 by checking environment variables "DESKTOP_SESSION" and
9475 "XDG_CURRENT_DESKTOP". (Bug#9779)
9476
9477 2011-10-19 Juri Linkov <juri@jurta.org>
9478
9479 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
9480 (browse-url-chromium-program, browse-url-chromium-arguments):
9481 New defcustoms.
9482 (browse-url-default-browser): Check for `browse-url-chromium' and
9483 call `browse-url-chromium-program'.
9484 (browse-url-chromium): New command. (Bug#9779)
9485
9486 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
9487
9488 * facemenu.el (list-colors-duplicates): On Windows, detect more
9489 duplicates by assuming that only colors matching "^System" are
9490 special "system colors". (Bug#9722)
9491
9492 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
9493
9494 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
9495 to distinguish the author from the committer.
9496
9497 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
9498
9499 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
9500
9501 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
9502
9503 * international/mule.el (sgml-html-meta-auto-coding-function):
9504 Add support for detecting encoding in HTML5 specified only as
9505 <meta charset="UTF-8">. Implementation just makes http-equiv and
9506 content-type parts from HTML4 encoding string optional. (Bug#9716)
9507
9508 2011-10-18 Glenn Morris <rgm@gnu.org>
9509
9510 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
9511
9512 2011-10-18 Chong Yidong <cyd@gnu.org>
9513
9514 * faces.el (cursor): Doc fix.
9515
9516 2011-10-17 Chong Yidong <cyd@gnu.org>
9517
9518 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
9519
9520 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
9521
9522 * dirtrack.el (dirtrack): Support shell buffers with path
9523 prefixes, e.g. tramp-based remote shells. (Bug#9647)
9524
9525 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
9526
9527 * json.el: Bump version to 1.3 and note change in History.
9528 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
9529
9530 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
9531
9532 * comint.el (comint-insert-input, comint-send-input)
9533 (comint-get-old-input-default, comint-backward-matching-input)
9534 (comint-next-prompt): Use nil instead of `input' for field property of
9535 past user input (bug#114).
9536
9537 * minibuffer.el (completion--replace): Inherit surrounding properties
9538 (bug#114).
9539 (minibuffer-complete-and-exit): Use it.
9540
9541 * comint.el (comint--table-subvert): Quote the all-completions output
9542 (bug#9160).
9543
9544 2011-10-17 Martin Rudalics <rudalics@gmx.at>
9545
9546 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
9547
9548 * menu-bar.el (menu-bar-file-menu): Add entry for making new
9549 window on right of selected. (Bug#9350) Reword other window
9550 entries and separate them from frame entries.
9551
9552 2011-10-15 Glenn Morris <rgm@gnu.org>
9553
9554 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
9555 Doc fixes.
9556
9557 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
9558
9559 * net/network-stream.el (network-stream-open-starttls):
9560 Improve detection of failure due to lack of TLS support.
9561
9562 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
9563 putting the input text in front and in bold.
9564
9565 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
9566
9567 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
9568
9569 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
9570 empty buffer.
9571
9572 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
9573 unread-command-events rather than pushing yet-another event.
9574
9575 2011-10-14 Eli Zaretskii <eliz@gnu.org>
9576
9577 * mail/sendmail.el (sendmail-query-once): Improve the wording of
9578 the explanation of the possible choices. Make the options passed
9579 to completing-read shorter.
9580
9581 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9582
9583 * textmodes/flyspell.el (flyspell-large-region): Make sure
9584 extended character mode is used if defined (Bug#1339).
9585
9586 2011-10-13 Eli Zaretskii <eliz@gnu.org>
9587
9588 * simple.el (what-cursor-position): Fix the display of the
9589 character info for LRE, LRO, RLE, and RLO characters by appending
9590 an invisible PDF.
9591
9592 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
9593
9594 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
9595 even in case of error; add debug spec; simplify data flow.
9596 (with-timeout-handler): Remove.
9597
9598 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
9599
9600 Fix Bug#6019, Bug#9315.
9601
9602 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
9603 complete `buffer-file-name', the local file name part could look
9604 remotely (for example on VMS).
9605
9606 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
9607 `tramp-run-real-handler'.
9608 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
9609 already quoted by '"'.
9610
9611 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
9612 Let `file-name-handler-alist' be nil, the local file name part
9613 could look remotely (for example on VMS).
9614
9615 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
9616
9617 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
9618 from here...
9619 (flyspell-post-command-hook): ...to here.
9620
9621 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
9622
9623 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
9624 if not needed.
9625 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
9626 using completion. Protect against "slow" callers.
9627 Remove the "message hack".
9628
9629 2011-10-11 Juri Linkov <juri@jurta.org>
9630
9631 * isearch.el (isearch-lazy-highlight-word): New variable.
9632 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
9633 Use it. (Bug#9727)
9634
9635 2011-10-11 Glenn Morris <rgm@gnu.org>
9636
9637 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
9638 like f90-previous-statement does.
9639
9640 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9641
9642 * eshell/eshell.el (eshell-command): History should be saved
9643 only in interactive use, to avoid error.
9644
9645 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
9646
9647 * minibuffer.el (completion-file-name-table): Fix last change,
9648 i.e. ignore normal errors but not the other ones.
9649
9650 2011-10-10 Martin Rudalics <rudalics@gmx.at>
9651
9652 * window.el (special-display-buffer-names)
9653 (special-display-regexps): Remove some remnants of earlier
9654 changes from doc-strings.
9655 (quit-windows-on): New function.
9656
9657 * vc/vc.el (vc-revert, vc-rollback):
9658 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
9659 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9660 (Bug#6183) (Bug#7074) (Bug#7447)
9661
9662 2011-10-09 Martin Rudalics <rudalics@gmx.at>
9663
9664 * window.el (frame-auto-hide-function): Add version tag.
9665 (Bug#9699)
9666
9667 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
9668
9669 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
9670 condition.
9671
9672 2011-10-09 Leo Liu <sdl.web@gmail.com>
9673
9674 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
9675 (Bug#9701)
9676
9677 2011-10-08 Glenn Morris <rgm@gnu.org>
9678
9679 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
9680 before the first code statement zero indent. (Bug#9690)
9681
9682 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
9683
9684 * simple.el (count-words-region): Always count in the region.
9685 Report the number of lines and characters too.
9686 (count-words): New command, which counts in the buffer if the
9687 region is inactive, as count-words-region used to.
9688 (count-words--message): New function. Handle plurals.
9689 (count-lines-region): Make it an alias for count-words-region.
9690
9691 * bindings.el (esc-map): Replace count-lines-region with
9692 count-words-region.
9693
9694 2011-10-08 Martin Rudalics <rudalics@gmx.at>
9695
9696 * window.el (window--delete): Delete dedicated frame
9697 unconditionally when argument KILL is non-nil. (Bug#9699)
9698 (switch-to-buffer): Fix doc-string typo.
9699
9700 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9701
9702 * eshell/eshell.el (eshell-command): Avoid using hooks.
9703
9704 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
9705
9706 * bindings.el ([M-left],[M-right]): Bind to left-word and
9707 right-word respectively.
9708
9709 2011-10-07 Glenn Morris <rgm@gnu.org>
9710
9711 * cus-start.el (debug-on-quit): Fix custom type.
9712
9713 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
9714
9715 * subr.el (define-key-after): Clarify that the function is not
9716 useful for non-menu keymaps.
9717
9718 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
9719
9720 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9721
9722 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
9723 in current minibuffer (Fix bug with recursive minibuffers).
9724
9725 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
9726
9727 * progmodes/gdb-mi.el (gdb): Doc fix.
9728
9729 2011-10-05 Martin Rudalics <rudalics@gmx.at>
9730
9731 * window.el (frame-auto-hide-function): New option replacing
9732 frame-auto-delete. Suggested by Stefan Monnier.
9733 (window--delete): Call frame-auto-hide-function instead of
9734 investigating frame-auto-delete.
9735 (window-point-1, set-window-point-1): New functions.
9736 (window-in-direction, record-window-buffer, window-state-get-1)
9737 (display-buffer-record-window): Use window-point-1 instead of
9738 window-point.
9739 (set-window-buffer-start-and-point): Use set-window-point-1.
9740
9741 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
9742
9743 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
9744
9745 2011-10-05 Glenn Morris <rgm@gnu.org>
9746
9747 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
9748 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
9749
9750 2011-10-05 Leo Liu <sdl.web@gmail.com>
9751
9752 * subr.el (read-char-choice): Fix argument to buffer-live-p which
9753 works with buffer object.
9754
9755 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
9756
9757 * mpc.el (mpc-tool-bar-map): Add labels.
9758
9759 2011-10-04 Glenn Morris <rgm@gnu.org>
9760
9761 * calendar/holidays.el (calendar-check-holidays): Doc fix.
9762
9763 2011-10-04 Martin Rudalics <rudalics@gmx.at>
9764
9765 * window.el (window--delete): New function.
9766 (frame-auto-delete): Resuscitate option.
9767 (bury-buffer, replace-buffer-in-windows)
9768 (quit-window): Rewrite using window--delete.
9769 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
9770 Pass display-buffer-mark-dedicated to window--display-buffer-2
9771 (Bug#9639).
9772
9773 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9774
9775 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
9776 returns a list (bug#9554). Add remote file name completion.
9777 * comint.el (comint--table-subvert): Curry and get quote&unquote
9778 functions as arguments.
9779 (comint--complete-file-name-data): Adjust call accordingly.
9780 * pcomplete.el (pcomplete--table-subvert): Remove.
9781 (pcomplete-completions-at-point): Use comint--table-subvert instead.
9782
9783 * minibuffer.el (completion-table-case-fold): Use currying.
9784 (completion--styles-type, completion--cycling-threshold-type):
9785 New constants.
9786 (completion-styles, completion-category-overrides)
9787 (completion-cycle-threshold): Use them.
9788 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
9789 completion-table-case-fold.
9790
9791 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
9792
9793 * minibuffer.el (completion-category-overrides): Fix type of styles
9794 and add more user friendly tags (bug#9660).
9795
9796 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9797
9798 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
9799 (mule-input-method-string): New widget.
9800 (default-input-method, language-info-custom-alist): Use it.
9801
9802 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
9803
9804 * pcomplete.el: Require comint.
9805 (pcomplete--common-suffix): Remove.
9806 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
9807 (pcomplete--table-subvert): Sync with comint--table-subvert.
9808 (pcomplete--entries): Use comint-completion-file-name-table.
9809 * comint.el (comint-unquote-filename): Simplify.
9810 (comint-completion-file-name-table): New function (bug#9616).
9811 (comint--complete-file-name-data): Use it.
9812
9813 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
9814 (pcmpl-gnu-tar-buffer): Remove.
9815 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9816 around. Make sure pcomplete-suffix-list is only changed temporarily.
9817 Don't look inside the tar's file if it's too large.
9818
9819 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
9820
9821 * cus-edit.el (custom-mode-map):
9822 * epa.el (epa-key-list-mode-map):
9823 * man.el (Man-mode-map):
9824 * startup.el (splash-screen-keymap):
9825 * simple.el (special-mode-map): Use scroll-up-command and
9826 scroll-down-command.
9827
9828 * progmodes/idlw-help.el (idlwave-help-mode-map):
9829 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
9830 * net/newst-plainview.el (newsticker-mode-map):
9831 * emulation/ws-mode.el (wordstar-mode-map):
9832 * emulation/vi.el (vi-com-map):
9833 * calc/calc-graph.el (calc-graph-show-dumb):
9834 * term/sun.el (terminal-init-sun):
9835 * term/ns-win.el (global-map):
9836 * progmodes/grep.el (grep-mode-map):
9837 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
9838 * mail/rmail.el (rmail-mode-map):
9839 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
9840
9841 * custom.el (custom-safe-themes, load-theme): Treat value of t for
9842 custom-safe-themes as special.
9843
9844 2011-10-01 Julien Danjou <julien@danjou.info>
9845
9846 * notifications.el (notifications-notify): Fix docstring.
9847
9848 2011-10-01 Per Starbäck <per@starback.se>
9849
9850 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
9851
9852 2011-09-30 Martin Rudalics <rudalics@gmx.at>
9853
9854 * startup.el (command-line-1): Fix last fix by inserting
9855 initial-scratch-message into *scratch* before displaying it.
9856 (Bug#9605) and (Bug#9636)
9857
9858 2011-09-29 Eli Zaretskii <eliz@gnu.org>
9859
9860 * simple.el (line-move): If auto-hscroll-mode is disabled and the
9861 window is hscrolled, move by logical lines. (Bug#9607)
9862 (line-move-visual): Update the doc string to the above effect.
9863
9864 2011-09-29 Martin Rudalics <rudalics@gmx.at>
9865
9866 * window.el (display-buffer-record-window): When WINDOW is the
9867 selected window use `point' instead of `window-point'. (Bug#9626)
9868
9869 * startup.el (command-line-1): Use insert-before-markers when
9870 inserting initial-scratch-message. (Bug#9605)
9871
9872 * help.el (help-window): Remove variable.
9873
9874 2011-09-29 Glenn Morris <rgm@gnu.org>
9875
9876 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
9877
9878 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
9879
9880 * descr-text.el (describe-char-categories): Accept category
9881 descriptions more than one line long.
9882
9883 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
9884
9885 * simple.el (delete-trailing-whitespace): Fix last change.
9886
9887 * progmodes/perl-mode.el (perl-syntax-propertize-function):
9888 Don't confuse "y => 3" as the beginning of a `y' operation.
9889
9890 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
9891 object has more than 4 slots (bug#9613).
9892
9893 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
9894
9895 * subr.el (with-output-to-temp-buffer):
9896 * net/quickurl.el (quickurl, quickurl-browse-url):
9897 Fix typos in docstrings.
9898
9899 2011-09-27 Eli Zaretskii <eliz@gnu.org>
9900
9901 * minibuffer.el (completion-styles)
9902 (completion-category-overrides): Cross reference each other in doc
9903 strings.
9904
9905 2011-09-27 Glenn Morris <rgm@gnu.org>
9906
9907 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
9908 to split-string. (Bug#9606)
9909
9910 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
9911
9912 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
9913 (bug#9615).
9914
9915 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
9916
9917 * emacs-lisp/package.el (list-packages): Fix echo area message.
9918
9919 2011-09-27 Leo Liu <sdl.web@gmail.com>
9920
9921 * ido.el (ido-read-internal): Accept cons cell HIST arg.
9922
9923 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
9924
9925 * net/dbus.el (dbus-unregister-object): Don't release services for
9926 registered signals. (Bug#9581)
9927
9928 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
9929
9930 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
9931 function that picks between cfengine 2 and 3 support
9932 automatically. Update docs accordingly.
9933
9934 2011-09-22 Kenichi Handa <handa@m17n.org>
9935
9936 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
9937 ZERO.
9938 (indian-itrans-v5-table-for-tamil): New variable.
9939 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
9940
9941 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
9942
9943 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
9944 that's true if the current command involved collapsing of text.
9945 It's reset to false at the beginning of the next command.
9946 (allout-post-command-business): Move the cursor to the beginning
9947 of entry if the cursor is hidden and collapsing activity just
9948 happened.
9949
9950 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
9951
9952 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
9953 tracking (Bug#9541).
9954
9955 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
9956
9957 * net/newst-reader.el (newsticker-html-renderer)
9958 (newsticker-show-news): Automatically load html rendering package
9959 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
9960 because w3m-fill-column is let-bound" and the error "Symbol's value
9961 as variable is void: w3m-fill-column".
9962
9963 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
9964
9965 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
9966 Release services only if they are defined. (Bug#9581)
9967
9968 2011-09-23 Richard Stallman <rms@gnu.org>
9969
9970 * textmodes/paragraphs.el (forward-sentence): For backwards case,
9971 distinguish start of paragraph from start of its text.
9972
9973 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
9974
9975 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
9976 (rmail-generate-viewer-buffer): Put that hook on view buffer.
9977 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
9978
9979 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
9980
9981 * international/mule-diag.el (mule-diag): Insert a newline after
9982 each fontset description.
9983
9984 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9985
9986 * simple.el (delete-trailing-whitespace):
9987 Document last change; simplify.
9988
9989 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
9990
9991 * simple.el (delete-trailing-whitespace): Also delete
9992 extra newlines at the end of the buffer.
9993
9994 * textmodes/picture.el: Make motion commands obey shift-select-mode.
9995 (picture-newline): Use forward-line so as to ignore fields.
9996
9997 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9998
9999 * subr.el (with-wrapper-hook): Fix edebug spec.
10000
10001 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
10002
10003 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
10004 (bug#4538).
10005
10006 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
10007
10008 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
10009 Fix nasty bug using wrong cached values.
10010
10011 2011-09-23 Alan Mackenzie <acm@muc.de>
10012
10013 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
10014
10015 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
10016
10017 * window.el (pop-to-buffer): Ensure right window is selected if we
10018 chose another frame.
10019
10020 2011-09-22 Eli Zaretskii <eliz@gnu.org>
10021
10022 * simple.el (what-cursor-position): Use get-char-property-change
10023 and next-single-char-property-change, to be able to show display
10024 properties that come from overlays as well as text properties.
10025
10026 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
10027
10028 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
10029
10030 * cmuscheme.el (run-scheme, switch-to-scheme):
10031 * cus-edit.el (customize-group, custom-buffer-create)
10032 (customize-browse):
10033 * info.el (info):
10034 * shell.el (shell):
10035 * mail/sendmail.el (mail):
10036 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
10037
10038 2011-09-22 Richard Stallman <rms@gnu.org>
10039
10040 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
10041 move back only to line beg, don't move back over blank lines.
10042
10043 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
10044
10045 * files.el (copy-directory): Set directory attributes only in case
10046 they could be retrieved from the source directory. (Bug#9565)
10047
10048 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
10049
10050 * progmodes/hideshow.el (hs-looking-at-block-start-p)
10051 (hs-find-block-beginning, hs-hide-level-recursive):
10052 Ignore strings as well as comments. (Bug#9502)
10053
10054 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
10055
10056 * progmodes/sql.el (sql-comint-postgres):
10057 Convert port number to a string. (Bug#9566)
10058
10059 2011-09-22 Martin Rudalics <rudalics@gmx.at>
10060
10061 * window.el (quit-window): Undedicate window when switching to
10062 previous buffer. Reported by Thierry Volpiatto
10063 <thierry.volpiatto@gmail.com>.
10064 (special-display-popup-frame): When popping up a new frame reset
10065 its previous buffers to nil. Simplify code.
10066
10067 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
10068
10069 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
10070 and process filter, as done also in `shell-command'.
10071
10072 2011-09-21 Martin Rudalics <rudalics@gmx.at>
10073
10074 * window.el (set-window-buffer-start-and-point):
10075 Call set-window-start with NOFORCE argument t.
10076 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
10077 (quit-window): Reword doc-string. Handle new format of
10078 quit-restore parameter. Don't delete window if it has a
10079 previous buffer we can show instead of the present one.
10080 (display-buffer-record-window): Rewrite using a new format for
10081 the quit-restore window parameter
10082 (special-display-popup-frame, display-buffer-same-window)
10083 (display-buffer-reuse-window, display-buffer-pop-up-frame)
10084 (display-buffer-pop-up-window, display-buffer-use-some-window):
10085 Adapt symbol passed to display-buffer-record-window.
10086 * help.el (help-window-setup): Handle new format of quit-restore
10087 parameter.
10088
10089 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
10090
10091 * faces.el (face-list): Fix docstring (bug#9564).
10092
10093 * window.el (display-buffer--action-function-custom-type):
10094 Don't include internal functions in the Custom interface.
10095
10096 2011-09-20 Juri Linkov <juri@jurta.org>
10097
10098 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
10099 (Info-forward-node, Info-backward-node, Info-next-preorder)
10100 (Info-last-preorder): Use it. (Bug#9528)
10101
10102 2011-09-20 Juri Linkov <juri@jurta.org>
10103
10104 * info.el (Info-last-preorder): Visit last menu item only when
10105 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
10106
10107 2011-09-20 Julien Danjou <julien@danjou.info>
10108
10109 * password-cache.el (password-cache-remove): Remove entries even if the
10110 value is nil, so that password with a nil value (negative caching) is
10111 possible to invalidate.
10112
10113 2011-09-20 Lawrence Mitchell <wence@gmx.li>
10114
10115 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
10116 all whitespace around breakpoint. (Bug#9553)
10117 (f90-find-breakpoint): Only break at whitespace inside a comment.
10118
10119 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
10120
10121 * minibuffer.el (completion-file-name-table): Keep track of errors.
10122 (completion-table-with-predicate): Handle the case where pred1 is nil.
10123 * pcomplete.el (pcomplete-completions-at-point): Simplify.
10124
10125 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
10126
10127 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
10128 (debugger-return-value): Signal an error if the debugging context does
10129 not await any return value.
10130
10131 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
10132 * image-mode.el (image-toggle-display-text)
10133 (image-toggle-display-image): Stay away from evil `intangible'.
10134
10135 2011-09-19 Leo Liu <sdl.web@gmail.com>
10136
10137 * replace.el (occur-revert-arguments): Make it permanent-local.
10138 (occur-mode): Don't call font-lock-defontify.
10139
10140 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
10141
10142 * net/ldap.el (ldap-search-internal): Don't push empty search
10143 result (Bug#9508).
10144
10145 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
10146
10147 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
10148
10149 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
10150
10151 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
10152 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
10153
10154 2011-09-18 Juri Linkov <juri@jurta.org>
10155
10156 * buff-menu.el (Buffer-menu-mode-map):
10157 * dired.el (dired-mode-map):
10158 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
10159 (lisp-interaction-mode-map):
10160 * emacs-lisp/package.el (package-menu-mode-map):
10161 * epa.el (epa-key-list-mode-map):
10162 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
10163 (menu-bar-options-menu):
10164 * outline.el (outline-mode-menu-bar-map):
10165 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
10166 * vc/vc-dir.el (vc-dir-menu-map):
10167 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
10168 Capitalize non-function content words in menu item strings.
10169
10170 * dired.el (dired-mode-map): Add menu item for
10171 `image-dired-dired-toggle-marked-thumbs'.
10172
10173 2011-09-18 Juri Linkov <juri@jurta.org>
10174
10175 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
10176 to `isearch-case-fold-search' and restore its original value
10177 after the `isearch-mode' call.
10178
10179 2011-09-18 Juri Linkov <juri@jurta.org>
10180
10181 * progmodes/grep.el (grep-process-setup): Don't check code for 1
10182 because `zgrep' returns 1 for successful matches (bug#9226).
10183
10184 2011-09-18 Juri Linkov <juri@jurta.org>
10185
10186 * info.el (Info-extract-menu-node-name): Check the second match
10187 for empty string (second test-case of bug#9528).
10188 (Info-last-preorder): Let-bind `Info-history' to nil to not add
10189 intermediate nodes to the history (first test-case of bug#9528).
10190
10191 2011-09-18 Juri Linkov <juri@jurta.org>
10192
10193 * info.el (Info-mode-syntax-table): New variable.
10194 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
10195
10196 2011-09-18 Juri Linkov <juri@jurta.org>
10197
10198 * info.el (Info-file-supports-index-cookies):
10199 Increment line-beginning-position's arg from 3 to 4 because makeinfo
10200 outputs one more line for long file names (bug#4142).
10201
10202 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
10203
10204 * newcomment.el (comment-normalize-vars): If prompting for
10205 comment-start, set comment-start-skip too (Bug#8424).
10206
10207 2011-09-18 Johan Bockgård <bojohan@gnu.org>
10208
10209 * icomplete.el: Fix previous fix of Bug#5849.
10210 (icomplete-mode): Don't set completion-show-inline-help.
10211 (icomplete-minibuffer-setup): Set completion-show-inline-help
10212 locally during icompletion.
10213
10214 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
10215
10216 * woman.el (woman2-process-escapes): Don't delete unrecognized
10217 escapes (Bug#7843).
10218
10219 * files.el (inhibit-first-line-modes-regexps): Add image files.
10220 (hack-local-variables-prop-line): Return nil for malformed
10221 prop-lines (Bug#9044).
10222
10223 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
10224
10225 * net/tramp.el (top): Don't require 'shell.
10226 (tramp-methods): Fix docstring.
10227 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
10228 Return complete remote file name. Handle "smb" case.
10229 Use `tramp-tmpdir', if defined for the respective method.
10230 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
10231
10232 * net/tramp-compat.el (top): Require 'shell.
10233
10234 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
10235 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
10236 `tramp-current-host'.
10237 (tramp-get-remote-tmpdir): Remove.
10238
10239 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
10240 `tramp-tmpdir' entries.
10241 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
10242 (tramp-smb-handle-file-attributes): Ignore errors.
10243 (tramp-smb-wait-for-output): Check also for process end.
10244
10245 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
10246
10247 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
10248 when sending QUIT (bug#9312).
10249
10250 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
10251
10252 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
10253 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
10254 occur-mode-display-occurrence.
10255 (occur-edit-mode): Add usage message.
10256 (occur-cease-edit): New command.
10257 (occur-after-change-function): Use text properties to find the
10258 position of the prefix text.
10259 (occur-engine): Set stickiness of prefix text properties.
10260
10261 2011-09-17 Glenn Morris <rgm@gnu.org>
10262
10263 * progmodes/etags.el (complete-tag):
10264 Fix call to completion-in-region. (Bug#9526)
10265
10266 2011-09-17 Juri Linkov <juri@jurta.org>
10267
10268 * textmodes/ispell.el (ispell-word): Add to the error message
10269 the word, ispell program name and current dictionary (bug#9121).
10270 (ispell-tex-arg-end): Capitalize "error" in the error message.
10271
10272 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
10273
10274 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
10275 check. (Bug#4251)
10276
10277 2011-09-17 Juri Linkov <juri@jurta.org>
10278
10279 * window.el (window-safe-min-height, window-safe-min-width):
10280 Fix typos (followup to bug#9522).
10281
10282 2011-09-17 Sven Joachim <svenjoac@gmx.de>
10283
10284 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
10285
10286 2011-09-16 Eli Zaretskii <eliz@gnu.org>
10287
10288 * simple.el (line-move): If goal-column is set, move by logical
10289 lines, not by display lines. (Bug#971)
10290 (next-line, previous-line, goal-column, line-move-visual): Doc fix
10291 to reflect the above change.
10292
10293 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
10294
10295 * image.el (imagemagick-register-types): Use regexp-opt.
10296
10297 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
10298
10299 * window.el (display-buffer-base-action): Rename from
10300 display-buffer-default-action. Make default value empty.
10301 (display-buffer-overriding-action): Convert to defvar.
10302 (display-buffer-fallback-action): New var.
10303
10304 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
10305
10306 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
10307 declaration.
10308 (package--add-to-archive-contents): If there is a duplicate entry
10309 with an older version, remove it.
10310 (package-menu-mark-delete, package-menu-mark-install)
10311 (package-menu-mark-unmark): Make unused args optional.
10312 (package-menu-mark-obsolete-for-deletion):
10313 Use package-menu-get-status instead of a regexp search.
10314 (package-menu-get-status): Use tabulated-list-entry.
10315 (package-menu-mark-upgrades): New command.
10316 (package-menu-mode-map): Bind it to U. Add it to menu bar.
10317 (package-menu-execute): Do installation before deletion.
10318 (package-menu-refresh, package-menu-execute): Use derived-mode-p
10319 instead of checking major-mode.
10320 (package-menu--find-upgrades): New function.
10321
10322 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10323
10324 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
10325 passwords in the log buffer.
10326 (smtpmail-process-filter): Update the process marker so that the
10327 "broken by peer" status message is inserted in the right place.
10328
10329 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
10330
10331 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
10332 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
10333 bibtex-completion-at-point-function.
10334 (bibtex-completion-at-point-function): Use them.
10335
10336 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
10337
10338 * mpc.el (mpc-constraints-tag-lookup): New function.
10339 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
10340 also to browser "album|playlist".
10341
10342 2011-09-14 Juri Linkov <juri@jurta.org>
10343
10344 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
10345 (isearch-edit-string): Use length of `isearch-string' when
10346 `isearch-fail-pos' returns nil.
10347 (isearch-message): Remove duplicate code and call
10348 `isearch-fail-pos' with arg `t'.
10349
10350 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
10351
10352 * replace.el (occur-mode-goto-occurrence): Don't force using other
10353 window (Bug#9499).
10354
10355 * dired-aux.el (dired-do-chmod): Don't provide initial input.
10356
10357 2011-09-14 Martin Rudalics <rudalics@gmx.at>
10358
10359 * window.el (display-buffer-window): Remove.
10360 (display-buffer-record-window): Use help-setup window parameter
10361 instead of variable display-buffer-window.
10362 (display-buffer-function, special-display-buffer-names)
10363 (special-display-function): Mention help-setup parameter instead
10364 of display-buffer-window in doc-string.
10365 * help.el (help-window-setup): New argument help-window.
10366 Use help-window-setup parameter instead of display-buffer-window.
10367 Reword some messages.
10368 (with-help-window): Pass window used for displaying the buffer
10369 to help-window-setup. Don't set display-buffer-window.
10370
10371 2011-09-13 Glenn Morris <rgm@gnu.org>
10372
10373 * emacs-lisp/debug.el (debugger-make-xrefs):
10374 Preserve point. (Bug#9462)
10375
10376 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
10377
10378 * window.el (window-deletable-p): Use next-frame.
10379
10380 2011-09-13 Martin Rudalics <rudalics@gmx.at>
10381
10382 * window.el (window-auto-delete): Remove.
10383 (window-deletable-p): Remove argument FORCE. Don't deal with
10384 dedication and previous buffers.
10385 (switch-to-prev-buffer): Don't delete window.
10386 (delete-windows-on): Delete a window's frame if and only if the
10387 window is dedicated.
10388 (replace-buffer-in-windows): Delete buffer's window or frame if
10389 and only if window is dedicated.
10390 (quit-window): Handle quit-restore as before last change.
10391 (bury-buffer): Delete window only if window-deletable-p returns t.
10392
10393 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
10394
10395 * window.el (window-deletable-p): Never delete the last frame on a
10396 given terminal.
10397
10398 2011-09-13 Glenn Morris <rgm@gnu.org>
10399
10400 * help.el (describe-key-briefly): Copy previous standard-output change.
10401
10402 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
10403
10404 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
10405
10406 2011-09-13 Glenn Morris <rgm@gnu.org>
10407
10408 * emacs-lisp/lisp-mode.el (lisp-indent-function):
10409 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
10410
10411 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
10412
10413 * dired-aux.el (dired-mark-read-string): Don't return default
10414 value on empty input (Bug#9361).
10415 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
10416 Omit initial minibuffer contents.
10417 (dired-do-chmod): Signal an error on empty input.
10418 (dired-mark-read-string): Don't return default on empty input.
10419
10420 * files.el (file-modes-symbolic-to-number): Doc fix.
10421
10422 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10423
10424 * international/mule-cmds.el (ucs-completions): Remove.
10425 (read-char-by-name): Use complete-with-action instead; add metadata.
10426
10427 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
10428
10429 * window.el (display-buffer--action-function-custom-type)
10430 (display-buffer--action-custom-type): New vars.
10431 (display-buffer-alist, display-buffer-default-action)
10432 (display-buffer-overriding-action): Add defcustom types.
10433
10434 * frame.el (delete-other-frames): Doc fix (Bug#276).
10435
10436 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10437
10438 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
10439
10440 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
10441
10442 Change modes that used same-window-* vars to use switch-to-buffer.
10443
10444 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
10445 Use switch-to-buffer.
10446
10447 * cus-edit.el (customize-group, custom-buffer-create)
10448 (customize-browse, custom-buffer-create-other-window):
10449 Use switch-to-buffer or switch-to-buffer-other-window.
10450
10451 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
10452 (Info-prev, Info-up, Info-speedbar-goto-node)
10453 (info-display-manual): Use switch-to-buffer.
10454 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
10455
10456 * mail/sendmail.el (mail): Use switch-to-buffer.
10457 (mail-recover): Use switch-to-buffer-other-window.
10458
10459 * cmuscheme.el (run-scheme, switch-to-scheme):
10460 * ielm.el (ielm):
10461 * shell.el (shell):
10462 * net/rlogin.el (rlogin):
10463 * net/telnet.el (telnet, rsh):
10464 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
10465
10466 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
10467
10468 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
10469
10470 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10471
10472 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
10473 so don't mention it (bug#9301).
10474 (dired-sort-toggle-or-edit): Clarify string further.
10475
10476 * faces.el (face-spec-set-match-display): Make `(type graphic)'
10477 match `x', `w32' and `ns', like the manual says (bug#9029).
10478
10479 * subr.el (eval-after-load): Doc string clarification (bug#9125).
10480 (process-kill-buffer-query-function): Mention the buffer name in
10481 the query.
10482
10483 * image-mode.el (image-next-line): The line parameter is mandatory
10484 (bug#9258).
10485
10486 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
10487 which can be useful (bug#9301).
10488
10489 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
10490
10491 * subr.el (match-string): Mention that the current buffer should
10492 be the same as the search was done in (bug#9282).
10493
10494 * facemenu.el: Disable the remove-* commands if the mark isn't
10495 active (bug#9162).
10496
10497 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
10498
10499 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
10500 of display-buffer.
10501 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
10502
10503 * replace.el (occur-mode-goto-occurrence)
10504 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
10505 and display-buffer.
10506
10507 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
10508 display-buffer.
10509
10510 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
10511 special-display and same-window variables.
10512 (mail-other-window): Use switch-to-buffer-other-window.
10513 (mail-other-frame): USe switch-to-buffer-other-frame.
10514
10515 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
10516 Use display-buffer-other-frame.
10517 (gdb-display-gdb-buffer): Use pop-to-buffer.
10518
10519 * progmodes/gud.el (gud-goto-info): Use info-other-window.
10520
10521 * progmodes/python.el: Don't set same-window-buffer-names.
10522
10523 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
10524
10525 * window.el (display-buffer-alist): Add *Python*.
10526
10527 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
10528
10529 * window.el (display-buffer-alist): Add entry for buffers
10530 previously handled same-window-*.
10531 (display-buffer-alist, display-buffer-default-action)
10532 (display-buffer-overriding-action): Mark as risky.
10533 (display-buffer-alist): Document action function changes.
10534 (display-buffer--same-window-action)
10535 (display-buffer--other-frame-action): New variables.
10536 (switch-to-buffer, display-buffer-other-frame): Use them.
10537 (display-buffer): Rename reuse-frame entry to reusable-frames.
10538 (display-buffer-reuse-selected-window): Function deleted.
10539 (display-buffer-reuse-window): Handle reusable-frames alist entry.
10540 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
10541 (display-buffer-special): New function.
10542 (display-buffer--maybe-pop-up-frame-or-window): Rename from
10543 display-buffer-reuse-or-pop-window. Split off special-display
10544 part into display-buffer-special.
10545 (display-buffer-use-some-window): Don't perform any special
10546 pop-up-frames handling.
10547 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
10548 (display-buffer--maybe-same-window): Rename from
10549 display-buffer-maybe-same-window.
10550
10551 * info.el: Don't set same-window-regexps.
10552 (info-setup): New function.
10553 (info-other-window, info): Call it.
10554
10555 * cus-edit.el: Don't set same-window-regexps.
10556 (customize-group): New argument.
10557 (customize-group-other-window): Use it.
10558 (customize-face, customize-face-other-window): Likewise.
10559 (custom-buffer-create-other-window): Use pop-to-buffer directly.
10560
10561 * net/rlogin.el:
10562 * net/telnet.el:
10563 * progmodes/gud.el: Don't set same-window-regexps.
10564
10565 * cmuscheme.el:
10566 * ielm.el:
10567 * shell.el:
10568 * mail/sendmail.el:
10569 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
10570
10571 2011-09-10 Juri Linkov <juri@jurta.org>
10572
10573 * isearch.el (isearch-edit-string): Remove obsolete mention of
10574 `C-w' (`isearch-yank-word-or-char') from docstring.
10575 (isearch-query-replace): Fix typo in docstring (bug#9466).
10576
10577 2011-09-10 Juri Linkov <juri@jurta.org>
10578
10579 * paren.el (show-paren-function): Don't show escaped parens.
10580 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
10581
10582 2011-09-10 Eli Zaretskii <eliz@gnu.org>
10583
10584 * mail/sendmail.el (mml-to-mime, mml-attach-file)
10585 (mm-default-file-encoding): Remove autoload forms, they are
10586 replaced with autoload cookies in mml.el and mm-encode.el.
10587 (mail-add-attachment): New command.
10588 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
10589 (mail-mode): Mention mail-insert-file and mail-add-attachment in
10590 the doc string.
10591 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
10592
10593 2011-09-10 Reuben Thomas <rrt@sc3d.org>
10594
10595 * simple.el (count-words-region): Use buffer if there's no region
10596 (bug#9429).
10597
10598 2011-09-09 Juri Linkov <juri@jurta.org>
10599
10600 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
10601 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
10602 (wdired-isearch-filter-read-only): New function. (Bug#6362)
10603
10604 2011-09-09 Alan Mackenzie <acm@muc.de>
10605
10606 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
10607 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
10608
10609 2011-09-09 Eli Zaretskii <eliz@gnu.org>
10610
10611 Fix for Savannah bug#9392.
10612 * simple.el (mail-encode-mml): New defvar.
10613
10614 * mail/rmail.el (mail-encode-mml): Add a defvar.
10615 (rmail-enable-mime-composing): Default to t.
10616 (rmail-forward): Use MIME method of forwarding only if both
10617 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
10618 Set mail-encode-mml non-nil if the MIME method was used.
10619
10620 * mail/sendmail.el (mml-to-mime): Add autoload form.
10621 (mail-encode-mml): Add a defvar.
10622 (mail-mode): Make mail-encode-mml buffer-local and initialize it
10623 to nil.
10624 (mail-send): If mail-encode-mml is non-nil, run the outgoing
10625 message through mml-to-mime, and reset mail-encode-mml to nil.
10626
10627 2011-09-09 Glenn Morris <rgm@gnu.org>
10628
10629 * woman.el (woman-if-body): When processing an .el block,
10630 do not delete the next .el block as well. (Bug#9447)
10631 (woman-special-characters): Add oq, cq, and hy characters.
10632
10633 2011-09-08 Martin Rudalics <rudalics@gmx.at>
10634
10635 * window.el (window-deletable-p): Make sure window is live before
10636 invoking window-prev-buffers.
10637
10638 2011-09-08 Leo Liu <sdl.web@gmail.com>
10639
10640 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
10641
10642 2011-09-08 Juri Linkov <juri@jurta.org>
10643
10644 * progmodes/compile.el (compilation-environment): Make it
10645 a defcustom (bug#8340).
10646
10647 2011-09-08 Martin Rudalics <rudalics@gmx.at>
10648
10649 * window.el (frame-auto-delete): Rename to window-auto-delete.
10650 Make it control auto-deletion of windows and/or frames.
10651 (window-deletable-p): New argument FORCE. Rewrite conditions
10652 for deleting window/frame. (Bug#9419)
10653 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
10654 Rewrite handling of case when window/frame can be deleted.
10655 (delete-windows-on): Call window-deletable-p with new FORCE
10656 argument t. (Bug#9456)
10657
10658 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
10659
10660 * help-mode.el (help-mode): Restore autoload.
10661
10662 2011-09-07 Juri Linkov <juri@jurta.org>
10663
10664 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
10665 `compilation-environment'. Set buffer-local
10666 `compilation-environment' to `thisenv' later after (funcall mode).
10667 (Bug#8340)
10668
10669 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
10670 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
10671 instead of replacing its value. (Bug#8340)
10672
10673 2011-09-07 Juri Linkov <juri@jurta.org>
10674
10675 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
10676 based on text properties put by `grep-filter' instead of matching
10677 escape sequences.
10678 (grep-mode): Set buffer-local `compilation-error-screen-columns'
10679 to the value of `grep-error-screen-columns' (bug#9438).
10680
10681 2011-09-07 Juri Linkov <juri@jurta.org>
10682
10683 * simple.el (next-error-highlight, next-error-highlight-no-select):
10684 Doc fix (bug#9432).
10685
10686 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
10687
10688 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
10689 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
10690
10691 2011-09-07 Leo Liu <sdl.web@gmail.com>
10692
10693 * net/rcirc.el (rcirc-mode): Conditionally initialize
10694 rcirc-input-ring.
10695
10696 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
10697
10698 * emacs-lisp/find-func.el (find-function-C-source): Only set
10699 find-function-C-source-directory after checking that we found a source
10700 file there (bug#9440).
10701
10702 2011-09-06 Alan Mackenzie <acm@muc.de>
10703
10704 * isearch.el (isearch-other-meta-char): Wherever a key list is
10705 unread, "unread" the prefix arg, too. This fixes bug #8901.
10706
10707 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
10708
10709 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
10710
10711 2011-09-05 Juri Linkov <juri@jurta.org>
10712
10713 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
10714
10715 2011-09-05 Juri Linkov <juri@jurta.org>
10716
10717 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
10718 keeping point where processing of grep matches begins, and
10719 continue to delete remaining escape sequences from the same point.
10720 (grep-filter): Make leading zero optional in "0?1;31m" because
10721 git-grep emits "\033[1;31m" escape sequences unlike expected
10722 "\033[01;31m" as GNU Grep does (bug#9408).
10723 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
10724
10725 2011-09-05 Juri Linkov <juri@jurta.org>
10726
10727 * subr.el (y-or-n-p): Capitalize "yes".
10728
10729 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
10730
10731 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
10732 `tramp-cache-unload-hook' where appropriate.
10733 (tramp-methods): Rename `tramp-remote-sh' to
10734 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
10735 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
10736
10737 * net/tramp-sh.el (top): Don't require 'shell.
10738 (tramp-methods): Add `tramp-remote-shell' and
10739 `tramp-remote-shell-args' entries.
10740 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
10741 (tramp-sh-handle-shell-command): Remove.
10742 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
10743 Use `tramp-remote-shell'.
10744
10745 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
10746
10747 * mail/sendmail.el (sendmail-query-once-function): Delete.
10748 (sendmail-query-once): Save directly to send-mail-function.
10749 Update message-send-mail-function too.
10750
10751 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
10752
10753 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
10754
10755 * progmodes/python.el (python-mode-map): Use correct function to
10756 start python interpreter from menu-bar (as reported by Geert
10757 Kloosterman).
10758 (inferior-python-mode-map): Fix typo.
10759 (python-shell-map): Remove.
10760
10761 2011-09-03 Deniz Dogan <deniz@dogan.se>
10762
10763 * net/rcirc.el (rcirc-print): Simplify code for
10764 rcirc-scroll-show-maximum-output. There is no need to walk
10765 through all windows to find the right one.
10766
10767 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
10768
10769 * help.el (help-return-method): Doc fix.
10770
10771 2011-09-03 Martin Rudalics <rudalics@gmx.at>
10772
10773 * window.el (window-deletable-p): Don't return a non-nil value
10774 when there's a buffer that was shown in the window before.
10775 (Bug#9419)
10776 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
10777 Set window's previous buffers to nil.
10778
10779 2011-09-03 Eli Zaretskii <eliz@gnu.org>
10780
10781 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
10782 newline before and after the tag line, so it doesn't interfere
10783 with determining the paragraph direction of bidirectional text.
10784
10785 2011-09-03 Leo Liu <sdl.web@gmail.com>
10786
10787 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
10788
10789 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
10790
10791 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
10792 (pop-to-buffer): Change interactive spec. Pass second argument
10793 directly to display-buffer.
10794 (display-buffer): Fix interactive spec. Use functionp to
10795 distinguish between a function and a list of functions.
10796
10797 * abbrev.el (edit-abbrevs):
10798 * arc-mode.el (archive-extract):
10799 * autoinsert.el (auto-insert):
10800 * bookmark.el (bookmark-bmenu-list):
10801 * files.el (find-file):
10802 * view.el (view-buffer):
10803 * progmodes/compile.el (compilation-goto-locus):
10804 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
10805
10806 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
10807
10808 * window.el (display-buffer-alist): Doc fix.
10809 (display-buffer): Add docstring. Don't treat
10810 display-buffer-default specially.
10811 (display-buffer-reuse-selected-window)
10812 (display-buffer-same-window, display-buffer-maybe-same-window)
10813 (display-buffer-reuse-window, display-buffer-pop-up-frame)
10814 (display-buffer-pop-up-window)
10815 (display-buffer-reuse-or-pop-window)
10816 (display-buffer-use-some-window): New functions.
10817 (display-buffer-default-action): Use them.
10818 (display-buffer-default): Delete.
10819 (pop-to-buffer-1): Fix choice of actions.
10820
10821 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
10822
10823 * minibuffer.el (completion--insert-strings): Don't get confused by
10824 completion entries that end with an LF char.
10825
10826 2011-09-01 Eli Zaretskii <eliz@gnu.org>
10827
10828 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
10829
10830 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
10831
10832 * window.el (display-buffer): Restore interactive spec.
10833 (display-buffer-same-window, display-buffer-other-window):
10834 New functions.
10835 (pop-to-buffer-1): New function. Use the above.
10836 (pop-to-buffer, pop-to-buffer-same-window): Use it.
10837 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
10838
10839 * view.el (view-buffer-other-window, view-buffer-other-frame):
10840 Just use pop-to-buffer.
10841
10842 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10843
10844 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
10845
10846 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
10847
10848 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
10849
10850 2011-08-31 Richard Stallman <rms@gnu.org>
10851
10852 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
10853 of the separation of rmail-view-buffer from rmail-buffer.
10854 If you say no to "replace original", the decrypt is in the
10855 view buffer. If you say yes, the decrypt goes into the
10856 rmail buffer also.
10857
10858 2011-08-31 Martin Rudalics <rudalics@gmx.at>
10859
10860 * window.el (display-buffer-window): Rewrite doc-string.
10861 (display-buffer-record-window): New function.
10862 (display-buffer-macro-specifiers)
10863 (display-buffer-even-window-sizes, display-buffer-set-height)
10864 (display-buffer-set-width, display-buffer-in-window)
10865 (display-buffer-reuse-window, display-buffer-split-specifiers)
10866 (display-buffer-side-specifiers, display-buffer-split-window-1)
10867 (display-buffer-split-window, display-buffer-split-atom-window)
10868 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
10869 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
10870 (display-buffer-other-window-means-other-frame)
10871 (display-buffer-normalize-special)
10872 (display-buffer-normalize-default)
10873 (display-buffer-normalize-argument)
10874 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
10875 (display-buffer-normalize-specifiers, display-buffer-frame)
10876 (display-buffer-same-window, display-buffer-same-frame)
10877 (display-buffer-other-window)
10878 (display-buffer-same-frame-other-window)
10879 (display-buffer-other-frame, pop-to-buffer-same-window)
10880 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
10881 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
10882 (switch-to-buffer-same-frame)
10883 (switch-to-buffer-other-window-same-frame)
10884 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
10885 (display-buffer-alist-set-1, display-buffer-alist-set-2)
10886 (display-buffer-alist-set): Remove.
10887 (display-buffer-function, special-display-buffer-names)
10888 (special-display-regexps, special-display-function):
10889 In doc-string refer to display-buffer-window and quit-restore
10890 parameter.
10891 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
10892 (special-display-frame-alist, special-display-popup-frame)
10893 (same-window-buffer-names, same-window-regexps, same-window-p)
10894 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
10895 (split-window-preferred-function, split-height-threshold)
10896 (split-width-threshold, window-splittable-p)
10897 (split-window-sensibly, window--try-to-split-window)
10898 (window--frame-usable-p, even-window-heights)
10899 (window--even-window-heights, window--display-buffer-1)
10900 (window--display-buffer-2, display-buffer-other-frame):
10901 Restore old Emacs 23 code, order and doc-strings where applicable.
10902 (display-buffer-default, display-buffer-assq-regexp): New functions.
10903 (display-buffer-alist): Rewrite doc-string.
10904 (display-buffer-default-action)
10905 (display-buffer-overriding-action): New variables.
10906 (display-buffer, switch-to-buffer): Rewrite.
10907 (pop-to-buffer): Restore Emacs 23 behavior but use
10908 window-normalize-buffer-to-display.
10909 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
10910 Restore Emacs 23 behavior but use
10911 window-normalize-buffer-to-switch-to.
10912 (pop-to-buffer-same-window): Rewrite.
10913 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
10914 Rewrite using Emacs 23 options.
10915
10916 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
10917
10918 * net/tramp.el (tramp-root-regexp): Remove.
10919 (tramp-completion-file-name-regexp-unified)
10920 (tramp-completion-file-name-regexp-separate)
10921 (tramp-completion-file-name-regexp-url): Don't use leading volume
10922 letter on w32 systems. (Bug#5303, Bug#9311)
10923 (tramp-drop-volume-letter): Simplify definition.
10924 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
10925
10926 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
10927
10928 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
10929 (bug#9356).
10930
10931 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
10932
10933 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
10934
10935 2011-08-29 Juri Linkov <juri@jurta.org>
10936
10937 * isearch.el (isearch-done): Don't display message "Mark saved"
10938 when arg `edit' is non-nil to prevent its flicker in the echo area.
10939
10940 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
10941
10942 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
10943 obsolete packages for deletion.
10944
10945 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
10946
10947 * help-mode.el (help-mode-map): Add special-mode-map to parent.
10948 (help-mode): Derive help-mode from special-mode. Don't invoke
10949 view-mode from help-mode.
10950 (help-xref-override-view-map): Remove.
10951 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
10952 view-mode is not used anymore.
10953
10954 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
10955
10956 * server.el (server-port): Doc fix.
10957
10958 * cus-theme.el (custom-theme-choose-mode): Inherit from
10959 special-mode (Bug#9124).
10960 (custom-theme-choose-mode-map): Add special-mode to parent.
10961
10962 2011-08-28 Alan Mackenzie <acm@muc.de>
10963
10964 * progmodes/cc-fonts.el
10965 (c-make-font-lock-BO-decl-search-function): New function.
10966 (c-basic-matchers-after - "Fontify the clauses after various
10967 keywords"): Extract the three keyword lists for the 3 erroneous
10968 constructs from the list of four, and use the new function above
10969 in place of an old one.
10970
10971 2011-08-28 Deniz Dogan <deniz@dogan.se>
10972
10973 * net/rcirc.el (rcirc-insert-prev-input)
10974 (rcirc-insert-next-input): Remove unused argument.
10975
10976 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10977
10978 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
10979
10980 2011-08-27 Alan Mackenzie <acm@muc.de>
10981
10982 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
10983 handle function pointer parameters properly.
10984
10985 2011-08-27 Martin Rudalics <rudalics@gmx.at>
10986
10987 * window.el (display-buffer-reuse-window): Fix case where
10988 selected window was reused with non-nil OTHER-WINDOW argument.
10989 (Bug#9381)
10990
10991 2011-08-27 Deniz Dogan <deniz@dogan.se>
10992
10993 * net/rcirc.el (rcirc-check-auth-status): Adding support for
10994 oftc's NickServ messages.
10995
10996 2011-08-27 Glenn Morris <rgm@gnu.org>
10997
10998 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
10999
11000 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
11001
11002 * emacs-lisp/package.el (package-install): Call package-initialize
11003 if called interactively.
11004
11005 2011-08-26 Leo Liu <sdl.web@gmail.com>
11006
11007 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
11008
11009 2011-08-25 Juri Linkov <juri@jurta.org>
11010
11011 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
11012 `search-whitespace-regexp' (bug#9364).
11013
11014 2011-08-25 Juri Linkov <juri@jurta.org>
11015
11016 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
11017 `regexp-search-ring' to their global values to protect from
11018 updating by `read-from-minibuffer' (bug#9185).
11019
11020 2011-08-25 Juri Linkov <juri@jurta.org>
11021
11022 * textmodes/ispell.el (ispell-command-loop): Add newline
11023 at the end of the "Use option `i'..." line.
11024
11025 2011-08-25 Juri Linkov <juri@jurta.org>
11026
11027 * battery.el (display-battery-mode): If `battery-status-function'
11028 or `battery-mode-line-format' is nil, display the message and set
11029 `display-battery-mode' to nil (bug#9363).
11030
11031 2011-08-25 Eli Zaretskii <eliz@gnu.org>
11032
11033 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
11034 bidi-string-mark-left-to-right; they are unnecessary now.
11035
11036 2011-08-25 Deniz Dogan <deniz@dogan.se>
11037
11038 * net/quickurl.el: Documentation typo fixes.
11039
11040 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
11041
11042 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
11043
11044 2011-08-25 Glenn Morris <rgm@gnu.org>
11045
11046 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
11047
11048 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
11049 (smtpmail-via-smtp): Handle nil response from smtp.
11050
11051 2011-08-24 Juri Linkov <juri@jurta.org>
11052
11053 * proced.el (proced-marked): Inherit from `error' instead of
11054 `font-lock-warning-face'.
11055
11056 * ibuffer.el (ibuffer-marked-face): Change default face from
11057 `font-lock-warning-face' to `warning'.
11058 (ibuffer-deletion-face): Change default face from
11059 `font-lock-type-face' to `error'.
11060
11061 * battery.el (battery-update): Use the face `error' instead of
11062 `font-lock-warning-face' (bug#6117).
11063
11064 2011-08-24 Juri Linkov <juri@jurta.org>
11065
11066 * faces.el (success): Change face color from "Green3" to
11067 "ForestGreen" on light background (bug#9353).
11068
11069 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
11070
11071 * window.el (quit-window): Rename from quit-restore-window.
11072 Use same arglist as old quit-window.
11073 (frame-auto-delete): Doc fix.
11074
11075 * view.el (view-mode-exit): Use quit-window.
11076
11077 2011-08-24 Juri Linkov <juri@jurta.org>
11078
11079 * isearch.el (isearch-ring-adjust1): Start visiting previous
11080 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
11081 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
11082 for empty search string (when the last search string is reused
11083 automatically) to adjust the isearch ring to the last element and
11084 prepare the correct index for further M-p commands (bug#9185).
11085
11086 2011-08-24 Kenichi Handa <handa@m17n.org>
11087
11088 * international/ucs-normalize.el: If decomposition property of
11089 CHAR is the default one (i.e. a list of CHAR itself), treat it as
11090 nil.
11091 (nfd, nfkd): Likewise.
11092
11093 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
11094
11095 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
11096 from process filters aren't reliably transmitted to the surrounding
11097 accept-process-output.
11098 (mpc-proc-check): New function.
11099 (mpc-proc-sync): Use it (bug#8293)
11100
11101 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
11102
11103 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
11104 Add compatibility functions (bug#9313).
11105
11106 2011-08-23 Eli Zaretskii <eliz@gnu.org>
11107
11108 * cus-start.el (all): Add entry for bidi-paragraph-direction.
11109
11110 * international/uni-bidi.el: Regenerate.
11111
11112 2011-08-23 Kenichi Handa <handa@m17n.org>
11113
11114 * international/charprop.el:
11115 * international/uni-bidi.el:
11116 * international/uni-category.el:
11117 * international/uni-combining.el:
11118 * international/uni-comment.el:
11119 * international/uni-decimal.el:
11120 * international/uni-decomposition.el:
11121 * international/uni-digit.el:
11122 * international/uni-lowercase.el:
11123 * international/uni-mirrored.el:
11124 * international/uni-name.el:
11125 * international/uni-numeric.el:
11126 * international/uni-old-name.el:
11127 * international/uni-titlecase.el:
11128 * international/uni-uppercase.el: Regenerate.
11129
11130 2011-08-23 Martin Rudalics <rudalics@gmx.at>
11131
11132 * help.el (help-window-setup): Fix message displayed when other
11133 window is reused. (Bug#9341)
11134
11135 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
11136
11137 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
11138 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
11139
11140 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
11141 Mark obsolete.
11142 * shell.el (shell-parse-pcomplete-arguments): New function.
11143 (shell-completion-vars): Use it instead (bug#9160).
11144
11145 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
11146
11147 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
11148 strings and comments (bug#9333).
11149
11150 * emacs-lisp/debug.el (debug-arglist): New function.
11151 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
11152 (debug-on-entry-1): Handle interpreted closures (bug#9120).
11153
11154 2011-08-22 Juri Linkov <juri@jurta.org>
11155
11156 * progmodes/compile.el (compilation-mode-font-lock-keywords):
11157 Revert regexp that highlights output switches to its old
11158 pre-2010-10-28 value and remove one `?' from it (bug#9319).
11159
11160 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
11161 to check for empty output (bug#9226).
11162
11163 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
11164
11165 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
11166 symbol-constituent as the default, as that stops font-lock from
11167 working properly (Bug#8843).
11168
11169 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11170
11171 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
11172 `coding-system-for-*' around the process open call to avoid
11173 auth-source side effects.
11174 (smtpmail-try-auth-methods): Expand the secret password.
11175 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
11176 probe hangs.
11177
11178 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
11179
11180 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
11181
11182 * emacs-lisp/find-func.el (find-function-noselect): New arg
11183 lisp-only.
11184
11185 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
11186 signal an error for built-in functions (Bug#6664).
11187
11188 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11189
11190 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
11191 (smtpmail-try-auth-methods): Use it.
11192
11193 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
11194
11195 * font-lock.el (font-lock-fontify-region)
11196 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
11197 (font-lock-default-unfontify-buffer)
11198 (font-lock-default-fontify-region)
11199 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
11200
11201 * progmodes/compile.el (compilation-error-properties):
11202 Fix confusion between file struct and message struct (Bug#9319).
11203 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
11204 `ant' regexp.
11205
11206 * net/browse-url.el (browse-url-firefox): Don't call
11207 browse-url-firefox-sentinel unless using -remote (Bug#9328).
11208
11209 2011-08-20 Glenn Morris <rgm@gnu.org>
11210
11211 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
11212
11213 * tutorial.el (tutorial--default-keys): Update some default bindings.
11214
11215 * files.el (hack-local-variables): Fully ignore case for "mode:".
11216
11217 2011-08-20 Alan Mackenzie <acm@muc.de>
11218
11219 Resolve invalid use of a regexp in regexp-opt.
11220
11221 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
11222 detection for a java annotation.
11223
11224 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
11225 detection for a java annotation.
11226
11227 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
11228 handling for java.
11229 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
11230
11231 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
11232
11233 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
11234 (Bug#9274).
11235
11236 2011-08-20 Alan Mackenzie <acm@muc.de>
11237
11238 Fontify CPP expressions correctly when starting in the middle of
11239 such a construct. Mainly for when jit-lock etc. starts a chunk
11240 here.
11241
11242 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
11243 variable.
11244 (c-make-font-lock-search-form): New function, extracted from
11245 c-make-font-lock-search-function.
11246 (c-make-font-lock-search-function): Use the above function.
11247 (c-make-font-lock-context-search-function): New function.
11248 (c-cpp-matchers): Enhance the preprocessor expression case with
11249 the above function
11250 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
11251 which takes an expression.
11252
11253 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
11254
11255 2011-08-20 Martin Rudalics <rudalics@gmx.at>
11256
11257 * window.el (display-buffer-reuse-window)
11258 (display-buffer-pop-up-window): Don't reuse or split a side
11259 window.
11260
11261 2011-08-19 Glenn Morris <rgm@gnu.org>
11262
11263 * files.el (hack-local-variables-prop-line, hack-local-variables):
11264 Downcase "Mode:". (Bug#9331)
11265
11266 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
11267
11268 * international/characters.el: Add L and R categories.
11269
11270 * subr.el (bidi-string-mark-left-to-right): Rename from
11271 string-mark-left-to-right. Use category search.
11272
11273 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
11274
11275 2011-08-18 Juri Linkov <juri@jurta.org>
11276
11277 * faces.el (error, warning, success): New faces with definitions
11278 copied from old default values of `font-lock-warning-face',
11279 `compilation-warning', `compilation-info' (bug#6117).
11280
11281 * font-lock.el (font-lock-warning-face): Inherit from `error'.
11282
11283 * progmodes/compile.el (compilation-error): Inherit from `error'.
11284 (compilation-warning): Inherit from `warning'.
11285 (compilation-info): Inherit from `success'.
11286
11287 * dired.el (dired-marked): Inherit from `warning'.
11288 (dired-flagged): Inherit from `error'.
11289
11290 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
11291
11292 * mail/smtpmail.el (auth-source): Require to avoid problems with
11293 binding variables (bug#9298). Also clean up some unused
11294 autoloads.
11295
11296 * net/network-stream.el (network-stream-open-starttls):
11297 Support using starttls.el without using gnutls-cli.
11298
11299 2011-08-17 Juri Linkov <juri@jurta.org>
11300
11301 * progmodes/grep.el (rgrep): Handle the case when
11302 `grep-find-command' is a cons cell (bug#9278).
11303
11304 2011-08-17 Martin Rudalics <rudalics@gmx.at>
11305
11306 * window.el (display-buffer-pop-up-frame): Run frame creation
11307 function with BUFFER current (as special-display-popup-frame
11308 does). Reported by Drew Adams.
11309
11310 2011-08-17 Daiki Ueno <ueno@unixuser.org>
11311
11312 * epa-mail.el: Simplify GnuPG group expansion using
11313 epg-expand-group.
11314 (epa-mail-group-alist, epa-mail-group-modtime)
11315 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
11316 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
11317 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
11318 Remove.
11319
11320 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
11321
11322 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
11323
11324 2011-08-16 Alan Mackenzie <acm@muc.de>
11325
11326 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
11327 Correct, to avoid the inside of macros.
11328
11329 2011-08-16 Richard Stallman <rms@gnu.org>
11330
11331 * epa-mail.el: Handle GnuPG group definitions.
11332 (epa-mail-group-alist, epa-mail-group-modtime)
11333 (epa-mail-gnupg-conf-file): New variables.
11334 (epa-mail-parse-groups, epa-mail-sync-groups)
11335 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
11336 (epa-mail-expand-recipients): New functions.
11337 (epa-mail-encrypt): Call epa-mail-expand-recipients.
11338
11339 * mail/rmail.el (rmail-epa-decrypt): New command.
11340
11341 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
11342 Don't bind buffer-read-only, just inhibit-read-only.
11343 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
11344 (epa-decrypt-armor-in-region): Make error message clearer.
11345
11346 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
11347
11348 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
11349 and "a2b" to "ab" for `prefix'.
11350
11351 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
11352
11353 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
11354 filter groups.
11355 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
11356 Fourquet (Bug#8804).
11357
11358 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
11359
11360 * startup.el (argi): Declare as global variable (bug#9275).
11361
11362 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
11363
11364 * subr.el (string-mark-left-to-right): Search the entire string
11365 for RTL script, not just the terminating character. Doc fix.
11366
11367 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
11368
11369 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
11370 New function.
11371 (js--regexp-literal, js-syntax-propertize-function): Remove.
11372 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
11373 (js-mode-map): Don't rebind electric keys.
11374 (js-insert-and-indent): Remove.
11375 (js-mode): Setup electric-layout and electric-indent instead.
11376
11377 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
11378
11379 2011-08-12 Daiki Ueno <ueno@unixuser.org>
11380
11381 * epa.el (epa-progress-callback-function): Fix the logic of
11382 displaying progress.
11383 * epa-file.el (epa-file-insert-file-contents): Make progress
11384 display more user-friendly.
11385 (epa-file-write-region): Ditto.
11386
11387 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
11388
11389 * subr.el (string-mark-left-to-right): New function.
11390
11391 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
11392 Use string-mark-left-to-right.
11393 (list-buffers-noselect): Caller changed.
11394
11395 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
11396 Use string-mark-left-to-right.
11397 (tabulated-list-print): Recenter after moving point.
11398
11399 2011-08-10 Juri Linkov <juri@jurta.org>
11400
11401 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
11402 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
11403 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
11404
11405 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
11406
11407 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
11408 (Bug#7554).
11409
11410 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
11411
11412 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
11413 character. (Bug#6594)
11414
11415 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
11416
11417 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
11418 (image-dired--with-db-file): New macro.
11419 (image-dired-write-tags, image-dired-remove-tag)
11420 (image-dired-create-gallery-lists, image-dired-write-comments)
11421 (image-dired-get-comment, image-dired-mark-tagged-files)
11422 (image-dired-list-tags, image-dired-gallery-generate): Use it.
11423 (image-dired-gallery-generate): Use insert-file-contents.
11424
11425 * time.el (display-time-world-list, display-time-world-display):
11426 * time-stamp.el (time-stamp-string):
11427 * vc/add-log.el (add-change-log-entry): Use setenv instead of
11428 set-time-zone-rule (Bug#7337).
11429
11430 2011-08-08 Daiki Ueno <ueno@unixuser.org>
11431
11432 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
11433 (epg-error-to-string, epg-errors-to-string): New function.
11434 (epg-wait-for-completion): Reverse errors list.
11435 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
11436 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
11437 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
11438 (epg-sign-keys, epg-generate-key-from-file)
11439 (epg-generate-key-from-string): Format errors by using
11440 epg-errors-to-string (bug#9255).
11441 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
11442
11443 2011-08-07 Juri Linkov <juri@jurta.org>
11444
11445 * faces.el (list-faces-display): Remove extra angle bracket
11446 from `help-mode-map'.
11447
11448 * info.el (Info-history-toc-nodes): Doc fix.
11449
11450 * longlines.el (longlines-mode): Doc fix.
11451
11452 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
11453
11454 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
11455 of statements and in a few more cases (bug#9183).
11456
11457 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
11458 New functions.
11459 (cl-transform-lambda): Use them (bug#9239).
11460
11461 2011-08-05 Martin Rudalics <rudalics@gmx.at>
11462
11463 * window.el (display-buffer-same-window)
11464 (display-buffer-same-frame, display-buffer-other-window)
11465 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
11466 (pop-to-buffer-other-window)
11467 (pop-to-buffer-same-frame-other-window)
11468 (pop-to-buffer-other-frame): Make them defuns.
11469 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
11470
11471 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
11472
11473 * subr.el (make-composed-keymap): Move from C. Change calling
11474 convention, and improve docstring to bring attention to a subtle point.
11475 * minibuffer.el (completing-read-default): Adjust accordingly.
11476
11477 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
11478
11479 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
11480 (tramp-open-shell): Use `tramp-shell-quote-argument'.
11481
11482 * net/trampver.el: Update release number.
11483
11484 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
11485
11486 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
11487 "in" (bug#9190).
11488
11489 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11490
11491 * mail/sendmail.el (sendmail-query-once): Restore the current
11492 buffer after querying (bug#9074).
11493
11494 * dired.el (dired-flagged): Use different faces for marked and
11495 flagged files (bug#6117).
11496
11497 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
11498 (bug#4433).
11499
11500 * ido.el (ido-mode): Switch off the message if called
11501 non-interactively.
11502
11503 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
11504 before 587, since it appears that that's more likely to work for
11505 more people.
11506
11507 * cus-edit.el (custom-file): When running under emacs -q, always
11508 refuse to save the customizations, even if the .emacs file doesn't
11509 exist.
11510
11511 * info.el: Remove the `Info-beginning-of-buffer' function
11512 (bug#8325).
11513
11514 * net/network-stream.el (network-stream-open-starttls):
11515 Use `starttls-available-p' to see whether starttls.el can be used.
11516
11517 2011-08-01 Martin Rudalics <rudalics@gmx.at>
11518
11519 * window.el (display-buffer-in-window): Don't set dedicated status
11520 of window here (Bug#9215).
11521 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
11522 (display-buffer-pop-up-side-window)
11523 (display-buffer-in-side-window): Set dedicated status of window here.
11524
11525 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
11526
11527 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
11528 before binding generated-autoload-file.
11529
11530 2011-08-01 Deniz Dogan <deniz@dogan.se>
11531
11532 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
11533
11534 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
11535
11536 Sync with Tramp 2.2.2.
11537
11538 * net/trampver.el: Update release number.
11539
11540 2011-07-30 Juri Linkov <juri@jurta.org>
11541
11542 * dired-aux.el (dired-touch-initial): Remove function.
11543 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
11544 current time, and `default' to the last modification time of the
11545 current marked file (bug#6887).
11546
11547 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
11548
11549 * simple.el (goto-line): Use string-to-number to provide a
11550 numeric argument to read-number (bug#9163).
11551
11552 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
11553
11554 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
11555 connection process, it could be nil.
11556
11557 2011-07-27 Leo Liu <sdl.web@gmail.com>
11558
11559 Simplify url handling in rcirc-mode.
11560
11561 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
11562 (rcirc-browse-url-at-mouse): Remove.
11563 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
11564
11565 2011-07-26 Alan Mackenzie <acm@muc.de>
11566
11567 Fontify bitfield declarations properly.
11568
11569 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
11570 (c-symbol-chars): Now exported as a lang variable.
11571 (c-not-primitive-type-keywords): New lang variable.
11572
11573 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
11574 QT keyword "more" to prevent "more slots: ...." being spuriously
11575 parsed as a bitfield declaration.
11576
11577 * progmodes/cc-engine.el (c-beginning-of-statement-1):
11578 Refactor and enhance to handle bitfield declarations.
11579 (c-punctuation-in): New function.
11580 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
11581 declarations properly.
11582
11583 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
11584
11585 * calendar/icalendar.el (icalendar--all-events): Take care of
11586 multiple vcalendars in a single file.
11587 (icalendar--convert-float-to-ical): Checkdoc fixes.
11588
11589 2011-07-25 Deniz Dogan <deniz@dogan.se>
11590
11591 * image.el (insert-image): Clarifying docstring.
11592
11593 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
11594
11595 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
11596 `tramp-send-command-and-check' if there is no error.
11597 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
11598
11599 2011-07-22 Alan Mackenzie <acm@muc.de>
11600
11601 Prevent cc-langs.elc being loaded at run time.
11602
11603 * progmodes/cc-mode.el: Remove two autoload forms which loaded
11604 cc-langs.
11605
11606 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
11607 "(require 'cc-langs)". Quote a form so it will evaluate at
11608 (cc-mode's) compilation time.
11609
11610 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
11611
11612 * net/tramp.el (tramp-file-name-handler): Avoid recursive
11613 loading. (Bug#9114)
11614
11615 2011-07-21 Martin Rudalics <rudalics@gmx.at>
11616
11617 * window.el (display-buffer-pop-up-window)
11618 (display-buffer-pop-up-side-window)
11619 (display-buffer-in-side-window): Call display-buffer-set-height
11620 and display-buffer-set-width after setting the new window's
11621 buffer so `fit-window-to-buffer' and friends work on the right buffer.
11622
11623 2011-07-20 Sam Steingold <sds@gnu.org>
11624
11625 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
11626 (etags-tags-included-tables): Call `convert-standard-filename' on
11627 the file names contained in TAGS so that windows Emacs can handle
11628 TAGS files created by cygwin ctags.
11629
11630 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
11631
11632 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
11633 which apparently didn't work.
11634
11635 2011-07-19 Roland Winkler <winkler@gnu.org>
11636
11637 * proced.el (proced-send-signal): For *Marked Processes* buffer
11638 put point at beginning of buffer.
11639
11640 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
11641
11642 * proced.el (proced-format): Make header lines align with the text
11643 (bug#1779).
11644
11645 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11646
11647 * view.el (view-buffer): Allow running in `special' modes if we're
11648 visiting a file (bug#8615).
11649
11650 2011-07-19 Martin Rudalics <rudalics@gmx.at>
11651
11652 * window.el (display-buffer-alist-of-strings-p)
11653 (display-buffer-alist-set-1, display-buffer-alist-set-2):
11654 New functions.
11655 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
11656 more accurately.
11657
11658 2011-07-18 Alan Mackenzie <acm@muc.de>
11659
11660 Fontify declarators properly when, e.g., a jit-lock chunk begins
11661 inside a declaration.
11662
11663 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
11664
11665 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
11666 New function.
11667 (c-complex-decl-matchers): Insert reference to
11668 c-font-lock-enclosing-decls.
11669
11670 * progmodes/cc-engine.el (c-backward-single-comment):
11671 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
11672 to nil around calls to (forward-comment -1).
11673
11674 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
11675
11676 * image.el (put-image): Doc typo fix.
11677
11678 * progmodes/etags.el (tags-search): Doc typo fix.
11679
11680 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
11681 password if we get errors 550 to 554.
11682
11683 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
11684
11685 * net/gnutls.el (gnutls-log-level): Remove.
11686
11687 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
11688 indentation character (bug#6380).
11689
11690 * files.el (buffer-offer-save): Made permanently local (bug#6241).
11691
11692 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
11693 to clarify what the problem is (bug#4291).
11694
11695 * simple.el (current-kill): Clarify what
11696 `interprogram-paste-function' does (bug#7500).
11697 (auto-fill-mode): Document `auto-fill-function' in relation to
11698 `auto-fill-mode' (bug#2470).
11699
11700 2011-07-16 Lawrence Mitchell <wence@gmx.li>
11701
11702 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
11703 method if slot is read-only (bug#9035).
11704
11705 2011-07-16 Martin Rudalics <rudalics@gmx.at>
11706
11707 * frame.el (select-frame-set-input-focus): New argument NORECORD.
11708 * window.el (pop-to-buffer): Select window used even if it was
11709 selected before, see discussion of (Bug#8615), (Bug#6954).
11710 Pass argument NORECORD on to select-frame-set-input-focus.
11711
11712 2011-07-15 Glenn Morris <rgm@gnu.org>
11713
11714 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
11715 Respect help-form.
11716
11717 2011-07-09 Lawrence Mitchell <wence@gmx.li>
11718
11719 * net/gnutls.el (gnutls-min-prime-bits): New variable.
11720 (gnutls-negotiate): Use it.
11721
11722 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
11723
11724 * net/gnutls.el (gnutls-negotiate):
11725 Upcase `gnutls-algorithm-priority'.
11726
11727 2011-07-15 Glenn Morris <rgm@gnu.org>
11728
11729 * jka-compr.el (jka-compr-verbose): Move from here...
11730 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
11731 Add missing :version tag.
11732 * info.el: No need to require jka-compr when compiling.
11733
11734 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
11735
11736 * net/gnutls.el (gnutls-algorithm-priority): New variable.
11737 (gnutls-negotiate): Use it.
11738
11739 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
11740
11741 * info.el (Info-beginning-of-buffer): New command.
11742 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
11743 announcing `b' as the key (bug#8325).
11744 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
11745
11746 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
11747
11748 * international/mule-cmds.el
11749 (describe-specified-language-support): Make the error message
11750 clearer (bug#8905).
11751
11752 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
11753
11754 * isearch.el (isearch-barrier): Add a doc string, since it's
11755 mentioned in a function doc string (bug#8678).
11756
11757 2011-07-15 Martin Rudalics <rudalics@gmx.at>
11758
11759 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
11760 buffer argument (Bug#9083) and self-identifying label argument.
11761
11762 2011-07-15 Glenn Morris <rgm@gnu.org>
11763
11764 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
11765
11766 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11767
11768 * man.el (Man-fontify-manpage): Fix message when formatting the
11769 man page (bug#7929).
11770
11771 2011-07-14 Eli Zaretskii <eliz@gnu.org>
11772
11773 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
11774 argument LRM; if non-nil, append an invisible LRM character to the
11775 buffer name.
11776 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
11777 last argument non-nil, when formatting buffer names.
11778 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
11779 paragraph direction.
11780
11781 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11782
11783 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
11784 the man page name (bug#7929).
11785
11786 * image.el (put-image): Mention the `put-image' overlay property
11787 (bug#7834).
11788
11789 * scroll-bar.el (set-scroll-bar-mode): Mention that
11790 `scroll-bar-mode' lists the values (bug#7772).
11791
11792 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
11793 command (bug#7729).
11794
11795 * rect.el (apply-on-rectangle): Return the point after the last
11796 operation.
11797 (string-rectangle): Go to the point after the last operation
11798 (bug#7522).
11799
11800 * printing.el (pr-toggle-region): Clarify the documentation
11801 slightly (bug#7493).
11802
11803 * time.el (display-time-update):
11804 Allow `display-time-mail-function' to return nil (bug#7158).
11805 Fix suggested by Detlev Zundel.
11806
11807 * vc/diff.el (diff): Clarify the order the file names are read
11808 (bug#7111).
11809
11810 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
11811 the doc string (bug#7015).
11812
11813 * font-lock.el (font-lock-maximum-decoration): Mention what
11814 numeric levels mean (bug#6935).
11815
11816 * startup.el (initial-buffer-choice): Don't mention the `none'
11817 selection, which is against policy.
11818
11819 2011-07-14 Martin Rudalics <rudalics@gmx.at>
11820
11821 * window.el (display-buffer-normalize-special):
11822 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
11823
11824 2011-07-14 Eli Zaretskii <eliz@gnu.org>
11825
11826 * subr.el (version<, version<=, version=): Mention "-CVS" and
11827 "-12345" alpha version numbers.
11828
11829 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
11830
11831 * bindings.el: Add advertised binding for set-mark-command
11832 (Bug#5772).
11833
11834 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
11835
11836 * bindings.el (mode-line-other-buffer):
11837 * bookmark.el (bookmark-bmenu-2-window):
11838 * bs.el (bs-cycle-next, bs-cycle-previous):
11839 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
11840 switch-to-buffer.
11841
11842 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
11843 Delete.
11844
11845 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
11846
11847 * follow.el (follow-debug-message, follow-redisplay):
11848 * jka-cmpr-hook.el (with-auto-compression-mode):
11849 Fix typos in docstrings.
11850
11851 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11852
11853 * subr.el (with-silent-modifications): Clarify somewhat what the
11854 macro inhibits (bug#6525).
11855
11856 * simple.el (eval-expression): Note what it does if called
11857 interactively (bug#6495).
11858
11859 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
11860
11861 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
11862 Use pop-to-buffer buffer-or-name if it is nil.
11863
11864 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
11865 Remove switch-to-buffer.
11866
11867 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11868
11869 * files.el (make-directory): Clarify that an error will be raised
11870 if there's an error (bug#6397).
11871
11872 * startup.el (initial-buffer-choice): Add `none' as a choice
11873 (bug#6234).
11874
11875 * subr.el (add-hook): Clarify section about buffer-local hooks
11876 (bug#6218).
11877
11878 * dired.el (dired-flagged): Clarify doc string (bug#6117).
11879
11880 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
11881
11882 * tabify.el (untabify): Preserve the current column so that point
11883 doesn't move (bug#6032).
11884
11885 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11886
11887 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
11888 Rewrite to avoid awkward possessive "s" (bug#5986).
11889
11890 2011-07-13 Glenn Morris <rgm@gnu.org>
11891
11892 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
11893 (dired-insert-directory): Give a message the first time
11894 if ls is found not to support --dired.
11895
11896 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11897
11898 * simple.el (toggle-truncate-lines): Clarify what is toggled
11899 (bug#5580). Text by Drew Adams.
11900
11901 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
11902
11903 * simple.el (blink-matching-open): Make the error message from the
11904 last change less verbose.
11905
11906 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
11907
11908 * font-lock.el (font-lock-comment-face): Use the high contrast
11909 "yellow" color for font-lock-comment-face on low color terminals
11910 using a dark background color (bug#4221).
11911
11912 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11913
11914 * dired.el (dired-insert-set-properties): Make the doc string
11915 reflect what it does now (bug#5325).
11916
11917 * simple.el (blink-matching-open): Say that we were unable to find
11918 the match within the limit, if we're limited (bug#5122).
11919
11920 * international/mule-cmds.el (prefer-coding-system): Add an
11921 example (bug#4869).
11922
11923 * progmodes/etags.el (tags-search): Document `file-list-form'
11924 (bug#4731).
11925
11926 2011-07-13 Lawrence Mitchell <wence@gmx.li>
11927
11928 * net/browse-url.el (browse-url-default-browser)
11929 (browse-url-browser-function): Make the default browser choice a
11930 bit more logical (bug#4300). Also clean up the doc string.
11931
11932 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
11933
11934 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
11935 binary endings (bug#4440).
11936
11937 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11938
11939 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
11940 which can be pretty annoying (bug#8971).
11941
11942 * jka-compr.el (jka-compr-verbose): New variable, and use
11943 throughout (bug#8971).
11944
11945 * info.el (Info-find-file): Fall back on the installation
11946 directory if we can't find the info node anywhere else.
11947
11948 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
11949
11950 * vc/vc.el (vc-revert-file):
11951 Don't set file time-stamp in the past. (Bug#5181)
11952
11953 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
11954
11955 * files.el (after-find-file): Give a better error message when
11956 trying to find a symlink that points to a file that doesn't exist
11957 (bug#4398).
11958
11959 * progmodes/cc-vars.el: Remove (probably) misleading comment
11960 (bug#4396).
11961
11962 2011-07-12 Johan Bockgård <bojohan@gnu.org>
11963
11964 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
11965
11966 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
11967
11968 * mouse-sel.el: Hack restoring functionality, while keeping
11969 compatibility with 2010-07-03 changes to mouse selection.
11970 (mouse-sel-primary-overlay): New var.
11971 (mouse-sel-selection-alist): Use it.
11972 (mouse-sel-mode): Doc fix; remove points that are default features
11973 of mouse.el.
11974
11975 2011-07-12 Johan Bockgård <bojohan@gnu.org>
11976
11977 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11978 Fix previous fix (bug#2490).
11979
11980 2011-07-12 Roland Winkler <winkler@gnu.org>
11981
11982 * textmodes/bibtex.el (bibtex-initialize):
11983 Use pop-to-buffer-same-window.
11984 (bibtex-search-entries): Fix interactive call.
11985
11986 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
11987
11988 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11989 Fontise bytecomp Error lines more correctly (bug#2490).
11990 Fix suggested by Johan Bockgård.
11991
11992 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
11993
11994 * dired-x.el (dired-guess-default): Use `delete-dups'.
11995
11996 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
11997
11998 * dired.el (dired-mark-prompt):
11999 * dired-aux.el (dired-read-shell-command): Doc fix.
12000
12001 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12002
12003 * mail/sendmail.el (sendmail-query-once):
12004 Use `customize-save-variable' unconditionally, now that it works under
12005 emacs -Q.
12006
12007 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
12008
12009 * cus-edit.el (custom-file): Take an optional no-error variable.
12010 (customize-save-variable): Set the variable, and give a warning if
12011 running under "emacs -q".
12012
12013 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
12014
12015 * loadhist.el (unload-feature-special-hooks):
12016 Add `auto-coding-functions', `fill-nobreak-predicate' and
12017 `find-directory-functions' (bug#5327).
12018
12019 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12020
12021 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
12022
12023 * cus-edit.el (custom-guess-name-alist): -alist variables should
12024 use the `alist' type (bug#3120). Suggested by Drew Adams.
12025
12026 * printing.el: Add documentation to all the `pr-toggle-' commands.
12027
12028 2011-07-11 Leo Liu <sdl.web@gmail.com>
12029
12030 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
12031 backends where it makes sense (bug#2623).
12032
12033 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12034
12035 * dired-x.el (dired-guess-default): Remove duplicate shell command
12036 entries (bug#2028).
12037 (dired-guess-default): Fix grammar in doc string (bug#2028).
12038 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
12039
12040 * subr.el (remove-duplicates): New conveniency function.
12041
12042 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12043
12044 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
12045 (bug#1526).
12046
12047 2011-07-10 Martin Rudalics <rudalics@gmx.at>
12048
12049 * window.el (display-buffer-normalize-default): Don't invert
12050 meaning of even-window-heights. Reported by Eli Zaretskii
12051 <eliz@gnu.org>.
12052
12053 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
12054
12055 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
12056
12057 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
12058
12059 * window.el (display-buffer): Fix arguments to
12060 display-buffer-reuse-window in last change.
12061
12062 * faces.el (link): Use a less saturated blue on light backgrounds.
12063
12064 * startup.el (fancy-startup-text, fancy-about-text)
12065 (fancy-startup-tail): Use font-lock faces, for background safety.
12066
12067 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
12068
12069 * emulation/viper-cmd.el (viper-change-state-to-vi):
12070 Limit triggering of abbrev expansion (Bug#9038).
12071
12072 2011-07-09 Martin Rudalics <rudalics@gmx.at>
12073
12074 * window.el (display-buffer-default-specifiers): Remove.
12075 (display-buffer-macro-specifiers): Remove default specifiers.
12076 (display-buffer-alist): Default to nil.
12077 (display-buffer-reuse-window): New optional argument other-window.
12078 (display-buffer-pop-up-window): Allow splitting internal
12079 windows. Check whether a live window was created.
12080 (display-buffer-other-window-means-other-frame)
12081 (display-buffer-normalize-arguments): Rename to
12082 display-buffer-normalize-argument and rewrite. Set the
12083 other-window specifier.
12084 (display-buffer-normalize-special): New function.
12085 (display-buffer-normalize-options): Rename to
12086 display-buffer-normalize-default and rewrite.
12087 (display-buffer-normalize-options-inhibit): Remove.
12088 (display-buffer-normalize-specifiers): Rewrite.
12089 (display-buffer): Process other-window specifier and call
12090 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
12091 more faithfully.
12092 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
12093 (display-buffer-alist-set): Don't handle 'unset default values.
12094 (display-buffer-in-window, display-buffer-alist-set):
12095 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
12096 <tassilo@member.fsf.org>.
12097
12098 2011-07-09 Leo Liu <sdl.web@gmail.com>
12099
12100 * register.el (insert-register): Restore accidental change on
12101 2011-06-26. (Bug#9028)
12102
12103 2011-07-09 Glenn Morris <rgm@gnu.org>
12104
12105 * subr.el (remq): Handle the empty list. (Bug#9024)
12106
12107 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
12108
12109 * mail/sendmail.el (send-mail-function): No longer delay custom
12110 initialization.
12111 * custom.el (custom-initialize-delay): Doc fix.
12112
12113 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
12114
12115 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
12116
12117 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
12118
12119 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
12120 human-friendly prompt.
12121
12122 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
12123
12124 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
12125 provided by a particular plugin.
12126
12127 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
12128
12129 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
12130 save customizations (with "emacs -Q"), just set the variable
12131 instead of erroring out.
12132
12133 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
12134
12135 2011-07-08 Juri Linkov <juri@jurta.org>
12136
12137 * arc-mode.el (archive-zip-expunge, archive-zip-update)
12138 (archive-zip-update-case): Use 7z if found by `executable-find'.
12139 The order of searching the available programs is the same as in
12140 `archive-zip-extract' (bug#8968).
12141
12142 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
12143
12144 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
12145 (menu-bar-options-menu): Tweak descriptions.
12146
12147 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
12148
12149 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
12150 menu items into verb phrases (bug#1421). Also refill to fit under
12151 80 columns.
12152
12153 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
12154
12155 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
12156 (Info-read-node-name): Doc fix (Bug#1084).
12157
12158 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
12159 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
12160 (end-of-sexp, beginning-of-sexp)
12161 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
12162 (forward-symbol, forward-same-syntax, word-at-point)
12163 (sentence-at-point): Doc fix (Bug#1144).
12164
12165 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
12166
12167 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
12168 should cover it (bug#1281).
12169
12170 * cus-edit.el (custom-show): Mark as obsolete.
12171
12172 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12173 negotiation fails, then possibly try again with a non-encrypted
12174 connection (bug#9017).
12175
12176 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
12177 be used.
12178
12179 2011-07-07 Richard Stallman <rms@gnu.org>
12180
12181 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
12182 property, and handle its changed format.
12183 Look for the correct line number.
12184 Use file's line contents (but not past first =) to find
12185 correct line in message.
12186
12187 2011-07-07 Kenichi Handa <handa@m17n.org>
12188
12189 * international/characters.el (build-unicode-category-table):
12190 Delete it.
12191 (unicode-category-table): Set it by unicode-property-table-internal.
12192
12193 * international/mule-cmds.el (char-code-property-alist): Move to
12194 to src/chartab.c.
12195 (get-char-code-property): Call unicode-property-table-internal to
12196 load a file. Call get-unicode-property-internal where necessary.
12197 (put-char-code-property): Call unicode-property-table-internal to
12198 load a file. Call put-unicode-property-internal where necessary.
12199 put-unicode-property-internal where necessary.
12200 (char-code-property-description):
12201 Call unicode-property-table-internal to load a file.
12202
12203 * international/charprop.el:
12204 * international/uni-bidi.el:
12205 * international/uni-category.el:
12206 * international/uni-combining.el:
12207 * international/uni-comment.el:
12208 * international/uni-decimal.el:
12209 * international/uni-decomposition.el:
12210 * international/uni-digit.el:
12211 * international/uni-lowercase.el:
12212 * international/uni-mirrored.el:
12213 * international/uni-name.el:
12214 * international/uni-numeric.el:
12215 * international/uni-old-name.el:
12216 * international/uni-titlecase.el:
12217 * international/uni-uppercase.el: Regenerate.
12218
12219 * loadup.el: Load international/charprop.el before
12220 international/characters.
12221
12222 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
12223
12224 * window.el (next-buffer, previous-buffer): Signal an error if
12225 called from a minibuffer window.
12226
12227 * bindings.el: Revert 2011-07-04 change.
12228
12229 2011-07-06 Richard Stallman <rms@gnu.org>
12230
12231 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
12232 (rmail-mime-insert-bulk, rmail-mime-insert-text):
12233 Treat markers like ints.
12234 (rmail-mime-entity): Doc fix.
12235
12236 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
12237
12238 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
12239 defcustom again for backwards compatibility.
12240
12241 * simple.el (shell-command-on-region): Fill.
12242
12243 * dired-aux.el (dired-kill-line): Add a doc string.
12244
12245 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
12246 to "\\sw\\|\\s_" (bug#358).
12247
12248 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
12249 (dired-unmark-backward): Ditto.
12250 (dired-flag-backup-files): Ditto.
12251
12252 * dired-x.el (dired-mark-sexp): Ditto.
12253
12254 2011-07-06 Richard Stallman <rms@gnu.org>
12255
12256 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
12257 (rmail-mime-entity): New arg TRUNCATED.
12258 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
12259 New functions.
12260 (rmail-mime-save): Warn if entity is truncated.
12261 (rmail-mime-toggle-hidden): Likewise, for showing.
12262 (rmail-mime-process-multipart): Record when an entity is truncated.
12263
12264 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
12265 if ENTITY is a string.
12266
12267 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
12268
12269 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
12270 of faces when `M-C-x'-ing their definitions (bug#8378).
12271 Also clean up the code slightly.
12272
12273 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
12274 because that makes the colors go away.
12275
12276 * mail/sendmail.el (send-mail-function): Change the default to
12277 `sendmail-query-once'.
12278 (sendmail-query-once): Add an autoload cookie.
12279
12280 * net/network-stream.el (network-stream-open-starttls): Try using
12281 a plain connection even if the server offered STARTTLS, and we
12282 kinda wanted to use it, if Emacs doesn't have any STARTTLS
12283 capability. This should make smtpmail.el work in slightly more
12284 configurations.
12285
12286 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
12287
12288 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
12289 New defun.
12290 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
12291
12292 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
12293
12294 * progmodes/sql.el: Version 3.0
12295 (sql-product-alist): Add product :completion-object,
12296 :completion-column, and :statement attributes.
12297 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
12298 (sql-mode-syntax-table): Mark all punctuation.
12299 (sql-font-lock-keywords-builder): Temporarily remove fallback on
12300 ansi keywords.
12301 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
12302 (sql-mode-oracle-font-lock-keywords): Improve.
12303 (sql-oracle-show-reserved-words): New function for development.
12304 (sql-product-font-lock): Simplify for source code buffers.
12305 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
12306 New functions.
12307 (sql-highlight-product): Set product specific syntax table.
12308 (sql-mode-map): Add statement movement functions.
12309 (sql-ansi-statement-starters, sql-oracle-statement-starters):
12310 New variable.
12311 (sql-statement-regexp, sql-beginning-of-statement)
12312 (sql-end-of-statement, sql-signum): New functions.
12313 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
12314 (sql-show-sqli-buffer): Bug fix.
12315 (sql-interactive-mode): Store connection data as buffer local.
12316 (sql-connect): Add NEW-NAME parameter. Redesign interaction
12317 with sql-interactive-mode.
12318 (sql-save-connection): Save buffer local settings.
12319 (sql-connection-menu-filter): Change menu entry name.
12320 (sql-product-interactive): Bug fix.
12321 (sql-preoutput-hold): New variable.
12322 (sql-interactive-remove-continuation-prompt): Bug fixes.
12323 (sql-debug-redirect): New variable.
12324 (sql-str-literal): New function.
12325 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
12326 Redesign.
12327 (sql-oracle-save-settings, sql-oracle-restore-settings)
12328 (sql-oracle-list-all, sql-oracle-list-table): New functions.
12329 (sql-completion-object, sql-completion-column)
12330 (sql-completion-sqlbuf): New variables.
12331 (sql-build-completions-1, sql-build-completions)
12332 (sql-try-completion): New functions.
12333 (sql-read-table-name): Use them.
12334 (sql-contains-names): New buffer local variable.
12335 (sql-list-all, sql-list-table): Use it.
12336 (sql-oracle-completion-types): New variable.
12337 (sql-oracle-completion-object, sql-sqlite-completion-object)
12338 (sql-postgres-completion-object): New functions.
12339
12340 2011-07-06 Glenn Morris <rgm@gnu.org>
12341
12342 * window.el (pop-to-buffer): Doc fix.
12343
12344 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
12345
12346 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
12347
12348 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
12349
12350 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
12351
12352 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
12353
12354 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
12355
12356 * button.el (button): Inherit from link face. Suggested by Dan
12357 Nicolaescu.
12358
12359 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
12360
12361 * progmodes/gdb-mi.el: Fit in 80 columns.
12362 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
12363 switch-to-buffer.
12364
12365 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
12366 if imenu is simply not configured (bug#8941).
12367
12368 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
12369
12370 * allout.el (allout-post-undo-hook): New allout outline-change
12371 event hook to signal undo activity.
12372 (allout-post-command-business): Run allout-post-undo-hook if an
12373 undo just occurred.
12374 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
12375 * allout-widgets.el (allout-widgets-after-undo-function):
12376 Ensure the integrity of the current item's decoration after it has been
12377 in the vicinity of an undo.
12378 (allout-widgets-mode): Include allout-widgets-after-undo-function
12379 on the new allout-post-undo-hook.
12380
12381 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
12382
12383 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
12384 Let define-derived-mode define it.
12385 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
12386 cycles of abbrev-table inheritance (bug#8998).
12387
12388 2011-07-05 Roland Winkler <winkler@gnu.org>
12389
12390 * textmodes/bibtex.el: Add support for biblatex.
12391 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
12392 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
12393 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
12394 (bibtex-entry-alist, bibtex-field-alist): New variables.
12395 (bibtex-entry-field-alist): Obsolete alias for
12396 bibtex-BibTeX-entry-alist.
12397 (bibtex-entry-alist, bibtex-field-alist): New widgets.
12398 (bibtex-set-dialect): New command.
12399 (bibtex-entry-type, bibtex-entry-head)
12400 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
12401 Bind via bibtex-set-dialect.
12402 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
12403 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
12404 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
12405 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
12406 Define via bibtex-set-dialect.
12407 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
12408 Obey bibtex-no-opt-remove-re.
12409 (bibtex-vec-push, bibtex-vec-incr): New functions.
12410 (bibtex-format-entry, bibtex-field-list)
12411 (bibtex-print-help-message, bibtex-validate)
12412 (bibtex-search-entries): Use new format of bibtex-entry-alist.
12413
12414 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
12415
12416 * progmodes/compile.el (compilation-goto-locus):
12417 * net/tramp-cmds.el (tramp-append-tramp-buffers):
12418 * bs.el (bs-cycle-next, bs-cycle-previous):
12419 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
12420 * bindings.el (mode-line-other-buffer):
12421 * autoinsert.el (auto-insert):
12422 * arc-mode.el (archive-extract):
12423 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
12424
12425 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
12426
12427 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
12428 Fix check of `emacs-lock-unlockable-modes'.
12429 Coerce true values of `emacs-lock--try-unlocking' to t.
12430
12431 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
12432
12433 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
12434 * emacs-lock.el: New file.
12435
12436 2011-07-05 Julien Danjou <julien@danjou.info>
12437
12438 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
12439 than `boundp' to check if face is set.
12440
12441 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
12442
12443 * register.el (registerv-make):
12444 * window.el (window-min-height): Fix typos in docstrings.
12445
12446 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
12447
12448 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
12449 Update doc string.
12450
12451 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
12452
12453 * server.el (server-execute): Catch quit and call
12454 `server-return-error' to pass the error back to emacsclient and
12455 close the connection (bug#8942).
12456
12457 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
12458
12459 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
12460 insecure exception for current topic. Also note that auto-saves
12461 are handled differently.
12462
12463 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
12464 State variables for tracking auto-save inhibition situation.
12465
12466 (allout-write-contents-hook-handler): Rename from
12467 'allout-write-file-hook-handler', and describe how it depends on
12468 write-contents-functions sensitivity to non-nil value to prevent
12469 file write.
12470
12471 (allout-auto-save-hook-handler): Remove. auto-save does not check
12472 this in individual buffers, only in the starting buffer, so this
12473 is not the right way for us to inhibit auto-save in a buffer
12474 according to its condition.
12475
12476 (allout-mode): Use new allout-write-contents-hook-handler, and
12477 only with write-contents-functions. Remove auto-save provisions -
12478 they're implemented elsewhere.
12479
12480 (allout-before-change-handler): If undo is in progress, note that
12481 for attention of allout-post-command-business.
12482
12483 (allout-post-command-business): If the command we're following was
12484 an undo, check for change in the status of encrypted items and
12485 adjust auto-save inhibitions accordingly.
12486
12487 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
12488 according to whether there are or aren't any plain-text topics
12489 pending encryption.
12490
12491 (allout-inhibit-auto-save-info-for-decryption):
12492 Adjust buffer-saved-size and some allout state to inhibit auto-saves
12493 if there are plain-text topics pending encryption.
12494
12495 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
12496 buffer-saved-size and some allout state to not inhibit auto-saves
12497 if there are no longer any plain-text topics pending encryption.
12498
12499 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
12500 No longer provide for exemption of the current topic.
12501
12502 2011-07-04 Juri Linkov <juri@jurta.org>
12503
12504 Add 7z operations to delete and save changed members (bug#8968).
12505 * arc-mode.el (archive-7z-expunge, archive-7z-update):
12506 New defcustoms.
12507 (archive-7z-write-file-member): New function.
12508 (archive-7z-summarize): Fix the number of dashes in the
12509 listing output.
12510
12511 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
12512
12513 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
12514 (bug#8958).
12515
12516 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
12517
12518 * bindings.el: Ignore next-buffer and previous-buffer in
12519 minibuffer-local-map.
12520
12521 * font-lock.el (font-lock-builtin-face): Change light background
12522 color to dark slate blue (Bug#6693).
12523
12524 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
12525
12526 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
12527
12528 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
12529
12530 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
12531 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
12532 Add switch-to-buffer.
12533
12534 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12535
12536 * isearch.el (isearch-search-fun-function): Clarify further the
12537 meaning of the function returned.
12538
12539 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
12540
12541 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
12542
12543 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
12544 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
12545 Use it.
12546 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
12547 `tramp-default-remote-path' does not exist.
12548 (tramp-send-command-and-read): New optional argument NOERROR.
12549 (tramp-open-connection-setup-interactive-shell)
12550 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
12551 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
12552 (tramp-process-sentinel): Flush also process' connection property.
12553 (tramp-sh-handle-start-file-process): Do not set process
12554 sentinel. It is done now ...
12555 (tramp-maybe-open-connection): ... here. (Bug#8929)
12556
12557 2011-07-04 MON KEY <monkey@sandpframing.com>
12558
12559 * play/animate.el (animate-string): Doc fixes and allow changing
12560 the buffer name (bug#5417).
12561
12562 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12563
12564 * play/animate.el (animation-buffer-name): Rename from *animate*.
12565
12566 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
12567
12568 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
12569 This is simpler and helps future-proof the code.
12570 (timer-until): Use time-subtract and float-time.
12571 (timer--time-less-p): Use time-less-p.
12572
12573 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
12574
12575 * type-break.el (timep): Use the value of `float-time' to avoid a
12576 byte-compiler warning.
12577
12578 * server.el (server-eval-and-print): Return any result, even nil.
12579
12580 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
12581
12582 * type-break.el: Accept time formats that the builtins accept.
12583 (timep, type-break-time-difference): Accept any format that
12584 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
12585 This is simpler and helps future-proof the code.
12586 (type-break-time-difference): Round rather than ignoring
12587 subseconds components.
12588
12589 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12590
12591 * info.el (Info-apropos-matches): Make non-interactive, since it
12592 doesn't seem to do anything useful as a command (bug#8829).
12593
12594 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
12595
12596 * frame.el (frame-background-mode, frame-set-background-mode):
12597 Move from faces.el.
12598 (frame-default-terminal-background): New function.
12599
12600 * custom.el (custom-push-theme): Don't record faces in `changed'
12601 theme; this doesn't work correctly for per-frame face settings.
12602 (disable-theme): Use face-set-after-frame-default to reset faces.
12603 (custom--frame-color-default): New function.
12604
12605 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12606
12607 * dired.el (dired-flagging-regexp): Remove unused variable
12608 (bug#8769).
12609
12610 2011-03-29 Kevin Ryde <user42@zip.com.au>
12611
12612 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12613 `perl-Test2' extend to match possible "fail #N" rep count
12614 (bug#8377).
12615
12616 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12617
12618 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
12619 `smtpmail-via-smtp' now returns the error instead of nil.
12620
12621 * isearch.el (isearch-search-fun-function): Clarify the doc string
12622 (bug#8101).
12623
12624 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
12625
12626 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
12627 unnecessary spaces (bug#8987).
12628
12629 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12630
12631 * net/network-stream.el (open-network-stream): Use the
12632 :end-of-capability command thoughout.
12633
12634 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
12635
12636 * net/network-stream.el (open-network-stream): Add the
12637 :end-of-capability command parameter, used by pop3.el.
12638
12639 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12640
12641 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
12642
12643 * fringe.el (fringe-query-style): Remove redundant text " (type ?
12644 for list)" (bug#6475).
12645
12646 * files.el (file-expand-wildcards): Ignore non-readable
12647 sub-directories while trying to find matches instead of signaling
12648 an error (bug#6297).
12649
12650 * man.el (Man-reference-regexp): Allow matching possible
12651 word-wrapped references (bug#6289).
12652
12653 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
12654 for consistency with the other vc buffers (bug#6197).
12655 (vc-checkin): Ditto.
12656
12657 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
12658
12659 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
12660
12661 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12662
12663 * custom.el (defcustom): Clarify that :set is only used in the
12664 Customize user interface (bug#6089).
12665
12666 * progmodes/flymake.el (flymake-mode): If the buffer isn't
12667 associated with a file, refuse to run instead of erroring out
12668 (bug#6084).
12669
12670 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
12671 the doc string, since it appears that using `fill-column' always
12672 controls the width (bug#7845).
12673
12674 * simple.el (shell-command-on-region): Say where the error output
12675 went if `shell-command-default-error-buffer' is set (bug#6857).
12676
12677 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
12678
12679 * allout.el (allout-yank-processing): Adjust cursor position for
12680 backwards-deleted space.
12681
12682 (allout-rebullet-heading): Register changes with
12683 allout-exposure-changed-hook, so the modified topic is properly
12684 decorated.
12685
12686 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12687
12688 * minibuffer.el (completion-in-region): Document PREDICATE
12689 (bug#7136).
12690
12691 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
12692 of keyword/argument pairs (bug#6904).
12693
12694 * replace.el (multi-occur):
12695 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
12696
12697 2011-07-02 Drew Adams <drew.adams@oracle.com>
12698
12699 * dired.el (dired-mark-if): Make the message about whether it's
12700 marking or unmarking clearer (bug#8523).
12701
12702 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12703
12704 * disp-table.el (display-table-print-array): New function.
12705 (describe-display-table): Use it to print the vectors more pretty
12706 (Bug#8859).
12707
12708 2011-07-02 Martin Rudalics <rudalics@gmx.at>
12709
12710 * window.el (window-state-get-1): Don't assign clone numbers.
12711 Add clone-of item to list of window parameters.
12712 (window-state-put-2): Don't process clone numbers.
12713 (display-buffer-alist): Fix doc-string.
12714
12715 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
12716
12717 * subr.el (remq): Don't allocate if it's not needed.
12718 (keymap--menu-item-binding, keymap--menu-item-with-binding)
12719 (keymap--merge-bindings): New functions.
12720 (keymap-canonicalize): Use them to refine the canonicalization.
12721 * minibuffer.el (minibuffer-local-completion-map)
12722 (minibuffer-local-must-match-map): Move initialization from C.
12723 (minibuffer-local-filename-completion-map): Move initialization from C;
12724 don't inherit from anything here.
12725 (minibuffer-local-filename-must-match-map): Make obsolete.
12726 (completing-read-default): Use make-composed-keymap to combine
12727 minibuffer-local-filename-completion-map with either
12728 minibuffer-local-must-match-map or
12729 minibuffer-local-filename-completion-map.
12730
12731 2011-07-01 Glenn Morris <rgm@gnu.org>
12732
12733 * type-break.el (type-break-time-sum): Use dolist.
12734
12735 * textmodes/flyspell.el (flyspell-word-search-backward):
12736 Replace CL function.
12737
12738 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
12739
12740 * mouse.el (mouse--strip-first-event): New function.
12741 (function-key-map): Use it to map fringe clicks to normal clicks
12742 by default.
12743
12744 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
12745 (vc-bzr-revision-completion-table): Add support for annotate and date.
12746
12747 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
12748 inherit from parent.
12749
12750 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
12751
12752 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
12753 (dired-show-file-type): Doc fixup (bug#8818).
12754
12755 * dired.el (dired-mode): Fix up the doc string as suggested by
12756 Drew Adams (bug#8817).
12757
12758 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
12759 cookie, since the manual says that it should be possible to add
12760 this function to `find-file-hook' (bug#8709).
12761
12762 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
12763
12764 * progmodes/cfengine.el: Moved all cfengine3.el functionality
12765 here. Noted Ted Zlatanov as the maintainer.
12766 (cfengine-common-settings, cfengine-common-syntax): New functions
12767 to set up common things between `cfengine-mode' and
12768 `cfengine3-mode'.
12769 (cfengine3-mode): New mode.
12770 (cfengine3-defuns cfengine3-defuns-regex
12771 (cfengine3-class-selector-regex cfengine3-category-regex)
12772 (cfengine3-vartypes cfengine3-font-lock-keywords)
12773 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
12774 (cfengine3-indent-line): Add from cfengine3.el.
12775
12776 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
12777
12778 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
12779
12780 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
12781
12782 2011-07-01 Martin Rudalics <rudalics@gmx.at>
12783
12784 * window.el (same-window-buffer-names, same-window-regexps)
12785 (same-window-p, special-display-frame-alist)
12786 (special-display-popup-frame, special-display-function)
12787 (special-display-buffer-names, special-display-regexps)
12788 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
12789 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
12790 (split-window-preferred-function, split-height-threshold)
12791 (split-width-threshold, even-window-heights)
12792 (display-buffer-mark-dedicated, window-splittable-p)
12793 (split-window-sensibly, window-safely-shrinkable-p):
12794 Un-obsolete.
12795 (display-buffer): Don't spread args with function specifier
12796 because special-display-popup-frame won't like it.
12797
12798 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
12799
12800 Time-stamp simplifications and fixes.
12801 These improve accuracy slightly, and future-proof the code
12802 against some potential changes to current-time format.
12803
12804 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
12805 by using time-since and float-time.
12806
12807 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
12808 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
12809 + NNN microseconds".
12810
12811 * type-break.el (type-break-time-sum): Rewrite using time-add.
12812
12813 * play/hanoi.el (hanoi-current-time-float): Remove.
12814 All uses replaced by float-time.
12815
12816 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
12817 This yields a more-accurate answer.
12818 (rng-time-to-float): Remove; no longer needed.
12819
12820 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
12821
12822 * calendar/timeclock.el (timeclock-seconds-to-time):
12823 Defalias to seconds-to-time, since they're the same thing.
12824
12825 * emacs-lisp/elp.el (elp-elapsed-time):
12826 * emacs-lisp/benchmark.el (benchmark-elapse):
12827 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
12828
12829 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
12830
12831 * window.el (bury-buffer): Don't iconify the only frame.
12832 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
12833 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
12834
12835 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
12836
12837 * eshell/em-smart.el (eshell-smart-display-navigate-list):
12838 Add mouse-yank-primary.
12839
12840 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
12841
12842 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
12843
12844 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
12845
12846 * emacs-lisp/find-func.el (find-library--load-name): New fun.
12847 (find-library-name): Use it to find relative load names when provided
12848 absolute file name (bug#8803).
12849
12850 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
12851
12852 * textmodes/flyspell.el (flyspell-word): Consider words that
12853 differ only in case as potential doublons (bug#5687).
12854
12855 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
12856 Remove two rather uninteresting debugging-like messages to make
12857 debbugs.el more silent.
12858
12859 * comint.el (comint-password-prompt-regexp): Accept "Response" as
12860 a password-like phrase.
12861
12862 2011-06-30 Masatake YAMATO <yamato@redhat.com>
12863
12864 * progmodes/cc-guess.el: New file.
12865
12866 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
12867
12868 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
12869 derived from `c-basic-common-init'.
12870
12871 * progmodes/cc-mode.el (top-level): Require cc-guess.
12872 (c-basic-common-init): Use `cc-choose-style-for-mode'.
12873
12874 2011-06-30 Lawrence Mitchell <wence@gmx.li>
12875
12876 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
12877
12878 2011-06-30 Alan Mackenzie <acm@muc.de>
12879
12880 * progmodes/cc-engine.el (c-guess-continued-construct):
12881 Correct the handling of template-args-cont, particularly for when font
12882 lock is disabled. Name this case as "CASE G".
12883
12884 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
12885
12886 * allout.el (allout-yank-processing): Fix injection of extra space
12887 between bullet and non-whitespace character in first topic when
12888 pasting, ensuring that the actual spacing in the pasted topic
12889 following the bullet char is preserved. This extra space was
12890 causing pasted encrypted topics to get a decrypted status even
12891 when the content was actually still encrypted. Now the decryption
12892 status from before the paste is preserved.
12893
12894 (allout-flag-region): Set all allout overlays so they evaporate
12895 when reduced to zero length (evanescent), to prevent overlay
12896 leakage.
12897
12898 2011-06-30 Glenn Morris <rgm@gnu.org>
12899
12900 * w32-fns.el (w32-charset-info-alist): Declare.
12901
12902 * find-dired.el (find-grep-options): Simplify.
12903
12904 * term/ns-win.el (ns-set-resource): Declare.
12905
12906 * ses.el (row, col): Declare dynamic variables honestly.
12907
12908 * textmodes/reftex-parse.el (index-tags): Declare.
12909
12910 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
12911
12912 * cus-edit.el (customize-push-and-save): New function.
12913
12914 * files.el (hack-local-variables-confirm): Use it.
12915
12916 * custom.el (load-theme): New arg NO-CONFIRM.
12917 Use customize-push-and-save (Bug#8720).
12918 (custom-enabled-themes): Doc fix.
12919
12920 * cus-theme.el (customize-create-theme)
12921 (custom-theme-merge-theme): Callers to load-theme changed.
12922
12923 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
12924
12925 * thingatpt.el (thing-at-point-short-url-regexp): Require that
12926 short URLs have at least one dot in them (bug #7614).
12927
12928 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
12929 nil, because using a pty is apparently too slow (bug #895).
12930
12931 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
12932
12933 * mail/sendmail.el (sendmail-query-once): New function.
12934 (sendmail-query-once-function): New variable.
12935
12936 2011-06-29 Glenn Morris <rgm@gnu.org>
12937
12938 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
12939
12940 * ses.el (top-level): Require cl when compiling.
12941 (ses-set-localvars): Fix error statement.
12942 Call it at compile time to silence a storm of warnings.
12943
12944 2011-06-29 Martin Rudalics <rudalics@gmx.at>
12945
12946 * window.el (normalize-live-buffer): Rename to
12947 window-normalize-buffer.
12948 (normalize-live-frame): Rename to window-normalize-frame.
12949 (normalize-any-window): Rename to window-normalize-any-window.
12950 (normalize-live-window): Rename to window-normalize-live-window.
12951 (make-window-atom): Rename to window-make-atom.
12952 (window-resize-reset): Rename to window--resize-reset.
12953 (window-resize-reset-1): Rename to window--resize-reset-1.
12954 (resize-mini-window): Rename to window--resize-mini-window.
12955 (resize-subwindows-skip-p): Rename to
12956 window--resize-subwindows-skip-p.
12957 (resize-subwindows-normal): Rename to
12958 window--resize-subwindows-normal.
12959 (resize-subwindows): Rename to window--resize-subwindows.
12960 (resize-other-windows): Rename to window--resize-siblings.
12961 (resize-this-window): Rename to window--resize-this-window.
12962 (resize-root-window): Rename to window--resize-root-window.
12963 (resize-root-window-vertically): Rename to
12964 window--resize-root-window-vertically.
12965 (normalize-buffer-to-display): Rename to
12966 window-normalize-buffer-to-display.
12967 (normalize-buffer-to-switch-to): Rename to
12968 window-normalize-buffer-to-switch-to.
12969 Correspondingly update all callers of the functions listed
12970 above.
12971 (display-buffer-alist, display-buffer-normalize-arguments)
12972 (display-buffer-normalize-options, display-buffer)
12973 (display-buffer-alist-set): Use "function" instead of
12974 "fun-with-args".
12975
12976 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
12977
12978 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
12979 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
12980 debbugs.gnu.org. Mention acknowledgment email.
12981
12982 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
12983
12984 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
12985 buffer multibyteness, since it shouldn't matter.
12986
12987 2011-06-28 Martin Rudalics <rudalics@gmx.at>
12988
12989 * window.el (display-buffer-in-side-window): Handle dedicated
12990 windows as in display-buffer-reuse-window.
12991 (display-buffer-normalize-alist): Use value of override
12992 specifier.
12993 (display-buffer-normalize-specifiers): Use value of
12994 other-window-means-other-frame specifier.
12995 (display-buffer-alist): Rewrite some texts in widgets.
12996 (display-buffer): Spread arguments when calling function
12997 specified by fun-with-args.
12998
12999 2011-06-28 Deniz Dogan <deniz@dogan.se>
13000
13001 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
13002 Unnest `let'.
13003
13004 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
13005 selectors (Bug#5732).
13006 (css-proprietary-nmstart-re): Use `regexp-opt'.
13007
13008 2011-06-27 Jari Aalto <jari.aalto@cante.net>
13009
13010 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
13011 (eshell-ls-date-format): New defcustom.
13012 (eshell-ls-file): Use it.
13013
13014 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
13015
13016 * help-fns.el (describe-variable): Fix message for terminal-local vars.
13017
13018 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
13019
13020 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
13021 (ange-ftp-make-tmp-name): New arg.
13022 (ange-ftp-file-local-copy): Use it.
13023
13024 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
13025
13026 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
13027 no-conversion (Bug#8870).
13028
13029 2011-06-27 Martin Rudalics <rudalics@gmx.at>
13030
13031 * window.el (window-right, window-left, window-child)
13032 (window-child-count, window-last-child)
13033 (window-iso-combination-p, walk-window-tree-1)
13034 (window-atom-check-1, window-tree-1, delete-window)
13035 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
13036 new naming conventions - window-vchild, window-hchild,
13037 window-next and window-prev are now called window-top-child,
13038 window-left-child, window-next-sibling and window-prev-sibling
13039 respectively.
13040 (resize-window-reset): Rename to window-resize-reset.
13041 (resize-window-reset-1): Rename to window-resize-reset-1.
13042 (resize-window): Rename to window-resize.
13043 (window-min-height, window-min-width)
13044 (resize-mini-window, resize-this-window, resize-root-window)
13045 (resize-root-window-vertically, adjust-window-trailing-edge)
13046 (enlarge-window, shrink-window, maximize-window)
13047 (minimize-window, delete-window, quit-restore-window)
13048 (split-window, balance-windows, balance-windows-area-adjust)
13049 (balance-windows-area, window-state-put-2)
13050 (display-buffer-even-window-sizes, display-buffer-set-height)
13051 (display-buffer-set-width, set-window-text-height)
13052 (fit-window-to-buffer): Rename all "resize-window" prefixed
13053 calls to use the "window-resize" prefix convention.
13054 (display-buffer-alist): Fix symbol for label specifier.
13055 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
13056 corresponding specifier.
13057 Reported by Juanma Barranquero <lekktu@gmail.com>.
13058
13059 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
13060
13061 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
13062 convention.
13063 (ses-call-printer): Does not pass an empty string to formatter when the
13064 cell is empty to keep from barking printer Calc math-format-value.
13065
13066 2011-06-27 Richard Stallman <rms@gnu.org>
13067
13068 * battery.el (battery-mode-line-limit): New variable.
13069 (battery-update): Handle it.
13070
13071 * mail/rmailmm.el (rmail-mime-process-multipart):
13072 Handle truncated messages.
13073
13074 2011-06-27 Glenn Morris <rgm@gnu.org>
13075
13076 * progmodes/flymake.el (flymake-err-line-patterns):
13077 Allow for column numbers in the ant/javac pattern. (Bug#8866)
13078
13079 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
13080
13081 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
13082 (ses--clean-!, ses--clean-_): New functions.
13083 (ses-range): Add configurability of readout order, and conversion
13084 to Calc vector.
13085
13086 * ses.el (ses-repair-cell-reference-all): New function.
13087 (ses-cell-symbol): Set macro as safe, so that it can be used in
13088 formulas.
13089
13090 * ses.el: Update cycle detection algorithm.
13091 (ses-localvars): Add ses--Dijkstra-attempt-nb and
13092 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
13093 (ses-set-localvars): New function.
13094 (ses-make-cell): Add property-list as a cell element.
13095 (ses-cell-property-get-fun, ses-cell-property-get)
13096 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
13097 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
13098 New functions.
13099 (ses-cell-property-set, ses-cell-property-pop)
13100 (ses-cell-property-get-handle): New macro.
13101 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
13102 New aliases, used for code readability.
13103 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
13104 cycle detection.
13105 (ses-self-reference-early-detection): New defcustom.
13106 (ses-formula-references): Robustify against self-referring cells.
13107 (ses-mode): Use ses-set-localvars.
13108 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
13109 before lauching the update processing.
13110 (ses-initialize-Dijkstra-attempt): New function.
13111 (ses-recalculate-cell): Update for cycle detection based on
13112 Dijkstra algorithm.
13113
13114 * ses.el: Fix commenting and indenting convention.
13115
13116 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
13117
13118 * bs.el (bs-cycle-next): Complete last change.
13119
13120 2011-06-27 Drew Adams <drew.adams@oracle.com>
13121
13122 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
13123
13124 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
13125
13126 * net/network-stream.el (network-stream-open-starttls):
13127 Don't re-get capabilities unless we've reestablished connection.
13128 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
13129
13130 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
13131 to binary to possibly avoid line encoding issues on Windows (among
13132 other things).
13133
13134 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
13135
13136 * net/network-stream.el (open-network-stream): Return an :error
13137 saying what the problem was, if possible.
13138
13139 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
13140 server.
13141
13142 * net/network-stream.el (network-stream-open-starttls): If we
13143 wanted to use STARTTLS, and the server offered it, but we weren't
13144 able to because we had no STARTTLS support, then close the connection.
13145 (open-network-stream): Return an :error element, if present.
13146
13147 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
13148
13149 * hl-line.el (hl-line-sticky-flag): Doc fix.
13150 (global-hl-line-sticky-flag): New option (Bug#8323).
13151 (global-hl-line-highlight): Obey it.
13152
13153 * vc/vc.el (vc-revert-show-diff): Default to t.
13154
13155 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
13156
13157 * allout-widgets.el (allout-widgets-post-command-business):
13158 Stop decorating intermediate isearch matches. They're not being
13159 undecorated when an isearch is continued past, and isearch
13160 automatically collapses them. This leads to "widget leaks", where
13161 decorated items accumulate in collapsed areas. Lines with lots of
13162 hidden widgets can slow down cursor travel, substantially.
13163 Too much complicated machinery would be needed to ensure undecoration,
13164 so we're doing without this nicety.
13165
13166 (allout-widgets-tally-string): Don't try to do a hash-table-count
13167 of allout-widgets-tally when it's nil. This eliminates spurious "Error
13168 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
13169 *Messages* when allout-widgets-maintain-tally is t.
13170
13171 2011-06-26 Martin Rudalics <rudalics@gmx.at>
13172
13173 * window.el (display-buffer-normalize-argument): Rename to
13174 display-buffer-normalize-arguments. Handle special meaning of
13175 LABEL argument. Respect special-display-function when popping up
13176 a new frame. Fix code searching for a window showing the buffer
13177 on another frame.
13178 (display-buffer-normalize-specifiers):
13179 Call display-buffer-normalize-arguments.
13180 (display-buffer-in-window): Don't undedicate the window if its
13181 buffer remains the same.
13182 Reported by Drew Adams <drew.adams@oracle.com>.
13183 (display-buffer-alist): Add choice for same-window macro
13184 specfier.
13185 (display-buffer): Mention special meaning of LABEL argument in
13186 doc-string. Fix quoting. Don't pop up a new frame even as
13187 fallback.
13188
13189 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
13190
13191 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
13192 avoid deleting the current window in some cases (bug#8911).
13193
13194 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
13195
13196 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
13197 (Bug#8934)
13198
13199 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
13200
13201 * net/network-stream.el (network-stream-open-starttls):
13202 Use built-in TLS support if `gnutls-available-p' is true.
13203 (network-stream-open-tls): Ditto.
13204
13205 2011-06-26 Leo Liu <sdl.web@gmail.com>
13206
13207 * register.el (registerv): New struct.
13208 (registerv-make): New function.
13209 (jump-to-register, describe-register-1, insert-register):
13210 Support the jump-func, print-func and insert-func slot of a registerv
13211 struct. (Bug#8415)
13212
13213 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
13214
13215 * vc/vc.el (vc-revert-show-diff): New defcustom.
13216 (vc-diff-internal): New arg specifying diff buffer.
13217 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
13218 reuse an existing *vc-diff* buffer (Bug#8927).
13219
13220 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
13221
13222 2011-06-26 Glenn Morris <rgm@gnu.org>
13223
13224 * progmodes/f90.el (f90-critical-indent): New option.
13225 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
13226 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
13227 (f90-mode): Doc fix.
13228 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
13229 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
13230 (f90-beginning-of-block, f90-next-block, f90-indent-region)
13231 (f90-match-end): Handle block, critical.
13232
13233 2011-06-25 Glenn Morris <rgm@gnu.org>
13234
13235 * calendar/diary-lib.el (diary-included-files): Doc fix.
13236 (diary-include-files): New function, extracted from
13237 diary-include-other-diary-files and diary-mark-included-diary-files.
13238 (diary-include-other-diary-files, diary-mark-included-diary-files):
13239 Just call diary-include-files.
13240 (diary-mark-entries): Reset diary-included-files on first call.
13241
13242 * calendar/diary-lib.el (diary-mark-entries)
13243 (diary-mark-included-diary-files):
13244 Visit included diary-files in temp buffers.
13245
13246 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
13247 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
13248 (f90-start-block-re, f90-imenu-generic-expression)
13249 (f90-looking-at-program-block-start, f90-no-block-limit):
13250 Add support for submodules.
13251
13252 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
13253 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
13254
13255 2011-06-25 Eli Zaretskii <eliz@gnu.org>
13256
13257 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
13258 buffer-file-type before setting its value, to avoid disastrous
13259 global effects on decoding files for DOS/Windows systems. (Bug#8780)
13260
13261 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
13262
13263 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
13264
13265 * ses.el (ses-unload-function):
13266 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
13267
13268 * proced.el (proced-unload-function):
13269 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
13270
13271 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
13272
13273 * server.el (server-create-window-system-frame): Add parameters arg.
13274 (server-process-filter): Doc fix. Handle frame-parameters.
13275
13276 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
13277
13278 Fix bug#8730, bug#8781.
13279
13280 * loadhist.el (unload--set-major-mode): New function.
13281 (unload-feature): Use it.
13282
13283 * progmodes/python.el (python-after-info-look): Add autoload cookie.
13284 (python-unload-function): New function.
13285
13286 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
13287
13288 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
13289
13290 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
13291
13292 * net/browse-url.el (browse-url-firefox-program): Add icecat to
13293 the candidates list.
13294
13295 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
13296
13297 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
13298
13299 2011-06-23 Richard Stallman <rms@gnu.org>
13300
13301 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
13302 (rmail-variables): Set next-error-move-function.
13303 (rmail-what-message): Take argument POS.
13304 (rmail-next-error-move): New function.
13305
13306 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
13307
13308 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
13309 messages for adjacent non-terminals.
13310
13311 2011-06-23 Richard Stallman <rms@gnu.org>
13312
13313 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
13314 (rmail-show-message-1): Preserve buffer modified flag.
13315 (rmail-start-mail): Don't specify use of rmail-mail-return;
13316 that's done by mail-bury now.
13317 (rmail-mail-return): Handle arg NEWBUF.
13318
13319 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
13320
13321 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
13322 SIZE is a number.
13323
13324 2011-06-23 Martin Rudalics <rudalics@gmx.at>
13325
13326 * window.el (get-lru-window, get-mru-window)
13327 (get-largest-window): Never return a minibuffer window.
13328 (display-buffer-pop-up-window): Fix a bug that could lead to
13329 reusing the minibuffer window.
13330 (display-buffer): Pass original specifier argument to
13331 display-buffer-function instead of the normalized one.
13332 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
13333
13334 2011-06-22 Leo Liu <sdl.web@gmail.com>
13335
13336 * minibuffer.el (completing-read-function)
13337 (completing-read-default): Move from minibuf.c
13338
13339 2011-06-22 Richard Stallman <rms@gnu.org>
13340
13341 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
13342 to Rmail even if not started by a special Rmail command.
13343
13344 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
13345 Copy the buffer currently showing just one message.
13346
13347 2011-06-22 Roland Winkler <winkler@gnu.org>
13348
13349 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
13350 (bibtex-clean-entry): First delete the old key so that a
13351 customized algorithm for generating the new key does not get
13352 confused by the old key.
13353 (bibtex-url): Obey regexp of first step.
13354 (bibtex-search-entries): Do not use add-to-list with local
13355 list-var.
13356
13357 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
13358
13359 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
13360 stored a user name, then query for the password first, instead of
13361 waiting for SMTP to give an error message and the trying again.
13362
13363 2011-06-22 Lawrence Mitchell <wence@gmx.li>
13364
13365 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
13366 BUFFER in call-process.
13367
13368 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
13369
13370 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
13371 QUIT twice.
13372 (smtpmail-try-auth-methods): Require user name and password from
13373 auth-source.
13374
13375 2011-06-22 Martin Rudalics <rudalics@gmx.at>
13376
13377 * window.el (display-buffer-default-specifiers)
13378 (display-buffer-alist): Remove entries for pop-up-frame-alist.
13379 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
13380 (split-window): Normalize SIDE argument (Bug#8916).
13381
13382 * frame.el (pop-up-frame-alist, pop-up-frame-function)
13383 (special-display-frame-alist, special-display-popup-frame):
13384 Remove duplicate declarations. These are now in window.el.
13385
13386 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
13387
13388 * mail/smtpmail.el (smtpmail-via-smtp):
13389 Set :use-starttls-if-possible so that we always use STARTTLS if the
13390 server supports it. SMTP servers that support STARTTLS commonly
13391 require it.
13392
13393 * net/network-stream.el (network-stream-open-starttls): Support
13394 upgrading to STARTTLS always, even if we don't have built-in support.
13395 (open-network-stream): Add the :always-query-capabilities keyword.
13396
13397 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
13398 upgrades with `open-network-stream', and rely solely on
13399 auth-source for all credentials. Big changes throughout the file,
13400 but in particular:
13401 (smtpmail-auth-credentials): Remove.
13402 (smtpmail-starttls-credentials): Remove.
13403 (smtpmail-via-smtp): Check for servers saying they want AUTH after
13404 MAIL FROM, too.
13405
13406 * net/network-stream.el (network-stream-open-starttls):
13407 Provide support for client certificates both for external and built-in
13408 STARTTLS.
13409 (auth-source): Require.
13410 (open-network-stream): Document the :client-certificate keyword.
13411 (network-stream-certificate): Change cert-cert to cert and
13412 cert-key to key.
13413
13414 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
13415
13416 * net/tramp-cache.el (top): Don't load the persistency file when
13417 "emacs -Q" has been called.
13418
13419 2011-06-21 Tim Harper <timcharper@gmail.com>
13420
13421 * term/ns-win.el (ns-initialize-window-system):
13422 Set application-specific `ApplePressAndHoldEnabled' system
13423 resource to NO as it is not yet supported by the NS port.
13424
13425 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
13426
13427 * misc.el (list-dynamic-libraries--refresh): Compute header here...
13428 (list-dynamic-libraries): ...not here.
13429
13430 2011-06-21 Leo Liu <sdl.web@gmail.com>
13431
13432 * subr.el (sha1): Implement sha1 using secure-hash.
13433
13434 2011-06-21 Martin Rudalics <rudalics@gmx.at>
13435
13436 * window.el (display-buffer-alist): In default value do not
13437 enforce searching a window on any but the selected frame.
13438 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
13439 (display-buffer-select-window): Remove function.
13440 (display-buffer-in-window): When a window on another frame gets
13441 reused, do not select it any more but just raise its frame if
13442 necessary (Bug#8851) and (Bug#8856).
13443 (display-buffer-normalize-options): Handle pop-up-frames related
13444 options more faithfully.
13445 (pop-to-buffer): Don't rely on `display-buffer' selecting the
13446 window if it is on another frame.
13447 (display-buffer-alist, display-buffer-default-specifiers):
13448 Don't make new frame unsplittable by default.
13449 (display-buffer-normalize-argument): Fix doc-string typo and use
13450 'same-frame-other-window instead of 'other-window when associating
13451 with display-buffer-macro-specifiers.
13452
13453 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
13454
13455 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
13456 New functions.
13457 (5x5-mode-map, 5x5-mode-menu): Bind them.
13458 (5x5-draw-grid): Tweak the solver's rendering.
13459
13460 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
13461
13462 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
13463 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
13464
13465 2011-06-21 Drew Adams <drew.adams@oracle.com>
13466
13467 * menu-bar.el: Use function variable instead of switch-to-buffer.
13468 (menu-bar-select-buffer-function): New variable.
13469 (menu-bar-update-buffers): Use it (bug#8876).
13470
13471 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
13472
13473 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
13474 variable's status.
13475
13476 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
13477
13478 * x-dnd.el (x-dnd-version-from-flags)
13479 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
13480 and long as number (Bug#8899).
13481 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
13482
13483 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
13484
13485 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
13486 (completion-try-completion, completion-all-completions): Compute the
13487 metadata argument if it's missing; make it optional (bug#8795).
13488
13489 * wid-edit.el: Use lex-bind and move towards completion-at-point.
13490 (widget-complete): Use new :completion-function property.
13491 (widget-completions-at-point): New function.
13492 (default): Use :completion-function instead of :complete.
13493 (widget-default-completions): Rename from widget-default-complete;
13494 Rewrite.
13495 (widget-string-complete, widget-file-complete, widget-color-complete):
13496 Remove functions.
13497 (file, symbol, function, variable, coding-system, color):
13498 * international/mule-cmds.el (default-input-method, charset)
13499 (language-info-custom-alist):
13500 * cus-edit.el (face): Use new property :completions.
13501
13502 * progmodes/pascal.el (pascal-completions-at-point): New function.
13503 (pascal-mode): Use it.
13504 (pascal-mode-map): Use completion-at-point.
13505 (pascal-toggle-completions): Make obsolete.
13506 (pascal-complete-word, pascal-show-completions):
13507 * progmodes/octave-mod.el (octave-complete-symbol):
13508 Redefine as obsolete alias.
13509 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
13510 Signal absence of completion info for old Octave,
13511 (inferior-octave-complete): Redefine as obsolete alias.
13512 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
13513 (meta-completions-at-point): Rename from meta-complete-symbol and
13514 adapt it for use on completion-at-point-functions.
13515 (meta-common-mode): Use it.
13516 (meta-looking-at-backward, meta-match-buffer): Remove.
13517 (meta-complete-symbol): Redefine as obsolete alias.
13518 (meta-common-mode-map): Use completion-at-point.
13519 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
13520 (makefile-mode-map): Use completion-at-point.
13521 (makefile-completions-at-point): Rename from makefile-complete and
13522 adapt it for use on completion-at-point-functions.
13523 (makefile-mode): Use it.
13524 (makefile-complete): Redefine as obsolete alias.
13525
13526 2011-06-20 Deniz Dogan <deniz@dogan.se>
13527
13528 * net/rcirc.el: Delete trailing whitespaces once and for all.
13529
13530 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
13531
13532 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
13533
13534 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
13535
13536 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
13537
13538 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
13539
13540 2011-06-19 Martin Rudalics <rudalics@gmx.at>
13541
13542 * window.el (display-buffer-other-window-means-other-frame):
13543 Call display-buffer-normalize-alist.
13544 (display-buffer-normalize-specifiers-1): Rename to
13545 display-buffer-normalize-argument. New argument other-frame.
13546 Rewrite.
13547 (display-buffer-normalize-specifiers-2): Rename to
13548 display-buffer-normalize-options.
13549 (display-buffer-normalize-alist-1): New function.
13550 (display-buffer-normalize-specifiers-3): Rename to
13551 display-buffer-normalize-alist.
13552 Call display-buffer-normalize-alist-1.
13553 (display-buffer-normalize-options-inhibit): New variable.
13554 (display-buffer-normalize-specifiers): Rewrite calling
13555 display-buffer-normalize-alist,
13556 display-buffer-normalize-argument, and
13557 display-buffer-normalize-options. Don't call the latter if
13558 display-buffer-normalize-options-inhibit is non-nil.
13559 (frame-auto-delete): New option.
13560 (window-deletable-p): Use frame-auto-delete.
13561 (window-list-no-nils, window-state-ignored-parameters)
13562 (window-state-get-1, window-state-get, window-state-put-list)
13563 (window-state-put-1, window-state-put-2, window-state-put):
13564 New functions.
13565 (display-buffer-normalize-options): Move special-display-p group
13566 after pop-up-frame group (Bug#8851) and (Bug#8856).
13567
13568 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
13569
13570 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
13571 groups (Bug#8776).
13572 (rx-submatch-n): New function.
13573 (rx): Document it.
13574
13575 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
13576 (Bug#8768).
13577
13578 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
13579
13580 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
13581
13582 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
13583 anytime existing face settings are present (Bug#8889).
13584
13585 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
13586 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
13587 Remove unused argument.
13588
13589 2011-06-18 Martin Rudalics <rudalics@gmx.at>
13590
13591 * window.el (display-buffer-default-specifiers):
13592 Remove pop-up-frame. Add pop-up-window-min-height,
13593 pop-up-window-min-width, and another reuse-window specifier
13594 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
13595 (display-buffer-normalize-specifiers-2):
13596 Handle split-height-threshold and split-width-threshold also when
13597 pop-up-windows is unset. Add a reuse-window specifier for the
13598 case popping up a new window fails.
13599 (special-display-popup-frame): Remove double quoting.
13600 (display-buffer-normalize-specifiers-1): Fix thinko.
13601
13602 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
13603
13604 * shell.el (shell-completion-vars): Set pcomplete-termination-string
13605 according to comint-completion-addsuffix.
13606
13607 * pcomplete.el: Convert to lexical binding and fix bug#8819.
13608 (pcomplete-suffix-list): Mark as obsolete.
13609 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
13610 pcomplete-seen in the closure.
13611 (pcomplete-comint-setup): Setup completion-at-point as well.
13612 (pcomplete--entries): New function.
13613 (pcomplete--env-regexp): New var.
13614 (pcomplete-entries): Rewrite to work with partial-completion and
13615 without relying on pcomplete-suffix-list.
13616 (pcomplete-pare-list): Remove, unused.
13617
13618 2011-06-17 Martin Rudalics <rudalics@gmx.at>
13619
13620 * window.el (display-buffer-alist): Set pop-up-window-min-height
13621 and pop-up-window-min-width in default value. Reported by
13622 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
13623 other-window-means-other-frame.
13624 (display-buffer-macro-specifiers): Comment out entry for
13625 other-window specifier.
13626 (display-buffer-other-window-means-other-frame): New function.
13627 (display-buffer-normalize-specifiers-1): New arguments
13628 buffer-name and label. Treat other-window case specially.
13629 (display-buffer-normalize-specifiers-2): Treat other-window case
13630 specially.
13631 (display-buffer-normalize-specifiers-3): New function.
13632 (display-buffer-normalize-specifiers):
13633 Call display-buffer-normalize-specifiers-3.
13634
13635 2011-06-17 Martin Rudalics <rudalics@gmx.at>
13636
13637 * window.el (same-window-p): Fix two typos introduced when
13638 adding with-no-warnings.
13639 (display-buffer-normalize-specifiers-1): Don't check
13640 pop-up-frames for 'unset initialization.
13641 (display-buffer-normalize-specifiers-2): Major rewrite using
13642 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
13643 (pop-up-frames, display-buffer-reuse-frames)
13644 (display-buffer-mark-dedicated): Don't initialize to 'unset.
13645 Suggested by David Engster <deng@randomsample.de>.
13646 (even-window-heights): Initialize to 'unset.
13647 (display-buffer-alist-set): Handle new 'unset initializations.
13648 (display-buffer-macro-specifiers): Don't pop up a new frame in the
13649 other window case.
13650
13651 2011-06-16 Martin Rudalics <rudalics@gmx.at>
13652
13653 * window.el (display-buffer-normalize-specifiers-1):
13654 Respect current value of pop-up-frames for most reasonable values of
13655 second argument of display-buffer (Bug#8865).
13656 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
13657 (switch-to-buffer-other-window-same-frame)
13658 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
13659 Adams (Bug#8875).
13660 (display-buffer): Don't check noninteractive when calling
13661 display-buffer-pop-up-frame.
13662 (display-buffer-pop-up-frame): Never pop up a frame in
13663 noninteractive mode (Bug#8857).
13664 (enlarge-window, shrink-window): Don't report an error when the
13665 window can't be resized as requested (Bug#8862).
13666
13667 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13668
13669 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
13670
13671 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
13672
13673 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
13674
13675 2011-06-15 Alan Mackenzie <acm@muc.de>
13676
13677 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
13678 for declarators, disable knr checking to speed up for normal files.
13679 2: Refactor, replacing a sequence of nested if forms by a cond form.
13680
13681 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
13682
13683 * net/network-stream.el (open-network-stream): Add the keyword
13684 :always-query-capabilities for the case where you want to force a
13685 `plain' network connection, but the protocol still requires the
13686 capabilitiy command (i.e., SMTP and EHLO).
13687
13688 * subr.el (process-live-p): Rename from `process-alive-p' for
13689 consistency with other `-live-p' functions.
13690
13691 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13692
13693 * window.el (same-window-buffer-names, same-window-regexps)
13694 (special-display-frame-alist, special-display-popup-frame)
13695 (special-display-function, special-display-buffer-names)
13696 (special-display-regexps, pop-up-frame-alist)
13697 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
13698 (pop-up-windows, split-window-preferred-function)
13699 (split-height-threshold, split-width-threshold, even-window-heights)
13700 (display-buffer-mark-dedicated): Don't encourage the use of
13701 display-buffer-alist from Elisp code.
13702
13703 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
13704
13705 * progmodes/python.el (python-mode): Derive from prog-mode.
13706 * progmodes/ps-mode.el (ps-mode):
13707 * progmodes/mixal-mode.el (mixal-mode):
13708 * progmodes/cfengine.el (cfengine-mode):
13709 * progmodes/ld-script.el (ld-script-mode): Likewise.
13710
13711 2011-06-15 Martin Rudalics <rudalics@gmx.at>
13712
13713 * window.el (display-buffer-alist): Trim default value to avoid
13714 popping up a new frame (Bug#8857) or reusing an arbitrary window
13715 on another frame.
13716 (display-buffer): Do not fall back on popping up a new frame in
13717 batch mode (Bug#8857).
13718
13719 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
13720
13721 * cus-theme.el (describe-theme-1): Use custom-theme-p.
13722 (custom-theme-summary): New function.
13723 (customize-themes): Use it.
13724
13725 2011-06-13 Glenn Morris <rgm@gnu.org>
13726
13727 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
13728
13729 2011-06-13 Martin Rudalics <rudalics@gmx.at>
13730
13731 * help.el (help-window): Remove variable.
13732 (help-window-point-marker, temp-buffer-max-height)
13733 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
13734 (help-print-return-message): Don't set help-window.
13735 (resize-temp-buffer-window): Rewrite cod eand doc-string.
13736 (help-window-setup-finish): Remove.
13737 (help-window-display-message, help-window-setup)
13738 (with-help-window): Major rewrite based on new
13739 display-buffer-window variable.
13740
13741 * help-mode.el (help-mode-finish): Remove help-window related
13742 code.
13743
13744 * view.el (view-exits-all-viewing-windows): Remove reference to
13745 view-return-to-alist in doc-string.
13746 (view-return-to-alist): Make obsolete.
13747 (view-buffer): Call pop-to-buffer-same-window and remove
13748 undo-window code.
13749 (view-buffer-other-window): Call pop-to-buffer-other-window and
13750 simplify code. Ignore second argument.
13751 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
13752 simplify code. Ignore second argument.
13753 (view-return-to-alist-update): Make obsolete.
13754 (view-mode-enter): Rename second argument to QUIT-RESTORE.
13755 Rewrite using quit-restore window parameters.
13756 (view-mode-exit): Rename second argument to EXIT-ONLY.
13757 Rewrite using quit-restore-window.
13758 (View-exit, View-exit-and-edit, View-leave, View-quit)
13759 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
13760 appropriate arguments.
13761 (view-end-message): Use quit-restore window parameter.
13762
13763 * window.el (display-buffer-function): Rewrite doc-string.
13764 (display-buffer-window, display-buffer-alist): New variables.
13765 (display-buffer-split-specifiers)
13766 (display-buffer-side-specifiers)
13767 (display-buffer-macro-specifiers): New constants.
13768 (display-buffer-even-window-sizes, display-buffer-set-height)
13769 (display-buffer-set-width, display-buffer-select-window)
13770 (display-buffer-in-window, display-buffer-reuse-window)
13771 (display-buffer-split-window-1, display-buffer-split-window)
13772 (display-buffer-split-atom-window, display-buffer-pop-up-window)
13773 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
13774 (display-buffer-in-side-window, normalize-buffer-to-display)
13775 (display-buffer-normalize-specifiers-1)
13776 (display-buffer-normalize-specifiers-2)
13777 (display-buffer-normalize-specifiers, display-buffer-frame):
13778 New functions.
13779 (display-buffer): Major rewrite.
13780 (display-buffer-other-window, display-buffer-other-frame)
13781 (pop-to-buffer, switch-to-buffer-other-window)
13782 (switch-to-buffer-other-frame): Rewrite.
13783 (display-buffer-same-window, display-buffer-same-frame)
13784 (display-buffer-same-frame-other-window)
13785 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
13786 (pop-to-buffer-other-window)
13787 (pop-to-buffer-same-frame-other-window)
13788 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
13789 (switch-to-buffer-other-window-same-frame): New functions.
13790 (same-window-p, special-display-p): Rewrite disabling warnings.
13791 Make obsolete.
13792 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
13793 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
13794 Make obsolete
13795 (same-window-buffer-names, same-window-regexps)
13796 (special-display-frame-alist, special-display-popup-frame)
13797 (special-display-function, special-display-buffer-names)
13798 (special-display-regexps, pop-up-frame-alist)
13799 (pop-up-frame-function, split-window-preferred-function)
13800 (split-height-threshold, split-width-threshold)
13801 (even-window-heights): Make obsolete.
13802
13803 2011-06-12 Glenn Morris <rgm@gnu.org>
13804
13805 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
13806 Misc simplifications.
13807
13808 2011-06-12 Martin Rudalics <rudalics@gmx.at>
13809
13810 * window.el (window-safely-shrinkable-p): Restore function which
13811 was inadvertently removed in change from 2011-06-11. Declare as
13812 obsolete.
13813
13814 * calendar/calendar.el (calendar-generate-window):
13815 Use window-iso-combined-p instead of combination of one-window-p and
13816 window-safely-shrinkable-p.
13817
13818 2011-06-12 Glenn Morris <rgm@gnu.org>
13819
13820 * progmodes/fortran.el (fortran-mode-syntax-table):
13821 * progmodes/f90.el (f90-mode-syntax-table):
13822 Set % to punctuation. (Bug#8820)
13823 (f90-find-tag-default): Remove, no longer needed.
13824
13825 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
13826
13827 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
13828
13829 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
13830
13831 * image.el (image-animated-p): Return animation delay in seconds.
13832 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
13833 (image-animate-timeout): Remove DELAY argument. Don't assume
13834 every subimage has the same delay; get it from image-animated-p.
13835 (image-animate): Caller changed.
13836
13837 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
13838
13839 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
13840 to ignored backtrace functions.
13841
13842 2011-06-11 Glenn Morris <rgm@gnu.org>
13843
13844 * calendar/appt.el (appt-disp-window-function): Doc fix.
13845 (appt-check): Handle overlapping appointments. (Bug#8337)
13846
13847 2011-06-11 Martin Rudalics <rudalics@gmx.at>
13848
13849 * window.el (window-tree-1, window-tree): New functions, moving
13850 the latter to window.el.
13851 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
13852 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
13853 (bw-refresh-edges): Remove.
13854 (balance-windows-1, balance-windows-2): New functions.
13855 (balance-windows): Rewrite in terms of window tree functions,
13856 balance-windows-1 and balance-windows-2.
13857 (bw-adjust-window): Remove.
13858 (balance-windows-area-adjust): New function with functionality of
13859 bw-adjust-window but using resize-window.
13860 (set-window-text-height): Rewrite doc-string.
13861 Use normalize-live-window and resize-window.
13862 (enlarge-window-horizontally, shrink-window-horizontally):
13863 Rename argument to DELTA.
13864 (window-buffer-height): New function.
13865 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
13866 Rewrite using new window resize routines.
13867 (kill-buffer-and-window, mouse-autoselect-window-select):
13868 Use ignore-errors instead of condition-case.
13869 (quit-window): Call delete-frame instead of delete-windows-on
13870 for the only buffer on frame.
13871
13872 2011-06-10 Martin Rudalics <rudalics@gmx.at>
13873
13874 * loadup.el (top-level): Load window before files for the sake
13875 of replace-buffer-in-windows.
13876
13877 * files.el (read-buffer-to-switch)
13878 (switch-to-buffer-other-window)
13879 (switch-to-buffer-other-frame, display-buffer-other-frame):
13880 Move to window.el.
13881
13882 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
13883 (previous-buffer): Move to window.el.
13884
13885 * bindings.el (unbury-buffer): Move to window.el.
13886
13887 * window.el (delete-other-windows-vertically): Move after
13888 definition of delete-other-windows.
13889 (other-window, delete-windows-on, replace-buffer-in-windows):
13890 Move here from window.c.
13891 (record-window-buffer, unrecord-window-buffer)
13892 (set-window-buffer-start-and-point, switch-to-prev-buffer)
13893 (switch-to-next-buffer): New functions.
13894 (get-next-valid-buffer, last-buffer, next-buffer): Move here
13895 from simple.el. Call switch-to-next-buffer.
13896 (previous-buffer): Move here from simple.el.
13897 Call switch-to-prev-buffer.
13898 (bury-buffer): Move here from buffer.c. Switch to previous
13899 buffer when window cannot be deleted.
13900 (unbury-buffer): Move here from bindings.el.
13901 (ctl-x-map): Move binding for other-window from window.c to
13902 here.
13903 (read-buffer-to-switch, switch-to-buffer-other-window)
13904 (switch-to-buffer-other-frame): Move here from files.el.
13905 (normalize-buffer-to-switch-to): New functions.
13906 (switch-to-buffer): Move here from buffer.c.
13907 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
13908
13909 2011-06-10 Martin Rudalics <rudalics@gmx.at>
13910
13911 * window.el (window-min-height, window-min-width): Move here
13912 from window.c. Add defcustoms and rewrite doc-strings.
13913 (resize-mini-window, resize-window): New functions.
13914 (adjust-window-trailing-edge, enlarge-window, shrink-window):
13915 Move here from window.c.
13916 (maximize-window, minimize-window): New functions.
13917 (delete-window, delete-other-windows, split-window): Move here
13918 from window.c.
13919 (window-split-min-size): New function.
13920 (split-window-keep-point): Mention split-window-above-each-other
13921 instead of split-window-vertically.
13922 (split-window-above-each-other, split-window-vertically):
13923 Rename split-window-vertically to split-window-above-each-other
13924 and provide defalias for old definition.
13925 (split-window-side-by-side, split-window-horizontally):
13926 Rename split-window-horizontally to split-window-side-by-side
13927 and provide defalias for the old definition.
13928 (ctl-x-map): Move bindings for delete-window,
13929 delete-other-windows and enlarge-window here from window.c.
13930 Replace bindings for split-window-vertically and
13931 split-window-horizontally by bindings for
13932 split-window-above-each-other and split-window-side-by-side.
13933
13934 * cus-start.el (all): Remove entries for window-min-height and
13935 window-min-width. Add entries for window-splits and
13936 window-nest.
13937
13938 2011-06-09 Glenn Morris <rgm@gnu.org>
13939
13940 * calendar/appt.el (appt-mode-line): New function.
13941 (appt-check, appt-disp-window): Use it.
13942
13943 * files.el (hack-one-local-variable-eval-safep):
13944 Allow minor-modes with explicit +/-1 arguments.
13945
13946 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
13947
13948 * term/xterm.el (xterm): Add defgroup.
13949 (xterm-extra-capabilities): Add defcustom to supply known xterm
13950 capabilities, skip querying them, or query them (default).
13951 (terminal-init-xterm): Use it.
13952 (terminal-init-xterm-modify-other-keys): New function to set up
13953 modifyOtherKeys support to simplify `terminal-init-xterm'.
13954
13955 2011-06-09 Martin Rudalics <rudalics@gmx.at>
13956
13957 * window.el (resize-window-reset, resize-window-reset-1)
13958 (resize-subwindows-skip-p, resize-subwindows-normal)
13959 (resize-subwindows, resize-other-windows, resize-this-window)
13960 (resize-root-window, resize-root-window-vertically)
13961 (window-deletable-p, window-or-subwindow-p)
13962 (frame-root-window-p): New functions.
13963
13964 2011-06-09 Glenn Morris <rgm@gnu.org>
13965
13966 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
13967 (ange-ftp-get-files): Use it.
13968
13969 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
13970
13971 * mail/sendmail.el (mail-recover-1, mail-recover):
13972 * files.el (recover-file, recover-session):
13973 Handle dired-listing-switches not being just a single short option.
13974
13975 2011-06-09 Glenn Morris <rgm@gnu.org>
13976
13977 * calendar/appt.el (appt-display-message, appt-disp-window):
13978 Handle lists of appointments.
13979
13980 2011-06-08 Martin Rudalics <rudalics@gmx.at>
13981
13982 * window.el (one-window-p): Move down in code.
13983 Rewrite doc-string.
13984 (window-current-scroll-bars): Rewrite doc-string.
13985 Normalize live window argument.
13986 (walk-windows, get-window-with-predicate, count-windows):
13987 Rewrite doc-string. Use window-list-1.
13988 (window-in-direction-2, window-in-direction, get-mru-window):
13989 New functions.
13990
13991 2011-06-08 Reuben Thomas <rrt@sc3d.org>
13992
13993 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
13994 Doc fix (Bug#8713).
13995
13996 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
13997
13998 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
13999
14000 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
14001
14002 * loadhist.el (unload-feature-special-hooks):
14003 Add `comint-output-filter-functions'.
14004
14005 2011-06-08 Ivan Kanis <gnu@kanis.fr>
14006
14007 * calendar/appt.el (appt-check): Move some initializations into the let.
14008
14009 2011-06-08 Martin Rudalics <rudalics@gmx.at>
14010
14011 * window.el (window-height): Defalias to window-total-height.
14012 (window-width): Defalias to window-body-width.
14013
14014 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
14015
14016 * image-mode.el (image-toggle-animation): New command.
14017 (image-mode-map): Bind it to RET.
14018 (image-mode): Update message.
14019 (image-toggle-display-image): Avoid a spurious cache flush.
14020 (image-transform-rotation): Doc fix.
14021 (image-transform-properties): Return quickly in the normal case.
14022 (image-animate-loop): Rename from image-animate-max-time.
14023
14024 * image.el (image-animate-max-time): Move to image-mode.el.
14025 (create-animated-image): Remove unnecessary function.
14026 (image-animate): Rename from image-animate-start. New arg.
14027 (image-animate-stop): Remove; just use image-animate-timer.
14028 (image-animate-timer): Use car-safe.
14029 (image-animate-timeout): Rename argument.
14030
14031 2011-06-07 Martin Rudalics <rudalics@gmx.at>
14032
14033 * window.el (get-lru-window, get-largest-window): Move here from
14034 window.c. Rename first argument to ALL-FRAMES.
14035 Rephrase doc-strings.
14036 (get-buffer-window-list): Rewrite using window-list-1.
14037 Rephrase doc-string.
14038 (window-safe-min-height, window-safe-min-width): New constants.
14039 (window-size-ignore, window-min-size, window-min-size-1)
14040 (window-sizable, window-sizable-p, window-size-fixed-1)
14041 (window-size-fixed-p, window-min-delta-1, window-min-delta)
14042 (window-max-delta-1, window-max-delta, window-resizable)
14043 (window-resizable-p, window-total-height, window-total-width)
14044 (window-body-width): New functions.
14045 (window-full-height-p, window-full-width-p): Rewrite using
14046 window-total-size.
14047 (window-body-height): Rewrite using window-body-size.
14048
14049 2011-06-06 Martin Rudalics <rudalics@gmx.at>
14050
14051 * window.el (window-right, window-left, window-child)
14052 (window-child-count, window-last-child, window-any-p)
14053 (normalize-live-buffer, normalize-live-frame)
14054 (normalize-any-window, normalize-live-window)
14055 (window-iso-combination-p, window-iso-combined-p)
14056 (window-iso-combinations)
14057 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
14058 (windows-with-parameter, window-with-parameter)
14059 (window-atom-root, make-window-atom, window-atom-check-1)
14060 (window-atom-check, window-side-check, window-check):
14061 New functions.
14062 (ignore-window-parameters, window-sides, window-sides-vertical)
14063 (window-sides-slots): New variables.
14064 (window-size-fixed): Move down in code. Minor doc-string fix.
14065
14066 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
14067
14068 * comint.el (comint-dynamic-complete-as-filename)
14069 (comint-dynamic-complete-filename): Correctly call
14070 completion-in-region.
14071
14072 2011-06-05 Deniz Dogan <deniz@dogan.se>
14073
14074 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
14075 in last change.
14076
14077 2011-06-05 Deniz Dogan <deniz@dogan.se>
14078
14079 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
14080 (rcirc): Use it to prompt for encryption.
14081
14082 2011-06-05 Roland Winkler <winkler@gnu.org>
14083
14084 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
14085 (bibtex-search-entries): New command bound to C-c C-a.
14086 (bibtex-display-entries): New function.
14087
14088 2011-06-05 Roland Winkler <winkler@gnu.org>
14089
14090 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
14091 (bibtex-insert-kill): After yanking insert newline if necessary.
14092 (bibtex-initialize): Call bibtex-string-files-init only once.
14093 (bibtex-mode): Do not call easy-menu-add.
14094 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
14095 (bibtex-yank): Set arg properly if nil.
14096
14097 2011-06-05 Roland Winkler <winkler@gnu.org>
14098
14099 * textmodes/bibtex.el (bibtex-search-entry-globally):
14100 New variable.
14101 (bibtex-search-entry): Use it.
14102
14103 2011-06-05 Roland Winkler <winkler@gnu.org>
14104
14105 * textmodes/bibtex.el (bibtex-entry-format): New option
14106 sort-fields.
14107 (bibtex-format-entry, bibtex-reformat): Honor this option.
14108 (bibtex-parse-entry): Return fields in proper order.
14109
14110 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
14111
14112 * doc-view.el (doc-view-remove-if): Move computation of result out
14113 of `dolist' to silence misleading lexical-binding warning.
14114
14115 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
14116
14117 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
14118 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
14119
14120 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
14121
14122 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
14123 "SunOS 5.10".
14124
14125 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
14126
14127 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
14128 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
14129 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
14130 (tramp-parse-putty):
14131 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
14132 (tramp-completion-function-alist-ssh)
14133 (tramp-completion-function-alist-telnet)
14134 (tramp-completion-function-alist-su)
14135 (tramp-completion-function-alist-putty): Set `tramp-autoload'
14136 cookie.
14137
14138 * net/tramp-ftp.el:
14139 * net/tramp-sh.el:
14140 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
14141 load "tramp.el" `tramp-set-completion-function'.
14142
14143 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
14144
14145 * shell.el: Require and use pcomplete.
14146 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
14147 (shell-completion-vars): Set pcomplete-default-completion-function.
14148
14149 2011-06-04 Deniz Dogan <deniz@dogan.se>
14150
14151 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
14152 `memq' (Bug#8799).
14153
14154 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
14155
14156 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
14157
14158 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
14159
14160 * bs.el (bs--mark-unmark, bs--nth-wrapper):
14161 * mpc.el (mpc-select-extend, mpc-songpointer-context):
14162 * vc/log-view.el (log-view-beginning-of-defun):
14163 * vc/smerge-mode.el (smerge-apply-resolution-patch)
14164 (smerge-refine-forward, smerge-refine-chopup-region):
14165 Silence warning for unused `dotimes' counter variables.
14166
14167 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
14168
14169 * net/tramp.el (tramp-with-progress-reporter): Rename from
14170 with-progress-reporter. Use `declare'.
14171 * net/tramp-smb.el:
14172 * net/tramp-sh.el:
14173 * net/tramp-gvfs.el: Update all uses.
14174
14175 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
14176
14177 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
14178 buffer isn't killed before making it current.
14179
14180 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
14181
14182 Silence various byte-compiler warnings.
14183 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
14184 `access-type' and new obsolescence format.
14185 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
14186 new format.
14187 (byte-compile-check-variable): New `access-type' argument.
14188 Only warn if the access-type is obsolete.
14189 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
14190 (byte-compile-variable-set): Adjust callers.
14191 * help-fns.el (describe-variable): Adjust to new obsolescence format.
14192 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
14193 setting it as obsolete.
14194 * simple.el (minibuffer-completing-symbol):
14195 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
14196 access as obsolete.
14197 * minibuffer.el (minibuffer-completing-file-name): Don't make it
14198 obsolete yet.
14199 * international/quail.el (quail-mouse-choose-completion): Remove unused
14200 code referring to obsolete var.
14201 (quail-choose-completion-string): Remove.
14202 * server.el (server-clients-with, server-kill-buffer-query-function)
14203 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
14204 * proced.el (proced-send-signal):
14205 * emacs-lisp/lisp.el (lisp-complete-symbol):
14206 Replace completion-annotate-function with completion-extra-properties.
14207
14208 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
14209
14210 * simple.el (goto-line): Use read-number.
14211 (overriding-map-is-bound): Remove.
14212 (saved-overriding-map): Change default.
14213 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
14214 Take the map as argument.
14215 (universal-argument, negative-argument, digit-argument): Use it.
14216 (restore-overriding-map): Adjust.
14217 (do-auto-fill): Use fill-forward-paragraph.
14218 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
14219
14220 * minibuffer.el (minibuffer-inactive-mode-map): New var.
14221 (minibuffer-inactive-mode): New major mode.
14222 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
14223 the *Messages* buffer" hack.
14224 (mouse-popup-menubar): Don't burp if the event is a normal key.
14225
14226 Miscellaneous tweaks.
14227 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
14228 lexical scoping as in subr.el's dolist and dotimes.
14229 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
14230 Silence compiler warning.
14231 * thingatpt.el (forward-whitespace): Trivial coding style fix.
14232 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
14233 * international/ccl.el (ccl-compile): Trivial simplification.
14234 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
14235 * emacs-lisp/testcover.el (testcover-end): Remove spurious
14236 `printflag' argument.
14237 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
14238 Purecopy the whole obsolescence data.
14239
14240 2011-06-01 Leo Liu <sdl.web@gmail.com>
14241
14242 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
14243 improve doc-string as suggested by Marco Pessotto
14244 <melmothx@gmail.com>.
14245 (rcirc-print): Fix last change.
14246
14247 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14248
14249 * minibuffer.el (complete-with-action): Return nil for the metadata and
14250 boundaries of non-functional tables.
14251 (completion-table-dynamic): Return nil for the metadata.
14252 (completion-table-with-terminator): Add default case, using
14253 complete-with-action.
14254 (completion--metadata): New function.
14255 (completion-all-sorted-completions, minibuffer-completion-help): Use it
14256 to try and avoid pathological performance problems.
14257 (completion--embedded-envvar-table): Return `category' metadata.
14258
14259 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
14260
14261 * subr.el (process-alive-p): New tiny convenience function.
14262
14263 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14264
14265 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
14266 content but also its previous major mode.
14267
14268 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
14269
14270 * emacs-lisp/debug.el (debug): Restore the previous content of the
14271 *Backtrace* buffer when we exit with C-M-c.
14272
14273 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14274
14275 * minibuffer.el: Add metadata method to completion tables.
14276 (completion-category-overrides): New defcustom.
14277 (completion-metadata, completion--field-metadata)
14278 (completion-metadata-get, completion--styles)
14279 (completion--cycle-threshold): New functions.
14280 (completion-try-completion, completion-all-completions):
14281 Add `metadata' argument to choose completion-styles.
14282 (completion--do-completion): Use metadata to choose cycling.
14283 (completion-all-sorted-completions): Use metadata for sorting.
14284 Remove :completion-cycle-penalty which is not needed any more.
14285 (completion--try-word-completion): Add `metadata' argument.
14286 (minibuffer-completion-help): Check metadata for annotation function
14287 and sorting.
14288 (completion-file-name-table): Return `category' metadata.
14289 (minibuffer-completing-file-name): Make obsolete.
14290 * simple.el (minibuffer-completing-symbol): Make obsolete.
14291 * icomplete.el (icomplete-completions): Pass new `metadata' param to
14292 completion-try-completion.
14293
14294 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14295
14296 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
14297
14298 2011-05-30 Leo Liu <sdl.web@gmail.com>
14299
14300 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
14301 (rcirc-print): Decode all incoming messages (bug#8744).
14302 (rcirc-decode-coding-system): Allow value nil for automatic coding
14303 system detection.
14304
14305 2011-06-01 Glenn Morris <rgm@gnu.org>
14306
14307 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
14308
14309 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
14310
14311 * image.el (image-animate-max-time): Allow nil and t values.
14312 Default to nil.
14313 (create-animated-image): Doc fix.
14314 (image-animate-start): Remove second arg; just use
14315 image-animate-max-time.
14316 (image-animate-timeout): Doc fix. Args changed.
14317
14318 * image-mode.el (image-toggle-display-image): Ensure that the
14319 image spec passed to the animate timer is the same object as in
14320 the buffer's display property (Bug#6981).
14321 (image-transform-properties): Doc fix.
14322
14323 * image.el (image-animate-max-time): Default to nil.
14324
14325 2011-05-29 Martin Rudalics <rudalics@gmx.at>
14326
14327 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
14328 entire buffer list (Bug#8184).
14329
14330 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
14331
14332 * image.el (imagemagick-types-inhibit)
14333 (imagemagick-register-types): Doc fix.
14334
14335 2011-05-29 Deniz Dogan <deniz@dogan.se>
14336
14337 * net/rcirc.el (rcirc): Use the user's stored encryption method by
14338 default.
14339
14340 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
14341
14342 * select.el: Don't perform clipboard-manager saving in hooks;
14343 leave the hooks empty.
14344
14345 2011-05-28 Leo Liu <sdl.web@gmail.com>
14346
14347 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
14348 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
14349 (occur-edit-mode): New major mode (Bug#8463).
14350 (occur-after-change-function): New function.
14351 (occur-engine): Give Occur tags a read-only property.
14352
14353 2011-05-28 Kevin Ryde <user42@zip.com.au>
14354
14355 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
14356
14357 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
14358
14359 * bindings.el (help-echo): Make the initial non-indicator dash
14360 empty on graphical terminals (Bug#7295).
14361
14362 * files.el (auto-mode-alist): Move config rule after the
14363 in-stripping one (Bug#8547).
14364
14365 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
14366
14367 * startup.el (normal-splash-screen): Remove gratuitous mode-line
14368 setting (Bug#8740).
14369
14370 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
14371
14372 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
14373 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
14374 (Bug#8539).
14375
14376 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
14377
14378 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
14379
14380 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
14381
14382 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
14383 (hs-hide-block-at-point, hs-find-block-beginning)
14384 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
14385 (Bug#8279).
14386
14387 2011-05-28 Glenn Morris <rgm@gnu.org>
14388
14389 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
14390
14391 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
14392
14393 * help-fns.el (describe-function-1): If the function is a derived
14394 major mode, print the parent mode.
14395
14396 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
14397 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
14398
14399 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
14400
14401 * minibuffer.el (completion--capf-wrapper): Check applicability before
14402 returning non-nil for non-exclusive completion data.
14403 * progmodes/etags.el (tags-completion-at-point-function):
14404 * info-look.el (info-lookup-completions-at-point): Mark as
14405 non-exclusive.
14406 (info-complete): Adjust accordingly.
14407
14408 * info-look.el: Convert to lexical-binding and completion-at-point.
14409 (info-lookup-completions-at-point): New function.
14410 (info-complete): Use it and completion-in-region.
14411
14412 2011-05-28 Drew Adams <drew.adams@oracle.com>
14413
14414 * isearch.el: Let M-e start with point at the first mismatched char.
14415 (isearch-fail-pos): New function.
14416 (isearch-edit-string): Use it.
14417
14418 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
14419
14420 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
14421
14422 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
14423
14424 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
14425 traversal functions for avl-trees.
14426 (avl-tree--stack): New struct.
14427 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
14428 (avl-tree-enter): Add optional `updatefun' arg.
14429 (avl-tree--do-enter): Add optional `updatefun' arg.
14430 Change return value.
14431 (avl-tree-delete): Add optional `test' and `nilflag' args.
14432 (avl-tree--do-delete): Add `test' and `nilflag' args.
14433 Change return value.
14434 (avl-tree-member): Add optional `nilflag'
14435 (avl-tree-member-p): New function.
14436 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
14437 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
14438 (avl-tree-stack-empty-p): New functions.
14439
14440 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
14441 avl-tree--del-balance1 and make it work both ways.
14442 (avl-tree--del-balance2): Remove.
14443 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
14444 make it work both ways.
14445 (avl-tree--enter-balance2): Remove.
14446 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
14447 New macros.
14448 (avl-tree--mapc, avl-tree-map): Add direction argument.
14449
14450 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
14451
14452 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
14453
14454 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
14455
14456 * select.el: Support clipboard managers with built-in function
14457 x-clipboard-manager-save, via delete-frame-functions and
14458 kill-emacs-hook.
14459 (xselect-convert-to-targets): Add MULTIPLE target to list.
14460 (xselect-convert-to-save-targets): New function.
14461
14462 2011-05-27 Kenichi Handa <handa@m17n.org>
14463
14464 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
14465 let-binding rfc2047-encode-encoded-words to nil.
14466
14467 2011-05-27 Glenn Morris <rgm@gnu.org>
14468
14469 * mail/emacsbug.el: Don't require url-util.
14470
14471 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
14472
14473 * files.el (set-auto-mode):
14474 Also respect mode: entries at the end of the file. (Bug#8586)
14475
14476 2011-05-26 Glenn Morris <rgm@gnu.org>
14477
14478 * files.el (hack-local-variables-prop-line, hack-local-variables):
14479 Downcase mode names, as seems to be traditional.
14480 (hack-local-variables, hack-local-variables-apply): Doc fixes.
14481
14482 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
14483 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
14484
14485 2011-05-25 Julien Danjou <julien@danjou.info>
14486
14487 * textmodes/rst.el (rst-define-level-faces): Do not define face
14488 symbol if it is already defined.
14489
14490 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
14491
14492 * play/5x5.el (5x5-new-game, 5x5-randomize):
14493 Reset 5x5-solver-output to nil when a new grid is cast.
14494 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
14495 these debugging traces, as defmacro breaks the compiled code.
14496
14497 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
14498
14499 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
14500
14501 2011-05-24 Leo Liu <sdl.web@gmail.com>
14502
14503 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
14504 (vc-bzr-sha1): Adapt.
14505
14506 * sha1.el: Remove. Function `sha1' is now builtin.
14507
14508 * bindings.el: Provide sha1 feature.
14509
14510 2011-05-24 Kenichi Handa <handa@m17n.org>
14511
14512 * mail/sendmail.el: Require `rfc2047'.
14513 (mail-insert-from-field): Do not perform RFC2047 encoding.
14514 (mail-encode-header): New function.
14515 (sendmail-send-it): Set buffer-file-coding-system of the work
14516 buffer to the return value of select-message-coding-system.
14517 Call mail-encode-header.
14518
14519 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
14520
14521 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
14522
14523 * mail/supercite.el (sc-default-cite-frame):
14524 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
14525
14526 2011-05-24 Glenn Morris <rgm@gnu.org>
14527
14528 * progmodes/python.el (brm-menu): Declare.
14529
14530 * emulation/viper.el (viper-set-hooks): Declare.
14531
14532 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
14533 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
14534 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
14535 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
14536 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
14537 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
14538
14539 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
14540
14541 Add an :exit-function for completion-at-point.
14542
14543 * minibuffer.el (completion--done): New fun.
14544 (completion--do-completion): Use it. New arg `expect-exact'.
14545 (minibuffer-complete, minibuffer-complete-word): Don't output message,
14546 since completion--do-completion does it for us now.
14547 (minibuffer-force-complete): Use completion--done and
14548 completion--replace. Handle sole-completion case with more care.
14549 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
14550 (completion-extra-properties): New var.
14551 (completion-annotate-function): Make obsolete.
14552 (minibuffer-completion-help): Adjust accordingly.
14553 Use completion-list-insert-choice-function.
14554 (completion-at-point, completion-help-at-point):
14555 Bind completion-extra-properties.
14556 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
14557 * simple.el (completion-list-insert-choice-function): New var.
14558 (completion-setup-function): Preserve it.
14559 (choose-completion): Pay attention to it, shuffle the code a bit.
14560 (choose-completion-string): New arg `insert-function'.
14561
14562 * textmodes/bibtex.el: Convert to lexical binding.
14563 (bibtex-mode-map): Use completion-at-point.
14564 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
14565 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
14566 (bibtex-complete): Define as obsolete alias.
14567 (bibtex-complete-internal): Remove.
14568 (bibtex-format-entry): Remove unused sub-group in regexp.
14569 * shell.el (shell--command-completion-data)
14570 (shell-environment-variable-completion):
14571 * pcomplete.el (pcomplete-completions-at-point):
14572 * comint.el (comint--complete-file-name-data): Use :exit-function
14573 instead of completion-table-with-terminator so it also works for
14574 choose-completion.
14575
14576 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
14577
14578 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
14579
14580 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
14581 (bug#8710).
14582
14583 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
14584
14585 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
14586
14587 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
14588 customization variable and implement: If non-nil, auto-fill will
14589 be inhibited while on topic's header line.
14590
14591 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
14592
14593 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
14594 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
14595 always have a solution in grid size = 5 cases.
14596 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
14597 (5x5-solver-output, 5x5-log-buffer): New vars.
14598 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
14599 Make these variables buffer local to achieve 5x5 multi-session-ness.
14600 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
14601 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
14602 (5x5-solve-suggest): New funs.
14603 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
14604 randomize a grid so that we ensure that there is always a solution.
14605 (5x5-make-random-grid): Allow other movement than flipping.
14606
14607 2011-05-23 Kevin Ryde <user42@zip.com.au>
14608
14609 * emacs-lisp/advice.el (ad-read-advised-function):
14610 Use `function-called-at-point' as the default, if it has
14611 advice and passes PREDICATE.
14612
14613 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
14614
14615 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
14616 byte-compile-lambda if it's actually a lambda.
14617
14618 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
14619 Fix function quoting. Use backquote better.
14620
14621 2011-05-22 Yuanle Song <sylecn@gmail.com>
14622
14623 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
14624 matching (Bug#8516).
14625
14626 2011-01-22 Jari Aalto <jari.aalto@cante.net>
14627
14628 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
14629 different face (Bug#8178).
14630
14631 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
14632
14633 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
14634 defface (Bug#8144).
14635
14636 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
14637
14638 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
14639 funcall as well (bug#8712). Warn when performing those conversions.
14640 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
14641
14642 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
14643
14644 2011-05-22 Glenn Morris <rgm@gnu.org>
14645
14646 * files.el (hack-local-variables-prop-line): Small simplifications.
14647 (hack-local-variables, hack-local-variables-prop-line):
14648 If MODE-ONLY, return the mode, rather than just `t'.
14649
14650 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
14651
14652 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
14653
14654 2011-05-21 Glenn Morris <rgm@gnu.org>
14655
14656 * files.el (hack-local-variables-prop-line, hack-local-variables):
14657 If only interested in the mode, don't bother doing the other stuff.
14658
14659 * image-mode.el (image-after-revert-hook):
14660 Redraw all frames on which the image is visible. (Bug#8567)
14661
14662 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
14663
14664 * wid-edit.el (widget-checklist-match-inline):
14665 Fix 2011-04-19 change. (Bug#8649)
14666
14667 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
14668
14669 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
14670 Also allow singlespace after single-letter capitals followed by a dot.
14671
14672 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
14673 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
14674
14675 2011-05-20 Nix <nix@esperi.org.uk>
14676
14677 * files.el (basic-save-buffer-2):
14678 Fix handling of break-hardlink-on-save with non-existent files.
14679
14680 2011-05-19 Deniz Dogan <deniz@dogan.se>
14681
14682 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
14683 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
14684
14685 2011-05-19 Glenn Morris <rgm@gnu.org>
14686
14687 * progmodes/f90.el (f90-type-def-re):
14688 Handle "type, bind(c)". (Bug#8691)
14689
14690 * emacs-lisp/autoload.el (batch-update-autoloads):
14691 Set autoload-excludes by parsing loadup.el rather than Makefiles.
14692
14693 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
14694
14695 * net/tramp.el (tramp-process-actions): Set "first-password-request"
14696 property for the correct connection in case of multihops.
14697
14698 2011-05-18 Glenn Morris <rgm@gnu.org>
14699
14700 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
14701 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
14702
14703 Rationalize calendar handling of day and month abbrev-arrays.
14704 * calendar/calendar.el (calendar-customized-p): New function.
14705 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
14706 (calendar-day-name-array, calendar-month-name-array): Doc fix.
14707 Add :set function.
14708 (calendar-abbrev-length, calendar-day-abbrev-array)
14709 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
14710 (calendar-day-abbrev-array, calendar-month-abbrev-array):
14711 Elements may no longer be nil.
14712 (calendar-day-name, calendar-month-name):
14713 Update for changed nature of abbrev arrays.
14714 * calendar/diary-lib.el (diary-name-pattern):
14715 Update for changed nature of abbrev arrays.
14716 (diary-mark-entries-1): Update calendar-make-alist calls.
14717 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
14718 * calendar/cal-html.el (cal-html-day-abbrev-array):
14719 Simply inherit from calendar-day-abbrev-array.
14720
14721 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14722
14723 * progmodes/grep.el (grep-mode): Disable default
14724 compilation-directory-matcher setting (bug#8684).
14725
14726 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
14727
14728 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
14729 instead of "head" and "tail". There were problems with SunOS 5.9,
14730 and it performs better.
14731
14732 2011-05-17 Glenn Morris <rgm@gnu.org>
14733
14734 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
14735
14736 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
14737 Replace obsolete function.
14738
14739 * shell.el (pcomplete-parse-arguments-function): Declare.
14740
14741 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
14742 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
14743 (appt-check): Doc fixes.
14744 (appt-disp-window-function, appt-delete-window-function):
14745 Remove needless special case in custom :type.
14746 (appt-display-count): Default to 0, not nil.
14747 (appt-check): Reset appt-display-count to 0, not nil.
14748
14749 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
14750
14751 * progmodes/python.el (python-font-lock-keywords):
14752 Add the Python 3.X keyword "nonlocal" (bug#8639).
14753
14754 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
14755
14756 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
14757
14758 2011-05-16 Kevin Ryde <user42@zip.com.au>
14759
14760 * info-look.el (makefile-automake-mode): New setups, looking in
14761 automake manual, then makefile-mode.
14762 (makefile-mode): Remove automake manual, have it just in
14763 makefile-automake-mode since there's various things different or
14764 not relevant to plain make.
14765 (makefile-mode): Remove "other-modes" non-existent automake-mode,
14766 believe a hypothetical automake-mode would go to makefile-mode,
14767 not the other way around.
14768
14769 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
14770
14771 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
14772 hunk-end tags (Bug#8672).
14773
14774 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
14775 vc-annotate-show-diff-revision-at-line (Bug#8671).
14776
14777 2011-05-14 Glenn Morris <rgm@gnu.org>
14778
14779 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
14780 in the middle of an existing one with multiple authors. (Bug#8645)
14781 (change-log-font-lock-keywords): Also handle multiple author lines
14782 with leading tabs. (Bug#8644)
14783
14784 * calendar/appt.el (appt-check): Rename some local variables.
14785 Some simplification/reordering.
14786
14787 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
14788 (feedmail-sendmail-f-doesnt-sell-me-out)
14789 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
14790 (feedmail-debug-sit-for, feedmail-queue-express-hook)
14791 (feedmail-queue-runner-message-sender): Set :version.
14792 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
14793 (bbdb-dwim-net-address, vm-mail): Declare.
14794 (feedmail-binmail-gnulinuxish-template):
14795 Rename from feedmail-binmail-linuxish-template.
14796 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
14797 Use insert-buffer-substring.
14798
14799 2011-05-14 Bill Carpenter <bill@carpenter.org>
14800
14801 * mail/feedmail.el (feedmail-patch-level): Increase.
14802 (feedmail-debug): New custom group.
14803 (feedmail-confirm-outgoing-timeout)
14804 (feedmail-sendmail-f-doesnt-sell-me-out)
14805 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
14806 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
14807 (feedmail-sender-line, feedmail-from-line)
14808 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
14809 (feedmail-spray-this-address)
14810 (feedmail-spray-address-fiddle-plex-list)
14811 (feedmail-queue-use-send-time-for-date)
14812 (feedmail-queue-use-send-time-for-message-id)
14813 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
14814 (feedmail-buffer-eating-function):
14815 Doc fixes.
14816 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
14817 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
14818 (feedmail-message-action-scroll-down): New functions.
14819 (feedmail-queue-directory, feedmail-queue-draft-directory):
14820 Use expand-file-name.
14821 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
14822 Remove C-v help entry.
14823 (feedmail-queue-buffer-file-name): New variable.
14824 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
14825 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
14826 (feedmail-message-action-send-strong, feedmail-message-action-edit)
14827 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
14828 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
14829 (feedmail-message-action-toggle-spray)
14830 (feedmail-run-the-queue-no-prompts)
14831 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
14832 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
14833 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
14834 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
14835 (feedmail-envelope-deducer, feedmail-fiddle-from)
14836 (feedmail-fiddle-sender, feedmail-default-date-generator)
14837 (feedmail-fiddle-date, feedmail-fiddle-message-id)
14838 (feedmail-fiddle-spray-address)
14839 (feedmail-fiddle-list-of-spray-fiddle-plexes)
14840 (feedmail-fiddle-list-of-fiddle-plexes)
14841 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
14842 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
14843 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
14844 Change default. Doc fix.
14845 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
14846 (feedmail-binmail-linuxish-template): New constant.
14847 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
14848 Respect feedmail-sendmail-f-doesnt-sell-me-out.
14849 (feedmail-send-it): Add debug call.
14850 Use feedmail-queue-buffer-file-name, and
14851 feedmail-send-it-immediately-wrapper.
14852 (feedmail-message-action-send): Add debug call.
14853 Use feedmail-send-it-immediately-wrapper.
14854 (feedmail-queue-express-to-queue): Add debug call.
14855 Run feedmail-queue-express-hook.
14856 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
14857 (feedmail-message-action-help-blat):
14858 Rename from feedmail-queue-send-edit-prompt-help-first.
14859 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
14860 Check line-endings. Handle errors better.
14861 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
14862 Doc fix. Add debug call.
14863 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
14864 Use feedmail-queue-send-edit-prompt-inner.
14865 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
14866 (feedmail-queue-send-edit-prompt-inner): New function, extracted
14867 from feedmail-queue-send-edit-prompt.
14868 (feedmail-queue-send-edit-prompt-help)
14869 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
14870 (feedmail-tidy-up-slug): Add debug call.
14871 Respect feedmail-queue-slug-suspect-regexp.
14872 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
14873 (feedmail-dump-message-to-queue): Add debug call.
14874 Expand queue-directory.
14875 (feedmail-dump-message-to-queue): Change message slightly.
14876 Use feedmail-say-chatter.
14877 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
14878 (feedmail-send-it-immediately-wrapper): New function.
14879 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
14880 Insert empty string rather than newline. Handle full-frame case.
14881 Use catch/throw. Use feedmail-say-chatter.
14882 (feedmail-fiddle-from): Try mail-host-address.
14883 (feedmail-default-message-id-generator): Doc fix.
14884 Bind system-time-locale. Handle missing end.
14885 (feedmail-fiddle-x-mailer): Add debug call.
14886 Handle feedmail-x-mailer-line being nil.
14887 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
14888 Add debug call. Use buffer-substring-no-properties.
14889 (feedmail-say-debug, feedmail-say-chatter): New functions.
14890 (feedmail-find-eoh): Give an explicit error.
14891
14892 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
14893
14894 * net/newst-treeview.el (newsticker-treeview-face): Change default
14895 family from helvetica to sans.
14896 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
14897 etc/images/newsticker.
14898
14899 * net/newst-reader.el (newsticker-feed-face): Change default
14900 family from helvetica to sans.
14901
14902 * net/newst-plainview.el (newsticker-new-item-face)
14903 (newsticker-old-item-face, newsticker-immortal-item-face)
14904 (newsticker-obsolete-item-face, newsticker-date-face)
14905 (newsticker-statistics-face): Change default family from
14906 helvetica to sans.
14907 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
14908 etc/images/newsticker.
14909
14910 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
14911 (newsticker--process-auto-mark-filter-match): Tell user about
14912 auto-marking.
14913
14914 2011-05-13 Didier Verna <didier@xemacs.org>
14915
14916 Common Lisp indentation improvements on defmethod and lambda-lists.
14917 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
14918 TODO entries.
14919 (lisp-lambda-list-keyword-parameter-indentation)
14920 (lisp-lambda-list-keyword-parameter-alignment)
14921 (lisp-lambda-list-keyword-alignment): New customizable user options.
14922 (lisp-indent-defun-method): Improve docstring.
14923 (extended-loop-p): Fix comment.
14924 (lisp-indent-lambda-list-keywords-regexp): New variable.
14925 (lisp-indent-lambda-list): New function.
14926 (lisp-indent-259): Use it.
14927 (lisp-indent-defmethod): Support for more than one
14928 method qualifier and properly indent methods lambda-lists.
14929 (defgeneric): Provide a missing common-lisp-indent-function property.
14930
14931 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
14932
14933 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
14934 bounds for the empty string (bug#8667).
14935
14936 2011-05-13 Glenn Morris <rgm@gnu.org>
14937
14938 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
14939
14940 * mail/sendmail.el (sendmail-program): Try executable-find first.
14941 (sendmail-send-it): `sendmail-program' cannot be unbound.
14942
14943 * calendar/appt.el (appt-make-list): Simplify.
14944 (appt-time-msg-list): Doc fix.
14945 (appt-check): Change mode-line message at the time of the appointment.
14946
14947 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
14948
14949 * progmodes/ld-script.el (ld-script-keywords)
14950 (ld-script-builtins): Update keywords list.
14951
14952 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
14953
14954 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
14955
14956 * shell.el (shell-completion-vars): New function.
14957 (shell-mode):
14958 * simple.el (read-shell-command): Use it.
14959 (blink-matching-open): No need for " [...]" in minibuffer-message.
14960
14961 2011-05-12 Glenn Morris <rgm@gnu.org>
14962
14963 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
14964 (appt-check): Simplify.
14965
14966 2011-05-12 Eli Zaretskii <eliz@gnu.org>
14967
14968 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
14969 literal "/dev/null".
14970
14971 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
14972
14973 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
14974 Fix typo.
14975
14976 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
14977
14978 * progmodes/which-func.el (which-function):
14979 Use add-log-current-defun instead of add-log-current-defun-function,
14980 which might not be defined (Bug#8260).
14981
14982 2011-05-12 Glenn Morris <rgm@gnu.org>
14983
14984 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
14985 Let byte-compile-initial-macro-environment always take precedence.
14986
14987 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
14988
14989 * net/rcirc.el: Add support for SSL/TLS connections.
14990 (rcirc-server-alist): New field `encryption'.
14991 (rcirc): Check `encryption' settings.
14992 (rcirc-connect): New arg `encryption'. Use open-network-stream.
14993 Merge make-local-variable into `set'.
14994 (rcirc--connection-open-p): New function.
14995 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
14996 the process is not a network process (e.g. running gnutls-cli).
14997 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
14998 Make rcirc-(en|de)code-coding-system local here.
14999 (rcirc-mode): Merge make-local-variable into `set'.
15000 (rcirc-parent-buffer): Make permanent buffer-local.
15001 (rcirc-multiline-minor-mode): Don't do it here.
15002 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
15003 there's no server buffer.
15004
15005 2011-05-11 Glenn Morris <rgm@gnu.org>
15006
15007 * newcomment.el (comment-kill): Prefix "unused" local.
15008
15009 * term/w32console.el (get-screen-color): Declare.
15010
15011 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
15012 Handle symbol elements of byte-compile-initial-macro-environment.
15013
15014 2011-05-10 Leo Liu <sdl.web@gmail.com>
15015
15016 * bookmark.el (bookmark-bmenu-mode-map):
15017 Bind bookmark-bmenu-search to `/'.
15018
15019 * mail/footnote.el: Convert to utf-8 encoding.
15020 (footnote-unicode-string, footnote-unicode-regexp): New variable.
15021 (Footnote-unicode): New function.
15022 (footnote-style-alist): Add unicode style to the list.
15023 (footnote-style): Doc fix.
15024
15025 2011-05-10 Jim Meyering <meyering@redhat.com>
15026
15027 Fix doubled-word typos.
15028 * international/quail.el (quail-insert-kbd-layout): and and -> and
15029 * kermit.el: and and -> and
15030 * net/ldap.el (ldap-search-internal): to to -> to
15031 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
15032 * progmodes/js.el (js-mode): and and -> and
15033 * textmodes/artist.el (artist-move-to-xy): at at -> at
15034 (artist-draw-region-trim-line-endings): if if -> if
15035 And Safetyc -> Safety.
15036 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
15037
15038 2011-05-10 Glenn Morris <rgm@gnu.org>
15039 Stefan Monnier <monnier@iro.umontreal.ca>
15040
15041 * files.el (hack-one-local-variable-eval-safep):
15042 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
15043
15044 2011-05-10 Glenn Morris <rgm@gnu.org>
15045
15046 * calendar/diary-lib.el (diary-list-entries-hook)
15047 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
15048 (diary-nongregorian-marking-hook, diary-list-entries)
15049 (diary-include-other-diary-files, diary-mark-entries)
15050 (diary-mark-included-diary-files): Doc fixes.
15051
15052 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
15053
15054 * misc.el: Require tabulated-list.el during compilation.
15055
15056 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
15057
15058 * progmodes/compile.el (compilation-start):
15059 Run compilation-filter-hook for the async case too.
15060 (compilation-filter-hook): Doc fix.
15061
15062 2011-05-09 Deniz Dogan <deniz@dogan.se>
15063
15064 * wdired.el: Remove outdated installation comment. Fix usage
15065 comment.
15066
15067 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
15068
15069 * misc.el: Implement new command `list-dynamic-libraries'.
15070 (list-dynamic-libraries--loaded-only-p): New variable.
15071 (list-dynamic-libraries--refresh): New function.
15072 (list-dynamic-libraries): New command.
15073
15074 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
15075
15076 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15077 Fix the ant regexp to handle end-line and end-column info from jikes.
15078 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
15079 higher priority to avoid clobbering by gnu.
15080
15081 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
15082
15083 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
15084 if the face has existing theme settings (Bug#8454).
15085
15086 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
15087
15088 * progmodes/perl-mode.el (perl-imenu-generic-expression):
15089 Only match variables declared via `my' or `our' (Bug#8261).
15090
15091 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
15092 special file names `.' and `..' (Bug#8259).
15093
15094 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
15095
15096 * progmodes/grep.el (grep-mode-font-lock-keywords):
15097 Remove buffer-changing entries.
15098 (grep-filter): New function.
15099 (grep-mode): Add it to compilation-filter-hook.
15100
15101 * progmodes/compile.el (compilation-filter-hook)
15102 (compilation-filter-start): New defvars.
15103 (compilation-filter): Call compilation-filter-hook prior to
15104 updating the process mark.
15105
15106 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
15107
15108 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
15109
15110 2011-05-07 Eli Zaretskii <eliz@gnu.org>
15111
15112 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
15113 mailclient-send-it even if window-system is nil. (Bug#8595)
15114
15115 * term/w32console.el (terminal-init-w32console):
15116 Call get-screen-color and use its output to set the frame
15117 background-mode. (Bug#8597)
15118
15119 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
15120
15121 Make bytecomp.el understand that defmethod defines funs (bug#8631).
15122 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
15123 New functions.
15124 (defgeneric, eieio--defmethod): Use them.
15125 (eieio-defgeneric): Remove.
15126 (defmethod): Call defgeneric in a way visible to the byte-compiler.
15127
15128 2011-05-07 Glenn Morris <rgm@gnu.org>
15129
15130 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
15131 Use let rather than let*.
15132 (timeclock-find-discrep): Remove unused local.
15133
15134 * calendar/diary-lib.el (diary-comment-start): Doc fix.
15135
15136 * calendar/appt.el (appt-time-msg-list): Doc fix.
15137
15138 2011-05-06 Noah Friedman <friedman@splode.com>
15139
15140 * apropos.el (apropos-print-doc): Only use
15141 emacs-lisp-docstring-fill-column when it is bound to an integer,
15142 per that variable's documentation.
15143
15144 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15145
15146 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
15147 and warnings are not silently discarded (e.g. use -d instead of -P).
15148
15149 2011-05-06 Glenn Morris <rgm@gnu.org>
15150
15151 * calendar/appt.el (appt-message-warning-time): Doc fix.
15152 (appt-warning-time-regexp): New option.
15153 (appt-make-list): Respect appt-message-warning-time.
15154
15155 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
15156 New options.
15157 (diary-add-to-list): Strip comments from the displayed string.
15158 (diary-mode): Set comment-start and comment-end.
15159
15160 * vc/diff-mode.el (smerge-refine-subst): Declare.
15161 (diff-refine-hunk): Don't require smerge-mode when compiling.
15162
15163 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
15164
15165 * simple.el (list-processes): Return nil as the docstring says.
15166
15167 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
15168
15169 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
15170 to "".
15171 (ange-ftp-write-region, ange-ftp-insert-file-contents)
15172 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
15173 determining of binary transfer. (Bug#7383)
15174
15175 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
15176
15177 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
15178 Fix port computation bug. (Bug#8618)
15179
15180 2011-05-05 Glenn Morris <rgm@gnu.org>
15181
15182 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
15183
15184 * simple.el (shell-dynamic-complete-functions)
15185 (comint-dynamic-complete-functions): Declare.
15186
15187 * net/network-stream.el (gnutls-negotiate):
15188 * simple.el (tabulated-list-print): Fix declarations.
15189
15190 * progmodes/gud.el (syntax-symbol, syntax-point):
15191 Remove unnecessary and incorrect declarations.
15192
15193 * emacs-lisp/check-declare.el (check-declare-scan):
15194 Handle byte-compile-initial-macro-environment in bytecomp.el
15195
15196 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
15197
15198 Fix earlier half-done eieio-defmethod change (bug#8338).
15199 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
15200 Streamline and change calling convention.
15201 (defmethod): Adjust accordingly and simplify.
15202 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
15203 new eieio--defmethod.
15204 (slot-boundp): Minor CSE simplification.
15205
15206 2011-05-05 Milan Zamazal <pdm@zamazal.org>
15207
15208 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
15209 (glasses-make-readable): Use glasses-separate-capital-groups.
15210
15211 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
15212
15213 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
15214 (warning-series): Doc fix.
15215 (display-warning): Don't try to create the buffer if we just found it.
15216
15217 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
15218
15219 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
15220 (autoload-find-generated-file): New function.
15221 (generate-file-autoloads): Bind generated-autoload-file to
15222 buffer-file-name.
15223 (update-file-autoloads, update-directory-autoloads):
15224 Use autoload-find-generated-file. If called interactively, prompt for
15225 output file (Bug#7989).
15226 (batch-update-autoloads): Doc fix.
15227
15228 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
15229
15230 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
15231
15232 2011-05-04 Glenn Morris <rgm@gnu.org>
15233
15234 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
15235 function, so it follows changes in calendar-date-style.
15236 (diary-fancy-date-matcher): New function.
15237 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
15238 (diary-fancy-font-lock-fontify-region-function):
15239 Use diary-fancy-date-pattern as a function.
15240
15241 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
15242 non-numbers for `year' etc pseudo-variables. (Bug#8583)
15243
15244 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
15245
15246 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
15247 instead of positional arguments. Allow :keylist and :crlfiles
15248 arguments.
15249 (open-gnutls-stream): Call it.
15250
15251 * net/network-stream.el (network-stream-open-starttls): Adjust to
15252 call `gnutls-negotiate' with :process and :hostname arguments.
15253
15254 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
15255
15256 * minibuffer.el (completion--message): New function.
15257 (completion--do-completion, minibuffer-complete)
15258 (minibuffer-force-complete, minibuffer-complete-word): Use it.
15259 (completion--do-completion): Don't ignore completion-auto-help when in
15260 icomplete-mode.
15261
15262 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
15263 internal encoding (e.g. tibetan zero is not whitespace).
15264 (global-whitespace-mode): Prefer save-current-buffer.
15265 (whitespace-trailing-regexp): Remove useless save-match-data.
15266 (whitespace-empty-at-bob-regexp): Minor simplification.
15267
15268 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
15269
15270 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
15271
15272 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
15273
15274 * textmodes/ispell.el (ispell-add-per-file-word-list):
15275 Use `concat' to create string for insertion.
15276
15277 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
15278
15279 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
15280 Avoid open-line which runs post-self-insert-hook.
15281 (bibtex-fill-entry): Remove unused `end' var.
15282
15283 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
15284
15285 * textmodes/ispell.el (ispell-add-per-file-word-list):
15286 Protect against `nil' value of `comment-start' (Bug#8579).
15287
15288 2011-05-03 Leo Liu <sdl.web@gmail.com>
15289
15290 * isearch.el (isearch-yank-pop): New command.
15291 (isearch-mode-map): Bind it to `M-y'.
15292 (isearch-forward): Mention it.
15293
15294 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
15295
15296 * simple.el (minibuffer-complete-shell-command): Remove.
15297 (minibuffer-local-shell-command-map): Use completion-at-point.
15298 (read-shell-command): Setup completion vars here instead.
15299 (read-expression-map): Bind TAB to symbol completion.
15300
15301 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
15302 error directly rather via storing it into `results'.
15303
15304 2011-05-02 Leo Liu <sdl.web@gmail.com>
15305
15306 * vc/diff.el: Fix description.
15307
15308 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15309
15310 * server.el (server-eval-at): New function.
15311
15312 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
15313
15314 * net/network-stream.el (open-network-stream): Take a :nowait
15315 parameter and pass it on to `make-network-process'.
15316 (network-stream-open-plain): Ditto.
15317
15318 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
15319
15320 * faces.el (face-spec-set-match-display): Don't match toolkit
15321 options on terminal frames.
15322
15323 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
15324
15325 * progmodes/pascal.el: Use lexical binding.
15326 (pascal-mode-map): Remove author preferences.
15327
15328 * pcomplete.el (pcomplete-std-complete): Don't abuse
15329 completion-at-point.
15330
15331 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
15332
15333 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
15334 removing code that has been dead since 1991 or so.
15335
15336 * startup.el (command-line): When warning about "_emacs", use a
15337 delayed warning to allow the user to filter it out.
15338
15339 2011-04-28 Deniz Dogan <deniz@dogan.se>
15340
15341 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
15342 user has not joined.
15343
15344 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
15345
15346 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
15347 aren't any completions at point.
15348
15349 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
15350
15351 * subr.el (display-delayed-warnings): New function.
15352 (delayed-warnings-hook): New variable.
15353
15354 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
15355
15356 * minibuffer.el (completion-at-point, completion-help-at-point):
15357 Don't presume that a given completion-at-point-function will always
15358 use the same calling convention.
15359
15360 * pcomplete.el (pcomplete-completions-at-point):
15361 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
15362 pcomplete-seen is non-nil.
15363 (pcomplete-comint-setup): Also recognize the new comint/shell
15364 completion functions.
15365 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
15366 pcomplete-seen is non-nil.
15367
15368 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
15369
15370 * calendar/icalendar.el (diary-lib): Add require statement.
15371 (icalendar--create-uid): Read out a uid from a text-property on
15372 the first character in the entry. This allows for code to add its
15373 own uid to the entry.
15374 (icalendar--convert-float-to-ical): Add export of
15375 `diary-float'-entries save for those with the optional DAY
15376 argument.
15377
15378 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
15379
15380 * subr.el (shell-quote-argument): Use alternate escaping strategy
15381 when we spot a variable reference in a string.
15382
15383 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
15384
15385 * cus-start.el (all): Define customization for debug-on-event.
15386
15387 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
15388
15389 * subr.el (shell-quote-argument): Escape correctly under Windows.
15390
15391 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15392
15393 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
15394
15395 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
15396
15397 * net/tramp.el (tramp-process-actions): Add POS argument.
15398 Delete region between POS and (pos).
15399
15400 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
15401 Use `nil' position in `tramp-process-actions' call.
15402 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
15403
15404 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
15405 position in `tramp-process-actions' call.
15406
15407 * net/trampver.el: Update release number.
15408
15409 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15410
15411 * custom.el (defcustom): Obey lexical-binding.
15412
15413 Fix octave-inf completion problems reported by Alexander Klimov.
15414 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
15415 Inherit from octave-mode-syntax-table.
15416 (inferior-octave-mode): Set info-lookup-mode.
15417 (inferior-octave-completion-at-point): New function.
15418 (inferior-octave-complete): Use it and completion-in-region.
15419 (inferior-octave-dynamic-complete-functions): Use it as well, and use
15420 comint-filename-completion.
15421 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
15422 symbol elements which shouldn't be word elements.
15423 (octave-font-lock-keywords, octave-beginning-of-defun)
15424 (octave-function-header-regexp): Adjust regexps accordingly.
15425 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
15426
15427 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
15428
15429 * net/gnutls.el (gnutls-errorp): Declare before first use.
15430
15431 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
15432
15433 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
15434 verify-error, and verify-hostname-error parameters. Check whether
15435 default trustfile exists before going to use it. Add missing
15436 argument to gnutls-message-maybe call. Return value.
15437 Reported by Claudio Bley <claudio.bley@gmail.com>.
15438 (open-gnutls-stream): Add usage example.
15439
15440 * net/network-stream.el (network-stream-open-starttls): Give host
15441 parameter to `gnutls-negotiate'.
15442 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
15443 * subr.el (shell-quote-argument): Escape correctly under Windows.
15444
15445 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
15446
15447 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
15448 Use correct match group (bug#8438).
15449
15450 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
15451
15452 * emacs-lisp/package.el (package-built-in-p): Fix typo.
15453 (package-menu--generate): New arg specifying packages to show.
15454 (package-menu-refresh, package-menu-execute, list-packages):
15455 Callers changed.
15456 (package-show-package-list): New function, replacing deleted
15457 package--list-packages (renamed because it is non-internal).
15458
15459 * finder.el (finder-list-matches): Use package-show-package-list
15460 instead of deleted package--list-packages.
15461
15462 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
15463 Based on a previous implementation by Juanma Barranquero (Bug#8366).
15464 (vc-annotate-mode-map): Bind it to RET.
15465
15466 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
15467
15468 * progmodes/etags.el (next-file): Don't use set-buffer to change
15469 buffers (Bug#8478).
15470
15471 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
15472
15473 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
15474
15475 * apropos.el (apropos-label-face): Avoid variable-pitch face.
15476 (apropos-accumulator): Doc fix.
15477 (apropos-function, apropos-macro, apropos-command)
15478 (apropos-variable, apropos-face, apropos-group, apropos-widget)
15479 (apropos-plist): Add face property.
15480 (apropos-symbols-internal): Fix indentation.
15481 (apropos-print): Simplify help, and recognize apropos-multi-type.
15482 (apropos-print-doc): Use button-type-get to extract the button's
15483 face property. Fill docstring (Bug#8352).
15484
15485 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
15486
15487 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
15488
15489 * play/mpuz.el (mpuz-silent): Doc fix.
15490 (mpuz-mode-map): Use mapc.
15491 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
15492 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
15493 Fix typos in docstrings.
15494
15495 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
15496 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
15497
15498 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
15499
15500 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
15501
15502 * minibuffer.el (completion--do-completion): Avoid the "Next char
15503 not unique" prompt if icomplete-mode is enabled (Bug#5849).
15504
15505 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
15506 mouse-2 into unread-command-events, it is interpreted correctly.
15507
15508 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
15509 (image-toggle-display): Doc fix.
15510
15511 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
15512
15513 * textmodes/page.el (what-page): Use line-number-at-pos to
15514 calculate line number (Bug#6825).
15515
15516 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
15517
15518 * eshell/esh-mode.el (find-tag-interactive): Declare function.
15519 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
15520 Pass argument NO-DEFAULT to `find-tag-interactive'.
15521
15522 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
15523
15524 Lexical-binding cleanup.
15525
15526 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
15527 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
15528 * progmodes/ada-prj.el (ada-prj-initialize-values)
15529 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
15530 (ada-prj-show-value):
15531 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
15532 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
15533 (antlr-invalidate-context-cache, antlr-options-menu-filter)
15534 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
15535 * progmodes/bug-reference.el (bug-reference-push-button):
15536 * progmodes/fortran.el (fortran-line-length):
15537 * progmodes/glasses.el (glasses-change):
15538 * progmodes/octave-mod.el (octave-fill-paragraph):
15539 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
15540 (python-pdbtrack-grub-for-buffer, python-sentinel):
15541 * progmodes/sql.el (sql-save-connection):
15542 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
15543 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
15544 Mark unused parameters.
15545
15546 * progmodes/compile.el (compilation--flush-directory-cache)
15547 (compilation--flush-parse, compile-internal): Mark unused parameters.
15548 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
15549 (compilation-next-error-function): Remove unused variable `timestamp'.
15550
15551 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
15552 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
15553
15554 * progmodes/dcl-mode.el (dcl-end-of-command):
15555 Remove unused variable `start'.
15556 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
15557 (dcl-option-value-basic, dcl-option-value-offset)
15558 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
15559 Mark unused parameters.
15560 (dcl-save-local-variable): Remove unused variable `val'.
15561 (mode): Declare.
15562
15563 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
15564 Mark unused parameters.
15565 (delphi-ignore-changes): Move before first use.
15566 (delphi-charset-token-at): Remove unused variable `start'.
15567 (delphi-else-start): Remove unused variable `if-count'.
15568 (delphi-comment-block-start, delphi-comment-block-end):
15569 Remove unused variable `kind'.
15570 (delphi-indent-line): Remove unused variable `new-point'.
15571
15572 * progmodes/ebrowse.el (ebrowse-files-list)
15573 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
15574 Mark unused parameters. Don't quote `lambda'.
15575 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
15576 Don't quote `lambda'.
15577 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
15578 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
15579 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
15580 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
15581 Use `ignore-errors'.
15582 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
15583 (ebrowse-view/find-file-and-search-pattern)
15584 (ebrowse-view/find-member-declaration/definition):
15585 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
15586 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
15587 Rename parameter PREFIX-ARG to PREFIX.
15588 (ebrowse-tags-read-name): Remove unused variables `start' and
15589 `member-info'.
15590 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
15591 to `tags-file'.
15592
15593 * progmodes/etags.el (local-find-tag-hook): Declare.
15594 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
15595 Mark unused parameters.
15596
15597 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
15598 (executable-interpret): Mark unused parameter.
15599
15600 * progmodes/flymake.el (flymake-process-sentinel)
15601 (flymake-after-change-function)
15602 (flymake-create-temp-with-folder-structure)
15603 (flymake-get-include-dirs-dot): Mark unused parameters.
15604 (flymake-safe-delete-directory): Remove unused variable `err'.
15605
15606 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
15607 (speedbar-timer-fn, speedbar-line-text)
15608 (speedbar-change-expand-button-char, speedbar-delete-subblock)
15609 (speedbar-center-buffer-smartly): Declare functions.
15610 (gdb-find-watch-expression): Remove unused variable `array'.
15611 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
15612 (gdb-starting): Mark unused parameters.
15613 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
15614 (gdb-table-string): Remove unused variable `res'.
15615 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
15616 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
15617 (gdb-display-buffer): Remove unused variable `cur-size'.
15618
15619 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
15620 allow lexical-binding compilation.
15621 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
15622 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
15623 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
15624 Mark unused parameters.
15625 (gud-gdb-marker-filter): Remove unused variable `match'.
15626 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
15627 lambda expressions and funcall them, instead of using `fset'.
15628
15629 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
15630 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
15631
15632 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
15633 variable `header-beg'; use `let'.
15634
15635 * progmodes/icon.el (indent-icon-exp): Remove unused variables
15636 `restart', `last-sexp' and `at-do'.
15637
15638 * progmodes/js.el (js--debug): Mark unused parameter.
15639 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
15640 (js--splice-into-items): Remove unused variable `item'.
15641 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
15642
15643 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
15644 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
15645 (makefile-complete): Remove unused variable `try'.
15646 (makefile-fill-paragraph, makefile-match-function-end):
15647 Mark unused parameters.
15648
15649 * progmodes/octave-inf.el (inferior-octave-complete):
15650 Remove unused variable `proc'.
15651 (inferior-octave-output-digest): Mark unused parameter.
15652
15653 * progmodes/perl-mode.el (perl-calculate-indent):
15654 Remove unused variable `err'.
15655
15656 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
15657 (prolog-indent-line): Mark unused parameters.
15658 (prolog-indent-line): Remove unused variable `beg'.
15659
15660 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
15661 (reporter-dont-compact-list): Declare.
15662
15663 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
15664 Remove unused variable `char'.
15665 (sh-debug): Mark unused parameter.
15666 (sh-get-indent-info): Remove unused variable `start'.
15667 (sh-calculate-indent): Remove unused variable `var'.
15668
15669 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
15670 (simula-electric-keyword): Remove unused variable `null'.
15671 (simula-search-backward, simula-search-forward): Remove unused
15672 variables `begin' and `end'.
15673
15674 * progmodes/vera-mode.el (vera-guess-basic-syntax):
15675 Remove unused variable `pos'.
15676 (vera-electric-tab, vera-comment-uncomment-region):
15677 Mark unused parameters.
15678 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
15679
15680 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
15681
15682 * emacs-lisp/package.el (package--builtins, package-alist)
15683 (package-load-descriptor, package-built-in-p, package-activate)
15684 (define-package, package-installed-p)
15685 (package-compute-transaction, package-buffer-info)
15686 (package--push): Doc fix. Distinguish more clearly between
15687 version strings and version lists.
15688
15689 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
15690
15691 Lexical-binding cleanup.
15692
15693 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
15694 (5x5-make-mutate-best):
15695 * play/fortune.el (fortune-in-buffer):
15696 * play/gomoku.el (gomoku-init-display):
15697 * play/solitaire.el (solitaire, solitaire-do-check):
15698 * play/tetris.el (tetris-default-update-speed-function):
15699 Mark unused parameters.
15700
15701 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
15702 (bubbles--shift): Remove unused variable `char-org'.
15703 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
15704 (bubbles--show-images): Remove unused variable `char'.
15705
15706 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
15707 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
15708 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
15709 (decipher-analyze-buffer): Use ?\s.
15710 (decipher-make-checkpoint): Remove unused variable `mapping'.
15711
15712 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
15713
15714 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
15715 Remove unused variable `result'; use `let'.
15716
15717 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
15718 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
15719 (gametree-children-shown-p, gametree-compute-reduced-score):
15720 Use `ignore-errors'.
15721
15722 * play/handwrite.el (ps-lpr-switches): Declare.
15723 (handwrite): Remove unused variables `pmin' and `lastp'.
15724
15725 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
15726
15727 * play/landmark.el (landmark-init-display)
15728 (landmark-update-naught-weights): Mark unused parameters.
15729 (landmark-y): Remove unused variable `noise'. Simplify.
15730 (landmark-human-plays): Remove unused variable `score'.
15731
15732 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
15733 (mpuz-try-proposal): Remove unused variable `game'.
15734
15735 * play/zone.el (life-patterns): Declare.
15736
15737 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
15738
15739 * vc/vc.el (ediff-vc-internal): Declare function.
15740
15741 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
15742
15743 * shell.el: Use lexical-binding and std completion UI.
15744 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
15745 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
15746 comint-preoutput-filter-functions rather than on
15747 comint-output-filter-functions.
15748 (shell-command-completion, shell--command-completion-data)
15749 (shell-filename-completion, shell-environment-variable-completion)
15750 (shell-c-a-p-replace-by-expanded-directory): New functions.
15751 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
15752 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
15753 (shell-dynamic-complete-environment-variable): Use them.
15754 (shell-dynamic-complete-as-environment-variable)
15755 (shell-dynamic-complete-as-command): Remove.
15756 (shell-match-partial-variable): Match past point.
15757 * comint.el: Clean up use of completion-at-point-functions.
15758 (comint-completion-at-point): New function.
15759 (comint-mode): Use it completion-at-point-functions.
15760 (comint-dynamic-complete): Make it obsolete.
15761 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
15762 (comint-c-a-p-replace-by-expanded-history): New function.
15763 (comint-dynamic-complete-functions)
15764 (comint-replace-by-expanded-history): Use it.
15765 * minibuffer.el (completion-table-with-terminator): Allow dynamic
15766 termination strings. Try harder to avoid second try-completion.
15767 (completion-in-region-mode-map): Disable bindings that don't work yet.
15768
15769 * comint.el: Use lexical-binding. Require CL.
15770 (comint-dynamic-complete-functions): Use comint-filename-completion.
15771 (comint-completion-addsuffix): Tweak custom type.
15772 (comint-filename-completion, comint--common-suffix)
15773 (comint--common-quoted-suffix, comint--table-subvert)
15774 (comint--complete-file-name-data): New functions.
15775 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
15776 (comint-dynamic-list-filename-completions): Use them.
15777 (comint-dynamic-simple-complete): Make obsolete.
15778
15779 * minibuffer.el (completion-in-region-mode):
15780 Keep completion-in-region-mode--predicate global.
15781 (completion-in-region--postch):
15782 Assume completion-in-region-mode--predicate is not null.
15783
15784 * progmodes/flymake.el (flymake-start-syntax-check-process):
15785 Obey `dir'. Simplify.
15786
15787 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
15788 we're in VC after all.
15789
15790 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
15791
15792 * vc/vc.el (vc-diff-build-argument-list-internal)
15793 (vc-version-ediff, vc-ediff): New commands.
15794 (vc-version-diff): Use vc-diff-build-argument-list-internal.
15795
15796 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
15797
15798 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
15799 add sanity check.
15800
15801 * obsolete/erc-hecomplete.el: Make obsolete.
15802 * obsolete/: Standardize obsolescence info in the header.
15803
15804 2011-04-20 Glenn Morris <rgm@gnu.org>
15805
15806 * calendar/solar.el (solar-horizontal-coordinates):
15807 Use the longitude argument rather than `calendar-longitude'.
15808 (solar-date-next-longitude): Remove unused locals.
15809
15810 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15811
15812 * whitespace.el: New version 13.2.1.
15813
15814 2011-04-20 felix <EmacsWiki> (tiny change)
15815
15816 * whitespace.el (global-whitespace-mode): Keep highlight when
15817 switching between major modes on a file.
15818
15819 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
15820
15821 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
15822 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
15823 multi-line comments as well.
15824
15825 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
15826
15827 Lexical-binding cleanup.
15828
15829 * arc-mode.el (archive-mode-revert):
15830 * cmuscheme.el (scheme-interactively-start-process):
15831 * custom.el (custom-initialize-delay):
15832 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
15833 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
15834 * emacs-lock.el (emacs-lock-clear-sentinel):
15835 * ezimage.el (defezimage):
15836 * follow.el (follow-avoid-tail-recenter):
15837 * fringe.el (set-fringe-mode-1):
15838 * generic-x.el (bat-generic-mode-compile):
15839 * help-mode.el (help-info-variable, help-do-xref)
15840 (help-mode-revert-buffer):
15841 * help.el (view-emacs-todo):
15842 * iswitchb.el (iswitchb-completion-help):
15843 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
15844 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
15845 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
15846 * locate.el (locate-update):
15847 * longlines.el (longlines-encode-region)
15848 (longlines-after-change-function):
15849 * outline.el (outline-isearch-open-invisible):
15850 * ps-def.el (declare-function, charset-dimension, char-width)
15851 (encode-char):
15852 * ps-mule.el (ps-mule-plot-string):
15853 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
15854 (recentf-edit-list-select, recentf-edit-list-validate)
15855 (recentf-open-files-action):
15856 * rect.el (delete-whitespace-rectangle-line)
15857 (rectangle-number-line-callback):
15858 * register.el (window-configuration-to-register)
15859 (frame-configuration-to-register):
15860 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
15861 * select.el (xselect-convert-to-string, xselect-convert-to-length)
15862 (xselect-convert-to-targets, xselect-convert-to-delete)
15863 (xselect-convert-to-filename, xselect-convert-to-charpos)
15864 (xselect-convert-to-lineno, xselect-convert-to-colno)
15865 (xselect-convert-to-os, xselect-convert-to-host)
15866 (xselect-convert-to-user, xselect-convert-to-class)
15867 (xselect-convert-to-name, xselect-convert-to-integer)
15868 (xselect-convert-to-atom, xselect-convert-to-identity):
15869 * subr.el (declare, ignore, process-kill-without-query)
15870 (text-clone-maintain):
15871 * terminal.el (te-get-char, te-tic-sentinel):
15872 * tool-bar.el (tool-bar-make-keymap):
15873 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
15874 * type-break.el (type-break-mode, type-break-noninteractive-query):
15875 * view.el (View-back-to-mark):
15876 * wid-browse.el (widget-browse-action, widget-browse-widget)
15877 (widget-browse-widgets, widget-browse-sexp):
15878 * widget.el (define-widget-keywords):
15879 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
15880 Mark unused parameters.
15881
15882 * align.el (align-adjust-col-for-rule): Mark unused parameter.
15883 (align-areas): Remove unused variable `look'.
15884 (align-region): Remove unused variables `real-end' and `pos-list'.
15885
15886 * apropos.el (apropos-score-doc): Remove unused variable `i'.
15887
15888 * bindings.el (mode-line-modified, mode-line-remote):
15889 Mark unused parameters.
15890 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
15891
15892 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
15893 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
15894
15895 * comint.el (comint-history-isearch-pop-state)
15896 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
15897 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
15898 (comint-substitute-in-file-name): Doc fix.
15899
15900 * completion.el (cmpl-statistics-block): Mark unused parameter.
15901 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
15902 (save-completions-to-file, load-completions-from-file):
15903 Remove unused local variable `e'.
15904
15905 * composite.el (compose-chars): Remove unused variable `len'.
15906 (lgstring-insert-glyph): Remove unused variable `g'.
15907 (compose-glyph-string): Remove unused variables `ascent',
15908 `descent', `lbearing' and `rbearing'.
15909 (compose-glyph-string-relative): Remove unused variables
15910 `lbearing', `rbearing' and `wadjust'.
15911 (compose-gstring-for-graphic): Remove unused variables `header',
15912 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
15913 (compose-gstring-for-terminal): Remove unused variables `header'
15914 and `nchars'. Use `let', not `let*'.
15915
15916 * cus-edit.el (Custom-set, Custom-save, custom-reset)
15917 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
15918 (Custom-buffer-done, custom-buffer-create-internal)
15919 (custom-browse-visibility-action, custom-browse-group-tag-action)
15920 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
15921 (widget-magic-mouse-down-action, custom-toggle-parent)
15922 (custom-add-parent-links, custom-toggle-hide-variable)
15923 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
15924 (custom-toggle-hide-face, face, hook, custom-group-link-action)
15925 (custom-face-menu-create, custom-variable-menu-create, get)
15926 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
15927 (custom-reset-standard-save-and-update): Remove unused variable `value'.
15928 (customize-apropos): Remove unused variable `tests'.
15929 (custom-group-value-create): Remove unused variable `hidden-p'.
15930 (sort-fold-case): Declare.
15931
15932 * cus-theme.el (custom-reset-standard-faces-list)
15933 (custom-reset-standard-variables-list): Declare.
15934 (customize-create-theme, custom-theme-revert, custom-theme-write)
15935 (custom-theme-choose-mode, customize-themes, custom-theme-save):
15936 Mark unused parameters.
15937
15938 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
15939
15940 * delim-col.el (delimit-columns-max): Move defvar before first use.
15941
15942 * descr-text.el (describe-char-categories): Don't quote `lambda'.
15943 (describe-char): Don't quote `lambda'. Mark unused parameter.
15944
15945 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
15946 (auto-insert): Declare.
15947 (desktop-restore-file-buffer): Rename desktop-* parameters;
15948 mark unused ones.
15949 (desktop-create-buffer): Rename desktop-* parameters and bind them.
15950 (desktop-buffer): Rename desktop-* parameters.
15951
15952 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
15953 (dframe-reposition-frame-xemacs, dframe-help-echo)
15954 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
15955 Mark unused parameters.
15956
15957 * dired-aux.el (backup-extract-version-start, overwrite-query)
15958 (overwrite-backup-query, rename-regexp-query)
15959 (rename-non-directory-query): Declare.
15960 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
15961 (dired-add-entry): Remove unused variable `orig-file-name'.
15962 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
15963 Use parameter PRESERVE-TIME instead of accessing dynamic variable
15964 `dired-copy-preserve-time' directly.
15965 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
15966 (dired-insert-subdir-newpos): Rename unused variable `pos'.
15967
15968 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
15969 (dired-virtual-revert, dired-make-relative-symlink):
15970 Mark unused parameters.
15971 (manual-program): Declare.
15972 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
15973 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
15974 wrapped in `with-no-warnings' to avoid replacing one warning by another.
15975
15976 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
15977
15978 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
15979
15980 * echistory.el (electric-history-in-progress, Helper-return-blurb):
15981 Declare.
15982
15983 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
15984
15985 * electric.el (Electric-command-loop): Rename parameter
15986 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
15987
15988 * expand.el (expand-in-literal): Remove unused variable `here'.
15989
15990 * facemenu.el (facemenu-add-new-color):
15991 Remove unused variable `docstring'.
15992
15993 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
15994 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
15995 (face-attr-construct): Mark unused parameter. Doc fix.
15996 (read-color): Remove unused variable `hex-string'.
15997
15998 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
15999 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
16000 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
16001 (display-buffer-other-frame): Remove unused variable `old-window'.
16002 (kill-buffer-hook): Declare.
16003 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
16004 Mark unused parameters.
16005 (after-find-file): Pass 1 to `auto-save-mode', not t.
16006
16007 * files-x.el (auto-insert): Declare.
16008 (modify-file-local-variable-prop-line): Remove unused variable `val'.
16009
16010 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
16011 variable `buf'. Mark unused parameter.
16012 (find-lisp-insert-directory): Mark unused parameter.
16013
16014 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
16015 (format-encode-region): Remove unused variables `cur-buf' and `result'.
16016 (format-common-tail): Remove, unused.
16017 (format-deannotate-region): Remove unused variable `loc'.
16018 (format-annotate-region): Remove unused variable `p'.
16019 (format-annotate-single-property-change): Remove unused variables
16020 `default' and `tail'.
16021
16022 * forms.el (read-file-filter): Declare.
16023 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
16024
16025 * frame.el (frame-creation-function-alist): Mark unused parameter.
16026 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
16027
16028 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
16029 Remove unused parameters.
16030 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
16031 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
16032
16033 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
16034 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
16035 (hfy-prepare-tag-map): Mark unused parameters.
16036 (htmlfontify-buffer): Use `called-interactively-p'.
16037
16038 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
16039 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
16040 (ibuffer-do-occur): Mark unused parameters.
16041 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
16042 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
16043
16044 * ibuffer.el: Don't quote `lambda'.
16045 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
16046 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
16047 Mark unused parameters.
16048
16049 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
16050 (ido-completing-read): Mark unused parameters.
16051 (ido-copy-current-word): Mark unused parameters;
16052 remove unused variable `name'.
16053 (ido-sort-merged-list): Remove unused parameter `dirs'.
16054
16055 * ielm.el (ielm-input-sender): Mark unused parameter.
16056 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
16057 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
16058 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
16059 `ielm-string' as a dynamic variable accessible from the IELM prompt.
16060 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
16061
16062 * image-dired.el (image-dired-display-thumbs): Remove unused
16063 variables `curr-file' and `count'.
16064 (image-dired-remove-tag): Remove unused variable `start'.
16065 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
16066 variable `curr-file'
16067 (image-dired-rotate-original): Remove unused variable `temp-file'.
16068 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
16069 Remove unused variable `file'.
16070 (image-dired-gallery-generate): Remove unused variable `curr'.
16071 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
16072
16073 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
16074
16075 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
16076
16077 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
16078
16079 * isearch.el (minibuffer-history-symbol): Declare.
16080 (isearch-edit-string): Remove unused variable `err'.
16081 (isearch-message-prefix, isearch-message-suffix):
16082 Mark unused parameters.
16083
16084 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
16085
16086 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
16087
16088 * makesum.el (double-column): Remove unused variable `cnt'.
16089
16090 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
16091 (ido-ignore-item-temp-list): Declare.
16092
16093 * mouse-drag.el (mouse-drag-throw): Remove unused variables
16094 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
16095 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
16096 (mouse-drag-drag): Remove unused variables `mouse-delta' and
16097 `mouse-col-delta'.
16098
16099 * mouse-sel.el (mouse-extend-internal):
16100 Remove unused variable `orig-window-frame'.
16101
16102 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
16103 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
16104 Move declarations before first use.
16105 (pcomplete-opt): Mark unused parameters; doc fix.
16106
16107 * proced.el (proced-revert): Mark unused parameter.
16108 (proced-send-signal): Remove unused variable `err'.
16109
16110 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
16111 Rename parameter PREFIX-ARG to ARG.
16112 (ps-basic-plot-string, ps-basic-plot-whitespace):
16113 Mark unused parameters.
16114
16115 * replace.el (replace-count): Define.
16116 (occur-revert-function): Mark unused parameters.
16117 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
16118 (isearch-case-fold-search, isearch-string): Declare.
16119 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
16120 bind `case-fold-search'. Remove unused variables `beg' and `end',
16121 and simplify.
16122 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
16123 COUNT and bind `replace-count'.
16124 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
16125 to COUNT.
16126
16127 * savehist.el (print-readably, print-string-length): Declare.
16128
16129 * shadowfile.el (shadow-expand-cluster-in-file-name):
16130 Remove unused variable `cluster'.
16131 (shadow-copy-file): Remove unused variable `i'.
16132 (shadow-noquery, shadow-clusters, shadow-site-cluster)
16133 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
16134 (shadow-define-literal-group, shadow-define-regexp-group)
16135 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
16136
16137 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
16138 (shell): Use `called-interactively-p'.
16139 (shell-directory-tracker): Remove unused variable `chdir-failure'.
16140
16141 * simple.el (compilation-context-lines, comint-file-name-quote-list)
16142 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
16143 (delete-backward-char): Remove unused variable `ocol'.
16144 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
16145 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
16146 (event-apply-hyper-modifier, event-apply-shift-modifier)
16147 (event-apply-control-modifier, event-apply-meta-modifier):
16148 Mark unused parameters.
16149 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
16150 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
16151
16152 * speedbar.el (speedbar-ignored-directory-expressions)
16153 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
16154 (speedbar-find-file, speedbar-dir-follow)
16155 (speedbar-directory-buttons-follow, speedbar-tag-find)
16156 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
16157 (speedbar-buffers-line-directory, speedbar-buffer-click):
16158 Mark unused parameters.
16159 (speedbar-tag-file): Remove unused variable `mode'.
16160 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
16161
16162 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
16163
16164 * talk.el (talk): Remove unused variable `display'.
16165
16166 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
16167 (tar-write-region-annotate): Mark unused parameter.
16168
16169 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
16170 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
16171 Declare them, wrapped in `with-no-warnings' to avoid replacing one
16172 warning by another.
16173
16174 * time-stamp.el (time-stamp-string-preprocess):
16175 Remove unused variable `require-padding'.
16176
16177 * tree-widget.el (widget-glyph-enable): Declare.
16178 (tree-widget-action): Mark unused parameter.
16179
16180 * w32-fns.el (x-get-selection): Mark unused parameter.
16181 (autoload-make-program, generated-autoload-file): Declare.
16182
16183 * wdired.el (wdired-revert): Mark unused parameters.
16184 (wdired-xcase-word): Remove unused variable `err'.
16185
16186 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
16187 (whitespace-help-scroll): Remove unused variable `data-help'.
16188
16189 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
16190 (widget-image-insert, widget-after-change, default)
16191 (widget-default-format-handler, widget-default-notify)
16192 (widget-default-prompt-value, widget-info-link-action)
16193 (widget-url-link-action, widget-function-link-action)
16194 (widget-variable-link-action, widget-file-link-action)
16195 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
16196 (widget-field-prompt-internal, widget-field-action, widget-field-match)
16197 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
16198 (widget-insert-button-action, widget-delete-button-action, visibility)
16199 (widget-documentation-link-action, widget-documentation-string-action)
16200 (widget-const-prompt-value, widget-regexp-match, symbol)
16201 (widget-coding-system-prompt-value)
16202 (widget-key-sequence-value-to-external, sexp)
16203 (widget-sexp-value-to-internal, character, vector, cons)
16204 (widget-choice-prompt-value, widget-boolean-prompt-value)
16205 (widget-color--choose-action): Mark unused parameters.
16206 (widget-item-match-inline, widget-choice-match-inline)
16207 (widget-checklist-match, widget-checklist-match-inline)
16208 (widget-group-match): Rename parameter VALUES to VALS.
16209 (widget-field-value-set): Remove unused variable `size'.
16210 (widget-color-action): Remove unused variables `value' and `start'.
16211
16212 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
16213 variable `dir'. Doc fix.
16214 (windmove-find-other-window): Don't pass it.
16215
16216 * window.el (count-windows): Mark unused parameter.
16217 (bw-adjust-window): Remove unused variable `err'.
16218
16219 * woman.el (woman-file-name): Remove unused variable `default'.
16220 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
16221 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
16222 (global-font-lock-mode): Declare.
16223 (woman-decode-region): Mark unused parameter.
16224 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
16225
16226 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
16227 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
16228 (x-dnd-handle-moz-url): Remove unused variable `title'.
16229 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
16230
16231 * xml.el (xml-parse-tag, xml-parse-attlist):
16232 Remove unused variable `pos'.
16233
16234 2011-04-19 Glenn Morris <rgm@gnu.org>
16235
16236 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
16237 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
16238 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
16239 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
16240 * calendar/cal-html.el (cal-html-insert-minical):
16241 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
16242 (calendar-mark-date-pattern):
16243 Prefix "unused" locals.
16244
16245 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
16246 optional argument `style'.
16247
16248 * calendar/appt.el (appt-make-list):
16249 * calendar/cal-china.el (calendar-chinese-date-string):
16250 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
16251 (diary-hebrew-yahrzeit):
16252 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
16253 * calendar/calendar.el (calendar-generate-window):
16254 * calendar/time-date.el (time-to-days):
16255 Remove unused local variables.
16256
16257 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
16258
16259 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
16260 glyphless-char-display table.
16261 (tabulated-list-glyphless-char-display): New var.
16262
16263 2011-04-18 Sam Steingold <sds@gnu.org>
16264
16265 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
16266 to acknowledgments.
16267
16268 2011-04-17 Glenn Morris <rgm@gnu.org>
16269
16270 * calendar/diary-lib.el (diary-sexp-entry):
16271 * calendar/holidays.el (holiday-sexp):
16272 Set debug-on-error rather than the removed stack-trace-on-error.
16273
16274 2011-04-16 Glenn Morris <rgm@gnu.org>
16275
16276 * progmodes/f90.el: Use lexical-binding.
16277 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
16278
16279 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16280
16281 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
16282 (mail-mode): Setup mailalias completion here instead.
16283 * mail/mailalias.el: Use lexical-binding.
16284 (pattern, mailalias-done): Declare dynamic.
16285 (mail-completion-at-point-function): New function, from mail-complete.
16286 (mail-complete): Use it.
16287 (mail-completion-expand): New function.
16288 (mail-get-names): Use it.
16289 (mail-directory, mail-directory-process, mail-directory-stream):
16290 Don't use `pattern' for lexically bound arg.
16291
16292 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
16293
16294 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
16295 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
16296 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
16297
16298 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
16299 (byte-save-window-excursion, byte-temp-output-buffer-setup)
16300 (byte-interactive-p): Define them again, for use when inlining
16301 old code.
16302
16303 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
16304
16305 * loadup.el: Use `string-to-number', not `string-to-int'.
16306
16307 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16308
16309 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
16310 gud-gdb-complete-command.
16311 (gud-gdb-completions): New function, from gud-gdb-complete-command.
16312 (gud-gdb-completion-at-point): New function.
16313 (gud-gdb-completions): Remove.
16314
16315 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
16316
16317 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
16318 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
16319 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
16320 whether `executable-find' is bound.
16321
16322 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
16323
16324 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
16325
16326 * minibuffer.el (completion-in-region-mode-predicate)
16327 (completion-in-region-mode--predicate): New vars.
16328 (completion-in-region, completion-in-region--postch)
16329 (completion-in-region-mode): Use them.
16330 (completion--capf-wrapper): Also return the hook function.
16331 (completion-at-point, completion-help-at-point):
16332 Adjust and provide a predicate.
16333
16334 Preserve arg names for advice of subr and lexical functions (bug#8457).
16335 * help-fns.el (help-function-arglist): Consolidate the subr and
16336 new-byte-code cases. Add argument `preserve-names' to extract names
16337 from the docstring when needed.
16338 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
16339 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
16340 (ad-arglist): Use help-function-arglist's new arg.
16341 (ad-definition-type): Use cond.
16342
16343 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
16344
16345 * autorevert.el (auto-revert-handler):
16346 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
16347 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
16348 Don't quote lambda.
16349
16350 * image-mode.el (image-transform-set-scale):
16351 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
16352
16353 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16354
16355 * net/network-stream.el (network-stream-open-starttls): Only do
16356 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
16357 Upgrades via gnutls-cli are too slow to be done opportunistically.
16358
16359 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
16360
16361 * dframe.el (dframe-current-frame): Remove spurious quote.
16362
16363 2011-04-12 Glenn Morris <rgm@gnu.org>
16364
16365 * calendar/cal-tex.el (cal-tex-end-document):
16366 Try to automatically use latin1 input if needed.
16367
16368 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
16369 Don't try to cons a mark onto an empty element.
16370
16371 2011-04-11 Leo Liu <sdl.web@gmail.com>
16372
16373 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
16374 buffers.
16375 (ido-kill-buffer-at-head): Support killing virtual buffers.
16376
16377 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
16378
16379 * minibuffer.el (completion-show-inline-help): New var.
16380 (completion--do-completion, minibuffer-complete)
16381 (minibuffer-force-complete, minibuffer-complete-word):
16382 Inhibit minibuffer messages if completion-show-inline-help is nil.
16383
16384 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
16385 to avoid interference from inline help (Bug#5849).
16386
16387 2011-04-10 Leo Liu <sdl.web@gmail.com>
16388
16389 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
16390 Fix typo.
16391
16392 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
16393
16394 * image-mode.el (image-toggle-display-image): Signal an error if
16395 not in Image mode.
16396 (image-transform-mode, image-transform-resize)
16397 (image-transform-set-rotation): Doc fix.
16398 (image-transform-set-resize): Delete.
16399 (image-transform-set-scale, image-transform-fit-to-height)
16400 (image-transform-fit-to-width): Handle image-toggle-display-image
16401 and image-transform-resize directly.
16402
16403 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
16404
16405 * doc-view.el (doc-view-fit-width-to-window)
16406 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
16407 New functions for fitting the shown image to the Emacs window size.
16408 (doc-view-mode-map): Add bindings for the new functions.
16409
16410 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
16411
16412 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
16413 Fix typo in docstring.
16414
16415 2011-04-08 Eli Zaretskii <eliz@gnu.org>
16416
16417 * files.el (file-size-human-readable): Produce one digit after
16418 decimal, like "ls -lh" does.
16419
16420 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
16421 the file size representation.
16422
16423 * simple.el (list-processes): If async subprocesses are not
16424 available, error out with a clear error message.
16425
16426 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
16427
16428 * help.el (help-form-show): New function, to be called from C.
16429 Put help-form output in a buffer named differently than *Help*.
16430
16431 2011-04-08 Eli Zaretskii <eliz@gnu.org>
16432
16433 * files.el (file-size-human-readable): New function.
16434
16435 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
16436 computing the representation inline. Don't require `cl'.
16437
16438 2011-04-08 Glenn Morris <rgm@gnu.org>
16439
16440 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
16441
16442 * net/browse-url.el (browse-url-firefox):
16443 Test system-type, not system-configuration.
16444
16445 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
16446 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
16447 Use log-edit-empty-buffer-p. (Bug#7598)
16448
16449 * net/rlogin.el (rlogin-process-connection-type): Simplify.
16450 (rlogin-mode-map): Initialize in the defvar.
16451 (rlogin): Use ignore-errors.
16452
16453 * replace.el (occur-mode-map): Some fixes for menu items.
16454
16455 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
16456
16457 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
16458
16459 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
16460
16461 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
16462 issuing unused warnings.
16463
16464 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
16465 macro directly.
16466
16467 * simple.el: Lisp reimplement of list-processes. Based on an
16468 earlier reimplementation by Leo Liu, but using tabulated-list.el.
16469 (process-menu-mode): New major mode.
16470 (list-processes--refresh, list-processes):
16471 (process-menu-visit-buffer): New functions.
16472
16473 * files.el (save-buffers-kill-emacs): Don't assume any return
16474 value of list-processes, which is undocumented anyway.
16475
16476 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
16477
16478 * emacs-lisp/tabulated-list.el: New file.
16479
16480 * emacs-lisp/package.el: Use Tabulated List mode.
16481 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
16482 (package-menu-mode): Derive from tabulated-list-mode. Set up the
16483 table format using Tabulated List mode variables.
16484 (package--push): New macro, replacing package-list-maybe-add.
16485 (package-menu--generate): Use package--push. Renamed from
16486 package--generate-package-list.
16487 (package-menu-refresh, list-packages): Use it.
16488 (package-menu--print-info): Rename from package-print-package.
16489 Return insertion data instead of inserting it directly.
16490 (package-menu-describe-package, package-menu-execute):
16491 Use tabulated-list-get-id.
16492 (package-menu-mark-delete, package-menu-mark-install)
16493 (package-menu-mark-unmark, package-menu-backup-unmark)
16494 (package-menu-mark-obsolete-for-deletion):
16495 Use tabulated-list-put-tag.
16496 (package--list-packages, package-menu-revert)
16497 (package-menu-get-package, package-menu-get-version)
16498 (package-menu-sort-by-column): Functions deleted.
16499 (package-menu-package-list, package-menu-sort-key): Vars deleted.
16500 (package-menu--status-predicate, package-menu--version-predicate)
16501 (package-menu--name-predicate)
16502 (package-menu--description-predicate): Handle arguments in the
16503 Tabulated List format.
16504 (package-list-packages-no-fetch): Call list-packages.
16505
16506 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
16507
16508 * files.el (after-find-file-from-revert-buffer): Remove variable.
16509 (after-find-file): Don't bind it.
16510 (revert-buffer-in-progress-p): New variable.
16511 (revert-buffer): Bind it.
16512 Pass nil for `after-find-file-from-revert-buffer'.
16513
16514 * saveplace.el (save-place-find-file-hook): Use new variable
16515 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
16516
16517 2011-04-06 Glenn Morris <rgm@gnu.org>
16518
16519 * Makefile.in (AUTOGEN_VCS): New variable.
16520 (autoloads): Use $AUTOGEN_VCS.
16521
16522 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
16523 * calendar/calendar.el (calendar-mode-map):
16524 Check for toolkit scroll bars. (Bug#8305)
16525
16526 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
16527
16528 * minibuffer.el (completion-in-region--postch)
16529 (completion-in-region-mode): Remove unnecessary messages.
16530
16531 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
16532
16533 * font-lock.el (font-lock-refresh-defaults):
16534 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
16535 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
16536
16537 * info.el (Info-directory-list, Info-read-node-name-2)
16538 (Info-split-parameter-string): Doc fixes.
16539 (Info-virtual-nodes): Reflow docstring.
16540 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
16541 (Info-apropos-toc-nodes, info-finder, Info-get-token)
16542 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
16543 Fix typos in docstrings.
16544 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
16545 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
16546 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
16547 (Info-restore-desktop-buffer): Mark unused parameters.
16548 (Info-directory-find-file, Info-directory-find-node)
16549 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
16550 (Info-virtual-index-find-node, Info-apropos-find-file)
16551 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
16552 Mark unused parameters; fix typos in docstrings.
16553 (Info-virtual-index): Remove unused local variable `nodename'.
16554
16555 2011-04-05 Deniz Dogan <deniz@dogan.se>
16556
16557 * net/rcirc.el: Update my e-mail address.
16558 (rcirc-mode-map): Remove M-o binding.
16559
16560 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
16561
16562 * startup.el (command-line): Save the cursor's theme-face
16563 directly, instead of using face-override-spec.
16564
16565 * custom.el (load-theme): Minor optimization in assigning faces.
16566
16567 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
16568
16569 * help-fns.el (describe-variable): Complete all variables having
16570 documentation, including keywords.
16571 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
16572
16573 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
16574
16575 Convert to lexical-binding.
16576
16577 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
16578 (bs--get-marked-string, bs--get-modified-string)
16579 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
16580 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
16581 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
16582
16583 * ehelp.el (electric-help-execute-extended)
16584 (electric-help-ctrl-x-prefix):
16585 * hexl.el (hexl-revert-buffer-function):
16586 * linum.el (linum-after-change, linum-after-scroll):
16587 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
16588
16589 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
16590
16591 2011-04-04 Daiki Ueno <ueno@unixuser.org>
16592
16593 * epa-dired.el:
16594 * epa-mail.el:
16595 * epa-hook.el:
16596 * epa-file.el:
16597 * epa.el:
16598 * epg.el: Use lexical binding.
16599
16600 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
16601
16602 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
16603
16604 * textmodes/flyspell.el (flyspell-word): Recognize default
16605 dictionary case for flyspell-mark-duplications-exceptions.
16606 Use regexp matching for languages.
16607 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
16608 default dictionary (Bug#7926).
16609
16610 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
16611
16612 * emacs-lisp/package.el (package--with-work-buffer):
16613 Recognize https URLs.
16614
16615 * net/network-stream.el: Move from gnus/proto-stream.el.
16616 Change prefix to network-stream throughout.
16617 (open-protocol-stream): Merge into open-network-stream, leaving
16618 open-protocol-stream as an alias. Handle nil BUFFER args.
16619
16620 * subr.el (open-network-stream): Move to net/network-stream.el.
16621
16622 2011-04-02 Glenn Morris <rgm@gnu.org>
16623
16624 * find-dired.el (find-exec-terminator): New option.
16625 (find-ls-option): Test for -ls support.
16626 (find-ls-subdir-switches): Test for -b in find-ls-option.
16627 (find-dired, find-grep-dired): Doc fixes.
16628 (find-dired): Use find-exec-terminator.
16629
16630 * find-dired.el (find-ls-option, find-ls-subdir-switches)
16631 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
16632 (find-name-arg): Remove purecopy.
16633
16634 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
16635 (grep-compute-defaults): Check for `-exec COMMAND +' support.
16636 Set grep-find-use-xargs, grep-find-command, and grep-find-template
16637 accordingly. Don't add the null-device if not needed.
16638
16639 * files.el (save-some-buffers): Doc fix.
16640
16641 2011-04-02 Eli Zaretskii <eliz@gnu.org>
16642
16643 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
16644
16645 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
16646
16647 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
16648 Use `dolist' rather than `mapcar'.
16649
16650 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
16651
16652 Add lexical binding.
16653
16654 * subr.el (apply-partially): Use new closures rather than CL.
16655 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
16656 (dolist, dotimes): Use slightly different expansion for lexical code.
16657 (functionp): Move to C.
16658 (letrec): New macro.
16659 (with-wrapper-hook): Use it and apply-partially instead of CL.
16660 (eval-after-load): Preserve lexical-binding.
16661 (save-window-excursion, with-output-to-temp-buffer): Turn them
16662 into macros.
16663
16664 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
16665
16666 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
16667 than the arglist.
16668 (help-add-fundoc-usage): Don't add `Not documented'.
16669 (help-function-arglist): Handle closures, subroutines, and new
16670 byte-code-functions.
16671 (help-make-usage): Remove leading underscores.
16672 (describe-function-1): Handle closures.
16673 (describe-variable): Use special-variable-p for completion.
16674
16675 * files.el (lexical-binding): Declare safe.
16676
16677 * emacs-lisp/pcase.el: Don't use destructuring-bind.
16678 (pcase--memoize): Rename from pcase-memoize. Change weakness.
16679 (pcase): Add `let' pattern.
16680 Change memoization so it actually works.
16681 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
16682 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
16683 <let>: New case.
16684
16685 * emacs-lisp/macroexp.el: Use lexical binding.
16686 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
16687 Don't convert ' to #' without checking that it's indeed quoting
16688 a lambda.
16689
16690 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
16691 Use eval-sexp-add-defvars.
16692 (eval-sexp-add-defvars): New fun.
16693
16694 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
16695
16696 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
16697 Don't autoload.
16698 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
16699 than the internal `byte-compile-lambda'.
16700 (defmethod): Don't hide code under quotes.
16701 (eieio-defmethod): New `code' argument.
16702
16703 * emacs-lisp/eieio-comp.el: Remove.
16704
16705 * emacs-lisp/edebug.el (edebug-eval-defun)
16706 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
16707 (edebug-toggle): Avoid `eval'.
16708
16709 * emacs-lisp/disass.el (disassemble-internal): Handle new
16710 `closure' objects.
16711 (disassemble-1): Handle new byte codes.
16712
16713 * emacs-lisp/cl.el (pushnew): Silence warning.
16714
16715 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
16716 (cl-byte-compile-throw): Remove.
16717 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
16718
16719 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
16720 closures.
16721
16722 * emacs-lisp/cconv.el: New file.
16723
16724 * emacs-lisp/bytecomp.el: Use lexical binding instead of
16725 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
16726 (byte-compile-initial-macro-environment):
16727 Handle declare-function here.
16728 (byte-compile--lexical-environment): New var.
16729 (byte-stack-ref, byte-stack-set, byte-discardN)
16730 (byte-discardN-preserve-tos): New lap codes.
16731 (byte-interactive-p): Don't use any more.
16732 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
16733 New macros.
16734 (byte-compile-lapcode): Use them and handle new lap codes.
16735 (byte-compile-obsolete): Remove.
16736 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
16737 (byte-compile-arglist-warn): Check late def of inlinable funs.
16738 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
16739 since they should have been expanded by now.
16740 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
16741 (byte-compile-from-buffer): Remove unused second arg.
16742 (byte-compile-preprocess): New function.
16743 (byte-compile-toplevel-file-form): New function to distinguish
16744 file-form calls from outside from file-form calls from hunk-handlers.
16745 (byte-compile-file-form): Simplify.
16746 (byte-compile-file-form-defsubst): Remove.
16747 (byte-compile-file-form-defmumble): Simplify now that
16748 byte-compile-lambda always returns a byte-code-function.
16749 (byte-compile): Preprocess.
16750 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
16751 Remove, not used any more.
16752 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
16753 (byte-compile-make-args-desc): New funs.
16754 (byte-compile-lambda): Handle lexical functions. Always return
16755 a byte-code-function.
16756 (byte-compile-reserved-constants): New var, to make up room for
16757 closed-over variables.
16758 (byte-compile-constants-vector): Obey it.
16759 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
16760 (byte-compile-macroexpand-declare-function): New function.
16761 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
16762 byte-code-functions.
16763 (byte-compile-form): Check obsolescence here.
16764 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
16765 (byte-compile-variable-ref): Remove.
16766 (byte-compile-dynamic-variable-op): New fun.
16767 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
16768 (byte-compile-variable-set): New funs.
16769 (byte-compile-discard): Add 2 args.
16770 (byte-compile-stack-ref, byte-compile-stack-set)
16771 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
16772 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
16773 macroexpand-all instead.
16774 (byte-compile-quote-form): Remove.
16775 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
16776 (byte-compile-bind, byte-compile-unbind): New funs.
16777 (byte-compile-let): Handle let* and lexical binding.
16778 (byte-compile-let*): Remove.
16779 (byte-compile-catch, byte-compile-unwind-protect)
16780 (byte-compile-track-mouse, byte-compile-condition-case):
16781 Handle a new :fun-body form, used for lexical scoping.
16782 (byte-compile-save-window-excursion)
16783 (byte-compile-with-output-to-temp-buffer): Remove.
16784 (byte-compile-defun): Simplify.
16785 (byte-compile-stack-adjustment): New fun.
16786 (byte-compile-out): Use it.
16787 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
16788
16789 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
16790 handler any more.
16791
16792 * emacs-lisp/byte-opt.el: Use lexical binding.
16793 (byte-inline-lapcode): Remove (to bytecomp).
16794 (byte-compile-inline-expand): Pay attention to inlining to/from
16795 lexically bound code.
16796 (byte-compile-unfold-lambda): Don't handle byte-code-functions
16797 any more.
16798 (byte-optimize-form-code-walker): Don't handle save-window-excursion
16799 any more and don't call compiler-macros.
16800 (byte-compile-splice-in-already-compiled-code): Remove.
16801 (byte-code): Don't inline any more.
16802 (disassemble-offset): Receive `bytes' as argument rather than via
16803 dynamic scoping.
16804 (byte-compile-tag-number): Declare before first use.
16805 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
16806 `return' even if make-spliceable.
16807 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
16808 obsolete interactive-p.
16809 (byte-optimize-lapcode): Optimize new lap-codes.
16810 Don't trip up on new form of `byte-constant' lap code.
16811
16812 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
16813
16814 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
16815
16816 * custom.el (custom-initialize-default, custom-declare-variable):
16817 Use `defvar'.
16818
16819 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
16820 New variables.
16821 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
16822 (COMPILE_FIRST): Add macroexp and cconv.
16823 * makefile.w32-in: Mirror changes in Makefile.in.
16824
16825 * vc/cvs-status.el:
16826 * vc/diff-mode.el:
16827 * vc/log-edit.el:
16828 * vc/log-view.el:
16829 * vc/smerge-mode.el:
16830 * textmodes/bibtex-style.el:
16831 * textmodes/css-mode.el:
16832 * startup.el:
16833 * uniquify.el:
16834 * minibuffer.el:
16835 * newcomment.el:
16836 * reveal.el:
16837 * server.el:
16838 * mpc.el:
16839 * emacs-lisp/smie.el:
16840 * doc-view.el:
16841 * dired.el:
16842 * abbrev.el: Use lexical binding.
16843
16844 2011-04-01 Eli Zaretskii <eliz@gnu.org>
16845
16846 * info.el (info-display-manual): New function.
16847
16848 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
16849
16850 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
16851
16852 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
16853
16854 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
16855 an entry for that server in rcirc-authinfo. (Bug#8385)
16856
16857 2011-03-31 Glenn Morris <rgm@gnu.org>
16858
16859 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
16860
16861 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
16862
16863 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
16864
16865 * progmodes/python.el (python-default-interpreter)
16866 (python-python-command-args, python-jython-command-args)
16867 (python-which-shell, python-which-args, python-which-bufname)
16868 (python-file-queue, python-comint-output-filter-function)
16869 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
16870 variables and functions.
16871
16872 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
16873
16874 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
16875 (completion-in-region-mode): New minor mode.
16876 (completion-in-region): Use it.
16877 (completion-in-region--data, completion-in-region-mode-map): New vars.
16878 (completion-in-region--postch): New function.
16879 (completion--capf-misbehave-funs, completion--capf-safe-funs):
16880 New vars.
16881 (completion--capf-wrapper): New function.
16882 (completion-at-point): Use it to track well-behavedness of
16883 hook functions.
16884 (completion-help-at-point): New command.
16885
16886 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
16887
16888 * vc/add-log.el (add-change-log-entry): Don't use whitespace
16889 syntax class to search for whitespace on a single line
16890 (Message-ID: <4D938140.4030905@redhat.com>).
16891
16892 2011-03-30 Leo Liu <sdl.web@gmail.com>
16893
16894 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
16895 New commands.
16896 (edit-abbrevs-map): Bind them here.
16897 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
16898
16899 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
16900
16901 * allout.el (allout-hide-by-annotation, allout-flag-region):
16902 Reduce possibility of overlay leakage by making them volatile.
16903
16904 * allout-widgets.el (allout-widgets-tally): Define as nil so the
16905 hash is not shared between buffers. Mode initialization is
16906 responsible for giving it a useful starting value.
16907 (allout-item-span): Reduce possibility of overlay leakage by
16908 making them volatile.
16909 (allout-widgets-count-buttons-in-region): Add diagnostic function
16910 for tracking down button overlay leaks.
16911
16912 2011-03-29 Leo Liu <sdl.web@gmail.com>
16913
16914 * ido.el (ido-read-internal): Use the default history var
16915 minibuffer-history if no HISTORY is specified.
16916
16917 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
16918
16919 * net/imap.el (imap-shell-open, imap-process-connection-type):
16920 Use imap-process-connection-type for 'shell' streams as well as
16921 Kerberos, SSL, other subprocesses.
16922
16923 2011-03-28 Leo Liu <sdl.web@gmail.com>
16924
16925 * abbrev.el (abbrev-table-empty-p): New function.
16926 (prepare-abbrev-list-buffer): Place empty abbrev tables after
16927 nonempty ones. (Bug#5937)
16928
16929 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
16930
16931 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
16932
16933 2011-03-27 Leo Liu <sdl.web@gmail.com>
16934
16935 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
16936 for foreground and background colors.
16937 (ansi-color-make-color-map): Adapt.
16938
16939 2011-03-25 Leo Liu <sdl.web@gmail.com>
16940
16941 * midnight.el (midnight-time-float): Remove. Note it calculates
16942 the microsecond component incorrectly and seconds-to-time does the
16943 same job.
16944 Remove redundant (require 'timer).
16945
16946 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
16947 (ido-completions): Remove unused arguments. (Bug#8329)
16948
16949 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
16950
16951 * minibuffer.el (completion--flush-all-sorted-completions):
16952 Remove itself from hook.
16953 (completion-at-point): Let the functions perform the completion
16954 immediately and return nil or t.
16955 * comint.el (comint-dynamic-complete-functions): Now identical to
16956 completion-at-point-functions.
16957 (comint-dynamic-list-input-ring): Remove unused var `index'.
16958 (comint--match-partial-filename, comint--unquote&expand-filename):
16959 New funs, split from comint-match-partial-filename.
16960 (comint-dynamic-complete): Use completion-at-point.
16961 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
16962
16963 2011-03-24 Drew Adams <drew.adams@oracle.com>
16964
16965 * thingatpt.el: Support `defun'.
16966
16967 2011-03-23 Leo Liu <sdl.web@gmail.com>
16968
16969 * abbrevlist.el: Move to obsolete/abbrevlist.el.
16970
16971 * help-mode.el (help-mode-finish): Tweak regexp.
16972
16973 2011-03-23 Glenn Morris <rgm@gnu.org>
16974
16975 * eshell/esh-opt.el (eshell-eval-using-options):
16976 Do not bind unused local variable `eshell-option-stub'.
16977
16978 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
16979
16980 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
16981
16982 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
16983 keymap variable in `with-no-warnings' to avoid a warning when the
16984 keymap has been already `defconst'ed.
16985
16986 2011-03-22 Leo Liu <sdl.web@gmail.com>
16987
16988 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
16989 encode all chars in abbrevs; otherwise use emacs-mule or
16990 utf-8-emacs. (Bug#8308)
16991
16992 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
16993
16994 * simple.el (backward-delete-char-untabify):
16995 Avoid warning about using `delete-backward-char'.
16996
16997 * image.el (image-type-file-name-regexps): Make it variable.
16998 `imagemagick-register-types' modifies it, and the user may want
16999 to add new extensions for known image types.
17000 (imagemagick-register-types): Throw error if not using ImageMagick.
17001
17002 2011-03-22 Leo Liu <sdl.web@gmail.com>
17003
17004 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
17005 located before rcirc-prompt-end-marker.
17006 (rcirc-complete): Error if point is not after rcirc prompt.
17007 Handle the case when table is nil.
17008 (rcirc-user-authenticated): Define to fix compiler warning.
17009
17010 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
17011
17012 * custom.el (custom--inhibit-theme-enable): Make it affect only
17013 custom-theme-set-variables and custom-theme-set-faces.
17014 (provide-theme): Ignore custom--inhibit-theme-enable.
17015 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
17016 (custom-enabling-themes): Delete variable.
17017 (enable-theme): Accept only loaded themes as arguments.
17018 Ignore the special custom-enabled-themes variable.
17019 (custom-enabled-themes): Forbid themes from setting this.
17020 Eliminate use of custom-enabling-themes.
17021 (custom-push-theme): Quote "changed" custom var entry.
17022
17023 2011-03-21 Leo Liu <sdl.web@gmail.com>
17024
17025 * ido.el (ido-read-internal): Add ido-selected to history instead
17026 of user input.
17027
17028 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
17029
17030 * subr.el (deferred-action-list, deferred-action-function):
17031 Mark obsolete.
17032
17033 2011-03-21 Leo Liu <sdl.web@gmail.com>
17034
17035 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
17036 change on 2011-02-13 (bug#8309).
17037
17038 * minibuffer.el (read-file-name-function): Change default value.
17039 (read-file-name--defaults): Rename from read-file-name-defaults.
17040 (read-file-name-default): Rename from read-file-name.
17041 (read-file-name): Call read-file-name-function.
17042
17043 2011-03-21 Glenn Morris <rgm@gnu.org>
17044
17045 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
17046 Doc fixes.
17047
17048 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
17049
17050 * cus-theme.el: Add missing provide statement.
17051 (customize-create-theme): Extract theme value correctly.
17052 (custom-theme-visit-theme): Autoload.
17053 (customize-create-theme): Prompt before inserting default faces.
17054
17055 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
17056
17057 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
17058 units and musical notes.
17059
17060 2011-03-20 Leo Liu <sdl.web@gmail.com>
17061
17062 * ido.el (ido-read-internal): Use completing-read-default.
17063 (ido-completing-read): Fix compatibility with completing-read.
17064
17065 2011-03-20 Christian Ohler <ohler@gnu.org>
17066
17067 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
17068 (ert-delete-all-tests): Use `called-interactively-p' rather than
17069 `interactive-p'.
17070 (ert--make-xrefs-region): Respect END.
17071
17072 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
17073
17074 * dired-aux.el (dired-create-directory): Signal an error if the
17075 directory already exists (Bug#8246).
17076
17077 * facemenu.el (list-colors-display): Call list-faces-display
17078 inside with-help-window.
17079 (list-colors-print): Use display property to align the final
17080 column, instead of checking window-width.
17081
17082 2011-03-19 Eli Zaretskii <eliz@gnu.org>
17083
17084 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
17085 windows-nt systems.
17086 (emerge-protect-metachars): Quote correctly for ms-dos and
17087 windows-nt systems.
17088
17089 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
17090
17091 * info.el (info-initialize): Replace all uses of `:' with
17092 path-separator for compatibility with non-Unix systems.
17093 Cache quoting of path-separator. (Bug#8258)
17094
17095 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
17096
17097 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
17098 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
17099 (mouse-avoidance-mode): Fix typos in docstrings.
17100
17101 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
17102
17103 * startup.el (package-subdirectory-regexp): Move from package.el.
17104 Omit \\` and \\', and let callers add them.
17105
17106 * emacs-lisp/package.el (package-strip-version)
17107 (package-load-all-descriptors): Add \\` and \\' to
17108 package-subdirectory-regexp before using it.
17109 (package-untar-buffer): New arg DIR; ensure that file untars only
17110 into this expected directory. Remove superfluous delete-region.
17111 (package-unpack): Caller changed.
17112 (package-tar-file-info): Use package-subdirectory-regexp.
17113
17114 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
17115
17116 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
17117 diff-mode-shared-map (bug#8284).
17118 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
17119
17120 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
17121
17122 * calendar/time-date.el (format-seconds): Use assoc instead of
17123 assoc-string, since assoc-string doesn't exist in XEmacs.
17124
17125 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
17126
17127 * custom.el (custom-known-themes): Reflow docstring.
17128 (custom-theme-load-path): Fix typo in docstring.
17129 (load-theme): Fix typo in error message.
17130 (custom-available-themes, custom-variable-theme-value):
17131 Use `let', not `let*'.
17132
17133 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
17134
17135 * calc/README: Mention inclusion of musical notes.
17136
17137 * calc/calc-units.el (calc-lu-quant): Rename from
17138 `calc-logunits-quantity'.
17139 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
17140 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
17141 (calc-db): Rename from `calc-dblevel'.
17142 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
17143 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
17144 (calc-np): Rename from `calc-nplevel'.
17145 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
17146 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
17147 (calc-lu-plus): Rename from `calc-logunits-add'.
17148 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
17149 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
17150 (calc-lu-minus): Rename from `calc-logunits-sub'.
17151 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
17152 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
17153 (calc-lu-times): Rename from `calc-logunits-mul'.
17154 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
17155 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
17156 (calc-lu-divide): Rename from `calc-logunits-div'.
17157 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
17158 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
17159
17160 * calc/calc-ext.el (calc-init-extensions): Update the names of the
17161 functions being autoloaded.
17162
17163 * calc/calc.el (calc-lu-power-reference): Rename from
17164 `calc-logunits-power-reference'.
17165 (calc-lu-field-reference): Rename from
17166 `calc-logunits-field-reference'.
17167
17168 * calc/calc-help.el (calc-l-prefix-help):
17169 Mention musical note functions.
17170
17171 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
17172
17173 * minibuffer.el (completion-all-sorted-completions):
17174 Use :completion-cycle-penalty text property if present.
17175
17176 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
17177
17178 * allout.el (allout-yank-processing): Adjust for new rebulleting
17179 regime so bullet being yanked is used without prompting the user
17180 for a choice.
17181
17182 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
17183
17184 * startup.el (command-line): Warn the user that _emacs is deprecated.
17185
17186 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
17187
17188 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
17189 (delphi-verbose, delphi-comment-face, delphi-string-face)
17190 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
17191 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
17192 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
17193 (delphi-new-comment-line, delphi-font-lock-defaults)
17194 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
17195 Fix typos in docstrings.
17196
17197 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
17198
17199 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
17200 Invert the roles of character and string values for INSTEAD, so a
17201 string is used for the more common case of a defaulting prompt.
17202
17203 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
17204
17205 * progmodes/ruby-mode.el (ruby-backward-sexp):
17206 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
17207 * play/gamegrid.el (gamegrid-make-face):
17208 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
17209 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
17210 * notifications.el (notifications-notify):
17211 * net/xesam.el (xesam-search-engines):
17212 * net/quickurl.el (quickurl-list-insert):
17213 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
17214
17215 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
17216
17217 * startup.el (command-line): Update package subdirectory regexp.
17218
17219 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
17220
17221 * allout.el (allout-abbreviate-flattened-numbering)
17222 (allout-mode-deactivate-hook): Fix up obsolescence "date".
17223
17224 * subr.el (read-char-choice): Only show the cursor after the prompt,
17225 not after the answer.
17226
17227 2011-03-15 Kevin Ryde <user42@zip.com.au>
17228
17229 * help-fns.el (variable-at-point): Skip leading quotes, if any
17230 (bug#8253).
17231
17232 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
17233
17234 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
17235 warning message.
17236
17237 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
17238
17239 * shell.el (shell): When called interactively, offer to change the
17240 shell file name on remote hosts.
17241
17242 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
17243
17244 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
17245 integration for LDAP parameters. The host, base, user or binddn,
17246 and secret tokens can be specified in a netrc file, for instance.
17247 This is optional because an `auth-source' parameter must be
17248 specified in the search attributes.
17249
17250 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
17251
17252 * help.el (describe-mode): Link to the mode's definition (bug#8185).
17253
17254 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17255
17256 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
17257 into declaration. Remove redundant and harmful binding.
17258
17259 2011-03-12 Eli Zaretskii <eliz@gnu.org>
17260
17261 * files.el (file-ownership-preserved-p): Pass `integer' as an
17262 explicit 2nd argument to `file-attributes'. If the file's owner
17263 is the Administrators group on Windows, and the current user is
17264 Administrator, consider that a match.
17265
17266 * server.el (server-ensure-safe-dir): Consider server directory
17267 safe on MS-Windows if its owner is the Administrators group while
17268 the current Emacs user is Administrator. Use `=' to compare
17269 numerical UIDs, since they could be integers or floats.
17270
17271 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
17272
17273 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
17274
17275 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
17276
17277 Sync with Tramp 2.2.1.
17278
17279 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
17280
17281 * net/trampver.el: Update release number.
17282
17283 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17284
17285 * progmodes/compile.el (compilation--previous-directory): Fix up
17286 various nil/dead-marker mismatches (bug#8014).
17287 (compilation-directory-properties, compilation-error-properties):
17288 Don't call it at a position past the one we're about to change.
17289
17290 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
17291 Disable obsolescence warnings in the file that declares it.
17292
17293 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
17294
17295 * allout-widgets.el (allout-widgets-tally):
17296 Initialize allout-widgets-tally as a hash table rather than nil to
17297 prevent mode-line redisplay warnings. Also, clarify the module
17298 description and fix a comment typo.
17299
17300 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
17301
17302 * help-fns.el (describe-variable): Don't complete keywords.
17303 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
17304
17305 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
17306
17307 * emacs-lisp/package.el (package-version-join): Impose a standard
17308 string representation for pre/alpha/beta version lists.
17309 (package-unpack-single): Standardize the directory name by passing
17310 it through package-version-join.
17311 (package-strip-rcs-id): Accept any version string that does not
17312 signal an error in version-to-list.
17313
17314 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
17315
17316 * simple.el (delete-trailing-whitespace): Return nil for the
17317 benefit of `write-file-functions'.
17318
17319 2011-03-10 Glenn Morris <rgm@gnu.org>
17320
17321 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
17322
17323 * vc/vc-git.el (vc-git-program): New option.
17324 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
17325 (vc-git--call): Use it.
17326
17327 * eshell/esh-util.el (eshell-condition-case): Doc fix.
17328
17329 * cus-edit.el (Custom-newline): If no button at point, look
17330 for a subgroup button at start-of-line. (Bug#2298)
17331
17332 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
17333
17334 2011-03-10 Julien Danjou <julien@danjou.info>
17335
17336 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
17337 `cursor-type' is nil.
17338
17339 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
17340
17341 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
17342
17343 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
17344
17345 * allout.el: Change so yank of distinctive-bullet items
17346 preserves the existing header prefix, rebulleting it if necessary,
17347 rather than replacing it. This is necessary for proper operation
17348 of cooperative addons like allout-widgets.
17349 (allout-make-topic-prefix, allout-rebullet-heading):
17350 Change SOLICIT arg to INSTEAD, and interpret additionally a string
17351 value as alternate bullet to be used, instead of prompting the user
17352 for a bullet character.
17353
17354 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
17355
17356 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
17357 Do not use `tramp-file-name-port', because this returns also
17358 `tramp-default-port'.
17359
17360 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
17361
17362 * net/rcirc.el (rcirc-handler-001): Remove useless
17363 with-rcirc-process-buffer.
17364 (rcirc-check-auth-status): Swap arguments to string-match.
17365
17366 2011-03-09 Glenn Morris <rgm@gnu.org>
17367
17368 * shell.el (shell-mode):
17369 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
17370
17371 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
17372 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
17373
17374 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
17375
17376 * emacs-lisp/package.el (package-refresh-contents)
17377 (package-menu-execute): Use condition-case-no-debug.
17378
17379 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
17380
17381 * simple.el (shell-command-to-string): Use `process-file'.
17382
17383 * emacs-lisp/package.el (package-tar-file-info): Handle also
17384 remote files.
17385
17386 * emacs-lisp/package-x.el (package-upload-buffer-internal):
17387 Use `equal' for upload base check.
17388
17389 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
17390
17391 * textmodes/texinfo.el (texinfo-environments):
17392 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
17393
17394 2011-03-08 Glenn Morris <rgm@gnu.org>
17395
17396 * cus-start.el (cursor-in-non-selected-windows):
17397 Fix :set quoting oddness. (Bug#8192)
17398
17399 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
17400 in some setf expressions. (Bug#2159)
17401
17402 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
17403
17404 * custom.el (custom-available-themes): Return themes in
17405 alphabetical order.
17406
17407 See ChangeLog.15 for earlier changes.
17408
17409 ;; Local Variables:
17410 ;; coding: utf-8
17411 ;; End:
17412
17413 Copyright (C) 2011-2012 Free Software Foundation, Inc.
17414
17415 This file is part of GNU Emacs.
17416
17417 GNU Emacs is free software: you can redistribute it and/or modify
17418 it under the terms of the GNU General Public License as published by
17419 the Free Software Foundation, either version 3 of the License, or
17420 (at your option) any later version.
17421
17422 GNU Emacs is distributed in the hope that it will be useful,
17423 but WITHOUT ANY WARRANTY; without even the implied warranty of
17424 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17425 GNU General Public License for more details.
17426
17427 You should have received a copy of the GNU General Public License
17428 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.